diff --git a/Podfile.lock b/Podfile.lock index e539472..d15b72c 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -1,43 +1,38 @@ PODS: - - InputBarAccessoryView (5.1.0): - - InputBarAccessoryView/Core (= 5.1.0) - - InputBarAccessoryView/Core (5.1.0) - - IQKeyboardManagerSwift (6.5.11) - - MessageKit (3.3.0): - - InputBarAccessoryView (~> 5.1.0) - - Starscream (4.0.4) - - VideoSDKRTC (2.0.0): - - Starscream + - InputBarAccessoryView (5.5.0): + - InputBarAccessoryView/Core (= 5.5.0) + - InputBarAccessoryView/Core (5.5.0) + - IQKeyboardManagerSwift (6.5.16) + - MessageKit (3.8.0): + - InputBarAccessoryView (~> 5.5.0) + - VideoSDKRTC (2.1.0) DEPENDENCIES: - IQKeyboardManagerSwift - MessageKit - - VideoSDKRTC (from `https://github.com/videosdk-live/videosdk-rtc-ios-sdk.git`, tag `v2.0.0`) + - VideoSDKRTC (from `https://github.com/videosdk-live/videosdk-rtc-ios-sdk.git`) SPEC REPOS: trunk: - InputBarAccessoryView - IQKeyboardManagerSwift - MessageKit - - Starscream EXTERNAL SOURCES: VideoSDKRTC: :git: https://github.com/videosdk-live/videosdk-rtc-ios-sdk.git - :tag: v2.0.0 CHECKOUT OPTIONS: VideoSDKRTC: + :commit: 915455b5395e243a620c315d49b650c1884216a0 :git: https://github.com/videosdk-live/videosdk-rtc-ios-sdk.git - :tag: v2.0.0 SPEC CHECKSUMS: - InputBarAccessoryView: 19953f486a23e846e9487099f92bbe3456e46ce5 - IQKeyboardManagerSwift: c7955c0bdbf7b2eb29bb7daaa44e3d90f55a9a85 - MessageKit: 1f07618183be6d92b648ba7a384aafa097362a00 - Starscream: 5178aed56b316f13fa3bc55694e583d35dd414d9 - VideoSDKRTC: ad324fd5a00b0eda64bd7c142c1c9a2542fcc891 + InputBarAccessoryView: 1d7b0a672b36e370f01f264b3907ef39d03328e3 + IQKeyboardManagerSwift: 12d89768845bb77b55cc092ecc2b1f9370f06b76 + MessageKit: a1ba0c69ebead94029867853eb44dd05b9b3f453 + VideoSDKRTC: 42abab38e8bb4dd5c9ad5d23415cf5e0ce87908b -PODFILE CHECKSUM: b00727b60298202baa7849a29295ec194e3945fe +PODFILE CHECKSUM: 9a6c26d40d9f65335d130d844a4f98bb47161e02 -COCOAPODS: 1.11.3 +COCOAPODS: 1.15.2 diff --git a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Categories/IQUIScrollView+Additions.swift b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Categories/IQUIScrollView+Additions.swift index 93d495a..280f5e5 100644 --- a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Categories/IQUIScrollView+Additions.swift +++ b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Categories/IQUIScrollView+Additions.swift @@ -28,9 +28,9 @@ import UIKit @objc public extension UIScrollView { private struct AssociatedKeys { - static var shouldIgnoreScrollingAdjustment = "shouldIgnoreScrollingAdjustment" - static var shouldIgnoreContentInsetAdjustment = "shouldIgnoreContentInsetAdjustment" - static var shouldRestoreScrollViewContentOffset = "shouldRestoreScrollViewContentOffset" + static var shouldIgnoreScrollingAdjustment: Int = 0 + static var shouldIgnoreContentInsetAdjustment: Int = 0 + static var shouldRestoreScrollViewContentOffset: Int = 0 } /** @@ -77,7 +77,7 @@ internal extension UITableView { var previousRow = indexPath.row - 1 var previousSection = indexPath.section - //Fixing indexPath + // Fixing indexPath if previousRow < 0 { previousSection -= 1 if previousSection >= 0 { @@ -100,7 +100,7 @@ internal extension UICollectionView { var previousRow = indexPath.row - 1 var previousSection = indexPath.section - //Fixing indexPath + // Fixing indexPath if previousRow < 0 { previousSection -= 1 if previousSection >= 0 { diff --git a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Categories/IQUITextFieldView+Additions.swift b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Categories/IQUITextFieldView+Additions.swift index 3a14494..19ce042 100644 --- a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Categories/IQUITextFieldView+Additions.swift +++ b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Categories/IQUITextFieldView+Additions.swift @@ -37,10 +37,10 @@ UIView category for managing UITextField/UITextView @objc public extension UIView { private struct AssociatedKeys { - static var keyboardDistanceFromTextField = "keyboardDistanceFromTextField" - static var ignoreSwitchingByNextPrevious = "ignoreSwitchingByNextPrevious" - static var enableMode = "enableMode" - static var shouldResignOnTouchOutsideMode = "shouldResignOnTouchOutsideMode" + static var keyboardDistanceFromTextField: Int = 0 + static var ignoreSwitchingByNextPrevious: Int = 0 + static var enableMode: Int = 0 + static var shouldResignOnTouchOutsideMode: Int = 0 } /** diff --git a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Categories/IQUIView+Hierarchy.swift b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Categories/IQUIView+Hierarchy.swift index d824c32..0f554d9 100644 --- a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Categories/IQUIView+Hierarchy.swift +++ b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Categories/IQUIView+Hierarchy.swift @@ -156,14 +156,14 @@ UIView hierarchy category. if unwrappedSuperView.isKind(of: classType) { - //If it's UIScrollView, then validating for special cases + // If it's UIScrollView, then validating for special cases if unwrappedSuperView.isKind(of: UIScrollView.self) { let classNameString: String = "\(type(of: unwrappedSuperView.self))" // If it's not UITableViewWrapperView class, this is internal class which is actually manage in UITableview. The speciality of this class is that it's superview is UITableView. // If it's not UITableViewCellScrollView class, this is internal class which is actually manage in UITableviewCell. The speciality of this class is that it's superview is UITableViewCell. - //If it's not _UIQueuingScrollView class, actually we validate for _ prefix which usually used by Apple internal classes + // If it's not _UIQueuingScrollView class, actually we validate for _ prefix which usually used by Apple internal classes if unwrappedSuperView.superview?.isKind(of: UITableView.self) == false, unwrappedSuperView.superview?.isKind(of: UITableViewCell.self) == false, classNameString.hasPrefix("_") == false { @@ -187,7 +187,7 @@ UIView hierarchy category. */ internal func responderSiblings() -> [UIView] { - //Array of (UITextField/UITextView's). + // Array of (UITextField/UITextView's). var tempTextFields = [UIView]() // Getting all siblings @@ -207,7 +207,7 @@ UIView hierarchy category. */ internal func deepResponderViews() -> [UIView] { - //Array of (UITextField/UITextView's). + // Array of (UITextField/UITextView's). var textfields = [UIView]() for textField in subviews { @@ -215,8 +215,8 @@ UIView hierarchy category. if (textField == self || textField.ignoreSwitchingByNextPrevious == false), textField.IQcanBecomeFirstResponder() { textfields.append(textField) } - //Sometimes there are hidden or disabled views and textField inside them still recorded, so we added some more validations here (Bug ID: #458) - //Uncommented else (Bug ID: #625) + // Sometimes there are hidden or disabled views and textField inside them still recorded, so we added some more validations here (Bug ID: #458) + // Uncommented else (Bug ID: #625) else if textField.subviews.count != 0, isUserInteractionEnabled, !isHidden, alpha != 0.0 { for deepView in textField.deepResponderViews() { textfields.append(deepView) @@ -224,7 +224,7 @@ UIView hierarchy category. } } - //subviews are returning in opposite order. Sorting according the frames 'y'. + // subviews are returning in opposite order. Sorting according the frames 'y'. return textfields.sorted(by: { (view1: UIView, view2: UIView) -> Bool in let frame1 = view1.convert(view1.bounds, to: self) diff --git a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Categories/IQUIViewController+Additions.swift b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Categories/IQUIViewController+Additions.swift index fadf69f..5cba198 100644 --- a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Categories/IQUIViewController+Additions.swift +++ b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Categories/IQUIViewController+Additions.swift @@ -27,7 +27,7 @@ import UIKit @objc extension UIViewController { private struct AssociatedKeys { - static var IQLayoutGuideConstraint = "IQLayoutGuideConstraint" + static var IQLayoutGuideConstraint: Int = 0 } /** diff --git a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+Debug.swift b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+Debug.swift index 8efe2fb..b5008db 100644 --- a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+Debug.swift +++ b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+Debug.swift @@ -29,7 +29,7 @@ import UIKit public extension IQKeyboardManager { private struct AssociatedKeys { - static var enableDebugging = "enableDebugging" + static var enableDebugging: Int = 0 } @objc var enableDebugging: Bool { @@ -51,9 +51,9 @@ public extension IQKeyboardManager { // Registering for keyboard notification. NotificationCenter.default.addObserver(self, selector: #selector(self.keyboardWillShow(_:)), name: UIResponder.keyboardWillShowNotification, object: nil) - NotificationCenter.default.addObserver(self, selector: #selector(self.keyboardDidShow(_:)), name: UIResponder.keyboardDidShowNotification, object: nil) NotificationCenter.default.addObserver(self, selector: #selector(self.keyboardWillHide(_:)), name: UIResponder.keyboardWillHideNotification, object: nil) - NotificationCenter.default.addObserver(self, selector: #selector(self.keyboardDidHide(_:)), name: UIResponder.keyboardDidHideNotification, object: nil) + + NotificationCenter.default.addObserver(self, selector: #selector(applicationDidBecomeActive(_:)), name: UIApplication.didBecomeActiveNotification, object: nil) // Registering for UITextField notification. registerTextFieldViewClass(UITextField.self, didBeginEditingNotificationName: UITextField.textDidBeginEditingNotification.rawValue, didEndEditingNotificationName: UITextField.textDidEndEditingNotification.rawValue) @@ -69,9 +69,9 @@ public extension IQKeyboardManager { // Unregistering for keyboard notification. NotificationCenter.default.removeObserver(self, name: UIResponder.keyboardWillShowNotification, object: nil) - NotificationCenter.default.removeObserver(self, name: UIResponder.keyboardDidShowNotification, object: nil) NotificationCenter.default.removeObserver(self, name: UIResponder.keyboardWillHideNotification, object: nil) - NotificationCenter.default.removeObserver(self, name: UIResponder.keyboardDidHideNotification, object: nil) + + NotificationCenter.default.removeObserver(self, name: UIApplication.didBecomeActiveNotification, object: nil) // Unregistering for UITextField notification. unregisterTextFieldViewClass(UITextField.self, didBeginEditingNotificationName: UITextField.textDidBeginEditingNotification.rawValue, didEndEditingNotificationName: UITextField.textDidEndEditingNotification.rawValue) diff --git a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+Internal.swift b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+Internal.swift index cfa9413..a37a560 100644 --- a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+Internal.swift +++ b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+Internal.swift @@ -32,7 +32,7 @@ internal extension IQKeyboardManager { var superConsideredView: UIView? - //If find any consider responderView in it's upper hierarchy then will get deepResponderView. + // If find any consider responderView in it's upper hierarchy then will get deepResponderView. for disabledClass in toolbarPreviousNextAllowedClasses { superConsideredView = textFieldView?.superviewOfClassType(disabledClass) if superConsideredView != nil { @@ -40,24 +40,24 @@ internal extension IQKeyboardManager { } } - //If there is a superConsideredView in view's hierarchy, then fetching all it's subview that responds. No sorting for superConsideredView, it's by subView position. (Enhancement ID: #22) + // If there is a superConsideredView in view's hierarchy, then fetching all it's subview that responds. No sorting for superConsideredView, it's by subView position. (Enhancement ID: #22) if let view = superConsideredView { return view.deepResponderViews() - } else { //Otherwise fetching all the siblings + } else { // Otherwise fetching all the siblings guard let textFields = textFieldView?.responderSiblings() else { return nil } - //Sorting textFields according to behaviour + // Sorting textFields according to behaviour switch toolbarManageBehaviour { - //If autoToolbar behaviour is bySubviews, then returning it. + // If autoToolbar behaviour is bySubviews, then returning it. case .bySubviews: return textFields - //If autoToolbar behaviour is by tag, then sorting it according to tag property. + // If autoToolbar behaviour is by tag, then sorting it according to tag property. case .byTag: return textFields.sortedArrayByTag() - //If autoToolbar behaviour is by tag, then sorting it according to tag property. + // If autoToolbar behaviour is by tag, then sorting it according to tag property. case .byPosition: return textFields.sortedArrayByPosition() } } @@ -75,29 +75,29 @@ internal extension IQKeyboardManager { isEnabled = false } else if var textFieldViewController = textFieldView?.viewContainingController() { - //If it is searchBar textField embedded in Navigation Bar + // If it is searchBar textField embedded in Navigation Bar if textFieldView?.textFieldSearchBar() != nil, let navController = textFieldViewController as? UINavigationController, let topController = navController.topViewController { textFieldViewController = topController } - //If viewController is kind of enable viewController class, then assuming it's enabled. + // If viewController is kind of enable viewController class, then assuming it's enabled. if !isEnabled, enabledDistanceHandlingClasses.contains(where: { textFieldViewController.isKind(of: $0) }) { isEnabled = true } if isEnabled { - //If viewController is kind of disabled viewController class, then assuming it's disabled. + // If viewController is kind of disabled viewController class, then assuming it's disabled. if disabledDistanceHandlingClasses.contains(where: { textFieldViewController.isKind(of: $0) }) { isEnabled = false } - //Special Controllers + // Special Controllers if isEnabled { let classNameString: String = "\(type(of: textFieldViewController.self))" - //_UIAlertControllerTextFieldViewController + // _UIAlertControllerTextFieldViewController if classNameString.contains("UIAlertController"), classNameString.hasSuffix("TextFieldViewController") { isEnabled = false } @@ -114,7 +114,7 @@ internal extension IQKeyboardManager { return enableAutoToolbar } - //If it is searchBar textField embedded in Navigation Bar + // If it is searchBar textField embedded in Navigation Bar if textFieldView?.textFieldSearchBar() != nil, let navController = textFieldViewController as? UINavigationController, let topController = navController.topViewController { textFieldViewController = topController } @@ -127,17 +127,17 @@ internal extension IQKeyboardManager { if enableToolbar { - //If found any toolbar disabled classes then return. + // If found any toolbar disabled classes then return. if disabledToolbarClasses.contains(where: { textFieldViewController.isKind(of: $0) }) { enableToolbar = false } - //Special Controllers + // Special Controllers if enableToolbar { let classNameString: String = "\(type(of: textFieldViewController.self))" - //_UIAlertControllerTextFieldViewController + // _UIAlertControllerTextFieldViewController if classNameString.contains("UIAlertController"), classNameString.hasSuffix("TextFieldViewController") { enableToolbar = false } @@ -159,29 +159,29 @@ internal extension IQKeyboardManager { shouldResign = false } else if var textFieldViewController = textFieldView?.viewContainingController() { - //If it is searchBar textField embedded in Navigation Bar + // If it is searchBar textField embedded in Navigation Bar if textFieldView?.textFieldSearchBar() != nil, let navController = textFieldViewController as? UINavigationController, let topController = navController.topViewController { textFieldViewController = topController } - //If viewController is kind of enable viewController class, then assuming shouldResignOnTouchOutside is enabled. + // If viewController is kind of enable viewController class, then assuming shouldResignOnTouchOutside is enabled. if !shouldResign, enabledTouchResignedClasses.contains(where: { textFieldViewController.isKind(of: $0) }) { shouldResign = true } if shouldResign { - //If viewController is kind of disable viewController class, then assuming shouldResignOnTouchOutside is disable. + // If viewController is kind of disable viewController class, then assuming shouldResignOnTouchOutside is disable. if disabledTouchResignedClasses.contains(where: { textFieldViewController.isKind(of: $0) }) { shouldResign = false } - //Special Controllers + // Special Controllers if shouldResign { let classNameString: String = "\(type(of: textFieldViewController.self))" - //_UIAlertControllerTextFieldViewController + // _UIAlertControllerTextFieldViewController if classNameString.contains("UIAlertController"), classNameString.hasSuffix("TextFieldViewController") { shouldResign = false } diff --git a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+OrientationNotification.swift b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+OrientationNotification.swift index 6060626..fc819dc 100644 --- a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+OrientationNotification.swift +++ b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+OrientationNotification.swift @@ -50,7 +50,7 @@ internal extension IQKeyboardManager { showLog("📱>>>>> \(#function) started >>>>>", indentation: 1) showLog("Notification Object:\(notification.object ?? "NULL")") - //If textViewContentInsetChanged is saved then restore it. + // If textViewContentInsetChanged is saved then restore it. if let textView = textFieldView as? UIScrollView, textView.responds(to: #selector(getter: UITextView.isEditable)) { if isTextViewContentInsetChanged { @@ -60,7 +60,7 @@ internal extension IQKeyboardManager { self.showLog("Restoring textView.contentInset to: \(self.startingTextViewContentInsets)") - //Setting textField to it's initial contentInset + // Setting textField to it's initial contentInset textView.contentInset = self.startingTextViewContentInsets textView.scrollIndicatorInsets = self.startingTextViewScrollIndicatorInsets diff --git a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+Position.swift b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+Position.swift index 16fd485..b9a3937 100644 --- a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+Position.swift +++ b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+Position.swift @@ -28,16 +28,15 @@ import UIKit public extension IQKeyboardManager { private struct AssociatedKeys { - static var movedDistance = "movedDistance" - static var movedDistanceChanged = "movedDistanceChanged" - static var lastScrollView = "lastScrollView" - static var startingContentOffset = "startingContentOffset" - static var startingScrollIndicatorInsets = "startingScrollIndicatorInsets" - static var startingContentInsets = "startingContentInsets" - static var startingTextViewContentInsets = "startingTextViewContentInsets" - static var startingTextViewScrollIndicatorInsets = "startingTextViewScrollIndicatorInsets" - static var isTextViewContentInsetChanged = "isTextViewContentInsetChanged" - static var hasPendingAdjustRequest = "hasPendingAdjustRequest" + static var movedDistance: Int = 0 + static var movedDistanceChanged: Int = 0 + static var lastScrollView: Int = 0 + static var startingContentOffset: Int = 0 + static var startingScrollIndicatorInsets: Int = 0 + static var startingContentInsets: Int = 0 + static var startingTextViewContentInsets: Int = 0 + static var startingTextViewScrollIndicatorInsets: Int = 0 + static var isTextViewContentInsetChanged: Int = 0 } /** @@ -136,32 +135,24 @@ public extension IQKeyboardManager { } } - /** To know if we have any pending request to adjust view position. */ - private var hasPendingAdjustRequest: Bool { - get { - return objc_getAssociatedObject(self, &AssociatedKeys.hasPendingAdjustRequest) as? Bool ?? false - } - set(newValue) { - objc_setAssociatedObject(self, &AssociatedKeys.hasPendingAdjustRequest, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - } + @objc internal func applicationDidBecomeActive(_ notificatin: Notification) { - internal func optimizedAdjustPosition() { - if !hasPendingAdjustRequest { - hasPendingAdjustRequest = true - OperationQueue.main.addOperation { - self.adjustPosition() - self.hasPendingAdjustRequest = false - } + guard privateIsEnabled(), + keyboardShowing, + topViewBeginOrigin.equalTo(IQKeyboardManager.kIQCGPointInvalid) == false, let textFieldView = textFieldView, + textFieldView.isAlertViewTextField() == false else { + return } - } + self.adjustPosition() + } + // swiftlint:disable function_body_length /* Adjusting RootViewController's frame according to interface orientation. */ - private func adjustPosition() { + internal func adjustPosition() { // We are unable to get textField object while keyboard showing on WKWebView's textField. (Bug ID: #11) - guard hasPendingAdjustRequest, - let textFieldView = textFieldView, + guard UIApplication.shared.applicationState == .active, + let textFieldView = textFieldView, let rootController = textFieldView.parentContainerViewController(), let window = keyWindow(), let textFieldViewRectInWindow = textFieldView.superview?.convert(textFieldView.frame, to: window), @@ -175,26 +166,31 @@ public extension IQKeyboardManager { // Getting RootViewOrigin. var rootViewOrigin = rootController.view.frame.origin - //Maintain keyboardDistanceFromTextField - var specialKeyboardDistanceFromTextField = textFieldView.keyboardDistanceFromTextField + // Maintain keyboardDistanceFromTextField + let specialKeyboardDistanceFromTextField: CGFloat if let searchBar = textFieldView.textFieldSearchBar() { specialKeyboardDistanceFromTextField = searchBar.keyboardDistanceFromTextField + } else { + specialKeyboardDistanceFromTextField = textFieldView.keyboardDistanceFromTextField } let newKeyboardDistanceFromTextField = (specialKeyboardDistanceFromTextField == kIQUseDefaultKeyboardDistance) ? keyboardDistanceFromTextField : specialKeyboardDistanceFromTextField - var kbSize = keyboardFrame.size + let kbSize: CGSize + let originalKbSize: CGSize + // Calculating actual keyboard covered size respect to window, keyboard frame may be different when hardware keyboard is attached (Bug ID: #469) (Bug ID: #381) (Bug ID: #1506) do { var kbFrame = keyboardFrame kbFrame.origin.y -= newKeyboardDistanceFromTextField kbFrame.size.height += newKeyboardDistanceFromTextField - //Calculating actual keyboard covered size respect to window, keyboard frame may be different when hardware keyboard is attached (Bug ID: #469) (Bug ID: #381) (Bug ID: #1506) - let intersectRect = kbFrame.intersection(window.frame) + kbFrame.origin.y -= topViewBeginSafeAreaInsets.bottom + kbFrame.size.height += topViewBeginSafeAreaInsets.bottom + let intersectRect = kbFrame.intersection(window.frame) if intersectRect.isNull { kbSize = CGSize(width: kbFrame.size.width, height: 0) } else { @@ -202,6 +198,15 @@ public extension IQKeyboardManager { } } + do { + let intersectRect = keyboardFrame.intersection(window.frame) + if intersectRect.isNull { + originalKbSize = CGSize(width: keyboardFrame.size.width, height: 0) + } else { + originalKbSize = intersectRect.size + } + } + let statusBarHeight: CGFloat let navigationBarAreaHeight: CGFloat @@ -220,43 +225,40 @@ public extension IQKeyboardManager { navigationBarAreaHeight = statusBarHeight } - let layoutAreaHeight: CGFloat = rootController.view.layoutMargins.bottom + let layoutAreaHeight: CGFloat = rootController.view.directionalLayoutMargins.top - let isTextView: Bool - let isNonScrollableTextView: Bool + let isScrollableTextView: Bool if let textView = textFieldView as? UIScrollView, textFieldView.responds(to: #selector(getter: UITextView.isEditable)) { - - isTextView = true - isNonScrollableTextView = !textView.isScrollEnabled + isScrollableTextView = textView.isScrollEnabled } else { - isTextView = false - isNonScrollableTextView = false + isScrollableTextView = false } - let topLayoutGuide: CGFloat = max(navigationBarAreaHeight, layoutAreaHeight) + 5 + let topLayoutGuide: CGFloat = max(navigationBarAreaHeight, layoutAreaHeight) - let bottomLayoutGuide: CGFloat = (isTextView && !isNonScrollableTextView) ? 0 : rootController.view.layoutMargins.bottom //Validation of textView for case where there is a tab bar at the bottom or running on iPhone X and textView is at the bottom. - let visibleHeight: CGFloat = window.frame.height-kbSize.height + // Validation of textView for case where there is a tab bar at the bottom or running on iPhone X and textView is at the bottom. + let bottomLayoutGuide: CGFloat = isScrollableTextView ? 0 : rootController.view.directionalLayoutMargins.bottom // Move positive = textField is hidden. // Move negative = textField is showing. // Calculating move position. - var move: CGFloat + var moveUp: CGFloat - //Special case: when the textView is not scrollable, then we'll be scrolling to the bottom part and let hide the top part above - if isNonScrollableTextView { - move = textFieldViewRectInWindow.maxY - visibleHeight + bottomLayoutGuide - } else { - move = min(textFieldViewRectInRootSuperview.minY-(topLayoutGuide), textFieldViewRectInWindow.maxY - visibleHeight + bottomLayoutGuide) + do { + let visibleHeight: CGFloat = window.frame.height-kbSize.height + + let topMovement: CGFloat = textFieldViewRectInRootSuperview.minY-topLayoutGuide + let bottomMovement: CGFloat = textFieldViewRectInWindow.maxY - visibleHeight + bottomLayoutGuide + moveUp = min(topMovement, bottomMovement) } - showLog("Need to move: \(move)") + showLog("Need to move: \(moveUp), will be moving \(moveUp < 0 ? "down" : "up")") var superScrollView: UIScrollView? var superView = textFieldView.superviewOfClassType(UIScrollView.self) as? UIScrollView - //Getting UIScrollView whose scrolling is enabled. // (Bug ID: #285) + // Getting UIScrollView whose scrolling is enabled. // (Bug ID: #285) while let view = superView { if view.isScrollEnabled, !view.shouldIgnoreScrollingAdjustment { @@ -268,9 +270,9 @@ public extension IQKeyboardManager { } } - //If there was a lastScrollView. // (Bug ID: #34) + // If there was a lastScrollView. // (Bug ID: #34) if let lastScrollView = lastScrollView { - //If we can't find current superScrollView, then setting lastScrollView to it's original form. + // If we can't find current superScrollView, then setting lastScrollView to it's original form. if superScrollView == nil { if lastScrollView.contentInset != self.startingContentInsets { @@ -294,11 +296,11 @@ public extension IQKeyboardManager { } } - startingContentInsets = UIEdgeInsets() - startingScrollIndicatorInsets = UIEdgeInsets() - startingContentOffset = CGPoint.zero + startingContentInsets = .zero + startingScrollIndicatorInsets = .zero + startingContentOffset = .zero self.lastScrollView = nil - } else if superScrollView != lastScrollView { //If both scrollView's are different, then reset lastScrollView to it's original frame and setting current scrollView as last scrollView. + } else if superScrollView != lastScrollView { // If both scrollView's are different, then reset lastScrollView to it's original frame and setting current scrollView as last scrollView. if lastScrollView.contentInset != self.startingContentInsets { showLog("Restoring contentInset to: \(startingContentInsets)") @@ -339,8 +341,8 @@ public extension IQKeyboardManager { showLog("Saving ScrollView New contentInset: \(startingContentInsets) and contentOffset: \(startingContentOffset)") } - //Else the case where superScrollView == lastScrollView means we are on same scrollView after switching to different textField. So doing nothing, going ahead - } else if let unwrappedSuperScrollView = superScrollView { //If there was no lastScrollView and we found a current scrollView. then setting it as lastScrollView. + // Else the case where superScrollView == lastScrollView means we are on same scrollView after switching to different textField. So doing nothing, going ahead + } else if let unwrappedSuperScrollView = superScrollView { // If there was no lastScrollView and we found a current scrollView. then setting it as lastScrollView. lastScrollView = unwrappedSuperScrollView startingContentInsets = unwrappedSuperScrollView.contentInset startingContentOffset = unwrappedSuperScrollView.contentOffset @@ -361,7 +363,7 @@ public extension IQKeyboardManager { // Special case for ScrollView. // If we found lastScrollView then setting it's contentOffset to show textField. if let lastScrollView = lastScrollView { - //Saving + // Saving var lastView = textFieldView var superScrollView = self.lastScrollView @@ -369,11 +371,11 @@ public extension IQKeyboardManager { var shouldContinue = false - if move > 0 { - shouldContinue = move > (-scrollView.contentOffset.y - scrollView.contentInset.top) + if moveUp > 0 { + shouldContinue = moveUp > (-scrollView.contentOffset.y - scrollView.contentInset.top) } else if let tableView = scrollView.superviewOfClassType(UITableView.self) as? UITableView { - + // Special treatment for UITableView due to their cell reusing logic shouldContinue = scrollView.contentOffset.y > 0 if shouldContinue, let tableCell = textFieldView.superviewOfClassType(UITableViewCell.self) as? UITableViewCell, let indexPath = tableView.indexPath(for: tableCell), let previousIndexPath = tableView.previousIndexPath(of: indexPath) { @@ -382,11 +384,11 @@ public extension IQKeyboardManager { if !previousCellRect.isEmpty { let previousCellRectInRootSuperview = tableView.convert(previousCellRect, to: rootController.view.superview) - move = min(0, previousCellRectInRootSuperview.maxY - topLayoutGuide) + moveUp = min(0, previousCellRectInRootSuperview.maxY - topLayoutGuide) } } } else if let collectionView = scrollView.superviewOfClassType(UICollectionView.self) as? UICollectionView { - + // Special treatment for UITableView due to their cell reusing logic shouldContinue = scrollView.contentOffset.y > 0 if shouldContinue, let collectionCell = textFieldView.superviewOfClassType(UICollectionViewCell.self) as? UICollectionViewCell, let indexPath = collectionView.indexPath(for: collectionCell), let previousIndexPath = collectionView.previousIndexPath(of: indexPath), let attributes = collectionView.layoutAttributesForItem(at: previousIndexPath) { @@ -395,27 +397,19 @@ public extension IQKeyboardManager { if !previousCellRect.isEmpty { let previousCellRectInRootSuperview = collectionView.convert(previousCellRect, to: rootController.view.superview) - move = min(0, previousCellRectInRootSuperview.maxY - topLayoutGuide) + moveUp = min(0, previousCellRectInRootSuperview.maxY - topLayoutGuide) } } } else { - if isNonScrollableTextView { - shouldContinue = textFieldViewRectInWindow.maxY < visibleHeight + bottomLayoutGuide - - if shouldContinue { - move = min(0, textFieldViewRectInWindow.maxY - visibleHeight + bottomLayoutGuide) - } - } else { - shouldContinue = textFieldViewRectInRootSuperview.minY < topLayoutGuide + shouldContinue = textFieldViewRectInRootSuperview.minY < topLayoutGuide - if shouldContinue { - move = min(0, textFieldViewRectInRootSuperview.minY - topLayoutGuide) - } + if shouldContinue { + moveUp = min(0, textFieldViewRectInRootSuperview.minY - topLayoutGuide) } } - //Looping in upper hierarchy until we don't found any scrollView in it's upper hirarchy till UIWindow object. + // Looping in upper hierarchy until we don't found any scrollView in it's upper hirarchy till UIWindow object. if shouldContinue { var tempScrollView = scrollView.superviewOfClassType(UIScrollView.self) as? UIScrollView @@ -430,46 +424,41 @@ public extension IQKeyboardManager { } } - //Getting lastViewRect. + // Getting lastViewRect. if let lastViewRect = lastView.superview?.convert(lastView.frame, to: scrollView) { - //Calculating the expected Y offset from move and scrollView's contentOffset. - var shouldOffsetY = scrollView.contentOffset.y - min(scrollView.contentOffset.y, -move) - - //Rearranging the expected Y offset according to the view. + // Calculating the expected Y offset from move and scrollView's contentOffset. + var shouldOffsetY = scrollView.contentOffset.y - min(scrollView.contentOffset.y, -moveUp) - if isNonScrollableTextView { - shouldOffsetY = min(shouldOffsetY, lastViewRect.maxY - visibleHeight + bottomLayoutGuide) - } else { - shouldOffsetY = min(shouldOffsetY, lastViewRect.minY) - } + // Rearranging the expected Y offset according to the view. + shouldOffsetY = min(shouldOffsetY, lastViewRect.minY) - //[_textFieldView isKindOfClass:[UITextView class]] If is a UITextView type - //nextScrollView == nil If processing scrollView is last scrollView in upper hierarchy (there is no other scrollView upper hierrchy.) - //[_textFieldView isKindOfClass:[UITextView class]] If is a UITextView type - //shouldOffsetY >= 0 shouldOffsetY must be greater than in order to keep distance from navigationBar (Bug ID: #92) - if isTextView, !isNonScrollableTextView, + // [_textFieldView isKindOfClass:[UITextView class]] If is a UITextView type + // nextScrollView == nil If processing scrollView is last scrollView in upper hierarchy (there is no other scrollView upper hierrchy.) + // [_textFieldView isKindOfClass:[UITextView class]] If is a UITextView type + // shouldOffsetY >= 0 shouldOffsetY must be greater than in order to keep distance from navigationBar (Bug ID: #92) + if isScrollableTextView, nextScrollView == nil, shouldOffsetY >= 0 { - // Converting Rectangle according to window bounds. + // Converting Rectangle according to window bounds. if let currentTextFieldViewRect = textFieldView.superview?.convert(textFieldView.frame, to: window) { - //Calculating expected fix distance which needs to be managed from navigation bar + // Calculating expected fix distance which needs to be managed from navigation bar let expectedFixDistance: CGFloat = currentTextFieldViewRect.minY - topLayoutGuide - //Now if expectedOffsetY (superScrollView.contentOffset.y + expectedFixDistance) is lower than current shouldOffsetY, which means we're in a position where navigationBar up and hide, then reducing shouldOffsetY with expectedOffsetY (superScrollView.contentOffset.y + expectedFixDistance) + // Now if expectedOffsetY (superScrollView.contentOffset.y + expectedFixDistance) is lower than current shouldOffsetY, which means we're in a position where navigationBar up and hide, then reducing shouldOffsetY with expectedOffsetY (superScrollView.contentOffset.y + expectedFixDistance) shouldOffsetY = min(shouldOffsetY, scrollView.contentOffset.y + expectedFixDistance) - //Setting move to 0 because now we don't want to move any view anymore (All will be managed by our contentInset logic. - move = 0 + // Setting move to 0 because now we don't want to move any view anymore (All will be managed by our contentInset logic. + moveUp = 0 } else { - //Subtracting the Y offset from the move variable, because we are going to change scrollView's contentOffset.y to shouldOffsetY. - move -= (shouldOffsetY-scrollView.contentOffset.y) + // Subtracting the Y offset from the move variable, because we are going to change scrollView's contentOffset.y to shouldOffsetY. + moveUp -= (shouldOffsetY-scrollView.contentOffset.y) } } else { - //Subtracting the Y offset from the move variable, because we are going to change scrollView's contentOffset.y to shouldOffsetY. - move -= (shouldOffsetY-scrollView.contentOffset.y) + // Subtracting the Y offset from the move variable, because we are going to change scrollView's contentOffset.y to shouldOffsetY. + moveUp -= (shouldOffsetY-scrollView.contentOffset.y) } let newContentOffset = CGPoint(x: scrollView.contentOffset.x, y: shouldOffsetY) @@ -477,9 +466,9 @@ public extension IQKeyboardManager { if scrollView.contentOffset.equalTo(newContentOffset) == false { showLog("old contentOffset: \(scrollView.contentOffset) new contentOffset: \(newContentOffset)") - self.showLog("Remaining Move: \(move)") + self.showLog("Remaining Move: \(moveUp)") - //Getting problem while using `setContentOffset:animated:`, So I used animation API. + // Getting problem while using `setContentOffset:animated:`, So I used animation API. UIView.animate(withDuration: animationDuration, delay: 0, options: animationCurve, animations: { () -> Void in let animatedContentOffset = textFieldView.superviewOfClassType(UIStackView.self, belowView: scrollView) != nil // (Bug ID: #1365, #1508, #1541) @@ -492,37 +481,35 @@ public extension IQKeyboardManager { }, completion: { _ in if scrollView is UITableView || scrollView is UICollectionView { - //This will update the next/previous states + // This will update the next/previous states self.addToolbarIfRequired() } }) } } - // Getting next lastView & superScrollView. + // Getting next lastView & superScrollView. lastView = scrollView superScrollView = nextScrollView } else { - move = 0 + moveUp = 0 break } } - //Updating contentInset + // Updating contentInset if let lastScrollViewRect = lastScrollView.superview?.convert(lastScrollView.frame, to: window), lastScrollView.shouldIgnoreContentInsetAdjustment == false { var bottomInset: CGFloat = (kbSize.height)-(window.frame.height-lastScrollViewRect.maxY) - var bottomScrollIndicatorInset = bottomInset - newKeyboardDistanceFromTextField + var bottomScrollIndicatorInset = bottomInset - newKeyboardDistanceFromTextField - topViewBeginSafeAreaInsets.bottom // Update the insets so that the scroll vew doesn't shift incorrectly when the offset is near the bottom of the scroll view. bottomInset = max(startingContentInsets.bottom, bottomInset) bottomScrollIndicatorInset = max(startingScrollIndicatorInsets.bottom, bottomScrollIndicatorInset) - if #available(iOS 11, *) { - bottomInset -= lastScrollView.safeAreaInsets.bottom - bottomScrollIndicatorInset -= lastScrollView.safeAreaInsets.bottom - } + bottomInset -= lastScrollView.safeAreaInsets.bottom + bottomScrollIndicatorInset -= lastScrollView.safeAreaInsets.bottom var movedInsets = lastScrollView.contentInset movedInsets.bottom = bottomInset @@ -551,20 +538,14 @@ public extension IQKeyboardManager { } } } - //Going ahead. No else if. - - //Special case for UITextView(Readjusting textView.contentInset when textView hight is too big to fit on screen) - //_lastScrollView If not having inside any scrollView, (now contentInset manages the full screen textView. - //[_textFieldView isKindOfClass:[UITextView class]] If is a UITextView type - if let textView = textFieldView as? UIScrollView, textView.isScrollEnabled, textFieldView.responds(to: #selector(getter: UITextView.isEditable)) { + // Going ahead. No else if. - // CGRect rootSuperViewFrameInWindow = [_rootViewController.view.superview convertRect:_rootViewController.view.superview.bounds toView:keyWindow]; - // - // CGFloat keyboardOverlapping = CGRectGetMaxY(rootSuperViewFrameInWindow) - keyboardYPosition; - // - // CGFloat textViewHeight = MIN(CGRectGetHeight(_textFieldView.frame), (CGRectGetHeight(rootSuperViewFrameInWindow)-topLayoutGuide-keyboardOverlapping)); + // Special case for UITextView(Readjusting textView.contentInset when textView hight is too big to fit on screen) + // _lastScrollView If not having inside any scrollView, (now contentInset manages the full screen textView. + // [_textFieldView isKindOfClass:[UITextView class]] If is a UITextView type + if isScrollableTextView, let textView = textFieldView as? UIScrollView { - let keyboardYPosition = window.frame.height - (kbSize.height-newKeyboardDistanceFromTextField) + let keyboardYPosition = window.frame.height - originalKbSize.height var rootSuperViewFrameInWindow = window.frame if let rootSuperview = rootController.view.superview { rootSuperViewFrameInWindow = rootSuperview.convert(rootSuperview.bounds, to: window) @@ -575,7 +556,7 @@ public extension IQKeyboardManager { let textViewHeight = min(textView.frame.height, rootSuperViewFrameInWindow.height-topLayoutGuide-keyboardOverlapping) if textView.frame.size.height-textView.contentInset.bottom>textViewHeight { - //_isTextViewContentInsetChanged, If frame is not change by library in past, then saving user textView properties (Bug ID: #92) + // _isTextViewContentInsetChanged, If frame is not change by library in past, then saving user textView properties (Bug ID: #92) if !self.isTextViewContentInsetChanged { self.startingTextViewContentInsets = textView.contentInset @@ -594,10 +575,7 @@ public extension IQKeyboardManager { var newContentInset = textView.contentInset newContentInset.bottom = textView.frame.size.height-textViewHeight - - if #available(iOS 11, *) { - newContentInset.bottom -= textView.safeAreaInsets.bottom - } + newContentInset.bottom -= textView.safeAreaInsets.bottom if textView.contentInset != newContentInset { self.showLog("\(textFieldView) Old UITextView.contentInset: \(textView.contentInset) New UITextView.contentInset: \(newContentInset)") @@ -611,10 +589,10 @@ public extension IQKeyboardManager { } } - // +Positive or zero. - if move >= 0 { + // +Positive or zero. + if moveUp >= 0 { - rootViewOrigin.y = max(rootViewOrigin.y - move, min(0, -(kbSize.height-newKeyboardDistanceFromTextField))) + rootViewOrigin.y = max(rootViewOrigin.y - moveUp, min(0, -originalKbSize.height)) if rootController.view.frame.origin.equalTo(rootViewOrigin) == false { showLog("Moving Upward") @@ -625,9 +603,9 @@ public extension IQKeyboardManager { rect.origin = rootViewOrigin rootController.view.frame = rect - //Animating content if needed (Bug ID: #204) + // Animating content if needed (Bug ID: #204) if self.layoutIfNeededOnUpdate { - //Animating content (Bug ID: #160) + // Animating content (Bug ID: #160) rootController.view.setNeedsLayout() rootController.view.layoutIfNeeded() } @@ -644,7 +622,7 @@ public extension IQKeyboardManager { // disturbDistance positive = frame not disturbed. if disturbDistance <= 0 { - rootViewOrigin.y -= max(move, disturbDistance) + rootViewOrigin.y -= max(moveUp, disturbDistance) if rootController.view.frame.origin.equalTo(rootViewOrigin) == false { showLog("Moving Downward") @@ -657,9 +635,9 @@ public extension IQKeyboardManager { rect.origin = rootViewOrigin rootController.view.frame = rect - //Animating content if needed (Bug ID: #204) + // Animating content if needed (Bug ID: #204) if self.layoutIfNeededOnUpdate { - //Animating content (Bug ID: #160) + // Animating content (Bug ID: #160) rootController.view.setNeedsLayout() rootController.view.layoutIfNeeded() } @@ -675,33 +653,32 @@ public extension IQKeyboardManager { let elapsedTime = CACurrentMediaTime() - startTime showLog("<<<<< \(#function) ended: \(elapsedTime) seconds <<<<<", indentation: -1) } + // swiftlint:enable function_body_length internal func restorePosition() { - hasPendingAdjustRequest = false - // Setting rootViewController frame to it's original position. // (Bug ID: #18) guard topViewBeginOrigin.equalTo(IQKeyboardManager.kIQCGPointInvalid) == false, let rootViewController = rootViewController else { return } if rootViewController.view.frame.origin.equalTo(self.topViewBeginOrigin) == false { - //Used UIViewAnimationOptionBeginFromCurrentState to minimize strange animations. + // Used UIViewAnimationOptionBeginFromCurrentState to minimize strange animations. UIView.animate(withDuration: animationDuration, delay: 0, options: animationCurve, animations: { () -> Void in - self.showLog("Restoring \(rootViewController) origin to: \(self.topViewBeginOrigin)") - - // Setting it's new frame + // Setting it's new frame var rect = rootViewController.view.frame rect.origin = self.topViewBeginOrigin rootViewController.view.frame = rect - //Animating content if needed (Bug ID: #204) + // Animating content if needed (Bug ID: #204) if self.layoutIfNeededOnUpdate { - //Animating content (Bug ID: #160) + // Animating content (Bug ID: #160) rootViewController.view.setNeedsLayout() rootViewController.view.layoutIfNeeded() } + + self.showLog("Restoring \(rootViewController) origin to: \(self.topViewBeginOrigin)") }) } diff --git a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+Toolbar.swift b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+Toolbar.swift index c7b5835..dbc930a 100644 --- a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+Toolbar.swift +++ b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+Toolbar.swift @@ -40,7 +40,7 @@ public extension IQKeyboardManager { /** Add toolbar if it is required to add on textFields and it's siblings. */ internal func addToolbarIfRequired() { - //Either there is no inputAccessoryView or if accessoryView is not appropriate for current situation(There is Previous/Next/Done toolbar). + // Either there is no inputAccessoryView or if accessoryView is not appropriate for current situation(There is Previous/Next/Done toolbar). guard let siblings = responderViews(), !siblings.isEmpty, let textField = textFieldView, textField.responds(to: #selector(setter: UITextField.inputAccessoryView)), (textField.inputAccessoryView == nil || @@ -65,15 +65,34 @@ public extension IQKeyboardManager { } rightConfiguration.accessibilityLabel = toolbarDoneBarButtonItemAccessibilityLabel ?? "Done" - // If only one object is found, then adding only Done button. - if (siblings.count <= 1 && previousNextDisplayMode == .default) || previousNextDisplayMode == .alwaysHide { - - textField.addKeyboardToolbarWithTarget(target: self, titleText: (shouldShowToolbarPlaceholder ? textField.drawingToolbarPlaceholder: nil), rightBarButtonConfiguration: rightConfiguration, previousBarButtonConfiguration: nil, nextBarButtonConfiguration: nil) - - textField.inputAccessoryView?.tag = IQKeyboardManager.kIQDoneButtonToolbarTag // (Bug ID: #78) + let isTableCollectionView: Bool + if textField.superviewOfClassType(UITableView.self) != nil || + textField.superviewOfClassType(UICollectionView.self) != nil { + isTableCollectionView = true + } else { + isTableCollectionView = false + } - } else if previousNextDisplayMode == .default || previousNextDisplayMode == .alwaysShow { + let shouldHavePreviousNext: Bool + switch previousNextDisplayMode { + case .default: + // If the textField is part of UITableView/UICollectionView then we should be exposing previous/next too + // Because at this time we don't know the previous or next cell if it contains another textField to move. + if isTableCollectionView { + shouldHavePreviousNext = true + } else if siblings.count <= 1 { + // If only one object is found, then adding only Done button. + shouldHavePreviousNext = false + } else { + shouldHavePreviousNext = true + } + case .alwaysShow: + shouldHavePreviousNext = true + case .alwaysHide: + shouldHavePreviousNext = false + } + if shouldHavePreviousNext { let prevConfiguration: IQBarButtonItemConfiguration if let doneBarButtonItemImage = toolbarPreviousBarButtonItemImage { @@ -96,20 +115,36 @@ public extension IQKeyboardManager { } nextConfiguration.accessibilityLabel = toolbarNextBarButtonItemAccessibilityLabel ?? "Next" - textField.addKeyboardToolbarWithTarget(target: self, titleText: (shouldShowToolbarPlaceholder ? textField.drawingToolbarPlaceholder: nil), rightBarButtonConfiguration: rightConfiguration, previousBarButtonConfiguration: prevConfiguration, nextBarButtonConfiguration: nextConfiguration) + textField.addKeyboardToolbarWithTarget(target: self, titleText: (shouldShowToolbarPlaceholder ? textField.drawingToolbarPlaceholder: nil), titleAccessibilityLabel: toolbarTitlBarButtonItemAccessibilityLabel, rightBarButtonConfiguration: rightConfiguration, previousBarButtonConfiguration: prevConfiguration, nextBarButtonConfiguration: nextConfiguration) textField.inputAccessoryView?.tag = IQKeyboardManager.kIQPreviousNextButtonToolbarTag // (Bug ID: #78) + + if isTableCollectionView { + // In case of UITableView (Special), the next/previous buttons should always be enabled. (Bug ID: #56) + textField.keyboardToolbar.previousBarButton.isEnabled = true + textField.keyboardToolbar.nextBarButton.isEnabled = true + } else { + // If firstTextField, then previous should not be enabled. + textField.keyboardToolbar.previousBarButton.isEnabled = (siblings.first != textField) + // If lastTextField then next should not be enaled. + textField.keyboardToolbar.nextBarButton.isEnabled = (siblings.last != textField) + } + + } else { + textField.addKeyboardToolbarWithTarget(target: self, titleText: (shouldShowToolbarPlaceholder ? textField.drawingToolbarPlaceholder: nil), titleAccessibilityLabel: toolbarTitlBarButtonItemAccessibilityLabel, rightBarButtonConfiguration: rightConfiguration, previousBarButtonConfiguration: nil, nextBarButtonConfiguration: nil) + + textField.inputAccessoryView?.tag = IQKeyboardManager.kIQDoneButtonToolbarTag // (Bug ID: #78) } let toolbar = textField.keyboardToolbar - //Setting toolbar tintColor // (Enhancement ID: #30) + // Setting toolbar tintColor // (Enhancement ID: #30) toolbar.tintColor = shouldToolbarUsesTextFieldTintColor ? textField.tintColor : toolbarTintColor // Setting toolbar to keyboard. if let textFieldView = textField as? UITextInput { - //Bar style according to keyboard appearance + // Bar style according to keyboard appearance switch textFieldView.keyboardAppearance { case .dark?: @@ -121,33 +156,28 @@ public extension IQKeyboardManager { } } - //Setting toolbar title font. // (Enhancement ID: #30) + // Setting toolbar title font. // (Enhancement ID: #30) if shouldShowToolbarPlaceholder, !textField.shouldHideToolbarPlaceholder { - //Updating placeholder font to toolbar. //(Bug ID: #148, #272) + // Updating placeholder font to toolbar. //(Bug ID: #148, #272) if toolbar.titleBarButton.title == nil || toolbar.titleBarButton.title != textField.drawingToolbarPlaceholder { toolbar.titleBarButton.title = textField.drawingToolbarPlaceholder } - //Setting toolbar title font. // (Enhancement ID: #30) + // Setting toolbar title font. // (Enhancement ID: #30) toolbar.titleBarButton.titleFont = placeholderFont - //Setting toolbar title color. // (Enhancement ID: #880) + // Setting toolbar title color. // (Enhancement ID: #880) toolbar.titleBarButton.titleColor = placeholderColor - //Setting toolbar button title color. // (Enhancement ID: #880) + // Setting toolbar button title color. // (Enhancement ID: #880) toolbar.titleBarButton.selectableTitleColor = placeholderButtonColor } else { toolbar.titleBarButton.title = nil } - //In case of UITableView (Special), the next/previous buttons has to be refreshed everytime. (Bug ID: #56) - - textField.keyboardToolbar.previousBarButton.isEnabled = (siblings.first != textField) // If firstTextField, then previous should not be enabled. - textField.keyboardToolbar.nextBarButton.isEnabled = (siblings.last != textField) // If lastTextField then next should not be enaled. - let elapsedTime = CACurrentMediaTime() - startTime showLog("<<<<< \(#function) ended: \(elapsedTime) seconds <<<<<", indentation: -1) } @@ -171,7 +201,7 @@ public extension IQKeyboardManager { for view in siblings { if let toolbar = view.inputAccessoryView as? IQToolbar { - //setInputAccessoryView: check (Bug ID: #307) + // setInputAccessoryView: check (Bug ID: #307) if view.responds(to: #selector(setter: UITextField.inputAccessoryView)), (toolbar.tag == IQKeyboardManager.kIQDoneButtonToolbarTag || toolbar.tag == IQKeyboardManager.kIQPreviousNextButtonToolbarTag) { @@ -193,7 +223,7 @@ public extension IQKeyboardManager { /** reloadInputViews to reload toolbar buttons enable/disable state on the fly Enhancement ID #434. */ @objc func reloadInputViews() { - //If enabled then adding toolbar. + // If enabled then adding toolbar. if privateIsEnableAutoToolbar() { self.addToolbarIfRequired() } else { @@ -210,7 +240,7 @@ public extension IQKeyboardManager { Returns YES if can navigate to previous responder textField/textView, otherwise NO. */ @objc var canGoPrevious: Bool { - //If it is not first textField. then it's previous object canBecomeFirstResponder. + // If it is not first textField. then it's previous object canBecomeFirstResponder. guard let textFields = responderViews(), let textFieldRetain = textFieldView, let index = textFields.firstIndex(of: textFieldRetain), index > 0 else { return false } @@ -221,7 +251,7 @@ public extension IQKeyboardManager { Returns YES if can navigate to next responder textField/textView, otherwise NO. */ @objc var canGoNext: Bool { - //If it is not first textField. then it's previous object canBecomeFirstResponder. + // If it is not first textField. then it's previous object canBecomeFirstResponder. guard let textFields = responderViews(), let textFieldRetain = textFieldView, let index = textFields.firstIndex(of: textFieldRetain), index < textFields.count-1 else { return false } @@ -233,7 +263,7 @@ public extension IQKeyboardManager { */ @objc @discardableResult func goPrevious() -> Bool { - //If it is not first textField. then it's previous object becomeFirstResponder. + // If it is not first textField. then it's previous object becomeFirstResponder. guard let textFields = responderViews(), let textFieldRetain = textFieldView, let index = textFields.firstIndex(of: textFieldRetain), index > 0 else { return false } @@ -255,7 +285,7 @@ public extension IQKeyboardManager { */ @objc @discardableResult func goNext() -> Bool { - //If it is not first textField. then it's previous object becomeFirstResponder. + // If it is not first textField. then it's previous object becomeFirstResponder. guard let textFields = responderViews(), let textFieldRetain = textFieldView, let index = textFields.firstIndex(of: textFieldRetain), index < textFields.count-1 else { return false } @@ -275,9 +305,9 @@ public extension IQKeyboardManager { /** previousAction. */ @objc internal func previousAction (_ barButton: IQBarButtonItem) { - //If user wants to play input Click sound. + // If user wants to play input Click sound. if shouldPlayInputClicks { - //Play Input Click Sound. + // Play Input Click Sound. UIDevice.current.playInputClick() } @@ -290,7 +320,7 @@ public extension IQKeyboardManager { var invocation = barButton.invocation var sender = textFieldRetain - //Handling search bar special case + // Handling search bar special case do { if let searchBar = textFieldRetain.textFieldSearchBar() { invocation = searchBar.keyboardToolbar.previousBarButton.invocation @@ -306,9 +336,9 @@ public extension IQKeyboardManager { /** nextAction. */ @objc internal func nextAction (_ barButton: IQBarButtonItem) { - //If user wants to play input Click sound. + // If user wants to play input Click sound. if shouldPlayInputClicks { - //Play Input Click Sound. + // Play Input Click Sound. UIDevice.current.playInputClick() } @@ -321,7 +351,7 @@ public extension IQKeyboardManager { var invocation = barButton.invocation var sender = textFieldRetain - //Handling search bar special case + // Handling search bar special case do { if let searchBar = textFieldRetain.textFieldSearchBar() { invocation = searchBar.keyboardToolbar.nextBarButton.invocation @@ -337,9 +367,9 @@ public extension IQKeyboardManager { /** doneAction. Resigning current textField. */ @objc internal func doneAction (_ barButton: IQBarButtonItem) { - //If user wants to play input Click sound. + // If user wants to play input Click sound. if shouldPlayInputClicks { - //Play Input Click Sound. + // Play Input Click Sound. UIDevice.current.playInputClick() } @@ -347,13 +377,13 @@ public extension IQKeyboardManager { return } - //Resign textFieldView. + // Resign textFieldView. let isResignedFirstResponder = resignFirstResponder() var invocation = barButton.invocation var sender = textFieldRetain - //Handling search bar special case + // Handling search bar special case do { if let searchBar = textFieldRetain.textFieldSearchBar() { invocation = searchBar.keyboardToolbar.doneBarButton.invocation diff --git a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+UIKeyboardNotification.swift b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+UIKeyboardNotification.swift index f32b84b..d2e436e 100644 --- a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+UIKeyboardNotification.swift +++ b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+UIKeyboardNotification.swift @@ -41,13 +41,13 @@ public extension IQKeyboardManager { } private struct AssociatedKeys { - static var keyboardSizeObservers = "keyboardSizeObservers" - static var keyboardLastNotifySize = "keyboardLastNotifySize" - static var keyboardShowing = "keyboardShowing" - static var keyboardShowNotification = "keyboardShowNotification" - static var keyboardFrame = "keyboardFrame" - static var animationDuration = "animationDuration" - static var animationCurve = "animationCurve" + static var keyboardSizeObservers: Int = 0 + static var keyboardLastNotifySize: Int = 0 + static var keyboardShowing: Int = 0 + static var keyboardShowNotification: Int = 0 + static var keyboardFrame: Int = 0 + static var animationDuration: Int = 0 + static var animationCurve: Int = 0 } private var keyboardLastNotifySize: CGSize { @@ -161,7 +161,11 @@ public extension IQKeyboardManager { } // Getting keyboard animation duration - animationDuration = info[UIResponder.keyboardAnimationDurationUserInfoKey] as? TimeInterval ?? 0.25 + if let duration = info[UIResponder.keyboardAnimationDurationUserInfoKey] as? TimeInterval, duration != 0 { + animationDuration = duration + } else { + animationDuration = 0.25 + } // Getting UIKeyboardSize. if let kbFrame = info[UIResponder.keyboardFrameEndUserInfoKey] as? CGRect { @@ -175,6 +179,7 @@ public extension IQKeyboardManager { guard privateIsEnabled() else { restorePosition() topViewBeginOrigin = IQKeyboardManager.kIQCGPointInvalid + topViewBeginSafeAreaInsets = .zero return } @@ -194,6 +199,7 @@ public extension IQKeyboardManager { topViewBeginOrigin = topViewBeginOriginWhilePopGestureRecognizerActive } else { topViewBeginOrigin = controller.view.frame.origin + topViewBeginSafeAreaInsets = controller.view.safeAreaInsets } rootViewControllerWhilePopGestureRecognizerActive = nil @@ -203,17 +209,17 @@ public extension IQKeyboardManager { } } - //If last restored keyboard size is different(any orientation accure), then refresh. otherwise not. + // If last restored keyboard size is different(any orientation accure), then refresh. otherwise not. if keyboardFrame.equalTo(oldKBFrame) == false { - //If textFieldView is inside UITableViewController then let UITableViewController to handle it (Bug ID: #37) (Bug ID: #76) See note:- https://developer.apple.com/library/ios/documentation/StringsTextFonts/Conceptual/TextAndWebiPhoneOS/KeyboardManagement/KeyboardManagement.html If it is UIAlertView textField then do not affect anything (Bug ID: #70). + // If textFieldView is inside UITableViewController then let UITableViewController to handle it (Bug ID: #37) (Bug ID: #76) See note:- https://developer.apple.com/library/ios/documentation/StringsTextFonts/Conceptual/TextAndWebiPhoneOS/KeyboardManagement/KeyboardManagement.html If it is UIAlertView textField then do not affect anything (Bug ID: #70). if keyboardShowing, let textFieldView = textFieldView, textFieldView.isAlertViewTextField() == false { // keyboard is already showing. adjust position. - optimizedAdjustPosition() + self.adjustPosition() } } @@ -221,30 +227,10 @@ public extension IQKeyboardManager { showLog("⌨️<<<<< \(#function) ended: \(elapsedTime) seconds <<<<<", indentation: -1) } - /* UIKeyboardDidShowNotification. */ - @objc internal func keyboardDidShow(_ notification: Notification) { - - guard privateIsEnabled(), - let textFieldView = textFieldView, - let parentController = textFieldView.parentContainerViewController(), (parentController.modalPresentationStyle == UIModalPresentationStyle.formSheet || parentController.modalPresentationStyle == UIModalPresentationStyle.pageSheet), - textFieldView.isAlertViewTextField() == false else { - return - } - - let startTime = CACurrentMediaTime() - showLog("⌨️>>>>> \(#function) started >>>>>", indentation: 1) - showLog("Notification Object:\(notification.object ?? "NULL")") - - self.optimizedAdjustPosition() - - let elapsedTime = CACurrentMediaTime() - startTime - showLog("⌨️<<<<< \(#function) ended: \(elapsedTime) seconds <<<<<", indentation: -1) - } - /* UIKeyboardWillHideNotification. So setting rootViewController to it's default frame. */ @objc internal func keyboardWillHide(_ notification: Notification?) { - //If it's not a fake notification generated by [self setEnable:NO]. + // If it's not a fake notification generated by [self setEnable:NO]. if notification != nil { keyboardShowNotification = nil } @@ -262,10 +248,14 @@ public extension IQKeyboardManager { } // Getting keyboard animation duration - animationDuration = info[UIResponder.keyboardAnimationDurationUserInfoKey] as? TimeInterval ?? 0.25 + if let duration = info[UIResponder.keyboardAnimationDurationUserInfoKey] as? TimeInterval, duration != 0 { + animationDuration = duration + } else { + animationDuration = 0.25 + } } - //If not enabled then do nothing. + // If not enabled then do nothing. guard privateIsEnabled() else { return } @@ -274,11 +264,11 @@ public extension IQKeyboardManager { showLog("⌨️>>>>> \(#function) started >>>>>", indentation: 1) showLog("Notification Object:\(notification?.object ?? "NULL")") - //Commented due to #56. Added all the conditions below to handle WKWebView's textFields. (Bug ID: #56) + // Commented due to #56. Added all the conditions below to handle WKWebView's textFields. (Bug ID: #56) // We are unable to get textField object while keyboard showing on WKWebView's textField. (Bug ID: #11) // if (_textFieldView == nil) return - //Restoring the contentOffset of the lastScrollView + // Restoring the contentOffset of the lastScrollView if let lastScrollView = lastScrollView { UIView.animate(withDuration: animationDuration, delay: 0, options: animationCurve, animations: { () -> Void in @@ -335,29 +325,15 @@ public extension IQKeyboardManager { restorePosition() - //Reset all values + // Reset all values lastScrollView = nil - keyboardFrame = CGRect.zero + keyboardFrame = .zero notifyKeyboardSize(size: keyboardFrame.size) - startingContentInsets = UIEdgeInsets() - startingScrollIndicatorInsets = UIEdgeInsets() + startingContentInsets = .zero + startingScrollIndicatorInsets = .zero startingContentOffset = CGPoint.zero - // topViewBeginRect = CGRectZero //Commented due to #82 - - let elapsedTime = CACurrentMediaTime() - startTime - showLog("⌨️<<<<< \(#function) ended: \(elapsedTime) seconds <<<<<", indentation: -1) - } - - @objc internal func keyboardDidHide(_ notification: Notification) { - - let startTime = CACurrentMediaTime() - showLog("⌨️>>>>> \(#function) started >>>>>", indentation: 1) - showLog("Notification Object:\(notification.object ?? "NULL")") - topViewBeginOrigin = IQKeyboardManager.kIQCGPointInvalid - - keyboardFrame = CGRect.zero - notifyKeyboardSize(size: keyboardFrame.size) + topViewBeginSafeAreaInsets = .zero let elapsedTime = CACurrentMediaTime() - startTime showLog("⌨️<<<<< \(#function) ended: \(elapsedTime) seconds <<<<<", indentation: -1) diff --git a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+UITextFieldViewNotification.swift b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+UITextFieldViewNotification.swift index 1821bf3..dd707f2 100644 --- a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+UITextFieldViewNotification.swift +++ b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager+UITextFieldViewNotification.swift @@ -29,11 +29,12 @@ import UIKit internal extension IQKeyboardManager { private struct AssociatedKeys { - static var textFieldView = "textFieldView" - static var topViewBeginOrigin = "topViewBeginOrigin" - static var rootViewController = "rootViewController" - static var rootViewControllerWhilePopGestureRecognizerActive = "rootViewControllerWhilePopGestureRecognizerActive" - static var topViewBeginOriginWhilePopGestureRecognizerActive = "topViewBeginOriginWhilePopGestureRecognizerActive" + static var textFieldView: Int = 0 + static var topViewBeginOrigin: Int = 0 + static var topViewBeginSafeAreaInsets: Int = 0 + static var rootViewController: Int = 0 + static var rootViewControllerWhilePopGestureRecognizerActive: Int = 0 + static var topViewBeginOriginWhilePopGestureRecognizerActive: Int = 0 } /** To save UITextField/UITextView object voa textField/textView notifications. */ @@ -55,6 +56,15 @@ internal extension IQKeyboardManager { } } + var topViewBeginSafeAreaInsets: UIEdgeInsets { + get { + return objc_getAssociatedObject(self, &AssociatedKeys.topViewBeginSafeAreaInsets) as? UIEdgeInsets ?? .zero + } + set(newValue) { + objc_setAssociatedObject(self, &AssociatedKeys.topViewBeginSafeAreaInsets, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) + } + } + /** To save rootViewController */ weak var rootViewController: UIViewController? { get { @@ -99,7 +109,7 @@ internal extension IQKeyboardManager { textFieldView = notification.object as? UIView if overrideKeyboardAppearance, let textInput = textFieldView as? UITextInput, textInput.keyboardAppearance != keyboardAppearance { - //Setting textField keyboard appearance and reloading inputViews. + // Setting textField keyboard appearance and reloading inputViews. if let textFieldView = textFieldView as? UITextField { textFieldView.keyboardAppearance = keyboardAppearance } else if let textFieldView = textFieldView as? UITextView { @@ -108,24 +118,15 @@ internal extension IQKeyboardManager { textFieldView?.reloadInputViews() } - //If autoToolbar enable, then add toolbar on all the UITextField/UITextView's if required. + // If autoToolbar enable, then add toolbar on all the UITextField/UITextView's if required. if privateIsEnableAutoToolbar() { - //UITextView special case. Keyboard Notification is firing before textView notification so we need to resign it first and then again set it as first responder to add toolbar on it. + // UITextView special case. Keyboard Notification is firing before textView notification so we need to resign it first and then again set it as first responder to add toolbar on it. if let textView = textFieldView as? UIScrollView, textView.responds(to: #selector(getter: UITextView.isEditable)), textView.inputAccessoryView == nil { - - UIView.animate(withDuration: 0.00001, delay: 0, options: animationCurve, animations: { () -> Void in - - self.addToolbarIfRequired() - - }, completion: { (_) -> Void in - - //On textView toolbar didn't appear on first time, so forcing textView to reload it's inputViews. - textView.reloadInputViews() - }) + self.addToolbarIfRequired() } else { - //Adding toolbar + // Adding toolbar addToolbarIfRequired() } } else { @@ -138,6 +139,7 @@ internal extension IQKeyboardManager { if privateIsEnabled() == false { restorePosition() topViewBeginOrigin = IQKeyboardManager.kIQCGPointInvalid + topViewBeginSafeAreaInsets = .zero } else { if topViewBeginOrigin.equalTo(IQKeyboardManager.kIQCGPointInvalid) { // (Bug ID: #5) @@ -149,6 +151,7 @@ internal extension IQKeyboardManager { topViewBeginOrigin = topViewBeginOriginWhilePopGestureRecognizerActive } else { topViewBeginOrigin = controller.view.frame.origin + topViewBeginSafeAreaInsets = controller.view.safeAreaInsets } rootViewControllerWhilePopGestureRecognizerActive = nil @@ -158,14 +161,14 @@ internal extension IQKeyboardManager { } } - //If textFieldView is inside ignored responder then do nothing. (Bug ID: #37, #74, #76) - //See notes:- https://developer.apple.com/library/ios/documentation/StringsTextFonts/Conceptual/TextAndWebiPhoneOS/KeyboardManagement/KeyboardManagement.html If it is UIAlertView textField then do not affect anything (Bug ID: #70). + // If textFieldView is inside ignored responder then do nothing. (Bug ID: #37, #74, #76) + // See notes:- https://developer.apple.com/library/ios/documentation/StringsTextFonts/Conceptual/TextAndWebiPhoneOS/KeyboardManagement/KeyboardManagement.html If it is UIAlertView textField then do not affect anything (Bug ID: #70). if keyboardShowing, let textFieldView = textFieldView, textFieldView.isAlertViewTextField() == false { // keyboard is already showing. adjust position. - optimizedAdjustPosition() + self.adjustPosition() } } @@ -184,7 +187,7 @@ internal extension IQKeyboardManager { showLog("📝>>>>> \(#function) started >>>>>", indentation: 1) showLog("Notification Object:\(notification.object ?? "NULL")") - //Removing gesture recognizer (Enhancement ID: #14) + // Removing gesture recognizer (Enhancement ID: #14) textFieldView?.window?.removeGestureRecognizer(resignFirstResponderGesture) // We check if there's a change in original frame or not. @@ -199,7 +202,7 @@ internal extension IQKeyboardManager { UIView.animate(withDuration: animationDuration, delay: 0, options: animationCurve, animations: { () -> Void in - //Setting textField to it's initial contentInset + // Setting textField to it's initial contentInset textView.contentInset = self.startingTextViewContentInsets textView.scrollIndicatorInsets = self.startingTextViewScrollIndicatorInsets @@ -208,12 +211,12 @@ internal extension IQKeyboardManager { } } - //Setting object to nil + // Setting object to nil #if swift(>=5.7) if #available(iOS 16.0, *), let textView = object as? UITextView, textView.isFindInteractionEnabled { - //Not setting it nil, because it may be doing find interaction. - //As of now, here textView.findInteraction?.isFindNavigatorVisible returns false - //So there is no way to detect if this is dismissed due to findInteraction + // Not setting it nil, because it may be doing find interaction. + // As of now, here textView.findInteraction?.isFindNavigatorVisible returns false + // So there is no way to detect if this is dismissed due to findInteraction } else { textFieldView = nil } diff --git a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager.swift b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager.swift index 58b7ea7..c0580a6 100644 --- a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager.swift +++ b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager.swift @@ -53,14 +53,14 @@ Codeless drop-in universal library allows to prevent issues of keyboard sliding @objc public var enable = false { didSet { - //If not enable, enable it. + // If not enable, enable it. if enable, !oldValue { - //If keyboard is currently showing. Sending a fake notification for keyboardWillHide to retain view's original position. + // If keyboard is currently showing. Sending a fake notification for keyboardWillHide to retain view's original position. if let notification = keyboardShowNotification { keyboardWillShow(notification) } showLog("Enabled") - } else if !enable, oldValue { //If not disable, desable it. + } else if !enable, oldValue { // If not disable, desable it. keyboardWillHide(nil) showLog("Disabled") } @@ -79,7 +79,11 @@ Codeless drop-in universal library allows to prevent issues of keyboard sliding */ @objc public var enableAutoToolbar = true { didSet { - privateIsEnableAutoToolbar() ? addToolbarIfRequired() : removeToolbarIfRequired() + if privateIsEnableAutoToolbar() { + addToolbarIfRequired() + } else { + removeToolbarIfRequired() + } let enableToolbar = enableAutoToolbar ? "Yes" : "NO" @@ -137,7 +141,7 @@ Codeless drop-in universal library allows to prevent issues of keyboard sliding @objc public var toolbarNextBarButtonItemAccessibilityLabel: String? @objc public var toolbarDoneBarButtonItemText: String? @objc public var toolbarDoneBarButtonItemAccessibilityLabel: String? - + @objc public var toolbarTitlBarButtonItemAccessibilityLabel: String? /** If YES, then it add the textField's placeholder text on IQToolbar. Default is YES. */ @@ -207,11 +211,11 @@ Codeless drop-in universal library allows to prevent issues of keyboard sliding return false } - //Resigning first responder + // Resigning first responder guard textFieldRetain.resignFirstResponder() else { showLog("Refuses to resign first responder: \(textFieldRetain)") // If it refuses then becoming it as first responder again. (Bug ID: #96) - //If it refuses to resign then becoming it first responder again for getting notifications callback. + // If it refuses to resign then becoming it first responder again for getting notifications callback. textFieldRetain.becomeFirstResponder() return false } @@ -311,15 +315,9 @@ Codeless drop-in universal library allows to prevent issues of keyboard sliding self.registerAllNotifications() - //Creating gesture for @shouldResignOnTouchOutside. (Enhancement ID: #14) + // Creating gesture for @shouldResignOnTouchOutside. (Enhancement ID: #14) resignFirstResponderGesture.isEnabled = shouldResignOnTouchOutside - //Loading IQToolbar, IQTitleBarButtonItem, IQBarButtonItem to fix first time keyboard appearance delay (Bug ID: #550) - //If you experience exception breakpoint issue at below line then try these solutions https://stackoverflow.com/questions/27375640/all-exception-break-point-is-stopping-for-no-reason-on-simulator - let textField = UITextField() - textField.addDoneOnKeyboardWithTarget(nil, action: #selector(self.doneAction(_:))) - textField.addPreviousNextDoneOnKeyboardWithTarget(nil, previousAction: #selector(self.previousAction(_:)), nextAction: #selector(self.nextAction(_:)), doneAction: #selector(self.doneAction(_:))) - disabledDistanceHandlingClasses.append(UITableViewController.self) disabledDistanceHandlingClasses.append(UIAlertController.self) disabledToolbarClasses.append(UIAlertController.self) @@ -329,6 +327,14 @@ Codeless drop-in universal library allows to prevent issues of keyboard sliding toolbarPreviousNextAllowedClasses.append(IQPreviousNextView.self) touchResignedGestureIgnoreClasses.append(UIControl.self) touchResignedGestureIgnoreClasses.append(UINavigationBar.self) + + // Loading IQToolbar, IQTitleBarButtonItem, IQBarButtonItem to fix first time keyboard appearance delay (Bug ID: #550) + // If you experience exception breakpoint issue at below line then try these solutions https://stackoverflow.com/questions/27375640/all-exception-break-point-is-stopping-for-no-reason-on-simulator + DispatchQueue.main.async { + let textField = UITextField() + textField.addDoneOnKeyboardWithTarget(nil, action: #selector(self.doneAction(_:))) + textField.addPreviousNextDoneOnKeyboardWithTarget(nil, previousAction: #selector(self.previousAction(_:)), nextAction: #selector(self.nextAction(_:)), doneAction: #selector(self.doneAction(_:))) + } } deinit { @@ -364,12 +370,12 @@ Codeless drop-in universal library allows to prevent issues of keyboard sliding originalKeyWindow = UIApplication.shared.keyWindow #endif - //If original key window is not nil and the cached keywindow is also not original keywindow then changing keywindow. + // If original key window is not nil and the cached keywindow is also not original keywindow then changing keywindow. if let originalKeyWindow = originalKeyWindow { Static.keyWindow = originalKeyWindow } - //Return KeyWindow + // Return KeyWindow return Static.keyWindow } } @@ -385,7 +391,7 @@ Codeless drop-in universal library allows to prevent issues of keyboard sliding textFieldView.isAlertViewTextField() == false else { return } - optimizedAdjustPosition() + self.adjustPosition() } } @@ -397,7 +403,7 @@ extension IQKeyboardManager: UIGestureRecognizerDelegate { if gesture.state == .ended { - //Resigning currently responder textField. + // Resigning currently responder textField. resignFirstResponder() } } @@ -411,11 +417,8 @@ extension IQKeyboardManager: UIGestureRecognizerDelegate { @objc public func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool { // Should not recognize gesture if the clicked view is either UIControl or UINavigationBar( IQTextFieldViewInfoModal? { - for modal in textFieldInfoCache { + for model in textFieldInfoCache { - if let view = modal.textFieldView { + if let view = model.textFieldView { if view == textField { - return modal + return model } } } @@ -126,7 +130,7 @@ Manages the return key to work like next/done in a view hierarchy. private func updateReturnKeyTypeOnTextField(_ view: UIView) { var superConsideredView: UIView? - //If find any consider responderView in it's upper hierarchy then will get deepResponderView. (Bug ID: #347) + // If find any consider responderView in it's upper hierarchy then will get deepResponderView. (Bug ID: #347) for disabledClass in IQKeyboardManager.shared.toolbarPreviousNextAllowedClasses { superConsideredView = view.superviewOfClassType(disabledClass) @@ -138,18 +142,18 @@ Manages the return key to work like next/done in a view hierarchy. var textFields = [UIView]() - //If there is a tableView in view's hierarchy, then fetching all it's subview that responds. + // If there is a tableView in view's hierarchy, then fetching all it's subview that responds. if let unwrappedTableView = superConsideredView { // (Enhancement ID: #22) textFields = unwrappedTableView.deepResponderViews() - } else { //Otherwise fetching all the siblings + } else { // Otherwise fetching all the siblings textFields = view.responderSiblings() - //Sorting textFields according to behaviour + // Sorting textFields according to behaviour switch IQKeyboardManager.shared.toolbarManageBehaviour { - //If needs to sort it by tag + // If needs to sort it by tag case .byTag: textFields = textFields.sortedArrayByTag() - //If needs to sort it by Position + // If needs to sort it by Position case .byPosition: textFields = textFields.sortedArrayByPosition() default: break } @@ -159,11 +163,11 @@ Manages the return key to work like next/done in a view hierarchy. if let textField = view as? UITextField { - //If it's the last textField in responder view, else next + // If it's the last textField in responder view, else next textField.returnKeyType = (view == lastView) ? lastTextFieldReturnKeyType: UIReturnKeyType.next } else if let textView = view as? UITextView { - //If it's the last textField in responder view, else next + // If it's the last textField in responder view, else next textView.returnKeyType = (view == lastView) ? lastTextFieldReturnKeyType: UIReturnKeyType.next } } @@ -178,22 +182,16 @@ Manages the return key to work like next/done in a view hierarchy. */ @objc public func addTextFieldView(_ view: UIView) { - let modal = IQTextFieldViewInfoModal(textFieldView: view, textFieldDelegate: nil, textViewDelegate: nil) - if let textField = view as? UITextField { - - modal.originalReturnKeyType = textField.returnKeyType - modal.textFieldDelegate = textField.delegate + let model = IQTextFieldViewInfoModal(textField: textField) + textFieldInfoCache.append(model) textField.delegate = self } else if let textView = view as? UITextView { - - modal.originalReturnKeyType = textView.returnKeyType - modal.textViewDelegate = textView.delegate + let model = IQTextFieldViewInfoModal(textView: textView) + textFieldInfoCache.append(model) textView.delegate = self } - - textFieldInfoCache.append(modal) } /** @@ -203,20 +201,10 @@ Manages the return key to work like next/done in a view hierarchy. */ @objc public func removeTextFieldView(_ view: UIView) { - if let modal = textFieldViewCachedInfo(view) { - - if let textField = view as? UITextField { - - textField.returnKeyType = modal.originalReturnKeyType - textField.delegate = modal.textFieldDelegate - } else if let textView = view as? UITextView { - - textView.returnKeyType = modal.originalReturnKeyType - textView.delegate = modal.textViewDelegate - } + if let model = textFieldViewCachedInfo(view) { + model.restore() if let index = textFieldInfoCache.firstIndex(where: { $0.textFieldView == view}) { - textFieldInfoCache.remove(at: index) } } @@ -256,7 +244,7 @@ Manages the return key to work like next/done in a view hierarchy. var superConsideredView: UIView? - //If find any consider responderView in it's upper hierarchy then will get deepResponderView. (Bug ID: #347) + // If find any consider responderView in it's upper hierarchy then will get deepResponderView. (Bug ID: #347) for disabledClass in IQKeyboardManager.shared.toolbarPreviousNextAllowedClasses { superConsideredView = view.superviewOfClassType(disabledClass) @@ -268,27 +256,27 @@ Manages the return key to work like next/done in a view hierarchy. var textFields = [UIView]() - //If there is a tableView in view's hierarchy, then fetching all it's subview that responds. + // If there is a tableView in view's hierarchy, then fetching all it's subview that responds. if let unwrappedTableView = superConsideredView { // (Enhancement ID: #22) textFields = unwrappedTableView.deepResponderViews() - } else { //Otherwise fetching all the siblings + } else { // Otherwise fetching all the siblings textFields = view.responderSiblings() - //Sorting textFields according to behaviour + // Sorting textFields according to behaviour switch IQKeyboardManager.shared.toolbarManageBehaviour { - //If needs to sort it by tag + // If needs to sort it by tag case .byTag: textFields = textFields.sortedArrayByTag() - //If needs to sort it by Position + // If needs to sort it by Position case .byPosition: textFields = textFields.sortedArrayByPosition() default: break } } - //Getting index of current textField. + // Getting index of current textField. if let index = textFields.firstIndex(of: view) { - //If it is not last textField. then it's next object becomeFirstResponder. + // If it is not last textField. then it's next object becomeFirstResponder. if index < (textFields.count - 1) { let nextTextField = textFields[index+1] @@ -344,8 +332,8 @@ extension IQKeyboardReturnKeyHandler: UITextFieldDelegate { if aDelegate == nil { - if let modal = textFieldViewCachedInfo(textField) { - aDelegate = modal.textFieldDelegate + if let model = textFieldViewCachedInfo(textField) { + aDelegate = model.textFieldDelegate } } @@ -358,23 +346,22 @@ extension IQKeyboardReturnKeyHandler: UITextFieldDelegate { if aDelegate == nil { - if let modal = textFieldViewCachedInfo(textField) { - aDelegate = modal.textFieldDelegate + if let model = textFieldViewCachedInfo(textField) { + aDelegate = model.textFieldDelegate } } aDelegate?.textFieldDidEndEditing?(textField) } - @available(iOS 10.0, *) @objc public func textFieldDidEndEditing(_ textField: UITextField, reason: UITextField.DidEndEditingReason) { var aDelegate: UITextFieldDelegate? = delegate if aDelegate == nil { - if let modal = textFieldViewCachedInfo(textField) { - aDelegate = modal.textFieldDelegate + if let model = textFieldViewCachedInfo(textField) { + aDelegate = model.textFieldDelegate } } @@ -469,8 +456,8 @@ extension IQKeyboardReturnKeyHandler: UITextViewDelegate { if aDelegate == nil { - if let modal = textFieldViewCachedInfo(textView) { - aDelegate = modal.textViewDelegate + if let model = textFieldViewCachedInfo(textView) { + aDelegate = model.textViewDelegate } } @@ -483,8 +470,8 @@ extension IQKeyboardReturnKeyHandler: UITextViewDelegate { if aDelegate == nil { - if let modal = textFieldViewCachedInfo(textView) { - aDelegate = modal.textViewDelegate + if let model = textFieldViewCachedInfo(textView) { + aDelegate = model.textViewDelegate } } @@ -517,8 +504,8 @@ extension IQKeyboardReturnKeyHandler: UITextViewDelegate { if aDelegate == nil { - if let modal = textFieldViewCachedInfo(textView) { - aDelegate = modal.textViewDelegate + if let model = textFieldViewCachedInfo(textView) { + aDelegate = model.textViewDelegate } } @@ -531,15 +518,14 @@ extension IQKeyboardReturnKeyHandler: UITextViewDelegate { if aDelegate == nil { - if let modal = textFieldViewCachedInfo(textView) { - aDelegate = modal.textViewDelegate + if let model = textFieldViewCachedInfo(textView) { + aDelegate = model.textViewDelegate } } aDelegate?.textViewDidChangeSelection?(textView) } - @available(iOS 10.0, *) @objc public func textView(_ aTextView: UITextView, shouldInteractWith URL: URL, in characterRange: NSRange, interaction: UITextItemInteraction) -> Bool { if delegate == nil { @@ -554,7 +540,6 @@ extension IQKeyboardReturnKeyHandler: UITextViewDelegate { return true } - @available(iOS 10.0, *) @objc public func textView(_ aTextView: UITextView, shouldInteractWith textAttachment: NSTextAttachment, in characterRange: NSRange, interaction: UITextItemInteraction) -> Bool { if delegate == nil { @@ -598,8 +583,11 @@ extension IQKeyboardReturnKeyHandler: UITextViewDelegate { return true } +} #if swift(>=5.7) +@available(iOSApplicationExtension, unavailable) +extension IQKeyboardReturnKeyHandler { @available(iOS 16.0, *) public func textView(_ aTextView: UITextView, editMenuForTextIn range: NSRange, suggestedActions: [UIMenuElement]) -> UIMenu? { if delegate == nil { @@ -620,8 +608,8 @@ extension IQKeyboardReturnKeyHandler: UITextViewDelegate { if aDelegate == nil { - if let modal = textFieldViewCachedInfo(aTextView) { - aDelegate = modal.textViewDelegate + if let model = textFieldViewCachedInfo(aTextView) { + aDelegate = model.textViewDelegate } } @@ -634,12 +622,74 @@ extension IQKeyboardReturnKeyHandler: UITextViewDelegate { if aDelegate == nil { - if let modal = textFieldViewCachedInfo(aTextView) { - aDelegate = modal.textViewDelegate + if let model = textFieldViewCachedInfo(aTextView) { + aDelegate = model.textViewDelegate } } aDelegate?.textView?(aTextView, willDismissEditMenuWith: animator) } +} #endif + +#if swift(>=5.9) +@available(iOSApplicationExtension, unavailable) +extension IQKeyboardReturnKeyHandler { + + @available(iOS 17.0, *) + public func textView(_ aTextView: UITextView, primaryActionFor textItem: UITextItem, defaultAction: UIAction) -> UIAction? { + if delegate == nil { + + if let unwrapDelegate = textFieldViewCachedInfo(aTextView)?.textViewDelegate { + if unwrapDelegate.responds(to: #selector(textView as (UITextView, UITextItem, UIAction) -> UIAction?)) { + return unwrapDelegate.textView?(aTextView, primaryActionFor: textItem, defaultAction: defaultAction) + } + } + } + + return nil + } + + @available(iOS 17.0, *) + public func textView(_ aTextView: UITextView, menuConfigurationFor textItem: UITextItem, defaultMenu: UIMenu) -> UITextItem.MenuConfiguration? { + if delegate == nil { + + if let unwrapDelegate = textFieldViewCachedInfo(aTextView)?.textViewDelegate { + if unwrapDelegate.responds(to: #selector(textView as (UITextView, UITextItem, UIMenu) -> UITextItem.MenuConfiguration?)) { + return unwrapDelegate.textView?(aTextView, menuConfigurationFor: textItem, defaultMenu: defaultMenu) + } + } + } + + return nil + } + + @available(iOS 17.0, *) + public func textView(_ textView: UITextView, textItemMenuWillDisplayFor textItem: UITextItem, animator: UIContextMenuInteractionAnimating) { + var aDelegate: UITextViewDelegate? = delegate + + if aDelegate == nil { + + if let model = textFieldViewCachedInfo(textView) { + aDelegate = model.textViewDelegate + } + } + + aDelegate?.textView?(textView, textItemMenuWillDisplayFor: textItem, animator: animator) + } + + @available(iOS 17.0, *) + public func textView(_ textView: UITextView, textItemMenuWillEndFor textItem: UITextItem, animator: UIContextMenuInteractionAnimating) { + var aDelegate: UITextViewDelegate? = delegate + + if aDelegate == nil { + + if let model = textFieldViewCachedInfo(textView) { + aDelegate = model.textViewDelegate + } + } + + aDelegate?.textView?(textView, textItemMenuWillEndFor: textItem, animator: animator) + } } +#endif diff --git a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQTextView/IQPlaceholderable.swift b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQTextView/IQPlaceholderable.swift new file mode 100644 index 0000000..d8021b4 --- /dev/null +++ b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQTextView/IQPlaceholderable.swift @@ -0,0 +1,38 @@ +// +// IQPlaceholderable.swift +// https://github.com/hackiftekhar/IQKeyboardManager +// Copyright (c) 2013-20 Iftekhar Qurashi. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +import Foundation +import UIKit + +@available(iOSApplicationExtension, unavailable) +public protocol IQPlaceholderable: AnyObject { + + var placeholder: String? { get set } + var attributedPlaceholder: NSAttributedString? { get set } +} + +@available(iOSApplicationExtension, unavailable) +extension UITextField: IQPlaceholderable { } + +@available(iOSApplicationExtension, unavailable) +extension IQTextView: IQPlaceholderable { } diff --git a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQTextView/IQTextView.swift b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQTextView/IQTextView.swift index 1437c85..329d486 100644 --- a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQTextView/IQTextView.swift +++ b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQTextView/IQTextView.swift @@ -42,10 +42,6 @@ import UIKit NotificationCenter.default.addObserver(self, selector: #selector(self.refreshPlaceholder), name: UITextView.textDidChangeNotification, object: self) } - deinit { - IQ_PlaceholderLabel.removeFromSuperview() - } - private var placeholderInsets: UIEdgeInsets { return UIEdgeInsets(top: self.textContainerInset.top, left: self.textContainerInset.left + self.textContainer.lineFragmentPadding, bottom: self.textContainerInset.bottom, right: self.textContainerInset.right + self.textContainer.lineFragmentPadding) } @@ -53,12 +49,12 @@ import UIKit private var placeholderExpectedFrame: CGRect { let placeholderInsets = self.placeholderInsets let maxWidth = self.frame.width-placeholderInsets.left-placeholderInsets.right - let expectedSize = IQ_PlaceholderLabel.sizeThatFits(CGSize(width: maxWidth, height: self.frame.height-placeholderInsets.top-placeholderInsets.bottom)) + let expectedSize = placeholderLabel.sizeThatFits(CGSize(width: maxWidth, height: self.frame.height-placeholderInsets.top-placeholderInsets.bottom)) return CGRect(x: placeholderInsets.left, y: placeholderInsets.top, width: maxWidth, height: expectedSize.height) } - lazy var IQ_PlaceholderLabel: UILabel = { + lazy var placeholderLabel: UILabel = { let label = UILabel() label.autoresizingMask = [.flexibleWidth, .flexibleHeight] @@ -83,11 +79,11 @@ import UIKit @IBInspectable open var placeholderTextColor: UIColor? { get { - return IQ_PlaceholderLabel.textColor + return placeholderLabel.textColor } set { - IQ_PlaceholderLabel.textColor = newValue + placeholderLabel.textColor = newValue } } @@ -95,11 +91,11 @@ import UIKit @IBInspectable open var placeholder: String? { get { - return IQ_PlaceholderLabel.text + return placeholderLabel.text } set { - IQ_PlaceholderLabel.text = newValue + placeholderLabel.text = newValue refreshPlaceholder() } } @@ -107,11 +103,11 @@ import UIKit /** @abstract To set textView's placeholder attributed text. Default is nil. */ open var attributedPlaceholder: NSAttributedString? { get { - return IQ_PlaceholderLabel.attributedText + return placeholderLabel.attributedText } set { - IQ_PlaceholderLabel.attributedText = newValue + placeholderLabel.attributedText = newValue refreshPlaceholder() } } @@ -119,15 +115,16 @@ import UIKit @objc override open func layoutSubviews() { super.layoutSubviews() - IQ_PlaceholderLabel.frame = placeholderExpectedFrame + placeholderLabel.frame = placeholderExpectedFrame } @objc internal func refreshPlaceholder() { - if !text.isEmpty || !attributedText.string.isEmpty { - IQ_PlaceholderLabel.alpha = 0 + let text: String = text ?? attributedText?.string ?? "" + if text.isEmpty { + placeholderLabel.alpha = 1 } else { - IQ_PlaceholderLabel.alpha = 1 + placeholderLabel.alpha = 0 } } @@ -150,16 +147,16 @@ import UIKit didSet { if let unwrappedFont = font { - IQ_PlaceholderLabel.font = unwrappedFont + placeholderLabel.font = unwrappedFont } else { - IQ_PlaceholderLabel.font = UIFont.systemFont(ofSize: 12) + placeholderLabel.font = UIFont.systemFont(ofSize: 12) } } } @objc override open var textAlignment: NSTextAlignment { didSet { - IQ_PlaceholderLabel.textAlignment = textAlignment + placeholderLabel.textAlignment = textAlignment } } diff --git a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQToolbar/IQBarButtonItem.swift b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQToolbar/IQBarButtonItem.swift index ce7f30d..0adf974 100644 --- a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQToolbar/IQBarButtonItem.swift +++ b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQToolbar/IQBarButtonItem.swift @@ -43,9 +43,9 @@ import UIKit for state in states { - setBackgroundImage(nil, for: state, barMetrics: .default) - setBackgroundImage(nil, for: state, style: .plain, barMetrics: .default) - setBackButtonBackgroundImage(nil, for: state, barMetrics: .default) + setBackgroundImage(UIImage(), for: state, barMetrics: .default) + setBackgroundImage(UIImage(), for: state, style: .plain, barMetrics: .default) + setBackButtonBackgroundImage(UIImage(), for: state, barMetrics: .default) } setTitlePositionAdjustment(UIOffset(), for: .default) @@ -91,9 +91,22 @@ import UIKit /** Customized Invocation to be called when button is pressed. invocation is internally created using setTarget:action: method. */ - @objc open var invocation: IQInvocation? - - deinit { - target = nil + @objc open var invocation: IQInvocation? { + didSet { + // We have to put this condition here because if we override this function then + // We were getting "Cannot override '_' which has been marked unavailable" in Xcode 15 + if let titleBarButton = self as? IQTitleBarButtonItem { + + if let target = invocation?.target, let action = invocation?.action { + titleBarButton.isEnabled = true + titleBarButton.titleButton?.isEnabled = true + titleBarButton.titleButton?.addTarget(target, action: action, for: .touchUpInside) + } else { + titleBarButton.isEnabled = false + titleBarButton.titleButton?.isEnabled = false + titleBarButton.titleButton?.removeTarget(nil, action: nil, for: .touchUpInside) + } + } + } } } diff --git a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQToolbar/IQTitleBarButtonItem.swift b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQToolbar/IQTitleBarButtonItem.swift index 341d463..396e376 100644 --- a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQToolbar/IQTitleBarButtonItem.swift +++ b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQToolbar/IQTitleBarButtonItem.swift @@ -77,25 +77,6 @@ import UIKit } } - /** - Customized Invocation to be called on title button action. titleInvocation is internally created using setTitleTarget:action: method. - */ - @objc override open var invocation: IQInvocation? { - - didSet { - - if let target = invocation?.target, let action = invocation?.action { - self.isEnabled = true - titleButton?.isEnabled = true - titleButton?.addTarget(target, action: action, for: .touchUpInside) - } else { - self.isEnabled = false - titleButton?.isEnabled = false - titleButton?.removeTarget(nil, action: nil, for: .touchUpInside) - } - } - } - internal var titleButton: UIButton? private var _titleView: UIView? @@ -126,33 +107,27 @@ import UIKit titleButton?.titleLabel?.font = self.titleFont _titleView?.addSubview(titleButton!) - if #available(iOS 11, *) { + let layoutDefaultLowPriority = UILayoutPriority(rawValue: UILayoutPriority.defaultLow.rawValue-1) + let layoutDefaultHighPriority = UILayoutPriority(rawValue: UILayoutPriority.defaultHigh.rawValue-1) - let layoutDefaultLowPriority = UILayoutPriority(rawValue: UILayoutPriority.defaultLow.rawValue-1) - let layoutDefaultHighPriority = UILayoutPriority(rawValue: UILayoutPriority.defaultHigh.rawValue-1) + _titleView?.translatesAutoresizingMaskIntoConstraints = false + _titleView?.setContentHuggingPriority(layoutDefaultLowPriority, for: .vertical) + _titleView?.setContentHuggingPriority(layoutDefaultLowPriority, for: .horizontal) + _titleView?.setContentCompressionResistancePriority(layoutDefaultHighPriority, for: .vertical) + _titleView?.setContentCompressionResistancePriority(layoutDefaultHighPriority, for: .horizontal) - _titleView?.translatesAutoresizingMaskIntoConstraints = false - _titleView?.setContentHuggingPriority(layoutDefaultLowPriority, for: .vertical) - _titleView?.setContentHuggingPriority(layoutDefaultLowPriority, for: .horizontal) - _titleView?.setContentCompressionResistancePriority(layoutDefaultHighPriority, for: .vertical) - _titleView?.setContentCompressionResistancePriority(layoutDefaultHighPriority, for: .horizontal) + titleButton?.translatesAutoresizingMaskIntoConstraints = false + titleButton?.setContentHuggingPriority(layoutDefaultLowPriority, for: .vertical) + titleButton?.setContentHuggingPriority(layoutDefaultLowPriority, for: .horizontal) + titleButton?.setContentCompressionResistancePriority(layoutDefaultHighPriority, for: .vertical) + titleButton?.setContentCompressionResistancePriority(layoutDefaultHighPriority, for: .horizontal) - titleButton?.translatesAutoresizingMaskIntoConstraints = false - titleButton?.setContentHuggingPriority(layoutDefaultLowPriority, for: .vertical) - titleButton?.setContentHuggingPriority(layoutDefaultLowPriority, for: .horizontal) - titleButton?.setContentCompressionResistancePriority(layoutDefaultHighPriority, for: .vertical) - titleButton?.setContentCompressionResistancePriority(layoutDefaultHighPriority, for: .horizontal) + let top = NSLayoutConstraint.init(item: titleButton!, attribute: .top, relatedBy: .equal, toItem: _titleView, attribute: .top, multiplier: 1, constant: 0) + let bottom = NSLayoutConstraint.init(item: titleButton!, attribute: .bottom, relatedBy: .equal, toItem: _titleView, attribute: .bottom, multiplier: 1, constant: 0) + let leading = NSLayoutConstraint.init(item: titleButton!, attribute: .leading, relatedBy: .equal, toItem: _titleView, attribute: .leading, multiplier: 1, constant: 0) + let trailing = NSLayoutConstraint.init(item: titleButton!, attribute: .trailing, relatedBy: .equal, toItem: _titleView, attribute: .trailing, multiplier: 1, constant: 0) - let top = NSLayoutConstraint.init(item: titleButton!, attribute: .top, relatedBy: .equal, toItem: _titleView, attribute: .top, multiplier: 1, constant: 0) - let bottom = NSLayoutConstraint.init(item: titleButton!, attribute: .bottom, relatedBy: .equal, toItem: _titleView, attribute: .bottom, multiplier: 1, constant: 0) - let leading = NSLayoutConstraint.init(item: titleButton!, attribute: .leading, relatedBy: .equal, toItem: _titleView, attribute: .leading, multiplier: 1, constant: 0) - let trailing = NSLayoutConstraint.init(item: titleButton!, attribute: .trailing, relatedBy: .equal, toItem: _titleView, attribute: .trailing, multiplier: 1, constant: 0) - - _titleView?.addConstraints([top, bottom, leading, trailing]) - } else { - _titleView?.autoresizingMask = [.flexibleWidth, .flexibleHeight] - titleButton?.autoresizingMask = [.flexibleWidth, .flexibleHeight] - } + _titleView?.addConstraints([top, bottom, leading, trailing]) customView = _titleView } @@ -160,8 +135,4 @@ import UIKit @objc required public init?(coder aDecoder: NSCoder) { super.init(coder: aDecoder) } - - deinit { - customView = nil - } } diff --git a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQToolbar/IQToolbar.swift b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQToolbar/IQToolbar.swift index f5a541d..6597663 100644 --- a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQToolbar/IQToolbar.swift +++ b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQToolbar/IQToolbar.swift @@ -55,7 +55,7 @@ import UIKit self.setShadowImage(nil, forToolbarPosition: .any) } - //Background color + // Background color self.backgroundColor = nil } @@ -139,12 +139,7 @@ import UIKit privateFixedSpaceBarButton = IQBarButtonItem(barButtonSystemItem: .fixedSpace, target: nil, action: nil) } privateFixedSpaceBarButton!.isSystemItem = true - - if #available(iOS 10, *) { - privateFixedSpaceBarButton!.width = 6 - } else { - privateFixedSpaceBarButton!.width = 20 - } + privateFixedSpaceBarButton!.width = 6 return privateFixedSpaceBarButton! } @@ -171,81 +166,6 @@ import UIKit } } - @objc override open func layoutSubviews() { - - super.layoutSubviews() - - if #available(iOS 11, *) { - return - } else if let customTitleView = titleBarButton.customView { - var leftRect = CGRect.null - var rightRect = CGRect.null - var isTitleBarButtonFound = false - - let sortedSubviews = self.subviews.sorted(by: { (view1: UIView, view2: UIView) -> Bool in - if view1.frame.minX != view2.frame.minX { - return view1.frame.minX < view2.frame.minX - } else { - return view1.frame.minY < view2.frame.minY - } - }) - - for barButtonItemView in sortedSubviews { - - if isTitleBarButtonFound { - rightRect = barButtonItemView.frame - break - } else if barButtonItemView === customTitleView { - isTitleBarButtonFound = true - //If it's UIToolbarButton or UIToolbarTextButton (which actually UIBarButtonItem) - } else if barButtonItemView.isKind(of: UIControl.self) { - leftRect = barButtonItemView.frame - } - } - - let titleMargin: CGFloat = 16 - - let maxWidth: CGFloat = self.frame.width - titleMargin*2 - (leftRect.isNull ? 0 : leftRect.maxX) - (rightRect.isNull ? 0 : self.frame.width - rightRect.minX) - let maxHeight = self.frame.height - - let sizeThatFits = customTitleView.sizeThatFits(CGSize(width: maxWidth, height: maxHeight)) - - var titleRect: CGRect - - if sizeThatFits.width > 0, sizeThatFits.height > 0 { - let width = min(sizeThatFits.width, maxWidth) - let height = min(sizeThatFits.height, maxHeight) - - var xPosition: CGFloat - - if !leftRect.isNull { - xPosition = titleMargin + leftRect.maxX + ((maxWidth - width)/2) - } else { - xPosition = titleMargin - } - - let yPosition = (maxHeight - height)/2 - - titleRect = CGRect(x: xPosition, y: yPosition, width: width, height: height) - } else { - - var xPosition: CGFloat - - if !leftRect.isNull { - xPosition = titleMargin + leftRect.maxX - } else { - xPosition = titleMargin - } - - let width: CGFloat = self.frame.width - titleMargin*2 - (leftRect.isNull ? 0 : leftRect.maxX) - (rightRect.isNull ? 0 : self.frame.width - rightRect.minX) - - titleRect = CGRect(x: xPosition, y: 0, width: width, height: maxHeight) - } - - customTitleView.frame = titleRect - } - } - @objc open var enableInputClicksWhenVisible: Bool { return true } diff --git a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbar.swift b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbar.swift index 0b7c1fd..9587cfb 100644 --- a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbar.swift +++ b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbar.swift @@ -53,66 +53,22 @@ import UIKit super.init() } - public let barButtonSystemItem: UIBarButtonItem.SystemItem? //System Item to be used to instantiate bar button. + public let barButtonSystemItem: UIBarButtonItem.SystemItem? // System Item to be used to instantiate bar button. - @objc public let image: UIImage? //Image to show on bar button item if it's not a system item. + @objc public let image: UIImage? // Image to show on bar button item if it's not a system item. - @objc public let title: String? //Title to show on bar button item if it's not a system item. + @objc public let title: String? // Title to show on bar button item if it's not a system item. - @objc public let action: Selector? //action for bar button item. Usually 'doneAction:(IQBarButtonItem*)item'. + @objc public let action: Selector? // action for bar button item. Usually 'doneAction:(IQBarButtonItem*)item'. } /** UIImage category methods to get next/prev images */ -// swiftlint:disable nesting -// swiftlint:disable line_length @available(iOSApplicationExtension, unavailable) @objc public extension UIImage { - static func keyboardLeftImage() -> UIImage? { - - struct Static { - static var keyboardLeftImage: UIImage? - } - - if Static.keyboardLeftImage == nil { - - let base64Data = "iVBORw0KGgoAAAANSUhEUgAAACQAAAA/CAYAAACIEWrAAAAAAXNSR0IArs4c6QAABtFJREFUaAXFmV1oHFUUx++d3SSbj/0k6Uc2u7Ob7QeVSqBSP7AUm1JpS0tb+6nFYhELxfahDxVU9KmgD0UU7ENRLLRQodRqNbVJY5IGXwRBEPHBh2x2ZpPQaDC7W2qSzc5c/3ebDTN3d5Pd7Gw6L3PPOcM5vzn33I+5Q8gTvJqbm52RYPAdIEg5DFuusdz3dq/X7XA6ewiVTvrcnvBkMvE9GNgTAQoGg16pztFLKX02mwhKOrwe99rJZPL2sgO1tbX5aiWpDzDPGHuFEvq01+2ZpEZltdutra3NjpranxC0Q4zFCLsVVZRjdtFQLTmycuUKZq/pA8zGvBiM3IiqynHoM8sCFGoJrSIO1o9u2SDCIDPXAXMCeo3bqg4UCARaJYkMEELXiTCEkauAOQm9nrPNj/+cwso7aiZQS6VBdFMeDDLz1ZAaM8Hw2FXLUHj1apnaawYIpWHxJRkjl5GZ09Az0VYVIFmWw6iXAWRGFgMynV2KxpWzhWD4s5Z3GeaZNXZGeTflwzDyGWDOFIPhQJZmqN3vX0clG7qJtHLnpktnFwFz3qQrIFgGJK+WN+D1+jGaVolxGNM/jsbVd0V9IdkSoEggsJFJlE96K8Qgus4uDMfVD0R9MbniGgr7/R1YsXkB58FgEH04HFdKhuGQFWUIo2kTZaQXQ9snvjGG9nsY2h+J+sXkJQO1BwKbMYv0YNX2ikF0ws4Pq8pFUV+KvCSgkD/0PCaMbnSTWwyCzJwDzKeivlS5bCBsOV/EsL6LAE5jEMYvSs4C5pJRX267LKBwILAVw/oOgjQZAz1mYaejinrZqF9Ku+QdY0SWOzkMaqbRGAgwOjJzKqqqXxj1S22jDBa/wsHgDqxNtwFTb3w6C0PYyWFVvWrUV9JetMsibfIuRuktkDuMgQCjYRdzYnhEvW7UV9peEKg9GNyDOeYmYOpMgRjLYD9zHDA3THoLhKIzdSgQ2k+p9A1imGEImUXNHEM3WQ7D36dghlAzhyRKeFfU8IcMV1rTtSOxePy2QWdpMw8oEggdwxp0DVFE2wy66SBg+LCv2mUa9mFZfhORrmA0mWCwz5zWdW0/uolPiFW95msIMGckQr8EjAkSo2mKMH0vMtNTVZI559lMtAdC5zCSPhEDAuaRppG9yqg6INqqJVNk5m1k5nMxAGAYYLYro8qywXAGiWYyvYSxUREIXUdtdnIKelM9ic9ZLWeXDnxdRmppdnMeEAMgUTex0XoN+lnRVg05C8Qd828pW5FvKUwD3w0pylE8lq4GhNHnPBBX+v3+tjpbTT+lZK3xId5GprqQqUNozog2K2UTEHfMDwdqJBtOKsh6MRAmxru6Ql+Jkdi0aLNKzgPijvnxia2e9WFhfUoMhC1qb1rP7BsZGZkSbVbI8xOj0Vnsn9gDMjO9DcH/MOp5G925o1aydeFko0G0WSEXBOKOh8bH/57OpDuxbPwuBsKM0Omw195taWkxbWXF55YiFwXizsbGxibSWqYTFf2b6ByZ2uqsb+jmZ82irRK5YA2JDkOekEdykXuA2CzaMP5+YanUzujkZDLfVr6mJCDu1ufzubxOZzeq6AUxDGrtVz1FXo4lYgnRVq5cMhB3zLvH1dD4I2poS14gdOuMru3A6Ps3z1aGYsEaEv1MTEw8fDQzvRP6QdGG4bep1mbv52fRebYyFGUBcb/j4+OPpmbTuzFz4yzIfCHdHQ6cK/IzabOldKlsIO4ao++/tK7tQe3cE0OhOzcSh+N+9mxaNJYgl1VDBfzVtcsyvtnobtGG+euvWV3rjMfjY6JtIXlJGTI4nMH/iQPI1A8GXbaJN13Pz6j5gi3aFpIrBeK+01E1dhAL77d5gShd47DZB/mZdZ6tiKLSLjO6tUeCoes4qjlsVPI2uk/RCNumKMqwaBNlKzKU85nBr4JXkamvc4rcHW8t87NrvjPN6YrdrQTiMTTU1OtY+67lBaQk+9+Dn2Xn2QwKq4G4a21IVd5Apq4Y4jxuUuonNvv97Jl2nnHukSJ6K9Q0EpQvYwZ/S3SGmhrPMH27qqp/ijbTV6porFTGT90u/NxdgXnKtEtATTXZKD3scTb1JFKpcWOcqgLxQIC643F7fNi6PGcMjHYjZvUjrkZPb/Jh8kHOVnUgHiiRTHQjUy5kyrx1obSBSuSI1+Xqm0ylsjP6sgBxKGTqHn6D1yNTpq0LslSPXxNH3c6mAXTfqJUTI4+76IXT3AvY5L1f4MFUhrBdy5ahHAAy1e91uzD46Es53dydYv7qWnYgHhxQgx6XexZQ2+dgZojGDuCf2p0nAsQhEqnkzz63awpz0hacve+LjqjZA7H/AWSbJ/TPf3CuAAAAAElFTkSuQmCC" - - if let data = Data(base64Encoded: base64Data, options: .ignoreUnknownCharacters) { - Static.keyboardLeftImage = UIImage(data: data, scale: 3) - } - - //Support for RTL languages like Arabic, Persia etc... (Bug ID: #448) - Static.keyboardLeftImage = Static.keyboardLeftImage?.imageFlippedForRightToLeftLayoutDirection() - } - - return Static.keyboardLeftImage - } - - static func keyboardRightImage() -> UIImage? { - - struct Static { - static var keyboardRightImage: UIImage? - } - - if Static.keyboardRightImage == nil { - - let base64Data = "iVBORw0KGgoAAAANSUhEUgAAACQAAAA/CAYAAACIEWrAAAAAAXNSR0IArs4c6QAABu5JREFUaAXFmXtsFEUcx2f3rj0Kvd29k9LHtXfXqyjGV2J8EF/hIQgp4VnahPgIxviH0ZgYNSbGmBg1McaYGGOM+o8k+EINMQjIo6UoBAVEEBGQXnvbS1ttw91epUDbu/E7lb3bm22Pu97uOQnszO+3ne/nvjM7sw9CMsXRFAi83jhnTnUmVPqacEXSGfIHPhMEoYUSejpJyKJIJNJfehxCRIiWwZktDIYBCESY56BCZ319ve9/AQr5/c8CY7VRXBDIXJfo6Kyrq2swxktRZ0NWFgoEPocza3lBDF9P6rKwsGegp4fP2dVmQzYWjkTaCCVf8iKADIou0un3+0N8zq42A2JlvEvt2QBHPv2vmfkfFvrLiNAZqq+fm4naV9OBmEISTj0MpzaZ5AShXhAd+xrr6q435SwO6Je9sVsRc+ojDNdjxiCrw8GBcUoXq6p6is9Z1TY6pPeZglOPQ/1DPaAfAVnjFMQODN/Neszqo2OqDmNa/DuPJM/G+nSn8RxYOgux9Upl5a748PBfxpwV9SmBWOexhLbdIyserEvzs8QEYSYRxFZJUfZommbpip4TaAJKi+/0SnIlEYS7jVBwqQJutXkkqT2WSPQZc8XUrwo0AZXQdntkaQYg7jWKYU4hJrZJlXKnNqxFjbnp1vMCmoDStL2KJDsBdT8n5hJFoRXAP8Q0TeVyBTfzBmI9xxNah1eRU9j7FnJKLrTbZLf7QDyRiHC5gpoFAbGe4cJ+TPRRTPTFRiU4V45/rV5FOYRzuo25QuoFA7HOsST8qCjyBcyhpUYxAJVRSloVSToMp7qMuXzr0wJincc17SCc0uDUMqMYg8JEb/W65aNYNs4Zc/nUpw3EOodTh+DUEFb15QDBKpAuTiJi8ZSl4wA/m47mUSkKiPUPwcNeWR6ghDRzUA60W+DUSTh1Og+WiVOKBmK9YBIfVRQlCqdW8FC4J16nyPJpgOe1IVsCxKAgeAxOReDUyiwoTCik13olz9lYIn6SnZurWAbERODUcY+idMGpVYBK30mwOm5d1sCpMMBPlAzoCtRvsiSdEdmDAweF/Go4pcKpX6eCstQhXQRr0O9w6hTWqTWIpTXYUMKpVXCqD079op9vPKZPNgatqGP4/pAl9wlRENnTTFqHQaG9wiN5/oZTR3it9Il8woo2nDrjUeRjcGod+nPqfTIoYDVjnToPp37W4+xoKxATgFN/ym7lCKZ4C6xJQ7EcqJZjsx7BOQdZmxXbgZhIPBE/h9uTn1BdD4gyFssUYQmgkoDaz2IlAWJCEAxLlcpBDFULoMpZLFOERdgXBWxF+4z7TyZvYy1YH1wginQvoNLrlC6XIvT5rDHVEzYeRYdINhrXJ10LK7yapPSbUgI58AC6CQAbdAj9SCntpmOjC9X+/kipgJxN/uBmALTqEOkjpecujY8t6uvv72WxUgBNvO6B1iSve8jxkdHLSwYGBgZ1QLuByuHMFoit1AUzR3psNJl8ADDnMzF7HXLhveXXuB9qNgqyOubMkXFCl0aj0Rifs8WhIAnOcPjJVsA8yAsC5xAZTixTYzHNnLPBIbwsrcA68y0u7Qd4QThzIDFyYflQLDbM5/S2pQ5VV1fPcjkc27BLLdAF9CMej/YPXxxpHhoa+kePTXa0DKiqqqpylqtiO0TuMwvRDlzaKwYHB0fMueyIJUBer1eSKmbuwJzJekPCpODM7tFUclVfX9/FbOnJW0UDhTwembil79H9XWYJujOlCmuiJHrJnJs8UhQQXhd7MF92YYe+ne8eE3hbWI20IH6Zz+Vqm3bcXCcbcz6f7xo8M7Nd2wSDgdoKGHaXWBAM639aDtXU1FS5nGV78Pe3sE6MBc58BRi2gY4Z4/nWCwZin6/EctdeCNxoEqHkC8A8hPi4KZdnoCCgQCBQi/nSjnkzj+8fzmwGzKOIJ/lcIe285xD7XOUgwj48QZhgUpR8AphHioVh4HkBsc9U7HMV3LnO9Gsp/bhb7dmIOF71FV+uOmSNtbUBwVnWgb2pkZejNPVBWFWfRBx3oNaUnEDssxTuxdvhTMAkl6LvhXvVp03xIgNTDhnmzLXss9RkMHg+f6erN2I5DPstkzrEPkOJoqMdw1TH/+AUpW91q5EX+LhVbRNQoDZwA54t2aVdYxahbwDmJXPcukgWUFNDw01UxHZAyBxeArv2q7i0X+HjVrfTQI0+3634wrMHMLPNIvRlwLxmjlsfmQDCCnwb3iTtxpzx8hK4tF/Epf0mH7er7Qw1NNyBzndh11Z4kVSKPtfdq77Nx+1sO7GiVeCNpBN3e9mFpp4BzLvZQftbExhNfv89mD87IOfGJollhjwV7o28b798DoWgLzgfD3bnAfdEjtNsT/0LGvgrBSkuN9gAAAAASUVORK5CYII=" - - if let data = Data(base64Encoded: base64Data, options: .ignoreUnknownCharacters) { - Static.keyboardRightImage = UIImage(data: data, scale: 3) - } - - //Support for RTL languages like Arabic, Persia etc... (Bug ID: #448) - Static.keyboardRightImage = Static.keyboardRightImage?.imageFlippedForRightToLeftLayoutDirection() - } - - return Static.keyboardRightImage - } - - static func keyboardUpImage() -> UIImage? { + static func keyboardPreviousImage() -> UIImage? { struct Static { static var keyboardUpImage: UIImage? @@ -120,20 +76,22 @@ import UIKit if Static.keyboardUpImage == nil { + // swiftlint:disable line_length let base64Data = "iVBORw0KGgoAAAANSUhEUgAAAD8AAAAkCAYAAAA+TuKHAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAABWWlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNS40LjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyI+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgpMwidZAAAGmklEQVRoBd1ZWWwbRRie2bVz27s2adPGxzqxqAQCIRA3CDVJGxpKaEtRoSAVISQQggdeQIIHeIAHkOCBFyQeKlARhaYHvUJa0ksVoIgKUKFqKWqdeG2nR1Lsdeo0h73D54iku7NO6ySOk3alyPN//+zM/81/7MyEkDl66j2eJXWK8vocTT82rTgXk/t8vqBNEI9QSp9zOeVkPJnomgs7ik5eUZQ6OxGOEEq9WcKUksdlWbqU0LRfi70ARSXv8Xi8dkE8CsJ+I1FK6BNYgCgW4A8jPtvtopFHqNeWCLbDIF6fkxQjK91O1z9IgRM59bMAFoV8YEFgka1EyBJfMhkH5L9ACFstS9IpRMDJyfoVEp918sGamoVCme0QyN3GG87wAKcTOBYA4hrJKf+VSCb+nsBnqYHVnr2ntra2mpWWH0BVu52fhRH2XSZDmsA/xensokC21Pv9T3J4wcWrq17gob1er7tEhMcJuYsfGoS3hdTweuBpxaM0iCJph8fLuX7DJMPWnI2GOzi8YOKseD4gB+RSQezMRRx5vRPEn88Sz7IIx8KHgT3FCBniWJUyke6o8/uXc3jBxIKTd7vdTsFJfkSo38NbCY/vPRsOPwt81KgLqeoBXc+sBjZsxLF4ZfgM7goqSqMRL1S7oOSrq6sdLodjH0rYfbyByPEOePwZ4CO8Liv3RCL70Wctr8+mA2NkT53P91iu92aCFYx8TU1NpbOi8gfs2R7iDYLxnXqYPg3c5Fm+Xygcbs/omXXATZGBBagQqNAe9Psf4d+ZiVwQ8qjqFVVl5dmi9ShvDEL90IieXtVDevic5ruOyYiAXYiA9YSxsZow0YnSKkKFjoAn8OAENsPGjKs9qnp5iSDuBXFLXsLjR4fSIy29vb2DU7UThW4d8n0zxjXtRVAYNaJnlocikWNTHZPvP1PPl2LLujM3cfbzwJXUyukQzxrZraptRCcbEDm60Wh4S0IE7McByVJQjf3yac+EfEm9ouxAcWu2TsS6koOplr6+vstWXf5IKBrejBR4ybIAlLpE1JE6j8eyh8h/dEKmS95e7w9sy57G+MkQ6sdYMrmiv79/gNdNR0YEbGKUvIIFQMRffRBtbkG0HQj6fHdcRafWmg55Gzy+BR5vtUzF2O96kjSH4nHNopsB0B0Ob6SEvcYvAPYS1UwQDyqLFcu5IZ/pTMUkjxfEoD/wLVY9+z02PXDL8RE9s0y9qMZNigIJcU37TZblfj7aUAMqURLXuqqq9sQHBi5NZbqpkBfh8a9BPLtDMz3wyImh9GhTLBab0uSmQfIQcNQ95pJkDVG3wtgdC1KFA+HaSodjdzKZ/Neou1Y7X/JC0K98BeIvWAdjp+jwUKN6/nyfVVd4JK4lunDrkwJhc6Gl1GGjwhqnLO3UNC2Rz8z5kKfw+EYQf5EfEKF+Wh+kDd0XYxd43WzKiIBfEAEjiIAm0zyUSFiU1XJF+feJy5evW3euR57C41+A+MumSbICY2dGmd6gnlPPWXRFABABP7llCXsA2mCcDjVAJoK4qryycsfAwEDSqOPb1yQPj38O4q/yL4F4aCiTXhqNRmMWXREBFMGjslOywUbToQeyyy4IrVVO53bUgEk/uZOSr/MHPsOd0hs8F4R6mI2ONKi9vRFeNxdyIqkddknOMhA2nyuy+wAqtEol8rbEYCLnZisneXj8UxB/00KGkUiGsqU90WiPRTeHACLgoNsp4eBDHzaagRS4RbCzle6ysq3xVIq/LiMW8ti5fYRVfMs4yFibsdgI05eqqhqy6OYBEE9qnSiCLhRB7tRHFzDR1oIasBU1wHTAMpHHjcmHIP4OzwXf8XMkk24IR6NneN18klEE97mc0gJwuN9oF+SFNlF8vNJR1YYacGVcN0Eet6XvY6Pw3rhi/Bc5fiEzShp7eiOnx7H5/IsI6EAELEIE3Gu0EymwyCbQZocktWEfMHa3MEa+zqe8KwjCB8bO/7f70kxvVGPqyRy6eQshAtpdsuTDN/9us5F0MQ4zTS5BaIsPDQ3jO+5/G+fjj82dIDF2CZeKjd3R6J8W3Y0BYFca+JJQssFqLuvSUqlmESHSiZywGzsgx+OZNFnWE4scN+I3WJshAnYjAm5FBNxptp16y+y2hICLEtOVMXJcI0xvDveGi/ofU7NxBZN0XIpuIIy0mUZkZNNZVf1kDAt6lZagEhjGnxbweh8wdbw5hOwdxHbwY/j9BpTM9xi4MGzFvZhpk3Bz8J5gkb19ym7cJr5w/wEmUjzJqoNVhwAAAABJRU5ErkJggg==" + // swiftlint:enable line_length if let data = Data(base64Encoded: base64Data, options: .ignoreUnknownCharacters) { Static.keyboardUpImage = UIImage(data: data, scale: 3) } - //Support for RTL languages like Arabic, Persia etc... (Bug ID: #448) + // Support for RTL languages like Arabic, Persia etc... (Bug ID: #448) Static.keyboardUpImage = Static.keyboardUpImage?.imageFlippedForRightToLeftLayoutDirection() } return Static.keyboardUpImage } - static func keyboardDownImage() -> UIImage? { + static func keyboardNextImage() -> UIImage? { struct Static { static var keyboardDownImage: UIImage? @@ -141,36 +99,20 @@ import UIKit if Static.keyboardDownImage == nil { + // swiftlint:disable line_length let base64Data = "iVBORw0KGgoAAAANSUhEUgAAAD8AAAAkCAYAAAA+TuKHAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAABWWlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNS40LjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyI+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgpMwidZAAAGp0lEQVRoBd1ZCWhcRRiemff25WrydmOtuXbfZlMo4lEpKkppm6TpZUovC4UqKlQoUhURqQcUBcWDIkhVUCuI9SpJa+2h0VZjUawUEUUUirLNXqmxSnc32WaT7O4bv0nd5R1bc+2maR8s7z9m5v+/+f/5Z94sIf89jW73Yp/bfUuWvwLfDp/H8zhwObLYmCCaPJ6FjLJPCWNHNU1bkFVeQW/Zp2l7KWUvNmlaB3DJAhvz1ntvI5R1EUpnUUKdEifHGuvr519BwKUmj/cDYNtwARNd5/NoH4GWKIhzlFKXCSzn/xCut/jD4V9N8suPYYj4ewC+2e46f55Rwp/geExKSmdzJn2l1WrXmuSXF8MQ8XfyAeeEn9KTyV3MHwq9RTh50IqLEjJHUkh3Y13dPKvuMuApIr6bUHKP1VeE+Y8MIa09Z8/+JQlltD/+Q7VaFcW6X2VsjFmbRRnbUFFZeai/v/+cUTeDaYqIv4GlfL/NR879I3qmORwOnxG6UfCCiMbjJ51VagKdlgs+91BaKVO6oVJVD8bj8WhOPkMJn1t7jTL6gNU9pHpgKJ1q7u3tjWR1OfBCEOuPf+9Sq4YwAW3ZBqNvSqsYpeuc5WUHYolE3KSbQYzP430FwB+yuoSCFtKHaXP4z3DIqDOBFwpkwHfVThXLgrYaG6IGOAmT1pZVVHw8MDDQb9TNBLrJre0E8EdtvnAeSRPeHOwN9lh1NvCiASbgG5fqRLDJEmMHsSU6GFuDGrAfNWDAqLuUNE5uL6A2bbf5wPkZrmdaAuGw36aDIC940TAajx1HBijIgEWmjpRWS4ytrnKq+1EDEibdJWAa3dqzjLGnrKaxxvt4OtXS09v7u1WX5S8KXjRABnQ7VbUCEV+Y7SDeWAJX4dfuLCnZFzt//rxRN500jqo74NvTVptY42fTnLcGI5FTVp2R/1/womEsHj/mwgxg27vd2BH8bCrLq0rKyjoTicSgUTcdNIrbkwD+nM2WOJ3qmaVI9d9sOotgTPCiPTLgi+oqdTbOAbea+lM6xyHLK8pnVXSiCCZNuiIyjZr2GArSS1YTOKie45n0UqT6L1ZdPn5c4EVHHIS6sA3WYLZvNg6E9L9GZmwZzgEdqAFDRl0xaET8EQB/2To21ngsQ0kbIv6zVXcxftzgxQDIgM+qVbUeGbDAPCCtxbfxUhdjHdGhoWGzrnAcIr4NwHflGbGf6PqyQCj0Yx7dRUUTAi9GwQQccapOL7bBm4yjIiPqSElpC5VYRzKZLPgE4M5hK0rt67CDZDM9A+k0XxmIhE6apONgJgxejBmLxw65VHUu/LjRaANeNZQpyhJZUToGBwdHjLqp0Ij4FgB/0wocaxw7DV8F4CcmM/6kwMMQRwYcrFad87DvXW8yTKlbkZVFSmlJB3bBlEk3CQYRvxfA3wbw0Vun7BAAPqjrmfaecPjbrGyib2sKTbS/LG5F4NhGe0d+fDiTuSMSiUx6F8Bn6V343N6TB3gSyb/aHwx22+2OX2KazfF3y7VMnw4FcUvCP8lJcgRtVph0yEu8pTnRBAiv270JwN+1AscQw5zr66YKXLgyVfBijBQc2YQ0PCIY4wPH2yQPERNTYpSPRSPid0qUvY/+1mU5QjJ8PVL96FhjjEdfCPDCzggyAKnPP7cZpWQFlsZ+yPGdMPaDiK/F6fEjbKeypXVK5/pGfyTYZZFPmi0UeOHAcCZI1+Oa6JjVG0SwHbcrnZDn7sytbQSPiLdLTBJXy+Z2nKcR8U09odDhfP0mKyskeBIggaERPb0WGfC1zSFK1gDcXsitER1t6m3wrkTEbRmC5ZTRCd+MiB+wjTlFwVSrfV7zdXV15aWy0oWKvNjWgJMOfyiAIklwYXLhwfd4G/47OAxnTMVRAKec3u0PB8SkFfyxFpSCGMBHTkpWHPsU2bEEKe8xDUrJdfhKnItzgiiEXKvXWhijR9CuzNgOwHWc1+87HQ5+aJQXki4KeOGgOOFJDkdnqeJowSGlweg00vsGHJAa1UpnTJKIAF5u1AM4R8S3APgeo7zQdFHS3uikz+VSSWXVlwBo+hoUbUR0ITfVHQEcEd+K4rbbOE4xaJPhYhg4HY3GcYG4HFB/so5vBT6q53TbdAAXtooe+SzghoaGakWSu2FwflZmfWMffxjAX7XKi8VPG3gBoKam5uoKpeQEDjBz7YD4dpwUd9rlxZMUPe2Nrvf19f2dTKdasap7jHIsiR3TDdxsfxq5xtpazad5g02al+Na6plpND0zTHk8Hp+4iLyU3vwLp0orLWXqrZQAAAAASUVORK5CYII=" + // swiftlint:enable line_length if let data = Data(base64Encoded: base64Data, options: .ignoreUnknownCharacters) { Static.keyboardDownImage = UIImage(data: data, scale: 3) } - //Support for RTL languages like Arabic, Persia etc... (Bug ID: #448) + // Support for RTL languages like Arabic, Persia etc... (Bug ID: #448) Static.keyboardDownImage = Static.keyboardDownImage?.imageFlippedForRightToLeftLayoutDirection() } return Static.keyboardDownImage } - - static func keyboardPreviousImage() -> UIImage? { - - if #available(iOS 10, *) { - return keyboardUpImage() - } else { - return keyboardLeftImage() - } - } - - static func keyboardNextImage() -> UIImage? { - - if #available(iOS 10, *) { - return keyboardDownImage() - } else { - return keyboardRightImage() - } - } } /** @@ -180,9 +122,9 @@ UIView category methods to add IQToolbar on UIKeyboard. @objc public extension UIView { private struct AssociatedKeys { - static var keyboardToolbar = "keyboardToolbar" - static var shouldHideToolbarPlaceholder = "shouldHideToolbarPlaceholder" - static var toolbarPlaceholder = "toolbarPlaceholder" + static var keyboardToolbar: Int = 0 + static var shouldHideToolbarPlaceholder: Int = 0 + static var toolbarPlaceholder: Int = 0 } // MARK: Toolbar @@ -201,7 +143,15 @@ UIView category methods to add IQToolbar on UIKeyboard. return unwrappedToolbar } else { - let frame = CGRect(origin: .zero, size: .init(width: UIScreen.main.bounds.width, height: 44)) + var width: CGFloat = 0 + + if #available(iOS 13.0, *) { + width = window?.windowScene?.screen.bounds.width ?? .zero + } else { + width = UIScreen.main.bounds.width + } + + let frame = CGRect(origin: .zero, size: .init(width: width, height: 44)) let newToolbar = IQToolbar(frame: frame) objc_setAssociatedObject(self, &AssociatedKeys.keyboardToolbar, newToolbar, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) @@ -247,12 +197,13 @@ UIView category methods to add IQToolbar on UIKeyboard. return nil } else if self.toolbarPlaceholder?.isEmpty == false { return self.toolbarPlaceholder - } else if self.responds(to: #selector(getter: UITextField.placeholder)) { + } else if let placeholderable: IQPlaceholderable = self as? IQPlaceholderable { - if let textField = self as? UITextField { - return textField.placeholder - } else if let textView = self as? IQTextView { - return textView.placeholder + if let placeholder = placeholderable.attributedPlaceholder?.string, + !placeholder.isEmpty { + return placeholder + } else if let placeholder = placeholderable.placeholder { + return placeholder } else { return nil } @@ -263,7 +214,6 @@ UIView category methods to add IQToolbar on UIKeyboard. // MARK: Private helper - // swiftlint:disable nesting private static func flexibleBarButtonItem () -> IQBarButtonItem { struct Static { @@ -277,9 +227,15 @@ UIView category methods to add IQToolbar on UIKeyboard. // MARK: Common - func addKeyboardToolbarWithTarget(target: AnyObject?, titleText: String?, rightBarButtonConfiguration: IQBarButtonItemConfiguration?, previousBarButtonConfiguration: IQBarButtonItemConfiguration? = nil, nextBarButtonConfiguration: IQBarButtonItemConfiguration? = nil) { + // swiftlint:disable function_body_length + func addKeyboardToolbarWithTarget(target: AnyObject?, + titleText: String?, + titleAccessibilityLabel: String? = nil, + rightBarButtonConfiguration: IQBarButtonItemConfiguration?, + previousBarButtonConfiguration: IQBarButtonItemConfiguration? = nil, + nextBarButtonConfiguration: IQBarButtonItemConfiguration? = nil) { - //If can't set InputAccessoryView. Then return + // If can't set InputAccessoryView. Then return if self.responds(to: #selector(setter: UITextField.inputAccessoryView)) { // Creating a toolBar for phoneNumber keyboard @@ -356,21 +312,21 @@ UIView category methods to add IQToolbar on UIKeyboard. items.append(next) } - //Title bar button item + // Title bar button item do { - //Flexible space + // Flexible space items.append(UIView.flexibleBarButtonItem()) - //Title button + // Title button toolbar.titleBarButton.title = titleText + toolbar.titleBarButton.accessibilityLabel = titleAccessibilityLabel + toolbar.titleBarButton.accessibilityIdentifier = titleAccessibilityLabel - if #available(iOS 11, *) {} else { - toolbar.titleBarButton.customView?.frame = CGRect.zero - } + toolbar.titleBarButton.customView?.frame = CGRect.zero items.append(toolbar.titleBarButton) - //Flexible space + // Flexible space items.append(UIView.flexibleBarButtonItem()) } @@ -419,134 +375,139 @@ UIView category methods to add IQToolbar on UIKeyboard. } // Setting toolbar to keyboard. + let shouldReloadInputViews: Bool = self.inputAccessoryView == nil if let textField = self as? UITextField { textField.inputAccessoryView = toolbar } else if let textView = self as? UITextView { textView.inputAccessoryView = toolbar } + if shouldReloadInputViews { + self.reloadInputViews() + } } } + // swiftlint:enable function_body_length // MARK: Right - func addDoneOnKeyboardWithTarget(_ target: AnyObject?, action: Selector, shouldShowPlaceholder: Bool = false) { + func addDoneOnKeyboardWithTarget(_ target: AnyObject?, action: Selector, shouldShowPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - addDoneOnKeyboardWithTarget(target, action: action, titleText: (shouldShowPlaceholder ? self.drawingToolbarPlaceholder: nil)) + addDoneOnKeyboardWithTarget(target, action: action, titleText: (shouldShowPlaceholder ? self.drawingToolbarPlaceholder: nil), titleAccessibilityLabel: titleAccessibilityLabel) } - func addDoneOnKeyboardWithTarget(_ target: AnyObject?, action: Selector, titleText: String?) { + func addDoneOnKeyboardWithTarget(_ target: AnyObject?, action: Selector, titleText: String?, titleAccessibilityLabel: String? = nil) { let rightConfiguration = IQBarButtonItemConfiguration(barButtonSystemItem: .done, action: action) addKeyboardToolbarWithTarget(target: target, titleText: titleText, rightBarButtonConfiguration: rightConfiguration) } - func addRightButtonOnKeyboardWithImage(_ image: UIImage, target: AnyObject?, action: Selector, shouldShowPlaceholder: Bool = false) { + func addRightButtonOnKeyboardWithImage(_ image: UIImage, target: AnyObject?, action: Selector, shouldShowPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - addRightButtonOnKeyboardWithImage(image, target: target, action: action, titleText: (shouldShowPlaceholder ? self.drawingToolbarPlaceholder: nil)) + addRightButtonOnKeyboardWithImage(image, target: target, action: action, titleText: (shouldShowPlaceholder ? self.drawingToolbarPlaceholder: nil), titleAccessibilityLabel: titleAccessibilityLabel) } - func addRightButtonOnKeyboardWithImage(_ image: UIImage, target: AnyObject?, action: Selector, titleText: String?) { + func addRightButtonOnKeyboardWithImage(_ image: UIImage, target: AnyObject?, action: Selector, titleText: String?, titleAccessibilityLabel: String? = nil) { let rightConfiguration = IQBarButtonItemConfiguration(image: image, action: action) - addKeyboardToolbarWithTarget(target: target, titleText: titleText, rightBarButtonConfiguration: rightConfiguration) + addKeyboardToolbarWithTarget(target: target, titleText: titleText, titleAccessibilityLabel: titleAccessibilityLabel, rightBarButtonConfiguration: rightConfiguration) } - func addRightButtonOnKeyboardWithText(_ text: String, target: AnyObject?, action: Selector, shouldShowPlaceholder: Bool = false) { + func addRightButtonOnKeyboardWithText(_ text: String, target: AnyObject?, action: Selector, shouldShowPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - addRightButtonOnKeyboardWithText(text, target: target, action: action, titleText: (shouldShowPlaceholder ? self.drawingToolbarPlaceholder: nil)) + addRightButtonOnKeyboardWithText(text, target: target, action: action, titleText: (shouldShowPlaceholder ? self.drawingToolbarPlaceholder: nil), titleAccessibilityLabel: titleAccessibilityLabel) } - func addRightButtonOnKeyboardWithText(_ text: String, target: AnyObject?, action: Selector, titleText: String?) { + func addRightButtonOnKeyboardWithText(_ text: String, target: AnyObject?, action: Selector, titleText: String?, titleAccessibilityLabel: String? = nil) { let rightConfiguration = IQBarButtonItemConfiguration(title: text, action: action) - addKeyboardToolbarWithTarget(target: target, titleText: titleText, rightBarButtonConfiguration: rightConfiguration) + addKeyboardToolbarWithTarget(target: target, titleText: titleText, titleAccessibilityLabel: titleAccessibilityLabel, rightBarButtonConfiguration: rightConfiguration) } // MARK: Right/Left - func addCancelDoneOnKeyboardWithTarget(_ target: AnyObject?, cancelAction: Selector, doneAction: Selector, shouldShowPlaceholder: Bool = false) { + func addCancelDoneOnKeyboardWithTarget(_ target: AnyObject?, cancelAction: Selector, doneAction: Selector, shouldShowPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - addCancelDoneOnKeyboardWithTarget(target, cancelAction: cancelAction, doneAction: doneAction, titleText: (shouldShowPlaceholder ? self.drawingToolbarPlaceholder: nil)) + addCancelDoneOnKeyboardWithTarget(target, cancelAction: cancelAction, doneAction: doneAction, titleText: (shouldShowPlaceholder ? self.drawingToolbarPlaceholder: nil), titleAccessibilityLabel: titleAccessibilityLabel) } - func addRightLeftOnKeyboardWithTarget(_ target: AnyObject?, leftButtonTitle: String, rightButtonTitle: String, leftButtonAction: Selector, rightButtonAction: Selector, shouldShowPlaceholder: Bool = false) { + func addRightLeftOnKeyboardWithTarget(_ target: AnyObject?, leftButtonTitle: String, rightButtonTitle: String, leftButtonAction: Selector, rightButtonAction: Selector, shouldShowPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - addRightLeftOnKeyboardWithTarget(target, leftButtonTitle: leftButtonTitle, rightButtonTitle: rightButtonTitle, leftButtonAction: leftButtonAction, rightButtonAction: rightButtonAction, titleText: (shouldShowPlaceholder ? self.drawingToolbarPlaceholder: nil)) + addRightLeftOnKeyboardWithTarget(target, leftButtonTitle: leftButtonTitle, rightButtonTitle: rightButtonTitle, leftButtonAction: leftButtonAction, rightButtonAction: rightButtonAction, titleText: (shouldShowPlaceholder ? self.drawingToolbarPlaceholder: nil), titleAccessibilityLabel: titleAccessibilityLabel) } - func addRightLeftOnKeyboardWithTarget(_ target: AnyObject?, leftButtonImage: UIImage, rightButtonImage: UIImage, leftButtonAction: Selector, rightButtonAction: Selector, shouldShowPlaceholder: Bool = false) { + func addRightLeftOnKeyboardWithTarget(_ target: AnyObject?, leftButtonImage: UIImage, rightButtonImage: UIImage, leftButtonAction: Selector, rightButtonAction: Selector, shouldShowPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - addRightLeftOnKeyboardWithTarget(target, leftButtonImage: leftButtonImage, rightButtonImage: rightButtonImage, leftButtonAction: leftButtonAction, rightButtonAction: rightButtonAction, titleText: (shouldShowPlaceholder ? self.drawingToolbarPlaceholder: nil)) + addRightLeftOnKeyboardWithTarget(target, leftButtonImage: leftButtonImage, rightButtonImage: rightButtonImage, leftButtonAction: leftButtonAction, rightButtonAction: rightButtonAction, titleText: (shouldShowPlaceholder ? self.drawingToolbarPlaceholder: nil), titleAccessibilityLabel: titleAccessibilityLabel) } - func addCancelDoneOnKeyboardWithTarget(_ target: AnyObject?, cancelAction: Selector, doneAction: Selector, titleText: String?) { + func addCancelDoneOnKeyboardWithTarget(_ target: AnyObject?, cancelAction: Selector, doneAction: Selector, titleText: String?, titleAccessibilityLabel: String? = nil) { let leftConfiguration = IQBarButtonItemConfiguration(barButtonSystemItem: .cancel, action: cancelAction) let rightConfiguration = IQBarButtonItemConfiguration(barButtonSystemItem: .done, action: doneAction) - addKeyboardToolbarWithTarget(target: target, titleText: titleText, rightBarButtonConfiguration: rightConfiguration, previousBarButtonConfiguration: leftConfiguration) + addKeyboardToolbarWithTarget(target: target, titleText: titleText, titleAccessibilityLabel: titleAccessibilityLabel, rightBarButtonConfiguration: rightConfiguration, previousBarButtonConfiguration: leftConfiguration) } - func addRightLeftOnKeyboardWithTarget(_ target: AnyObject?, leftButtonTitle: String, rightButtonTitle: String, leftButtonAction: Selector, rightButtonAction: Selector, titleText: String?) { + func addRightLeftOnKeyboardWithTarget(_ target: AnyObject?, leftButtonTitle: String, rightButtonTitle: String, leftButtonAction: Selector, rightButtonAction: Selector, titleText: String?, titleAccessibilityLabel: String? = nil) { let leftConfiguration = IQBarButtonItemConfiguration(title: leftButtonTitle, action: leftButtonAction) let rightConfiguration = IQBarButtonItemConfiguration(title: rightButtonTitle, action: rightButtonAction) - addKeyboardToolbarWithTarget(target: target, titleText: titleText, rightBarButtonConfiguration: rightConfiguration, previousBarButtonConfiguration: leftConfiguration) + addKeyboardToolbarWithTarget(target: target, titleText: titleText, titleAccessibilityLabel: titleAccessibilityLabel, rightBarButtonConfiguration: rightConfiguration, previousBarButtonConfiguration: leftConfiguration) } - func addRightLeftOnKeyboardWithTarget(_ target: AnyObject?, leftButtonImage: UIImage, rightButtonImage: UIImage, leftButtonAction: Selector, rightButtonAction: Selector, titleText: String?) { + func addRightLeftOnKeyboardWithTarget(_ target: AnyObject?, leftButtonImage: UIImage, rightButtonImage: UIImage, leftButtonAction: Selector, rightButtonAction: Selector, titleText: String?, titleAccessibilityLabel: String? = nil) { let leftConfiguration = IQBarButtonItemConfiguration(image: leftButtonImage, action: leftButtonAction) let rightConfiguration = IQBarButtonItemConfiguration(image: rightButtonImage, action: rightButtonAction) - addKeyboardToolbarWithTarget(target: target, titleText: titleText, rightBarButtonConfiguration: rightConfiguration, previousBarButtonConfiguration: leftConfiguration) + addKeyboardToolbarWithTarget(target: target, titleText: titleText, titleAccessibilityLabel: titleAccessibilityLabel, rightBarButtonConfiguration: rightConfiguration, previousBarButtonConfiguration: leftConfiguration) } // MARK: Previous/Next/Right - func addPreviousNextDoneOnKeyboardWithTarget (_ target: AnyObject?, previousAction: Selector, nextAction: Selector, doneAction: Selector, shouldShowPlaceholder: Bool = false) { + func addPreviousNextDoneOnKeyboardWithTarget (_ target: AnyObject?, previousAction: Selector, nextAction: Selector, doneAction: Selector, shouldShowPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - addPreviousNextDoneOnKeyboardWithTarget(target, previousAction: previousAction, nextAction: nextAction, doneAction: doneAction, titleText: (shouldShowPlaceholder ? self.drawingToolbarPlaceholder: nil)) + addPreviousNextDoneOnKeyboardWithTarget(target, previousAction: previousAction, nextAction: nextAction, doneAction: doneAction, titleText: (shouldShowPlaceholder ? self.drawingToolbarPlaceholder: nil), titleAccessibilityLabel: titleAccessibilityLabel) } - func addPreviousNextRightOnKeyboardWithTarget(_ target: AnyObject?, rightButtonImage: UIImage, previousAction: Selector, nextAction: Selector, rightButtonAction: Selector, shouldShowPlaceholder: Bool = false) { + func addPreviousNextRightOnKeyboardWithTarget(_ target: AnyObject?, rightButtonImage: UIImage, previousAction: Selector, nextAction: Selector, rightButtonAction: Selector, shouldShowPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - addPreviousNextRightOnKeyboardWithTarget(target, rightButtonImage: rightButtonImage, previousAction: previousAction, nextAction: nextAction, rightButtonAction: rightButtonAction, titleText: (shouldShowPlaceholder ? self.drawingToolbarPlaceholder: nil)) + addPreviousNextRightOnKeyboardWithTarget(target, rightButtonImage: rightButtonImage, previousAction: previousAction, nextAction: nextAction, rightButtonAction: rightButtonAction, titleText: (shouldShowPlaceholder ? self.drawingToolbarPlaceholder: nil), titleAccessibilityLabel: titleAccessibilityLabel) } - func addPreviousNextRightOnKeyboardWithTarget(_ target: AnyObject?, rightButtonTitle: String, previousAction: Selector, nextAction: Selector, rightButtonAction: Selector, shouldShowPlaceholder: Bool = false) { + func addPreviousNextRightOnKeyboardWithTarget(_ target: AnyObject?, rightButtonTitle: String, previousAction: Selector, nextAction: Selector, rightButtonAction: Selector, shouldShowPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - addPreviousNextRightOnKeyboardWithTarget(target, rightButtonTitle: rightButtonTitle, previousAction: previousAction, nextAction: nextAction, rightButtonAction: rightButtonAction, titleText: (shouldShowPlaceholder ? self.drawingToolbarPlaceholder: nil)) + addPreviousNextRightOnKeyboardWithTarget(target, rightButtonTitle: rightButtonTitle, previousAction: previousAction, nextAction: nextAction, rightButtonAction: rightButtonAction, titleText: (shouldShowPlaceholder ? self.drawingToolbarPlaceholder: nil), titleAccessibilityLabel: titleAccessibilityLabel) } - func addPreviousNextDoneOnKeyboardWithTarget (_ target: AnyObject?, previousAction: Selector, nextAction: Selector, doneAction: Selector, titleText: String?) { + func addPreviousNextDoneOnKeyboardWithTarget (_ target: AnyObject?, previousAction: Selector, nextAction: Selector, doneAction: Selector, titleText: String?, titleAccessibilityLabel: String? = nil) { let rightConfiguration = IQBarButtonItemConfiguration(barButtonSystemItem: .done, action: doneAction) let nextConfiguration = IQBarButtonItemConfiguration(image: UIImage.keyboardNextImage() ?? UIImage(), action: nextAction) let prevConfiguration = IQBarButtonItemConfiguration(image: UIImage.keyboardPreviousImage() ?? UIImage(), action: previousAction) - addKeyboardToolbarWithTarget(target: target, titleText: titleText, rightBarButtonConfiguration: rightConfiguration, previousBarButtonConfiguration: prevConfiguration, nextBarButtonConfiguration: nextConfiguration) + addKeyboardToolbarWithTarget(target: target, titleText: titleText, titleAccessibilityLabel: titleAccessibilityLabel, rightBarButtonConfiguration: rightConfiguration, previousBarButtonConfiguration: prevConfiguration, nextBarButtonConfiguration: nextConfiguration) } - func addPreviousNextRightOnKeyboardWithTarget(_ target: AnyObject?, rightButtonImage: UIImage, previousAction: Selector, nextAction: Selector, rightButtonAction: Selector, titleText: String?) { + func addPreviousNextRightOnKeyboardWithTarget(_ target: AnyObject?, rightButtonImage: UIImage, previousAction: Selector, nextAction: Selector, rightButtonAction: Selector, titleText: String?, titleAccessibilityLabel: String? = nil) { let rightConfiguration = IQBarButtonItemConfiguration(image: rightButtonImage, action: rightButtonAction) let nextConfiguration = IQBarButtonItemConfiguration(image: UIImage.keyboardNextImage() ?? UIImage(), action: nextAction) let prevConfiguration = IQBarButtonItemConfiguration(image: UIImage.keyboardPreviousImage() ?? UIImage(), action: previousAction) - addKeyboardToolbarWithTarget(target: target, titleText: titleText, rightBarButtonConfiguration: rightConfiguration, previousBarButtonConfiguration: prevConfiguration, nextBarButtonConfiguration: nextConfiguration) + addKeyboardToolbarWithTarget(target: target, titleText: titleText, titleAccessibilityLabel: titleAccessibilityLabel, rightBarButtonConfiguration: rightConfiguration, previousBarButtonConfiguration: prevConfiguration, nextBarButtonConfiguration: nextConfiguration) } - func addPreviousNextRightOnKeyboardWithTarget(_ target: AnyObject?, rightButtonTitle: String, previousAction: Selector, nextAction: Selector, rightButtonAction: Selector, titleText: String?) { + func addPreviousNextRightOnKeyboardWithTarget(_ target: AnyObject?, rightButtonTitle: String, previousAction: Selector, nextAction: Selector, rightButtonAction: Selector, titleText: String?, titleAccessibilityLabel: String? = nil) { let rightConfiguration = IQBarButtonItemConfiguration(title: rightButtonTitle, action: rightButtonAction) let nextConfiguration = IQBarButtonItemConfiguration(image: UIImage.keyboardNextImage() ?? UIImage(), action: nextAction) let prevConfiguration = IQBarButtonItemConfiguration(image: UIImage.keyboardPreviousImage() ?? UIImage(), action: previousAction) - addKeyboardToolbarWithTarget(target: target, titleText: titleText, rightBarButtonConfiguration: rightConfiguration, previousBarButtonConfiguration: prevConfiguration, nextBarButtonConfiguration: nextConfiguration) + addKeyboardToolbarWithTarget(target: target, titleText: titleText, titleAccessibilityLabel: titleAccessibilityLabel, rightBarButtonConfiguration: rightConfiguration, previousBarButtonConfiguration: prevConfiguration, nextBarButtonConfiguration: nextConfiguration) } } diff --git a/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/PrivacyInfo.xcprivacy b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/PrivacyInfo.xcprivacy new file mode 100644 index 0000000..fcfc9b9 --- /dev/null +++ b/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/PrivacyInfo.xcprivacy @@ -0,0 +1,10 @@ + + + + + NSPrivacyCollectedDataTypes + + NSPrivacyTracking + + + diff --git a/Pods/InputBarAccessoryView/Sources/Supporting Files/InputBarAccessoryView+Availability.swift b/Pods/InputBarAccessoryView/Sources/Supporting/InputBarAccessoryView+Availability.swift similarity index 100% rename from Pods/InputBarAccessoryView/Sources/Supporting Files/InputBarAccessoryView+Availability.swift rename to Pods/InputBarAccessoryView/Sources/Supporting/InputBarAccessoryView+Availability.swift diff --git a/Pods/Local Podspecs/VideoSDKRTC.podspec.json b/Pods/Local Podspecs/VideoSDKRTC.podspec.json index 30bc967..7370a63 100644 --- a/Pods/Local Podspecs/VideoSDKRTC.podspec.json +++ b/Pods/Local Podspecs/VideoSDKRTC.podspec.json @@ -1,6 +1,6 @@ { "name": "VideoSDKRTC", - "version": "2.0.7", + "version": "2.1.0", "summary": "Interactive Video API Experiences for Develoeprs.", "description": "Video sdk enables opportunity to integrate immersive video experiences into your application.", "homepage": "https://github.com/videosdk-live/videosdk-rtc-ios-sdk", @@ -13,7 +13,7 @@ }, "source": { "git": "https://github.com/videosdk-live/videosdk-rtc-ios-sdk.git", - "tag": "v2.0.7" + "tag": "v2.1.0" }, "swift_versions": "5.0", "platforms": { diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock index e539472..d15b72c 100644 --- a/Pods/Manifest.lock +++ b/Pods/Manifest.lock @@ -1,43 +1,38 @@ PODS: - - InputBarAccessoryView (5.1.0): - - InputBarAccessoryView/Core (= 5.1.0) - - InputBarAccessoryView/Core (5.1.0) - - IQKeyboardManagerSwift (6.5.11) - - MessageKit (3.3.0): - - InputBarAccessoryView (~> 5.1.0) - - Starscream (4.0.4) - - VideoSDKRTC (2.0.0): - - Starscream + - InputBarAccessoryView (5.5.0): + - InputBarAccessoryView/Core (= 5.5.0) + - InputBarAccessoryView/Core (5.5.0) + - IQKeyboardManagerSwift (6.5.16) + - MessageKit (3.8.0): + - InputBarAccessoryView (~> 5.5.0) + - VideoSDKRTC (2.1.0) DEPENDENCIES: - IQKeyboardManagerSwift - MessageKit - - VideoSDKRTC (from `https://github.com/videosdk-live/videosdk-rtc-ios-sdk.git`, tag `v2.0.0`) + - VideoSDKRTC (from `https://github.com/videosdk-live/videosdk-rtc-ios-sdk.git`) SPEC REPOS: trunk: - InputBarAccessoryView - IQKeyboardManagerSwift - MessageKit - - Starscream EXTERNAL SOURCES: VideoSDKRTC: :git: https://github.com/videosdk-live/videosdk-rtc-ios-sdk.git - :tag: v2.0.0 CHECKOUT OPTIONS: VideoSDKRTC: + :commit: 915455b5395e243a620c315d49b650c1884216a0 :git: https://github.com/videosdk-live/videosdk-rtc-ios-sdk.git - :tag: v2.0.0 SPEC CHECKSUMS: - InputBarAccessoryView: 19953f486a23e846e9487099f92bbe3456e46ce5 - IQKeyboardManagerSwift: c7955c0bdbf7b2eb29bb7daaa44e3d90f55a9a85 - MessageKit: 1f07618183be6d92b648ba7a384aafa097362a00 - Starscream: 5178aed56b316f13fa3bc55694e583d35dd414d9 - VideoSDKRTC: ad324fd5a00b0eda64bd7c142c1c9a2542fcc891 + InputBarAccessoryView: 1d7b0a672b36e370f01f264b3907ef39d03328e3 + IQKeyboardManagerSwift: 12d89768845bb77b55cc092ecc2b1f9370f06b76 + MessageKit: a1ba0c69ebead94029867853eb44dd05b9b3f453 + VideoSDKRTC: 42abab38e8bb4dd5c9ad5d23415cf5e0ce87908b -PODFILE CHECKSUM: b00727b60298202baa7849a29295ec194e3945fe +PODFILE CHECKSUM: 9a6c26d40d9f65335d130d844a4f98bb47161e02 -COCOAPODS: 1.11.3 +COCOAPODS: 1.15.2 diff --git a/Pods/MessageKit/Sources/Models/ConcreteMessage.swift b/Pods/MessageKit/Sources/Extensions/MessageKind+textMessageKind.swift similarity index 73% rename from Pods/MessageKit/Sources/Models/ConcreteMessage.swift rename to Pods/MessageKit/Sources/Extensions/MessageKind+textMessageKind.swift index e330cb5..af3de70 100644 --- a/Pods/MessageKit/Sources/Models/ConcreteMessage.swift +++ b/Pods/MessageKit/Sources/Extensions/MessageKind+textMessageKind.swift @@ -1,7 +1,7 @@ /* MIT License - Copyright (c) 2017-2019 MessageKit + Copyright (c) 2017-2020 MessageKit Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -24,13 +24,15 @@ import Foundation -/// Concrete type of MessageType -/// -/// Use this when you are subclassing calculators and/or cells that needs -/// a concrete type to handle super's method. -internal struct ConcreteMessageType: MessageType { - let sender: SenderType - let messageId: String - let sentDate: Date - var kind: MessageKind +internal extension MessageKind { + var textMessageKind: MessageKind { + switch self { + case .linkPreview(let linkItem): + return linkItem.textKind + case .text, .emoji, .attributedText: + return self + default: + fatalError("textMessageKind not supported for messageKind: \(self)") + } + } } diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj index e46576d..6260a91 100644 --- a/Pods/Pods.xcodeproj/project.pbxproj +++ b/Pods/Pods.xcodeproj/project.pbxproj @@ -20,365 +20,369 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 0150BEE0E308862F44F065F970682256 /* InputBarAccessoryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 555379D4AADA4B0DAAF0BCFE0FEDD4FA /* InputBarAccessoryView.swift */; }; - 041B655D7F5932F03A65C154BC02BDAA /* IQInvocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = A300E9BC9BE272A614E5A9DCA872012A /* IQInvocation.swift */; }; - 042E348977C5609373D0C0DF117348BC /* LocationMessageSnapshotOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF59E1908933AEC2D1B7882814D8C909 /* LocationMessageSnapshotOptions.swift */; }; - 04B0884964D9592302CA654E0B67E80E /* IQUIView+Hierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C41EC0BB6F4C487C7FF6A9A6AFEB4C7 /* IQUIView+Hierarchy.swift */; }; - 055D2A9CEC22083FDB3201CC672078FE /* InputBarAccessoryView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 956598A2691226B853373A53B1E1CBBF /* InputBarAccessoryView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 05C962C43A5B96C3973BCD74EEE080BC /* InputBarAccessoryView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F013512980EBF2B6DEC78AAF7AD157C9 /* InputBarAccessoryView-dummy.m */; }; - 05E3FC2B52A47023573273A44ADC5097 /* MessageKind.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E62454D8F6E5CCE50767A38E535F141 /* MessageKind.swift */; }; - 0635FA92B665BD403A496FCB2A0F5070 /* MessagesViewController+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2B5AEB64403026A41D417AA6989D946 /* MessagesViewController+Menu.swift */; }; - 07FB758F9FA9070136DFE376326225FB /* TypingIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BA1A6EF42F81C848D47FCC55F741C78 /* TypingIndicator.swift */; }; - 089BFD4BBF9FEB230B089D0554316C85 /* InputItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1326A1A9107E3A2FEB83C130C50A53E8 /* InputItem.swift */; }; - 08B185E08278AE7EC55F8BBB19693AC5 /* IQKeyboardManager+OrientationNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38059B5477FC87123F4A9E322794CA7B /* IQKeyboardManager+OrientationNotification.swift */; }; - 0F94B2449CA1ADA76AE79C0BF6A08549 /* IQKeyboardManagerConstantsInternal.swift in Sources */ = {isa = PBXBuildFile; fileRef = D634469259DDB5C2A66AA6B5EA522E3A /* IQKeyboardManagerConstantsInternal.swift */; }; - 109C9BE1C2C69C551847C4F6F74A42FD /* InputStackView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28D472548F109A22B4ADED3017C94188 /* InputStackView.swift */; }; - 117C7750377EA6BD5E4E0857154B1DCF /* Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9726680743BCFD5506B1D173FA02E218 /* Avatar.swift */; }; - 11F53F3C55B3F5155F0F6B7176847F48 /* AudioMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E1EC2750BAFD6207C9CFC1C2F69CF57 /* AudioMessageCell.swift */; }; - 130270BF18FDBA1DFF67247E42AC661B /* LinkItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9C308F9B6A8F6CB5D45B7D172A7F479 /* LinkItem.swift */; }; - 13A9538CEAE41482692C6222E4EED578 /* SeparatorLine.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87D9737B91890A6BCFBDC7D89C5A7A16 /* SeparatorLine.swift */; }; - 16854A9A19CEFC25255F37BDD64611E1 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6FAC202320DBA1A6A24C17843DE0CBF2 /* Assets.xcassets */; }; - 16B1FCC8B3E6548AC3BD48A789AC4EB1 /* NSMutableAttributedString+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A775354C587F44498EB778D657A4C77 /* NSMutableAttributedString+Extensions.swift */; }; - 1740CBB33D469AEDD5D7291A9268FA97 /* IQToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0B11998BEBFC7B10A9ABD41A88F28CB /* IQToolbar.swift */; }; - 17758957331DBB7ECD7209FFC47CA0F0 /* NSAttributedString+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67ACF7970FA5F6F5D0C6C2A7DAB09B25 /* NSAttributedString+Extensions.swift */; }; - 19E44D30E076F0B5CA0E0BFD2BD49D49 /* ContactMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFF66B11CB774B30FEFF5E0CE0D02D00 /* ContactMessageCell.swift */; }; - 1A9B9579E46EFBA63C5F57A6B17B5ECA /* IQKeyboardManagerSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C23E2698C77CB71AE9752E83B2F24E73 /* IQKeyboardManagerSwift-dummy.m */; }; - 1D8031C86A94D32E00ED55B80428A0F3 /* IQKeyboardManager+Toolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5356579AC4B43B7AE1EA763806D88CA1 /* IQKeyboardManager+Toolbar.swift */; }; - 1F07CD00DAB2C71328F2272948BEE6DF /* MessageCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 561A655D634FEC856482D48AA09588E1 /* MessageCollectionViewCell.swift */; }; - 20616A47873318F80BFFEABAC9730122 /* IQTitleBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = D71F7566922630B4E28E23FA75AF3074 /* IQTitleBarButtonItem.swift */; }; - 223FCDD04952F55E6109D4EAEFF842E7 /* HorizontalEdgeInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8AE8A7D15052C637B06AE107FB821E1 /* HorizontalEdgeInsets.swift */; }; - 24B7C51D8C39B63D49955310DA7CBC09 /* KeyboardNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 668A471900E772D1C2D2465ECA79D73E /* KeyboardNotification.swift */; }; - 24EC44FF102C2635A476CEF7567F89DA /* IQPreviousNextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64C63FB9A15B5CD6A500F0F6FCFFDAB2 /* IQPreviousNextView.swift */; }; - 253D4D16339656D8DC1DFCBB87D8D743 /* Bundle+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8492367F90C12D852BAD11E7B8B2EDD /* Bundle+Extensions.swift */; }; - 264C0786A50ACE1F63685AB3A0F9E502 /* AttachmentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73B2694A2922CE96347926ABF84DA99F /* AttachmentCell.swift */; }; - 2CA0B3B43A972DF3AD79F58092E3403E /* IQKeyboardManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B5491A16B82EE84AEAA1014E118B1C9 /* IQKeyboardManager+Internal.swift */; }; - 2E4645AB051B3733FC442943D130CCAD /* UIView+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6F4CEAE7BCEE54D2FFB62DDEDAD30D4 /* UIView+Extensions.swift */; }; - 2E5138271A6C79BDA3C0835F2596219B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 04D60AC13D33197690A05C641925DDDA /* UIKit.framework */; }; - 2E6117633368A574BA6DB49E2A2B2C2A /* MessageCellDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C18EDAE4B9D5052CFDCAA4F743F5DBC /* MessageCellDelegate.swift */; }; - 2E691D770899DB7A2AA4F29960F4E9C2 /* HorizontalEdgePadding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 122B8C0C2E0C8DF09E8215FA8BC5FDD0 /* HorizontalEdgePadding.swift */; }; - 2EC96162DD6740ECE67FF38B8400A7C5 /* IQKeyboardManager+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC8F20C186506D2A87F49AC6AE08E38D /* IQKeyboardManager+Debug.swift */; }; - 34C39BDBFE7A2CC585787F5AFCA39FDE /* IQUIView+IQKeyboardToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14603281E295465E9F1A9D55C2C904D5 /* IQUIView+IQKeyboardToolbar.swift */; }; - 37167AF5B65486E3BCAAEAA6F71C7793 /* MessagesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 931549125B4A411B3260A4D763EBBC9C /* MessagesViewController.swift */; }; - 376DC9E1C0C13E4F71036F4FA9AF04F3 /* MessageContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA60B1608DE716CFFE36DC34F69F08F5 /* MessageContainerView.swift */; }; - 3813D9E11E747BC2F23B238A38789C70 /* MessagesCollectionViewFlowLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E9244344FCD85D74AA74678F996C2B7 /* MessagesCollectionViewFlowLayout.swift */; }; - 38EF69E90335640AA82CED02BE2C3F37 /* AutocompleteCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8AD298B00A449626843CD485E8D8975 /* AutocompleteCell.swift */; }; - 3F01EED6380B596E1D0C1497CBCF9B95 /* IQUITextFieldView+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE5FB514D360B22BAF1122887C3D5AB2 /* IQUITextFieldView+Additions.swift */; }; - 40BF9F285D93F430F5C6FA9D091895FF /* MessageKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D3B23BBF084BDF4DAC03BEA1FB175D6 /* MessageKit-dummy.m */; }; - 41CD40F5713CD71AD5AB1471E81C97E1 /* IQBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C3F4EE33F1971AA953EFEECF1295EC0 /* IQBarButtonItem.swift */; }; - 42575A6779930D6A5E531EAD5D85C916 /* String+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C9AA15810F023BAF68D9D947A841275 /* String+Extensions.swift */; }; - 470342048FEE155D6BA06A4AE9336D15 /* CellSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB627E4696BDA1C73E082A81AFCB078 /* CellSizeCalculator.swift */; }; - 48CF9B9B730B717AFECE52D0F5D73C31 /* MessageKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 44EE62B10DBD879E390D9B5AC41B1FB6 /* MessageKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 49ADE1D71C1E5A9E685035E2E249DFFE /* MessageContentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = D374302B033F1B22F65F67C821313C4D /* MessageContentCell.swift */; }; + 0150BEE0E308862F44F065F970682256 /* InputBarAccessoryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 764038EAAB0193D2CB6F5739C5CC2215 /* InputBarAccessoryView.swift */; }; + 042E348977C5609373D0C0DF117348BC /* LocationMessageSnapshotOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF5A30ED9692EA16440908EC9B022A06 /* LocationMessageSnapshotOptions.swift */; }; + 055D2A9CEC22083FDB3201CC672078FE /* InputBarAccessoryView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A36AE9AA6C36DBFC0519F1F0B56A347D /* InputBarAccessoryView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 05C962C43A5B96C3973BCD74EEE080BC /* InputBarAccessoryView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 054BB95F1C6127DEA05615B615975440 /* InputBarAccessoryView-dummy.m */; }; + 05E3FC2B52A47023573273A44ADC5097 /* MessageKind.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7334926BC880D499A847F8911920860 /* MessageKind.swift */; }; + 0635FA92B665BD403A496FCB2A0F5070 /* MessagesViewController+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2A0924FD3C0057DC5A7C0E9F7292D95 /* MessagesViewController+Menu.swift */; }; + 07F83DE63FB5CC8015F48F7B9B800B6F /* IQPreviousNextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26D082CAC1129CDF36243BCCF98B2A0E /* IQPreviousNextView.swift */; }; + 07FB758F9FA9070136DFE376326225FB /* TypingIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 808272F7C43F8F467937F4F0501A5E8F /* TypingIndicator.swift */; }; + 07FD274BC01F578C7B37989F79350C1E /* IQToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 593F92587C692CA0F018DCC20115ADC6 /* IQToolbar.swift */; }; + 0874E6176184E3A1C3E8AB158AE5E98B /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 840FA0B75AF62912A30DDC66B647ED98 /* CoreGraphics.framework */; }; + 089BFD4BBF9FEB230B089D0554316C85 /* InputItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B6F5689A58EA51A26E63A7AE770CA3F /* InputItem.swift */; }; + 109C9BE1C2C69C551847C4F6F74A42FD /* InputStackView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 531F5C194C14C630C0326589B2A8F647 /* InputStackView.swift */; }; + 117C7750377EA6BD5E4E0857154B1DCF /* Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEDEA9B65792F4D17CC5AB59660B790E /* Avatar.swift */; }; + 11F53F3C55B3F5155F0F6B7176847F48 /* AudioMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7EA77D283BA8805FB3B062FF49F849B /* AudioMessageCell.swift */; }; + 130270BF18FDBA1DFF67247E42AC661B /* LinkItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 288E14CFD5BE2494A4D330FD85C7CDE4 /* LinkItem.swift */; }; + 13A9538CEAE41482692C6222E4EED578 /* SeparatorLine.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3620760EFB3C0C886A05DD8FD2E8B80 /* SeparatorLine.swift */; }; + 16854A9A19CEFC25255F37BDD64611E1 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = CB5DCABF4CA1445EAC18D9D21D494407 /* Assets.xcassets */; }; + 16B1FCC8B3E6548AC3BD48A789AC4EB1 /* NSMutableAttributedString+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E9E1C25BC27113F020D404B30533B7C /* NSMutableAttributedString+Extensions.swift */; }; + 16E5F9C7FE2C499D21F3E7AF1FFC2FA7 /* IQKeyboardManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 731C0EC9679CB7C9AC544DE6F8568B36 /* IQKeyboardManager.swift */; }; + 17758957331DBB7ECD7209FFC47CA0F0 /* NSAttributedString+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88DEDC7D751C475E1438849BF7F77429 /* NSAttributedString+Extensions.swift */; }; + 19C5CA44D4D4D5B711D33A73525D453F /* IQUIView+IQKeyboardToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 562408E478086D76CB2DF1E7CF482923 /* IQUIView+IQKeyboardToolbar.swift */; }; + 19E44D30E076F0B5CA0E0BFD2BD49D49 /* ContactMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A5B724D2835C61082AB45F2A595D158 /* ContactMessageCell.swift */; }; + 1B4B180E84924CF99663817A2AFFAA92 /* IQKeyboardManager+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 009A6B28E935276EF732E71F8A9DFEB5 /* IQKeyboardManager+Debug.swift */; }; + 1F07CD00DAB2C71328F2272948BEE6DF /* MessageCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0595FD1D91FDB06DDC97C12E417FD7D3 /* MessageCollectionViewCell.swift */; }; + 223FCDD04952F55E6109D4EAEFF842E7 /* HorizontalEdgeInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF6EBD9E10D3CDFA395E791B875069FA /* HorizontalEdgeInsets.swift */; }; + 24B7C51D8C39B63D49955310DA7CBC09 /* KeyboardNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6929EF815BB6FAAB0906A1049EDFDE72 /* KeyboardNotification.swift */; }; + 253D4D16339656D8DC1DFCBB87D8D743 /* Bundle+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0C9AA591345CA92494BF8F3259B3494 /* Bundle+Extensions.swift */; }; + 264C0786A50ACE1F63685AB3A0F9E502 /* AttachmentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AEFE766F01AA66FAA1C2298E08D2F24 /* AttachmentCell.swift */; }; + 2E4645AB051B3733FC442943D130CCAD /* UIView+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 553CC51F895CE213A584B5F5A24D1FEA /* UIView+Extensions.swift */; }; + 2E6117633368A574BA6DB49E2A2B2C2A /* MessageCellDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3C30560E291DE6579D41DFE93508A7C /* MessageCellDelegate.swift */; }; + 2E691D770899DB7A2AA4F29960F4E9C2 /* HorizontalEdgePadding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2973CBF3AF4693CE305163784D300B43 /* HorizontalEdgePadding.swift */; }; + 37167AF5B65486E3BCAAEAA6F71C7793 /* MessagesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EF3DE9894454F508B7CCAF547EC5AF4 /* MessagesViewController.swift */; }; + 373502D50A1B2266D86409E19EC46DDB /* IQTitleBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = D03FFB6EA53FB5027872977531188F21 /* IQTitleBarButtonItem.swift */; }; + 376DC9E1C0C13E4F71036F4FA9AF04F3 /* MessageContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D37A31757D3D8EA64D521F136FCB1CD /* MessageContainerView.swift */; }; + 3813D9E11E747BC2F23B238A38789C70 /* MessagesCollectionViewFlowLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 917EF29634B0D0A0F85557943728436A /* MessagesCollectionViewFlowLayout.swift */; }; + 38EF69E90335640AA82CED02BE2C3F37 /* AutocompleteCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = E989DF2954D6E4F10D0B324F39C8D10A /* AutocompleteCell.swift */; }; + 40BF9F285D93F430F5C6FA9D091895FF /* MessageKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 522D4D4E61CB5E016942334FDDEE52E0 /* MessageKit-dummy.m */; }; + 41A536E6CE1C85116A756B710B2C660B /* IQKeyboardManagerConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A852D434848A72CD8B9ED4953FB79BF /* IQKeyboardManagerConstants.swift */; }; + 42575A6779930D6A5E531EAD5D85C916 /* String+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67B60E1DC78386AB93392F129437C49E /* String+Extensions.swift */; }; + 470342048FEE155D6BA06A4AE9336D15 /* CellSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = B753A1486429F7A3037359E69A99B807 /* CellSizeCalculator.swift */; }; + 48CF9B9B730B717AFECE52D0F5D73C31 /* MessageKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A2179BAEFE5140F3832620673958760 /* MessageKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 49ADE1D71C1E5A9E685035E2E249DFFE /* MessageContentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7D8214FFA16DA8C424400017E005AB8 /* MessageContentCell.swift */; }; 4F1388442A5D641DD1EDB5F4102FBDFC /* Pods-VideoSDKRTC_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CC59B637BCC822F3D9171E8E6A452375 /* Pods-VideoSDKRTC_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4F255962BBB302F88098F4566F82D0FE /* InputBarViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5105D5694FD637BB68783275C090124C /* InputBarViewController.swift */; }; - 52EF61F82197FFDB9CBF1A8F983C9E80 /* AttachmentManagerDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44AA105ECE691540D5BBB7E0598BBDCB /* AttachmentManagerDataSource.swift */; }; - 54AB2693A5355615919952682864F1A3 /* AutocompleteSession.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68D65FDC880EDAE677C234C5255314B4 /* AutocompleteSession.swift */; }; - 5E1A59003812F6F576CC8BA658AB3A5E /* LinkPreviewMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 621699B088D1D752CB7C38C901C5D0BC /* LinkPreviewMessageCell.swift */; }; - 60C6606FF8176EE5A38870CFD9F649C8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 79CF7D56C5D50C18B2EA0ED106D998C7 /* Foundation.framework */; }; - 659FFD21C9AC4D5DC6C44FD31B2E31AF /* PlayButtonView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D27D01DE367D7E156AD5254F26BB8BAB /* PlayButtonView.swift */; }; - 67B54BF2096D8456D2927FE7A3816B97 /* BubbleCircle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D2581D7B51869B8F4B91B4755439980 /* BubbleCircle.swift */; }; - 6948483D08757DDE2B7AEDE5C543D6E0 /* MessageReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A2DB7E7C46F506272BFCB736BEB57EE /* MessageReusableView.swift */; }; - 6D1C0D9C83D7448523857A9A340C581E /* MessagesLayoutDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84B6D9139978C0C3141EC189166A899B /* MessagesLayoutDelegate.swift */; }; - 6DA64C3E212EC855C1441256CD3A9910 /* KeyboardManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50D38204C265899C877E5AA50E43ED4D /* KeyboardManager.swift */; }; - 6FE6B5B2BFA491701775879400484324 /* MessageKitError.swift in Sources */ = {isa = PBXBuildFile; fileRef = E73D8BC8AED7BC8F30D6E53FB36E53FF /* MessageKitError.swift */; }; - 733FEA3AF643F6965FDBD89960271D48 /* Sender.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C774AA435B3EEB965DEE88423274B8C /* Sender.swift */; }; - 75EE372C41C57457401E58A4E26518F0 /* MessagesCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9308B5CC7495A5A2C44A3717F60BAC16 /* MessagesCollectionView.swift */; }; - 77B6DF1F34EF711DF60F166B399F8C65 /* UIEdgeInsets+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42A34D1E3B9BDDC95FE29178B88A361D /* UIEdgeInsets+Extensions.swift */; }; - 7979BD4351214C0692D8D3E54B529269 /* MessageKind+textMessageKind.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD6BD20D0008777451419202C40D8A03 /* MessageKind+textMessageKind.swift */; }; - 7AC995F567A776FC1A80A9FA0733F3D1 /* IQNSArray+Sort.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92380F91A2841FC1C2154842B7E43014 /* IQNSArray+Sort.swift */; }; - 7AE4531FA7B18AACB49E6B3476D02E91 /* MessageLabelDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C766BDE53DE2BF795AE2081F4FBD3DB0 /* MessageLabelDelegate.swift */; }; - 7EF25C2977B6E96AD961EF6CA8A1C850 /* MessageKitDateFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2382F9C71E65FCC1BDED145BCC9BA8BD /* MessageKitDateFormatter.swift */; }; - 7F4225C8ABDC5B8357F8F8226DEF4B42 /* MessagesDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8A33A68E87639739F50F778AFB82AF9 /* MessagesDataSource.swift */; }; - 82A5D6DF661BE30734311C03484EAEAA /* MessageType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D829E190F60E47DCB39A24FD8A26C3E /* MessageType.swift */; }; - 854D5A9C5162707A9EDB353C4F328611 /* UIImage+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 145186FDEB1824EF25FA05F656EECBD2 /* UIImage+Extensions.swift */; }; - 85DD481174AFB62D505FAE5F220A7B85 /* MediaItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = FBF15B05818ADD4B7056F6194FCC1DBF /* MediaItem.swift */; }; - 85F13B069B06ADF2B6DCA622E4645110 /* IQKeyboardManagerConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF76332E2740E12548647FAFB52D34C2 /* IQKeyboardManagerConstants.swift */; }; - 86A03DE9366D1BE94EB99AA387EACD1F /* IQKeyboardManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23E4108C57785C91BBED175401DE64CC /* IQKeyboardManager.swift */; }; - 86EAE4826F58B7977628A0457DD7ECBC /* AccessoryPosition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D9F7298504B3F702309D38E088CE753 /* AccessoryPosition.swift */; }; + 4F255962BBB302F88098F4566F82D0FE /* InputBarViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79140A4B7F71064DBCFBBF67BF895A62 /* InputBarViewController.swift */; }; + 506C1EE2968687F178BB2DFA34D185CE /* IQKeyboardReturnKeyHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C0A5D9783FB210177CAF03A650706C6 /* IQKeyboardReturnKeyHandler.swift */; }; + 52EF61F82197FFDB9CBF1A8F983C9E80 /* AttachmentManagerDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86F6ECA1488B60F4B23A29DDE05C7F52 /* AttachmentManagerDataSource.swift */; }; + 54AB2693A5355615919952682864F1A3 /* AutocompleteSession.swift in Sources */ = {isa = PBXBuildFile; fileRef = 929D4C87F10AABA95DEB0F8BEA784E4C /* AutocompleteSession.swift */; }; + 5E1A59003812F6F576CC8BA658AB3A5E /* LinkPreviewMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A311DCD364BBCBEEF4F5D5E29449C62 /* LinkPreviewMessageCell.swift */; }; + 5E8E9469BF126E918EADF79EC4BB5CA2 /* IQUIView+Hierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FA29EC7D5F1BA27D7E7B07252052237 /* IQUIView+Hierarchy.swift */; }; + 647D16586EBBE25158E3FD684541A1DD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 79CF7D56C5D50C18B2EA0ED106D998C7 /* Foundation.framework */; }; + 659FFD21C9AC4D5DC6C44FD31B2E31AF /* PlayButtonView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3AB7F1C1EECD41E941DA8F10EEE809AF /* PlayButtonView.swift */; }; + 6735E4B11C64D20B4E05A92811F5A721 /* IQKeyboardManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98F2E8E1FB8656274167BDBEDC1833F1 /* IQKeyboardManager+Internal.swift */; }; + 67B54BF2096D8456D2927FE7A3816B97 /* BubbleCircle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16E853DBAE36CEC5241CB271316F2D6A /* BubbleCircle.swift */; }; + 6948483D08757DDE2B7AEDE5C543D6E0 /* MessageReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E41F02492A380EE040ABD4A4254C2D7C /* MessageReusableView.swift */; }; + 6D1C0D9C83D7448523857A9A340C581E /* MessagesLayoutDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D22BAF60CE3CFDCA3755C84ADBF4DD3 /* MessagesLayoutDelegate.swift */; }; + 6DA64C3E212EC855C1441256CD3A9910 /* KeyboardManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FE7801CE7E06398DDA59C566BA0AFDF /* KeyboardManager.swift */; }; + 6FE6B5B2BFA491701775879400484324 /* MessageKitError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B320B773D68AA37F217606E992EACDB /* MessageKitError.swift */; }; + 733FEA3AF643F6965FDBD89960271D48 /* Sender.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B8268F8D29775BB15037927EF8FA10B /* Sender.swift */; }; + 75EE372C41C57457401E58A4E26518F0 /* MessagesCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA7A86434D30E41EA1FD64BC93D5A0BE /* MessagesCollectionView.swift */; }; + 77B6DF1F34EF711DF60F166B399F8C65 /* UIEdgeInsets+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FBE345E1D66C440C8774D6400571C396 /* UIEdgeInsets+Extensions.swift */; }; + 7979BD4351214C0692D8D3E54B529269 /* MessageKind+textMessageKind.swift in Sources */ = {isa = PBXBuildFile; fileRef = B489A767FFE382F8BE9D4D2A96E17F4E /* MessageKind+textMessageKind.swift */; }; + 7AE4531FA7B18AACB49E6B3476D02E91 /* MessageLabelDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B634E1AE51A47EBD622CE2469AD1D560 /* MessageLabelDelegate.swift */; }; + 7E59ABF8A1AC8F61FEFB9B8C72EFB9E5 /* IQKeyboardManager+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8943EF47C933AF495C3A8AFB55F69A0 /* IQKeyboardManager+Position.swift */; }; + 7EF25C2977B6E96AD961EF6CA8A1C850 /* MessageKitDateFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1184696D328CD7F24E4D0156427EC4F8 /* MessageKitDateFormatter.swift */; }; + 7F4225C8ABDC5B8357F8F8226DEF4B42 /* MessagesDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30D40E6334EBE61C03CD871D7C067731 /* MessagesDataSource.swift */; }; + 82A5D6DF661BE30734311C03484EAEAA /* MessageType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5EA0B1753F4E86B8D53EA267430B1CC5 /* MessageType.swift */; }; + 854D5A9C5162707A9EDB353C4F328611 /* UIImage+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 924D679B19DAE404A6489E633C24A7C4 /* UIImage+Extensions.swift */; }; + 85DD481174AFB62D505FAE5F220A7B85 /* MediaItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28D35D8CE56497B77937E4AB44B0B38F /* MediaItem.swift */; }; + 86EAE4826F58B7977628A0457DD7ECBC /* AccessoryPosition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0211F583FAC624D77AD1F162EBB7C78E /* AccessoryPosition.swift */; }; 8883463A8D48D0A77BB6781BCB564B07 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 04D60AC13D33197690A05C641925DDDA /* UIKit.framework */; }; - 8ADFB9D428B01F05BF62C9EF6DE0A68D /* AutocompleteManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = B28D6F939F90262A45B731F5E59D492F /* AutocompleteManager.swift */; }; - 8B588D0BFB5EA2E147FF5DDA0ED27DD5 /* TypingIndicatorCellSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = D44EDAC2A269992670F0285B931D078E /* TypingIndicatorCellSizeCalculator.swift */; }; - 8FC2E6F660BBCEA98C5C0BB035EA9C79 /* MessageKit+Availability.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13DBA5ECFD1E6D949594880631F7CBF3 /* MessageKit+Availability.swift */; }; - 9507527DC84E2132EA44AB4003128B88 /* InsetLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26932BC43CB553D60D0A0AB9A37A9142 /* InsetLabel.swift */; }; - 95431E4952220FCE7BB44B24190932BD /* ImageAttachmentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3E106993C8B7FACE4867CD770278165 /* ImageAttachmentCell.swift */; }; - 9586A06B4069D293D1FBE92216B71C87 /* InputTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE8226C7EC9E12BAA94019FF012E0414 /* InputTextView.swift */; }; - 95AA94E37A03B4BDD49847490ECC905E /* TypingBubble.swift in Sources */ = {isa = PBXBuildFile; fileRef = E373B24E528EC128B0A8251019B8D45C /* TypingBubble.swift */; }; - 96C9A000C763215AEF5CB0558023F820 /* LinkPreviewView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43BDE030514423ACBDAB8B2D62AA1EA3 /* LinkPreviewView.swift */; }; - 98D4FCF9E8F23E3036D26D550C9616C2 /* UIView+AutoLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6039DC76BA8B7BB8820B36076D2AA3F /* UIView+AutoLayout.swift */; }; - 99512793ECB6E3613FE52F25A0507F3E /* NSConstraintLayoutSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26EF979E2DBB77A6448D892CDD2DA818 /* NSConstraintLayoutSet.swift */; }; - 99921FE663FCE75D4C4E7A936007CEB4 /* AudioMessageSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0BFD5F3F584456A98134CF0107DD2849 /* AudioMessageSizeCalculator.swift */; }; - 9BD40DA6CD5E04CEA92057F597A2BFC3 /* AutocompleteCompletion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 962DAEEE1A15E45DD742752FB353D181 /* AutocompleteCompletion.swift */; }; - 9BEA0E4B8456D9E3909859ADC1C65A28 /* InputBarAccessoryView+Availability.swift in Sources */ = {isa = PBXBuildFile; fileRef = B02DA0064B7725AFDF7CF2630FA29421 /* InputBarAccessoryView+Availability.swift */; }; - A2B7CE0D25CC8D745E482CF206157A52 /* MessagesViewController+Keyboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = E80A3F5B5D73560A7B17BF103EBD20AF /* MessagesViewController+Keyboard.swift */; }; - A2BE0FAB2348259244A4647AA96C3BD5 /* TextMessageSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F29B945925FEE84DD950B6AC3EBFFDF2 /* TextMessageSizeCalculator.swift */; }; - A43BFACBF159516ED4AC72EB1376DB7E /* MessageStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12EEE9B767C72E8835F1153224589F12 /* MessageStyle.swift */; }; - A4BAEE317BFF650DCC888FC67BFBF7EF /* IQKeyboardManager+UIKeyboardNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E579F300CB3DDE95DA443B65610AF79 /* IQKeyboardManager+UIKeyboardNotification.swift */; }; - A4DC2EAB0B7D2FE8F786329B11C04D82 /* InputBarAccessoryViewDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A744FF34F25E27D31B47563B12DBD60B /* InputBarAccessoryViewDelegate.swift */; }; - AC5F2F46B95717F1FCBF4AC1E0556E81 /* NSConstraintLayoutSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58AD362F1E70A7567C20E4685CF60DA1 /* NSConstraintLayoutSet.swift */; }; - AECD1E4E81FDC1ADB79FE33B54BF1B00 /* LocationMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52E5762CC0004B9B05A92B4FAF68E876 /* LocationMessageCell.swift */; }; - B0911438C3F47B44D3F0C9E03FFB1840 /* TextMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F83912BA9E66410C314CEA75D90A27D /* TextMessageCell.swift */; }; - B19C5DEF3FB06B25664FE836FB885246 /* CGRect+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 613D4AB65FAA86308CEBE5EA57D7088E /* CGRect+Extensions.swift */; }; - B1B6A2491AC437909DABE20C71BECDBC /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 840FA0B75AF62912A30DDC66B647ED98 /* CoreGraphics.framework */; }; - B6B43B1B78EC0E52CC08F82841A22A31 /* IQKeyboardManagerSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9026BFA9A5B7FB28582B912963A9C924 /* IQKeyboardManagerSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B6EC6D40823E66D5B389ACEAC9FD7AAE /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A42DBD2F42D55606EEBA514009498B87 /* QuartzCore.framework */; }; - BDB5AE7EE3453F907E314D0182F02B17 /* UIColor+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EB8AE5192E2E6376D308657D0AE53E4 /* UIColor+Extensions.swift */; }; + 8ADFB9D428B01F05BF62C9EF6DE0A68D /* AutocompleteManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A406831EBE9EF7A35E401EC8FD08F81 /* AutocompleteManager.swift */; }; + 8B588D0BFB5EA2E147FF5DDA0ED27DD5 /* TypingIndicatorCellSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB47F088736CE8402D9733C8510C5BDB /* TypingIndicatorCellSizeCalculator.swift */; }; + 8FC2E6F660BBCEA98C5C0BB035EA9C79 /* MessageKit+Availability.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8D94FD77BC8D10A17B60186481F9543 /* MessageKit+Availability.swift */; }; + 930B495B7A3197730A016E2339A4CBA7 /* IQKeyboardManagerSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 769C02BC00ACF85DB15132D9DA6CC94C /* IQKeyboardManagerSwift-dummy.m */; }; + 9507527DC84E2132EA44AB4003128B88 /* InsetLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9998A629618689CDEC7B245829A56AE /* InsetLabel.swift */; }; + 95431E4952220FCE7BB44B24190932BD /* ImageAttachmentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC5AE75D515B2E39FA097ACCEB31722F /* ImageAttachmentCell.swift */; }; + 9586A06B4069D293D1FBE92216B71C87 /* InputTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD3A8805E0359CC4E95B544094B23669 /* InputTextView.swift */; }; + 95AA94E37A03B4BDD49847490ECC905E /* TypingBubble.swift in Sources */ = {isa = PBXBuildFile; fileRef = F464784540CDFD10AB15EA23B399922E /* TypingBubble.swift */; }; + 96C9A000C763215AEF5CB0558023F820 /* LinkPreviewView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E601E0FFCEFF4A62449568BDE86E338 /* LinkPreviewView.swift */; }; + 97EA46DA072EC4FD4D831606095B92C1 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 04D60AC13D33197690A05C641925DDDA /* UIKit.framework */; }; + 98D4FCF9E8F23E3036D26D550C9616C2 /* UIView+AutoLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE68A7EFCCABF911609B66F8D22C55A5 /* UIView+AutoLayout.swift */; }; + 99512793ECB6E3613FE52F25A0507F3E /* NSConstraintLayoutSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7272F0C9CE6B2F42E73F40D600B97E2 /* NSConstraintLayoutSet.swift */; }; + 99921FE663FCE75D4C4E7A936007CEB4 /* AudioMessageSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = D20D627604A280409D033445AA5C6476 /* AudioMessageSizeCalculator.swift */; }; + 9BD40DA6CD5E04CEA92057F597A2BFC3 /* AutocompleteCompletion.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5D0D7036F12DA54D5375690352DBA47 /* AutocompleteCompletion.swift */; }; + 9BEA0E4B8456D9E3909859ADC1C65A28 /* InputBarAccessoryView+Availability.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD072F0D73582F97E1FEA0333E7B6A19 /* InputBarAccessoryView+Availability.swift */; }; + 9C2584A9CCF8CA6C9DF2AD79DB831E70 /* IQKeyboardManager+UIKeyboardNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A2C29C7F1CAC0E623F5AFA313AA5B17 /* IQKeyboardManager+UIKeyboardNotification.swift */; }; + 9C292E2C761CB97ACD00F95FA4D60E85 /* IQKeyboardManager+OrientationNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0FB6ED8AF7A15686F1E1A6D19F48D01 /* IQKeyboardManager+OrientationNotification.swift */; }; + 9E4E278A3C1543798E1912699886023E /* IQKeyboardManager+UITextFieldViewNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6619A6A67C53A6B104DC88DC7D430CA5 /* IQKeyboardManager+UITextFieldViewNotification.swift */; }; + A2B7CE0D25CC8D745E482CF206157A52 /* MessagesViewController+Keyboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72B074EF336FE90C918FFBA335D55AFB /* MessagesViewController+Keyboard.swift */; }; + A2BE0FAB2348259244A4647AA96C3BD5 /* TextMessageSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3F59B36D35BFC4A91F52E9D7799BA44 /* TextMessageSizeCalculator.swift */; }; + A43BFACBF159516ED4AC72EB1376DB7E /* MessageStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFA772B0C71E179DF820AD86B651B15D /* MessageStyle.swift */; }; + A4DC2EAB0B7D2FE8F786329B11C04D82 /* InputBarAccessoryViewDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79DCDCEEAF977077EFE4FA6B38CBEE04 /* InputBarAccessoryViewDelegate.swift */; }; + A50A72FCD270217D99ECA1D2700CFAD4 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 114F69E7DD00E39F903F86CC6EA841C6 /* PrivacyInfo.xcprivacy */; }; + A8C0CBBC63C39A8C10083CBCA172F7CF /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A42DBD2F42D55606EEBA514009498B87 /* QuartzCore.framework */; }; + A8DD3F39B4D1F0C7B11866484A03336E /* IQInvocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2ADEBC02A8D7714E56B36D9AE2F0347 /* IQInvocation.swift */; }; + AAC2529A1B4F4832A052B348C5093018 /* IQUIScrollView+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62139DCBA3CC67FD2E57BE20D6C1D138 /* IQUIScrollView+Additions.swift */; }; + AB651DB3A97A623234B6544AD030406A /* IQNSArray+Sort.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08AD6F95D40811D7E0BAC3EBA4D1203C /* IQNSArray+Sort.swift */; }; + AC5F2F46B95717F1FCBF4AC1E0556E81 /* NSConstraintLayoutSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 480595B7EB4963C3CFCD7BBCDCFBC73D /* NSConstraintLayoutSet.swift */; }; + AECD1E4E81FDC1ADB79FE33B54BF1B00 /* LocationMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72C96168350F92945B513B3B5DEC81E3 /* LocationMessageCell.swift */; }; + B0911438C3F47B44D3F0C9E03FFB1840 /* TextMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = B886343AC6ED04CE8CECACCD44E759E3 /* TextMessageCell.swift */; }; + B0CB5FB63262E1A67317045B8960F363 /* IQBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6029BC49787390EEE4F2679F946CC5C /* IQBarButtonItem.swift */; }; + B19C5DEF3FB06B25664FE836FB885246 /* CGRect+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B99D470382C5C9CEDBA04256CA7C1CD /* CGRect+Extensions.swift */; }; + B46A36CA19ED6C09341D8E4031F66D5C /* IQUIViewController+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A6408E47FDDF35D41EC0CFE9A48B1B0 /* IQUIViewController+Additions.swift */; }; + BDAD667B60A9D9981738646851C825A0 /* IQKeyboardManager+Toolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 816F1A5B831F6810CAADA69E18D0DDE2 /* IQKeyboardManager+Toolbar.swift */; }; + BDB5AE7EE3453F907E314D0182F02B17 /* UIColor+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76646FDD138158653294A8617A54E207 /* UIColor+Extensions.swift */; }; BDEFDEE59D199B2DFB5BE4815675AED5 /* Pods-VideoSDKRTC_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 78454B04E3B0C3056579166BAE1C939F /* Pods-VideoSDKRTC_Example-dummy.m */; }; BE179B99E0E8106DAF660F4EADD3F57E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 79CF7D56C5D50C18B2EA0ED106D998C7 /* Foundation.framework */; }; - BE7D2E494D163136F592DC6747595BF8 /* LabelAlignment.swift in Sources */ = {isa = PBXBuildFile; fileRef = D84568DA3992923306D05647A91861D9 /* LabelAlignment.swift */; }; - BF51F0E89BF73D101E7402B78F5B8704 /* LinkPreviewFonts.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1F14E2E51DB55945DE300447FE0F929 /* LinkPreviewFonts.swift */; }; - C14BB4753866F9698DEDD9571E0C7451 /* AutocompleteManagerDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = C18EFBC04B2C5BEA4611D3DB74996AFC /* AutocompleteManagerDataSource.swift */; }; - C22BC9F65B58C833BE5ABB49E4E29475 /* SenderType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04E3CB607FC2ADFFDED74D4E2B6224D4 /* SenderType.swift */; }; - C764551976629035BC3B68DB5CCFF313 /* MessageInputBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8574B3FEDDE96E311DF515968892702E /* MessageInputBar.swift */; }; - C81CB3B5D25BDBCB6D3A3632BE408229 /* IQKeyboardReturnKeyHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF5B94BC432C470CB97D2E2075AF09AA /* IQKeyboardReturnKeyHandler.swift */; }; - D16B01041368AC24C33A1462B5BF720F /* ContactItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6ED3BC8A57E8C24D5AE16ECBD8BD3330 /* ContactItem.swift */; }; - D31356D54A39420DB91C892502CFFD57 /* IQUIViewController+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 946BB5B4658DD23B6E74154C233D3244 /* IQUIViewController+Additions.swift */; }; - D48AE26E5ECCDA78E743D26A40441009 /* NSNotification+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB1BB332788EF2B671ED1D8E7B45DF84 /* NSNotification+Extensions.swift */; }; - D4F11BE426B5B6B54C81072ADD45679F /* AutocompleteManagerDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 370D8DCAD9A9361984B164BD9454DD85 /* AutocompleteManagerDelegate.swift */; }; - D6516B5451008BF1ABA150E6482F6325 /* IQKeyboardManager+UITextFieldViewNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9DA9DA1D52870812AACEB8D6F3A2BAC /* IQKeyboardManager+UITextFieldViewNotification.swift */; }; - D6B0228F50454CDD91EAA91CEA2F8CCB /* AttachmentManagerDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1180923074D1EB3D3211F7E6DCBE960 /* AttachmentManagerDelegate.swift */; }; - D7359CAD4CE43EB82A471CB49D75561F /* KeyboardEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17E42AF822E47943E848C741A2796F2F /* KeyboardEvent.swift */; }; - DC2C9F2C0E684FCB2A7C5A2B2C9F25C2 /* MessagesDisplayDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D091E84F5D5CC1B2396856D4BB5C71F /* MessagesDisplayDelegate.swift */; }; + BE60EC19FCBB8F301081E9C31BB85F3E /* IQUITextFieldView+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 397F270FD3A331FBAFF82C35BE40DA66 /* IQUITextFieldView+Additions.swift */; }; + BE7D2E494D163136F592DC6747595BF8 /* LabelAlignment.swift in Sources */ = {isa = PBXBuildFile; fileRef = F274816424CB34169FD10B5900AAF98D /* LabelAlignment.swift */; }; + BF51F0E89BF73D101E7402B78F5B8704 /* LinkPreviewFonts.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18262D257610F2B477F25CA108DBCE47 /* LinkPreviewFonts.swift */; }; + C14BB4753866F9698DEDD9571E0C7451 /* AutocompleteManagerDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = FBF8E02A15A0ED54F2EF3584C8DFAFFD /* AutocompleteManagerDataSource.swift */; }; + C22BC9F65B58C833BE5ABB49E4E29475 /* SenderType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81B89A002F44FCEADC029B4AD6C4761F /* SenderType.swift */; }; + C764551976629035BC3B68DB5CCFF313 /* MessageInputBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CBF029A8CA6761F88581D7049C1048E /* MessageInputBar.swift */; }; + D0DF994786BCEC54939BC8216B42FBC4 /* IQTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AF5BD57509BAA412FE57DC242CA67DF /* IQTextView.swift */; }; + D16B01041368AC24C33A1462B5BF720F /* ContactItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68B71A1231B65F2941ECDB67BC911737 /* ContactItem.swift */; }; + D48AE26E5ECCDA78E743D26A40441009 /* NSNotification+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5C6D72B03B7F87B0CDDABB5C8F2298B /* NSNotification+Extensions.swift */; }; + D4E2EAD773A30B252B6AD6B99A7490F4 /* IQKeyboardManagerSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D05656E6082B5E1307C102F0FC3F8FAC /* IQKeyboardManagerSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D4F11BE426B5B6B54C81072ADD45679F /* AutocompleteManagerDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9B4737FDFDB28D93E754885AB316288 /* AutocompleteManagerDelegate.swift */; }; + D6B0228F50454CDD91EAA91CEA2F8CCB /* AttachmentManagerDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2034F83B5D111673C1CD8A0A91BD52D3 /* AttachmentManagerDelegate.swift */; }; + D7359CAD4CE43EB82A471CB49D75561F /* KeyboardEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DBCD29F4C6C94FF82FEDC7760756546 /* KeyboardEvent.swift */; }; + DC2C9F2C0E684FCB2A7C5A2B2C9F25C2 /* MessagesDisplayDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A394C7167434947CBBA9BD7DDDA45849 /* MessagesDisplayDelegate.swift */; }; DF1966FAF8F1D6497B03AEB1C3A8343F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 79CF7D56C5D50C18B2EA0ED106D998C7 /* Foundation.framework */; }; - DF33C3DE068D6116B3F551B0453ACD23 /* IQUIScrollView+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCD403C4E57F1C702624CB1A8BDB57EC /* IQUIScrollView+Additions.swift */; }; - E04BD9089649C8BE35F824CB1D4E3546 /* AttachmentsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB807739E7E39F8119E289D05D475EDD /* AttachmentsView.swift */; }; - E06AADA7C0F8D9602461175C8EE06492 /* UITextView+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4B10501654AAAF6012BF68E299D70CD /* UITextView+Extensions.swift */; }; - E3D24B98739A3B5D135BFF54F6456264 /* MessageSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = C32E41333943AC45E39CA6339E319D38 /* MessageSizeCalculator.swift */; }; - E4F914EABC4237F7CBD0FA0B59B6E663 /* InputPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = A19FBA2255F24DDFE9CE1CB64FAE11F0 /* InputPlugin.swift */; }; + E04BD9089649C8BE35F824CB1D4E3546 /* AttachmentsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB01ED47A59538E10F3A2B49DCA4470E /* AttachmentsView.swift */; }; + E06AADA7C0F8D9602461175C8EE06492 /* UITextView+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBE3876AB68E71DBA63085A1B6AFE90E /* UITextView+Extensions.swift */; }; + E3D24B98739A3B5D135BFF54F6456264 /* MessageSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC9E26F6C35568754B865078A4FBE431 /* MessageSizeCalculator.swift */; }; + E4F914EABC4237F7CBD0FA0B59B6E663 /* InputPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4B09B671F8B9EC6292659CB51B9F64D /* InputPlugin.swift */; }; E568019FA05750CBD276BFD333E5A0F3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 79CF7D56C5D50C18B2EA0ED106D998C7 /* Foundation.framework */; }; - E6B21E5A65DC8A04C601F97EF159E4DA /* LocationItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F44681FBF9138D860A6286EA4E96DFB2 /* LocationItem.swift */; }; - E72E1BDDFF31003BD089544FC112FAAC /* IQTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7AE28680A21900B3984A33F990990A8 /* IQTextView.swift */; }; - E74FB1FFD20FE78D9B342F7335701F12 /* MessagesCollectionViewLayoutAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8F9CCF8778A4D207B95C2FE5921299E /* MessagesCollectionViewLayoutAttributes.swift */; }; - E79141DA3EB3A16BDB46A2126C84A5B1 /* AvatarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 843BBFA99A16A0713D8955ECF99D42F9 /* AvatarView.swift */; }; - EC0F62E46CE28D2ECB3D22C201673840 /* MediaMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68C1EFE059E296B631EE8F05A940FFA4 /* MediaMessageCell.swift */; }; - EC507F6F2FFF53A9EDF19CC8161E624C /* InputBarSendButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F0FD01EB072CBC75EEC46FD719DF1C8 /* InputBarSendButton.swift */; }; - EC9823505BE2522605A9417C3FCB3CB7 /* AudioItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D855577CE10FA559EAC9C0CA7644025 /* AudioItem.swift */; }; - EE7B8E59DE2447D8B6EC043CC10FBBC5 /* TypingIndicatorCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AA759C1C4348417D3F18994A7D38805 /* TypingIndicatorCell.swift */; }; - EED9C7723F8EE87862911342058FCD81 /* ContactMessageSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4126BDBD797B926CD818D34911F17BF6 /* ContactMessageSizeCalculator.swift */; }; - F1B91B85BB35FE543E8771278D484A98 /* AttachmentManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F0EF25AACE1F0836969E26AF7DCDADA /* AttachmentManager.swift */; }; - F2B1C1D70C629AE19C0D5121B1BBA891 /* IQKeyboardManager+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = E39C93F01B98556317C6E68FC8B942C3 /* IQKeyboardManager+Position.swift */; }; - F52680B2207836467A8D6EEFB543008D /* InputBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72CABCDD1066AFCE9BDFDEF72C4419C3 /* InputBarButtonItem.swift */; }; - F54B3DE6270C3BC7EB937F96A99D48B6 /* MediaMessageSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A60459B82D95F4AF1E9DBF5F3702439 /* MediaMessageSizeCalculator.swift */; }; - F6AB46489F5D38C7870577D939B281A1 /* LocationMessageSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F0279327A8BB52D26844FF905494914 /* LocationMessageSizeCalculator.swift */; }; - F6D3196B2F8988001A3C02242393957C /* LinkPreviewMessageSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FAECEF1ACA64FC14710ACA7B6727477 /* LinkPreviewMessageSizeCalculator.swift */; }; - FACE4172C54AB6DA15F92BAAEF2CB893 /* DetectorType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E29701EA5B02160D5D669AB4ED02F62 /* DetectorType.swift */; }; - FC33245173BB6F5766A60B58C96E27D8 /* MessageLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCFAD5FF0AE365ADEFC86482F454ACE4 /* MessageLabel.swift */; }; - FEF28A586EAD9B93BD14EEF0505D478F /* AutocompleteTableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0731D0A7B22B12F08A0ED0C00D7E7B47 /* AutocompleteTableView.swift */; }; - FF3963833DF1671A4B04AFFBACDADA57 /* AvatarPosition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 581687C1EFD47FE7D458C30466418DD4 /* AvatarPosition.swift */; }; + E6B21E5A65DC8A04C601F97EF159E4DA /* LocationItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA6C4CDBB8BB93DB036DDA2CA5405310 /* LocationItem.swift */; }; + E74FB1FFD20FE78D9B342F7335701F12 /* MessagesCollectionViewLayoutAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F04AE3B61B00D98D9504B22523759FB /* MessagesCollectionViewLayoutAttributes.swift */; }; + E79141DA3EB3A16BDB46A2126C84A5B1 /* AvatarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B80A85408784B03701AA95E06C03F93 /* AvatarView.swift */; }; + EC0F62E46CE28D2ECB3D22C201673840 /* MediaMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3AB25B52D9A74D7AA9433D31560F30B6 /* MediaMessageCell.swift */; }; + EC507F6F2FFF53A9EDF19CC8161E624C /* InputBarSendButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 551FA7C0DBB7448D878A3C762613EC2B /* InputBarSendButton.swift */; }; + EC9823505BE2522605A9417C3FCB3CB7 /* AudioItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99281D07C92783F9A434680F2EA6439E /* AudioItem.swift */; }; + ECAA15FA3C4560E3287F2226EC8C1ECF /* IQKeyboardManagerConstantsInternal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 864C83AB7D568AD741C2CAFFED0C7390 /* IQKeyboardManagerConstantsInternal.swift */; }; + EE7B8E59DE2447D8B6EC043CC10FBBC5 /* TypingIndicatorCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E10E9652DCBEE448386928DD1108A06 /* TypingIndicatorCell.swift */; }; + EED9C7723F8EE87862911342058FCD81 /* ContactMessageSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D1C3F2CE16EDB56426810CA01D159C /* ContactMessageSizeCalculator.swift */; }; + F1B91B85BB35FE543E8771278D484A98 /* AttachmentManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3DF988A796152639CA2F5CD6F2EF1B8 /* AttachmentManager.swift */; }; + F47587932A67D8E3820DAFD9A0E1995E /* IQPlaceholderable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6952796EFE5FD323D7323DD089F1E452 /* IQPlaceholderable.swift */; }; + F52680B2207836467A8D6EEFB543008D /* InputBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AE7A40568D041FE92D9CAD0A2E29BE2 /* InputBarButtonItem.swift */; }; + F54B3DE6270C3BC7EB937F96A99D48B6 /* MediaMessageSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7DC167AF67701A8203568B72BA97828 /* MediaMessageSizeCalculator.swift */; }; + F6AB46489F5D38C7870577D939B281A1 /* LocationMessageSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F3E9262D11EB79AC273DD406006C288 /* LocationMessageSizeCalculator.swift */; }; + F6D3196B2F8988001A3C02242393957C /* LinkPreviewMessageSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9138EC4AC165D65DE421918AC9B5C1F2 /* LinkPreviewMessageSizeCalculator.swift */; }; + FACE4172C54AB6DA15F92BAAEF2CB893 /* DetectorType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17A63CC61336A02B03DCD6F1977702A7 /* DetectorType.swift */; }; + FC33245173BB6F5766A60B58C96E27D8 /* MessageLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CEE88E9175A292CDF95E95D7A291F08 /* MessageLabel.swift */; }; + FEF28A586EAD9B93BD14EEF0505D478F /* AutocompleteTableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E0223E3EE6134A29B79F4EEBF2BED5A /* AutocompleteTableView.swift */; }; + FF3963833DF1671A4B04AFFBACDADA57 /* AvatarPosition.swift in Sources */ = {isa = PBXBuildFile; fileRef = A041357442807CBA4B87C4D5CCAAD3C3 /* AvatarPosition.swift */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 437FB289C7B93C58D7CB4AD47299BB66 /* PBXContainerItemProxy */ = { + 4B4E0D3314C43188B008FBAC3F253BFE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2D834CBBD351637528FA6B93E42745DC; remoteInfo = MessageKit; }; - 8989DDB2FA814C327D23AA5C46900677 /* PBXContainerItemProxy */ = { + 6110EE9E7165B8A37EF4DAC74698DBE0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = C8C39DD486923E3933801D232041B590; remoteInfo = InputBarAccessoryView; }; - A62CA28EE696336E1A9E499F49819044 /* PBXContainerItemProxy */ = { + 732707AFC5F3D4C42D45F31EE8D119BA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = B6E2C457741647223A51766707CCB8CA; remoteInfo = VideoSDKRTC; }; - B6ED964E08030BA2BE0178A090D866D6 /* PBXContainerItemProxy */ = { + 9B50FF3B072F66721AEEB6D694F5B046 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C8C39DD486923E3933801D232041B590; - remoteInfo = InputBarAccessoryView; + remoteGlobalIDString = B490E7485944099E16C9CBD79119D1D4; + remoteInfo = IQKeyboardManagerSwift; }; - E1A68A5747A49379534F02A81E6B639B /* PBXContainerItemProxy */ = { + AC164C6A0632B2A682EA6C15F0BD8873 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B490E7485944099E16C9CBD79119D1D4; - remoteInfo = IQKeyboardManagerSwift; + remoteGlobalIDString = C8C39DD486923E3933801D232041B590; + remoteInfo = InputBarAccessoryView; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ + 009A6B28E935276EF732E71F8A9DFEB5 /* IQKeyboardManager+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Debug.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Debug.swift"; sourceTree = ""; }; + 0211F583FAC624D77AD1F162EBB7C78E /* AccessoryPosition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AccessoryPosition.swift; path = Sources/Models/AccessoryPosition.swift; sourceTree = ""; }; 04D60AC13D33197690A05C641925DDDA /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; - 04E3CB607FC2ADFFDED74D4E2B6224D4 /* SenderType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SenderType.swift; path = Sources/Protocols/SenderType.swift; sourceTree = ""; }; - 0731D0A7B22B12F08A0ED0C00D7E7B47 /* AutocompleteTableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AutocompleteTableView.swift; path = Sources/Plugins/AutocompleteManager/Views/AutocompleteTableView.swift; sourceTree = ""; }; - 0A775354C587F44498EB778D657A4C77 /* NSMutableAttributedString+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSMutableAttributedString+Extensions.swift"; path = "Sources/Extensions/NSMutableAttributedString+Extensions.swift"; sourceTree = ""; }; - 0BFD5F3F584456A98134CF0107DD2849 /* AudioMessageSizeCalculator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AudioMessageSizeCalculator.swift; path = Sources/Layout/AudioMessageSizeCalculator.swift; sourceTree = ""; }; - 0C9AA15810F023BAF68D9D947A841275 /* String+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+Extensions.swift"; path = "Sources/Extensions/String+Extensions.swift"; sourceTree = ""; }; - 11F01616102864D62D30E6582BBE0F3C /* IQKeyboardManagerSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.release.xcconfig; sourceTree = ""; }; - 122B8C0C2E0C8DF09E8215FA8BC5FDD0 /* HorizontalEdgePadding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HorizontalEdgePadding.swift; path = Sources/Models/HorizontalEdgePadding.swift; sourceTree = ""; }; - 12EEE9B767C72E8835F1153224589F12 /* MessageStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageStyle.swift; path = Sources/Models/MessageStyle.swift; sourceTree = ""; }; - 1326A1A9107E3A2FEB83C130C50A53E8 /* InputItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputItem.swift; path = Sources/Protocols/InputItem.swift; sourceTree = ""; }; - 13DBA5ECFD1E6D949594880631F7CBF3 /* MessageKit+Availability.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "MessageKit+Availability.swift"; path = "Sources/Supporting/MessageKit+Availability.swift"; sourceTree = ""; }; - 145186FDEB1824EF25FA05F656EECBD2 /* UIImage+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIImage+Extensions.swift"; path = "Sources/Extensions/UIImage+Extensions.swift"; sourceTree = ""; }; - 14603281E295465E9F1A9D55C2C904D5 /* IQUIView+IQKeyboardToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIView+IQKeyboardToolbar.swift"; path = "IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbar.swift"; sourceTree = ""; }; + 054BB95F1C6127DEA05615B615975440 /* InputBarAccessoryView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "InputBarAccessoryView-dummy.m"; sourceTree = ""; }; + 0595FD1D91FDB06DDC97C12E417FD7D3 /* MessageCollectionViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageCollectionViewCell.swift; path = Sources/Views/Cells/MessageCollectionViewCell.swift; sourceTree = ""; }; + 08AD6F95D40811D7E0BAC3EBA4D1203C /* IQNSArray+Sort.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQNSArray+Sort.swift"; path = "IQKeyboardManagerSwift/Categories/IQNSArray+Sort.swift"; sourceTree = ""; }; + 0A5B724D2835C61082AB45F2A595D158 /* ContactMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContactMessageCell.swift; path = Sources/Views/Cells/ContactMessageCell.swift; sourceTree = ""; }; + 0E9E1C25BC27113F020D404B30533B7C /* NSMutableAttributedString+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSMutableAttributedString+Extensions.swift"; path = "Sources/Extensions/NSMutableAttributedString+Extensions.swift"; sourceTree = ""; }; + 114F69E7DD00E39F903F86CC6EA841C6 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardManagerSwift/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 1184696D328CD7F24E4D0156427EC4F8 /* MessageKitDateFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageKitDateFormatter.swift; path = Sources/Models/MessageKitDateFormatter.swift; sourceTree = ""; }; + 14CFDFA9A75FC20E8F8A1F622C2447DA /* InputBarAccessoryView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "InputBarAccessoryView-Info.plist"; sourceTree = ""; }; + 153C61527061AB00AF5E1674155F4D77 /* IQKeyboardManagerSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.debug.xcconfig; sourceTree = ""; }; 15A68A8F33BD9EB9AFD02465B0418BCF /* MessageKit */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MessageKit; path = MessageKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 17E42AF822E47943E848C741A2796F2F /* KeyboardEvent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyboardEvent.swift; path = Sources/KeyboardManager/KeyboardEvent.swift; sourceTree = ""; }; - 1A2DB7E7C46F506272BFCB736BEB57EE /* MessageReusableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageReusableView.swift; path = Sources/Views/HeadersFooters/MessageReusableView.swift; sourceTree = ""; }; - 1CFCFA9598D6846B5019A5CE6842A0BF /* MessageKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MessageKit.release.xcconfig; sourceTree = ""; }; - 1E62454D8F6E5CCE50767A38E535F141 /* MessageKind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageKind.swift; path = Sources/Models/MessageKind.swift; sourceTree = ""; }; - 1F0279327A8BB52D26844FF905494914 /* LocationMessageSizeCalculator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocationMessageSizeCalculator.swift; path = Sources/Layout/LocationMessageSizeCalculator.swift; sourceTree = ""; }; - 1F83912BA9E66410C314CEA75D90A27D /* TextMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextMessageCell.swift; path = Sources/Views/Cells/TextMessageCell.swift; sourceTree = ""; }; - 212FBCA574EB58D5FD2EC2B99D9CCC19 /* MessageKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MessageKit.modulemap; sourceTree = ""; }; - 2168F621E16087DE961D8CB1F4041FD1 /* WebRTC.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = WebRTC.xcframework; path = Frameworks/WebRTC.xcframework; sourceTree = ""; }; + 16E853DBAE36CEC5241CB271316F2D6A /* BubbleCircle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BubbleCircle.swift; path = Sources/Views/BubbleCircle.swift; sourceTree = ""; }; + 17A63CC61336A02B03DCD6F1977702A7 /* DetectorType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DetectorType.swift; path = Sources/Models/DetectorType.swift; sourceTree = ""; }; + 18262D257610F2B477F25CA108DBCE47 /* LinkPreviewFonts.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LinkPreviewFonts.swift; path = Sources/Models/LinkPreviewFonts.swift; sourceTree = ""; }; + 1A311DCD364BBCBEEF4F5D5E29449C62 /* LinkPreviewMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LinkPreviewMessageCell.swift; path = Sources/Views/Cells/LinkPreviewMessageCell.swift; sourceTree = ""; }; + 1AF5BD57509BAA412FE57DC242CA67DF /* IQTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextView.swift; path = IQKeyboardManagerSwift/IQTextView/IQTextView.swift; sourceTree = ""; }; + 1CEE88E9175A292CDF95E95D7A291F08 /* MessageLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageLabel.swift; path = Sources/Views/MessageLabel.swift; sourceTree = ""; }; + 1DBCD29F4C6C94FF82FEDC7760756546 /* KeyboardEvent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyboardEvent.swift; path = Sources/KeyboardManager/KeyboardEvent.swift; sourceTree = ""; }; + 1F3E9262D11EB79AC273DD406006C288 /* LocationMessageSizeCalculator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocationMessageSizeCalculator.swift; path = Sources/Layout/LocationMessageSizeCalculator.swift; sourceTree = ""; }; + 2034F83B5D111673C1CD8A0A91BD52D3 /* AttachmentManagerDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AttachmentManagerDelegate.swift; path = Sources/Plugins/AttachmentManager/Protocols/AttachmentManagerDelegate.swift; sourceTree = ""; }; 21F2DE2F171D3A8DEEC6355B3708E50A /* Pods-VideoSDKRTC_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-VideoSDKRTC_Example.debug.xcconfig"; sourceTree = ""; }; - 2382F9C71E65FCC1BDED145BCC9BA8BD /* MessageKitDateFormatter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageKitDateFormatter.swift; path = Sources/Models/MessageKitDateFormatter.swift; sourceTree = ""; }; - 23E4108C57785C91BBED175401DE64CC /* IQKeyboardManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManager.swift; path = IQKeyboardManagerSwift/IQKeyboardManager.swift; sourceTree = ""; }; - 26932BC43CB553D60D0A0AB9A37A9142 /* InsetLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InsetLabel.swift; path = Sources/Views/InsetLabel.swift; sourceTree = ""; }; - 26EF979E2DBB77A6448D892CDD2DA818 /* NSConstraintLayoutSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NSConstraintLayoutSet.swift; path = Sources/Models/NSConstraintLayoutSet.swift; sourceTree = ""; }; - 28D472548F109A22B4ADED3017C94188 /* InputStackView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputStackView.swift; path = Sources/Views/InputStackView.swift; sourceTree = ""; }; - 2C774AA435B3EEB965DEE88423274B8C /* Sender.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sender.swift; path = Sources/Models/Sender.swift; sourceTree = ""; }; - 2D3B23BBF084BDF4DAC03BEA1FB175D6 /* MessageKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MessageKit-dummy.m"; sourceTree = ""; }; - 2D829E190F60E47DCB39A24FD8A26C3E /* MessageType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageType.swift; path = Sources/Protocols/MessageType.swift; sourceTree = ""; }; - 2D9F7298504B3F702309D38E088CE753 /* AccessoryPosition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AccessoryPosition.swift; path = Sources/Models/AccessoryPosition.swift; sourceTree = ""; }; - 2E29701EA5B02160D5D669AB4ED02F62 /* DetectorType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DetectorType.swift; path = Sources/Models/DetectorType.swift; sourceTree = ""; }; - 2F0FD01EB072CBC75EEC46FD719DF1C8 /* InputBarSendButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputBarSendButton.swift; path = Sources/Controls/InputBarSendButton.swift; sourceTree = ""; }; - 2FAECEF1ACA64FC14710ACA7B6727477 /* LinkPreviewMessageSizeCalculator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LinkPreviewMessageSizeCalculator.swift; path = Sources/Layout/LinkPreviewMessageSizeCalculator.swift; sourceTree = ""; }; - 370D8DCAD9A9361984B164BD9454DD85 /* AutocompleteManagerDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AutocompleteManagerDelegate.swift; path = Sources/Plugins/AutocompleteManager/Protocols/AutocompleteManagerDelegate.swift; sourceTree = ""; }; - 38059B5477FC87123F4A9E322794CA7B /* IQKeyboardManager+OrientationNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+OrientationNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+OrientationNotification.swift"; sourceTree = ""; }; - 38EB67233996CB3D7C3EAFF8407E72AB /* VideosdkWebSocket.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = VideosdkWebSocket.xcframework; path = Frameworks/VideosdkWebSocket.xcframework; sourceTree = ""; }; - 4126BDBD797B926CD818D34911F17BF6 /* ContactMessageSizeCalculator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContactMessageSizeCalculator.swift; path = Sources/Layout/ContactMessageSizeCalculator.swift; sourceTree = ""; }; - 42A34D1E3B9BDDC95FE29178B88A361D /* UIEdgeInsets+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIEdgeInsets+Extensions.swift"; path = "Sources/Extensions/UIEdgeInsets+Extensions.swift"; sourceTree = ""; }; + 23348B7921D88C28643B9F09E793B99C /* InputBarAccessoryView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = InputBarAccessoryView.debug.xcconfig; sourceTree = ""; }; + 2443228DF549456C9F5B57D3483A5286 /* IQKeyboardManagerSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardManagerSwift-Info.plist"; sourceTree = ""; }; + 26D082CAC1129CDF36243BCCF98B2A0E /* IQPreviousNextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQPreviousNextView.swift; path = IQKeyboardManagerSwift/IQToolbar/IQPreviousNextView.swift; sourceTree = ""; }; + 288E14CFD5BE2494A4D330FD85C7CDE4 /* LinkItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LinkItem.swift; path = Sources/Protocols/LinkItem.swift; sourceTree = ""; }; + 28D35D8CE56497B77937E4AB44B0B38F /* MediaItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MediaItem.swift; path = Sources/Protocols/MediaItem.swift; sourceTree = ""; }; + 2973CBF3AF4693CE305163784D300B43 /* HorizontalEdgePadding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HorizontalEdgePadding.swift; path = Sources/Models/HorizontalEdgePadding.swift; sourceTree = ""; }; + 2A852D434848A72CD8B9ED4953FB79BF /* IQKeyboardManagerConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManagerConstants.swift; path = IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstants.swift; sourceTree = ""; }; + 2AEFE766F01AA66FAA1C2298E08D2F24 /* AttachmentCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AttachmentCell.swift; path = Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift; sourceTree = ""; }; + 2B6F5689A58EA51A26E63A7AE770CA3F /* InputItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputItem.swift; path = Sources/Protocols/InputItem.swift; sourceTree = ""; }; + 2B80A85408784B03701AA95E06C03F93 /* AvatarView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AvatarView.swift; path = Sources/Views/AvatarView.swift; sourceTree = ""; }; + 2E0223E3EE6134A29B79F4EEBF2BED5A /* AutocompleteTableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AutocompleteTableView.swift; path = Sources/Plugins/AutocompleteManager/Views/AutocompleteTableView.swift; sourceTree = ""; }; + 30D40E6334EBE61C03CD871D7C067731 /* MessagesDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessagesDataSource.swift; path = Sources/Protocols/MessagesDataSource.swift; sourceTree = ""; }; + 397F270FD3A331FBAFF82C35BE40DA66 /* IQUITextFieldView+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUITextFieldView+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUITextFieldView+Additions.swift"; sourceTree = ""; }; + 3992BE51CDD2C19352D712D47658C746 /* IQKeyboardManagerSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.release.xcconfig; sourceTree = ""; }; + 3AB25B52D9A74D7AA9433D31560F30B6 /* MediaMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MediaMessageCell.swift; path = Sources/Views/Cells/MediaMessageCell.swift; sourceTree = ""; }; + 3AB7F1C1EECD41E941DA8F10EEE809AF /* PlayButtonView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PlayButtonView.swift; path = Sources/Views/PlayButtonView.swift; sourceTree = ""; }; + 3C0A5D9783FB210177CAF03A650706C6 /* IQKeyboardReturnKeyHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardReturnKeyHandler.swift; path = IQKeyboardManagerSwift/IQKeyboardReturnKeyHandler.swift; sourceTree = ""; }; + 41A7FA9A829748836234C6FFB2878982 /* MessageKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MessageKit.modulemap; sourceTree = ""; }; 42B167DA3BBB40172536AFE17B1D39AF /* Pods-VideoSDKRTC_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-VideoSDKRTC_Example.modulemap"; sourceTree = ""; }; - 43BDE030514423ACBDAB8B2D62AA1EA3 /* LinkPreviewView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LinkPreviewView.swift; path = Sources/Views/LinkPreviewView.swift; sourceTree = ""; }; - 44AA105ECE691540D5BBB7E0598BBDCB /* AttachmentManagerDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AttachmentManagerDataSource.swift; path = Sources/Plugins/AttachmentManager/Protocols/AttachmentManagerDataSource.swift; sourceTree = ""; }; - 44EE62B10DBD879E390D9B5AC41B1FB6 /* MessageKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MessageKit-umbrella.h"; sourceTree = ""; }; - 4A60459B82D95F4AF1E9DBF5F3702439 /* MediaMessageSizeCalculator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MediaMessageSizeCalculator.swift; path = Sources/Layout/MediaMessageSizeCalculator.swift; sourceTree = ""; }; - 50D38204C265899C877E5AA50E43ED4D /* KeyboardManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyboardManager.swift; path = Sources/KeyboardManager/KeyboardManager.swift; sourceTree = ""; }; - 5105D5694FD637BB68783275C090124C /* InputBarViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputBarViewController.swift; path = Sources/ViewControllers/InputBarViewController.swift; sourceTree = ""; }; - 52E5762CC0004B9B05A92B4FAF68E876 /* LocationMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocationMessageCell.swift; path = Sources/Views/Cells/LocationMessageCell.swift; sourceTree = ""; }; - 5356579AC4B43B7AE1EA763806D88CA1 /* IQKeyboardManager+Toolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Toolbar.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Toolbar.swift"; sourceTree = ""; }; - 555379D4AADA4B0DAAF0BCFE0FEDD4FA /* InputBarAccessoryView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputBarAccessoryView.swift; path = Sources/InputBarAccessoryView.swift; sourceTree = ""; }; + 44B8C9FCCE33414AB83BD3FE4709A72E /* MessageKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MessageKit.debug.xcconfig; sourceTree = ""; }; + 480595B7EB4963C3CFCD7BBCDCFBC73D /* NSConstraintLayoutSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NSConstraintLayoutSet.swift; path = Sources/Models/NSConstraintLayoutSet.swift; sourceTree = ""; }; + 4A2179BAEFE5140F3832620673958760 /* MessageKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MessageKit-umbrella.h"; sourceTree = ""; }; + 4A2C29C7F1CAC0E623F5AFA313AA5B17 /* IQKeyboardManager+UIKeyboardNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+UIKeyboardNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+UIKeyboardNotification.swift"; sourceTree = ""; }; + 4B99D470382C5C9CEDBA04256CA7C1CD /* CGRect+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CGRect+Extensions.swift"; path = "Sources/Extensions/CGRect+Extensions.swift"; sourceTree = ""; }; + 4E319E80E0104236B69BD0BDE4076F30 /* InputBarAccessoryView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = InputBarAccessoryView.modulemap; sourceTree = ""; }; + 4FE7801CE7E06398DDA59C566BA0AFDF /* KeyboardManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyboardManager.swift; path = Sources/KeyboardManager/KeyboardManager.swift; sourceTree = ""; }; + 522D4D4E61CB5E016942334FDDEE52E0 /* MessageKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MessageKit-dummy.m"; sourceTree = ""; }; + 531F5C194C14C630C0326589B2A8F647 /* InputStackView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputStackView.swift; path = Sources/Views/InputStackView.swift; sourceTree = ""; }; + 551FA7C0DBB7448D878A3C762613EC2B /* InputBarSendButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputBarSendButton.swift; path = Sources/Controls/InputBarSendButton.swift; sourceTree = ""; }; + 553CC51F895CE213A584B5F5A24D1FEA /* UIView+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Extensions.swift"; path = "Sources/Extensions/UIView+Extensions.swift"; sourceTree = ""; }; 55A4822938409AFD8F3B649F5F55EA37 /* Pods-VideoSDKRTC_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-VideoSDKRTC_Example-Info.plist"; sourceTree = ""; }; - 561A655D634FEC856482D48AA09588E1 /* MessageCollectionViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageCollectionViewCell.swift; path = Sources/Views/Cells/MessageCollectionViewCell.swift; sourceTree = ""; }; - 581687C1EFD47FE7D458C30466418DD4 /* AvatarPosition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AvatarPosition.swift; path = Sources/Models/AvatarPosition.swift; sourceTree = ""; }; - 58AD362F1E70A7567C20E4685CF60DA1 /* NSConstraintLayoutSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NSConstraintLayoutSet.swift; path = Sources/Models/NSConstraintLayoutSet.swift; sourceTree = ""; }; - 5B5491A16B82EE84AEAA1014E118B1C9 /* IQKeyboardManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Internal.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Internal.swift"; sourceTree = ""; }; - 5C18EDAE4B9D5052CFDCAA4F743F5DBC /* MessageCellDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageCellDelegate.swift; path = Sources/Protocols/MessageCellDelegate.swift; sourceTree = ""; }; - 5D2581D7B51869B8F4B91B4755439980 /* BubbleCircle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BubbleCircle.swift; path = Sources/Views/BubbleCircle.swift; sourceTree = ""; }; - 5F451DD3F5639DB526A5113C22153C80 /* IQKeyboardManagerSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.debug.xcconfig; sourceTree = ""; }; - 613D4AB65FAA86308CEBE5EA57D7088E /* CGRect+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CGRect+Extensions.swift"; path = "Sources/Extensions/CGRect+Extensions.swift"; sourceTree = ""; }; - 621699B088D1D752CB7C38C901C5D0BC /* LinkPreviewMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LinkPreviewMessageCell.swift; path = Sources/Views/Cells/LinkPreviewMessageCell.swift; sourceTree = ""; }; - 623137538576A2E8BA39D3E601C695E0 /* InputBarAccessoryView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = InputBarAccessoryView.release.xcconfig; sourceTree = ""; }; - 64C63FB9A15B5CD6A500F0F6FCFFDAB2 /* IQPreviousNextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQPreviousNextView.swift; path = IQKeyboardManagerSwift/IQToolbar/IQPreviousNextView.swift; sourceTree = ""; }; - 668A471900E772D1C2D2465ECA79D73E /* KeyboardNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyboardNotification.swift; path = Sources/KeyboardManager/KeyboardNotification.swift; sourceTree = ""; }; - 67ACF7970FA5F6F5D0C6C2A7DAB09B25 /* NSAttributedString+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSAttributedString+Extensions.swift"; path = "Sources/Extensions/NSAttributedString+Extensions.swift"; sourceTree = ""; }; - 68C1EFE059E296B631EE8F05A940FFA4 /* MediaMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MediaMessageCell.swift; path = Sources/Views/Cells/MediaMessageCell.swift; sourceTree = ""; }; - 68D65FDC880EDAE677C234C5255314B4 /* AutocompleteSession.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AutocompleteSession.swift; path = Sources/Plugins/AutocompleteManager/Models/AutocompleteSession.swift; sourceTree = ""; }; + 562408E478086D76CB2DF1E7CF482923 /* IQUIView+IQKeyboardToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIView+IQKeyboardToolbar.swift"; path = "IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbar.swift"; sourceTree = ""; }; + 57057D9994410CECEE02A8DD69E19012 /* MessageKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MessageKit.release.xcconfig; sourceTree = ""; }; + 593F92587C692CA0F018DCC20115ADC6 /* IQToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQToolbar.swift; path = IQKeyboardManagerSwift/IQToolbar/IQToolbar.swift; sourceTree = ""; }; + 5EA0B1753F4E86B8D53EA267430B1CC5 /* MessageType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageType.swift; path = Sources/Protocols/MessageType.swift; sourceTree = ""; }; + 62139DCBA3CC67FD2E57BE20D6C1D138 /* IQUIScrollView+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIScrollView+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIScrollView+Additions.swift"; sourceTree = ""; }; + 6619A6A67C53A6B104DC88DC7D430CA5 /* IQKeyboardManager+UITextFieldViewNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+UITextFieldViewNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+UITextFieldViewNotification.swift"; sourceTree = ""; }; + 67B60E1DC78386AB93392F129437C49E /* String+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+Extensions.swift"; path = "Sources/Extensions/String+Extensions.swift"; sourceTree = ""; }; + 68B71A1231B65F2941ECDB67BC911737 /* ContactItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContactItem.swift; path = Sources/Protocols/ContactItem.swift; sourceTree = ""; }; + 6929EF815BB6FAAB0906A1049EDFDE72 /* KeyboardNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyboardNotification.swift; path = Sources/KeyboardManager/KeyboardNotification.swift; sourceTree = ""; }; + 6952796EFE5FD323D7323DD089F1E452 /* IQPlaceholderable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQPlaceholderable.swift; path = IQKeyboardManagerSwift/IQTextView/IQPlaceholderable.swift; sourceTree = ""; }; + 69B199C4CCB4C8084AC5A51B6644664D /* MessageKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MessageKit-Info.plist"; sourceTree = ""; }; 69CE4CD37F22682781DE112B83BEFCCE /* Pods-VideoSDKRTC_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-VideoSDKRTC_Example-frameworks.sh"; sourceTree = ""; }; - 6BA1A6EF42F81C848D47FCC55F741C78 /* TypingIndicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TypingIndicator.swift; path = Sources/Views/TypingIndicator.swift; sourceTree = ""; }; - 6E02A673536A7CF95DCB543476ACCE64 /* InputBarAccessoryView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "InputBarAccessoryView-prefix.pch"; sourceTree = ""; }; - 6E579F300CB3DDE95DA443B65610AF79 /* IQKeyboardManager+UIKeyboardNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+UIKeyboardNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+UIKeyboardNotification.swift"; sourceTree = ""; }; - 6ED3BC8A57E8C24D5AE16ECBD8BD3330 /* ContactItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContactItem.swift; path = Sources/Protocols/ContactItem.swift; sourceTree = ""; }; - 6FAC202320DBA1A6A24C17843DE0CBF2 /* Assets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Sources/Assets.xcassets; sourceTree = ""; }; - 72CABCDD1066AFCE9BDFDEF72C4419C3 /* InputBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputBarButtonItem.swift; path = Sources/Controls/InputBarButtonItem.swift; sourceTree = ""; }; - 73B2694A2922CE96347926ABF84DA99F /* AttachmentCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AttachmentCell.swift; path = Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift; sourceTree = ""; }; - 77F0A805C94EF7E0D49DD1AD08AA46AA /* InputBarAccessoryView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = InputBarAccessoryView.debug.xcconfig; sourceTree = ""; }; + 6CBF029A8CA6761F88581D7049C1048E /* MessageInputBar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageInputBar.swift; path = Sources/Supporting/MessageInputBar.swift; sourceTree = ""; }; + 6D37A31757D3D8EA64D521F136FCB1CD /* MessageContainerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageContainerView.swift; path = Sources/Views/MessageContainerView.swift; sourceTree = ""; }; + 6F25A0115FB9BA9B9AF88359BB253457 /* VideoSDKRTC-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "VideoSDKRTC-xcframeworks.sh"; sourceTree = ""; }; + 6FA29EC7D5F1BA27D7E7B07252052237 /* IQUIView+Hierarchy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIView+Hierarchy.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIView+Hierarchy.swift"; sourceTree = ""; }; + 72B074EF336FE90C918FFBA335D55AFB /* MessagesViewController+Keyboard.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "MessagesViewController+Keyboard.swift"; path = "Sources/Controllers/MessagesViewController+Keyboard.swift"; sourceTree = ""; }; + 72C96168350F92945B513B3B5DEC81E3 /* LocationMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocationMessageCell.swift; path = Sources/Views/Cells/LocationMessageCell.swift; sourceTree = ""; }; + 731C0EC9679CB7C9AC544DE6F8568B36 /* IQKeyboardManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManager.swift; path = IQKeyboardManagerSwift/IQKeyboardManager.swift; sourceTree = ""; }; + 764038EAAB0193D2CB6F5739C5CC2215 /* InputBarAccessoryView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputBarAccessoryView.swift; path = Sources/InputBarAccessoryView.swift; sourceTree = ""; }; + 76646FDD138158653294A8617A54E207 /* UIColor+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIColor+Extensions.swift"; path = "Sources/Extensions/UIColor+Extensions.swift"; sourceTree = ""; }; + 769C02BC00ACF85DB15132D9DA6CC94C /* IQKeyboardManagerSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardManagerSwift-dummy.m"; sourceTree = ""; }; 78454B04E3B0C3056579166BAE1C939F /* Pods-VideoSDKRTC_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-VideoSDKRTC_Example-dummy.m"; sourceTree = ""; }; + 79140A4B7F71064DBCFBBF67BF895A62 /* InputBarViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputBarViewController.swift; path = Sources/ViewControllers/InputBarViewController.swift; sourceTree = ""; }; 79CF7D56C5D50C18B2EA0ED106D998C7 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - 7DAB0B126CE5FFD3D213D88074580567 /* VideoSDKRTC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = VideoSDKRTC.release.xcconfig; sourceTree = ""; }; - 83A62EB8B8EC95F57DFF4736F1897F86 /* VideoSDKRTC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = VideoSDKRTC.debug.xcconfig; sourceTree = ""; }; - 83B9A0AA1AE7175CCD88963C3AF19084 /* MessageKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MessageKit.debug.xcconfig; sourceTree = ""; }; + 79DCDCEEAF977077EFE4FA6B38CBEE04 /* InputBarAccessoryViewDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputBarAccessoryViewDelegate.swift; path = Sources/Protocols/InputBarAccessoryViewDelegate.swift; sourceTree = ""; }; + 7A6408E47FDDF35D41EC0CFE9A48B1B0 /* IQUIViewController+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIViewController+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIViewController+Additions.swift"; sourceTree = ""; }; + 7AE7A40568D041FE92D9CAD0A2E29BE2 /* InputBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputBarButtonItem.swift; path = Sources/Controls/InputBarButtonItem.swift; sourceTree = ""; }; + 7EF3DE9894454F508B7CCAF547EC5AF4 /* MessagesViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessagesViewController.swift; path = Sources/Controllers/MessagesViewController.swift; sourceTree = ""; }; + 7F04AE3B61B00D98D9504B22523759FB /* MessagesCollectionViewLayoutAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessagesCollectionViewLayoutAttributes.swift; path = Sources/Layout/MessagesCollectionViewLayoutAttributes.swift; sourceTree = ""; }; + 808272F7C43F8F467937F4F0501A5E8F /* TypingIndicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TypingIndicator.swift; path = Sources/Views/TypingIndicator.swift; sourceTree = ""; }; + 816F1A5B831F6810CAADA69E18D0DDE2 /* IQKeyboardManager+Toolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Toolbar.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Toolbar.swift"; sourceTree = ""; }; + 81B89A002F44FCEADC029B4AD6C4761F /* SenderType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SenderType.swift; path = Sources/Protocols/SenderType.swift; sourceTree = ""; }; + 83C4049B181843CE3DBD41583DFB5855 /* IQKeyboardManagerSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardManagerSwift.modulemap; sourceTree = ""; }; + 83D1C3F2CE16EDB56426810CA01D159C /* ContactMessageSizeCalculator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContactMessageSizeCalculator.swift; path = Sources/Layout/ContactMessageSizeCalculator.swift; sourceTree = ""; }; 840FA0B75AF62912A30DDC66B647ED98 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; }; - 843BBFA99A16A0713D8955ECF99D42F9 /* AvatarView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AvatarView.swift; path = Sources/Views/AvatarView.swift; sourceTree = ""; }; - 84B6D9139978C0C3141EC189166A899B /* MessagesLayoutDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessagesLayoutDelegate.swift; path = Sources/Protocols/MessagesLayoutDelegate.swift; sourceTree = ""; }; 8566CAE2941E0D3A6EC823D13C6C8D34 /* Pods-VideoSDKRTC_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-VideoSDKRTC_Example.release.xcconfig"; sourceTree = ""; }; - 8574B3FEDDE96E311DF515968892702E /* MessageInputBar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageInputBar.swift; path = Sources/Supporting/MessageInputBar.swift; sourceTree = ""; }; - 87D9737B91890A6BCFBDC7D89C5A7A16 /* SeparatorLine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SeparatorLine.swift; path = Sources/Views/SeparatorLine.swift; sourceTree = ""; }; - 8B85BAB42E9D73AEBAF84C049836F504 /* IQKeyboardManagerSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-prefix.pch"; sourceTree = ""; }; - 8C41EC0BB6F4C487C7FF6A9A6AFEB4C7 /* IQUIView+Hierarchy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIView+Hierarchy.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIView+Hierarchy.swift"; sourceTree = ""; }; - 8D855577CE10FA559EAC9C0CA7644025 /* AudioItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AudioItem.swift; path = Sources/Protocols/AudioItem.swift; sourceTree = ""; }; - 8EB8AE5192E2E6376D308657D0AE53E4 /* UIColor+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIColor+Extensions.swift"; path = "Sources/Extensions/UIColor+Extensions.swift"; sourceTree = ""; }; - 9026BFA9A5B7FB28582B912963A9C924 /* IQKeyboardManagerSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-umbrella.h"; sourceTree = ""; }; - 908AF0C4F1A5C3B7D55AE166C8FB6E1E /* IQKeyboardManagerSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardManagerSwift.modulemap; sourceTree = ""; }; - 91597C76FCC9334315A550C6706E8499 /* MessageKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MessageKit-prefix.pch"; sourceTree = ""; }; - 92380F91A2841FC1C2154842B7E43014 /* IQNSArray+Sort.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQNSArray+Sort.swift"; path = "IQKeyboardManagerSwift/Categories/IQNSArray+Sort.swift"; sourceTree = ""; }; - 9308B5CC7495A5A2C44A3717F60BAC16 /* MessagesCollectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessagesCollectionView.swift; path = Sources/Views/MessagesCollectionView.swift; sourceTree = ""; }; - 931549125B4A411B3260A4D763EBBC9C /* MessagesViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessagesViewController.swift; path = Sources/Controllers/MessagesViewController.swift; sourceTree = ""; }; - 946BB5B4658DD23B6E74154C233D3244 /* IQUIViewController+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIViewController+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIViewController+Additions.swift"; sourceTree = ""; }; - 956598A2691226B853373A53B1E1CBBF /* InputBarAccessoryView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "InputBarAccessoryView-umbrella.h"; sourceTree = ""; }; - 962DAEEE1A15E45DD742752FB353D181 /* AutocompleteCompletion.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AutocompleteCompletion.swift; path = Sources/Plugins/AutocompleteManager/Models/AutocompleteCompletion.swift; sourceTree = ""; }; - 9726680743BCFD5506B1D173FA02E218 /* Avatar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Avatar.swift; path = Sources/Models/Avatar.swift; sourceTree = ""; }; - 9AA759C1C4348417D3F18994A7D38805 /* TypingIndicatorCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TypingIndicatorCell.swift; path = Sources/Views/Cells/TypingIndicatorCell.swift; sourceTree = ""; }; - 9C3F4EE33F1971AA953EFEECF1295EC0 /* IQBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQBarButtonItem.swift; path = IQKeyboardManagerSwift/IQToolbar/IQBarButtonItem.swift; sourceTree = ""; }; - 9D091E84F5D5CC1B2396856D4BB5C71F /* MessagesDisplayDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessagesDisplayDelegate.swift; path = Sources/Protocols/MessagesDisplayDelegate.swift; sourceTree = ""; }; + 864C83AB7D568AD741C2CAFFED0C7390 /* IQKeyboardManagerConstantsInternal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManagerConstantsInternal.swift; path = IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstantsInternal.swift; sourceTree = ""; }; + 86F6ECA1488B60F4B23A29DDE05C7F52 /* AttachmentManagerDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AttachmentManagerDataSource.swift; path = Sources/Plugins/AttachmentManager/Protocols/AttachmentManagerDataSource.swift; sourceTree = ""; }; + 88DEDC7D751C475E1438849BF7F77429 /* NSAttributedString+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSAttributedString+Extensions.swift"; path = "Sources/Extensions/NSAttributedString+Extensions.swift"; sourceTree = ""; }; + 8E10E9652DCBEE448386928DD1108A06 /* TypingIndicatorCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TypingIndicatorCell.swift; path = Sources/Views/Cells/TypingIndicatorCell.swift; sourceTree = ""; }; + 9138EC4AC165D65DE421918AC9B5C1F2 /* LinkPreviewMessageSizeCalculator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LinkPreviewMessageSizeCalculator.swift; path = Sources/Layout/LinkPreviewMessageSizeCalculator.swift; sourceTree = ""; }; + 917EF29634B0D0A0F85557943728436A /* MessagesCollectionViewFlowLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessagesCollectionViewFlowLayout.swift; path = Sources/Layout/MessagesCollectionViewFlowLayout.swift; sourceTree = ""; }; + 924D679B19DAE404A6489E633C24A7C4 /* UIImage+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIImage+Extensions.swift"; path = "Sources/Extensions/UIImage+Extensions.swift"; sourceTree = ""; }; + 929D4C87F10AABA95DEB0F8BEA784E4C /* AutocompleteSession.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AutocompleteSession.swift; path = Sources/Plugins/AutocompleteManager/Models/AutocompleteSession.swift; sourceTree = ""; }; + 94F397F0FBF3E4B69E83A180F209E771 /* InputBarAccessoryView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "InputBarAccessoryView-prefix.pch"; sourceTree = ""; }; + 98F2E8E1FB8656274167BDBEDC1833F1 /* IQKeyboardManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Internal.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Internal.swift"; sourceTree = ""; }; + 99281D07C92783F9A434680F2EA6439E /* AudioItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AudioItem.swift; path = Sources/Protocols/AudioItem.swift; sourceTree = ""; }; + 9A406831EBE9EF7A35E401EC8FD08F81 /* AutocompleteManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AutocompleteManager.swift; path = Sources/Plugins/AutocompleteManager/AutocompleteManager.swift; sourceTree = ""; }; + 9B320B773D68AA37F217606E992EACDB /* MessageKitError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageKitError.swift; path = Sources/Models/MessageKitError.swift; sourceTree = ""; }; + 9B8268F8D29775BB15037927EF8FA10B /* Sender.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sender.swift; path = Sources/Models/Sender.swift; sourceTree = ""; }; + 9D22BAF60CE3CFDCA3755C84ADBF4DD3 /* MessagesLayoutDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessagesLayoutDelegate.swift; path = Sources/Protocols/MessagesLayoutDelegate.swift; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9E1EC2750BAFD6207C9CFC1C2F69CF57 /* AudioMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AudioMessageCell.swift; path = Sources/Views/Cells/AudioMessageCell.swift; sourceTree = ""; }; - 9E9244344FCD85D74AA74678F996C2B7 /* MessagesCollectionViewFlowLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessagesCollectionViewFlowLayout.swift; path = Sources/Layout/MessagesCollectionViewFlowLayout.swift; sourceTree = ""; }; - 9F0EF25AACE1F0836969E26AF7DCDADA /* AttachmentManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AttachmentManager.swift; path = Sources/Plugins/AttachmentManager/AttachmentManager.swift; sourceTree = ""; }; - A1180923074D1EB3D3211F7E6DCBE960 /* AttachmentManagerDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AttachmentManagerDelegate.swift; path = Sources/Plugins/AttachmentManager/Protocols/AttachmentManagerDelegate.swift; sourceTree = ""; }; - A19FBA2255F24DDFE9CE1CB64FAE11F0 /* InputPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputPlugin.swift; path = Sources/Protocols/InputPlugin.swift; sourceTree = ""; }; - A2D102E9F38F3C986CDC61F43BAEF88C /* VideoSDKRTC.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = VideoSDKRTC.xcframework; path = Frameworks/VideoSDKRTC.xcframework; sourceTree = ""; }; - A300E9BC9BE272A614E5A9DCA872012A /* IQInvocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQInvocation.swift; path = IQKeyboardManagerSwift/IQToolbar/IQInvocation.swift; sourceTree = ""; }; + 9E601E0FFCEFF4A62449568BDE86E338 /* LinkPreviewView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LinkPreviewView.swift; path = Sources/Views/LinkPreviewView.swift; sourceTree = ""; }; + A041357442807CBA4B87C4D5CCAAD3C3 /* AvatarPosition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AvatarPosition.swift; path = Sources/Models/AvatarPosition.swift; sourceTree = ""; }; + A36AE9AA6C36DBFC0519F1F0B56A347D /* InputBarAccessoryView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "InputBarAccessoryView-umbrella.h"; sourceTree = ""; }; + A394C7167434947CBBA9BD7DDDA45849 /* MessagesDisplayDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessagesDisplayDelegate.swift; path = Sources/Protocols/MessagesDisplayDelegate.swift; sourceTree = ""; }; A42DBD2F42D55606EEBA514009498B87 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; }; A4B2C78FEE2DB81A7F78107B3E4F67A3 /* Pods-VideoSDKRTC_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-VideoSDKRTC_Example-acknowledgements.markdown"; sourceTree = ""; }; - A744FF34F25E27D31B47563B12DBD60B /* InputBarAccessoryViewDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputBarAccessoryViewDelegate.swift; path = Sources/Protocols/InputBarAccessoryViewDelegate.swift; sourceTree = ""; }; + A7334926BC880D499A847F8911920860 /* MessageKind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageKind.swift; path = Sources/Models/MessageKind.swift; sourceTree = ""; }; A8E950A16D00F649C54FFB30F81D7842 /* IQKeyboardManagerSwift */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQKeyboardManagerSwift; path = IQKeyboardManagerSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - AA60B1608DE716CFFE36DC34F69F08F5 /* MessageContainerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageContainerView.swift; path = Sources/Views/MessageContainerView.swift; sourceTree = ""; }; - AAEBEB5FA723D7AD10EF6E013748EF61 /* InputBarAccessoryView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "InputBarAccessoryView-Info.plist"; sourceTree = ""; }; - B02DA0064B7725AFDF7CF2630FA29421 /* InputBarAccessoryView+Availability.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "InputBarAccessoryView+Availability.swift"; path = "Sources/Supporting/InputBarAccessoryView+Availability.swift"; sourceTree = ""; }; - B14A5BD108F163CCE7B87F0446993E6C /* InputBarAccessoryView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = InputBarAccessoryView.modulemap; sourceTree = ""; }; - B28D6F939F90262A45B731F5E59D492F /* AutocompleteManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AutocompleteManager.swift; path = Sources/Plugins/AutocompleteManager/AutocompleteManager.swift; sourceTree = ""; }; - B7AE28680A21900B3984A33F990990A8 /* IQTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextView.swift; path = IQKeyboardManagerSwift/IQTextView/IQTextView.swift; sourceTree = ""; }; + A9998A629618689CDEC7B245829A56AE /* InsetLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InsetLabel.swift; path = Sources/Views/InsetLabel.swift; sourceTree = ""; }; + AA7A86434D30E41EA1FD64BC93D5A0BE /* MessagesCollectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessagesCollectionView.swift; path = Sources/Views/MessagesCollectionView.swift; sourceTree = ""; }; + AD65F1974397F3AF113EDEF3FB794F4F /* VideoSDKRTC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = VideoSDKRTC.release.xcconfig; sourceTree = ""; }; + AF898B34A2F563700A7DB12420ACA9AC /* VideoSDKRTC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = VideoSDKRTC.debug.xcconfig; sourceTree = ""; }; + AFA772B0C71E179DF820AD86B651B15D /* MessageStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageStyle.swift; path = Sources/Models/MessageStyle.swift; sourceTree = ""; }; + B489A767FFE382F8BE9D4D2A96E17F4E /* MessageKind+textMessageKind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "MessageKind+textMessageKind.swift"; path = "Sources/Extensions/MessageKind+textMessageKind.swift"; sourceTree = ""; }; + B4B09B671F8B9EC6292659CB51B9F64D /* InputPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputPlugin.swift; path = Sources/Protocols/InputPlugin.swift; sourceTree = ""; }; + B6029BC49787390EEE4F2679F946CC5C /* IQBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQBarButtonItem.swift; path = IQKeyboardManagerSwift/IQToolbar/IQBarButtonItem.swift; sourceTree = ""; }; + B634E1AE51A47EBD622CE2469AD1D560 /* MessageLabelDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageLabelDelegate.swift; path = Sources/Protocols/MessageLabelDelegate.swift; sourceTree = ""; }; + B7272F0C9CE6B2F42E73F40D600B97E2 /* NSConstraintLayoutSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NSConstraintLayoutSet.swift; path = Sources/Models/NSConstraintLayoutSet.swift; sourceTree = ""; }; + B753A1486429F7A3037359E69A99B807 /* CellSizeCalculator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CellSizeCalculator.swift; path = Sources/Layout/CellSizeCalculator.swift; sourceTree = ""; }; + B78C97307CD2C3FDE4DBC3CFDEE6851C /* IQKeyboardManagerSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-prefix.pch"; sourceTree = ""; }; B81513B0B3333500DFFB1B1B179FB571 /* InputBarAccessoryView */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = InputBarAccessoryView; path = InputBarAccessoryView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - BB1BB332788EF2B671ED1D8E7B45DF84 /* NSNotification+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSNotification+Extensions.swift"; path = "Sources/Extensions/NSNotification+Extensions.swift"; sourceTree = ""; }; - BB807739E7E39F8119E289D05D475EDD /* AttachmentsView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AttachmentsView.swift; path = Sources/Plugins/AttachmentManager/Views/AttachmentsView.swift; sourceTree = ""; }; - C18EFBC04B2C5BEA4611D3DB74996AFC /* AutocompleteManagerDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AutocompleteManagerDataSource.swift; path = Sources/Plugins/AutocompleteManager/Protocols/AutocompleteManagerDataSource.swift; sourceTree = ""; }; - C23E2698C77CB71AE9752E83B2F24E73 /* IQKeyboardManagerSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardManagerSwift-dummy.m"; sourceTree = ""; }; - C32E41333943AC45E39CA6339E319D38 /* MessageSizeCalculator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageSizeCalculator.swift; path = Sources/Layout/MessageSizeCalculator.swift; sourceTree = ""; }; - C6F4CEAE7BCEE54D2FFB62DDEDAD30D4 /* UIView+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Extensions.swift"; path = "Sources/Extensions/UIView+Extensions.swift"; sourceTree = ""; }; - C766BDE53DE2BF795AE2081F4FBD3DB0 /* MessageLabelDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageLabelDelegate.swift; path = Sources/Protocols/MessageLabelDelegate.swift; sourceTree = ""; }; - C8CDAC552C68A3DBB1F5CEA8ACB22619 /* IQKeyboardManagerSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardManagerSwift-Info.plist"; sourceTree = ""; }; + B886343AC6ED04CE8CECACCD44E759E3 /* TextMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextMessageCell.swift; path = Sources/Views/Cells/TextMessageCell.swift; sourceTree = ""; }; + B9B4737FDFDB28D93E754885AB316288 /* AutocompleteManagerDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AutocompleteManagerDelegate.swift; path = Sources/Plugins/AutocompleteManager/Protocols/AutocompleteManagerDelegate.swift; sourceTree = ""; }; + BD072F0D73582F97E1FEA0333E7B6A19 /* InputBarAccessoryView+Availability.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "InputBarAccessoryView+Availability.swift"; path = "Sources/Supporting/InputBarAccessoryView+Availability.swift"; sourceTree = ""; }; + BF6EBD9E10D3CDFA395E791B875069FA /* HorizontalEdgeInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HorizontalEdgeInsets.swift; path = Sources/Models/HorizontalEdgeInsets.swift; sourceTree = ""; }; + C5D0D7036F12DA54D5375690352DBA47 /* AutocompleteCompletion.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AutocompleteCompletion.swift; path = Sources/Plugins/AutocompleteManager/Models/AutocompleteCompletion.swift; sourceTree = ""; }; + C7D8214FFA16DA8C424400017E005AB8 /* MessageContentCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageContentCell.swift; path = Sources/Views/Cells/MessageContentCell.swift; sourceTree = ""; }; + CB5DCABF4CA1445EAC18D9D21D494407 /* Assets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Sources/Assets.xcassets; sourceTree = ""; }; CC59B637BCC822F3D9171E8E6A452375 /* Pods-VideoSDKRTC_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-VideoSDKRTC_Example-umbrella.h"; sourceTree = ""; }; + CC5AE75D515B2E39FA097ACCEB31722F /* ImageAttachmentCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageAttachmentCell.swift; path = Sources/Plugins/AttachmentManager/Views/ImageAttachmentCell.swift; sourceTree = ""; }; CC93568568A170B5AE6659E16719CE5D /* Pods-VideoSDKRTC_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-VideoSDKRTC_Example-acknowledgements.plist"; sourceTree = ""; }; - CFF66B11CB774B30FEFF5E0CE0D02D00 /* ContactMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContactMessageCell.swift; path = Sources/Views/Cells/ContactMessageCell.swift; sourceTree = ""; }; - D27D01DE367D7E156AD5254F26BB8BAB /* PlayButtonView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PlayButtonView.swift; path = Sources/Views/PlayButtonView.swift; sourceTree = ""; }; - D374302B033F1B22F65F67C821313C4D /* MessageContentCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageContentCell.swift; path = Sources/Views/Cells/MessageContentCell.swift; sourceTree = ""; }; - D44EDAC2A269992670F0285B931D078E /* TypingIndicatorCellSizeCalculator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TypingIndicatorCellSizeCalculator.swift; path = Sources/Layout/TypingIndicatorCellSizeCalculator.swift; sourceTree = ""; }; - D6039DC76BA8B7BB8820B36076D2AA3F /* UIView+AutoLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+AutoLayout.swift"; path = "Sources/Extensions/UIView+AutoLayout.swift"; sourceTree = ""; }; - D634469259DDB5C2A66AA6B5EA522E3A /* IQKeyboardManagerConstantsInternal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManagerConstantsInternal.swift; path = IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstantsInternal.swift; sourceTree = ""; }; - D71F7566922630B4E28E23FA75AF3074 /* IQTitleBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTitleBarButtonItem.swift; path = IQKeyboardManagerSwift/IQToolbar/IQTitleBarButtonItem.swift; sourceTree = ""; }; - D84568DA3992923306D05647A91861D9 /* LabelAlignment.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LabelAlignment.swift; path = Sources/Models/LabelAlignment.swift; sourceTree = ""; }; - D8492367F90C12D852BAD11E7B8B2EDD /* Bundle+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bundle+Extensions.swift"; path = "Sources/Extensions/Bundle+Extensions.swift"; sourceTree = ""; }; - D8AD298B00A449626843CD485E8D8975 /* AutocompleteCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AutocompleteCell.swift; path = Sources/Plugins/AutocompleteManager/Views/AutocompleteCell.swift; sourceTree = ""; }; - DCFAD5FF0AE365ADEFC86482F454ACE4 /* MessageLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageLabel.swift; path = Sources/Views/MessageLabel.swift; sourceTree = ""; }; - DDB627E4696BDA1C73E082A81AFCB078 /* CellSizeCalculator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CellSizeCalculator.swift; path = Sources/Layout/CellSizeCalculator.swift; sourceTree = ""; }; - DF76332E2740E12548647FAFB52D34C2 /* IQKeyboardManagerConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManagerConstants.swift; path = IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstants.swift; sourceTree = ""; }; - E2B5AEB64403026A41D417AA6989D946 /* MessagesViewController+Menu.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "MessagesViewController+Menu.swift"; path = "Sources/Controllers/MessagesViewController+Menu.swift"; sourceTree = ""; }; - E373B24E528EC128B0A8251019B8D45C /* TypingBubble.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TypingBubble.swift; path = Sources/Views/TypingBubble.swift; sourceTree = ""; }; - E39C93F01B98556317C6E68FC8B942C3 /* IQKeyboardManager+Position.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Position.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Position.swift"; sourceTree = ""; }; + CE68A7EFCCABF911609B66F8D22C55A5 /* UIView+AutoLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+AutoLayout.swift"; path = "Sources/Extensions/UIView+AutoLayout.swift"; sourceTree = ""; }; + CEDEA9B65792F4D17CC5AB59660B790E /* Avatar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Avatar.swift; path = Sources/Models/Avatar.swift; sourceTree = ""; }; + D03FFB6EA53FB5027872977531188F21 /* IQTitleBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTitleBarButtonItem.swift; path = IQKeyboardManagerSwift/IQToolbar/IQTitleBarButtonItem.swift; sourceTree = ""; }; + D05656E6082B5E1307C102F0FC3F8FAC /* IQKeyboardManagerSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-umbrella.h"; sourceTree = ""; }; + D20D627604A280409D033445AA5C6476 /* AudioMessageSizeCalculator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AudioMessageSizeCalculator.swift; path = Sources/Layout/AudioMessageSizeCalculator.swift; sourceTree = ""; }; + D2A0924FD3C0057DC5A7C0E9F7292D95 /* MessagesViewController+Menu.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "MessagesViewController+Menu.swift"; path = "Sources/Controllers/MessagesViewController+Menu.swift"; sourceTree = ""; }; + D3620760EFB3C0C886A05DD8FD2E8B80 /* SeparatorLine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SeparatorLine.swift; path = Sources/Views/SeparatorLine.swift; sourceTree = ""; }; + D7DC167AF67701A8203568B72BA97828 /* MediaMessageSizeCalculator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MediaMessageSizeCalculator.swift; path = Sources/Layout/MediaMessageSizeCalculator.swift; sourceTree = ""; }; + D7EA77D283BA8805FB3B062FF49F849B /* AudioMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AudioMessageCell.swift; path = Sources/Views/Cells/AudioMessageCell.swift; sourceTree = ""; }; + DA6C4CDBB8BB93DB036DDA2CA5405310 /* LocationItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocationItem.swift; path = Sources/Protocols/LocationItem.swift; sourceTree = ""; }; + DB47F088736CE8402D9733C8510C5BDB /* TypingIndicatorCellSizeCalculator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TypingIndicatorCellSizeCalculator.swift; path = Sources/Layout/TypingIndicatorCellSizeCalculator.swift; sourceTree = ""; }; + DBE3876AB68E71DBA63085A1B6AFE90E /* UITextView+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextView+Extensions.swift"; path = "Sources/Extensions/UITextView+Extensions.swift"; sourceTree = ""; }; + DC9E26F6C35568754B865078A4FBE431 /* MessageSizeCalculator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageSizeCalculator.swift; path = Sources/Layout/MessageSizeCalculator.swift; sourceTree = ""; }; + DD3A8805E0359CC4E95B544094B23669 /* InputTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputTextView.swift; path = Sources/Views/InputTextView.swift; sourceTree = ""; }; + E0FB6ED8AF7A15686F1E1A6D19F48D01 /* IQKeyboardManager+OrientationNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+OrientationNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+OrientationNotification.swift"; sourceTree = ""; }; + E2ADEBC02A8D7714E56B36D9AE2F0347 /* IQInvocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQInvocation.swift; path = IQKeyboardManagerSwift/IQToolbar/IQInvocation.swift; sourceTree = ""; }; + E3C30560E291DE6579D41DFE93508A7C /* MessageCellDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageCellDelegate.swift; path = Sources/Protocols/MessageCellDelegate.swift; sourceTree = ""; }; + E3DF988A796152639CA2F5CD6F2EF1B8 /* AttachmentManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AttachmentManager.swift; path = Sources/Plugins/AttachmentManager/AttachmentManager.swift; sourceTree = ""; }; + E3F228B1C2F71778498A12ADAFB94C8A /* Mediasoup.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = Mediasoup.xcframework; path = Frameworks/Mediasoup.xcframework; sourceTree = ""; }; + E3F59B36D35BFC4A91F52E9D7799BA44 /* TextMessageSizeCalculator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextMessageSizeCalculator.swift; path = Sources/Layout/TextMessageSizeCalculator.swift; sourceTree = ""; }; + E41F02492A380EE040ABD4A4254C2D7C /* MessageReusableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageReusableView.swift; path = Sources/Views/HeadersFooters/MessageReusableView.swift; sourceTree = ""; }; + E5C6D72B03B7F87B0CDDABB5C8F2298B /* NSNotification+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSNotification+Extensions.swift"; path = "Sources/Extensions/NSNotification+Extensions.swift"; sourceTree = ""; }; E5E2AB3664D7AECF8C75C1CC0BA6BFE7 /* Pods-VideoSDKRTC_Example */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-VideoSDKRTC_Example"; path = Pods_VideoSDKRTC_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - E73D8BC8AED7BC8F30D6E53FB36E53FF /* MessageKitError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageKitError.swift; path = Sources/Models/MessageKitError.swift; sourceTree = ""; }; - E80A3F5B5D73560A7B17BF103EBD20AF /* MessagesViewController+Keyboard.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "MessagesViewController+Keyboard.swift"; path = "Sources/Controllers/MessagesViewController+Keyboard.swift"; sourceTree = ""; }; - E8A33A68E87639739F50F778AFB82AF9 /* MessagesDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessagesDataSource.swift; path = Sources/Protocols/MessagesDataSource.swift; sourceTree = ""; }; - E8AE8A7D15052C637B06AE107FB821E1 /* HorizontalEdgeInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HorizontalEdgeInsets.swift; path = Sources/Models/HorizontalEdgeInsets.swift; sourceTree = ""; }; - E8F9CCF8778A4D207B95C2FE5921299E /* MessagesCollectionViewLayoutAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessagesCollectionViewLayoutAttributes.swift; path = Sources/Layout/MessagesCollectionViewLayoutAttributes.swift; sourceTree = ""; }; - EF59E1908933AEC2D1B7882814D8C909 /* LocationMessageSnapshotOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocationMessageSnapshotOptions.swift; path = Sources/Models/LocationMessageSnapshotOptions.swift; sourceTree = ""; }; - F013512980EBF2B6DEC78AAF7AD157C9 /* InputBarAccessoryView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "InputBarAccessoryView-dummy.m"; sourceTree = ""; }; - F0B11998BEBFC7B10A9ABD41A88F28CB /* IQToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQToolbar.swift; path = IQKeyboardManagerSwift/IQToolbar/IQToolbar.swift; sourceTree = ""; }; - F0F569846BC50894C06ABE5B0E73125F /* MessageKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MessageKit-Info.plist"; sourceTree = ""; }; - F1F14E2E51DB55945DE300447FE0F929 /* LinkPreviewFonts.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LinkPreviewFonts.swift; path = Sources/Models/LinkPreviewFonts.swift; sourceTree = ""; }; - F29B945925FEE84DD950B6AC3EBFFDF2 /* TextMessageSizeCalculator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextMessageSizeCalculator.swift; path = Sources/Layout/TextMessageSizeCalculator.swift; sourceTree = ""; }; - F3E106993C8B7FACE4867CD770278165 /* ImageAttachmentCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageAttachmentCell.swift; path = Sources/Plugins/AttachmentManager/Views/ImageAttachmentCell.swift; sourceTree = ""; }; - F44681FBF9138D860A6286EA4E96DFB2 /* LocationItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocationItem.swift; path = Sources/Protocols/LocationItem.swift; sourceTree = ""; }; - F4B10501654AAAF6012BF68E299D70CD /* UITextView+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextView+Extensions.swift"; path = "Sources/Extensions/UITextView+Extensions.swift"; sourceTree = ""; }; - F4BC7EBD0EE1A7F797A4C30B45B4CAAB /* Mediasoup.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = Mediasoup.xcframework; path = Frameworks/Mediasoup.xcframework; sourceTree = ""; }; - F80BF31C8AA0F8E33E7DCDB2E2C5E7CC /* VideoSDKRTC-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "VideoSDKRTC-xcframeworks.sh"; sourceTree = ""; }; - F9C308F9B6A8F6CB5D45B7D172A7F479 /* LinkItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LinkItem.swift; path = Sources/Protocols/LinkItem.swift; sourceTree = ""; }; - F9DA9DA1D52870812AACEB8D6F3A2BAC /* IQKeyboardManager+UITextFieldViewNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+UITextFieldViewNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+UITextFieldViewNotification.swift"; sourceTree = ""; }; - FBF15B05818ADD4B7056F6194FCC1DBF /* MediaItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MediaItem.swift; path = Sources/Protocols/MediaItem.swift; sourceTree = ""; }; - FC8F20C186506D2A87F49AC6AE08E38D /* IQKeyboardManager+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Debug.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Debug.swift"; sourceTree = ""; }; - FCD403C4E57F1C702624CB1A8BDB57EC /* IQUIScrollView+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIScrollView+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIScrollView+Additions.swift"; sourceTree = ""; }; - FD6BD20D0008777451419202C40D8A03 /* MessageKind+textMessageKind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "MessageKind+textMessageKind.swift"; path = "Sources/Extensions/MessageKind+textMessageKind.swift"; sourceTree = ""; }; - FE5FB514D360B22BAF1122887C3D5AB2 /* IQUITextFieldView+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUITextFieldView+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUITextFieldView+Additions.swift"; sourceTree = ""; }; - FE8226C7EC9E12BAA94019FF012E0414 /* InputTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputTextView.swift; path = Sources/Views/InputTextView.swift; sourceTree = ""; }; - FF5B94BC432C470CB97D2E2075AF09AA /* IQKeyboardReturnKeyHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardReturnKeyHandler.swift; path = IQKeyboardManagerSwift/IQKeyboardReturnKeyHandler.swift; sourceTree = ""; }; + E8D94FD77BC8D10A17B60186481F9543 /* MessageKit+Availability.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "MessageKit+Availability.swift"; path = "Sources/Supporting/MessageKit+Availability.swift"; sourceTree = ""; }; + E989DF2954D6E4F10D0B324F39C8D10A /* AutocompleteCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AutocompleteCell.swift; path = Sources/Plugins/AutocompleteManager/Views/AutocompleteCell.swift; sourceTree = ""; }; + EAF91ECBF9E93422F0D8C886585E916C /* MessageKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MessageKit-prefix.pch"; sourceTree = ""; }; + EC87C342ABE642C28DF0BAFDFF88349E /* WebRTC.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = WebRTC.xcframework; path = Frameworks/WebRTC.xcframework; sourceTree = ""; }; + F0C9AA591345CA92494BF8F3259B3494 /* Bundle+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bundle+Extensions.swift"; path = "Sources/Extensions/Bundle+Extensions.swift"; sourceTree = ""; }; + F274816424CB34169FD10B5900AAF98D /* LabelAlignment.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LabelAlignment.swift; path = Sources/Models/LabelAlignment.swift; sourceTree = ""; }; + F464784540CDFD10AB15EA23B399922E /* TypingBubble.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TypingBubble.swift; path = Sources/Views/TypingBubble.swift; sourceTree = ""; }; + F8943EF47C933AF495C3A8AFB55F69A0 /* IQKeyboardManager+Position.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Position.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Position.swift"; sourceTree = ""; }; + F8CF3CF1DC6DEF6608D93A0B70AF2D12 /* VideosdkWebSocket.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = VideosdkWebSocket.xcframework; path = Frameworks/VideosdkWebSocket.xcframework; sourceTree = ""; }; + FA9C900DD96A2CDAC7FFEB92D7B7904B /* InputBarAccessoryView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = InputBarAccessoryView.release.xcconfig; sourceTree = ""; }; + FB01ED47A59538E10F3A2B49DCA4470E /* AttachmentsView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AttachmentsView.swift; path = Sources/Plugins/AttachmentManager/Views/AttachmentsView.swift; sourceTree = ""; }; + FBE345E1D66C440C8774D6400571C396 /* UIEdgeInsets+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIEdgeInsets+Extensions.swift"; path = "Sources/Extensions/UIEdgeInsets+Extensions.swift"; sourceTree = ""; }; + FBF8E02A15A0ED54F2EF3584C8DFAFFD /* AutocompleteManagerDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AutocompleteManagerDataSource.swift; path = Sources/Plugins/AutocompleteManager/Protocols/AutocompleteManagerDataSource.swift; sourceTree = ""; }; + FF5A30ED9692EA16440908EC9B022A06 /* LocationMessageSnapshotOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocationMessageSnapshotOptions.swift; path = Sources/Models/LocationMessageSnapshotOptions.swift; sourceTree = ""; }; + FF9A92639F6C700CC2700B26D2ABDB43 /* VideoSDKRTC.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = VideoSDKRTC.xcframework; path = Frameworks/VideoSDKRTC.xcframework; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -390,14 +394,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A3B77577C54970218F8F8340516D00F2 /* Frameworks */ = { + 65BFC75CE1541E38446FFDA8AFF0DBEC /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - B1B6A2491AC437909DABE20C71BECDBC /* CoreGraphics.framework in Frameworks */, - 60C6606FF8176EE5A38870CFD9F649C8 /* Foundation.framework in Frameworks */, - B6EC6D40823E66D5B389ACEAC9FD7AAE /* QuartzCore.framework in Frameworks */, - 2E5138271A6C79BDA3C0835F2596219B /* UIKit.framework in Frameworks */, + 0874E6176184E3A1C3E8AB158AE5E98B /* CoreGraphics.framework in Frameworks */, + 647D16586EBBE25158E3FD684541A1DD /* Foundation.framework in Frameworks */, + A8C0CBBC63C39A8C10083CBCA172F7CF /* QuartzCore.framework in Frameworks */, + 97EA46DA072EC4FD4D831606095B92C1 /* UIKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -421,157 +425,89 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 172F7749F24BA607DA3974AD27E71525 /* Pods */ = { + 18A8B7F1A9A298909708437FB81D512F /* Support Files */ = { isa = PBXGroup; children = ( - D6897BE13228D592F9222F39366F1A96 /* InputBarAccessoryView */, - FC6DD8F052D5D7AA5D357EBBBAF68799 /* IQKeyboardManagerSwift */, - 514FDA3A56523A8D7E8BA6CBAB0C01BC /* MessageKit */, - 29D932CAA01B2B5C96E863F78ADCFB4C /* VideoSDKRTC */, + 6F25A0115FB9BA9B9AF88359BB253457 /* VideoSDKRTC-xcframeworks.sh */, + AF898B34A2F563700A7DB12420ACA9AC /* VideoSDKRTC.debug.xcconfig */, + AD65F1974397F3AF113EDEF3FB794F4F /* VideoSDKRTC.release.xcconfig */, ); - name = Pods; + name = "Support Files"; + path = "../Target Support Files/VideoSDKRTC"; sourceTree = ""; }; - 29D932CAA01B2B5C96E863F78ADCFB4C /* VideoSDKRTC */ = { + 4BD2E924D45C2CA4C6A4D27C3D20F31C /* VideoSDKRTC */ = { isa = PBXGroup; children = ( - 94553C82427D02AF8B623904484B8751 /* Frameworks */, - 62BADE771F273867B1250A3FAA264D4D /* Support Files */, + C6F9FEAC4028AF1EFC8D077C145412CA /* Frameworks */, + 18A8B7F1A9A298909708437FB81D512F /* Support Files */, ); name = VideoSDKRTC; path = VideoSDKRTC; sourceTree = ""; }; - 514FDA3A56523A8D7E8BA6CBAB0C01BC /* MessageKit */ = { + 6034E7C046F397214BD52AEB2CE7C334 /* Core */ = { isa = PBXGroup; children = ( - 2D9F7298504B3F702309D38E088CE753 /* AccessoryPosition.swift */, - 8D855577CE10FA559EAC9C0CA7644025 /* AudioItem.swift */, - 9E1EC2750BAFD6207C9CFC1C2F69CF57 /* AudioMessageCell.swift */, - 0BFD5F3F584456A98134CF0107DD2849 /* AudioMessageSizeCalculator.swift */, - 9726680743BCFD5506B1D173FA02E218 /* Avatar.swift */, - 581687C1EFD47FE7D458C30466418DD4 /* AvatarPosition.swift */, - 843BBFA99A16A0713D8955ECF99D42F9 /* AvatarView.swift */, - 5D2581D7B51869B8F4B91B4755439980 /* BubbleCircle.swift */, - D8492367F90C12D852BAD11E7B8B2EDD /* Bundle+Extensions.swift */, - DDB627E4696BDA1C73E082A81AFCB078 /* CellSizeCalculator.swift */, - 613D4AB65FAA86308CEBE5EA57D7088E /* CGRect+Extensions.swift */, - 6ED3BC8A57E8C24D5AE16ECBD8BD3330 /* ContactItem.swift */, - CFF66B11CB774B30FEFF5E0CE0D02D00 /* ContactMessageCell.swift */, - 4126BDBD797B926CD818D34911F17BF6 /* ContactMessageSizeCalculator.swift */, - 2E29701EA5B02160D5D669AB4ED02F62 /* DetectorType.swift */, - E8AE8A7D15052C637B06AE107FB821E1 /* HorizontalEdgeInsets.swift */, - 26932BC43CB553D60D0A0AB9A37A9142 /* InsetLabel.swift */, - D84568DA3992923306D05647A91861D9 /* LabelAlignment.swift */, - F9C308F9B6A8F6CB5D45B7D172A7F479 /* LinkItem.swift */, - F1F14E2E51DB55945DE300447FE0F929 /* LinkPreviewFonts.swift */, - 621699B088D1D752CB7C38C901C5D0BC /* LinkPreviewMessageCell.swift */, - 2FAECEF1ACA64FC14710ACA7B6727477 /* LinkPreviewMessageSizeCalculator.swift */, - 43BDE030514423ACBDAB8B2D62AA1EA3 /* LinkPreviewView.swift */, - F44681FBF9138D860A6286EA4E96DFB2 /* LocationItem.swift */, - 52E5762CC0004B9B05A92B4FAF68E876 /* LocationMessageCell.swift */, - 1F0279327A8BB52D26844FF905494914 /* LocationMessageSizeCalculator.swift */, - EF59E1908933AEC2D1B7882814D8C909 /* LocationMessageSnapshotOptions.swift */, - FBF15B05818ADD4B7056F6194FCC1DBF /* MediaItem.swift */, - 68C1EFE059E296B631EE8F05A940FFA4 /* MediaMessageCell.swift */, - 4A60459B82D95F4AF1E9DBF5F3702439 /* MediaMessageSizeCalculator.swift */, - 5C18EDAE4B9D5052CFDCAA4F743F5DBC /* MessageCellDelegate.swift */, - 561A655D634FEC856482D48AA09588E1 /* MessageCollectionViewCell.swift */, - AA60B1608DE716CFFE36DC34F69F08F5 /* MessageContainerView.swift */, - D374302B033F1B22F65F67C821313C4D /* MessageContentCell.swift */, - 8574B3FEDDE96E311DF515968892702E /* MessageInputBar.swift */, - 1E62454D8F6E5CCE50767A38E535F141 /* MessageKind.swift */, - FD6BD20D0008777451419202C40D8A03 /* MessageKind+textMessageKind.swift */, - 13DBA5ECFD1E6D949594880631F7CBF3 /* MessageKit+Availability.swift */, - 2382F9C71E65FCC1BDED145BCC9BA8BD /* MessageKitDateFormatter.swift */, - E73D8BC8AED7BC8F30D6E53FB36E53FF /* MessageKitError.swift */, - DCFAD5FF0AE365ADEFC86482F454ACE4 /* MessageLabel.swift */, - C766BDE53DE2BF795AE2081F4FBD3DB0 /* MessageLabelDelegate.swift */, - 1A2DB7E7C46F506272BFCB736BEB57EE /* MessageReusableView.swift */, - 9308B5CC7495A5A2C44A3717F60BAC16 /* MessagesCollectionView.swift */, - 9E9244344FCD85D74AA74678F996C2B7 /* MessagesCollectionViewFlowLayout.swift */, - E8F9CCF8778A4D207B95C2FE5921299E /* MessagesCollectionViewLayoutAttributes.swift */, - E8A33A68E87639739F50F778AFB82AF9 /* MessagesDataSource.swift */, - 9D091E84F5D5CC1B2396856D4BB5C71F /* MessagesDisplayDelegate.swift */, - C32E41333943AC45E39CA6339E319D38 /* MessageSizeCalculator.swift */, - 84B6D9139978C0C3141EC189166A899B /* MessagesLayoutDelegate.swift */, - 12EEE9B767C72E8835F1153224589F12 /* MessageStyle.swift */, - 931549125B4A411B3260A4D763EBBC9C /* MessagesViewController.swift */, - E80A3F5B5D73560A7B17BF103EBD20AF /* MessagesViewController+Keyboard.swift */, - E2B5AEB64403026A41D417AA6989D946 /* MessagesViewController+Menu.swift */, - 2D829E190F60E47DCB39A24FD8A26C3E /* MessageType.swift */, - 67ACF7970FA5F6F5D0C6C2A7DAB09B25 /* NSAttributedString+Extensions.swift */, - 26EF979E2DBB77A6448D892CDD2DA818 /* NSConstraintLayoutSet.swift */, - D27D01DE367D7E156AD5254F26BB8BAB /* PlayButtonView.swift */, - 2C774AA435B3EEB965DEE88423274B8C /* Sender.swift */, - 04E3CB607FC2ADFFDED74D4E2B6224D4 /* SenderType.swift */, - 1F83912BA9E66410C314CEA75D90A27D /* TextMessageCell.swift */, - F29B945925FEE84DD950B6AC3EBFFDF2 /* TextMessageSizeCalculator.swift */, - E373B24E528EC128B0A8251019B8D45C /* TypingBubble.swift */, - 6BA1A6EF42F81C848D47FCC55F741C78 /* TypingIndicator.swift */, - 9AA759C1C4348417D3F18994A7D38805 /* TypingIndicatorCell.swift */, - D44EDAC2A269992670F0285B931D078E /* TypingIndicatorCellSizeCalculator.swift */, - 8EB8AE5192E2E6376D308657D0AE53E4 /* UIColor+Extensions.swift */, - 42A34D1E3B9BDDC95FE29178B88A361D /* UIEdgeInsets+Extensions.swift */, - 145186FDEB1824EF25FA05F656EECBD2 /* UIImage+Extensions.swift */, - C6F4CEAE7BCEE54D2FFB62DDEDAD30D4 /* UIView+Extensions.swift */, - C9887EB90F3731D696A34751B92F200C /* Resources */, - E9097D0EBC2E266F86231AEDD38A6782 /* Support Files */, + 2AEFE766F01AA66FAA1C2298E08D2F24 /* AttachmentCell.swift */, + E3DF988A796152639CA2F5CD6F2EF1B8 /* AttachmentManager.swift */, + 86F6ECA1488B60F4B23A29DDE05C7F52 /* AttachmentManagerDataSource.swift */, + 2034F83B5D111673C1CD8A0A91BD52D3 /* AttachmentManagerDelegate.swift */, + FB01ED47A59538E10F3A2B49DCA4470E /* AttachmentsView.swift */, + E989DF2954D6E4F10D0B324F39C8D10A /* AutocompleteCell.swift */, + C5D0D7036F12DA54D5375690352DBA47 /* AutocompleteCompletion.swift */, + 9A406831EBE9EF7A35E401EC8FD08F81 /* AutocompleteManager.swift */, + FBF8E02A15A0ED54F2EF3584C8DFAFFD /* AutocompleteManagerDataSource.swift */, + B9B4737FDFDB28D93E754885AB316288 /* AutocompleteManagerDelegate.swift */, + 929D4C87F10AABA95DEB0F8BEA784E4C /* AutocompleteSession.swift */, + 2E0223E3EE6134A29B79F4EEBF2BED5A /* AutocompleteTableView.swift */, + 2973CBF3AF4693CE305163784D300B43 /* HorizontalEdgePadding.swift */, + CC5AE75D515B2E39FA097ACCEB31722F /* ImageAttachmentCell.swift */, + 764038EAAB0193D2CB6F5739C5CC2215 /* InputBarAccessoryView.swift */, + BD072F0D73582F97E1FEA0333E7B6A19 /* InputBarAccessoryView+Availability.swift */, + 79DCDCEEAF977077EFE4FA6B38CBEE04 /* InputBarAccessoryViewDelegate.swift */, + 7AE7A40568D041FE92D9CAD0A2E29BE2 /* InputBarButtonItem.swift */, + 551FA7C0DBB7448D878A3C762613EC2B /* InputBarSendButton.swift */, + 79140A4B7F71064DBCFBBF67BF895A62 /* InputBarViewController.swift */, + 2B6F5689A58EA51A26E63A7AE770CA3F /* InputItem.swift */, + B4B09B671F8B9EC6292659CB51B9F64D /* InputPlugin.swift */, + 531F5C194C14C630C0326589B2A8F647 /* InputStackView.swift */, + DD3A8805E0359CC4E95B544094B23669 /* InputTextView.swift */, + 1DBCD29F4C6C94FF82FEDC7760756546 /* KeyboardEvent.swift */, + 4FE7801CE7E06398DDA59C566BA0AFDF /* KeyboardManager.swift */, + 6929EF815BB6FAAB0906A1049EDFDE72 /* KeyboardNotification.swift */, + 480595B7EB4963C3CFCD7BBCDCFBC73D /* NSConstraintLayoutSet.swift */, + 0E9E1C25BC27113F020D404B30533B7C /* NSMutableAttributedString+Extensions.swift */, + E5C6D72B03B7F87B0CDDABB5C8F2298B /* NSNotification+Extensions.swift */, + D3620760EFB3C0C886A05DD8FD2E8B80 /* SeparatorLine.swift */, + 67B60E1DC78386AB93392F129437C49E /* String+Extensions.swift */, + DBE3876AB68E71DBA63085A1B6AFE90E /* UITextView+Extensions.swift */, + CE68A7EFCCABF911609B66F8D22C55A5 /* UIView+AutoLayout.swift */, ); - name = MessageKit; - path = MessageKit; + name = Core; sourceTree = ""; }; - 5478EF2B80F8752A5BEDC1335D0315DF /* Core */ = { + 64FBF01E31D89F8334F9F09B602738C1 /* Support Files */ = { isa = PBXGroup; children = ( - 73B2694A2922CE96347926ABF84DA99F /* AttachmentCell.swift */, - 9F0EF25AACE1F0836969E26AF7DCDADA /* AttachmentManager.swift */, - 44AA105ECE691540D5BBB7E0598BBDCB /* AttachmentManagerDataSource.swift */, - A1180923074D1EB3D3211F7E6DCBE960 /* AttachmentManagerDelegate.swift */, - BB807739E7E39F8119E289D05D475EDD /* AttachmentsView.swift */, - D8AD298B00A449626843CD485E8D8975 /* AutocompleteCell.swift */, - 962DAEEE1A15E45DD742752FB353D181 /* AutocompleteCompletion.swift */, - B28D6F939F90262A45B731F5E59D492F /* AutocompleteManager.swift */, - C18EFBC04B2C5BEA4611D3DB74996AFC /* AutocompleteManagerDataSource.swift */, - 370D8DCAD9A9361984B164BD9454DD85 /* AutocompleteManagerDelegate.swift */, - 68D65FDC880EDAE677C234C5255314B4 /* AutocompleteSession.swift */, - 0731D0A7B22B12F08A0ED0C00D7E7B47 /* AutocompleteTableView.swift */, - 122B8C0C2E0C8DF09E8215FA8BC5FDD0 /* HorizontalEdgePadding.swift */, - F3E106993C8B7FACE4867CD770278165 /* ImageAttachmentCell.swift */, - 555379D4AADA4B0DAAF0BCFE0FEDD4FA /* InputBarAccessoryView.swift */, - B02DA0064B7725AFDF7CF2630FA29421 /* InputBarAccessoryView+Availability.swift */, - A744FF34F25E27D31B47563B12DBD60B /* InputBarAccessoryViewDelegate.swift */, - 72CABCDD1066AFCE9BDFDEF72C4419C3 /* InputBarButtonItem.swift */, - 2F0FD01EB072CBC75EEC46FD719DF1C8 /* InputBarSendButton.swift */, - 5105D5694FD637BB68783275C090124C /* InputBarViewController.swift */, - 1326A1A9107E3A2FEB83C130C50A53E8 /* InputItem.swift */, - A19FBA2255F24DDFE9CE1CB64FAE11F0 /* InputPlugin.swift */, - 28D472548F109A22B4ADED3017C94188 /* InputStackView.swift */, - FE8226C7EC9E12BAA94019FF012E0414 /* InputTextView.swift */, - 17E42AF822E47943E848C741A2796F2F /* KeyboardEvent.swift */, - 50D38204C265899C877E5AA50E43ED4D /* KeyboardManager.swift */, - 668A471900E772D1C2D2465ECA79D73E /* KeyboardNotification.swift */, - 58AD362F1E70A7567C20E4685CF60DA1 /* NSConstraintLayoutSet.swift */, - 0A775354C587F44498EB778D657A4C77 /* NSMutableAttributedString+Extensions.swift */, - BB1BB332788EF2B671ED1D8E7B45DF84 /* NSNotification+Extensions.swift */, - 87D9737B91890A6BCFBDC7D89C5A7A16 /* SeparatorLine.swift */, - 0C9AA15810F023BAF68D9D947A841275 /* String+Extensions.swift */, - F4B10501654AAAF6012BF68E299D70CD /* UITextView+Extensions.swift */, - D6039DC76BA8B7BB8820B36076D2AA3F /* UIView+AutoLayout.swift */, + 83C4049B181843CE3DBD41583DFB5855 /* IQKeyboardManagerSwift.modulemap */, + 769C02BC00ACF85DB15132D9DA6CC94C /* IQKeyboardManagerSwift-dummy.m */, + 2443228DF549456C9F5B57D3483A5286 /* IQKeyboardManagerSwift-Info.plist */, + B78C97307CD2C3FDE4DBC3CFDEE6851C /* IQKeyboardManagerSwift-prefix.pch */, + D05656E6082B5E1307C102F0FC3F8FAC /* IQKeyboardManagerSwift-umbrella.h */, + 153C61527061AB00AF5E1674155F4D77 /* IQKeyboardManagerSwift.debug.xcconfig */, + 3992BE51CDD2C19352D712D47658C746 /* IQKeyboardManagerSwift.release.xcconfig */, ); - name = Core; + name = "Support Files"; + path = "../Target Support Files/IQKeyboardManagerSwift"; sourceTree = ""; }; - 62BADE771F273867B1250A3FAA264D4D /* Support Files */ = { + 6E8E78676BC28F5277B1040B42AEAFEB /* Resources */ = { isa = PBXGroup; children = ( - F80BF31C8AA0F8E33E7DCDB2E2C5E7CC /* VideoSDKRTC-xcframeworks.sh */, - 83A62EB8B8EC95F57DFF4736F1897F86 /* VideoSDKRTC.debug.xcconfig */, - 7DAB0B126CE5FFD3D213D88074580567 /* VideoSDKRTC.release.xcconfig */, + CB5DCABF4CA1445EAC18D9D21D494407 /* Assets.xcassets */, ); - name = "Support Files"; - path = "../Target Support Files/VideoSDKRTC"; + name = Resources; sourceTree = ""; }; 79DEF87C7943F7979AB442EF5515A4F5 /* Targets Support Files */ = { @@ -582,32 +518,143 @@ name = "Targets Support Files"; sourceTree = ""; }; - 94553C82427D02AF8B623904484B8751 /* Frameworks */ = { + 844AB47BD83607D2898FFCAF763A83E3 /* Resources */ = { isa = PBXGroup; children = ( - F4BC7EBD0EE1A7F797A4C30B45B4CAAB /* Mediasoup.xcframework */, - A2D102E9F38F3C986CDC61F43BAEF88C /* VideoSDKRTC.xcframework */, - 38EB67233996CB3D7C3EAFF8407E72AB /* VideosdkWebSocket.xcframework */, - 2168F621E16087DE961D8CB1F4041FD1 /* WebRTC.xcframework */, + 114F69E7DD00E39F903F86CC6EA841C6 /* PrivacyInfo.xcprivacy */, ); - name = Frameworks; + name = Resources; sourceTree = ""; }; - A9D0EC41D5DDD98761F1ED2C1EEEA77A /* Support Files */ = { + 945B9D0203F44E6B6278025D5A07256B /* Support Files */ = { isa = PBXGroup; children = ( - B14A5BD108F163CCE7B87F0446993E6C /* InputBarAccessoryView.modulemap */, - F013512980EBF2B6DEC78AAF7AD157C9 /* InputBarAccessoryView-dummy.m */, - AAEBEB5FA723D7AD10EF6E013748EF61 /* InputBarAccessoryView-Info.plist */, - 6E02A673536A7CF95DCB543476ACCE64 /* InputBarAccessoryView-prefix.pch */, - 956598A2691226B853373A53B1E1CBBF /* InputBarAccessoryView-umbrella.h */, - 77F0A805C94EF7E0D49DD1AD08AA46AA /* InputBarAccessoryView.debug.xcconfig */, - 623137538576A2E8BA39D3E601C695E0 /* InputBarAccessoryView.release.xcconfig */, + 4E319E80E0104236B69BD0BDE4076F30 /* InputBarAccessoryView.modulemap */, + 054BB95F1C6127DEA05615B615975440 /* InputBarAccessoryView-dummy.m */, + 14CFDFA9A75FC20E8F8A1F622C2447DA /* InputBarAccessoryView-Info.plist */, + 94F397F0FBF3E4B69E83A180F209E771 /* InputBarAccessoryView-prefix.pch */, + A36AE9AA6C36DBFC0519F1F0B56A347D /* InputBarAccessoryView-umbrella.h */, + 23348B7921D88C28643B9F09E793B99C /* InputBarAccessoryView.debug.xcconfig */, + FA9C900DD96A2CDAC7FFEB92D7B7904B /* InputBarAccessoryView.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/InputBarAccessoryView"; sourceTree = ""; }; + 94BEEC7FFDE79ECCC9404F5DD2C3B6EE /* MessageKit */ = { + isa = PBXGroup; + children = ( + 0211F583FAC624D77AD1F162EBB7C78E /* AccessoryPosition.swift */, + 99281D07C92783F9A434680F2EA6439E /* AudioItem.swift */, + D7EA77D283BA8805FB3B062FF49F849B /* AudioMessageCell.swift */, + D20D627604A280409D033445AA5C6476 /* AudioMessageSizeCalculator.swift */, + CEDEA9B65792F4D17CC5AB59660B790E /* Avatar.swift */, + A041357442807CBA4B87C4D5CCAAD3C3 /* AvatarPosition.swift */, + 2B80A85408784B03701AA95E06C03F93 /* AvatarView.swift */, + 16E853DBAE36CEC5241CB271316F2D6A /* BubbleCircle.swift */, + F0C9AA591345CA92494BF8F3259B3494 /* Bundle+Extensions.swift */, + B753A1486429F7A3037359E69A99B807 /* CellSizeCalculator.swift */, + 4B99D470382C5C9CEDBA04256CA7C1CD /* CGRect+Extensions.swift */, + 68B71A1231B65F2941ECDB67BC911737 /* ContactItem.swift */, + 0A5B724D2835C61082AB45F2A595D158 /* ContactMessageCell.swift */, + 83D1C3F2CE16EDB56426810CA01D159C /* ContactMessageSizeCalculator.swift */, + 17A63CC61336A02B03DCD6F1977702A7 /* DetectorType.swift */, + BF6EBD9E10D3CDFA395E791B875069FA /* HorizontalEdgeInsets.swift */, + A9998A629618689CDEC7B245829A56AE /* InsetLabel.swift */, + F274816424CB34169FD10B5900AAF98D /* LabelAlignment.swift */, + 288E14CFD5BE2494A4D330FD85C7CDE4 /* LinkItem.swift */, + 18262D257610F2B477F25CA108DBCE47 /* LinkPreviewFonts.swift */, + 1A311DCD364BBCBEEF4F5D5E29449C62 /* LinkPreviewMessageCell.swift */, + 9138EC4AC165D65DE421918AC9B5C1F2 /* LinkPreviewMessageSizeCalculator.swift */, + 9E601E0FFCEFF4A62449568BDE86E338 /* LinkPreviewView.swift */, + DA6C4CDBB8BB93DB036DDA2CA5405310 /* LocationItem.swift */, + 72C96168350F92945B513B3B5DEC81E3 /* LocationMessageCell.swift */, + 1F3E9262D11EB79AC273DD406006C288 /* LocationMessageSizeCalculator.swift */, + FF5A30ED9692EA16440908EC9B022A06 /* LocationMessageSnapshotOptions.swift */, + 28D35D8CE56497B77937E4AB44B0B38F /* MediaItem.swift */, + 3AB25B52D9A74D7AA9433D31560F30B6 /* MediaMessageCell.swift */, + D7DC167AF67701A8203568B72BA97828 /* MediaMessageSizeCalculator.swift */, + E3C30560E291DE6579D41DFE93508A7C /* MessageCellDelegate.swift */, + 0595FD1D91FDB06DDC97C12E417FD7D3 /* MessageCollectionViewCell.swift */, + 6D37A31757D3D8EA64D521F136FCB1CD /* MessageContainerView.swift */, + C7D8214FFA16DA8C424400017E005AB8 /* MessageContentCell.swift */, + 6CBF029A8CA6761F88581D7049C1048E /* MessageInputBar.swift */, + A7334926BC880D499A847F8911920860 /* MessageKind.swift */, + B489A767FFE382F8BE9D4D2A96E17F4E /* MessageKind+textMessageKind.swift */, + E8D94FD77BC8D10A17B60186481F9543 /* MessageKit+Availability.swift */, + 1184696D328CD7F24E4D0156427EC4F8 /* MessageKitDateFormatter.swift */, + 9B320B773D68AA37F217606E992EACDB /* MessageKitError.swift */, + 1CEE88E9175A292CDF95E95D7A291F08 /* MessageLabel.swift */, + B634E1AE51A47EBD622CE2469AD1D560 /* MessageLabelDelegate.swift */, + E41F02492A380EE040ABD4A4254C2D7C /* MessageReusableView.swift */, + AA7A86434D30E41EA1FD64BC93D5A0BE /* MessagesCollectionView.swift */, + 917EF29634B0D0A0F85557943728436A /* MessagesCollectionViewFlowLayout.swift */, + 7F04AE3B61B00D98D9504B22523759FB /* MessagesCollectionViewLayoutAttributes.swift */, + 30D40E6334EBE61C03CD871D7C067731 /* MessagesDataSource.swift */, + A394C7167434947CBBA9BD7DDDA45849 /* MessagesDisplayDelegate.swift */, + DC9E26F6C35568754B865078A4FBE431 /* MessageSizeCalculator.swift */, + 9D22BAF60CE3CFDCA3755C84ADBF4DD3 /* MessagesLayoutDelegate.swift */, + AFA772B0C71E179DF820AD86B651B15D /* MessageStyle.swift */, + 7EF3DE9894454F508B7CCAF547EC5AF4 /* MessagesViewController.swift */, + 72B074EF336FE90C918FFBA335D55AFB /* MessagesViewController+Keyboard.swift */, + D2A0924FD3C0057DC5A7C0E9F7292D95 /* MessagesViewController+Menu.swift */, + 5EA0B1753F4E86B8D53EA267430B1CC5 /* MessageType.swift */, + 88DEDC7D751C475E1438849BF7F77429 /* NSAttributedString+Extensions.swift */, + B7272F0C9CE6B2F42E73F40D600B97E2 /* NSConstraintLayoutSet.swift */, + 3AB7F1C1EECD41E941DA8F10EEE809AF /* PlayButtonView.swift */, + 9B8268F8D29775BB15037927EF8FA10B /* Sender.swift */, + 81B89A002F44FCEADC029B4AD6C4761F /* SenderType.swift */, + B886343AC6ED04CE8CECACCD44E759E3 /* TextMessageCell.swift */, + E3F59B36D35BFC4A91F52E9D7799BA44 /* TextMessageSizeCalculator.swift */, + F464784540CDFD10AB15EA23B399922E /* TypingBubble.swift */, + 808272F7C43F8F467937F4F0501A5E8F /* TypingIndicator.swift */, + 8E10E9652DCBEE448386928DD1108A06 /* TypingIndicatorCell.swift */, + DB47F088736CE8402D9733C8510C5BDB /* TypingIndicatorCellSizeCalculator.swift */, + 76646FDD138158653294A8617A54E207 /* UIColor+Extensions.swift */, + FBE345E1D66C440C8774D6400571C396 /* UIEdgeInsets+Extensions.swift */, + 924D679B19DAE404A6489E633C24A7C4 /* UIImage+Extensions.swift */, + 553CC51F895CE213A584B5F5A24D1FEA /* UIView+Extensions.swift */, + 6E8E78676BC28F5277B1040B42AEAFEB /* Resources */, + EB8D5ED7B22386A9419425B618733F30 /* Support Files */, + ); + name = MessageKit; + path = MessageKit; + sourceTree = ""; + }; + A90943641C637DE64CA1DB7FFE69BD79 /* IQKeyboardManagerSwift */ = { + isa = PBXGroup; + children = ( + B6029BC49787390EEE4F2679F946CC5C /* IQBarButtonItem.swift */, + E2ADEBC02A8D7714E56B36D9AE2F0347 /* IQInvocation.swift */, + 731C0EC9679CB7C9AC544DE6F8568B36 /* IQKeyboardManager.swift */, + 009A6B28E935276EF732E71F8A9DFEB5 /* IQKeyboardManager+Debug.swift */, + 98F2E8E1FB8656274167BDBEDC1833F1 /* IQKeyboardManager+Internal.swift */, + E0FB6ED8AF7A15686F1E1A6D19F48D01 /* IQKeyboardManager+OrientationNotification.swift */, + F8943EF47C933AF495C3A8AFB55F69A0 /* IQKeyboardManager+Position.swift */, + 816F1A5B831F6810CAADA69E18D0DDE2 /* IQKeyboardManager+Toolbar.swift */, + 4A2C29C7F1CAC0E623F5AFA313AA5B17 /* IQKeyboardManager+UIKeyboardNotification.swift */, + 6619A6A67C53A6B104DC88DC7D430CA5 /* IQKeyboardManager+UITextFieldViewNotification.swift */, + 2A852D434848A72CD8B9ED4953FB79BF /* IQKeyboardManagerConstants.swift */, + 864C83AB7D568AD741C2CAFFED0C7390 /* IQKeyboardManagerConstantsInternal.swift */, + 3C0A5D9783FB210177CAF03A650706C6 /* IQKeyboardReturnKeyHandler.swift */, + 08AD6F95D40811D7E0BAC3EBA4D1203C /* IQNSArray+Sort.swift */, + 6952796EFE5FD323D7323DD089F1E452 /* IQPlaceholderable.swift */, + 26D082CAC1129CDF36243BCCF98B2A0E /* IQPreviousNextView.swift */, + 1AF5BD57509BAA412FE57DC242CA67DF /* IQTextView.swift */, + D03FFB6EA53FB5027872977531188F21 /* IQTitleBarButtonItem.swift */, + 593F92587C692CA0F018DCC20115ADC6 /* IQToolbar.swift */, + 62139DCBA3CC67FD2E57BE20D6C1D138 /* IQUIScrollView+Additions.swift */, + 397F270FD3A331FBAFF82C35BE40DA66 /* IQUITextFieldView+Additions.swift */, + 6FA29EC7D5F1BA27D7E7B07252052237 /* IQUIView+Hierarchy.swift */, + 562408E478086D76CB2DF1E7CF482923 /* IQUIView+IQKeyboardToolbar.swift */, + 7A6408E47FDDF35D41EC0CFE9A48B1B0 /* IQUIViewController+Additions.swift */, + 844AB47BD83607D2898FFCAF763A83E3 /* Resources */, + 64FBF01E31D89F8334F9F09B602738C1 /* Support Files */, + ); + name = IQKeyboardManagerSwift; + path = IQKeyboardManagerSwift; + sourceTree = ""; + }; B19D1E42ACDEC412F47EA7793D1DD6E5 /* Pods-VideoSDKRTC_Example */ = { isa = PBXGroup; children = ( @@ -625,19 +672,14 @@ path = "Target Support Files/Pods-VideoSDKRTC_Example"; sourceTree = ""; }; - B1D76887A2C1BFDCA256E4274547D1CE /* Support Files */ = { + B367317067859498935880229596B9BA /* InputBarAccessoryView */ = { isa = PBXGroup; children = ( - 908AF0C4F1A5C3B7D55AE166C8FB6E1E /* IQKeyboardManagerSwift.modulemap */, - C23E2698C77CB71AE9752E83B2F24E73 /* IQKeyboardManagerSwift-dummy.m */, - C8CDAC552C68A3DBB1F5CEA8ACB22619 /* IQKeyboardManagerSwift-Info.plist */, - 8B85BAB42E9D73AEBAF84C049836F504 /* IQKeyboardManagerSwift-prefix.pch */, - 9026BFA9A5B7FB28582B912963A9C924 /* IQKeyboardManagerSwift-umbrella.h */, - 5F451DD3F5639DB526A5113C22153C80 /* IQKeyboardManagerSwift.debug.xcconfig */, - 11F01616102864D62D30E6582BBE0F3C /* IQKeyboardManagerSwift.release.xcconfig */, + 6034E7C046F397214BD52AEB2CE7C334 /* Core */, + 945B9D0203F44E6B6278025D5A07256B /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/IQKeyboardManagerSwift"; + name = InputBarAccessoryView; + path = InputBarAccessoryView; sourceTree = ""; }; BA4F31F07263C99FC76E66D632A59F09 /* Frameworks */ = { @@ -648,6 +690,17 @@ name = Frameworks; sourceTree = ""; }; + C6F9FEAC4028AF1EFC8D077C145412CA /* Frameworks */ = { + isa = PBXGroup; + children = ( + E3F228B1C2F71778498A12ADAFB94C8A /* Mediasoup.xcframework */, + FF9A92639F6C700CC2700B26D2ABDB43 /* VideoSDKRTC.xcframework */, + F8CF3CF1DC6DEF6608D93A0B70AF2D12 /* VideosdkWebSocket.xcframework */, + EC87C342ABE642C28DF0BAFDFF88349E /* WebRTC.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; C8A1208FB12A42B933F6AAA372B39FEB /* Products */ = { isa = PBXGroup; children = ( @@ -659,45 +712,38 @@ name = Products; sourceTree = ""; }; - C9887EB90F3731D696A34751B92F200C /* Resources */ = { - isa = PBXGroup; - children = ( - 6FAC202320DBA1A6A24C17843DE0CBF2 /* Assets.xcassets */, - ); - name = Resources; - sourceTree = ""; - }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, BA4F31F07263C99FC76E66D632A59F09 /* Frameworks */, - 172F7749F24BA607DA3974AD27E71525 /* Pods */, + DD4D89CB8C300C21C8335EA003AF5F03 /* Pods */, C8A1208FB12A42B933F6AAA372B39FEB /* Products */, 79DEF87C7943F7979AB442EF5515A4F5 /* Targets Support Files */, ); sourceTree = ""; }; - D6897BE13228D592F9222F39366F1A96 /* InputBarAccessoryView */ = { + DD4D89CB8C300C21C8335EA003AF5F03 /* Pods */ = { isa = PBXGroup; children = ( - 5478EF2B80F8752A5BEDC1335D0315DF /* Core */, - A9D0EC41D5DDD98761F1ED2C1EEEA77A /* Support Files */, + B367317067859498935880229596B9BA /* InputBarAccessoryView */, + A90943641C637DE64CA1DB7FFE69BD79 /* IQKeyboardManagerSwift */, + 94BEEC7FFDE79ECCC9404F5DD2C3B6EE /* MessageKit */, + 4BD2E924D45C2CA4C6A4D27C3D20F31C /* VideoSDKRTC */, ); - name = InputBarAccessoryView; - path = InputBarAccessoryView; + name = Pods; sourceTree = ""; }; - E9097D0EBC2E266F86231AEDD38A6782 /* Support Files */ = { + EB8D5ED7B22386A9419425B618733F30 /* Support Files */ = { isa = PBXGroup; children = ( - 212FBCA574EB58D5FD2EC2B99D9CCC19 /* MessageKit.modulemap */, - 2D3B23BBF084BDF4DAC03BEA1FB175D6 /* MessageKit-dummy.m */, - F0F569846BC50894C06ABE5B0E73125F /* MessageKit-Info.plist */, - 91597C76FCC9334315A550C6706E8499 /* MessageKit-prefix.pch */, - 44EE62B10DBD879E390D9B5AC41B1FB6 /* MessageKit-umbrella.h */, - 83B9A0AA1AE7175CCD88963C3AF19084 /* MessageKit.debug.xcconfig */, - 1CFCFA9598D6846B5019A5CE6842A0BF /* MessageKit.release.xcconfig */, + 41A7FA9A829748836234C6FFB2878982 /* MessageKit.modulemap */, + 522D4D4E61CB5E016942334FDDEE52E0 /* MessageKit-dummy.m */, + 69B199C4CCB4C8084AC5A51B6644664D /* MessageKit-Info.plist */, + EAF91ECBF9E93422F0D8C886585E916C /* MessageKit-prefix.pch */, + 4A2179BAEFE5140F3832620673958760 /* MessageKit-umbrella.h */, + 44B8C9FCCE33414AB83BD3FE4709A72E /* MessageKit.debug.xcconfig */, + 57057D9994410CECEE02A8DD69E19012 /* MessageKit.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/MessageKit"; @@ -714,38 +760,6 @@ name = iOS; sourceTree = ""; }; - FC6DD8F052D5D7AA5D357EBBBAF68799 /* IQKeyboardManagerSwift */ = { - isa = PBXGroup; - children = ( - 9C3F4EE33F1971AA953EFEECF1295EC0 /* IQBarButtonItem.swift */, - A300E9BC9BE272A614E5A9DCA872012A /* IQInvocation.swift */, - 23E4108C57785C91BBED175401DE64CC /* IQKeyboardManager.swift */, - FC8F20C186506D2A87F49AC6AE08E38D /* IQKeyboardManager+Debug.swift */, - 5B5491A16B82EE84AEAA1014E118B1C9 /* IQKeyboardManager+Internal.swift */, - 38059B5477FC87123F4A9E322794CA7B /* IQKeyboardManager+OrientationNotification.swift */, - E39C93F01B98556317C6E68FC8B942C3 /* IQKeyboardManager+Position.swift */, - 5356579AC4B43B7AE1EA763806D88CA1 /* IQKeyboardManager+Toolbar.swift */, - 6E579F300CB3DDE95DA443B65610AF79 /* IQKeyboardManager+UIKeyboardNotification.swift */, - F9DA9DA1D52870812AACEB8D6F3A2BAC /* IQKeyboardManager+UITextFieldViewNotification.swift */, - DF76332E2740E12548647FAFB52D34C2 /* IQKeyboardManagerConstants.swift */, - D634469259DDB5C2A66AA6B5EA522E3A /* IQKeyboardManagerConstantsInternal.swift */, - FF5B94BC432C470CB97D2E2075AF09AA /* IQKeyboardReturnKeyHandler.swift */, - 92380F91A2841FC1C2154842B7E43014 /* IQNSArray+Sort.swift */, - 64C63FB9A15B5CD6A500F0F6FCFFDAB2 /* IQPreviousNextView.swift */, - B7AE28680A21900B3984A33F990990A8 /* IQTextView.swift */, - D71F7566922630B4E28E23FA75AF3074 /* IQTitleBarButtonItem.swift */, - F0B11998BEBFC7B10A9ABD41A88F28CB /* IQToolbar.swift */, - FCD403C4E57F1C702624CB1A8BDB57EC /* IQUIScrollView+Additions.swift */, - FE5FB514D360B22BAF1122887C3D5AB2 /* IQUITextFieldView+Additions.swift */, - 8C41EC0BB6F4C487C7FF6A9A6AFEB4C7 /* IQUIView+Hierarchy.swift */, - 14603281E295465E9F1A9D55C2C904D5 /* IQUIView+IQKeyboardToolbar.swift */, - 946BB5B4658DD23B6E74154C233D3244 /* IQUIViewController+Additions.swift */, - B1D76887A2C1BFDCA256E4274547D1CE /* Support Files */, - ); - name = IQKeyboardManagerSwift; - path = IQKeyboardManagerSwift; - sourceTree = ""; - }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ @@ -773,11 +787,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - CCEEFAA8C63580C9CB8978EDA9312BDF /* Headers */ = { + 85A932520BC40A75F3549F020972CC8B /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - B6B43B1B78EC0E52CC08F82841A22A31 /* IQKeyboardManagerSwift-umbrella.h in Headers */, + D4E2EAD773A30B252B6AD6B99A7490F4 /* IQKeyboardManagerSwift-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -796,7 +810,7 @@ buildRules = ( ); dependencies = ( - 7AD987B1DB24867C6A4330751B821019 /* PBXTargetDependency */, + 3488D96EFD9C439867AAC155F2EDD83C /* PBXTargetDependency */, ); name = MessageKit; productName = MessageKit; @@ -815,10 +829,10 @@ buildRules = ( ); dependencies = ( - 65F14976B3B6F155E56981D498D0FFCA /* PBXTargetDependency */, - 2A210DAC2D020AE3CB40CE8C91041278 /* PBXTargetDependency */, - EDBB774436F2A8264424F67B14A60EA9 /* PBXTargetDependency */, - F2F7F9E1D8FF9FEDE8E807560A7FCB34 /* PBXTargetDependency */, + 995963AB9C64031FFB8922AA342E4951 /* PBXTargetDependency */, + A825D44FC6B66ACA039F1D5C3D788F49 /* PBXTargetDependency */, + 198DA97EF0303DB6B4A0A9BA42B6B886 /* PBXTargetDependency */, + 6FBFFA656439998C2E0DA8CA822E0957 /* PBXTargetDependency */, ); name = "Pods-VideoSDKRTC_Example"; productName = Pods_VideoSDKRTC_Example; @@ -827,12 +841,12 @@ }; B490E7485944099E16C9CBD79119D1D4 /* IQKeyboardManagerSwift */ = { isa = PBXNativeTarget; - buildConfigurationList = 42F76AA8E84D32E2DED70BBA35321CB1 /* Build configuration list for PBXNativeTarget "IQKeyboardManagerSwift" */; + buildConfigurationList = 6EA57D0428E1F541FC55143B3FEA485B /* Build configuration list for PBXNativeTarget "IQKeyboardManagerSwift" */; buildPhases = ( - CCEEFAA8C63580C9CB8978EDA9312BDF /* Headers */, - AC7850B8AD058752CD0E80D5A5B07A42 /* Sources */, - A3B77577C54970218F8F8340516D00F2 /* Frameworks */, - DAEA1F953296419744C852BAA2739BA1 /* Resources */, + 85A932520BC40A75F3549F020972CC8B /* Headers */, + F15C2AB492606C7255BF91F14E154EC6 /* Sources */, + 65BFC75CE1541E38446FFDA8AFF0DBEC /* Frameworks */, + 7AB4C6E7F42074143BEB486E118CCE8A /* Resources */, ); buildRules = ( ); @@ -867,8 +881,8 @@ BFDFE7DC352907FC980B868725387E98 /* Project object */ = { isa = PBXProject; attributes = { - LastSwiftUpdateCheck = 1300; - LastUpgradeCheck = 1300; + LastSwiftUpdateCheck = 1500; + LastUpgradeCheck = 1500; }; buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; compatibilityVersion = "Xcode 13.0"; @@ -901,21 +915,22 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B3C75DE44560D4EF7CDDE3C9BBDC2BA8 /* Resources */ = { + 7AB4C6E7F42074143BEB486E118CCE8A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + A50A72FCD270217D99ECA1D2700CFAD4 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D84CAEB0CA6B3C261F230C6C206A080D /* Resources */ = { + B3C75DE44560D4EF7CDDE3C9BBDC2BA8 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - DAEA1F953296419744C852BAA2739BA1 /* Resources */ = { + D84CAEB0CA6B3C261F230C6C206A080D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1023,37 +1038,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - AC7850B8AD058752CD0E80D5A5B07A42 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 41CD40F5713CD71AD5AB1471E81C97E1 /* IQBarButtonItem.swift in Sources */, - 041B655D7F5932F03A65C154BC02BDAA /* IQInvocation.swift in Sources */, - 86A03DE9366D1BE94EB99AA387EACD1F /* IQKeyboardManager.swift in Sources */, - 2EC96162DD6740ECE67FF38B8400A7C5 /* IQKeyboardManager+Debug.swift in Sources */, - 2CA0B3B43A972DF3AD79F58092E3403E /* IQKeyboardManager+Internal.swift in Sources */, - 08B185E08278AE7EC55F8BBB19693AC5 /* IQKeyboardManager+OrientationNotification.swift in Sources */, - F2B1C1D70C629AE19C0D5121B1BBA891 /* IQKeyboardManager+Position.swift in Sources */, - 1D8031C86A94D32E00ED55B80428A0F3 /* IQKeyboardManager+Toolbar.swift in Sources */, - A4BAEE317BFF650DCC888FC67BFBF7EF /* IQKeyboardManager+UIKeyboardNotification.swift in Sources */, - D6516B5451008BF1ABA150E6482F6325 /* IQKeyboardManager+UITextFieldViewNotification.swift in Sources */, - 85F13B069B06ADF2B6DCA622E4645110 /* IQKeyboardManagerConstants.swift in Sources */, - 0F94B2449CA1ADA76AE79C0BF6A08549 /* IQKeyboardManagerConstantsInternal.swift in Sources */, - 1A9B9579E46EFBA63C5F57A6B17B5ECA /* IQKeyboardManagerSwift-dummy.m in Sources */, - C81CB3B5D25BDBCB6D3A3632BE408229 /* IQKeyboardReturnKeyHandler.swift in Sources */, - 7AC995F567A776FC1A80A9FA0733F3D1 /* IQNSArray+Sort.swift in Sources */, - 24EC44FF102C2635A476CEF7567F89DA /* IQPreviousNextView.swift in Sources */, - E72E1BDDFF31003BD089544FC112FAAC /* IQTextView.swift in Sources */, - 20616A47873318F80BFFEABAC9730122 /* IQTitleBarButtonItem.swift in Sources */, - 1740CBB33D469AEDD5D7291A9268FA97 /* IQToolbar.swift in Sources */, - DF33C3DE068D6116B3F551B0453ACD23 /* IQUIScrollView+Additions.swift in Sources */, - 3F01EED6380B596E1D0C1497CBCF9B95 /* IQUITextFieldView+Additions.swift in Sources */, - 04B0884964D9592302CA654E0B67E80E /* IQUIView+Hierarchy.swift in Sources */, - 34C39BDBFE7A2CC585787F5AFCA39FDE /* IQUIView+IQKeyboardToolbar.swift in Sources */, - D31356D54A39420DB91C892502CFFD57 /* IQUIViewController+Additions.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; BED254A08173A965F6113110B8424B09 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -1104,38 +1088,70 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F15C2AB492606C7255BF91F14E154EC6 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B0CB5FB63262E1A67317045B8960F363 /* IQBarButtonItem.swift in Sources */, + A8DD3F39B4D1F0C7B11866484A03336E /* IQInvocation.swift in Sources */, + 16E5F9C7FE2C499D21F3E7AF1FFC2FA7 /* IQKeyboardManager.swift in Sources */, + 1B4B180E84924CF99663817A2AFFAA92 /* IQKeyboardManager+Debug.swift in Sources */, + 6735E4B11C64D20B4E05A92811F5A721 /* IQKeyboardManager+Internal.swift in Sources */, + 9C292E2C761CB97ACD00F95FA4D60E85 /* IQKeyboardManager+OrientationNotification.swift in Sources */, + 7E59ABF8A1AC8F61FEFB9B8C72EFB9E5 /* IQKeyboardManager+Position.swift in Sources */, + BDAD667B60A9D9981738646851C825A0 /* IQKeyboardManager+Toolbar.swift in Sources */, + 9C2584A9CCF8CA6C9DF2AD79DB831E70 /* IQKeyboardManager+UIKeyboardNotification.swift in Sources */, + 9E4E278A3C1543798E1912699886023E /* IQKeyboardManager+UITextFieldViewNotification.swift in Sources */, + 41A536E6CE1C85116A756B710B2C660B /* IQKeyboardManagerConstants.swift in Sources */, + ECAA15FA3C4560E3287F2226EC8C1ECF /* IQKeyboardManagerConstantsInternal.swift in Sources */, + 930B495B7A3197730A016E2339A4CBA7 /* IQKeyboardManagerSwift-dummy.m in Sources */, + 506C1EE2968687F178BB2DFA34D185CE /* IQKeyboardReturnKeyHandler.swift in Sources */, + AB651DB3A97A623234B6544AD030406A /* IQNSArray+Sort.swift in Sources */, + F47587932A67D8E3820DAFD9A0E1995E /* IQPlaceholderable.swift in Sources */, + 07F83DE63FB5CC8015F48F7B9B800B6F /* IQPreviousNextView.swift in Sources */, + D0DF994786BCEC54939BC8216B42FBC4 /* IQTextView.swift in Sources */, + 373502D50A1B2266D86409E19EC46DDB /* IQTitleBarButtonItem.swift in Sources */, + 07FD274BC01F578C7B37989F79350C1E /* IQToolbar.swift in Sources */, + AAC2529A1B4F4832A052B348C5093018 /* IQUIScrollView+Additions.swift in Sources */, + BE60EC19FCBB8F301081E9C31BB85F3E /* IQUITextFieldView+Additions.swift in Sources */, + 5E8E9469BF126E918EADF79EC4BB5CA2 /* IQUIView+Hierarchy.swift in Sources */, + 19C5CA44D4D4D5B711D33A73525D453F /* IQUIView+IQKeyboardToolbar.swift in Sources */, + B46A36CA19ED6C09341D8E4031F66D5C /* IQUIViewController+Additions.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 2A210DAC2D020AE3CB40CE8C91041278 /* PBXTargetDependency */ = { + 198DA97EF0303DB6B4A0A9BA42B6B886 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MessageKit; + target = 2D834CBBD351637528FA6B93E42745DC /* MessageKit */; + targetProxy = 4B4E0D3314C43188B008FBAC3F253BFE /* PBXContainerItemProxy */; + }; + 3488D96EFD9C439867AAC155F2EDD83C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = InputBarAccessoryView; target = C8C39DD486923E3933801D232041B590 /* InputBarAccessoryView */; - targetProxy = B6ED964E08030BA2BE0178A090D866D6 /* PBXContainerItemProxy */; + targetProxy = AC164C6A0632B2A682EA6C15F0BD8873 /* PBXContainerItemProxy */; + }; + 6FBFFA656439998C2E0DA8CA822E0957 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = VideoSDKRTC; + target = B6E2C457741647223A51766707CCB8CA /* VideoSDKRTC */; + targetProxy = 732707AFC5F3D4C42D45F31EE8D119BA /* PBXContainerItemProxy */; }; - 65F14976B3B6F155E56981D498D0FFCA /* PBXTargetDependency */ = { + 995963AB9C64031FFB8922AA342E4951 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = IQKeyboardManagerSwift; target = B490E7485944099E16C9CBD79119D1D4 /* IQKeyboardManagerSwift */; - targetProxy = E1A68A5747A49379534F02A81E6B639B /* PBXContainerItemProxy */; + targetProxy = 9B50FF3B072F66721AEEB6D694F5B046 /* PBXContainerItemProxy */; }; - 7AD987B1DB24867C6A4330751B821019 /* PBXTargetDependency */ = { + A825D44FC6B66ACA039F1D5C3D788F49 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = InputBarAccessoryView; target = C8C39DD486923E3933801D232041B590 /* InputBarAccessoryView */; - targetProxy = 8989DDB2FA814C327D23AA5C46900677 /* PBXContainerItemProxy */; - }; - EDBB774436F2A8264424F67B14A60EA9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MessageKit; - target = 2D834CBBD351637528FA6B93E42745DC /* MessageKit */; - targetProxy = 437FB289C7B93C58D7CB4AD47299BB66 /* PBXContainerItemProxy */; - }; - F2F7F9E1D8FF9FEDE8E807560A7FCB34 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = VideoSDKRTC; - target = B6E2C457741647223A51766707CCB8CA /* VideoSDKRTC */; - targetProxy = A62CA28EE696336E1A9E499F49819044 /* PBXContainerItemProxy */; + targetProxy = 6110EE9E7165B8A37EF4DAC74698DBE0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ @@ -1308,7 +1324,7 @@ }; 73111A6590DBEDE613783E246AF510C4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7DAB0B126CE5FFD3D213D88074580567 /* VideoSDKRTC.release.xcconfig */; + baseConfigurationReference = AD65F1974397F3AF113EDEF3FB794F4F /* VideoSDKRTC.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -1326,7 +1342,7 @@ }; 74341332FC0E091DD18041EA141BDEBC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 83A62EB8B8EC95F57DFF4736F1897F86 /* VideoSDKRTC.debug.xcconfig */; + baseConfigurationReference = AF898B34A2F563700A7DB12420ACA9AC /* VideoSDKRTC.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -1341,10 +1357,11 @@ }; name = Debug; }; - 9D8C08F259B4E57381CFE8BC28467628 /* Release */ = { + A6260E74821A6D83D56C6FD7B057B34D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 11F01616102864D62D30E6582BBE0F3C /* IQKeyboardManagerSwift.release.xcconfig */; + baseConfigurationReference = 153C61527061AB00AF5E1674155F4D77 /* IQKeyboardManagerSwift.debug.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -1356,7 +1373,7 @@ GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-prefix.pch"; INFOPLIST_FILE = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -1368,17 +1385,16 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.6; + SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; AA6DC1F0BA5003DAA43549D6B82C3861 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 623137538576A2E8BA39D3E601C695E0 /* InputBarAccessoryView.release.xcconfig */; + baseConfigurationReference = FA9C900DD96A2CDAC7FFEB92D7B7904B /* InputBarAccessoryView.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -1414,7 +1430,7 @@ }; D24B6BB22A3C879D09A74B16F5686208 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 83B9A0AA1AE7175CCD88963C3AF19084 /* MessageKit.debug.xcconfig */; + baseConfigurationReference = 44B8C9FCCE33414AB83BD3FE4709A72E /* MessageKit.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -1486,7 +1502,7 @@ }; ED4DB78481B7A87DE8FB2AECAF92E6C7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 77F0A805C94EF7E0D49DD1AD08AA46AA /* InputBarAccessoryView.debug.xcconfig */; + baseConfigurationReference = 23348B7921D88C28643B9F09E793B99C /* InputBarAccessoryView.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -1521,7 +1537,7 @@ }; EF781C54D6FE54D64725168490BAF972 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1CFCFA9598D6846B5019A5CE6842A0BF /* MessageKit.release.xcconfig */; + baseConfigurationReference = 57057D9994410CECEE02A8DD69E19012 /* MessageKit.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -1555,10 +1571,11 @@ }; name = Release; }; - F0377F003E77F0F91AC8FEE0F297E927 /* Debug */ = { + FB818BDDADBD0A197A07D52CF5BB68F5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5F451DD3F5639DB526A5113C22153C80 /* IQKeyboardManagerSwift.debug.xcconfig */; + baseConfigurationReference = 3992BE51CDD2C19352D712D47658C746 /* IQKeyboardManagerSwift.release.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -1570,7 +1587,7 @@ GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-prefix.pch"; INFOPLIST_FILE = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -1582,12 +1599,13 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.6; + SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; /* End XCBuildConfiguration section */ @@ -1610,15 +1628,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 42F76AA8E84D32E2DED70BBA35321CB1 /* Build configuration list for PBXNativeTarget "IQKeyboardManagerSwift" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F0377F003E77F0F91AC8FEE0F297E927 /* Debug */, - 9D8C08F259B4E57381CFE8BC28467628 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -1637,6 +1646,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 6EA57D0428E1F541FC55143B3FEA485B /* Build configuration list for PBXNativeTarget "IQKeyboardManagerSwift" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + A6260E74821A6D83D56C6FD7B057B34D /* Debug */, + FB818BDDADBD0A197A07D52CF5BB68F5 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 9337ED340BEB01B953DBB0C9ED2D4DB4 /* Build configuration list for PBXNativeTarget "MessageKit" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/Pods/Pods.xcodeproj/xcuserdata/udaygajera.xcuserdatad/xcschemes/IQKeyboardManagerSwift.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/udaygajera.xcuserdatad/xcschemes/IQKeyboardManagerSwift.xcscheme new file mode 100644 index 0000000..78a923d --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/udaygajera.xcuserdatad/xcschemes/IQKeyboardManagerSwift.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/udaygajera.xcuserdatad/xcschemes/InputBarAccessoryView.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/udaygajera.xcuserdatad/xcschemes/InputBarAccessoryView.xcscheme new file mode 100644 index 0000000..1c73ae4 --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/udaygajera.xcuserdatad/xcschemes/InputBarAccessoryView.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/udaygajera.xcuserdatad/xcschemes/MessageKit.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/udaygajera.xcuserdatad/xcschemes/MessageKit.xcscheme new file mode 100644 index 0000000..3b4e961 --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/udaygajera.xcuserdatad/xcschemes/MessageKit.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/udaygajera.xcuserdatad/xcschemes/Pods-VideoSDKRTC_Example.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/udaygajera.xcuserdatad/xcschemes/Pods-VideoSDKRTC_Example.xcscheme new file mode 100644 index 0000000..7b0047c --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/udaygajera.xcuserdatad/xcschemes/Pods-VideoSDKRTC_Example.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/udaygajera.xcuserdatad/xcschemes/VideoSDKRTC.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/udaygajera.xcuserdatad/xcschemes/VideoSDKRTC.xcscheme new file mode 100644 index 0000000..0c752f9 --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/udaygajera.xcuserdatad/xcschemes/VideoSDKRTC.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/udaygajera.xcuserdatad/xcschemes/xcschememanagement.plist b/Pods/Pods.xcodeproj/xcuserdata/udaygajera.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 0000000..069a0cd --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/udaygajera.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,46 @@ + + + + + SchemeUserState + + IQKeyboardManagerSwift.xcscheme + + isShown + + orderHint + 1 + + InputBarAccessoryView.xcscheme + + isShown + + orderHint + 0 + + MessageKit.xcscheme + + isShown + + orderHint + 2 + + Pods-VideoSDKRTC_Example.xcscheme + + isShown + + orderHint + 3 + + VideoSDKRTC.xcscheme + + isShown + + orderHint + 4 + + + SuppressBuildableAutocreation + + + diff --git a/Pods/Starscream/LICENSE b/Pods/Starscream/LICENSE deleted file mode 100644 index d6ab2f1..0000000 --- a/Pods/Starscream/LICENSE +++ /dev/null @@ -1,176 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - Copyright (c) 2014-2016 Dalton Cherry. - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. \ No newline at end of file diff --git a/Pods/Starscream/README.md b/Pods/Starscream/README.md deleted file mode 100644 index 634723a..0000000 --- a/Pods/Starscream/README.md +++ /dev/null @@ -1,308 +0,0 @@ -![starscream](https://raw.githubusercontent.com/daltoniam/starscream/assets/starscream.jpg) - -Starscream is a conforming WebSocket ([RFC 6455](http://tools.ietf.org/html/rfc6455)) library in Swift. - -## Features - -- Conforms to all of the base [Autobahn test suite](https://crossbar.io/autobahn/). -- Nonblocking. Everything happens in the background, thanks to GCD. -- TLS/WSS support. -- Compression Extensions support ([RFC 7692](https://tools.ietf.org/html/rfc7692)) - -### Import the framework - -First thing is to import the framework. See the Installation instructions on how to add the framework to your project. - -```swift -import Starscream -``` - -### Connect to the WebSocket Server - -Once imported, you can open a connection to your WebSocket server. Note that `socket` is probably best as a property, so it doesn't get deallocated right after being setup. - -```swift -var request = URLRequest(url: URL(string: "http://localhost:8080")!) -request.timeoutInterval = 5 -socket = WebSocket(request: request) -socket.delegate = self -socket.connect() -``` - -After you are connected, there is either a delegate or closure you can use for process WebSocket events. - -### Receiving data from a WebSocket - -`didReceive` receives all the WebSocket events in a single easy to handle enum. - -```swift -func didReceive(event: WebSocketEvent, client: WebSocket) { - switch event { - case .connected(let headers): - isConnected = true - print("websocket is connected: \(headers)") - case .disconnected(let reason, let code): - isConnected = false - print("websocket is disconnected: \(reason) with code: \(code)") - case .text(let string): - print("Received text: \(string)") - case .binary(let data): - print("Received data: \(data.count)") - case .ping(_): - break - case .pong(_): - break - case .viabilityChanged(_): - break - case .reconnectSuggested(_): - break - case .cancelled: - isConnected = false - case .error(let error): - isConnected = false - handleError(error) - } -} -``` - -The closure of this would be: - -```swift -socket.onEvent = { event in - switch event { - // handle events just like above... - } -} -``` - -### Writing to a WebSocket - -### write a binary frame - -The writeData method gives you a simple way to send `Data` (binary) data to the server. - -```swift -socket.write(data: data) //write some Data over the socket! -``` - -### write a string frame - -The writeString method is the same as writeData, but sends text/string. - -```swift -socket.write(string: "Hi Server!") //example on how to write text over the socket! -``` - -### write a ping frame - -The writePing method is the same as write, but sends a ping control frame. - -```swift -socket.write(ping: Data()) //example on how to write a ping control frame over the socket! -``` - -### write a pong frame - - -the writePong method is the same as writePing, but sends a pong control frame. - -```swift -socket.write(pong: Data()) //example on how to write a pong control frame over the socket! -``` - -Starscream will automatically respond to incoming `ping` control frames so you do not need to manually send `pong`s. - -However if for some reason you need to control this process you can turn off the automatic `ping` response by disabling `respondToPingWithPong`. - -```swift -socket.respondToPingWithPong = false //Do not automaticaly respond to incoming pings with pongs. -``` - -In most cases you will not need to do this. - -### disconnect - -The disconnect method does what you would expect and closes the socket. - -```swift -socket.disconnect() -``` - -The disconnect method can also send a custom close code if desired. - -```swift -socket.disconnect(closeCode: CloseCode.normal.rawValue) -``` - -### Custom Headers, Protocols and Timeout - -You can override the default websocket headers, add your own custom ones and set a timeout: - -```swift -var request = URLRequest(url: URL(string: "ws://localhost:8080/")!) -request.timeoutInterval = 5 // Sets the timeout for the connection -request.setValue("someother protocols", forHTTPHeaderField: "Sec-WebSocket-Protocol") -request.setValue("14", forHTTPHeaderField: "Sec-WebSocket-Version") -request.setValue("chat,superchat", forHTTPHeaderField: "Sec-WebSocket-Protocol") -request.setValue("Everything is Awesome!", forHTTPHeaderField: "My-Awesome-Header") -let socket = WebSocket(request: request) -``` - -### SSL Pinning - -SSL Pinning is also supported in Starscream. - - -Allow Self-signed certificates: - -```swift -var request = URLRequest(url: URL(string: "ws://localhost:8080/")!) -let pinner = FoundationSecurity(allowSelfSigned: true) // don't validate SSL certificates -let socket = WebSocket(request: request, certPinner: pinner) -``` - -TODO: Update docs on how to load certificates and public keys into an app bundle, use the builtin pinner and TrustKit. - -### Compression Extensions - -Compression Extensions ([RFC 7692](https://tools.ietf.org/html/rfc7692)) is supported in Starscream. Compression is enabled by default, however compression will only be used if it is supported by the server as well. You may enable or disable compression via the `.enableCompression` property: - -```swift -var request = URLRequest(url: URL(string: "ws://localhost:8080/")!) -let compression = WSCompression() -let socket = WebSocket(request: request, compressionHandler: compression) -``` - -Compression should be disabled if your application is transmitting already-compressed, random, or other uncompressable data. - -### Custom Queue - -A custom queue can be specified when delegate methods are called. By default `DispatchQueue.main` is used, thus making all delegate methods calls run on the main thread. It is important to note that all WebSocket processing is done on a background thread, only the delegate method calls are changed when modifying the queue. The actual processing is always on a background thread and will not pause your app. - -```swift -socket = WebSocket(url: URL(string: "ws://localhost:8080/")!, protocols: ["chat","superchat"]) -//create a custom queue -socket.callbackQueue = DispatchQueue(label: "com.vluxe.starscream.myapp") -``` - -## Example Project - -Check out the SimpleTest project in the examples directory to see how to setup a simple connection to a WebSocket server. - -## Requirements - -Starscream works with iOS 8/10.10 or above for CocoaPods/framework support. To use Starscream with a project targeting iOS 7, you must include all Swift files directly in your project. - -## Installation - -### CocoaPods - -Check out [Get Started](http://cocoapods.org/) tab on [cocoapods.org](http://cocoapods.org/). - -To use Starscream in your project add the following 'Podfile' to your project - - source 'https://github.com/CocoaPods/Specs.git' - platform :ios, '9.0' - use_frameworks! - - pod 'Starscream', '~> 4.0.0' - -Then run: - - pod install - -### Carthage - -Check out the [Carthage](https://github.com/Carthage/Carthage) docs on how to add a install. The `Starscream` framework is already setup with shared schemes. - -[Carthage Install](https://github.com/Carthage/Carthage#adding-frameworks-to-an-application) - -You can install Carthage with [Homebrew](http://brew.sh/) using the following command: - -```bash -$ brew update -$ brew install carthage -``` - -To integrate Starscream into your Xcode project using Carthage, specify it in your `Cartfile`: - -``` -github "daltoniam/Starscream" >= 4.0.0 -``` - -### Accio - -Check out the [Accio](https://github.com/JamitLabs/Accio) docs on how to add a install. - -Add the following to your Package.swift: - -```swift -.package(url: "https://github.com/daltoniam/Starscream.git", .upToNextMajor(from: "4.0.0")), -``` - -Next, add `Starscream` to your App targets dependencies like so: - -```swift -.target( - name: "App", - dependencies: [ - "Starscream", - ] -), -``` - -Then run `accio update`. - -### Rogue - -First see the [installation docs](https://github.com/acmacalister/Rogue) for how to install Rogue. - -To install Starscream run the command below in the directory you created the rogue file. - -``` -rogue add https://github.com/daltoniam/Starscream -``` - -Next open the `libs` folder and add the `Starscream.xcodeproj` to your Xcode project. Once that is complete, in your "Build Phases" add the `Starscream.framework` to your "Link Binary with Libraries" phase. Make sure to add the `libs` folder to your `.gitignore` file. - -### Swift Package Manager - -The [Swift Package Manager](https://swift.org/package-manager/) is a tool for automating the distribution of Swift code and is integrated into the `swift` compiler. - -Once you have your Swift package set up, adding Starscream as a dependency is as easy as adding it to the `dependencies` value of your `Package.swift`. - -```swift -dependencies: [ - .Package(url: "https://github.com/daltoniam/Starscream.git", majorVersion: 4) -] -``` - -### Other - -Simply grab the framework (either via git submodule or another package manager). - -Add the `Starscream.xcodeproj` to your Xcode project. Once that is complete, in your "Build Phases" add the `Starscream.framework` to your "Link Binary with Libraries" phase. - -### Add Copy Frameworks Phase - -If you are running this in an OSX app or on a physical iOS device you will need to make sure you add the `Starscream.framework` to be included in your app bundle. To do this, in Xcode, navigate to the target configuration window by clicking on the blue project icon, and selecting the application target under the "Targets" heading in the sidebar. In the tab bar at the top of that window, open the "Build Phases" panel. Expand the "Link Binary with Libraries" group, and add `Starscream.framework`. Click on the + button at the top left of the panel and select "New Copy Files Phase". Rename this new phase to "Copy Frameworks", set the "Destination" to "Frameworks", and add `Starscream.framework` respectively. - -## TODOs - -- [ ] Proxy support - -## License - -Starscream is licensed under the Apache v2 License. - -## Contact - -### Dalton Cherry -* https://github.com/daltoniam -* http://twitter.com/daltoniam -* http://daltoniam.com - -### Austin Cherry ### -* https://github.com/acmacalister -* http://twitter.com/acmacalister -* http://austincherry.me diff --git a/Pods/Starscream/Sources/Compression/Compression.swift b/Pods/Starscream/Sources/Compression/Compression.swift deleted file mode 100644 index 0e7fae5..0000000 --- a/Pods/Starscream/Sources/Compression/Compression.swift +++ /dev/null @@ -1,29 +0,0 @@ -////////////////////////////////////////////////////////////////////////////////////////////////// -// -// Compression.swift -// Starscream -// -// Created by Dalton Cherry on 2/4/19. -// Copyright © 2019 Vluxe. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -////////////////////////////////////////////////////////////////////////////////////////////////// - -import Foundation - -public protocol CompressionHandler { - func load(headers: [String: String]) - func decompress(data: Data, isFinal: Bool) -> Data? - func compress(data: Data) -> Data? -} diff --git a/Pods/Starscream/Sources/Compression/WSCompression.swift b/Pods/Starscream/Sources/Compression/WSCompression.swift deleted file mode 100644 index 2129584..0000000 --- a/Pods/Starscream/Sources/Compression/WSCompression.swift +++ /dev/null @@ -1,247 +0,0 @@ -////////////////////////////////////////////////////////////////////////////////////////////////// -// -// WSCompression.swift -// -// Created by Joseph Ross on 7/16/14. -// Copyright © 2017 Joseph Ross & Vluxe. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -////////////////////////////////////////////////////////////////////////////////////////////////// - -////////////////////////////////////////////////////////////////////////////////////////////////// -// -// Compression implementation is implemented in conformance with RFC 7692 Compression Extensions -// for WebSocket: https://tools.ietf.org/html/rfc7692 -// -////////////////////////////////////////////////////////////////////////////////////////////////// - -import Foundation -import zlib - -public class WSCompression: CompressionHandler { - let headerWSExtensionName = "Sec-WebSocket-Extensions" - var decompressor: Decompressor? - var compressor: Compressor? - var decompressorTakeOver = false - var compressorTakeOver = false - - public init() { - - } - - public func load(headers: [String: String]) { - guard let extensionHeader = headers[headerWSExtensionName] else { return } - decompressorTakeOver = false - compressorTakeOver = false - - let parts = extensionHeader.components(separatedBy: ";") - for p in parts { - let part = p.trimmingCharacters(in: .whitespaces) - if part.hasPrefix("server_max_window_bits=") { - let valString = part.components(separatedBy: "=")[1] - if let val = Int(valString.trimmingCharacters(in: .whitespaces)) { - decompressor = Decompressor(windowBits: val) - } - } else if part.hasPrefix("client_max_window_bits=") { - let valString = part.components(separatedBy: "=")[1] - if let val = Int(valString.trimmingCharacters(in: .whitespaces)) { - compressor = Compressor(windowBits: val) - } - } else if part == "client_no_context_takeover" { - compressorTakeOver = true - } else if part == "server_no_context_takeover" { - decompressorTakeOver = true - } - } - } - - public func decompress(data: Data, isFinal: Bool) -> Data? { - guard let decompressor = decompressor else { return nil } - do { - let decompressedData = try decompressor.decompress(data, finish: isFinal) - if decompressorTakeOver { - try decompressor.reset() - } - return decompressedData - } catch { - //do nothing with the error for now - } - return nil - } - - public func compress(data: Data) -> Data? { - guard let compressor = compressor else { return nil } - do { - let compressedData = try compressor.compress(data) - if compressorTakeOver { - try compressor.reset() - } - return compressedData - } catch { - //do nothing with the error for now - } - return nil - } - - -} - -class Decompressor { - private var strm = z_stream() - private var buffer = [UInt8](repeating: 0, count: 0x2000) - private var inflateInitialized = false - private let windowBits: Int - - init?(windowBits: Int) { - self.windowBits = windowBits - guard initInflate() else { return nil } - } - - private func initInflate() -> Bool { - if Z_OK == inflateInit2_(&strm, -CInt(windowBits), - ZLIB_VERSION, CInt(MemoryLayout.size)) - { - inflateInitialized = true - return true - } - return false - } - - func reset() throws { - teardownInflate() - guard initInflate() else { throw WSError(type: .compressionError, message: "Error for decompressor on reset", code: 0) } - } - - func decompress(_ data: Data, finish: Bool) throws -> Data { - return try data.withUnsafeBytes { (bytes: UnsafePointer) -> Data in - return try decompress(bytes: bytes, count: data.count, finish: finish) - } - } - - func decompress(bytes: UnsafePointer, count: Int, finish: Bool) throws -> Data { - var decompressed = Data() - try decompress(bytes: bytes, count: count, out: &decompressed) - - if finish { - let tail:[UInt8] = [0x00, 0x00, 0xFF, 0xFF] - try decompress(bytes: tail, count: tail.count, out: &decompressed) - } - - return decompressed - } - - private func decompress(bytes: UnsafePointer, count: Int, out: inout Data) throws { - var res: CInt = 0 - strm.next_in = UnsafeMutablePointer(mutating: bytes) - strm.avail_in = CUnsignedInt(count) - - repeat { - buffer.withUnsafeMutableBytes { (bufferPtr) in - strm.next_out = bufferPtr.bindMemory(to: UInt8.self).baseAddress - strm.avail_out = CUnsignedInt(bufferPtr.count) - - res = inflate(&strm, 0) - } - - let byteCount = buffer.count - Int(strm.avail_out) - out.append(buffer, count: byteCount) - } while res == Z_OK && strm.avail_out == 0 - - guard (res == Z_OK && strm.avail_out > 0) - || (res == Z_BUF_ERROR && Int(strm.avail_out) == buffer.count) - else { - throw WSError(type: .compressionError, message: "Error on decompressing", code: 0) - } - } - - private func teardownInflate() { - if inflateInitialized, Z_OK == inflateEnd(&strm) { - inflateInitialized = false - } - } - - deinit { - teardownInflate() - } -} - -class Compressor { - private var strm = z_stream() - private var buffer = [UInt8](repeating: 0, count: 0x2000) - private var deflateInitialized = false - private let windowBits: Int - - init?(windowBits: Int) { - self.windowBits = windowBits - guard initDeflate() else { return nil } - } - - private func initDeflate() -> Bool { - if Z_OK == deflateInit2_(&strm, Z_DEFAULT_COMPRESSION, Z_DEFLATED, - -CInt(windowBits), 8, Z_DEFAULT_STRATEGY, - ZLIB_VERSION, CInt(MemoryLayout.size)) - { - deflateInitialized = true - return true - } - return false - } - - func reset() throws { - teardownDeflate() - guard initDeflate() else { throw WSError(type: .compressionError, message: "Error for compressor on reset", code: 0) } - } - - func compress(_ data: Data) throws -> Data { - var compressed = Data() - var res: CInt = 0 - data.withUnsafeBytes { (ptr:UnsafePointer) -> Void in - strm.next_in = UnsafeMutablePointer(mutating: ptr) - strm.avail_in = CUnsignedInt(data.count) - - repeat { - buffer.withUnsafeMutableBytes { (bufferPtr) in - strm.next_out = bufferPtr.bindMemory(to: UInt8.self).baseAddress - strm.avail_out = CUnsignedInt(bufferPtr.count) - - res = deflate(&strm, Z_SYNC_FLUSH) - } - - let byteCount = buffer.count - Int(strm.avail_out) - compressed.append(buffer, count: byteCount) - } - while res == Z_OK && strm.avail_out == 0 - - } - - guard res == Z_OK && strm.avail_out > 0 - || (res == Z_BUF_ERROR && Int(strm.avail_out) == buffer.count) - else { - throw WSError(type: .compressionError, message: "Error on compressing", code: 0) - } - - compressed.removeLast(4) - return compressed - } - - private func teardownDeflate() { - if deflateInitialized, Z_OK == deflateEnd(&strm) { - deflateInitialized = false - } - } - - deinit { - teardownDeflate() - } -} diff --git a/Pods/Starscream/Sources/DataBytes/Data+Extensions.swift b/Pods/Starscream/Sources/DataBytes/Data+Extensions.swift deleted file mode 100644 index 1d0852d..0000000 --- a/Pods/Starscream/Sources/DataBytes/Data+Extensions.swift +++ /dev/null @@ -1,53 +0,0 @@ -////////////////////////////////////////////////////////////////////////////////////////////////// -// -// Data+Extensions.swift -// Starscream -// -// Created by Dalton Cherry on 3/27/19. -// Copyright © 2019 Vluxe. All rights reserved. -// -// Fix for deprecation warnings -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -////////////////////////////////////////////////////////////////////////////////////////////////// - -import Foundation - -internal extension Data { - struct ByteError: Swift.Error {} - - #if swift(>=5.0) - func withUnsafeBytes(_ completion: (UnsafePointer) throws -> ResultType) rethrows -> ResultType { - return try withUnsafeBytes { - if let baseAddress = $0.baseAddress, $0.count > 0 { - return try completion(baseAddress.assumingMemoryBound(to: ContentType.self)) - } else { - throw ByteError() - } - } - } - #endif - - #if swift(>=5.0) - mutating func withUnsafeMutableBytes(_ completion: (UnsafeMutablePointer) throws -> ResultType) rethrows -> ResultType { - return try withUnsafeMutableBytes { - if let baseAddress = $0.baseAddress, $0.count > 0 { - return try completion(baseAddress.assumingMemoryBound(to: ContentType.self)) - } else { - throw ByteError() - } - } - } - #endif -} diff --git a/Pods/Starscream/Sources/Engine/Engine.swift b/Pods/Starscream/Sources/Engine/Engine.swift deleted file mode 100644 index a60ef7e..0000000 --- a/Pods/Starscream/Sources/Engine/Engine.swift +++ /dev/null @@ -1,22 +0,0 @@ -// -// Engine.swift -// Starscream -// -// Created by Dalton Cherry on 6/15/19. -// Copyright © 2019 Vluxe. All rights reserved. -// - -import Foundation - -public protocol EngineDelegate: class { - func didReceive(event: WebSocketEvent) -} - -public protocol Engine { - func register(delegate: EngineDelegate) - func start(request: URLRequest) - func stop(closeCode: UInt16) - func forceStop() - func write(data: Data, opcode: FrameOpCode, completion: (() -> ())?) - func write(string: String, completion: (() -> ())?) -} diff --git a/Pods/Starscream/Sources/Engine/NativeEngine.swift b/Pods/Starscream/Sources/Engine/NativeEngine.swift deleted file mode 100644 index 7294e36..0000000 --- a/Pods/Starscream/Sources/Engine/NativeEngine.swift +++ /dev/null @@ -1,96 +0,0 @@ -// -// NativeEngine.swift -// Starscream -// -// Created by Dalton Cherry on 6/15/19. -// Copyright © 2019 Vluxe. All rights reserved. -// - -import Foundation - -@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) -public class NativeEngine: NSObject, Engine, URLSessionDataDelegate, URLSessionWebSocketDelegate { - private var task: URLSessionWebSocketTask? - weak var delegate: EngineDelegate? - - public func register(delegate: EngineDelegate) { - self.delegate = delegate - } - - public func start(request: URLRequest) { - let session = URLSession(configuration: URLSessionConfiguration.default, delegate: self, delegateQueue: nil) - task = session.webSocketTask(with: request) - doRead() - task?.resume() - } - - public func stop(closeCode: UInt16) { - let closeCode = URLSessionWebSocketTask.CloseCode(rawValue: Int(closeCode)) ?? .normalClosure - task?.cancel(with: closeCode, reason: nil) - } - - public func forceStop() { - stop(closeCode: UInt16(URLSessionWebSocketTask.CloseCode.abnormalClosure.rawValue)) - } - - public func write(string: String, completion: (() -> ())?) { - task?.send(.string(string), completionHandler: { (error) in - completion?() - }) - } - - public func write(data: Data, opcode: FrameOpCode, completion: (() -> ())?) { - switch opcode { - case .binaryFrame: - task?.send(.data(data), completionHandler: { (error) in - completion?() - }) - case .textFrame: - let text = String(data: data, encoding: .utf8)! - write(string: text, completion: completion) - case .ping: - task?.sendPing(pongReceiveHandler: { (error) in - completion?() - }) - default: - break //unsupported - } - } - - private func doRead() { - task?.receive { [weak self] (result) in - switch result { - case .success(let message): - switch message { - case .string(let string): - self?.broadcast(event: .text(string)) - case .data(let data): - self?.broadcast(event: .binary(data)) - @unknown default: - break - } - break - case .failure(let error): - self?.broadcast(event: .error(error)) - } - self?.doRead() - } - } - - private func broadcast(event: WebSocketEvent) { - delegate?.didReceive(event: event) - } - - public func urlSession(_ session: URLSession, webSocketTask: URLSessionWebSocketTask, didOpenWithProtocol protocol: String?) { - let p = `protocol` ?? "" - broadcast(event: .connected([HTTPWSHeader.protocolName: p])) - } - - public func urlSession(_ session: URLSession, webSocketTask: URLSessionWebSocketTask, didCloseWith closeCode: URLSessionWebSocketTask.CloseCode, reason: Data?) { - var r = "" - if let d = reason { - r = String(data: d, encoding: .utf8) ?? "" - } - broadcast(event: .disconnected(r, UInt16(closeCode.rawValue))) - } -} diff --git a/Pods/Starscream/Sources/Engine/WSEngine.swift b/Pods/Starscream/Sources/Engine/WSEngine.swift deleted file mode 100644 index decca64..0000000 --- a/Pods/Starscream/Sources/Engine/WSEngine.swift +++ /dev/null @@ -1,234 +0,0 @@ -// -// WSEngine.swift -// Starscream -// -// Created by Dalton Cherry on 6/15/19. -// Copyright © 2019 Vluxe. All rights reserved. -// - -import Foundation - -public class WSEngine: Engine, TransportEventClient, FramerEventClient, -FrameCollectorDelegate, HTTPHandlerDelegate { - private let transport: Transport - private let framer: Framer - private let httpHandler: HTTPHandler - private let compressionHandler: CompressionHandler? - private let certPinner: CertificatePinning? - private let headerChecker: HeaderValidator - private var request: URLRequest! - - private let frameHandler = FrameCollector() - private var didUpgrade = false - private var secKeyValue = "" - private let writeQueue = DispatchQueue(label: "com.vluxe.starscream.writequeue") - private let mutex = DispatchSemaphore(value: 1) - private var canSend = false - - weak var delegate: EngineDelegate? - public var respondToPingWithPong: Bool = true - - public init(transport: Transport, - certPinner: CertificatePinning? = nil, - headerValidator: HeaderValidator = FoundationSecurity(), - httpHandler: HTTPHandler = FoundationHTTPHandler(), - framer: Framer = WSFramer(), - compressionHandler: CompressionHandler? = nil) { - self.transport = transport - self.framer = framer - self.httpHandler = httpHandler - self.certPinner = certPinner - self.headerChecker = headerValidator - self.compressionHandler = compressionHandler - framer.updateCompression(supports: compressionHandler != nil) - frameHandler.delegate = self - } - - public func register(delegate: EngineDelegate) { - self.delegate = delegate - } - - public func start(request: URLRequest) { - mutex.wait() - let isConnected = canSend - mutex.signal() - if isConnected { - return - } - - self.request = request - transport.register(delegate: self) - framer.register(delegate: self) - httpHandler.register(delegate: self) - frameHandler.delegate = self - guard let url = request.url else { - return - } - transport.connect(url: url, timeout: request.timeoutInterval, certificatePinning: certPinner) - } - - public func stop(closeCode: UInt16 = CloseCode.normal.rawValue) { - let capacity = MemoryLayout.size - var pointer = [UInt8](repeating: 0, count: capacity) - writeUint16(&pointer, offset: 0, value: closeCode) - let payload = Data(bytes: pointer, count: MemoryLayout.size) - write(data: payload, opcode: .connectionClose, completion: { [weak self] in - self?.reset() - self?.forceStop() - }) - } - - public func forceStop() { - transport.disconnect() - } - - public func write(string: String, completion: (() -> ())?) { - let data = string.data(using: .utf8)! - write(data: data, opcode: .textFrame, completion: completion) - } - - public func write(data: Data, opcode: FrameOpCode, completion: (() -> ())?) { - writeQueue.async { [weak self] in - guard let s = self else { return } - s.mutex.wait() - let canWrite = s.canSend - s.mutex.signal() - if !canWrite { - return - } - - var isCompressed = false - var sendData = data - if let compressedData = s.compressionHandler?.compress(data: data) { - sendData = compressedData - isCompressed = true - } - - let frameData = s.framer.createWriteFrame(opcode: opcode, payload: sendData, isCompressed: isCompressed) - s.transport.write(data: frameData, completion: {_ in - completion?() - }) - } - } - - // MARK: - TransportEventClient - - public func connectionChanged(state: ConnectionState) { - switch state { - case .connected: - secKeyValue = HTTPWSHeader.generateWebSocketKey() - let wsReq = HTTPWSHeader.createUpgrade(request: request, supportsCompression: framer.supportsCompression(), secKeyValue: secKeyValue) - let data = httpHandler.convert(request: wsReq) - transport.write(data: data, completion: {_ in }) - case .waiting: - break - case .failed(let error): - handleError(error) - case .viability(let isViable): - broadcast(event: .viabilityChanged(isViable)) - case .shouldReconnect(let status): - broadcast(event: .reconnectSuggested(status)) - case .receive(let data): - if didUpgrade { - framer.add(data: data) - } else { - let offset = httpHandler.parse(data: data) - if offset > 0 { - let extraData = data.subdata(in: offset.. Data? { - return compressionHandler?.decompress(data: data, isFinal: isFinal) - } - - public func didForm(event: FrameCollector.Event) { - switch event { - case .text(let string): - broadcast(event: .text(string)) - case .binary(let data): - broadcast(event: .binary(data)) - case .pong(let data): - broadcast(event: .pong(data)) - case .ping(let data): - broadcast(event: .ping(data)) - if respondToPingWithPong { - write(data: data ?? Data(), opcode: .pong, completion: nil) - } - case .closed(let reason, let code): - broadcast(event: .disconnected(reason, code)) - stop(closeCode: code) - case .error(let error): - handleError(error) - } - } - - private func broadcast(event: WebSocketEvent) { - delegate?.didReceive(event: event) - } - - //This call can be coming from a lot of different queues/threads. - //be aware of that when modifying shared variables - private func handleError(_ error: Error?) { - if let wsError = error as? WSError { - stop(closeCode: wsError.code) - } else { - stop() - } - - delegate?.didReceive(event: .error(error)) - } - - private func reset() { - mutex.wait() - canSend = false - didUpgrade = false - mutex.signal() - } - - -} diff --git a/Pods/Starscream/Sources/Framer/FoundationHTTPHandler.swift b/Pods/Starscream/Sources/Framer/FoundationHTTPHandler.swift deleted file mode 100644 index fb024aa..0000000 --- a/Pods/Starscream/Sources/Framer/FoundationHTTPHandler.swift +++ /dev/null @@ -1,123 +0,0 @@ -////////////////////////////////////////////////////////////////////////////////////////////////// -// -// FoundationHTTPHandler.swift -// Starscream -// -// Created by Dalton Cherry on 1/25/19. -// Copyright © 2019 Vluxe. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -////////////////////////////////////////////////////////////////////////////////////////////////// - -import Foundation -#if os(watchOS) -public typealias FoundationHTTPHandler = StringHTTPHandler -#else -public class FoundationHTTPHandler: HTTPHandler { - - var buffer = Data() - weak var delegate: HTTPHandlerDelegate? - - public init() { - - } - - public func convert(request: URLRequest) -> Data { - let msg = CFHTTPMessageCreateRequest(kCFAllocatorDefault, request.httpMethod! as CFString, - request.url! as CFURL, kCFHTTPVersion1_1).takeRetainedValue() - if let headers = request.allHTTPHeaderFields { - for (aKey, aValue) in headers { - CFHTTPMessageSetHeaderFieldValue(msg, aKey as CFString, aValue as CFString) - } - } - if let body = request.httpBody { - CFHTTPMessageSetBody(msg, body as CFData) - } - guard let data = CFHTTPMessageCopySerializedMessage(msg) else { - return Data() - } - return data.takeRetainedValue() as Data - } - - public func parse(data: Data) -> Int { - let offset = findEndOfHTTP(data: data) - if offset > 0 { - buffer.append(data.subdata(in: 0.. Bool { - var pointer = [UInt8]() - data.withUnsafeBytes { pointer.append(contentsOf: $0) } - - let response = CFHTTPMessageCreateEmpty(kCFAllocatorDefault, false).takeRetainedValue() - if !CFHTTPMessageAppendBytes(response, pointer, data.count) { - return false //not enough data, wait for more - } - if !CFHTTPMessageIsHeaderComplete(response) { - return false //not enough data, wait for more - } - - let code = CFHTTPMessageGetResponseStatusCode(response) - if code != HTTPWSHeader.switchProtocolCode { - delegate?.didReceiveHTTP(event: .failure(HTTPUpgradeError.notAnUpgrade(code))) - return true - } - - if let cfHeaders = CFHTTPMessageCopyAllHeaderFields(response) { - let nsHeaders = cfHeaders.takeRetainedValue() as NSDictionary - var headers = [String: String]() - for (key, value) in nsHeaders { - if let key = key as? String, let value = value as? String { - headers[key] = value - } - } - delegate?.didReceiveHTTP(event: .success(headers)) - return true - } - - delegate?.didReceiveHTTP(event: .failure(HTTPUpgradeError.invalidData)) - return true - } - - public func register(delegate: HTTPHandlerDelegate) { - self.delegate = delegate - } - - private func findEndOfHTTP(data: Data) -> Int { - let endBytes = [UInt8(ascii: "\r"), UInt8(ascii: "\n"), UInt8(ascii: "\r"), UInt8(ascii: "\n")] - var pointer = [UInt8]() - data.withUnsafeBytes { pointer.append(contentsOf: $0) } - var k = 0 - for i in 0.. Data { - #if os(watchOS) - //TODO: build response header - return Data() - #else - let response = CFHTTPMessageCreateResponse(kCFAllocatorDefault, HTTPWSHeader.switchProtocolCode, - nil, kCFHTTPVersion1_1).takeRetainedValue() - - //TODO: add other values to make a proper response here... - //TODO: also sec key thing (Sec-WebSocket-Key) - for (key, value) in headers { - CFHTTPMessageSetHeaderFieldValue(response, key as CFString, value as CFString) - } - guard let cfData = CFHTTPMessageCopySerializedMessage(response)?.takeRetainedValue() else { - return Data() - } - return cfData as Data - #endif - } - - public func parse(data: Data) { - buffer.append(data) - if parseContent(data: buffer) { - buffer = Data() - } - } - - //returns true when the buffer should be cleared - func parseContent(data: Data) -> Bool { - var pointer = [UInt8]() - data.withUnsafeBytes { pointer.append(contentsOf: $0) } - #if os(watchOS) - //TODO: parse data - return false - #else - let response = CFHTTPMessageCreateEmpty(kCFAllocatorDefault, true).takeRetainedValue() - if !CFHTTPMessageAppendBytes(response, pointer, data.count) { - return false //not enough data, wait for more - } - if !CFHTTPMessageIsHeaderComplete(response) { - return false //not enough data, wait for more - } - if let method = CFHTTPMessageCopyRequestMethod(response)?.takeRetainedValue() { - if (method as NSString) != getVerb { - delegate?.didReceive(event: .failure(HTTPUpgradeError.invalidData)) - return true - } - } - - if let cfHeaders = CFHTTPMessageCopyAllHeaderFields(response) { - let nsHeaders = cfHeaders.takeRetainedValue() as NSDictionary - var headers = [String: String]() - for (key, value) in nsHeaders { - if let key = key as? String, let value = value as? String { - headers[key] = value - } - } - delegate?.didReceive(event: .success(headers)) - return true - } - - delegate?.didReceive(event: .failure(HTTPUpgradeError.invalidData)) - return true - #endif - } -} diff --git a/Pods/Starscream/Sources/Framer/FrameCollector.swift b/Pods/Starscream/Sources/Framer/FrameCollector.swift deleted file mode 100644 index 3ec1084..0000000 --- a/Pods/Starscream/Sources/Framer/FrameCollector.swift +++ /dev/null @@ -1,107 +0,0 @@ -////////////////////////////////////////////////////////////////////////////////////////////////// -// -// FrameCollector.swift -// Starscream -// -// Created by Dalton Cherry on 1/24/19. -// Copyright © 2019 Vluxe. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -////////////////////////////////////////////////////////////////////////////////////////////////// - -import Foundation - -public protocol FrameCollectorDelegate: class { - func didForm(event: FrameCollector.Event) - func decompress(data: Data, isFinal: Bool) -> Data? -} - -public class FrameCollector { - public enum Event { - case text(String) - case binary(Data) - case pong(Data?) - case ping(Data?) - case error(Error) - case closed(String, UInt16) - } - weak var delegate: FrameCollectorDelegate? - var buffer = Data() - var frameCount = 0 - var isText = false //was the first frame a text frame or a binary frame? - var needsDecompression = false - - public func add(frame: Frame) { - //check single frame action and out of order frames - if frame.opcode == .connectionClose { - var code = frame.closeCode - var reason = "connection closed by server" - if let customCloseReason = String(data: frame.payload, encoding: .utf8) { - reason = customCloseReason - } else { - code = CloseCode.protocolError.rawValue - } - delegate?.didForm(event: .closed(reason, code)) - return - } else if frame.opcode == .pong { - delegate?.didForm(event: .pong(frame.payload)) - return - } else if frame.opcode == .ping { - delegate?.didForm(event: .ping(frame.payload)) - return - } else if frame.opcode == .continueFrame && frameCount == 0 { - let errCode = CloseCode.protocolError.rawValue - delegate?.didForm(event: .error(WSError(type: .protocolError, message: "first frame can't be a continue frame", code: errCode))) - reset() - return - } else if frameCount > 0 && frame.opcode != .continueFrame { - let errCode = CloseCode.protocolError.rawValue - delegate?.didForm(event: .error(WSError(type: .protocolError, message: "second and beyond of fragment message must be a continue frame", code: errCode))) - reset() - return - } - if frameCount == 0 { - isText = frame.opcode == .textFrame - needsDecompression = frame.needsDecompression - } - - let payload: Data - if needsDecompression { - payload = delegate?.decompress(data: frame.payload, isFinal: frame.isFin) ?? frame.payload - } else { - payload = frame.payload - } - buffer.append(payload) - frameCount += 1 - - if frame.isFin { - if isText { - if let string = String(data: buffer, encoding: .utf8) { - delegate?.didForm(event: .text(string)) - } else { - let errCode = CloseCode.protocolError.rawValue - delegate?.didForm(event: .error(WSError(type: .protocolError, message: "not valid UTF-8 data", code: errCode))) - } - } else { - delegate?.didForm(event: .binary(buffer)) - } - reset() - } - } - - func reset() { - buffer = Data() - frameCount = 0 - } -} diff --git a/Pods/Starscream/Sources/Framer/Framer.swift b/Pods/Starscream/Sources/Framer/Framer.swift deleted file mode 100644 index f77d5b8..0000000 --- a/Pods/Starscream/Sources/Framer/Framer.swift +++ /dev/null @@ -1,365 +0,0 @@ -////////////////////////////////////////////////////////////////////////////////////////////////// -// -// Framer.swift -// Starscream -// -// Created by Dalton Cherry on 1/23/19. -// Copyright © 2019 Vluxe. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -////////////////////////////////////////////////////////////////////////////////////////////////// - -import Foundation - -let FinMask: UInt8 = 0x80 -let OpCodeMask: UInt8 = 0x0F -let RSVMask: UInt8 = 0x70 -let RSV1Mask: UInt8 = 0x40 -let MaskMask: UInt8 = 0x80 -let PayloadLenMask: UInt8 = 0x7F -let MaxFrameSize: Int = 32 - -// Standard WebSocket close codes -public enum CloseCode: UInt16 { - case normal = 1000 - case goingAway = 1001 - case protocolError = 1002 - case protocolUnhandledType = 1003 - // 1004 reserved. - case noStatusReceived = 1005 - //1006 reserved. - case encoding = 1007 - case policyViolated = 1008 - case messageTooBig = 1009 -} - -public enum FrameOpCode: UInt8 { - case continueFrame = 0x0 - case textFrame = 0x1 - case binaryFrame = 0x2 - // 3-7 are reserved. - case connectionClose = 0x8 - case ping = 0x9 - case pong = 0xA - // B-F reserved. - case unknown = 100 -} - -public struct Frame { - let isFin: Bool - let needsDecompression: Bool - let isMasked: Bool - let opcode: FrameOpCode - let payloadLength: UInt64 - let payload: Data - let closeCode: UInt16 //only used by connectionClose opcode -} - -public enum FrameEvent { - case frame(Frame) - case error(Error) -} - -public protocol FramerEventClient: class { - func frameProcessed(event: FrameEvent) -} - -public protocol Framer { - func add(data: Data) - func register(delegate: FramerEventClient) - func createWriteFrame(opcode: FrameOpCode, payload: Data, isCompressed: Bool) -> Data - func updateCompression(supports: Bool) - func supportsCompression() -> Bool -} - -public class WSFramer: Framer { - private let queue = DispatchQueue(label: "com.vluxe.starscream.wsframer", attributes: []) - private weak var delegate: FramerEventClient? - private var buffer = Data() - public var compressionEnabled = false - private let isServer: Bool - - public init(isServer: Bool = false) { - self.isServer = isServer - } - - public func updateCompression(supports: Bool) { - compressionEnabled = supports - } - - public func supportsCompression() -> Bool { - return compressionEnabled - } - - enum ProcessEvent { - case needsMoreData - case processedFrame(Frame, Int) - case failed(Error) - } - - public func add(data: Data) { - queue.async { [weak self] in - self?.buffer.append(data) - while(true) { - let event = self?.process() ?? .needsMoreData - switch event { - case .needsMoreData: - return - case .processedFrame(let frame, let split): - guard let s = self else { return } - s.delegate?.frameProcessed(event: .frame(frame)) - if split >= s.buffer.count { - s.buffer = Data() - return - } - s.buffer = s.buffer.advanced(by: split) - case .failed(let error): - self?.delegate?.frameProcessed(event: .error(error)) - self?.buffer = Data() - return - } - } - } - } - - public func register(delegate: FramerEventClient) { - self.delegate = delegate - } - - private func process() -> ProcessEvent { - if buffer.count < 2 { - return .needsMoreData - } - var pointer = [UInt8]() - buffer.withUnsafeBytes { pointer.append(contentsOf: $0) } - - let isFin = (FinMask & pointer[0]) - let opcodeRawValue = (OpCodeMask & pointer[0]) - let opcode = FrameOpCode(rawValue: opcodeRawValue) ?? .unknown - let isMasked = (MaskMask & pointer[1]) - let payloadLen = (PayloadLenMask & pointer[1]) - let RSV1 = (RSVMask & pointer[0]) - var needsDecompression = false - - if compressionEnabled && opcode != .continueFrame { - needsDecompression = (RSV1Mask & pointer[0]) > 0 - } - if !isServer && (isMasked > 0 || RSV1 > 0) && opcode != .pong && !needsDecompression { - let errCode = CloseCode.protocolError.rawValue - return .failed(WSError(type: .protocolError, message: "masked and rsv data is not currently supported", code: errCode)) - } - let isControlFrame = (opcode == .connectionClose || opcode == .ping) - if !isControlFrame && (opcode != .binaryFrame && opcode != .continueFrame && - opcode != .textFrame && opcode != .pong) { - let errCode = CloseCode.protocolError.rawValue - return .failed(WSError(type: .protocolError, message: "unknown opcode: \(opcodeRawValue)", code: errCode)) - } - if isControlFrame && isFin == 0 { - let errCode = CloseCode.protocolError.rawValue - return .failed(WSError(type: .protocolError, message: "control frames can't be fragmented", code: errCode)) - } - - var offset = 2 - - if isControlFrame && payloadLen > 125 { - return .failed(WSError(type: .protocolError, message: "payload length is longer than allowed for a control frame", code: CloseCode.protocolError.rawValue)) - } - - var dataLength = UInt64(payloadLen) - var closeCode = CloseCode.normal.rawValue - if opcode == .connectionClose { - if payloadLen == 1 { - closeCode = CloseCode.protocolError.rawValue - dataLength = 0 - } else if payloadLen > 1 { - if pointer.count < 4 { - return .needsMoreData - } - let size = MemoryLayout.size - closeCode = pointer.readUint16(offset: offset) - offset += size - dataLength -= UInt64(size) - if closeCode < 1000 || (closeCode > 1003 && closeCode < 1007) || (closeCode > 1013 && closeCode < 3000) { - closeCode = CloseCode.protocolError.rawValue - } - } - } - - if payloadLen == 127 { - let size = MemoryLayout.size - if size + offset > pointer.count { - return .needsMoreData - } - dataLength = pointer.readUint64(offset: offset) - offset += size - } else if payloadLen == 126 { - let size = MemoryLayout.size - if size + offset > pointer.count { - return .needsMoreData - } - dataLength = UInt64(pointer.readUint16(offset: offset)) - offset += size - } - - let maskStart = offset - if isServer { - offset += MemoryLayout.size - } - - if dataLength > (pointer.count - offset) { - return .needsMoreData - } - - //I don't like this cast, but Data's count returns an Int. - //Might be a problem with huge payloads. Need to revisit. - let readDataLength = Int(dataLength) - - let payload: Data - if readDataLength == 0 { - payload = Data() - } else { - if isServer { - payload = pointer.unmaskData(maskStart: maskStart, offset: offset, length: readDataLength) - } else { - let end = offset + readDataLength - payload = Data(pointer[offset.. 0, needsDecompression: needsDecompression, isMasked: isMasked > 0, opcode: opcode, payloadLength: dataLength, payload: payload, closeCode: closeCode) - return .processedFrame(frame, offset) - } - - public func createWriteFrame(opcode: FrameOpCode, payload: Data, isCompressed: Bool) -> Data { - let payloadLength = payload.count - - let capacity = payloadLength + MaxFrameSize - var pointer = [UInt8](repeating: 0, count: capacity) - - //set the framing info - pointer[0] = FinMask | opcode.rawValue - if isCompressed { - pointer[0] |= RSV1Mask - } - - var offset = 2 //skip pass the framing info - if payloadLength < 126 { - pointer[1] = UInt8(payloadLength) - } else if payloadLength <= Int(UInt16.max) { - pointer[1] = 126 - writeUint16(&pointer, offset: offset, value: UInt16(payloadLength)) - offset += MemoryLayout.size - } else { - pointer[1] = 127 - writeUint64(&pointer, offset: offset, value: UInt64(payloadLength)) - offset += MemoryLayout.size - } - - //clients are required to mask the payload data, but server don't according to the RFC - if !isServer { - pointer[1] |= MaskMask - - //write the random mask key in - let maskKey: UInt32 = UInt32.random(in: 0...UInt32.max) - - writeUint32(&pointer, offset: offset, value: maskKey) - let maskStart = offset - offset += MemoryLayout.size - - //now write the payload data in - for i in 0...size)] - offset += 1 - } - } else { - for i in 0.. UInt16 { - return (UInt16(self[offset + 0]) << 8) | UInt16(self[offset + 1]) - } - - /** - Read a UInt64 from a buffer. - - parameter offset: is the offset index to start the read from (e.g. buffer[0], buffer[1], etc). - - returns: a UInt64 of the value from the buffer - */ - func readUint64(offset: Int) -> UInt64 { - var value = UInt64(0) - for i in 0...7 { - value = (value << 8) | UInt64(self[offset + i]) - } - return value - } - - func unmaskData(maskStart: Int, offset: Int, length: Int) -> Data { - var unmaskedBytes = [UInt8](repeating: 0, count: length) - let maskSize = MemoryLayout.size - for i in 0..> 8) - buffer[offset + 1] = UInt8(value & 0xff) -} - -/** - Write a UInt32 to the buffer. It fills the 4 array "slots" of the UInt8 array. - - parameter buffer: is the UInt8 array (pointer) to write the value too. - - parameter offset: is the offset index to start the write from (e.g. buffer[0], buffer[1], etc). - */ -public func writeUint32( _ buffer: inout [UInt8], offset: Int, value: UInt32) { - for i in 0...3 { - buffer[offset + i] = UInt8((value >> (8*UInt32(3 - i))) & 0xff) - } -} - -/** - Write a UInt64 to the buffer. It fills the 8 array "slots" of the UInt8 array. - - parameter buffer: is the UInt8 array (pointer) to write the value too. - - parameter offset: is the offset index to start the write from (e.g. buffer[0], buffer[1], etc). - */ -public func writeUint64( _ buffer: inout [UInt8], offset: Int, value: UInt64) { - for i in 0...7 { - buffer[offset + i] = UInt8((value >> (8*UInt64(7 - i))) & 0xff) - } -} diff --git a/Pods/Starscream/Sources/Framer/HTTPHandler.swift b/Pods/Starscream/Sources/Framer/HTTPHandler.swift deleted file mode 100644 index 70941e7..0000000 --- a/Pods/Starscream/Sources/Framer/HTTPHandler.swift +++ /dev/null @@ -1,148 +0,0 @@ -////////////////////////////////////////////////////////////////////////////////////////////////// -// -// HTTPHandler.swift -// Starscream -// -// Created by Dalton Cherry on 1/24/19. -// Copyright © 2019 Vluxe. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -////////////////////////////////////////////////////////////////////////////////////////////////// - -import Foundation - -public enum HTTPUpgradeError: Error { - case notAnUpgrade(Int) - case invalidData -} - -public struct HTTPWSHeader { - static let upgradeName = "Upgrade" - static let upgradeValue = "websocket" - static let hostName = "Host" - static let connectionName = "Connection" - static let connectionValue = "Upgrade" - static let protocolName = "Sec-WebSocket-Protocol" - static let versionName = "Sec-WebSocket-Version" - static let versionValue = "13" - static let extensionName = "Sec-WebSocket-Extensions" - static let keyName = "Sec-WebSocket-Key" - static let originName = "Origin" - static let acceptName = "Sec-WebSocket-Accept" - static let switchProtocolCode = 101 - static let defaultSSLSchemes = ["wss", "https"] - - /// Creates a new URLRequest based off the source URLRequest. - /// - Parameter request: the request to "upgrade" the WebSocket request by adding headers. - /// - Parameter supportsCompression: set if the client support text compression. - /// - Parameter secKeyName: the security key to use in the WebSocket request. https://tools.ietf.org/html/rfc6455#section-1.3 - /// - returns: A URLRequest request to be converted to data and sent to the server. - public static func createUpgrade(request: URLRequest, supportsCompression: Bool, secKeyValue: String) -> URLRequest { - guard let url = request.url, let parts = url.getParts() else { - return request - } - - var req = request - if request.value(forHTTPHeaderField: HTTPWSHeader.originName) == nil { - var origin = url.absoluteString - if let hostUrl = URL (string: "/", relativeTo: url) { - origin = hostUrl.absoluteString - origin.remove(at: origin.index(before: origin.endIndex)) - } - req.setValue(origin, forHTTPHeaderField: HTTPWSHeader.originName) - } - req.setValue(HTTPWSHeader.upgradeValue, forHTTPHeaderField: HTTPWSHeader.upgradeName) - req.setValue(HTTPWSHeader.connectionValue, forHTTPHeaderField: HTTPWSHeader.connectionName) - req.setValue(HTTPWSHeader.versionValue, forHTTPHeaderField: HTTPWSHeader.versionName) - req.setValue(secKeyValue, forHTTPHeaderField: HTTPWSHeader.keyName) - - if let cookies = HTTPCookieStorage.shared.cookies(for: url), !cookies.isEmpty { - let headers = HTTPCookie.requestHeaderFields(with: cookies) - for (key, val) in headers { - req.setValue(val, forHTTPHeaderField: key) - } - } - - if supportsCompression { - let val = "permessage-deflate; client_max_window_bits; server_max_window_bits=15" - req.setValue(val, forHTTPHeaderField: HTTPWSHeader.extensionName) - } - let hostValue = req.allHTTPHeaderFields?[HTTPWSHeader.hostName] ?? "\(parts.host):\(parts.port)" - req.setValue(hostValue, forHTTPHeaderField: HTTPWSHeader.hostName) - return req - } - - // generateWebSocketKey 16 random characters between a-z and return them as a base64 string - public static func generateWebSocketKey() -> String { - return Data((0..<16).map{ _ in UInt8.random(in: 97...122) }).base64EncodedString() - } -} - -public enum HTTPEvent { - case success([String: String]) - case failure(Error) -} - -public protocol HTTPHandlerDelegate: class { - func didReceiveHTTP(event: HTTPEvent) -} - -public protocol HTTPHandler { - func register(delegate: HTTPHandlerDelegate) - func convert(request: URLRequest) -> Data - func parse(data: Data) -> Int -} - -public protocol HTTPServerDelegate: class { - func didReceive(event: HTTPEvent) -} - -public protocol HTTPServerHandler { - func register(delegate: HTTPServerDelegate) - func parse(data: Data) - func createResponse(headers: [String: String]) -> Data -} - -public struct URLParts { - let port: Int - let host: String - let isTLS: Bool -} - -public extension URL { - /// isTLSScheme returns true if the scheme is https or wss - var isTLSScheme: Bool { - guard let scheme = self.scheme else { - return false - } - return HTTPWSHeader.defaultSSLSchemes.contains(scheme) - } - - /// getParts pulls host and port from the url. - func getParts() -> URLParts? { - guard let host = self.host else { - return nil // no host, this isn't a valid url - } - let isTLS = isTLSScheme - var port = self.port ?? 0 - if self.port == nil { - if isTLS { - port = 443 - } else { - port = 80 - } - } - return URLParts(port: port, host: host, isTLS: isTLS) - } -} diff --git a/Pods/Starscream/Sources/Framer/StringHTTPHandler.swift b/Pods/Starscream/Sources/Framer/StringHTTPHandler.swift deleted file mode 100644 index 33f5f9b..0000000 --- a/Pods/Starscream/Sources/Framer/StringHTTPHandler.swift +++ /dev/null @@ -1,143 +0,0 @@ -////////////////////////////////////////////////////////////////////////////////////////////////// -// -// StringHTTPHandler.swift -// Starscream -// -// Created by Dalton Cherry on 8/25/19. -// Copyright © 2019 Vluxe. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -////////////////////////////////////////////////////////////////////////////////////////////////// - -import Foundation - -public class StringHTTPHandler: HTTPHandler { - - var buffer = Data() - weak var delegate: HTTPHandlerDelegate? - - public init() { - - } - - public func convert(request: URLRequest) -> Data { - guard let url = request.url else { - return Data() - } - - var path = url.absoluteString - let offset = (url.scheme?.count ?? 2) + 3 - path = String(path[path.index(path.startIndex, offsetBy: offset).. Int { - let offset = findEndOfHTTP(data: data) - if offset > 0 { - buffer.append(data.subdata(in: 0.. Bool { - guard let str = String(data: data, encoding: .utf8) else { - delegate?.didReceiveHTTP(event: .failure(HTTPUpgradeError.invalidData)) - return true - } - let splitArr = str.components(separatedBy: "\r\n") - var code = -1 - var i = 0 - var headers = [String: String]() - for str in splitArr { - if i == 0 { - let responseSplit = str.components(separatedBy: .whitespaces) - guard responseSplit.count > 1 else { - delegate?.didReceiveHTTP(event: .failure(HTTPUpgradeError.invalidData)) - return true - } - if let c = Int(responseSplit[1]) { - code = c - } - } else { - guard let separatorIndex = str.firstIndex(of: ":") else { break } - let key = str.prefix(upTo: separatorIndex).trimmingCharacters(in: .whitespaces) - let val = str.suffix(from: str.index(after: separatorIndex)).trimmingCharacters(in: .whitespaces) - headers[key.lowercased()] = val - } - i += 1 - } - - if code != HTTPWSHeader.switchProtocolCode { - delegate?.didReceiveHTTP(event: .failure(HTTPUpgradeError.notAnUpgrade(code))) - return true - } - - delegate?.didReceiveHTTP(event: .success(headers)) - return true - } - - public func register(delegate: HTTPHandlerDelegate) { - self.delegate = delegate - } - - private func findEndOfHTTP(data: Data) -> Int { - let endBytes = [UInt8(ascii: "\r"), UInt8(ascii: "\n"), UInt8(ascii: "\r"), UInt8(ascii: "\n")] - var pointer = [UInt8]() - data.withUnsafeBytes { pointer.append(contentsOf: $0) } - var k = 0 - for i in 0.. ())) { - if allowSelfSigned { - completion(.success) - return - } - - if let validateDomain = domain { - SecTrustSetPolicies(trust, SecPolicyCreateSSL(true, validateDomain as NSString?)) - } - - handleSecurityTrust(trust: trust, completion: completion) - } - - private func handleSecurityTrust(trust: SecTrust, completion: ((PinningState) -> ())) { - if #available(iOS 12.0, OSX 10.14, watchOS 5.0, tvOS 12.0, *) { - var error: CFError? - if SecTrustEvaluateWithError(trust, &error) { - completion(.success) - } else { - completion(.failed(error)) - } - } else { - handleOldSecurityTrust(trust: trust, completion: completion) - } - } - - private func handleOldSecurityTrust(trust: SecTrust, completion: ((PinningState) -> ())) { - var result: SecTrustResultType = .unspecified - SecTrustEvaluate(trust, &result) - if result == .unspecified || result == .proceed { - completion(.success) - } else { - let e = CFErrorCreate(kCFAllocatorDefault, "FoundationSecurityError" as NSString?, Int(result.rawValue), nil) - completion(.failed(e)) - } - } -} - -extension FoundationSecurity: HeaderValidator { - public func validate(headers: [String: String], key: String) -> Error? { - if let acceptKey = headers[HTTPWSHeader.acceptName] { - let sha = "\(key)258EAFA5-E914-47DA-95CA-C5AB0DC85B11".sha1Base64() - if sha != acceptKey { - return WSError(type: .securityError, message: "accept header doesn't match", code: SecurityErrorCode.acceptFailed.rawValue) - } - } - return nil - } -} - -private extension String { - func sha1Base64() -> String { - let data = self.data(using: .utf8)! - let pointer = data.withUnsafeBytes { (bytes: UnsafeRawBufferPointer) -> [UInt8] in - var digest = [UInt8](repeating: 0, count:Int(CC_SHA1_DIGEST_LENGTH)) - CC_SHA1(bytes.baseAddress, CC_LONG(data.count), &digest) - return digest - } - return Data(pointer).base64EncodedString() - } -} diff --git a/Pods/Starscream/Sources/Security/Security.swift b/Pods/Starscream/Sources/Security/Security.swift deleted file mode 100644 index a64a771..0000000 --- a/Pods/Starscream/Sources/Security/Security.swift +++ /dev/null @@ -1,45 +0,0 @@ -////////////////////////////////////////////////////////////////////////////////////////////////// -// -// Security.swift -// Starscream -// -// Created by Dalton Cherry on 3/16/19. -// Copyright © 2019 Vluxe. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -////////////////////////////////////////////////////////////////////////////////////////////////// - -import Foundation - -public enum SecurityErrorCode: UInt16 { - case acceptFailed = 1 - case pinningFailed = 2 -} - -public enum PinningState { - case success - case failed(CFError?) -} - -// CertificatePinning protocol provides an interface for Transports to handle Certificate -// or Public Key Pinning. -public protocol CertificatePinning: class { - func evaluateTrust(trust: SecTrust, domain: String?, completion: ((PinningState) -> ())) -} - -// validates the "Sec-WebSocket-Accept" header as defined 1.3 of the RFC 6455 -// https://tools.ietf.org/html/rfc6455#section-1.3 -public protocol HeaderValidator: class { - func validate(headers: [String: String], key: String) -> Error? -} diff --git a/Pods/Starscream/Sources/Server/Server.swift b/Pods/Starscream/Sources/Server/Server.swift deleted file mode 100644 index 527c851..0000000 --- a/Pods/Starscream/Sources/Server/Server.swift +++ /dev/null @@ -1,56 +0,0 @@ -////////////////////////////////////////////////////////////////////////////////////////////////// -// -// Server.swift -// Starscream -// -// Created by Dalton Cherry on 4/2/19. -// Copyright © 2019 Vluxe. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -////////////////////////////////////////////////////////////////////////////////////////////////// - -import Foundation - -public enum ConnectionEvent { - case connected([String: String]) - case disconnected(String, UInt16) - case text(String) - case binary(Data) - case pong(Data?) - case ping(Data?) - case error(Error) -} - -public protocol Connection { - func write(data: Data, opcode: FrameOpCode) -} - -public protocol ConnectionDelegate: class { - func didReceive(event: ServerEvent) -} - -public enum ServerEvent { - case connected(Connection, [String: String]) - case disconnected(Connection, String, UInt16) - case text(Connection, String) - case binary(Connection, Data) - case pong(Connection, Data?) - case ping(Connection, Data?) -} - -public protocol Server { - func start(address: String, port: UInt16) -> Error? -} - - diff --git a/Pods/Starscream/Sources/Server/WebSocketServer.swift b/Pods/Starscream/Sources/Server/WebSocketServer.swift deleted file mode 100644 index 4d3b9af..0000000 --- a/Pods/Starscream/Sources/Server/WebSocketServer.swift +++ /dev/null @@ -1,196 +0,0 @@ -////////////////////////////////////////////////////////////////////////////////////////////////// -// -// WebSocketServer.swift -// Starscream -// -// Created by Dalton Cherry on 4/5/19. -// Copyright © 2019 Vluxe. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -////////////////////////////////////////////////////////////////////////////////////////////////// - -#if canImport(Network) -import Foundation -import Network - -/// WebSocketServer is a Network.framework implementation of a WebSocket server -@available(watchOS, unavailable) -@available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) -public class WebSocketServer: Server, ConnectionDelegate { - public var onEvent: ((ServerEvent) -> Void)? - private var connections = [String: ServerConnection]() - private var listener: NWListener? - private let queue = DispatchQueue(label: "com.vluxe.starscream.server.networkstream", attributes: []) - - public init() { - - } - - public func start(address: String, port: UInt16) -> Error? { - //TODO: support TLS cert adding/binding - let parameters = NWParameters(tls: nil, tcp: NWProtocolTCP.Options()) - let p = NWEndpoint.Port(rawValue: port)! - parameters.requiredLocalEndpoint = NWEndpoint.hostPort(host: NWEndpoint.Host.name(address, nil), port: p) - - guard let listener = try? NWListener(using: parameters, on: p) else { - return WSError(type: .serverError, message: "unable to start the listener at: \(address):\(port)", code: 0) - } - listener.newConnectionHandler = {[weak self] conn in - let transport = TCPTransport(connection: conn) - let c = ServerConnection(transport: transport) - c.delegate = self - self?.connections[c.uuid] = c - } -// listener.stateUpdateHandler = { state in -// switch state { -// case .ready: -// print("ready to get sockets!") -// case .setup: -// print("setup to get sockets!") -// case .cancelled: -// print("server cancelled!") -// case .waiting(let error): -// print("waiting error: \(error)") -// case .failed(let error): -// print("server failed: \(error)") -// @unknown default: -// print("wat?") -// } -// } - self.listener = listener - listener.start(queue: queue) - return nil - } - - public func didReceive(event: ServerEvent) { - onEvent?(event) - switch event { - case .disconnected(let conn, _, _): - guard let conn = conn as? ServerConnection else { - return - } - connections.removeValue(forKey: conn.uuid) - default: - break - } - } -} - -@available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) -public class ServerConnection: Connection, HTTPServerDelegate, FramerEventClient, FrameCollectorDelegate, TransportEventClient { - let transport: TCPTransport - private let httpHandler = FoundationHTTPServerHandler() - private let framer = WSFramer(isServer: true) - private let frameHandler = FrameCollector() - private var didUpgrade = false - public var onEvent: ((ConnectionEvent) -> Void)? - public weak var delegate: ConnectionDelegate? - private let id: String - var uuid: String { - return id - } - - init(transport: TCPTransport) { - self.id = UUID().uuidString - self.transport = transport - transport.register(delegate: self) - httpHandler.register(delegate: self) - framer.register(delegate: self) - frameHandler.delegate = self - } - - public func write(data: Data, opcode: FrameOpCode) { - let wsData = framer.createWriteFrame(opcode: opcode, payload: data, isCompressed: false) - transport.write(data: wsData, completion: {_ in }) - } - - // MARK: - TransportEventClient - - public func connectionChanged(state: ConnectionState) { - switch state { - case .connected: - break - case .waiting: - break - case .failed(let error): - print("server connection error: \(error ?? WSError(type: .protocolError, message: "default error, no extra data", code: 0))") //handleError(error) - case .viability(_): - break - case .shouldReconnect(_): - break - case .receive(let data): - if didUpgrade { - framer.add(data: data) - } else { - httpHandler.parse(data: data) - } - case .cancelled: - print("server connection cancelled!") - //broadcast(event: .cancelled) - } - } - - /// MARK: - HTTPServerDelegate - - public func didReceive(event: HTTPEvent) { - switch event { - case .success(let headers): - didUpgrade = true - let response = httpHandler.createResponse(headers: [:]) - transport.write(data: response, completion: {_ in }) - delegate?.didReceive(event: .connected(self, headers)) - onEvent?(.connected(headers)) - case .failure(let error): - onEvent?(.error(error)) - } - } - - /// MARK: - FrameCollectorDelegate - - public func frameProcessed(event: FrameEvent) { - switch event { - case .frame(let frame): - frameHandler.add(frame: frame) - case .error(let error): - onEvent?(.error(error)) - } - } - - public func didForm(event: FrameCollector.Event) { - switch event { - case .text(let string): - delegate?.didReceive(event: .text(self, string)) - onEvent?(.text(string)) - case .binary(let data): - delegate?.didReceive(event: .binary(self, data)) - onEvent?(.binary(data)) - case .pong(let data): - delegate?.didReceive(event: .pong(self, data)) - onEvent?(.pong(data)) - case .ping(let data): - delegate?.didReceive(event: .ping(self, data)) - onEvent?(.ping(data)) - case .closed(let reason, let code): - delegate?.didReceive(event: .disconnected(self, reason, code)) - onEvent?(.disconnected(reason, code)) - case .error(let error): - onEvent?(.error(error)) - } - } - - public func decompress(data: Data, isFinal: Bool) -> Data? { - return nil - } -} -#endif diff --git a/Pods/Starscream/Sources/Starscream/WebSocket.swift b/Pods/Starscream/Sources/Starscream/WebSocket.swift deleted file mode 100644 index 1d3545c..0000000 --- a/Pods/Starscream/Sources/Starscream/WebSocket.swift +++ /dev/null @@ -1,178 +0,0 @@ -////////////////////////////////////////////////////////////////////////////////////////////////// -// -// Websocket.swift -// Starscream -// -// Created by Dalton Cherry on 7/16/14. -// Copyright (c) 2014-2019 Dalton Cherry. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -////////////////////////////////////////////////////////////////////////////////////////////////// - -import Foundation - -public enum ErrorType: Error { - case compressionError - case securityError - case protocolError //There was an error parsing the WebSocket frames - case serverError -} - -public struct WSError: Error { - public let type: ErrorType - public let message: String - public let code: UInt16 - - public init(type: ErrorType, message: String, code: UInt16) { - self.type = type - self.message = message - self.code = code - } -} - -public protocol WebSocketClient: class { - func connect() - func disconnect(closeCode: UInt16) - func write(string: String, completion: (() -> ())?) - func write(stringData: Data, completion: (() -> ())?) - func write(data: Data, completion: (() -> ())?) - func write(ping: Data, completion: (() -> ())?) - func write(pong: Data, completion: (() -> ())?) -} - -//implements some of the base behaviors -extension WebSocketClient { - public func write(string: String) { - write(string: string, completion: nil) - } - - public func write(data: Data) { - write(data: data, completion: nil) - } - - public func write(ping: Data) { - write(ping: ping, completion: nil) - } - - public func write(pong: Data) { - write(pong: pong, completion: nil) - } - - public func disconnect() { - disconnect(closeCode: CloseCode.normal.rawValue) - } -} - -public enum WebSocketEvent { - case connected([String: String]) - case disconnected(String, UInt16) - case text(String) - case binary(Data) - case pong(Data?) - case ping(Data?) - case error(Error?) - case viabilityChanged(Bool) - case reconnectSuggested(Bool) - case cancelled -} - -public protocol WebSocketDelegate: class { - func didReceive(event: WebSocketEvent, client: WebSocket) -} - -open class WebSocket: WebSocketClient, EngineDelegate { - private let engine: Engine - public weak var delegate: WebSocketDelegate? - public var onEvent: ((WebSocketEvent) -> Void)? - - public var request: URLRequest - // Where the callback is executed. It defaults to the main UI thread queue. - public var callbackQueue = DispatchQueue.main - public var respondToPingWithPong: Bool { - set { - guard let e = engine as? WSEngine else { return } - e.respondToPingWithPong = newValue - } - get { - guard let e = engine as? WSEngine else { return true } - return e.respondToPingWithPong - } - } - - // serial write queue to ensure writes happen in order - private let writeQueue = DispatchQueue(label: "com.vluxe.starscream.writequeue") - private var canSend = false - private let mutex = DispatchSemaphore(value: 1) - - public init(request: URLRequest, engine: Engine) { - self.request = request - self.engine = engine - } - - public convenience init(request: URLRequest, certPinner: CertificatePinning? = FoundationSecurity(), compressionHandler: CompressionHandler? = nil, useCustomEngine: Bool = true) { - if #available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *), !useCustomEngine { - self.init(request: request, engine: NativeEngine()) - } else if #available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) { - self.init(request: request, engine: WSEngine(transport: TCPTransport(), certPinner: certPinner, compressionHandler: compressionHandler)) - } else { - self.init(request: request, engine: WSEngine(transport: FoundationTransport(), certPinner: certPinner, compressionHandler: compressionHandler)) - } - } - - public func connect() { - engine.register(delegate: self) - engine.start(request: request) - } - - public func disconnect(closeCode: UInt16 = CloseCode.normal.rawValue) { - engine.stop(closeCode: closeCode) - } - - public func forceDisconnect() { - engine.forceStop() - } - - public func write(data: Data, completion: (() -> ())?) { - write(data: data, opcode: .binaryFrame, completion: completion) - } - - public func write(string: String, completion: (() -> ())?) { - engine.write(string: string, completion: completion) - } - - public func write(stringData: Data, completion: (() -> ())?) { - write(data: stringData, opcode: .textFrame, completion: completion) - } - - public func write(ping: Data, completion: (() -> ())?) { - write(data: ping, opcode: .ping, completion: completion) - } - - public func write(pong: Data, completion: (() -> ())?) { - write(data: pong, opcode: .pong, completion: completion) - } - - private func write(data: Data, opcode: FrameOpCode, completion: (() -> ())?) { - engine.write(data: data, opcode: opcode, completion: completion) - } - - // MARK: - EngineDelegate - public func didReceive(event: WebSocketEvent) { - callbackQueue.async { [weak self] in - guard let s = self else { return } - s.delegate?.didReceive(event: event, client: s) - s.onEvent?(event) - } - } -} diff --git a/Pods/Starscream/Sources/Transport/FoundationTransport.swift b/Pods/Starscream/Sources/Transport/FoundationTransport.swift deleted file mode 100644 index 8d304f8..0000000 --- a/Pods/Starscream/Sources/Transport/FoundationTransport.swift +++ /dev/null @@ -1,218 +0,0 @@ -////////////////////////////////////////////////////////////////////////////////////////////////// -// -// FoundationTransport.swift -// Starscream -// -// Created by Dalton Cherry on 1/23/19. -// Copyright © 2019 Vluxe. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -////////////////////////////////////////////////////////////////////////////////////////////////// - -import Foundation - -public enum FoundationTransportError: Error { - case invalidRequest - case invalidOutputStream - case timeout -} - -public class FoundationTransport: NSObject, Transport, StreamDelegate { - private weak var delegate: TransportEventClient? - private let workQueue = DispatchQueue(label: "com.vluxe.starscream.websocket", attributes: []) - private var inputStream: InputStream? - private var outputStream: OutputStream? - private var isOpen = false - private var onConnect: ((InputStream, OutputStream) -> Void)? - private var isTLS = false - private var certPinner: CertificatePinning? - - public var usingTLS: Bool { - return self.isTLS - } - - public init(streamConfiguration: ((InputStream, OutputStream) -> Void)? = nil) { - super.init() - onConnect = streamConfiguration - } - - deinit { - inputStream?.delegate = nil - outputStream?.delegate = nil - } - - public func connect(url: URL, timeout: Double = 10, certificatePinning: CertificatePinning? = nil) { - guard let parts = url.getParts() else { - delegate?.connectionChanged(state: .failed(FoundationTransportError.invalidRequest)) - return - } - self.certPinner = certificatePinning - self.isTLS = parts.isTLS - var readStream: Unmanaged? - var writeStream: Unmanaged? - let h = parts.host as NSString - CFStreamCreatePairWithSocketToHost(nil, h, UInt32(parts.port), &readStream, &writeStream) - inputStream = readStream!.takeRetainedValue() - outputStream = writeStream!.takeRetainedValue() - guard let inStream = inputStream, let outStream = outputStream else { - return - } - inStream.delegate = self - outStream.delegate = self - - if isTLS { - let key = CFStreamPropertyKey(rawValue: kCFStreamPropertySocketSecurityLevel) - CFReadStreamSetProperty(inStream, key, kCFStreamSocketSecurityLevelNegotiatedSSL) - CFWriteStreamSetProperty(outStream, key, kCFStreamSocketSecurityLevelNegotiatedSSL) - } - - onConnect?(inStream, outStream) - - isOpen = false - CFReadStreamSetDispatchQueue(inStream, workQueue) - CFWriteStreamSetDispatchQueue(outStream, workQueue) - inStream.open() - outStream.open() - - - workQueue.asyncAfter(deadline: .now() + timeout, execute: { [weak self] in - guard let s = self else { return } - if !s.isOpen { - s.delegate?.connectionChanged(state: .failed(FoundationTransportError.timeout)) - } - }) - } - - public func disconnect() { - if let stream = inputStream { - stream.delegate = nil - CFReadStreamSetDispatchQueue(stream, nil) - stream.close() - } - if let stream = outputStream { - stream.delegate = nil - CFWriteStreamSetDispatchQueue(stream, nil) - stream.close() - } - isOpen = false - outputStream = nil - inputStream = nil - } - - public func register(delegate: TransportEventClient) { - self.delegate = delegate - } - - public func write(data: Data, completion: @escaping ((Error?) -> ())) { - guard let outStream = outputStream else { - completion(FoundationTransportError.invalidOutputStream) - return - } - var total = 0 - let buffer = UnsafeRawPointer((data as NSData).bytes).assumingMemoryBound(to: UInt8.self) - //NOTE: this might need to be dispatched to the work queue instead of being written inline. TBD. - while total < data.count { - let written = outStream.write(buffer, maxLength: data.count) - if written < 0 { - completion(FoundationTransportError.invalidOutputStream) - return - } - total += written - } - completion(nil) - } - - private func getSecurityData() -> (SecTrust?, String?) { - #if os(watchOS) - return (nil, nil) - #else - guard let outputStream = outputStream else { - return (nil, nil) - } - let trust = outputStream.property(forKey: kCFStreamPropertySSLPeerTrust as Stream.PropertyKey) as! SecTrust? - var domain = outputStream.property(forKey: kCFStreamSSLPeerName as Stream.PropertyKey) as! String? - - if domain == nil, - let sslContextOut = CFWriteStreamCopyProperty(outputStream, CFStreamPropertyKey(rawValue: kCFStreamPropertySSLContext)) as! SSLContext? { - var peerNameLen: Int = 0 - SSLGetPeerDomainNameLength(sslContextOut, &peerNameLen) - var peerName = Data(count: peerNameLen) - let _ = peerName.withUnsafeMutableBytes { (peerNamePtr: UnsafeMutablePointer) in - SSLGetPeerDomainName(sslContextOut, peerNamePtr, &peerNameLen) - } - if let peerDomain = String(bytes: peerName, encoding: .utf8), peerDomain.count > 0 { - domain = peerDomain - } - } - return (trust, domain) - #endif - } - - private func read() { - guard let stream = inputStream else { - return - } - let maxBuffer = 4096 - let buf = NSMutableData(capacity: maxBuffer) - let buffer = UnsafeMutableRawPointer(mutating: buf!.bytes).assumingMemoryBound(to: UInt8.self) - let length = stream.read(buffer, maxLength: maxBuffer) - if length < 1 { - return - } - let data = Data(bytes: buffer, count: length) - delegate?.connectionChanged(state: .receive(data)) - } - - // MARK: - StreamDelegate - - open func stream(_ aStream: Stream, handle eventCode: Stream.Event) { - switch eventCode { - case .hasBytesAvailable: - if aStream == inputStream { - read() - } - case .errorOccurred: - delegate?.connectionChanged(state: .failed(aStream.streamError)) - case .endEncountered: - if aStream == inputStream { - delegate?.connectionChanged(state: .cancelled) - } - case .openCompleted: - if aStream == inputStream { - let (trust, domain) = getSecurityData() - if let pinner = certPinner, let trust = trust { - pinner.evaluateTrust(trust: trust, domain: domain, completion: { [weak self] (state) in - switch state { - case .success: - self?.isOpen = true - self?.delegate?.connectionChanged(state: .connected) - case .failed(let error): - self?.delegate?.connectionChanged(state: .failed(error)) - } - - }) - } else { - isOpen = true - delegate?.connectionChanged(state: .connected) - } - } - case .endEncountered: - if aStream == inputStream { - delegate?.connectionChanged(state: .cancelled) - } - default: - break - } - } -} diff --git a/Pods/Starscream/Sources/Transport/TCPTransport.swift b/Pods/Starscream/Sources/Transport/TCPTransport.swift deleted file mode 100644 index 459cb2e..0000000 --- a/Pods/Starscream/Sources/Transport/TCPTransport.swift +++ /dev/null @@ -1,159 +0,0 @@ -////////////////////////////////////////////////////////////////////////////////////////////////// -// -// HTTPTransport.swift -// Starscream -// -// Created by Dalton Cherry on 1/23/19. -// Copyright © 2019 Vluxe. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -////////////////////////////////////////////////////////////////////////////////////////////////// - -#if canImport(Network) -import Foundation -import Network - -public enum TCPTransportError: Error { - case invalidRequest -} - -@available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) -public class TCPTransport: Transport { - private var connection: NWConnection? - private let queue = DispatchQueue(label: "com.vluxe.starscream.networkstream", attributes: []) - private weak var delegate: TransportEventClient? - private var isRunning = false - private var isTLS = false - - public var usingTLS: Bool { - return self.isTLS - } - - public init(connection: NWConnection) { - self.connection = connection - start() - } - - public init() { - //normal connection, will use the "connect" method below - } - - public func connect(url: URL, timeout: Double = 10, certificatePinning: CertificatePinning? = nil) { - guard let parts = url.getParts() else { - delegate?.connectionChanged(state: .failed(TCPTransportError.invalidRequest)) - return - } - self.isTLS = parts.isTLS - let options = NWProtocolTCP.Options() - options.connectionTimeout = Int(timeout.rounded(.up)) - - let tlsOptions = isTLS ? NWProtocolTLS.Options() : nil - if let tlsOpts = tlsOptions { - sec_protocol_options_set_verify_block(tlsOpts.securityProtocolOptions, { (sec_protocol_metadata, sec_trust, sec_protocol_verify_complete) in - let trust = sec_trust_copy_ref(sec_trust).takeRetainedValue() - guard let pinner = certificatePinning else { - sec_protocol_verify_complete(true) - return - } - pinner.evaluateTrust(trust: trust, domain: parts.host, completion: { (state) in - switch state { - case .success: - sec_protocol_verify_complete(true) - case .failed(_): - sec_protocol_verify_complete(false) - } - }) - }, queue) - } - let parameters = NWParameters(tls: tlsOptions, tcp: options) - let conn = NWConnection(host: NWEndpoint.Host.name(parts.host, nil), port: NWEndpoint.Port(rawValue: UInt16(parts.port))!, using: parameters) - connection = conn - start() - } - - public func disconnect() { - isRunning = false - connection?.cancel() - } - - public func register(delegate: TransportEventClient) { - self.delegate = delegate - } - - public func write(data: Data, completion: @escaping ((Error?) -> ())) { - connection?.send(content: data, completion: .contentProcessed { (error) in - completion(error) - }) - } - - private func start() { - guard let conn = connection else { - return - } - conn.stateUpdateHandler = { [weak self] (newState) in - switch newState { - case .ready: - self?.delegate?.connectionChanged(state: .connected) - case .waiting: - self?.delegate?.connectionChanged(state: .waiting) - case .cancelled: - self?.delegate?.connectionChanged(state: .cancelled) - case .failed(let error): - self?.delegate?.connectionChanged(state: .failed(error)) - case .setup, .preparing: - break - @unknown default: - break - } - } - - conn.viabilityUpdateHandler = { [weak self] (isViable) in - self?.delegate?.connectionChanged(state: .viability(isViable)) - } - - conn.betterPathUpdateHandler = { [weak self] (isBetter) in - self?.delegate?.connectionChanged(state: .shouldReconnect(isBetter)) - } - - conn.start(queue: queue) - isRunning = true - readLoop() - } - - //readLoop keeps reading from the connection to get the latest content - private func readLoop() { - if !isRunning { - return - } - connection?.receive(minimumIncompleteLength: 2, maximumLength: 4096, completion: {[weak self] (data, context, isComplete, error) in - guard let s = self else {return} - if let data = data { - s.delegate?.connectionChanged(state: .receive(data)) - } - - // Refer to https://developer.apple.com/documentation/network/implementing_netcat_with_network_framework - if let context = context, context.isFinal, isComplete { - return - } - - if error == nil { - s.readLoop() - } - - }) - } -} -#else -typealias TCPTransport = FoundationTransport -#endif diff --git a/Pods/Starscream/Sources/Transport/Transport.swift b/Pods/Starscream/Sources/Transport/Transport.swift deleted file mode 100644 index e645651..0000000 --- a/Pods/Starscream/Sources/Transport/Transport.swift +++ /dev/null @@ -1,55 +0,0 @@ -////////////////////////////////////////////////////////////////////////////////////////////////// -// -////////////////////////////////////////////////////////////////////////////////////////////////// -// -// Transport.swift -// Starscream -// -// Created by Dalton Cherry on 1/23/19. -// Copyright © 2019 Vluxe. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -////////////////////////////////////////////////////////////////////////////////////////////////// - -import Foundation - -public enum ConnectionState { - case connected - case waiting - case cancelled - case failed(Error?) - - //the viability (connection status) of the connection has updated - //e.g. connection is down, connection came back up, etc - case viability(Bool) - - //the connection has upgrade to wifi from cellular. - //you should consider reconnecting to take advantage of this - case shouldReconnect(Bool) - - //the connection receive data - case receive(Data) -} - -public protocol TransportEventClient: class { - func connectionChanged(state: ConnectionState) -} - -public protocol Transport: class { - func register(delegate: TransportEventClient) - func connect(url: URL, timeout: Double, certificatePinning: CertificatePinning?) - func disconnect() - func write(data: Data, completion: @escaping ((Error?) -> ())) - var usingTLS: Bool { get } -} diff --git a/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-Info.plist b/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-Info.plist index 7da3e60..b56571c 100644 --- a/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-Info.plist +++ b/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 6.5.11 + 6.5.16 CFBundleSignature ???? CFBundleVersion diff --git a/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.debug.xcconfig b/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.debug.xcconfig index b5e6375..202b7dd 100644 --- a/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.debug.xcconfig +++ b/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.debug.xcconfig @@ -2,7 +2,7 @@ BUILD_LIBRARY_FOR_DISTRIBUTION = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift $(SDKROOT)/usr/lib/swift +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift $(SDKROOT)/usr/lib/swift OTHER_LDFLAGS = $(inherited) -l"swiftCoreGraphics" -framework "CoreGraphics" -framework "Foundation" -framework "QuartzCore" -framework "UIKit" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} diff --git a/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.release.xcconfig b/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.release.xcconfig index b5e6375..202b7dd 100644 --- a/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.release.xcconfig +++ b/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.release.xcconfig @@ -2,7 +2,7 @@ BUILD_LIBRARY_FOR_DISTRIBUTION = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift $(SDKROOT)/usr/lib/swift +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift $(SDKROOT)/usr/lib/swift OTHER_LDFLAGS = $(inherited) -l"swiftCoreGraphics" -framework "CoreGraphics" -framework "Foundation" -framework "QuartzCore" -framework "UIKit" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} diff --git a/Pods/Target Support Files/InputBarAccessoryView/InputBarAccessoryView.debug.xcconfig b/Pods/Target Support Files/InputBarAccessoryView/InputBarAccessoryView.debug.xcconfig index 07dcf3f..3fb720f 100644 --- a/Pods/Target Support Files/InputBarAccessoryView/InputBarAccessoryView.debug.xcconfig +++ b/Pods/Target Support Files/InputBarAccessoryView/InputBarAccessoryView.debug.xcconfig @@ -2,7 +2,7 @@ BUILD_LIBRARY_FOR_DISTRIBUTION = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/InputBarAccessoryView GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift OTHER_LDFLAGS = $(inherited) -framework "UIKit" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} diff --git a/Pods/Target Support Files/InputBarAccessoryView/InputBarAccessoryView.release.xcconfig b/Pods/Target Support Files/InputBarAccessoryView/InputBarAccessoryView.release.xcconfig index 07dcf3f..3fb720f 100644 --- a/Pods/Target Support Files/InputBarAccessoryView/InputBarAccessoryView.release.xcconfig +++ b/Pods/Target Support Files/InputBarAccessoryView/InputBarAccessoryView.release.xcconfig @@ -2,7 +2,7 @@ BUILD_LIBRARY_FOR_DISTRIBUTION = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/InputBarAccessoryView GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift OTHER_LDFLAGS = $(inherited) -framework "UIKit" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} diff --git a/Pods/Target Support Files/MessageKit/MessageKit.debug.xcconfig b/Pods/Target Support Files/MessageKit/MessageKit.debug.xcconfig index 4a99553..f4dfdf4 100644 --- a/Pods/Target Support Files/MessageKit/MessageKit.debug.xcconfig +++ b/Pods/Target Support Files/MessageKit/MessageKit.debug.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/MessageKit FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/InputBarAccessoryView" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift OTHER_LDFLAGS = $(inherited) -framework "InputBarAccessoryView" -framework "UIKit" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} diff --git a/Pods/Target Support Files/MessageKit/MessageKit.release.xcconfig b/Pods/Target Support Files/MessageKit/MessageKit.release.xcconfig index 4a99553..f4dfdf4 100644 --- a/Pods/Target Support Files/MessageKit/MessageKit.release.xcconfig +++ b/Pods/Target Support Files/MessageKit/MessageKit.release.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/MessageKit FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/InputBarAccessoryView" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift OTHER_LDFLAGS = $(inherited) -framework "InputBarAccessoryView" -framework "UIKit" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} diff --git a/Pods/Target Support Files/Pods-VideoSDKRTC_Example/Pods-VideoSDKRTC_Example-frameworks.sh b/Pods/Target Support Files/Pods-VideoSDKRTC_Example/Pods-VideoSDKRTC_Example-frameworks.sh index 650163a..fd2f935 100755 --- a/Pods/Target Support Files/Pods-VideoSDKRTC_Example/Pods-VideoSDKRTC_Example-frameworks.sh +++ b/Pods/Target Support Files/Pods-VideoSDKRTC_Example/Pods-VideoSDKRTC_Example-frameworks.sh @@ -18,7 +18,7 @@ echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" -SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" +SWIFT_STDLIB_PATH="${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" BCSYMBOLMAP_DIR="BCSymbolMaps" @@ -41,7 +41,7 @@ install_framework() if [ -L "${source}" ]; then echo "Symlinked..." - source="$(readlink "${source}")" + source="$(readlink -f "${source}")" fi if [ -d "${source}/${BCSYMBOLMAP_DIR}" ]; then diff --git a/Pods/Target Support Files/Pods-VideoSDKRTC_Example/Pods-VideoSDKRTC_Example.debug.xcconfig b/Pods/Target Support Files/Pods-VideoSDKRTC_Example/Pods-VideoSDKRTC_Example.debug.xcconfig index 0f08278..d5dc451 100644 --- a/Pods/Target Support Files/Pods-VideoSDKRTC_Example/Pods-VideoSDKRTC_Example.debug.xcconfig +++ b/Pods/Target Support Files/Pods-VideoSDKRTC_Example/Pods-VideoSDKRTC_Example.debug.xcconfig @@ -7,7 +7,7 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboar GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/InputBarAccessoryView/InputBarAccessoryView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MessageKit/MessageKit.framework/Headers" LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift $(SDKROOT)/usr/lib/swift +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift $(SDKROOT)/usr/lib/swift OTHER_LDFLAGS = $(inherited) -l"swiftCoreGraphics" -framework "CoreGraphics" -framework "Foundation" -framework "IQKeyboardManagerSwift" -framework "InputBarAccessoryView" -framework "Mediasoup" -framework "MessageKit" -framework "QuartzCore" -framework "UIKit" -framework "VideoSDKRTC" -framework "VideosdkWebSocket" -framework "WebRTC" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -Wno-error=non-modular-include-in-framework-module PODS_BUILD_DIR = ${BUILD_DIR} diff --git a/Pods/Target Support Files/Pods-VideoSDKRTC_Example/Pods-VideoSDKRTC_Example.release.xcconfig b/Pods/Target Support Files/Pods-VideoSDKRTC_Example/Pods-VideoSDKRTC_Example.release.xcconfig index 0f08278..d5dc451 100644 --- a/Pods/Target Support Files/Pods-VideoSDKRTC_Example/Pods-VideoSDKRTC_Example.release.xcconfig +++ b/Pods/Target Support Files/Pods-VideoSDKRTC_Example/Pods-VideoSDKRTC_Example.release.xcconfig @@ -7,7 +7,7 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboar GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/InputBarAccessoryView/InputBarAccessoryView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MessageKit/MessageKit.framework/Headers" LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift $(SDKROOT)/usr/lib/swift +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift $(SDKROOT)/usr/lib/swift OTHER_LDFLAGS = $(inherited) -l"swiftCoreGraphics" -framework "CoreGraphics" -framework "Foundation" -framework "IQKeyboardManagerSwift" -framework "InputBarAccessoryView" -framework "Mediasoup" -framework "MessageKit" -framework "QuartzCore" -framework "UIKit" -framework "VideoSDKRTC" -framework "VideosdkWebSocket" -framework "WebRTC" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -Wno-error=non-modular-include-in-framework-module PODS_BUILD_DIR = ${BUILD_DIR} diff --git a/Pods/Target Support Files/Starscream/Starscream-Info.plist b/Pods/Target Support Files/Starscream/Starscream-Info.plist deleted file mode 100644 index f78cea6..0000000 --- a/Pods/Target Support Files/Starscream/Starscream-Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 4.0.4 - CFBundleSignature - ???? - CFBundleVersion - ${CURRENT_PROJECT_VERSION} - NSPrincipalClass - - - diff --git a/Pods/Target Support Files/Starscream/Starscream-dummy.m b/Pods/Target Support Files/Starscream/Starscream-dummy.m deleted file mode 100644 index 94456b3..0000000 --- a/Pods/Target Support Files/Starscream/Starscream-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Starscream : NSObject -@end -@implementation PodsDummy_Starscream -@end diff --git a/Pods/Target Support Files/Starscream/Starscream-prefix.pch b/Pods/Target Support Files/Starscream/Starscream-prefix.pch deleted file mode 100644 index beb2a24..0000000 --- a/Pods/Target Support Files/Starscream/Starscream-prefix.pch +++ /dev/null @@ -1,12 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - diff --git a/Pods/Target Support Files/Starscream/Starscream-umbrella.h b/Pods/Target Support Files/Starscream/Starscream-umbrella.h deleted file mode 100644 index 7bffee0..0000000 --- a/Pods/Target Support Files/Starscream/Starscream-umbrella.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - - -FOUNDATION_EXPORT double StarscreamVersionNumber; -FOUNDATION_EXPORT const unsigned char StarscreamVersionString[]; - diff --git a/Pods/Target Support Files/Starscream/Starscream.debug.xcconfig b/Pods/Target Support Files/Starscream/Starscream.debug.xcconfig deleted file mode 100644 index 3cac514..0000000 --- a/Pods/Target Support Files/Starscream/Starscream.debug.xcconfig +++ /dev/null @@ -1,14 +0,0 @@ -BUILD_LIBRARY_FOR_DISTRIBUTION = YES -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Starscream -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/Starscream -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/Starscream/Starscream.modulemap b/Pods/Target Support Files/Starscream/Starscream.modulemap deleted file mode 100644 index 2b90970..0000000 --- a/Pods/Target Support Files/Starscream/Starscream.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module Starscream { - umbrella header "Starscream-umbrella.h" - - export * - module * { export * } -} diff --git a/Pods/Target Support Files/Starscream/Starscream.release.xcconfig b/Pods/Target Support Files/Starscream/Starscream.release.xcconfig deleted file mode 100644 index 3cac514..0000000 --- a/Pods/Target Support Files/Starscream/Starscream.release.xcconfig +++ /dev/null @@ -1,14 +0,0 @@ -BUILD_LIBRARY_FOR_DISTRIBUTION = YES -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Starscream -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/Starscream -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/VideoSDKRTC/VideoSDKRTC.debug.xcconfig b/Pods/Target Support Files/VideoSDKRTC/VideoSDKRTC.debug.xcconfig index 256a282..f60811e 100644 --- a/Pods/Target Support Files/VideoSDKRTC/VideoSDKRTC.debug.xcconfig +++ b/Pods/Target Support Files/VideoSDKRTC/VideoSDKRTC.debug.xcconfig @@ -5,7 +5,7 @@ CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/VideoSDKRTC ENABLE_BITCODE = NO FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/VideoSDKRTC/Frameworks" "${PODS_XCFRAMEWORKS_BUILD_DIR}/VideoSDKRTC" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -Wno-error=non-modular-include-in-framework-module PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Pods/Target Support Files/VideoSDKRTC/VideoSDKRTC.release.xcconfig b/Pods/Target Support Files/VideoSDKRTC/VideoSDKRTC.release.xcconfig index 256a282..f60811e 100644 --- a/Pods/Target Support Files/VideoSDKRTC/VideoSDKRTC.release.xcconfig +++ b/Pods/Target Support Files/VideoSDKRTC/VideoSDKRTC.release.xcconfig @@ -5,7 +5,7 @@ CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/VideoSDKRTC ENABLE_BITCODE = NO FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/VideoSDKRTC/Frameworks" "${PODS_XCFRAMEWORKS_BUILD_DIR}/VideoSDKRTC" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -Wno-error=non-modular-include-in-framework-module PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/Info.plist b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/Info.plist index 84cd3cf..20a59fc 100644 --- a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/Info.plist +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/Info.plist @@ -5,31 +5,35 @@ AvailableLibraries + BinaryPath + Mediasoup.framework/Mediasoup LibraryIdentifier - ios-arm64_x86_64-simulator + ios-arm64 LibraryPath Mediasoup.framework SupportedArchitectures arm64 - x86_64 SupportedPlatform ios - SupportedPlatformVariant - simulator + BinaryPath + Mediasoup.framework/Mediasoup LibraryIdentifier - ios-arm64 + ios-arm64_x86_64-simulator LibraryPath Mediasoup.framework SupportedArchitectures arm64 + x86_64 SupportedPlatform ios + SupportedPlatformVariant + simulator CFBundlePackageType diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Headers/Mediasoup-Swift.h b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Headers/Mediasoup-Swift.h index d254e66..bebb77d 100644 --- a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Headers/Mediasoup-Swift.h +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Headers/Mediasoup-Swift.h @@ -1,4 +1,6 @@ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +#if 0 +#elif defined(__arm64__) && __arm64__ +// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) #ifndef MEDIASOUP_SWIFT_H #define MEDIASOUP_SWIFT_H #pragma clang diagnostic push @@ -22,10 +24,38 @@ #endif #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#include +#include +#include +#include +#else #include #include #include +#include +#endif +#if defined(__cplusplus) +#if defined(__arm64e__) && __has_include() +# include +#else +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreserved-macro-identifier" +# ifndef __ptrauth_swift_value_witness_function_pointer +# define __ptrauth_swift_value_witness_function_pointer(x) +# endif +# ifndef __ptrauth_swift_class_method_pointer +# define __ptrauth_swift_class_method_pointer(x) +# endif +#pragma clang diagnostic pop +#endif +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -60,53 +90,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # if __has_feature(objc_class_property) # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ # else -# define SWIFT_CLASS_PROPERTY(...) +# define SWIFT_CLASS_PROPERTY(...) # endif #endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) +#if !defined(SWIFT_RUNTIME_NAME) +# if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +# else +# define SWIFT_RUNTIME_NAME(X) +# endif #endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) +#if !defined(SWIFT_COMPILE_NAME) +# if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +# else +# define SWIFT_COMPILE_NAME(X) +# endif #endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) +#if !defined(SWIFT_METHOD_FAMILY) +# if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +# else +# define SWIFT_METHOD_FAMILY(X) +# endif #endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE +#if !defined(SWIFT_NOESCAPE) +# if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +# else +# define SWIFT_NOESCAPE +# endif #endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT +#if !defined(SWIFT_RELEASES_ARGUMENT) +# if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +# else +# define SWIFT_RELEASES_ARGUMENT +# endif #endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT +#if !defined(SWIFT_WARN_UNUSED_RESULT) +# if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +# else +# define SWIFT_WARN_UNUSED_RESULT +# endif #endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN +#if !defined(SWIFT_NORETURN) +# if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +# else +# define SWIFT_NORETURN +# endif #endif #if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_EXTRA #endif #if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_EXTRA #endif #if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA +# define SWIFT_ENUM_EXTRA #endif #if !defined(SWIFT_CLASS) # if __has_attribute(objc_subclassing_restricted) @@ -126,28 +169,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) # endif #endif - #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA #endif - #if !defined(SWIFT_EXTENSION) # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) #endif - #if !defined(OBJC_DESIGNATED_INITIALIZER) # if __has_attribute(objc_designated_initializer) # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) # else -# define OBJC_DESIGNATED_INITIALIZER +# define OBJC_DESIGNATED_INITIALIZER # endif #endif #if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# if __has_attribute(enum_extensibility) # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) # else -# define SWIFT_ENUM_ATTR(_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) # endif #endif #if !defined(SWIFT_ENUM) @@ -176,13 +216,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_DEPRECATED_MSG) # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) #endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#if !defined(SWIFT_DEPRECATED_OBJC) +# if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +# else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +# endif #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) -# define IBSegueAction +# define IBSegueAction +#endif #endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) @@ -191,12 +235,51 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif -#if __has_feature(modules) +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if !defined(SWIFT_INDIRECT_RESULT) +# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) +#endif +#if !defined(SWIFT_CONTEXT) +# define SWIFT_CONTEXT __attribute__((swift_context)) +#endif +#if !defined(SWIFT_ERROR_RESULT) +# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) +#endif +#if defined(__cplusplus) +# define SWIFT_NOEXCEPT noexcept +#else +# define SWIFT_NOEXCEPT +#endif +#if !defined(SWIFT_C_INLINE_THUNK) +# if __has_attribute(always_inline) +# if __has_attribute(nodebug) +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) +# else +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) +# endif +# else +# define SWIFT_C_INLINE_THUNK inline +# endif +#endif +#if defined(_WIN32) +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) +#endif +#else +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL +#endif +#endif +#if defined(__OBJC__) +#if __has_feature(objc_modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -204,6 +287,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -212,8 +296,16 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif +#if defined(__cplusplus) +#endif #pragma clang diagnostic pop #endif + +#else +#error unsupported Swift architecture +#endif diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Info.plist b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Info.plist index f7ac46a..17fef9f 100644 Binary files a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Info.plist and b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Info.plist differ diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Mediasoup b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Mediasoup index 7ce22dc..bb883dc 100755 Binary files a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Mediasoup and b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Mediasoup differ diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/Mediasoup.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/Mediasoup.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo index 324aedf..668673c 100644 Binary files a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/Mediasoup.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo and b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/Mediasoup.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo differ diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios.abi.json b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios.abi.json new file mode 100644 index 0000000..3c02b65 --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios.abi.json @@ -0,0 +1,6001 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "ReceiveTransportDelegate", + "printedName": "ReceiveTransportDelegate", + "declKind": "Protocol", + "usr": "s:9Mediasoup24ReceiveTransportDelegateP", + "mangledName": "$s9Mediasoup24ReceiveTransportDelegateP", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 : Mediasoup.TransportDelegate>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "TransportDelegate", + "printedName": "TransportDelegate", + "usr": "s:9Mediasoup17TransportDelegateP", + "mangledName": "$s9Mediasoup17TransportDelegateP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "ReceiveTransport", + "printedName": "ReceiveTransport", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "Mediasoup.ReceiveTransportDelegate?" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvp", + "mangledName": "$s9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.ReceiveTransportDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ReceiveTransportDelegate", + "printedName": "Mediasoup.ReceiveTransportDelegate", + "usr": "s:9Mediasoup24ReceiveTransportDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvg", + "mangledName": "$s9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.ReceiveTransportDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ReceiveTransportDelegate", + "printedName": "Mediasoup.ReceiveTransportDelegate", + "usr": "s:9Mediasoup24ReceiveTransportDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvs", + "mangledName": "$s9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvs", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvM", + "mangledName": "$s9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvM", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "consume", + "printedName": "consume(consumerId:producerId:kind:rtpParameters:appData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Consumer", + "printedName": "Mediasoup.Consumer", + "usr": "s:9Mediasoup8ConsumerC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ReceiveTransportC7consume10consumerId08producerF04kind13rtpParameters7appDataAA8ConsumerCSS_SSAA9MediaKindOS2SSgtKF", + "mangledName": "$s9Mediasoup16ReceiveTransportC7consume10consumerId08producerF04kind13rtpParameters7appDataAA8ConsumerCSS_SSAA9MediaKindOS2SSgtKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "consumeData", + "printedName": "consumeData(consumerId:producerId:streamId:label:protocol:appData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataConsumer", + "printedName": "Mediasoup.DataConsumer", + "usr": "s:9Mediasoup12DataConsumerC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ReceiveTransportC11consumeData10consumerId08producerG006streamG05label8protocol03appE0AA0E8ConsumerCSS_SSs6UInt16VS2SSgAOtKF", + "mangledName": "$s9Mediasoup16ReceiveTransportC11consumeData10consumerId08producerG006streamG05label8protocol03appE0AA0E8ConsumerCSS_SSs6UInt16VS2SSgAOtKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup16ReceiveTransportC2idSSvp", + "mangledName": "$s9Mediasoup16ReceiveTransportC2idSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC2idSSvg", + "mangledName": "$s9Mediasoup16ReceiveTransportC2idSSvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup16ReceiveTransportC6closedSbvp", + "mangledName": "$s9Mediasoup16ReceiveTransportC6closedSbvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC6closedSbvg", + "mangledName": "$s9Mediasoup16ReceiveTransportC6closedSbvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectionState", + "printedName": "connectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup16ReceiveTransportC15connectionStateAA0c10ConnectionE0Ovp", + "mangledName": "$s9Mediasoup16ReceiveTransportC15connectionStateAA0c10ConnectionE0Ovp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC15connectionStateAA0c10ConnectionE0Ovg", + "mangledName": "$s9Mediasoup16ReceiveTransportC15connectionStateAA0c10ConnectionE0Ovg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup16ReceiveTransportC7appDataSSvp", + "mangledName": "$s9Mediasoup16ReceiveTransportC7appDataSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC7appDataSSvg", + "mangledName": "$s9Mediasoup16ReceiveTransportC7appDataSSvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stats", + "printedName": "stats", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup16ReceiveTransportC5statsSSvp", + "mangledName": "$s9Mediasoup16ReceiveTransportC5statsSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC5statsSSvg", + "mangledName": "$s9Mediasoup16ReceiveTransportC5statsSSvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "close", + "printedName": "close()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ReceiveTransportC5closeyyF", + "mangledName": "$s9Mediasoup16ReceiveTransportC5closeyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "restartICE", + "printedName": "restartICE(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ReceiveTransportC10restartICE4withySS_tKF", + "mangledName": "$s9Mediasoup16ReceiveTransportC10restartICE4withySS_tKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateICEServers", + "printedName": "updateICEServers(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ReceiveTransportC16updateICEServersyySSKF", + "mangledName": "$s9Mediasoup16ReceiveTransportC16updateICEServersyySSKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onConnect", + "printedName": "onConnect(_:dtlsParameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReceiveTransportWrapper", + "printedName": "Mediasoup_Private.ReceiveTransportWrapper", + "usr": "c:objc(cs)ReceiveTransportWrapper" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ReceiveTransportC9onConnect_14dtlsParametersySo0bC7WrapperC_SStF", + "mangledName": "$s9Mediasoup16ReceiveTransportC9onConnect_14dtlsParametersySo0bC7WrapperC_SStF", + "moduleName": "Mediasoup", + "objc_name": "onConnect:dtlsParameters:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onConnectionStateChange", + "printedName": "onConnectionStateChange(_:connectionState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReceiveTransportWrapper", + "printedName": "Mediasoup_Private.ReceiveTransportWrapper", + "usr": "c:objc(cs)ReceiveTransportWrapper" + }, + { + "kind": "TypeNominal", + "name": "MediasoupClientTransportConnectionState", + "printedName": "Mediasoup_Private.MediasoupClientTransportConnectionState", + "usr": "c:MediasoupClientTransportConnectionState.h@T@MediasoupClientTransportConnectionState" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ReceiveTransportC23onConnectionStateChange_010connectionF0ySo0bC7WrapperC_So0a6ClientceF0atF", + "mangledName": "$s9Mediasoup16ReceiveTransportC23onConnectionStateChange_010connectionF0ySo0bC7WrapperC_So0a6ClientceF0atF", + "moduleName": "Mediasoup", + "objc_name": "onConnectionStateChange:connectionState:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9Mediasoup16ReceiveTransportC", + "mangledName": "$s9Mediasoup16ReceiveTransportC", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Transport", + "printedName": "Transport", + "usr": "s:9Mediasoup9TransportP", + "mangledName": "$s9Mediasoup9TransportP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "MediaKind", + "printedName": "MediaKind", + "children": [ + { + "kind": "Var", + "name": "audio", + "printedName": "audio", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediaKind.Type) -> Mediasoup.MediaKind", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.MediaKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup9MediaKindO5audioyA2CmF", + "mangledName": "$s9Mediasoup9MediaKindO5audioyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "video", + "printedName": "video", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediaKind.Type) -> Mediasoup.MediaKind", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.MediaKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup9MediaKindO5videoyA2CmF", + "mangledName": "$s9Mediasoup9MediaKindO5videoyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + }, + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup9MediaKindO2eeoiySbAC_ACtFZ", + "mangledName": "$s9Mediasoup9MediaKindO2eeoiySbAC_ACtFZ", + "moduleName": "Mediasoup", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup9MediaKindO9hashValueSivp", + "mangledName": "$s9Mediasoup9MediaKindO9hashValueSivp", + "moduleName": "Mediasoup", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup9MediaKindO9hashValueSivg", + "mangledName": "$s9Mediasoup9MediaKindO9hashValueSivg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup9MediaKindO4hash4intoys6HasherVz_tF", + "mangledName": "$s9Mediasoup9MediaKindO4hash4intoys6HasherVz_tF", + "moduleName": "Mediasoup", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9Mediasoup9MediaKindO", + "mangledName": "$s9Mediasoup9MediaKindO", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "Transport", + "printedName": "Transport", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup9TransportP2idSSvp", + "mangledName": "$s9Mediasoup9TransportP2idSSvp", + "moduleName": "Mediasoup", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup9TransportP2idSSvg", + "mangledName": "$s9Mediasoup9TransportP2idSSvg", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup9TransportP6closedSbvp", + "mangledName": "$s9Mediasoup9TransportP6closedSbvp", + "moduleName": "Mediasoup", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup9TransportP6closedSbvg", + "mangledName": "$s9Mediasoup9TransportP6closedSbvg", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectionState", + "printedName": "connectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup9TransportP15connectionStateAA0b10ConnectionD0Ovp", + "mangledName": "$s9Mediasoup9TransportP15connectionStateAA0b10ConnectionD0Ovp", + "moduleName": "Mediasoup", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup9TransportP15connectionStateAA0b10ConnectionD0Ovg", + "mangledName": "$s9Mediasoup9TransportP15connectionStateAA0b10ConnectionD0Ovg", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup9TransportP7appDataSSvp", + "mangledName": "$s9Mediasoup9TransportP7appDataSSvp", + "moduleName": "Mediasoup", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup9TransportP7appDataSSvg", + "mangledName": "$s9Mediasoup9TransportP7appDataSSvg", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stats", + "printedName": "stats", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup9TransportP5statsSSvp", + "mangledName": "$s9Mediasoup9TransportP5statsSSvp", + "moduleName": "Mediasoup", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup9TransportP5statsSSvg", + "mangledName": "$s9Mediasoup9TransportP5statsSSvg", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "close", + "printedName": "close()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup9TransportP5closeyyF", + "mangledName": "$s9Mediasoup9TransportP5closeyyF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "restartICE", + "printedName": "restartICE(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup9TransportP10restartICE4withySS_tKF", + "mangledName": "$s9Mediasoup9TransportP10restartICE4withySS_tKF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateICEServers", + "printedName": "updateICEServers(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup9TransportP16updateICEServersyySSKF", + "mangledName": "$s9Mediasoup9TransportP16updateICEServersyySSKF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9Mediasoup9TransportP", + "mangledName": "$s9Mediasoup9TransportP", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "TransportDelegate", + "printedName": "TransportDelegate", + "children": [ + { + "kind": "Function", + "name": "onConnect", + "printedName": "onConnect(transport:dtlsParameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Transport", + "printedName": "Mediasoup.Transport", + "usr": "s:9Mediasoup9TransportP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup17TransportDelegateP9onConnect9transport14dtlsParametersyAA0B0_p_SStF", + "mangledName": "$s9Mediasoup17TransportDelegateP9onConnect9transport14dtlsParametersyAA0B0_p_SStF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.TransportDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onConnectionStateChange", + "printedName": "onConnectionStateChange(transport:connectionState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Transport", + "printedName": "Mediasoup.Transport", + "usr": "s:9Mediasoup9TransportP" + }, + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup17TransportDelegateP23onConnectionStateChange9transport010connectionF0yAA0B0_p_AA0beF0OtF", + "mangledName": "$s9Mediasoup17TransportDelegateP23onConnectionStateChange9transport010connectionF0yAA0B0_p_AA0beF0OtF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.TransportDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9Mediasoup17TransportDelegateP", + "mangledName": "$s9Mediasoup17TransportDelegateP", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "TransportConnectionState", + "printedName": "TransportConnectionState", + "children": [ + { + "kind": "Var", + "name": "new", + "printedName": "new", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.TransportConnectionState.Type) -> Mediasoup.TransportConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.TransportConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup24TransportConnectionStateO3newyA2CmF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO3newyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "checking", + "printedName": "checking", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.TransportConnectionState.Type) -> Mediasoup.TransportConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.TransportConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup24TransportConnectionStateO8checkingyA2CmF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO8checkingyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "connected", + "printedName": "connected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.TransportConnectionState.Type) -> Mediasoup.TransportConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.TransportConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup24TransportConnectionStateO9connectedyA2CmF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO9connectedyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "completed", + "printedName": "completed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.TransportConnectionState.Type) -> Mediasoup.TransportConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.TransportConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup24TransportConnectionStateO9completedyA2CmF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO9completedyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.TransportConnectionState.Type) -> Mediasoup.TransportConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.TransportConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup24TransportConnectionStateO6failedyA2CmF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO6failedyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "disconnected", + "printedName": "disconnected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.TransportConnectionState.Type) -> Mediasoup.TransportConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.TransportConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup24TransportConnectionStateO12disconnectedyA2CmF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO12disconnectedyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.TransportConnectionState.Type) -> Mediasoup.TransportConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.TransportConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup24TransportConnectionStateO6closedyA2CmF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO6closedyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup24TransportConnectionStateO2eeoiySbAC_ACtFZ", + "mangledName": "$s9Mediasoup24TransportConnectionStateO2eeoiySbAC_ACtFZ", + "moduleName": "Mediasoup", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup24TransportConnectionStateO9hashValueSivp", + "mangledName": "$s9Mediasoup24TransportConnectionStateO9hashValueSivp", + "moduleName": "Mediasoup", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup24TransportConnectionStateO9hashValueSivg", + "mangledName": "$s9Mediasoup24TransportConnectionStateO9hashValueSivg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup24TransportConnectionStateO4hash4intoys6HasherVz_tF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO4hash4intoys6HasherVz_tF", + "moduleName": "Mediasoup", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9Mediasoup24TransportConnectionStateO", + "mangledName": "$s9Mediasoup24TransportConnectionStateO", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "SendTransport", + "printedName": "SendTransport", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "Mediasoup.SendTransportDelegate?" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvp", + "mangledName": "$s9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.SendTransportDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SendTransportDelegate", + "printedName": "Mediasoup.SendTransportDelegate", + "usr": "s:9Mediasoup21SendTransportDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvg", + "mangledName": "$s9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.SendTransportDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SendTransportDelegate", + "printedName": "Mediasoup.SendTransportDelegate", + "usr": "s:9Mediasoup21SendTransportDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvs", + "mangledName": "$s9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvs", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvM", + "mangledName": "$s9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvM", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "createProducer", + "printedName": "createProducer(for:encodings:codecOptions:codec:appData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Producer", + "printedName": "Mediasoup.Producer", + "usr": "s:9Mediasoup8ProducerC" + }, + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[WebRTC.RTCRtpEncodingParameters]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WebRTC.RTCRtpEncodingParameters]", + "children": [ + { + "kind": "TypeNominal", + "name": "RTCRtpEncodingParameters", + "printedName": "WebRTC.RTCRtpEncodingParameters", + "usr": "c:objc(cs)RTCRtpEncodingParameters" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC14createProducer3for9encodings12codecOptions0H07appDataAA0E0CSo19RTCMediaStreamTrackC_SaySo24RTCRtpEncodingParametersCGSgSSSgA2RtKF", + "mangledName": "$s9Mediasoup13SendTransportC14createProducer3for9encodings12codecOptions0H07appDataAA0E0CSo19RTCMediaStreamTrackC_SaySo24RTCRtpEncodingParametersCGSgSSSgA2RtKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createProducer", + "printedName": "createProducer(for:encoding:scalabilityMode:codecOptions:codec:appData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Producer", + "printedName": "Mediasoup.Producer", + "usr": "s:9Mediasoup8ProducerC" + }, + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + }, + { + "kind": "TypeNominal", + "name": "RTCRtpEncodingParameters", + "printedName": "WebRTC.RTCRtpEncodingParameters", + "usr": "c:objc(cs)RTCRtpEncodingParameters" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC14createProducer3for8encoding15scalabilityMode12codecOptions0J07appDataAA0E0CSo19RTCMediaStreamTrackC_So24RTCRtpEncodingParametersCS2SSgA2QtKF", + "mangledName": "$s9Mediasoup13SendTransportC14createProducer3for8encoding15scalabilityMode12codecOptions0J07appDataAA0E0CSo19RTCMediaStreamTrackC_So24RTCRtpEncodingParametersCS2SSgA2QtKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup13SendTransportC2idSSvp", + "mangledName": "$s9Mediasoup13SendTransportC2idSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC2idSSvg", + "mangledName": "$s9Mediasoup13SendTransportC2idSSvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup13SendTransportC6closedSbvp", + "mangledName": "$s9Mediasoup13SendTransportC6closedSbvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC6closedSbvg", + "mangledName": "$s9Mediasoup13SendTransportC6closedSbvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectionState", + "printedName": "connectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup13SendTransportC15connectionStateAA0c10ConnectionE0Ovp", + "mangledName": "$s9Mediasoup13SendTransportC15connectionStateAA0c10ConnectionE0Ovp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC15connectionStateAA0c10ConnectionE0Ovg", + "mangledName": "$s9Mediasoup13SendTransportC15connectionStateAA0c10ConnectionE0Ovg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup13SendTransportC7appDataSSvp", + "mangledName": "$s9Mediasoup13SendTransportC7appDataSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC7appDataSSvg", + "mangledName": "$s9Mediasoup13SendTransportC7appDataSSvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stats", + "printedName": "stats", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup13SendTransportC5statsSSvp", + "mangledName": "$s9Mediasoup13SendTransportC5statsSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC5statsSSvg", + "mangledName": "$s9Mediasoup13SendTransportC5statsSSvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "close", + "printedName": "close()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC5closeyyF", + "mangledName": "$s9Mediasoup13SendTransportC5closeyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "restartICE", + "printedName": "restartICE(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC10restartICE4withySS_tKF", + "mangledName": "$s9Mediasoup13SendTransportC10restartICE4withySS_tKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateICEServers", + "printedName": "updateICEServers(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC16updateICEServersyySSKF", + "mangledName": "$s9Mediasoup13SendTransportC16updateICEServersyySSKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onConnect", + "printedName": "onConnect(_:dtlsParameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SendTransportWrapper", + "printedName": "Mediasoup_Private.SendTransportWrapper", + "usr": "c:objc(cs)SendTransportWrapper" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC9onConnect_14dtlsParametersySo0bC7WrapperC_SStF", + "mangledName": "$s9Mediasoup13SendTransportC9onConnect_14dtlsParametersySo0bC7WrapperC_SStF", + "moduleName": "Mediasoup", + "objc_name": "onConnect:dtlsParameters:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onConnectionStateChange", + "printedName": "onConnectionStateChange(_:connectionState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SendTransportWrapper", + "printedName": "Mediasoup_Private.SendTransportWrapper", + "usr": "c:objc(cs)SendTransportWrapper" + }, + { + "kind": "TypeNominal", + "name": "MediasoupClientTransportConnectionState", + "printedName": "Mediasoup_Private.MediasoupClientTransportConnectionState", + "usr": "c:MediasoupClientTransportConnectionState.h@T@MediasoupClientTransportConnectionState" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC23onConnectionStateChange_010connectionF0ySo0bC7WrapperC_So0a6ClientceF0atF", + "mangledName": "$s9Mediasoup13SendTransportC23onConnectionStateChange_010connectionF0ySo0bC7WrapperC_So0a6ClientceF0atF", + "moduleName": "Mediasoup", + "objc_name": "onConnectionStateChange:connectionState:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onProduce", + "printedName": "onProduce(_:kind:rtpParameters:appData:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SendTransportWrapper", + "printedName": "Mediasoup_Private.SendTransportWrapper", + "usr": "c:objc(cs)SendTransportWrapper" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC9onProduce_4kind13rtpParameters7appData8callbackySo0bC7WrapperC_S3SySSSgctF", + "mangledName": "$s9Mediasoup13SendTransportC9onProduce_4kind13rtpParameters7appData8callbackySo0bC7WrapperC_S3SySSSgctF", + "moduleName": "Mediasoup", + "objc_name": "onProduce:kind:rtpParameters:appData:callback:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onProduceData", + "printedName": "onProduceData(_:sctpParameters:label:protocol:appData:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SendTransportWrapper", + "printedName": "Mediasoup_Private.SendTransportWrapper", + "usr": "c:objc(cs)SendTransportWrapper" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC13onProduceData_14sctpParameters5label8protocol03appF08callbackySo0bC7WrapperC_S4SySSSgctF", + "mangledName": "$s9Mediasoup13SendTransportC13onProduceData_14sctpParameters5label8protocol03appF08callbackySo0bC7WrapperC_S4SySSSgctF", + "moduleName": "Mediasoup", + "objc_name": "onProduceData:sctpParameters:label:protocol:appData:callback:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9Mediasoup13SendTransportC", + "mangledName": "$s9Mediasoup13SendTransportC", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Transport", + "printedName": "Transport", + "usr": "s:9Mediasoup9TransportP", + "mangledName": "$s9Mediasoup9TransportP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "ConsumerDelegate", + "printedName": "ConsumerDelegate", + "children": [ + { + "kind": "Function", + "name": "onTransportClose", + "printedName": "onTransportClose(in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Consumer", + "printedName": "Mediasoup.Consumer", + "usr": "s:9Mediasoup8ConsumerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ConsumerDelegateP16onTransportClose2inyAA0B0C_tF", + "mangledName": "$s9Mediasoup16ConsumerDelegateP16onTransportClose2inyAA0B0C_tF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.ConsumerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9Mediasoup16ConsumerDelegateP", + "mangledName": "$s9Mediasoup16ConsumerDelegateP", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "SendTransportDelegate", + "printedName": "SendTransportDelegate", + "children": [ + { + "kind": "Function", + "name": "onProduce", + "printedName": "onProduce(transport:kind:rtpParameters:appData:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Transport", + "printedName": "Mediasoup.Transport", + "usr": "s:9Mediasoup9TransportP" + }, + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup21SendTransportDelegateP9onProduce9transport4kind13rtpParameters7appData8callbackyAA0C0_p_AA9MediaKindOS2SySSSgctF", + "mangledName": "$s9Mediasoup21SendTransportDelegateP9onProduce9transport4kind13rtpParameters7appData8callbackyAA0C0_p_AA9MediaKindOS2SySSSgctF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.SendTransportDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onProduceData", + "printedName": "onProduceData(transport:sctpParameters:label:protocol:appData:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Transport", + "printedName": "Mediasoup.Transport", + "usr": "s:9Mediasoup9TransportP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup21SendTransportDelegateP13onProduceData9transport14sctpParameters5label8protocol03appG08callbackyAA0C0_p_S4SySSSgctF", + "mangledName": "$s9Mediasoup21SendTransportDelegateP13onProduceData9transport14sctpParameters5label8protocol03appG08callbackyAA0C0_p_S4SySSSgctF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.SendTransportDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9Mediasoup21SendTransportDelegateP", + "mangledName": "$s9Mediasoup21SendTransportDelegateP", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 : Mediasoup.TransportDelegate>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "TransportDelegate", + "printedName": "TransportDelegate", + "usr": "s:9Mediasoup17TransportDelegateP", + "mangledName": "$s9Mediasoup17TransportDelegateP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "MediasoupError", + "printedName": "MediasoupError", + "children": [ + { + "kind": "Var", + "name": "unsupported", + "printedName": "unsupported", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediasoupError.Type) -> (Swift.String) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.MediasoupError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup0A5ErrorO11unsupportedyACSScACmF", + "mangledName": "$s9Mediasoup0A5ErrorO11unsupportedyACSScACmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "invalidState", + "printedName": "invalidState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediasoupError.Type) -> (Swift.String) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.MediasoupError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup0A5ErrorO12invalidStateyACSScACmF", + "mangledName": "$s9Mediasoup0A5ErrorO12invalidStateyACSScACmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "invalidParameters", + "printedName": "invalidParameters", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediasoupError.Type) -> (Swift.String) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.MediasoupError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup0A5ErrorO17invalidParametersyACSScACmF", + "mangledName": "$s9Mediasoup0A5ErrorO17invalidParametersyACSScACmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "mediasoup", + "printedName": "mediasoup", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediasoupError.Type) -> (Foundation.NSError) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.MediasoupError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup0A5ErrorO9mediasoupyACSo7NSErrorCcACmF", + "mangledName": "$s9Mediasoup0A5ErrorO9mediasoupyACSo7NSErrorCcACmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediasoupError.Type) -> (Swift.Error) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.MediasoupError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup0A5ErrorO7unknownyACs0B0_pcACmF", + "mangledName": "$s9Mediasoup0A5ErrorO7unknownyACs0B0_pcACmF", + "moduleName": "Mediasoup" + } + ], + "declKind": "Enum", + "usr": "s:9Mediasoup0A5ErrorO", + "mangledName": "$s9Mediasoup0A5ErrorO", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "ProducerDelegate", + "printedName": "ProducerDelegate", + "children": [ + { + "kind": "Function", + "name": "onTransportClose", + "printedName": "onTransportClose(in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Producer", + "printedName": "Mediasoup.Producer", + "usr": "s:9Mediasoup8ProducerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ProducerDelegateP16onTransportClose2inyAA0B0C_tF", + "mangledName": "$s9Mediasoup16ProducerDelegateP16onTransportClose2inyAA0B0C_tF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.ProducerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9Mediasoup16ProducerDelegateP", + "mangledName": "$s9Mediasoup16ProducerDelegateP", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "DataConsumer", + "printedName": "DataConsumer", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "Mediasoup.DataConsumerDelegate?" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvp", + "mangledName": "$s9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.DataConsumerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataConsumerDelegate", + "printedName": "Mediasoup.DataConsumerDelegate", + "usr": "s:9Mediasoup20DataConsumerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvg", + "mangledName": "$s9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.DataConsumerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataConsumerDelegate", + "printedName": "Mediasoup.DataConsumerDelegate", + "usr": "s:9Mediasoup20DataConsumerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvs", + "mangledName": "$s9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvs", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvM", + "mangledName": "$s9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvM", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC2idSSvp", + "mangledName": "$s9Mediasoup12DataConsumerC2idSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC2idSSvg", + "mangledName": "$s9Mediasoup12DataConsumerC2idSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "localId", + "printedName": "localId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC7localIdSSvp", + "mangledName": "$s9Mediasoup12DataConsumerC7localIdSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC7localIdSSvg", + "mangledName": "$s9Mediasoup12DataConsumerC7localIdSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "producerId", + "printedName": "producerId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC10producerIdSSvp", + "mangledName": "$s9Mediasoup12DataConsumerC10producerIdSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC10producerIdSSvg", + "mangledName": "$s9Mediasoup12DataConsumerC10producerIdSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC6closedSbvp", + "mangledName": "$s9Mediasoup12DataConsumerC6closedSbvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC6closedSbvg", + "mangledName": "$s9Mediasoup12DataConsumerC6closedSbvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "label", + "printedName": "label", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC5labelSSvp", + "mangledName": "$s9Mediasoup12DataConsumerC5labelSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC5labelSSvg", + "mangledName": "$s9Mediasoup12DataConsumerC5labelSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dataProtocol", + "printedName": "dataProtocol", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC12dataProtocolSSvp", + "mangledName": "$s9Mediasoup12DataConsumerC12dataProtocolSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC12dataProtocolSSvg", + "mangledName": "$s9Mediasoup12DataConsumerC12dataProtocolSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC03appB0SSvp", + "mangledName": "$s9Mediasoup12DataConsumerC03appB0SSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC03appB0SSvg", + "mangledName": "$s9Mediasoup12DataConsumerC03appB0SSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sctpStreamParameters", + "printedName": "sctpStreamParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC20sctpStreamParametersSSvp", + "mangledName": "$s9Mediasoup12DataConsumerC20sctpStreamParametersSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC20sctpStreamParametersSSvg", + "mangledName": "$s9Mediasoup12DataConsumerC20sctpStreamParametersSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "close", + "printedName": "close()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup12DataConsumerC5closeyyF", + "mangledName": "$s9Mediasoup12DataConsumerC5closeyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMessage", + "printedName": "onMessage(_:consumer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "DataConsumerWrapper", + "printedName": "Mediasoup_Private.DataConsumerWrapper", + "usr": "c:objc(cs)DataConsumerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup12DataConsumerC9onMessage_8consumery10Foundation0B0V_So0bC7WrapperCtF", + "mangledName": "$s9Mediasoup12DataConsumerC9onMessage_8consumery10Foundation0B0V_So0bC7WrapperCtF", + "moduleName": "Mediasoup", + "objc_name": "onMessage:consumer:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onConnecting", + "printedName": "onConnecting(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumerWrapper", + "printedName": "Mediasoup_Private.DataConsumerWrapper", + "usr": "c:objc(cs)DataConsumerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup12DataConsumerC12onConnectingyySo0bC7WrapperCF", + "mangledName": "$s9Mediasoup12DataConsumerC12onConnectingyySo0bC7WrapperCF", + "moduleName": "Mediasoup", + "objc_name": "onConnecting:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onOpen", + "printedName": "onOpen(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumerWrapper", + "printedName": "Mediasoup_Private.DataConsumerWrapper", + "usr": "c:objc(cs)DataConsumerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup12DataConsumerC6onOpenyySo0bC7WrapperCF", + "mangledName": "$s9Mediasoup12DataConsumerC6onOpenyySo0bC7WrapperCF", + "moduleName": "Mediasoup", + "objc_name": "onOpen:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onClosing", + "printedName": "onClosing(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumerWrapper", + "printedName": "Mediasoup_Private.DataConsumerWrapper", + "usr": "c:objc(cs)DataConsumerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup12DataConsumerC9onClosingyySo0bC7WrapperCF", + "mangledName": "$s9Mediasoup12DataConsumerC9onClosingyySo0bC7WrapperCF", + "moduleName": "Mediasoup", + "objc_name": "onClosing:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onClose", + "printedName": "onClose(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumerWrapper", + "printedName": "Mediasoup_Private.DataConsumerWrapper", + "usr": "c:objc(cs)DataConsumerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup12DataConsumerC7onCloseyySo0bC7WrapperCF", + "mangledName": "$s9Mediasoup12DataConsumerC7onCloseyySo0bC7WrapperCF", + "moduleName": "Mediasoup", + "objc_name": "onClose:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTransportClose", + "printedName": "onTransportClose(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumerWrapper", + "printedName": "Mediasoup_Private.DataConsumerWrapper", + "usr": "c:objc(cs)DataConsumerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup12DataConsumerC16onTransportCloseyySo0bC7WrapperCF", + "mangledName": "$s9Mediasoup12DataConsumerC16onTransportCloseyySo0bC7WrapperCF", + "moduleName": "Mediasoup", + "objc_name": "onTransportClose:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9Mediasoup12DataConsumerC", + "mangledName": "$s9Mediasoup12DataConsumerC", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "DataConsumerDelegate", + "printedName": "DataConsumerDelegate", + "children": [ + { + "kind": "Function", + "name": "onConnecting", + "printedName": "onConnecting(consumer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumer", + "printedName": "Mediasoup.DataConsumer", + "usr": "s:9Mediasoup12DataConsumerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup20DataConsumerDelegateP12onConnecting8consumeryAA0bC0C_tF", + "mangledName": "$s9Mediasoup20DataConsumerDelegateP12onConnecting8consumeryAA0bC0C_tF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.DataConsumerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onOpen", + "printedName": "onOpen(consumer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumer", + "printedName": "Mediasoup.DataConsumer", + "usr": "s:9Mediasoup12DataConsumerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup20DataConsumerDelegateP6onOpen8consumeryAA0bC0C_tF", + "mangledName": "$s9Mediasoup20DataConsumerDelegateP6onOpen8consumeryAA0bC0C_tF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.DataConsumerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onClosing", + "printedName": "onClosing(consumer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumer", + "printedName": "Mediasoup.DataConsumer", + "usr": "s:9Mediasoup12DataConsumerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup20DataConsumerDelegateP9onClosing8consumeryAA0bC0C_tF", + "mangledName": "$s9Mediasoup20DataConsumerDelegateP9onClosing8consumeryAA0bC0C_tF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.DataConsumerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onClose", + "printedName": "onClose(consumer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumer", + "printedName": "Mediasoup.DataConsumer", + "usr": "s:9Mediasoup12DataConsumerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup20DataConsumerDelegateP7onClose8consumeryAA0bC0C_tF", + "mangledName": "$s9Mediasoup20DataConsumerDelegateP7onClose8consumeryAA0bC0C_tF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.DataConsumerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTransportClose", + "printedName": "onTransportClose(in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumer", + "printedName": "Mediasoup.DataConsumer", + "usr": "s:9Mediasoup12DataConsumerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup20DataConsumerDelegateP16onTransportClose2inyAA0bC0C_tF", + "mangledName": "$s9Mediasoup20DataConsumerDelegateP16onTransportClose2inyAA0bC0C_tF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.DataConsumerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMessage", + "printedName": "onMessage(data:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "DataConsumer", + "printedName": "Mediasoup.DataConsumer", + "usr": "s:9Mediasoup12DataConsumerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup20DataConsumerDelegateP9onMessage4data4fromy10Foundation0B0V_AA0bC0CtF", + "mangledName": "$s9Mediasoup20DataConsumerDelegateP9onMessage4data4fromy10Foundation0B0V_AA0bC0CtF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.DataConsumerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9Mediasoup20DataConsumerDelegateP", + "mangledName": "$s9Mediasoup20DataConsumerDelegateP", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "ICETransportPolicy", + "printedName": "ICETransportPolicy", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.ICETransportPolicy.Type) -> Mediasoup.ICETransportPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.ICETransportPolicy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup18ICETransportPolicyO4noneyA2CmF", + "mangledName": "$s9Mediasoup18ICETransportPolicyO4noneyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "relay", + "printedName": "relay", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.ICETransportPolicy.Type) -> Mediasoup.ICETransportPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.ICETransportPolicy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup18ICETransportPolicyO5relayyA2CmF", + "mangledName": "$s9Mediasoup18ICETransportPolicyO5relayyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "noHost", + "printedName": "noHost", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.ICETransportPolicy.Type) -> Mediasoup.ICETransportPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.ICETransportPolicy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup18ICETransportPolicyO6noHostyA2CmF", + "mangledName": "$s9Mediasoup18ICETransportPolicyO6noHostyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "all", + "printedName": "all", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.ICETransportPolicy.Type) -> Mediasoup.ICETransportPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.ICETransportPolicy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup18ICETransportPolicyO3allyA2CmF", + "mangledName": "$s9Mediasoup18ICETransportPolicyO3allyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + }, + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup18ICETransportPolicyO2eeoiySbAC_ACtFZ", + "mangledName": "$s9Mediasoup18ICETransportPolicyO2eeoiySbAC_ACtFZ", + "moduleName": "Mediasoup", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup18ICETransportPolicyO9hashValueSivp", + "mangledName": "$s9Mediasoup18ICETransportPolicyO9hashValueSivp", + "moduleName": "Mediasoup", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup18ICETransportPolicyO9hashValueSivg", + "mangledName": "$s9Mediasoup18ICETransportPolicyO9hashValueSivg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup18ICETransportPolicyO4hash4intoys6HasherVz_tF", + "mangledName": "$s9Mediasoup18ICETransportPolicyO4hash4intoys6HasherVz_tF", + "moduleName": "Mediasoup", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9Mediasoup18ICETransportPolicyO", + "mangledName": "$s9Mediasoup18ICETransportPolicyO", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "Producer", + "printedName": "Producer", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "Mediasoup.ProducerDelegate?" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvp", + "mangledName": "$s9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.ProducerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProducerDelegate", + "printedName": "Mediasoup.ProducerDelegate", + "usr": "s:9Mediasoup16ProducerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvg", + "mangledName": "$s9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.ProducerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProducerDelegate", + "printedName": "Mediasoup.ProducerDelegate", + "usr": "s:9Mediasoup16ProducerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvs", + "mangledName": "$s9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvs", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvM", + "mangledName": "$s9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvM", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "track", + "printedName": "track", + "children": [ + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC5trackSo19RTCMediaStreamTrackCvp", + "mangledName": "$s9Mediasoup8ProducerC5trackSo19RTCMediaStreamTrackCvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC5trackSo19RTCMediaStreamTrackCvg", + "mangledName": "$s9Mediasoup8ProducerC5trackSo19RTCMediaStreamTrackCvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC2idSSvp", + "mangledName": "$s9Mediasoup8ProducerC2idSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC2idSSvg", + "mangledName": "$s9Mediasoup8ProducerC2idSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "localId", + "printedName": "localId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC7localIdSSvp", + "mangledName": "$s9Mediasoup8ProducerC7localIdSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC7localIdSSvg", + "mangledName": "$s9Mediasoup8ProducerC7localIdSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC6closedSbvp", + "mangledName": "$s9Mediasoup8ProducerC6closedSbvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC6closedSbvg", + "mangledName": "$s9Mediasoup8ProducerC6closedSbvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "paused", + "printedName": "paused", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC6pausedSbvp", + "mangledName": "$s9Mediasoup8ProducerC6pausedSbvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC6pausedSbvg", + "mangledName": "$s9Mediasoup8ProducerC6pausedSbvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC4kindAA9MediaKindOvp", + "mangledName": "$s9Mediasoup8ProducerC4kindAA9MediaKindOvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC4kindAA9MediaKindOvg", + "mangledName": "$s9Mediasoup8ProducerC4kindAA9MediaKindOvg", + "moduleName": "Mediasoup", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxSpatialLayer", + "printedName": "maxSpatialLayer", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC15maxSpatialLayers5UInt8Vvp", + "mangledName": "$s9Mediasoup8ProducerC15maxSpatialLayers5UInt8Vvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC15maxSpatialLayers5UInt8Vvg", + "mangledName": "$s9Mediasoup8ProducerC15maxSpatialLayers5UInt8Vvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC7appDataSSvp", + "mangledName": "$s9Mediasoup8ProducerC7appDataSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC7appDataSSvg", + "mangledName": "$s9Mediasoup8ProducerC7appDataSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rtpParameters", + "printedName": "rtpParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC13rtpParametersSSvp", + "mangledName": "$s9Mediasoup8ProducerC13rtpParametersSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC13rtpParametersSSvg", + "mangledName": "$s9Mediasoup8ProducerC13rtpParametersSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stats", + "printedName": "stats", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC5statsSSvp", + "mangledName": "$s9Mediasoup8ProducerC5statsSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC5statsSSvg", + "mangledName": "$s9Mediasoup8ProducerC5statsSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ProducerC5pauseyyF", + "mangledName": "$s9Mediasoup8ProducerC5pauseyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ProducerC6resumeyyF", + "mangledName": "$s9Mediasoup8ProducerC6resumeyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "close", + "printedName": "close()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ProducerC5closeyyF", + "mangledName": "$s9Mediasoup8ProducerC5closeyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setMaxSpatialLayer", + "printedName": "setMaxSpatialLayer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ProducerC18setMaxSpatialLayeryySiKF", + "mangledName": "$s9Mediasoup8ProducerC18setMaxSpatialLayeryySiKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "replaceTrack", + "printedName": "replaceTrack(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ProducerC12replaceTrackyySo014RTCMediaStreamD0CKF", + "mangledName": "$s9Mediasoup8ProducerC12replaceTrackyySo014RTCMediaStreamD0CKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getStats", + "printedName": "getStats()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ProducerC8getStatsSSyKF", + "mangledName": "$s9Mediasoup8ProducerC8getStatsSSyKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTransportClose", + "printedName": "onTransportClose(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProducerWrapper", + "printedName": "Mediasoup_Private.ProducerWrapper", + "usr": "c:objc(cs)ProducerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ProducerC16onTransportCloseyySo0B7WrapperCF", + "mangledName": "$s9Mediasoup8ProducerC16onTransportCloseyySo0B7WrapperCF", + "moduleName": "Mediasoup", + "objc_name": "onTransportClose:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9Mediasoup8ProducerC", + "mangledName": "$s9Mediasoup8ProducerC", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "Device", + "printedName": "Device", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Device", + "printedName": "Mediasoup.Device", + "usr": "s:9Mediasoup6DeviceC" + } + ], + "declKind": "Constructor", + "usr": "s:9Mediasoup6DeviceCACycfc", + "mangledName": "$s9Mediasoup6DeviceCACycfc", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pcFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Device", + "printedName": "Mediasoup.Device", + "usr": "s:9Mediasoup6DeviceC" + }, + { + "kind": "TypeNominal", + "name": "RTCPeerConnectionFactory", + "printedName": "WebRTC.RTCPeerConnectionFactory", + "usr": "c:objc(cs)RTCPeerConnectionFactory" + } + ], + "declKind": "Constructor", + "usr": "s:9Mediasoup6DeviceC9pcFactoryACSo017RTCPeerConnectionD0C_tcfc", + "mangledName": "$s9Mediasoup6DeviceC9pcFactoryACSo017RTCPeerConnectionD0C_tcfc", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "isLoaded", + "printedName": "isLoaded()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup6DeviceC8isLoadedSbyF", + "mangledName": "$s9Mediasoup6DeviceC8isLoadedSbyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup6DeviceC4load4withySS_tKF", + "mangledName": "$s9Mediasoup6DeviceC4load4withySS_tKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "rtpCapabilities", + "printedName": "rtpCapabilities()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup6DeviceC15rtpCapabilitiesSSyKF", + "mangledName": "$s9Mediasoup6DeviceC15rtpCapabilitiesSSyKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sctpCapabilities", + "printedName": "sctpCapabilities()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup6DeviceC16sctpCapabilitiesSSyKF", + "mangledName": "$s9Mediasoup6DeviceC16sctpCapabilitiesSSyKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "canProduce", + "printedName": "canProduce(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup6DeviceC10canProduceySbAA9MediaKindOKF", + "mangledName": "$s9Mediasoup6DeviceC10canProduceySbAA9MediaKindOKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createSendTransport", + "printedName": "createSendTransport(id:iceParameters:iceCandidates:dtlsParameters:sctpParameters:iceServers:iceTransportPolicy:appData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SendTransport", + "printedName": "Mediasoup.SendTransport", + "usr": "s:9Mediasoup13SendTransportC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "hasDefaultArg": true, + "usr": "s:9Mediasoup18ICETransportPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup6DeviceC19createSendTransport2id13iceParameters0G10Candidates04dtlsH004sctpH00G7Servers0gE6Policy7appDataAA0dE0CSS_S4SSgAoA012ICETransportM0OAOtKF", + "mangledName": "$s9Mediasoup6DeviceC19createSendTransport2id13iceParameters0G10Candidates04dtlsH004sctpH00G7Servers0gE6Policy7appDataAA0dE0CSS_S4SSgAoA012ICETransportM0OAOtKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createReceiveTransport", + "printedName": "createReceiveTransport(id:iceParameters:iceCandidates:dtlsParameters:sctpParameters:iceServers:iceTransportPolicy:appData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ReceiveTransport", + "printedName": "Mediasoup.ReceiveTransport", + "usr": "s:9Mediasoup16ReceiveTransportC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "hasDefaultArg": true, + "usr": "s:9Mediasoup18ICETransportPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup6DeviceC22createReceiveTransport2id13iceParameters0G10Candidates04dtlsH004sctpH00G7Servers0gE6Policy7appDataAA0dE0CSS_S4SSgAoA012ICETransportM0OAOtKF", + "mangledName": "$s9Mediasoup6DeviceC22createReceiveTransport2id13iceParameters0G10Candidates04dtlsH004sctpH00G7Servers0gE6Policy7appDataAA0dE0CSS_S4SSgAoA012ICETransportM0OAOtKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9Mediasoup6DeviceC", + "mangledName": "$s9Mediasoup6DeviceC", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "Consumer", + "printedName": "Consumer", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "Mediasoup.ConsumerDelegate?" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvp", + "mangledName": "$s9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.ConsumerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConsumerDelegate", + "printedName": "Mediasoup.ConsumerDelegate", + "usr": "s:9Mediasoup16ConsumerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvg", + "mangledName": "$s9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.ConsumerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConsumerDelegate", + "printedName": "Mediasoup.ConsumerDelegate", + "usr": "s:9Mediasoup16ConsumerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvs", + "mangledName": "$s9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvs", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvM", + "mangledName": "$s9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvM", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "track", + "printedName": "track", + "children": [ + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC5trackSo19RTCMediaStreamTrackCvp", + "mangledName": "$s9Mediasoup8ConsumerC5trackSo19RTCMediaStreamTrackCvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC5trackSo19RTCMediaStreamTrackCvg", + "mangledName": "$s9Mediasoup8ConsumerC5trackSo19RTCMediaStreamTrackCvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC2idSSvp", + "mangledName": "$s9Mediasoup8ConsumerC2idSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC2idSSvg", + "mangledName": "$s9Mediasoup8ConsumerC2idSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "localId", + "printedName": "localId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC7localIdSSvp", + "mangledName": "$s9Mediasoup8ConsumerC7localIdSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC7localIdSSvg", + "mangledName": "$s9Mediasoup8ConsumerC7localIdSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "producerId", + "printedName": "producerId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC10producerIdSSvp", + "mangledName": "$s9Mediasoup8ConsumerC10producerIdSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC10producerIdSSvg", + "mangledName": "$s9Mediasoup8ConsumerC10producerIdSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC6closedSbvp", + "mangledName": "$s9Mediasoup8ConsumerC6closedSbvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC6closedSbvg", + "mangledName": "$s9Mediasoup8ConsumerC6closedSbvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "paused", + "printedName": "paused", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC6pausedSbvp", + "mangledName": "$s9Mediasoup8ConsumerC6pausedSbvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC6pausedSbvg", + "mangledName": "$s9Mediasoup8ConsumerC6pausedSbvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC4kindAA9MediaKindOvp", + "mangledName": "$s9Mediasoup8ConsumerC4kindAA9MediaKindOvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC4kindAA9MediaKindOvg", + "mangledName": "$s9Mediasoup8ConsumerC4kindAA9MediaKindOvg", + "moduleName": "Mediasoup", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC7appDataSSvp", + "mangledName": "$s9Mediasoup8ConsumerC7appDataSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC7appDataSSvg", + "mangledName": "$s9Mediasoup8ConsumerC7appDataSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rtpParameters", + "printedName": "rtpParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC13rtpParametersSSvp", + "mangledName": "$s9Mediasoup8ConsumerC13rtpParametersSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC13rtpParametersSSvg", + "mangledName": "$s9Mediasoup8ConsumerC13rtpParametersSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stats", + "printedName": "stats", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC5statsSSvp", + "mangledName": "$s9Mediasoup8ConsumerC5statsSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC5statsSSvg", + "mangledName": "$s9Mediasoup8ConsumerC5statsSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ConsumerC5pauseyyF", + "mangledName": "$s9Mediasoup8ConsumerC5pauseyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ConsumerC6resumeyyF", + "mangledName": "$s9Mediasoup8ConsumerC6resumeyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "close", + "printedName": "close()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ConsumerC5closeyyF", + "mangledName": "$s9Mediasoup8ConsumerC5closeyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTransportClose", + "printedName": "onTransportClose(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConsumerWrapper", + "printedName": "Mediasoup_Private.ConsumerWrapper", + "usr": "c:objc(cs)ConsumerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ConsumerC16onTransportCloseyySo0B7WrapperCF", + "mangledName": "$s9Mediasoup8ConsumerC16onTransportCloseyySo0B7WrapperCF", + "moduleName": "Mediasoup", + "objc_name": "onTransportClose:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9Mediasoup8ConsumerC", + "mangledName": "$s9Mediasoup8ConsumerC", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + } + ], + "json_format_version": 8 + }, + "ConstValues": [] +} \ No newline at end of file diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios.private.swiftinterface b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios.private.swiftinterface new file mode 100644 index 0000000..93772a8 --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -0,0 +1,283 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) +// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Mediasoup +// swift-module-flags-ignorable: -enable-bare-slash-regex +import Foundation +@_exported import Mediasoup +import Mediasoup_Private +import Swift +import WebRTC +import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims +public protocol ReceiveTransportDelegate : Mediasoup.TransportDelegate { +} +@_hasMissingDesignatedInitializers public class ReceiveTransport { + weak public var delegate: (any Mediasoup.ReceiveTransportDelegate)? + @objc deinit + public func consume(consumerId: Swift.String, producerId: Swift.String, kind: Mediasoup.MediaKind, rtpParameters: Swift.String, appData: Swift.String?) throws -> Mediasoup.Consumer + public func consumeData(consumerId: Swift.String, producerId: Swift.String, streamId: Swift.UInt16, label: Swift.String, protocol protocolName: Swift.String?, appData: Swift.String?) throws -> Mediasoup.DataConsumer +} +extension Mediasoup.ReceiveTransport : Mediasoup.Transport { + public var id: Swift.String { + get + } + public var closed: Swift.Bool { + get + } + public var connectionState: Mediasoup.TransportConnectionState { + get + } + public var appData: Swift.String { + get + } + public var stats: Swift.String { + get + } + public func close() + public func restartICE(with iceParameters: Swift.String) throws + public func updateICEServers(_ iceServers: Swift.String) throws +} +extension Mediasoup.ReceiveTransport : Mediasoup_Private.ReceiveTransportWrapperDelegate { + @objc dynamic public func onConnect(_ transport: Mediasoup_Private.ReceiveTransportWrapper, dtlsParameters: Swift.String) + @objc dynamic public func onConnectionStateChange(_ transport: Mediasoup_Private.ReceiveTransportWrapper, connectionState: Mediasoup_Private.MediasoupClientTransportConnectionState) +} +public enum MediaKind { + case audio + case video + public static func == (a: Mediasoup.MediaKind, b: Mediasoup.MediaKind) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public protocol Transport : AnyObject { + var id: Swift.String { get } + var closed: Swift.Bool { get } + var connectionState: Mediasoup.TransportConnectionState { get } + var appData: Swift.String { get } + var stats: Swift.String { get } + func close() + func restartICE(with iceParameters: Swift.String) throws + func updateICEServers(_ iceServers: Swift.String) throws +} +public protocol TransportDelegate : AnyObject { + func onConnect(transport: any Mediasoup.Transport, dtlsParameters: Swift.String) + func onConnectionStateChange(transport: any Mediasoup.Transport, connectionState: Mediasoup.TransportConnectionState) +} +public enum TransportConnectionState { + case new + case checking + case connected + case completed + case failed + case disconnected + case closed + public static func == (a: Mediasoup.TransportConnectionState, b: Mediasoup.TransportConnectionState) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class SendTransport { + weak public var delegate: (any Mediasoup.SendTransportDelegate)? + @objc deinit + public func createProducer(for track: WebRTC.RTCMediaStreamTrack, encodings: [WebRTC.RTCRtpEncodingParameters]?, codecOptions: Swift.String?, codec: Swift.String?, appData: Swift.String?) throws -> Mediasoup.Producer + public func createProducer(for track: WebRTC.RTCMediaStreamTrack, encoding: WebRTC.RTCRtpEncodingParameters, scalabilityMode: Swift.String, codecOptions: Swift.String?, codec: Swift.String?, appData: Swift.String?) throws -> Mediasoup.Producer +} +extension Mediasoup.SendTransport : Mediasoup.Transport { + public var id: Swift.String { + get + } + public var closed: Swift.Bool { + get + } + public var connectionState: Mediasoup.TransportConnectionState { + get + } + public var appData: Swift.String { + get + } + public var stats: Swift.String { + get + } + public func close() + public func restartICE(with iceParameters: Swift.String) throws + public func updateICEServers(_ iceServers: Swift.String) throws +} +extension Mediasoup.SendTransport : Mediasoup_Private.SendTransportWrapperDelegate { + @objc dynamic public func onConnect(_ transport: Mediasoup_Private.SendTransportWrapper, dtlsParameters: Swift.String) + @objc dynamic public func onConnectionStateChange(_ transport: Mediasoup_Private.SendTransportWrapper, connectionState: Mediasoup_Private.MediasoupClientTransportConnectionState) + @objc dynamic public func onProduce(_ transport: Mediasoup_Private.SendTransportWrapper, kind: Swift.String, rtpParameters: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) + @objc dynamic public func onProduceData(_ transport: Mediasoup_Private.SendTransportWrapper, sctpParameters: Swift.String, label: Swift.String, protocol dataProtocol: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) +} +public protocol ConsumerDelegate : AnyObject { + func onTransportClose(in consumer: Mediasoup.Consumer) +} +public protocol SendTransportDelegate : Mediasoup.TransportDelegate { + func onProduce(transport: any Mediasoup.Transport, kind: Mediasoup.MediaKind, rtpParameters: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) + func onProduceData(transport: any Mediasoup.Transport, sctpParameters: Swift.String, label: Swift.String, protocol dataProtocol: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) +} +public enum MediasoupError : Swift.Error { + case unsupported(Swift.String) + case invalidState(Swift.String) + case invalidParameters(Swift.String) + case mediasoup(Foundation.NSError) + case unknown(any Swift.Error) +} +public protocol ProducerDelegate : AnyObject { + func onTransportClose(in producer: Mediasoup.Producer) +} +@_hasMissingDesignatedInitializers public class DataConsumer { + weak public var delegate: (any Mediasoup.DataConsumerDelegate)? + public var id: Swift.String { + get + } + public var localId: Swift.String { + get + } + public var producerId: Swift.String { + get + } + public var closed: Swift.Bool { + get + } + public var label: Swift.String { + get + } + public var dataProtocol: Swift.String { + get + } + public var appData: Swift.String { + get + } + public var sctpStreamParameters: Swift.String { + get + } + public func close() + @objc deinit +} +extension Mediasoup.DataConsumer : Mediasoup_Private.DataConsumerWrapperDelegate { + @objc dynamic public func onMessage(_ messageData: Foundation.Data, consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onConnecting(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onOpen(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onClosing(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onClose(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onTransportClose(_ consumer: Mediasoup_Private.DataConsumerWrapper) +} +public protocol DataConsumerDelegate : AnyObject { + func onConnecting(consumer: Mediasoup.DataConsumer) + func onOpen(consumer: Mediasoup.DataConsumer) + func onClosing(consumer: Mediasoup.DataConsumer) + func onClose(consumer: Mediasoup.DataConsumer) + func onTransportClose(in consumer: Mediasoup.DataConsumer) + func onMessage(data: Foundation.Data, from consumer: Mediasoup.DataConsumer) +} +public enum ICETransportPolicy { + case none + case relay + case noHost + case all + public static func == (a: Mediasoup.ICETransportPolicy, b: Mediasoup.ICETransportPolicy) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class Producer { + weak public var delegate: (any Mediasoup.ProducerDelegate)? + public var track: WebRTC.RTCMediaStreamTrack { + get + } + public var id: Swift.String { + get + } + public var localId: Swift.String { + get + } + public var closed: Swift.Bool { + get + } + public var paused: Swift.Bool { + get + } + final public let kind: Mediasoup.MediaKind + public var maxSpatialLayer: Swift.UInt8 { + get + } + public var appData: Swift.String { + get + } + public var rtpParameters: Swift.String { + get + } + public var stats: Swift.String { + get + } + public func pause() + public func resume() + public func close() + public func setMaxSpatialLayer(_ layer: Swift.Int) throws + public func replaceTrack(_ track: WebRTC.RTCMediaStreamTrack) throws + public func getStats() throws -> Swift.String + @objc deinit +} +extension Mediasoup.Producer : Mediasoup_Private.ProducerWrapperDelegate { + @objc dynamic public func onTransportClose(_ producer: Mediasoup_Private.ProducerWrapper) +} +public class Device { + public init() + public init(pcFactory: WebRTC.RTCPeerConnectionFactory) + public func isLoaded() -> Swift.Bool + public func load(with routerRTPCapabilities: Swift.String) throws + public func rtpCapabilities() throws -> Swift.String + public func sctpCapabilities() throws -> Swift.String + public func canProduce(_ mediaKind: Mediasoup.MediaKind) throws -> Swift.Bool + public func createSendTransport(id: Swift.String, iceParameters: Swift.String, iceCandidates: Swift.String, dtlsParameters: Swift.String, sctpParameters: Swift.String?, iceServers: Swift.String? = nil, iceTransportPolicy: Mediasoup.ICETransportPolicy = .all, appData: Swift.String?) throws -> Mediasoup.SendTransport + public func createReceiveTransport(id: Swift.String, iceParameters: Swift.String, iceCandidates: Swift.String, dtlsParameters: Swift.String, sctpParameters: Swift.String? = nil, iceServers: Swift.String? = nil, iceTransportPolicy: Mediasoup.ICETransportPolicy = .all, appData: Swift.String? = nil) throws -> Mediasoup.ReceiveTransport + @objc deinit +} +@_hasMissingDesignatedInitializers public class Consumer { + weak public var delegate: (any Mediasoup.ConsumerDelegate)? + public var track: WebRTC.RTCMediaStreamTrack { + get + } + public var id: Swift.String { + get + } + public var localId: Swift.String { + get + } + public var producerId: Swift.String { + get + } + public var closed: Swift.Bool { + get + } + public var paused: Swift.Bool { + get + } + final public let kind: Mediasoup.MediaKind + public var appData: Swift.String { + get + } + public var rtpParameters: Swift.String { + get + } + public var stats: Swift.String { + get + } + public func pause() + public func resume() + public func close() + @objc deinit +} +extension Mediasoup.Consumer : Mediasoup_Private.ConsumerWrapperDelegate { + @objc dynamic public func onTransportClose(_ consumer: Mediasoup_Private.ConsumerWrapper) +} +extension Mediasoup.MediaKind : Swift.Equatable {} +extension Mediasoup.MediaKind : Swift.Hashable {} +extension Mediasoup.TransportConnectionState : Swift.Equatable {} +extension Mediasoup.TransportConnectionState : Swift.Hashable {} +extension Mediasoup.ICETransportPolicy : Swift.Equatable {} +extension Mediasoup.ICETransportPolicy : Swift.Hashable {} diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios.swiftdoc b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios.swiftdoc index 8ff17cd..e4e7ad3 100644 Binary files a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios.swiftdoc and b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios.swiftinterface b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios.swiftinterface index 5f63fa1..93772a8 100644 --- a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios.swiftinterface +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,18 +1,22 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) // swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Mediasoup +// swift-module-flags-ignorable: -enable-bare-slash-regex import Foundation @_exported import Mediasoup import Mediasoup_Private import Swift import WebRTC import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims public protocol ReceiveTransportDelegate : Mediasoup.TransportDelegate { } @_hasMissingDesignatedInitializers public class ReceiveTransport { - weak public var delegate: Mediasoup.ReceiveTransportDelegate? + weak public var delegate: (any Mediasoup.ReceiveTransportDelegate)? @objc deinit public func consume(consumerId: Swift.String, producerId: Swift.String, kind: Mediasoup.MediaKind, rtpParameters: Swift.String, appData: Swift.String?) throws -> Mediasoup.Consumer + public func consumeData(consumerId: Swift.String, producerId: Swift.String, streamId: Swift.UInt16, label: Swift.String, protocol protocolName: Swift.String?, appData: Swift.String?) throws -> Mediasoup.DataConsumer } extension Mediasoup.ReceiveTransport : Mediasoup.Transport { public var id: Swift.String { @@ -33,7 +37,6 @@ extension Mediasoup.ReceiveTransport : Mediasoup.Transport { public func close() public func restartICE(with iceParameters: Swift.String) throws public func updateICEServers(_ iceServers: Swift.String) throws - public func updateICETransportPolicy(_ transportPolicy: Mediasoup.ICETransportPolicy) throws } extension Mediasoup.ReceiveTransport : Mediasoup_Private.ReceiveTransportWrapperDelegate { @objc dynamic public func onConnect(_ transport: Mediasoup_Private.ReceiveTransportWrapper, dtlsParameters: Swift.String) @@ -57,11 +60,10 @@ public protocol Transport : AnyObject { func close() func restartICE(with iceParameters: Swift.String) throws func updateICEServers(_ iceServers: Swift.String) throws - func updateICETransportPolicy(_ transportPolicy: Mediasoup.ICETransportPolicy) throws } public protocol TransportDelegate : AnyObject { - func onConnect(transport: Mediasoup.Transport, dtlsParameters: Swift.String) - func onConnectionStateChange(transport: Mediasoup.Transport, connectionState: Mediasoup.TransportConnectionState) + func onConnect(transport: any Mediasoup.Transport, dtlsParameters: Swift.String) + func onConnectionStateChange(transport: any Mediasoup.Transport, connectionState: Mediasoup.TransportConnectionState) } public enum TransportConnectionState { case new @@ -78,9 +80,10 @@ public enum TransportConnectionState { } } @_hasMissingDesignatedInitializers public class SendTransport { - weak public var delegate: Mediasoup.SendTransportDelegate? + weak public var delegate: (any Mediasoup.SendTransportDelegate)? @objc deinit - public func createProducer(for track: WebRTC.RTCMediaStreamTrack, encodings: [WebRTC.RTCRtpEncodingParameters]?, codecOptions: Swift.String?, appData: Swift.String?) throws -> Mediasoup.Producer + public func createProducer(for track: WebRTC.RTCMediaStreamTrack, encodings: [WebRTC.RTCRtpEncodingParameters]?, codecOptions: Swift.String?, codec: Swift.String?, appData: Swift.String?) throws -> Mediasoup.Producer + public func createProducer(for track: WebRTC.RTCMediaStreamTrack, encoding: WebRTC.RTCRtpEncodingParameters, scalabilityMode: Swift.String, codecOptions: Swift.String?, codec: Swift.String?, appData: Swift.String?) throws -> Mediasoup.Producer } extension Mediasoup.SendTransport : Mediasoup.Transport { public var id: Swift.String { @@ -101,7 +104,6 @@ extension Mediasoup.SendTransport : Mediasoup.Transport { public func close() public func restartICE(with iceParameters: Swift.String) throws public func updateICEServers(_ iceServers: Swift.String) throws - public func updateICETransportPolicy(_ transportPolicy: Mediasoup.ICETransportPolicy) throws } extension Mediasoup.SendTransport : Mediasoup_Private.SendTransportWrapperDelegate { @objc dynamic public func onConnect(_ transport: Mediasoup_Private.SendTransportWrapper, dtlsParameters: Swift.String) @@ -113,19 +115,64 @@ public protocol ConsumerDelegate : AnyObject { func onTransportClose(in consumer: Mediasoup.Consumer) } public protocol SendTransportDelegate : Mediasoup.TransportDelegate { - func onProduce(transport: Mediasoup.Transport, kind: Mediasoup.MediaKind, rtpParameters: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) - func onProduceData(transport: Mediasoup.Transport, sctpParameters: Swift.String, label: Swift.String, protocol dataProtocol: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) + func onProduce(transport: any Mediasoup.Transport, kind: Mediasoup.MediaKind, rtpParameters: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) + func onProduceData(transport: any Mediasoup.Transport, sctpParameters: Swift.String, label: Swift.String, protocol dataProtocol: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) } public enum MediasoupError : Swift.Error { case unsupported(Swift.String) case invalidState(Swift.String) case invalidParameters(Swift.String) case mediasoup(Foundation.NSError) - case unknown(Swift.Error) + case unknown(any Swift.Error) } public protocol ProducerDelegate : AnyObject { func onTransportClose(in producer: Mediasoup.Producer) } +@_hasMissingDesignatedInitializers public class DataConsumer { + weak public var delegate: (any Mediasoup.DataConsumerDelegate)? + public var id: Swift.String { + get + } + public var localId: Swift.String { + get + } + public var producerId: Swift.String { + get + } + public var closed: Swift.Bool { + get + } + public var label: Swift.String { + get + } + public var dataProtocol: Swift.String { + get + } + public var appData: Swift.String { + get + } + public var sctpStreamParameters: Swift.String { + get + } + public func close() + @objc deinit +} +extension Mediasoup.DataConsumer : Mediasoup_Private.DataConsumerWrapperDelegate { + @objc dynamic public func onMessage(_ messageData: Foundation.Data, consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onConnecting(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onOpen(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onClosing(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onClose(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onTransportClose(_ consumer: Mediasoup_Private.DataConsumerWrapper) +} +public protocol DataConsumerDelegate : AnyObject { + func onConnecting(consumer: Mediasoup.DataConsumer) + func onOpen(consumer: Mediasoup.DataConsumer) + func onClosing(consumer: Mediasoup.DataConsumer) + func onClose(consumer: Mediasoup.DataConsumer) + func onTransportClose(in consumer: Mediasoup.DataConsumer) + func onMessage(data: Foundation.Data, from consumer: Mediasoup.DataConsumer) +} public enum ICETransportPolicy { case none case relay @@ -138,7 +185,7 @@ public enum ICETransportPolicy { } } @_hasMissingDesignatedInitializers public class Producer { - weak public var delegate: Mediasoup.ProducerDelegate? + weak public var delegate: (any Mediasoup.ProducerDelegate)? public var track: WebRTC.RTCMediaStreamTrack { get } @@ -180,17 +227,18 @@ extension Mediasoup.Producer : Mediasoup_Private.ProducerWrapperDelegate { } public class Device { public init() + public init(pcFactory: WebRTC.RTCPeerConnectionFactory) public func isLoaded() -> Swift.Bool public func load(with routerRTPCapabilities: Swift.String) throws public func rtpCapabilities() throws -> Swift.String public func sctpCapabilities() throws -> Swift.String public func canProduce(_ mediaKind: Mediasoup.MediaKind) throws -> Swift.Bool - public func createSendTransport(id: Swift.String, iceParameters: Swift.String, iceCandidates: Swift.String, dtlsParameters: Swift.String, sctpParameters: Swift.String?, appData: Swift.String?) throws -> Mediasoup.SendTransport - public func createReceiveTransport(id: Swift.String, iceParameters: Swift.String, iceCandidates: Swift.String, dtlsParameters: Swift.String, sctpParameters: Swift.String? = nil, appData: Swift.String? = nil) throws -> Mediasoup.ReceiveTransport + public func createSendTransport(id: Swift.String, iceParameters: Swift.String, iceCandidates: Swift.String, dtlsParameters: Swift.String, sctpParameters: Swift.String?, iceServers: Swift.String? = nil, iceTransportPolicy: Mediasoup.ICETransportPolicy = .all, appData: Swift.String?) throws -> Mediasoup.SendTransport + public func createReceiveTransport(id: Swift.String, iceParameters: Swift.String, iceCandidates: Swift.String, dtlsParameters: Swift.String, sctpParameters: Swift.String? = nil, iceServers: Swift.String? = nil, iceTransportPolicy: Mediasoup.ICETransportPolicy = .all, appData: Swift.String? = nil) throws -> Mediasoup.ReceiveTransport @objc deinit } @_hasMissingDesignatedInitializers public class Consumer { - weak public var delegate: Mediasoup.ConsumerDelegate? + weak public var delegate: (any Mediasoup.ConsumerDelegate)? public var track: WebRTC.RTCMediaStreamTrack { get } diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/module.modulemap b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/module.modulemap index 5eb97ec..3adf8e5 100644 --- a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/module.modulemap +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/module.modulemap @@ -3,6 +3,6 @@ framework module Mediasoup { } module Mediasoup.Swift { - header "Mediasoup-Swift.h" - requires objc + header "Mediasoup-Swift.h" + requires objc } diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/module.private.modulemap b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/module.private.modulemap index 2fa9879..7f3d59c 100644 --- a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/module.private.modulemap +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Modules/module.private.modulemap @@ -11,4 +11,6 @@ module Mediasoup_Private { private header "PrivateHeaders/ReceiveTransportWrapperDelegate.h" private header "PrivateHeaders/ConsumerWrapper.hpp" private header "PrivateHeaders/ConsumerWrapperDelegate.h" + private header "PrivateHeaders/DataConsumerWrapper.hpp" + private header "PrivateHeaders/DataConsumerWrapperDelegate.h" } diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/PrivateHeaders/DataConsumerWrapper.hpp b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/PrivateHeaders/DataConsumerWrapper.hpp new file mode 100644 index 0000000..df76d7f --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/PrivateHeaders/DataConsumerWrapper.hpp @@ -0,0 +1,37 @@ +#ifndef DataConsumerWrapper_h +#define DataConsumerWrapper_h + +#import + +#ifdef __cplusplus +namespace mediasoupclient { + class DataConsumer; +} +class DataConsumerListenerAdapter; +#endif + +@protocol DataConsumerWrapperDelegate; + + +@interface DataConsumerWrapper : NSObject + +@property(nonatomic, nullable, weak) id delegate; +@property(nonatomic, nonnull, readonly, getter = id) NSString *id; +@property(nonatomic, nonnull, readonly, getter = localId) NSString *localId; +@property(nonatomic, nonnull, readonly, getter = producerId) NSString *producerId; +@property(nonatomic, nonnull, readonly, getter = sctpStreamParameters) NSString *sctpStreamParameters; +@property(nonatomic, readonly, getter = closed) BOOL closed; +@property(nonatomic, nonnull, readonly, getter = label) NSString *label; +@property(nonatomic, nonnull, readonly, getter = dataProtocol) NSString *dataProtocol; +@property(nonatomic, nonnull, readonly, getter = appData) NSString *appData; + +#ifdef __cplusplus +- (instancetype _Nullable)initWithDataConsumer:(mediasoupclient::DataConsumer *_Nonnull)consumer + listenerAdapter:(DataConsumerListenerAdapter *_Nonnull)listenerAdapter; +#endif + +- (void)close; + +@end + +#endif /* DataConsumerWrapper_h */ diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/PrivateHeaders/DataConsumerWrapperDelegate.h b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/PrivateHeaders/DataConsumerWrapperDelegate.h new file mode 100644 index 0000000..7f19a2a --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/PrivateHeaders/DataConsumerWrapperDelegate.h @@ -0,0 +1,19 @@ +#ifndef DataConsumerWrapperDelegate_h +#define DataConsumerWrapperDelegate_h + +#import + + +@class DataConsumerWrapper; + + +@protocol DataConsumerWrapperDelegate +- (void)onMessage:(NSData *_Nonnull)messageData consumer:(DataConsumerWrapper *_Nonnull)consumer; +- (void)onConnecting:(DataConsumerWrapper *_Nonnull)consumer; +- (void)onOpen:(DataConsumerWrapper *_Nonnull)consumer; +- (void)onClosing:(DataConsumerWrapper *_Nonnull)consumer; +- (void)onClose:(DataConsumerWrapper *_Nonnull)consumer; +- (void)onTransportClose:(DataConsumerWrapper *_Nonnull)consumer; +@end + +#endif /* DataConsumerWrapperDelegate_h */ diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/PrivateHeaders/DeviceWrapper.h b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/PrivateHeaders/DeviceWrapper.h index 66b7a52..1c9f8c9 100644 --- a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/PrivateHeaders/DeviceWrapper.h +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/PrivateHeaders/DeviceWrapper.h @@ -7,10 +7,15 @@ @class ReceiveTransportWrapper; @class SendTransportWrapper; +@class RTCPeerConnectionFactory; +typedef NS_ENUM(NSInteger, RTCIceTransportPolicy); @interface DeviceWrapper : NSObject +- (instancetype _Nonnull)init; +- (instancetype _Nonnull)initWithPCFactory:(RTCPeerConnectionFactory *_Nonnull)pcFactory NS_DESIGNATED_INITIALIZER; + - (BOOL)isLoaded; - (void)loadWithRouterRTPCapabilities:(NSString *_Nonnull)routerRTPCapabilities @@ -33,6 +38,8 @@ iceCandidates:(NSString *_Nonnull)iceCandidates dtlsParameters:(NSString *_Nonnull)dtlsParameters sctpParameters:(NSString *_Nullable)sctpParameters + iceServers:(NSString *_Nullable)iceServers + iceTransportPolicy:(RTCIceTransportPolicy)iceTransportPolicy appData:(NSString *_Nullable)appData error:(out NSError *__autoreleasing _Nullable *_Nullable)error; @@ -41,6 +48,8 @@ iceCandidates:(NSString *_Nonnull)iceCandidates dtlsParameters:(NSString *_Nonnull)dtlsParameters sctpParameters:(NSString *_Nullable)sctpParameters + iceServers:(NSString *_Nullable)iceServers + iceTransportPolicy:(RTCIceTransportPolicy)iceTransportPolicy appData:(NSString *_Nullable)appData error:(out NSError *__autoreleasing _Nullable *_Nullable)error; diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/PrivateHeaders/ReceiveTransportWrapper.hpp b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/PrivateHeaders/ReceiveTransportWrapper.hpp index b0975cc..f63b404 100644 --- a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/PrivateHeaders/ReceiveTransportWrapper.hpp +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/PrivateHeaders/ReceiveTransportWrapper.hpp @@ -12,9 +12,9 @@ class ReceiveTransportListenerAdapter; #endif @class ConsumerWrapper; +@class DataConsumerWrapper; @class RTCPeerConnectionFactory; @protocol ReceiveTransportWrapperDelegate; -typedef NS_ENUM(NSInteger, RTCIceTransportPolicy); @interface ReceiveTransportWrapper : NSObject @@ -42,10 +42,6 @@ typedef NS_ENUM(NSInteger, RTCIceTransportPolicy); error:(out NSError *__autoreleasing _Nullable *_Nullable)error __attribute__((swift_error(nonnull_error))); -- (void)updateICETransportPolicy:(RTCIceTransportPolicy)iceTransportPolicy - error:(out NSError *__autoreleasing _Nullable *_Nullable)error - __attribute__((swift_error(nonnull_error))); - - (ConsumerWrapper *_Nullable)createConsumerWithId:(NSString *_Nonnull)consumerId producerId:(NSString *_Nonnull)producerId kind:(MediasoupClientMediaKind _Nonnull)kind @@ -53,6 +49,14 @@ typedef NS_ENUM(NSInteger, RTCIceTransportPolicy); appData:(NSString *_Nullable)appData error:(out NSError *__autoreleasing _Nullable *_Nullable)error; +- (DataConsumerWrapper *_Nullable)createDataConsumerWithId:(NSString *_Nonnull)consumerId + producerId:(NSString *_Nonnull)producerId + streamId:(UInt16)streamId + label:(NSString *_Nonnull)label + protocol:(NSString *_Nullable)protocol + appData:(NSString *_Nullable)appData + error:(out NSError *__autoreleasing _Nullable *_Nullable)error; + @end #endif /* ReceiveTransportWrapper_h */ diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/PrivateHeaders/SendTransportWrapper.hpp b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/PrivateHeaders/SendTransportWrapper.hpp index b82c13c..a4fa6fa 100644 --- a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/PrivateHeaders/SendTransportWrapper.hpp +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/PrivateHeaders/SendTransportWrapper.hpp @@ -14,7 +14,7 @@ class SendTransportListenerAdapter; @class RTCMediaStreamTrack; @class RTCRtpEncodingParameters; @protocol SendTransportWrapperDelegate; -typedef NS_ENUM(NSInteger, RTCIceTransportPolicy); + @interface SendTransportWrapper : NSObject @@ -40,13 +40,18 @@ typedef NS_ENUM(NSInteger, RTCIceTransportPolicy); error:(out NSError *__autoreleasing _Nullable *_Nullable)error __attribute__((swift_error(nonnull_error))); -- (void)updateICETransportPolicy:(RTCIceTransportPolicy)iceTransportPolicy - error:(out NSError *__autoreleasing _Nullable *_Nullable)error - __attribute__((swift_error(nonnull_error))); - - (ProducerWrapper *_Nullable)createProducerForTrack:(RTCMediaStreamTrack *_Nonnull)mediaTrack encodings:(NSArray *_Nullable)encodings codecOptions:(NSString *_Nullable)codecOptions + codec:(NSString *_Nullable)codec + appData:(NSString *_Nullable)appData + error:(out NSError *__autoreleasing _Nullable *_Nullable)error; + +- (ProducerWrapper *_Nullable)createProducerForTrack:(RTCMediaStreamTrack *_Nonnull)mediaTrack + encoding:(RTCRtpEncodingParameters *_Nonnull)encoding + scalabilityMode:(NSString *_Nonnull)scalabilityMode + codecOptions:(NSString *_Nullable)codecOptions + codec:(NSString *_Nullable)codec appData:(NSString *_Nullable)appData error:(out NSError *__autoreleasing _Nullable *_Nullable)error; diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Headers/Mediasoup-Swift.h b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Headers/Mediasoup-Swift.h index acff87a..1ec87a1 100644 --- a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Headers/Mediasoup-Swift.h +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Headers/Mediasoup-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) #ifndef MEDIASOUP_SWIFT_H #define MEDIASOUP_SWIFT_H #pragma clang diagnostic push @@ -24,10 +24,38 @@ #endif #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#include +#include +#include +#include +#else #include #include #include +#include +#endif +#if defined(__cplusplus) +#if defined(__arm64e__) && __has_include() +# include +#else +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreserved-macro-identifier" +# ifndef __ptrauth_swift_value_witness_function_pointer +# define __ptrauth_swift_value_witness_function_pointer(x) +# endif +# ifndef __ptrauth_swift_class_method_pointer +# define __ptrauth_swift_class_method_pointer(x) +# endif +#pragma clang diagnostic pop +#endif +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -62,53 +90,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # if __has_feature(objc_class_property) # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ # else -# define SWIFT_CLASS_PROPERTY(...) +# define SWIFT_CLASS_PROPERTY(...) # endif #endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) +#if !defined(SWIFT_RUNTIME_NAME) +# if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +# else +# define SWIFT_RUNTIME_NAME(X) +# endif #endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) +#if !defined(SWIFT_COMPILE_NAME) +# if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +# else +# define SWIFT_COMPILE_NAME(X) +# endif #endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) +#if !defined(SWIFT_METHOD_FAMILY) +# if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +# else +# define SWIFT_METHOD_FAMILY(X) +# endif #endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE +#if !defined(SWIFT_NOESCAPE) +# if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +# else +# define SWIFT_NOESCAPE +# endif #endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT +#if !defined(SWIFT_RELEASES_ARGUMENT) +# if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +# else +# define SWIFT_RELEASES_ARGUMENT +# endif #endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT +#if !defined(SWIFT_WARN_UNUSED_RESULT) +# if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +# else +# define SWIFT_WARN_UNUSED_RESULT +# endif #endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN +#if !defined(SWIFT_NORETURN) +# if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +# else +# define SWIFT_NORETURN +# endif #endif #if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_EXTRA #endif #if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_EXTRA #endif #if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA +# define SWIFT_ENUM_EXTRA #endif #if !defined(SWIFT_CLASS) # if __has_attribute(objc_subclassing_restricted) @@ -128,28 +169,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) # endif #endif - #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA #endif - #if !defined(SWIFT_EXTENSION) # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) #endif - #if !defined(OBJC_DESIGNATED_INITIALIZER) # if __has_attribute(objc_designated_initializer) # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) # else -# define OBJC_DESIGNATED_INITIALIZER +# define OBJC_DESIGNATED_INITIALIZER # endif #endif #if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# if __has_attribute(enum_extensibility) # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) # else -# define SWIFT_ENUM_ATTR(_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) # endif #endif #if !defined(SWIFT_ENUM) @@ -178,13 +216,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_DEPRECATED_MSG) # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) #endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#if !defined(SWIFT_DEPRECATED_OBJC) +# if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +# else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +# endif #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) -# define IBSegueAction +# define IBSegueAction +#endif #endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) @@ -193,12 +235,51 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif -#if __has_feature(modules) +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if !defined(SWIFT_INDIRECT_RESULT) +# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) +#endif +#if !defined(SWIFT_CONTEXT) +# define SWIFT_CONTEXT __attribute__((swift_context)) +#endif +#if !defined(SWIFT_ERROR_RESULT) +# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) +#endif +#if defined(__cplusplus) +# define SWIFT_NOEXCEPT noexcept +#else +# define SWIFT_NOEXCEPT +#endif +#if !defined(SWIFT_C_INLINE_THUNK) +# if __has_attribute(always_inline) +# if __has_attribute(nodebug) +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) +# else +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) +# endif +# else +# define SWIFT_C_INLINE_THUNK inline +# endif +#endif +#if defined(_WIN32) +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) +#endif +#else +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL +#endif +#endif +#if defined(__OBJC__) +#if __has_feature(objc_modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -206,6 +287,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -214,14 +296,18 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif +#if defined(__cplusplus) +#endif #pragma clang diagnostic pop #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) #ifndef MEDIASOUP_SWIFT_H #define MEDIASOUP_SWIFT_H #pragma clang diagnostic push @@ -245,10 +331,38 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#include +#include +#include +#include +#else #include #include #include +#include +#endif +#if defined(__cplusplus) +#if defined(__arm64e__) && __has_include() +# include +#else +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreserved-macro-identifier" +# ifndef __ptrauth_swift_value_witness_function_pointer +# define __ptrauth_swift_value_witness_function_pointer(x) +# endif +# ifndef __ptrauth_swift_class_method_pointer +# define __ptrauth_swift_class_method_pointer(x) +# endif +#pragma clang diagnostic pop +#endif +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -283,53 +397,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # if __has_feature(objc_class_property) # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ # else -# define SWIFT_CLASS_PROPERTY(...) +# define SWIFT_CLASS_PROPERTY(...) # endif #endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) +#if !defined(SWIFT_RUNTIME_NAME) +# if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +# else +# define SWIFT_RUNTIME_NAME(X) +# endif #endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) +#if !defined(SWIFT_COMPILE_NAME) +# if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +# else +# define SWIFT_COMPILE_NAME(X) +# endif #endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) +#if !defined(SWIFT_METHOD_FAMILY) +# if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +# else +# define SWIFT_METHOD_FAMILY(X) +# endif #endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE +#if !defined(SWIFT_NOESCAPE) +# if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +# else +# define SWIFT_NOESCAPE +# endif #endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT +#if !defined(SWIFT_RELEASES_ARGUMENT) +# if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +# else +# define SWIFT_RELEASES_ARGUMENT +# endif #endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT +#if !defined(SWIFT_WARN_UNUSED_RESULT) +# if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +# else +# define SWIFT_WARN_UNUSED_RESULT +# endif #endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN +#if !defined(SWIFT_NORETURN) +# if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +# else +# define SWIFT_NORETURN +# endif #endif #if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_EXTRA #endif #if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_EXTRA #endif #if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA +# define SWIFT_ENUM_EXTRA #endif #if !defined(SWIFT_CLASS) # if __has_attribute(objc_subclassing_restricted) @@ -349,28 +476,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) # endif #endif - #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA #endif - #if !defined(SWIFT_EXTENSION) # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) #endif - #if !defined(OBJC_DESIGNATED_INITIALIZER) # if __has_attribute(objc_designated_initializer) # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) # else -# define OBJC_DESIGNATED_INITIALIZER +# define OBJC_DESIGNATED_INITIALIZER # endif #endif #if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# if __has_attribute(enum_extensibility) # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) # else -# define SWIFT_ENUM_ATTR(_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) # endif #endif #if !defined(SWIFT_ENUM) @@ -399,13 +523,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_DEPRECATED_MSG) # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) #endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#if !defined(SWIFT_DEPRECATED_OBJC) +# if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +# else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +# endif #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) -# define IBSegueAction +# define IBSegueAction +#endif #endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) @@ -414,12 +542,51 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif -#if __has_feature(modules) +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if !defined(SWIFT_INDIRECT_RESULT) +# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) +#endif +#if !defined(SWIFT_CONTEXT) +# define SWIFT_CONTEXT __attribute__((swift_context)) +#endif +#if !defined(SWIFT_ERROR_RESULT) +# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) +#endif +#if defined(__cplusplus) +# define SWIFT_NOEXCEPT noexcept +#else +# define SWIFT_NOEXCEPT +#endif +#if !defined(SWIFT_C_INLINE_THUNK) +# if __has_attribute(always_inline) +# if __has_attribute(nodebug) +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) +# else +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) +# endif +# else +# define SWIFT_C_INLINE_THUNK inline +# endif +#endif +#if defined(_WIN32) +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) +#endif +#else +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL +#endif +#endif +#if defined(__OBJC__) +#if __has_feature(objc_modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -427,6 +594,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -435,10 +603,16 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif +#if defined(__cplusplus) +#endif #pragma clang diagnostic pop #endif +#else +#error unsupported Swift architecture #endif diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Info.plist b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Info.plist index 221712e..700f945 100644 Binary files a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Info.plist and b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Info.plist differ diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Mediasoup b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Mediasoup index d80bf4e..973575b 100755 Binary files a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Mediasoup and b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Mediasoup differ diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo index d6beb79..290019e 100644 Binary files a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo and b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo differ diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo index ac10609..5b91407 100644 Binary files a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo and b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo differ diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.abi.json b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.abi.json new file mode 100644 index 0000000..3c02b65 --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -0,0 +1,6001 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "ReceiveTransportDelegate", + "printedName": "ReceiveTransportDelegate", + "declKind": "Protocol", + "usr": "s:9Mediasoup24ReceiveTransportDelegateP", + "mangledName": "$s9Mediasoup24ReceiveTransportDelegateP", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 : Mediasoup.TransportDelegate>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "TransportDelegate", + "printedName": "TransportDelegate", + "usr": "s:9Mediasoup17TransportDelegateP", + "mangledName": "$s9Mediasoup17TransportDelegateP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "ReceiveTransport", + "printedName": "ReceiveTransport", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "Mediasoup.ReceiveTransportDelegate?" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvp", + "mangledName": "$s9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.ReceiveTransportDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ReceiveTransportDelegate", + "printedName": "Mediasoup.ReceiveTransportDelegate", + "usr": "s:9Mediasoup24ReceiveTransportDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvg", + "mangledName": "$s9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.ReceiveTransportDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ReceiveTransportDelegate", + "printedName": "Mediasoup.ReceiveTransportDelegate", + "usr": "s:9Mediasoup24ReceiveTransportDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvs", + "mangledName": "$s9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvs", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvM", + "mangledName": "$s9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvM", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "consume", + "printedName": "consume(consumerId:producerId:kind:rtpParameters:appData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Consumer", + "printedName": "Mediasoup.Consumer", + "usr": "s:9Mediasoup8ConsumerC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ReceiveTransportC7consume10consumerId08producerF04kind13rtpParameters7appDataAA8ConsumerCSS_SSAA9MediaKindOS2SSgtKF", + "mangledName": "$s9Mediasoup16ReceiveTransportC7consume10consumerId08producerF04kind13rtpParameters7appDataAA8ConsumerCSS_SSAA9MediaKindOS2SSgtKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "consumeData", + "printedName": "consumeData(consumerId:producerId:streamId:label:protocol:appData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataConsumer", + "printedName": "Mediasoup.DataConsumer", + "usr": "s:9Mediasoup12DataConsumerC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ReceiveTransportC11consumeData10consumerId08producerG006streamG05label8protocol03appE0AA0E8ConsumerCSS_SSs6UInt16VS2SSgAOtKF", + "mangledName": "$s9Mediasoup16ReceiveTransportC11consumeData10consumerId08producerG006streamG05label8protocol03appE0AA0E8ConsumerCSS_SSs6UInt16VS2SSgAOtKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup16ReceiveTransportC2idSSvp", + "mangledName": "$s9Mediasoup16ReceiveTransportC2idSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC2idSSvg", + "mangledName": "$s9Mediasoup16ReceiveTransportC2idSSvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup16ReceiveTransportC6closedSbvp", + "mangledName": "$s9Mediasoup16ReceiveTransportC6closedSbvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC6closedSbvg", + "mangledName": "$s9Mediasoup16ReceiveTransportC6closedSbvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectionState", + "printedName": "connectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup16ReceiveTransportC15connectionStateAA0c10ConnectionE0Ovp", + "mangledName": "$s9Mediasoup16ReceiveTransportC15connectionStateAA0c10ConnectionE0Ovp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC15connectionStateAA0c10ConnectionE0Ovg", + "mangledName": "$s9Mediasoup16ReceiveTransportC15connectionStateAA0c10ConnectionE0Ovg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup16ReceiveTransportC7appDataSSvp", + "mangledName": "$s9Mediasoup16ReceiveTransportC7appDataSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC7appDataSSvg", + "mangledName": "$s9Mediasoup16ReceiveTransportC7appDataSSvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stats", + "printedName": "stats", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup16ReceiveTransportC5statsSSvp", + "mangledName": "$s9Mediasoup16ReceiveTransportC5statsSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC5statsSSvg", + "mangledName": "$s9Mediasoup16ReceiveTransportC5statsSSvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "close", + "printedName": "close()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ReceiveTransportC5closeyyF", + "mangledName": "$s9Mediasoup16ReceiveTransportC5closeyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "restartICE", + "printedName": "restartICE(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ReceiveTransportC10restartICE4withySS_tKF", + "mangledName": "$s9Mediasoup16ReceiveTransportC10restartICE4withySS_tKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateICEServers", + "printedName": "updateICEServers(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ReceiveTransportC16updateICEServersyySSKF", + "mangledName": "$s9Mediasoup16ReceiveTransportC16updateICEServersyySSKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onConnect", + "printedName": "onConnect(_:dtlsParameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReceiveTransportWrapper", + "printedName": "Mediasoup_Private.ReceiveTransportWrapper", + "usr": "c:objc(cs)ReceiveTransportWrapper" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ReceiveTransportC9onConnect_14dtlsParametersySo0bC7WrapperC_SStF", + "mangledName": "$s9Mediasoup16ReceiveTransportC9onConnect_14dtlsParametersySo0bC7WrapperC_SStF", + "moduleName": "Mediasoup", + "objc_name": "onConnect:dtlsParameters:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onConnectionStateChange", + "printedName": "onConnectionStateChange(_:connectionState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReceiveTransportWrapper", + "printedName": "Mediasoup_Private.ReceiveTransportWrapper", + "usr": "c:objc(cs)ReceiveTransportWrapper" + }, + { + "kind": "TypeNominal", + "name": "MediasoupClientTransportConnectionState", + "printedName": "Mediasoup_Private.MediasoupClientTransportConnectionState", + "usr": "c:MediasoupClientTransportConnectionState.h@T@MediasoupClientTransportConnectionState" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ReceiveTransportC23onConnectionStateChange_010connectionF0ySo0bC7WrapperC_So0a6ClientceF0atF", + "mangledName": "$s9Mediasoup16ReceiveTransportC23onConnectionStateChange_010connectionF0ySo0bC7WrapperC_So0a6ClientceF0atF", + "moduleName": "Mediasoup", + "objc_name": "onConnectionStateChange:connectionState:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9Mediasoup16ReceiveTransportC", + "mangledName": "$s9Mediasoup16ReceiveTransportC", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Transport", + "printedName": "Transport", + "usr": "s:9Mediasoup9TransportP", + "mangledName": "$s9Mediasoup9TransportP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "MediaKind", + "printedName": "MediaKind", + "children": [ + { + "kind": "Var", + "name": "audio", + "printedName": "audio", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediaKind.Type) -> Mediasoup.MediaKind", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.MediaKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup9MediaKindO5audioyA2CmF", + "mangledName": "$s9Mediasoup9MediaKindO5audioyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "video", + "printedName": "video", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediaKind.Type) -> Mediasoup.MediaKind", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.MediaKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup9MediaKindO5videoyA2CmF", + "mangledName": "$s9Mediasoup9MediaKindO5videoyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + }, + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup9MediaKindO2eeoiySbAC_ACtFZ", + "mangledName": "$s9Mediasoup9MediaKindO2eeoiySbAC_ACtFZ", + "moduleName": "Mediasoup", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup9MediaKindO9hashValueSivp", + "mangledName": "$s9Mediasoup9MediaKindO9hashValueSivp", + "moduleName": "Mediasoup", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup9MediaKindO9hashValueSivg", + "mangledName": "$s9Mediasoup9MediaKindO9hashValueSivg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup9MediaKindO4hash4intoys6HasherVz_tF", + "mangledName": "$s9Mediasoup9MediaKindO4hash4intoys6HasherVz_tF", + "moduleName": "Mediasoup", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9Mediasoup9MediaKindO", + "mangledName": "$s9Mediasoup9MediaKindO", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "Transport", + "printedName": "Transport", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup9TransportP2idSSvp", + "mangledName": "$s9Mediasoup9TransportP2idSSvp", + "moduleName": "Mediasoup", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup9TransportP2idSSvg", + "mangledName": "$s9Mediasoup9TransportP2idSSvg", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup9TransportP6closedSbvp", + "mangledName": "$s9Mediasoup9TransportP6closedSbvp", + "moduleName": "Mediasoup", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup9TransportP6closedSbvg", + "mangledName": "$s9Mediasoup9TransportP6closedSbvg", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectionState", + "printedName": "connectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup9TransportP15connectionStateAA0b10ConnectionD0Ovp", + "mangledName": "$s9Mediasoup9TransportP15connectionStateAA0b10ConnectionD0Ovp", + "moduleName": "Mediasoup", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup9TransportP15connectionStateAA0b10ConnectionD0Ovg", + "mangledName": "$s9Mediasoup9TransportP15connectionStateAA0b10ConnectionD0Ovg", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup9TransportP7appDataSSvp", + "mangledName": "$s9Mediasoup9TransportP7appDataSSvp", + "moduleName": "Mediasoup", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup9TransportP7appDataSSvg", + "mangledName": "$s9Mediasoup9TransportP7appDataSSvg", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stats", + "printedName": "stats", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup9TransportP5statsSSvp", + "mangledName": "$s9Mediasoup9TransportP5statsSSvp", + "moduleName": "Mediasoup", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup9TransportP5statsSSvg", + "mangledName": "$s9Mediasoup9TransportP5statsSSvg", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "close", + "printedName": "close()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup9TransportP5closeyyF", + "mangledName": "$s9Mediasoup9TransportP5closeyyF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "restartICE", + "printedName": "restartICE(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup9TransportP10restartICE4withySS_tKF", + "mangledName": "$s9Mediasoup9TransportP10restartICE4withySS_tKF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateICEServers", + "printedName": "updateICEServers(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup9TransportP16updateICEServersyySSKF", + "mangledName": "$s9Mediasoup9TransportP16updateICEServersyySSKF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9Mediasoup9TransportP", + "mangledName": "$s9Mediasoup9TransportP", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "TransportDelegate", + "printedName": "TransportDelegate", + "children": [ + { + "kind": "Function", + "name": "onConnect", + "printedName": "onConnect(transport:dtlsParameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Transport", + "printedName": "Mediasoup.Transport", + "usr": "s:9Mediasoup9TransportP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup17TransportDelegateP9onConnect9transport14dtlsParametersyAA0B0_p_SStF", + "mangledName": "$s9Mediasoup17TransportDelegateP9onConnect9transport14dtlsParametersyAA0B0_p_SStF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.TransportDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onConnectionStateChange", + "printedName": "onConnectionStateChange(transport:connectionState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Transport", + "printedName": "Mediasoup.Transport", + "usr": "s:9Mediasoup9TransportP" + }, + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup17TransportDelegateP23onConnectionStateChange9transport010connectionF0yAA0B0_p_AA0beF0OtF", + "mangledName": "$s9Mediasoup17TransportDelegateP23onConnectionStateChange9transport010connectionF0yAA0B0_p_AA0beF0OtF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.TransportDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9Mediasoup17TransportDelegateP", + "mangledName": "$s9Mediasoup17TransportDelegateP", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "TransportConnectionState", + "printedName": "TransportConnectionState", + "children": [ + { + "kind": "Var", + "name": "new", + "printedName": "new", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.TransportConnectionState.Type) -> Mediasoup.TransportConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.TransportConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup24TransportConnectionStateO3newyA2CmF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO3newyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "checking", + "printedName": "checking", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.TransportConnectionState.Type) -> Mediasoup.TransportConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.TransportConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup24TransportConnectionStateO8checkingyA2CmF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO8checkingyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "connected", + "printedName": "connected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.TransportConnectionState.Type) -> Mediasoup.TransportConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.TransportConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup24TransportConnectionStateO9connectedyA2CmF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO9connectedyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "completed", + "printedName": "completed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.TransportConnectionState.Type) -> Mediasoup.TransportConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.TransportConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup24TransportConnectionStateO9completedyA2CmF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO9completedyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.TransportConnectionState.Type) -> Mediasoup.TransportConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.TransportConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup24TransportConnectionStateO6failedyA2CmF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO6failedyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "disconnected", + "printedName": "disconnected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.TransportConnectionState.Type) -> Mediasoup.TransportConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.TransportConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup24TransportConnectionStateO12disconnectedyA2CmF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO12disconnectedyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.TransportConnectionState.Type) -> Mediasoup.TransportConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.TransportConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup24TransportConnectionStateO6closedyA2CmF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO6closedyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup24TransportConnectionStateO2eeoiySbAC_ACtFZ", + "mangledName": "$s9Mediasoup24TransportConnectionStateO2eeoiySbAC_ACtFZ", + "moduleName": "Mediasoup", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup24TransportConnectionStateO9hashValueSivp", + "mangledName": "$s9Mediasoup24TransportConnectionStateO9hashValueSivp", + "moduleName": "Mediasoup", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup24TransportConnectionStateO9hashValueSivg", + "mangledName": "$s9Mediasoup24TransportConnectionStateO9hashValueSivg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup24TransportConnectionStateO4hash4intoys6HasherVz_tF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO4hash4intoys6HasherVz_tF", + "moduleName": "Mediasoup", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9Mediasoup24TransportConnectionStateO", + "mangledName": "$s9Mediasoup24TransportConnectionStateO", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "SendTransport", + "printedName": "SendTransport", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "Mediasoup.SendTransportDelegate?" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvp", + "mangledName": "$s9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.SendTransportDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SendTransportDelegate", + "printedName": "Mediasoup.SendTransportDelegate", + "usr": "s:9Mediasoup21SendTransportDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvg", + "mangledName": "$s9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.SendTransportDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SendTransportDelegate", + "printedName": "Mediasoup.SendTransportDelegate", + "usr": "s:9Mediasoup21SendTransportDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvs", + "mangledName": "$s9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvs", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvM", + "mangledName": "$s9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvM", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "createProducer", + "printedName": "createProducer(for:encodings:codecOptions:codec:appData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Producer", + "printedName": "Mediasoup.Producer", + "usr": "s:9Mediasoup8ProducerC" + }, + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[WebRTC.RTCRtpEncodingParameters]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WebRTC.RTCRtpEncodingParameters]", + "children": [ + { + "kind": "TypeNominal", + "name": "RTCRtpEncodingParameters", + "printedName": "WebRTC.RTCRtpEncodingParameters", + "usr": "c:objc(cs)RTCRtpEncodingParameters" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC14createProducer3for9encodings12codecOptions0H07appDataAA0E0CSo19RTCMediaStreamTrackC_SaySo24RTCRtpEncodingParametersCGSgSSSgA2RtKF", + "mangledName": "$s9Mediasoup13SendTransportC14createProducer3for9encodings12codecOptions0H07appDataAA0E0CSo19RTCMediaStreamTrackC_SaySo24RTCRtpEncodingParametersCGSgSSSgA2RtKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createProducer", + "printedName": "createProducer(for:encoding:scalabilityMode:codecOptions:codec:appData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Producer", + "printedName": "Mediasoup.Producer", + "usr": "s:9Mediasoup8ProducerC" + }, + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + }, + { + "kind": "TypeNominal", + "name": "RTCRtpEncodingParameters", + "printedName": "WebRTC.RTCRtpEncodingParameters", + "usr": "c:objc(cs)RTCRtpEncodingParameters" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC14createProducer3for8encoding15scalabilityMode12codecOptions0J07appDataAA0E0CSo19RTCMediaStreamTrackC_So24RTCRtpEncodingParametersCS2SSgA2QtKF", + "mangledName": "$s9Mediasoup13SendTransportC14createProducer3for8encoding15scalabilityMode12codecOptions0J07appDataAA0E0CSo19RTCMediaStreamTrackC_So24RTCRtpEncodingParametersCS2SSgA2QtKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup13SendTransportC2idSSvp", + "mangledName": "$s9Mediasoup13SendTransportC2idSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC2idSSvg", + "mangledName": "$s9Mediasoup13SendTransportC2idSSvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup13SendTransportC6closedSbvp", + "mangledName": "$s9Mediasoup13SendTransportC6closedSbvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC6closedSbvg", + "mangledName": "$s9Mediasoup13SendTransportC6closedSbvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectionState", + "printedName": "connectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup13SendTransportC15connectionStateAA0c10ConnectionE0Ovp", + "mangledName": "$s9Mediasoup13SendTransportC15connectionStateAA0c10ConnectionE0Ovp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC15connectionStateAA0c10ConnectionE0Ovg", + "mangledName": "$s9Mediasoup13SendTransportC15connectionStateAA0c10ConnectionE0Ovg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup13SendTransportC7appDataSSvp", + "mangledName": "$s9Mediasoup13SendTransportC7appDataSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC7appDataSSvg", + "mangledName": "$s9Mediasoup13SendTransportC7appDataSSvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stats", + "printedName": "stats", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup13SendTransportC5statsSSvp", + "mangledName": "$s9Mediasoup13SendTransportC5statsSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC5statsSSvg", + "mangledName": "$s9Mediasoup13SendTransportC5statsSSvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "close", + "printedName": "close()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC5closeyyF", + "mangledName": "$s9Mediasoup13SendTransportC5closeyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "restartICE", + "printedName": "restartICE(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC10restartICE4withySS_tKF", + "mangledName": "$s9Mediasoup13SendTransportC10restartICE4withySS_tKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateICEServers", + "printedName": "updateICEServers(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC16updateICEServersyySSKF", + "mangledName": "$s9Mediasoup13SendTransportC16updateICEServersyySSKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onConnect", + "printedName": "onConnect(_:dtlsParameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SendTransportWrapper", + "printedName": "Mediasoup_Private.SendTransportWrapper", + "usr": "c:objc(cs)SendTransportWrapper" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC9onConnect_14dtlsParametersySo0bC7WrapperC_SStF", + "mangledName": "$s9Mediasoup13SendTransportC9onConnect_14dtlsParametersySo0bC7WrapperC_SStF", + "moduleName": "Mediasoup", + "objc_name": "onConnect:dtlsParameters:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onConnectionStateChange", + "printedName": "onConnectionStateChange(_:connectionState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SendTransportWrapper", + "printedName": "Mediasoup_Private.SendTransportWrapper", + "usr": "c:objc(cs)SendTransportWrapper" + }, + { + "kind": "TypeNominal", + "name": "MediasoupClientTransportConnectionState", + "printedName": "Mediasoup_Private.MediasoupClientTransportConnectionState", + "usr": "c:MediasoupClientTransportConnectionState.h@T@MediasoupClientTransportConnectionState" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC23onConnectionStateChange_010connectionF0ySo0bC7WrapperC_So0a6ClientceF0atF", + "mangledName": "$s9Mediasoup13SendTransportC23onConnectionStateChange_010connectionF0ySo0bC7WrapperC_So0a6ClientceF0atF", + "moduleName": "Mediasoup", + "objc_name": "onConnectionStateChange:connectionState:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onProduce", + "printedName": "onProduce(_:kind:rtpParameters:appData:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SendTransportWrapper", + "printedName": "Mediasoup_Private.SendTransportWrapper", + "usr": "c:objc(cs)SendTransportWrapper" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC9onProduce_4kind13rtpParameters7appData8callbackySo0bC7WrapperC_S3SySSSgctF", + "mangledName": "$s9Mediasoup13SendTransportC9onProduce_4kind13rtpParameters7appData8callbackySo0bC7WrapperC_S3SySSSgctF", + "moduleName": "Mediasoup", + "objc_name": "onProduce:kind:rtpParameters:appData:callback:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onProduceData", + "printedName": "onProduceData(_:sctpParameters:label:protocol:appData:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SendTransportWrapper", + "printedName": "Mediasoup_Private.SendTransportWrapper", + "usr": "c:objc(cs)SendTransportWrapper" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC13onProduceData_14sctpParameters5label8protocol03appF08callbackySo0bC7WrapperC_S4SySSSgctF", + "mangledName": "$s9Mediasoup13SendTransportC13onProduceData_14sctpParameters5label8protocol03appF08callbackySo0bC7WrapperC_S4SySSSgctF", + "moduleName": "Mediasoup", + "objc_name": "onProduceData:sctpParameters:label:protocol:appData:callback:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9Mediasoup13SendTransportC", + "mangledName": "$s9Mediasoup13SendTransportC", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Transport", + "printedName": "Transport", + "usr": "s:9Mediasoup9TransportP", + "mangledName": "$s9Mediasoup9TransportP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "ConsumerDelegate", + "printedName": "ConsumerDelegate", + "children": [ + { + "kind": "Function", + "name": "onTransportClose", + "printedName": "onTransportClose(in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Consumer", + "printedName": "Mediasoup.Consumer", + "usr": "s:9Mediasoup8ConsumerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ConsumerDelegateP16onTransportClose2inyAA0B0C_tF", + "mangledName": "$s9Mediasoup16ConsumerDelegateP16onTransportClose2inyAA0B0C_tF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.ConsumerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9Mediasoup16ConsumerDelegateP", + "mangledName": "$s9Mediasoup16ConsumerDelegateP", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "SendTransportDelegate", + "printedName": "SendTransportDelegate", + "children": [ + { + "kind": "Function", + "name": "onProduce", + "printedName": "onProduce(transport:kind:rtpParameters:appData:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Transport", + "printedName": "Mediasoup.Transport", + "usr": "s:9Mediasoup9TransportP" + }, + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup21SendTransportDelegateP9onProduce9transport4kind13rtpParameters7appData8callbackyAA0C0_p_AA9MediaKindOS2SySSSgctF", + "mangledName": "$s9Mediasoup21SendTransportDelegateP9onProduce9transport4kind13rtpParameters7appData8callbackyAA0C0_p_AA9MediaKindOS2SySSSgctF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.SendTransportDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onProduceData", + "printedName": "onProduceData(transport:sctpParameters:label:protocol:appData:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Transport", + "printedName": "Mediasoup.Transport", + "usr": "s:9Mediasoup9TransportP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup21SendTransportDelegateP13onProduceData9transport14sctpParameters5label8protocol03appG08callbackyAA0C0_p_S4SySSSgctF", + "mangledName": "$s9Mediasoup21SendTransportDelegateP13onProduceData9transport14sctpParameters5label8protocol03appG08callbackyAA0C0_p_S4SySSSgctF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.SendTransportDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9Mediasoup21SendTransportDelegateP", + "mangledName": "$s9Mediasoup21SendTransportDelegateP", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 : Mediasoup.TransportDelegate>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "TransportDelegate", + "printedName": "TransportDelegate", + "usr": "s:9Mediasoup17TransportDelegateP", + "mangledName": "$s9Mediasoup17TransportDelegateP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "MediasoupError", + "printedName": "MediasoupError", + "children": [ + { + "kind": "Var", + "name": "unsupported", + "printedName": "unsupported", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediasoupError.Type) -> (Swift.String) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.MediasoupError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup0A5ErrorO11unsupportedyACSScACmF", + "mangledName": "$s9Mediasoup0A5ErrorO11unsupportedyACSScACmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "invalidState", + "printedName": "invalidState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediasoupError.Type) -> (Swift.String) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.MediasoupError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup0A5ErrorO12invalidStateyACSScACmF", + "mangledName": "$s9Mediasoup0A5ErrorO12invalidStateyACSScACmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "invalidParameters", + "printedName": "invalidParameters", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediasoupError.Type) -> (Swift.String) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.MediasoupError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup0A5ErrorO17invalidParametersyACSScACmF", + "mangledName": "$s9Mediasoup0A5ErrorO17invalidParametersyACSScACmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "mediasoup", + "printedName": "mediasoup", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediasoupError.Type) -> (Foundation.NSError) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.MediasoupError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup0A5ErrorO9mediasoupyACSo7NSErrorCcACmF", + "mangledName": "$s9Mediasoup0A5ErrorO9mediasoupyACSo7NSErrorCcACmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediasoupError.Type) -> (Swift.Error) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.MediasoupError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup0A5ErrorO7unknownyACs0B0_pcACmF", + "mangledName": "$s9Mediasoup0A5ErrorO7unknownyACs0B0_pcACmF", + "moduleName": "Mediasoup" + } + ], + "declKind": "Enum", + "usr": "s:9Mediasoup0A5ErrorO", + "mangledName": "$s9Mediasoup0A5ErrorO", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "ProducerDelegate", + "printedName": "ProducerDelegate", + "children": [ + { + "kind": "Function", + "name": "onTransportClose", + "printedName": "onTransportClose(in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Producer", + "printedName": "Mediasoup.Producer", + "usr": "s:9Mediasoup8ProducerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ProducerDelegateP16onTransportClose2inyAA0B0C_tF", + "mangledName": "$s9Mediasoup16ProducerDelegateP16onTransportClose2inyAA0B0C_tF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.ProducerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9Mediasoup16ProducerDelegateP", + "mangledName": "$s9Mediasoup16ProducerDelegateP", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "DataConsumer", + "printedName": "DataConsumer", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "Mediasoup.DataConsumerDelegate?" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvp", + "mangledName": "$s9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.DataConsumerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataConsumerDelegate", + "printedName": "Mediasoup.DataConsumerDelegate", + "usr": "s:9Mediasoup20DataConsumerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvg", + "mangledName": "$s9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.DataConsumerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataConsumerDelegate", + "printedName": "Mediasoup.DataConsumerDelegate", + "usr": "s:9Mediasoup20DataConsumerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvs", + "mangledName": "$s9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvs", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvM", + "mangledName": "$s9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvM", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC2idSSvp", + "mangledName": "$s9Mediasoup12DataConsumerC2idSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC2idSSvg", + "mangledName": "$s9Mediasoup12DataConsumerC2idSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "localId", + "printedName": "localId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC7localIdSSvp", + "mangledName": "$s9Mediasoup12DataConsumerC7localIdSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC7localIdSSvg", + "mangledName": "$s9Mediasoup12DataConsumerC7localIdSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "producerId", + "printedName": "producerId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC10producerIdSSvp", + "mangledName": "$s9Mediasoup12DataConsumerC10producerIdSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC10producerIdSSvg", + "mangledName": "$s9Mediasoup12DataConsumerC10producerIdSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC6closedSbvp", + "mangledName": "$s9Mediasoup12DataConsumerC6closedSbvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC6closedSbvg", + "mangledName": "$s9Mediasoup12DataConsumerC6closedSbvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "label", + "printedName": "label", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC5labelSSvp", + "mangledName": "$s9Mediasoup12DataConsumerC5labelSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC5labelSSvg", + "mangledName": "$s9Mediasoup12DataConsumerC5labelSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dataProtocol", + "printedName": "dataProtocol", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC12dataProtocolSSvp", + "mangledName": "$s9Mediasoup12DataConsumerC12dataProtocolSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC12dataProtocolSSvg", + "mangledName": "$s9Mediasoup12DataConsumerC12dataProtocolSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC03appB0SSvp", + "mangledName": "$s9Mediasoup12DataConsumerC03appB0SSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC03appB0SSvg", + "mangledName": "$s9Mediasoup12DataConsumerC03appB0SSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sctpStreamParameters", + "printedName": "sctpStreamParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC20sctpStreamParametersSSvp", + "mangledName": "$s9Mediasoup12DataConsumerC20sctpStreamParametersSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC20sctpStreamParametersSSvg", + "mangledName": "$s9Mediasoup12DataConsumerC20sctpStreamParametersSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "close", + "printedName": "close()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup12DataConsumerC5closeyyF", + "mangledName": "$s9Mediasoup12DataConsumerC5closeyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMessage", + "printedName": "onMessage(_:consumer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "DataConsumerWrapper", + "printedName": "Mediasoup_Private.DataConsumerWrapper", + "usr": "c:objc(cs)DataConsumerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup12DataConsumerC9onMessage_8consumery10Foundation0B0V_So0bC7WrapperCtF", + "mangledName": "$s9Mediasoup12DataConsumerC9onMessage_8consumery10Foundation0B0V_So0bC7WrapperCtF", + "moduleName": "Mediasoup", + "objc_name": "onMessage:consumer:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onConnecting", + "printedName": "onConnecting(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumerWrapper", + "printedName": "Mediasoup_Private.DataConsumerWrapper", + "usr": "c:objc(cs)DataConsumerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup12DataConsumerC12onConnectingyySo0bC7WrapperCF", + "mangledName": "$s9Mediasoup12DataConsumerC12onConnectingyySo0bC7WrapperCF", + "moduleName": "Mediasoup", + "objc_name": "onConnecting:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onOpen", + "printedName": "onOpen(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumerWrapper", + "printedName": "Mediasoup_Private.DataConsumerWrapper", + "usr": "c:objc(cs)DataConsumerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup12DataConsumerC6onOpenyySo0bC7WrapperCF", + "mangledName": "$s9Mediasoup12DataConsumerC6onOpenyySo0bC7WrapperCF", + "moduleName": "Mediasoup", + "objc_name": "onOpen:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onClosing", + "printedName": "onClosing(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumerWrapper", + "printedName": "Mediasoup_Private.DataConsumerWrapper", + "usr": "c:objc(cs)DataConsumerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup12DataConsumerC9onClosingyySo0bC7WrapperCF", + "mangledName": "$s9Mediasoup12DataConsumerC9onClosingyySo0bC7WrapperCF", + "moduleName": "Mediasoup", + "objc_name": "onClosing:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onClose", + "printedName": "onClose(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumerWrapper", + "printedName": "Mediasoup_Private.DataConsumerWrapper", + "usr": "c:objc(cs)DataConsumerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup12DataConsumerC7onCloseyySo0bC7WrapperCF", + "mangledName": "$s9Mediasoup12DataConsumerC7onCloseyySo0bC7WrapperCF", + "moduleName": "Mediasoup", + "objc_name": "onClose:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTransportClose", + "printedName": "onTransportClose(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumerWrapper", + "printedName": "Mediasoup_Private.DataConsumerWrapper", + "usr": "c:objc(cs)DataConsumerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup12DataConsumerC16onTransportCloseyySo0bC7WrapperCF", + "mangledName": "$s9Mediasoup12DataConsumerC16onTransportCloseyySo0bC7WrapperCF", + "moduleName": "Mediasoup", + "objc_name": "onTransportClose:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9Mediasoup12DataConsumerC", + "mangledName": "$s9Mediasoup12DataConsumerC", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "DataConsumerDelegate", + "printedName": "DataConsumerDelegate", + "children": [ + { + "kind": "Function", + "name": "onConnecting", + "printedName": "onConnecting(consumer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumer", + "printedName": "Mediasoup.DataConsumer", + "usr": "s:9Mediasoup12DataConsumerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup20DataConsumerDelegateP12onConnecting8consumeryAA0bC0C_tF", + "mangledName": "$s9Mediasoup20DataConsumerDelegateP12onConnecting8consumeryAA0bC0C_tF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.DataConsumerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onOpen", + "printedName": "onOpen(consumer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumer", + "printedName": "Mediasoup.DataConsumer", + "usr": "s:9Mediasoup12DataConsumerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup20DataConsumerDelegateP6onOpen8consumeryAA0bC0C_tF", + "mangledName": "$s9Mediasoup20DataConsumerDelegateP6onOpen8consumeryAA0bC0C_tF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.DataConsumerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onClosing", + "printedName": "onClosing(consumer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumer", + "printedName": "Mediasoup.DataConsumer", + "usr": "s:9Mediasoup12DataConsumerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup20DataConsumerDelegateP9onClosing8consumeryAA0bC0C_tF", + "mangledName": "$s9Mediasoup20DataConsumerDelegateP9onClosing8consumeryAA0bC0C_tF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.DataConsumerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onClose", + "printedName": "onClose(consumer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumer", + "printedName": "Mediasoup.DataConsumer", + "usr": "s:9Mediasoup12DataConsumerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup20DataConsumerDelegateP7onClose8consumeryAA0bC0C_tF", + "mangledName": "$s9Mediasoup20DataConsumerDelegateP7onClose8consumeryAA0bC0C_tF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.DataConsumerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTransportClose", + "printedName": "onTransportClose(in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumer", + "printedName": "Mediasoup.DataConsumer", + "usr": "s:9Mediasoup12DataConsumerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup20DataConsumerDelegateP16onTransportClose2inyAA0bC0C_tF", + "mangledName": "$s9Mediasoup20DataConsumerDelegateP16onTransportClose2inyAA0bC0C_tF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.DataConsumerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMessage", + "printedName": "onMessage(data:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "DataConsumer", + "printedName": "Mediasoup.DataConsumer", + "usr": "s:9Mediasoup12DataConsumerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup20DataConsumerDelegateP9onMessage4data4fromy10Foundation0B0V_AA0bC0CtF", + "mangledName": "$s9Mediasoup20DataConsumerDelegateP9onMessage4data4fromy10Foundation0B0V_AA0bC0CtF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.DataConsumerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9Mediasoup20DataConsumerDelegateP", + "mangledName": "$s9Mediasoup20DataConsumerDelegateP", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "ICETransportPolicy", + "printedName": "ICETransportPolicy", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.ICETransportPolicy.Type) -> Mediasoup.ICETransportPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.ICETransportPolicy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup18ICETransportPolicyO4noneyA2CmF", + "mangledName": "$s9Mediasoup18ICETransportPolicyO4noneyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "relay", + "printedName": "relay", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.ICETransportPolicy.Type) -> Mediasoup.ICETransportPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.ICETransportPolicy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup18ICETransportPolicyO5relayyA2CmF", + "mangledName": "$s9Mediasoup18ICETransportPolicyO5relayyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "noHost", + "printedName": "noHost", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.ICETransportPolicy.Type) -> Mediasoup.ICETransportPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.ICETransportPolicy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup18ICETransportPolicyO6noHostyA2CmF", + "mangledName": "$s9Mediasoup18ICETransportPolicyO6noHostyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "all", + "printedName": "all", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.ICETransportPolicy.Type) -> Mediasoup.ICETransportPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.ICETransportPolicy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup18ICETransportPolicyO3allyA2CmF", + "mangledName": "$s9Mediasoup18ICETransportPolicyO3allyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + }, + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup18ICETransportPolicyO2eeoiySbAC_ACtFZ", + "mangledName": "$s9Mediasoup18ICETransportPolicyO2eeoiySbAC_ACtFZ", + "moduleName": "Mediasoup", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup18ICETransportPolicyO9hashValueSivp", + "mangledName": "$s9Mediasoup18ICETransportPolicyO9hashValueSivp", + "moduleName": "Mediasoup", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup18ICETransportPolicyO9hashValueSivg", + "mangledName": "$s9Mediasoup18ICETransportPolicyO9hashValueSivg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup18ICETransportPolicyO4hash4intoys6HasherVz_tF", + "mangledName": "$s9Mediasoup18ICETransportPolicyO4hash4intoys6HasherVz_tF", + "moduleName": "Mediasoup", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9Mediasoup18ICETransportPolicyO", + "mangledName": "$s9Mediasoup18ICETransportPolicyO", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "Producer", + "printedName": "Producer", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "Mediasoup.ProducerDelegate?" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvp", + "mangledName": "$s9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.ProducerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProducerDelegate", + "printedName": "Mediasoup.ProducerDelegate", + "usr": "s:9Mediasoup16ProducerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvg", + "mangledName": "$s9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.ProducerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProducerDelegate", + "printedName": "Mediasoup.ProducerDelegate", + "usr": "s:9Mediasoup16ProducerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvs", + "mangledName": "$s9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvs", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvM", + "mangledName": "$s9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvM", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "track", + "printedName": "track", + "children": [ + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC5trackSo19RTCMediaStreamTrackCvp", + "mangledName": "$s9Mediasoup8ProducerC5trackSo19RTCMediaStreamTrackCvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC5trackSo19RTCMediaStreamTrackCvg", + "mangledName": "$s9Mediasoup8ProducerC5trackSo19RTCMediaStreamTrackCvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC2idSSvp", + "mangledName": "$s9Mediasoup8ProducerC2idSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC2idSSvg", + "mangledName": "$s9Mediasoup8ProducerC2idSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "localId", + "printedName": "localId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC7localIdSSvp", + "mangledName": "$s9Mediasoup8ProducerC7localIdSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC7localIdSSvg", + "mangledName": "$s9Mediasoup8ProducerC7localIdSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC6closedSbvp", + "mangledName": "$s9Mediasoup8ProducerC6closedSbvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC6closedSbvg", + "mangledName": "$s9Mediasoup8ProducerC6closedSbvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "paused", + "printedName": "paused", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC6pausedSbvp", + "mangledName": "$s9Mediasoup8ProducerC6pausedSbvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC6pausedSbvg", + "mangledName": "$s9Mediasoup8ProducerC6pausedSbvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC4kindAA9MediaKindOvp", + "mangledName": "$s9Mediasoup8ProducerC4kindAA9MediaKindOvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC4kindAA9MediaKindOvg", + "mangledName": "$s9Mediasoup8ProducerC4kindAA9MediaKindOvg", + "moduleName": "Mediasoup", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxSpatialLayer", + "printedName": "maxSpatialLayer", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC15maxSpatialLayers5UInt8Vvp", + "mangledName": "$s9Mediasoup8ProducerC15maxSpatialLayers5UInt8Vvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC15maxSpatialLayers5UInt8Vvg", + "mangledName": "$s9Mediasoup8ProducerC15maxSpatialLayers5UInt8Vvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC7appDataSSvp", + "mangledName": "$s9Mediasoup8ProducerC7appDataSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC7appDataSSvg", + "mangledName": "$s9Mediasoup8ProducerC7appDataSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rtpParameters", + "printedName": "rtpParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC13rtpParametersSSvp", + "mangledName": "$s9Mediasoup8ProducerC13rtpParametersSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC13rtpParametersSSvg", + "mangledName": "$s9Mediasoup8ProducerC13rtpParametersSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stats", + "printedName": "stats", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC5statsSSvp", + "mangledName": "$s9Mediasoup8ProducerC5statsSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC5statsSSvg", + "mangledName": "$s9Mediasoup8ProducerC5statsSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ProducerC5pauseyyF", + "mangledName": "$s9Mediasoup8ProducerC5pauseyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ProducerC6resumeyyF", + "mangledName": "$s9Mediasoup8ProducerC6resumeyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "close", + "printedName": "close()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ProducerC5closeyyF", + "mangledName": "$s9Mediasoup8ProducerC5closeyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setMaxSpatialLayer", + "printedName": "setMaxSpatialLayer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ProducerC18setMaxSpatialLayeryySiKF", + "mangledName": "$s9Mediasoup8ProducerC18setMaxSpatialLayeryySiKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "replaceTrack", + "printedName": "replaceTrack(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ProducerC12replaceTrackyySo014RTCMediaStreamD0CKF", + "mangledName": "$s9Mediasoup8ProducerC12replaceTrackyySo014RTCMediaStreamD0CKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getStats", + "printedName": "getStats()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ProducerC8getStatsSSyKF", + "mangledName": "$s9Mediasoup8ProducerC8getStatsSSyKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTransportClose", + "printedName": "onTransportClose(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProducerWrapper", + "printedName": "Mediasoup_Private.ProducerWrapper", + "usr": "c:objc(cs)ProducerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ProducerC16onTransportCloseyySo0B7WrapperCF", + "mangledName": "$s9Mediasoup8ProducerC16onTransportCloseyySo0B7WrapperCF", + "moduleName": "Mediasoup", + "objc_name": "onTransportClose:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9Mediasoup8ProducerC", + "mangledName": "$s9Mediasoup8ProducerC", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "Device", + "printedName": "Device", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Device", + "printedName": "Mediasoup.Device", + "usr": "s:9Mediasoup6DeviceC" + } + ], + "declKind": "Constructor", + "usr": "s:9Mediasoup6DeviceCACycfc", + "mangledName": "$s9Mediasoup6DeviceCACycfc", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pcFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Device", + "printedName": "Mediasoup.Device", + "usr": "s:9Mediasoup6DeviceC" + }, + { + "kind": "TypeNominal", + "name": "RTCPeerConnectionFactory", + "printedName": "WebRTC.RTCPeerConnectionFactory", + "usr": "c:objc(cs)RTCPeerConnectionFactory" + } + ], + "declKind": "Constructor", + "usr": "s:9Mediasoup6DeviceC9pcFactoryACSo017RTCPeerConnectionD0C_tcfc", + "mangledName": "$s9Mediasoup6DeviceC9pcFactoryACSo017RTCPeerConnectionD0C_tcfc", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "isLoaded", + "printedName": "isLoaded()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup6DeviceC8isLoadedSbyF", + "mangledName": "$s9Mediasoup6DeviceC8isLoadedSbyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup6DeviceC4load4withySS_tKF", + "mangledName": "$s9Mediasoup6DeviceC4load4withySS_tKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "rtpCapabilities", + "printedName": "rtpCapabilities()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup6DeviceC15rtpCapabilitiesSSyKF", + "mangledName": "$s9Mediasoup6DeviceC15rtpCapabilitiesSSyKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sctpCapabilities", + "printedName": "sctpCapabilities()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup6DeviceC16sctpCapabilitiesSSyKF", + "mangledName": "$s9Mediasoup6DeviceC16sctpCapabilitiesSSyKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "canProduce", + "printedName": "canProduce(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup6DeviceC10canProduceySbAA9MediaKindOKF", + "mangledName": "$s9Mediasoup6DeviceC10canProduceySbAA9MediaKindOKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createSendTransport", + "printedName": "createSendTransport(id:iceParameters:iceCandidates:dtlsParameters:sctpParameters:iceServers:iceTransportPolicy:appData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SendTransport", + "printedName": "Mediasoup.SendTransport", + "usr": "s:9Mediasoup13SendTransportC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "hasDefaultArg": true, + "usr": "s:9Mediasoup18ICETransportPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup6DeviceC19createSendTransport2id13iceParameters0G10Candidates04dtlsH004sctpH00G7Servers0gE6Policy7appDataAA0dE0CSS_S4SSgAoA012ICETransportM0OAOtKF", + "mangledName": "$s9Mediasoup6DeviceC19createSendTransport2id13iceParameters0G10Candidates04dtlsH004sctpH00G7Servers0gE6Policy7appDataAA0dE0CSS_S4SSgAoA012ICETransportM0OAOtKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createReceiveTransport", + "printedName": "createReceiveTransport(id:iceParameters:iceCandidates:dtlsParameters:sctpParameters:iceServers:iceTransportPolicy:appData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ReceiveTransport", + "printedName": "Mediasoup.ReceiveTransport", + "usr": "s:9Mediasoup16ReceiveTransportC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "hasDefaultArg": true, + "usr": "s:9Mediasoup18ICETransportPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup6DeviceC22createReceiveTransport2id13iceParameters0G10Candidates04dtlsH004sctpH00G7Servers0gE6Policy7appDataAA0dE0CSS_S4SSgAoA012ICETransportM0OAOtKF", + "mangledName": "$s9Mediasoup6DeviceC22createReceiveTransport2id13iceParameters0G10Candidates04dtlsH004sctpH00G7Servers0gE6Policy7appDataAA0dE0CSS_S4SSgAoA012ICETransportM0OAOtKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9Mediasoup6DeviceC", + "mangledName": "$s9Mediasoup6DeviceC", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "Consumer", + "printedName": "Consumer", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "Mediasoup.ConsumerDelegate?" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvp", + "mangledName": "$s9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.ConsumerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConsumerDelegate", + "printedName": "Mediasoup.ConsumerDelegate", + "usr": "s:9Mediasoup16ConsumerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvg", + "mangledName": "$s9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.ConsumerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConsumerDelegate", + "printedName": "Mediasoup.ConsumerDelegate", + "usr": "s:9Mediasoup16ConsumerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvs", + "mangledName": "$s9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvs", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvM", + "mangledName": "$s9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvM", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "track", + "printedName": "track", + "children": [ + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC5trackSo19RTCMediaStreamTrackCvp", + "mangledName": "$s9Mediasoup8ConsumerC5trackSo19RTCMediaStreamTrackCvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC5trackSo19RTCMediaStreamTrackCvg", + "mangledName": "$s9Mediasoup8ConsumerC5trackSo19RTCMediaStreamTrackCvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC2idSSvp", + "mangledName": "$s9Mediasoup8ConsumerC2idSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC2idSSvg", + "mangledName": "$s9Mediasoup8ConsumerC2idSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "localId", + "printedName": "localId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC7localIdSSvp", + "mangledName": "$s9Mediasoup8ConsumerC7localIdSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC7localIdSSvg", + "mangledName": "$s9Mediasoup8ConsumerC7localIdSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "producerId", + "printedName": "producerId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC10producerIdSSvp", + "mangledName": "$s9Mediasoup8ConsumerC10producerIdSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC10producerIdSSvg", + "mangledName": "$s9Mediasoup8ConsumerC10producerIdSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC6closedSbvp", + "mangledName": "$s9Mediasoup8ConsumerC6closedSbvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC6closedSbvg", + "mangledName": "$s9Mediasoup8ConsumerC6closedSbvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "paused", + "printedName": "paused", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC6pausedSbvp", + "mangledName": "$s9Mediasoup8ConsumerC6pausedSbvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC6pausedSbvg", + "mangledName": "$s9Mediasoup8ConsumerC6pausedSbvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC4kindAA9MediaKindOvp", + "mangledName": "$s9Mediasoup8ConsumerC4kindAA9MediaKindOvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC4kindAA9MediaKindOvg", + "mangledName": "$s9Mediasoup8ConsumerC4kindAA9MediaKindOvg", + "moduleName": "Mediasoup", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC7appDataSSvp", + "mangledName": "$s9Mediasoup8ConsumerC7appDataSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC7appDataSSvg", + "mangledName": "$s9Mediasoup8ConsumerC7appDataSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rtpParameters", + "printedName": "rtpParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC13rtpParametersSSvp", + "mangledName": "$s9Mediasoup8ConsumerC13rtpParametersSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC13rtpParametersSSvg", + "mangledName": "$s9Mediasoup8ConsumerC13rtpParametersSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stats", + "printedName": "stats", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC5statsSSvp", + "mangledName": "$s9Mediasoup8ConsumerC5statsSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC5statsSSvg", + "mangledName": "$s9Mediasoup8ConsumerC5statsSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ConsumerC5pauseyyF", + "mangledName": "$s9Mediasoup8ConsumerC5pauseyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ConsumerC6resumeyyF", + "mangledName": "$s9Mediasoup8ConsumerC6resumeyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "close", + "printedName": "close()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ConsumerC5closeyyF", + "mangledName": "$s9Mediasoup8ConsumerC5closeyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTransportClose", + "printedName": "onTransportClose(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConsumerWrapper", + "printedName": "Mediasoup_Private.ConsumerWrapper", + "usr": "c:objc(cs)ConsumerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ConsumerC16onTransportCloseyySo0B7WrapperCF", + "mangledName": "$s9Mediasoup8ConsumerC16onTransportCloseyySo0B7WrapperCF", + "moduleName": "Mediasoup", + "objc_name": "onTransportClose:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9Mediasoup8ConsumerC", + "mangledName": "$s9Mediasoup8ConsumerC", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + } + ], + "json_format_version": 8 + }, + "ConstValues": [] +} \ No newline at end of file diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface new file mode 100644 index 0000000..9c11b5f --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -0,0 +1,283 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) +// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Mediasoup +// swift-module-flags-ignorable: -enable-bare-slash-regex +import Foundation +@_exported import Mediasoup +import Mediasoup_Private +import Swift +import WebRTC +import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims +public protocol ReceiveTransportDelegate : Mediasoup.TransportDelegate { +} +@_hasMissingDesignatedInitializers public class ReceiveTransport { + weak public var delegate: (any Mediasoup.ReceiveTransportDelegate)? + @objc deinit + public func consume(consumerId: Swift.String, producerId: Swift.String, kind: Mediasoup.MediaKind, rtpParameters: Swift.String, appData: Swift.String?) throws -> Mediasoup.Consumer + public func consumeData(consumerId: Swift.String, producerId: Swift.String, streamId: Swift.UInt16, label: Swift.String, protocol protocolName: Swift.String?, appData: Swift.String?) throws -> Mediasoup.DataConsumer +} +extension Mediasoup.ReceiveTransport : Mediasoup.Transport { + public var id: Swift.String { + get + } + public var closed: Swift.Bool { + get + } + public var connectionState: Mediasoup.TransportConnectionState { + get + } + public var appData: Swift.String { + get + } + public var stats: Swift.String { + get + } + public func close() + public func restartICE(with iceParameters: Swift.String) throws + public func updateICEServers(_ iceServers: Swift.String) throws +} +extension Mediasoup.ReceiveTransport : Mediasoup_Private.ReceiveTransportWrapperDelegate { + @objc dynamic public func onConnect(_ transport: Mediasoup_Private.ReceiveTransportWrapper, dtlsParameters: Swift.String) + @objc dynamic public func onConnectionStateChange(_ transport: Mediasoup_Private.ReceiveTransportWrapper, connectionState: Mediasoup_Private.MediasoupClientTransportConnectionState) +} +public enum MediaKind { + case audio + case video + public static func == (a: Mediasoup.MediaKind, b: Mediasoup.MediaKind) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public protocol Transport : AnyObject { + var id: Swift.String { get } + var closed: Swift.Bool { get } + var connectionState: Mediasoup.TransportConnectionState { get } + var appData: Swift.String { get } + var stats: Swift.String { get } + func close() + func restartICE(with iceParameters: Swift.String) throws + func updateICEServers(_ iceServers: Swift.String) throws +} +public protocol TransportDelegate : AnyObject { + func onConnect(transport: any Mediasoup.Transport, dtlsParameters: Swift.String) + func onConnectionStateChange(transport: any Mediasoup.Transport, connectionState: Mediasoup.TransportConnectionState) +} +public enum TransportConnectionState { + case new + case checking + case connected + case completed + case failed + case disconnected + case closed + public static func == (a: Mediasoup.TransportConnectionState, b: Mediasoup.TransportConnectionState) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class SendTransport { + weak public var delegate: (any Mediasoup.SendTransportDelegate)? + @objc deinit + public func createProducer(for track: WebRTC.RTCMediaStreamTrack, encodings: [WebRTC.RTCRtpEncodingParameters]?, codecOptions: Swift.String?, codec: Swift.String?, appData: Swift.String?) throws -> Mediasoup.Producer + public func createProducer(for track: WebRTC.RTCMediaStreamTrack, encoding: WebRTC.RTCRtpEncodingParameters, scalabilityMode: Swift.String, codecOptions: Swift.String?, codec: Swift.String?, appData: Swift.String?) throws -> Mediasoup.Producer +} +extension Mediasoup.SendTransport : Mediasoup.Transport { + public var id: Swift.String { + get + } + public var closed: Swift.Bool { + get + } + public var connectionState: Mediasoup.TransportConnectionState { + get + } + public var appData: Swift.String { + get + } + public var stats: Swift.String { + get + } + public func close() + public func restartICE(with iceParameters: Swift.String) throws + public func updateICEServers(_ iceServers: Swift.String) throws +} +extension Mediasoup.SendTransport : Mediasoup_Private.SendTransportWrapperDelegate { + @objc dynamic public func onConnect(_ transport: Mediasoup_Private.SendTransportWrapper, dtlsParameters: Swift.String) + @objc dynamic public func onConnectionStateChange(_ transport: Mediasoup_Private.SendTransportWrapper, connectionState: Mediasoup_Private.MediasoupClientTransportConnectionState) + @objc dynamic public func onProduce(_ transport: Mediasoup_Private.SendTransportWrapper, kind: Swift.String, rtpParameters: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) + @objc dynamic public func onProduceData(_ transport: Mediasoup_Private.SendTransportWrapper, sctpParameters: Swift.String, label: Swift.String, protocol dataProtocol: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) +} +public protocol ConsumerDelegate : AnyObject { + func onTransportClose(in consumer: Mediasoup.Consumer) +} +public protocol SendTransportDelegate : Mediasoup.TransportDelegate { + func onProduce(transport: any Mediasoup.Transport, kind: Mediasoup.MediaKind, rtpParameters: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) + func onProduceData(transport: any Mediasoup.Transport, sctpParameters: Swift.String, label: Swift.String, protocol dataProtocol: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) +} +public enum MediasoupError : Swift.Error { + case unsupported(Swift.String) + case invalidState(Swift.String) + case invalidParameters(Swift.String) + case mediasoup(Foundation.NSError) + case unknown(any Swift.Error) +} +public protocol ProducerDelegate : AnyObject { + func onTransportClose(in producer: Mediasoup.Producer) +} +@_hasMissingDesignatedInitializers public class DataConsumer { + weak public var delegate: (any Mediasoup.DataConsumerDelegate)? + public var id: Swift.String { + get + } + public var localId: Swift.String { + get + } + public var producerId: Swift.String { + get + } + public var closed: Swift.Bool { + get + } + public var label: Swift.String { + get + } + public var dataProtocol: Swift.String { + get + } + public var appData: Swift.String { + get + } + public var sctpStreamParameters: Swift.String { + get + } + public func close() + @objc deinit +} +extension Mediasoup.DataConsumer : Mediasoup_Private.DataConsumerWrapperDelegate { + @objc dynamic public func onMessage(_ messageData: Foundation.Data, consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onConnecting(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onOpen(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onClosing(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onClose(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onTransportClose(_ consumer: Mediasoup_Private.DataConsumerWrapper) +} +public protocol DataConsumerDelegate : AnyObject { + func onConnecting(consumer: Mediasoup.DataConsumer) + func onOpen(consumer: Mediasoup.DataConsumer) + func onClosing(consumer: Mediasoup.DataConsumer) + func onClose(consumer: Mediasoup.DataConsumer) + func onTransportClose(in consumer: Mediasoup.DataConsumer) + func onMessage(data: Foundation.Data, from consumer: Mediasoup.DataConsumer) +} +public enum ICETransportPolicy { + case none + case relay + case noHost + case all + public static func == (a: Mediasoup.ICETransportPolicy, b: Mediasoup.ICETransportPolicy) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class Producer { + weak public var delegate: (any Mediasoup.ProducerDelegate)? + public var track: WebRTC.RTCMediaStreamTrack { + get + } + public var id: Swift.String { + get + } + public var localId: Swift.String { + get + } + public var closed: Swift.Bool { + get + } + public var paused: Swift.Bool { + get + } + final public let kind: Mediasoup.MediaKind + public var maxSpatialLayer: Swift.UInt8 { + get + } + public var appData: Swift.String { + get + } + public var rtpParameters: Swift.String { + get + } + public var stats: Swift.String { + get + } + public func pause() + public func resume() + public func close() + public func setMaxSpatialLayer(_ layer: Swift.Int) throws + public func replaceTrack(_ track: WebRTC.RTCMediaStreamTrack) throws + public func getStats() throws -> Swift.String + @objc deinit +} +extension Mediasoup.Producer : Mediasoup_Private.ProducerWrapperDelegate { + @objc dynamic public func onTransportClose(_ producer: Mediasoup_Private.ProducerWrapper) +} +public class Device { + public init() + public init(pcFactory: WebRTC.RTCPeerConnectionFactory) + public func isLoaded() -> Swift.Bool + public func load(with routerRTPCapabilities: Swift.String) throws + public func rtpCapabilities() throws -> Swift.String + public func sctpCapabilities() throws -> Swift.String + public func canProduce(_ mediaKind: Mediasoup.MediaKind) throws -> Swift.Bool + public func createSendTransport(id: Swift.String, iceParameters: Swift.String, iceCandidates: Swift.String, dtlsParameters: Swift.String, sctpParameters: Swift.String?, iceServers: Swift.String? = nil, iceTransportPolicy: Mediasoup.ICETransportPolicy = .all, appData: Swift.String?) throws -> Mediasoup.SendTransport + public func createReceiveTransport(id: Swift.String, iceParameters: Swift.String, iceCandidates: Swift.String, dtlsParameters: Swift.String, sctpParameters: Swift.String? = nil, iceServers: Swift.String? = nil, iceTransportPolicy: Mediasoup.ICETransportPolicy = .all, appData: Swift.String? = nil) throws -> Mediasoup.ReceiveTransport + @objc deinit +} +@_hasMissingDesignatedInitializers public class Consumer { + weak public var delegate: (any Mediasoup.ConsumerDelegate)? + public var track: WebRTC.RTCMediaStreamTrack { + get + } + public var id: Swift.String { + get + } + public var localId: Swift.String { + get + } + public var producerId: Swift.String { + get + } + public var closed: Swift.Bool { + get + } + public var paused: Swift.Bool { + get + } + final public let kind: Mediasoup.MediaKind + public var appData: Swift.String { + get + } + public var rtpParameters: Swift.String { + get + } + public var stats: Swift.String { + get + } + public func pause() + public func resume() + public func close() + @objc deinit +} +extension Mediasoup.Consumer : Mediasoup_Private.ConsumerWrapperDelegate { + @objc dynamic public func onTransportClose(_ consumer: Mediasoup_Private.ConsumerWrapper) +} +extension Mediasoup.MediaKind : Swift.Equatable {} +extension Mediasoup.MediaKind : Swift.Hashable {} +extension Mediasoup.TransportConnectionState : Swift.Equatable {} +extension Mediasoup.TransportConnectionState : Swift.Hashable {} +extension Mediasoup.ICETransportPolicy : Swift.Equatable {} +extension Mediasoup.ICETransportPolicy : Swift.Hashable {} diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.swiftdoc index c738b8e..9a4a7fb 100644 Binary files a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.swiftinterface index af1a15b..9c11b5f 100644 --- a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,18 +1,22 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) // swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Mediasoup +// swift-module-flags-ignorable: -enable-bare-slash-regex import Foundation @_exported import Mediasoup import Mediasoup_Private import Swift import WebRTC import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims public protocol ReceiveTransportDelegate : Mediasoup.TransportDelegate { } @_hasMissingDesignatedInitializers public class ReceiveTransport { - weak public var delegate: Mediasoup.ReceiveTransportDelegate? + weak public var delegate: (any Mediasoup.ReceiveTransportDelegate)? @objc deinit public func consume(consumerId: Swift.String, producerId: Swift.String, kind: Mediasoup.MediaKind, rtpParameters: Swift.String, appData: Swift.String?) throws -> Mediasoup.Consumer + public func consumeData(consumerId: Swift.String, producerId: Swift.String, streamId: Swift.UInt16, label: Swift.String, protocol protocolName: Swift.String?, appData: Swift.String?) throws -> Mediasoup.DataConsumer } extension Mediasoup.ReceiveTransport : Mediasoup.Transport { public var id: Swift.String { @@ -33,7 +37,6 @@ extension Mediasoup.ReceiveTransport : Mediasoup.Transport { public func close() public func restartICE(with iceParameters: Swift.String) throws public func updateICEServers(_ iceServers: Swift.String) throws - public func updateICETransportPolicy(_ transportPolicy: Mediasoup.ICETransportPolicy) throws } extension Mediasoup.ReceiveTransport : Mediasoup_Private.ReceiveTransportWrapperDelegate { @objc dynamic public func onConnect(_ transport: Mediasoup_Private.ReceiveTransportWrapper, dtlsParameters: Swift.String) @@ -57,11 +60,10 @@ public protocol Transport : AnyObject { func close() func restartICE(with iceParameters: Swift.String) throws func updateICEServers(_ iceServers: Swift.String) throws - func updateICETransportPolicy(_ transportPolicy: Mediasoup.ICETransportPolicy) throws } public protocol TransportDelegate : AnyObject { - func onConnect(transport: Mediasoup.Transport, dtlsParameters: Swift.String) - func onConnectionStateChange(transport: Mediasoup.Transport, connectionState: Mediasoup.TransportConnectionState) + func onConnect(transport: any Mediasoup.Transport, dtlsParameters: Swift.String) + func onConnectionStateChange(transport: any Mediasoup.Transport, connectionState: Mediasoup.TransportConnectionState) } public enum TransportConnectionState { case new @@ -78,9 +80,10 @@ public enum TransportConnectionState { } } @_hasMissingDesignatedInitializers public class SendTransport { - weak public var delegate: Mediasoup.SendTransportDelegate? + weak public var delegate: (any Mediasoup.SendTransportDelegate)? @objc deinit - public func createProducer(for track: WebRTC.RTCMediaStreamTrack, encodings: [WebRTC.RTCRtpEncodingParameters]?, codecOptions: Swift.String?, appData: Swift.String?) throws -> Mediasoup.Producer + public func createProducer(for track: WebRTC.RTCMediaStreamTrack, encodings: [WebRTC.RTCRtpEncodingParameters]?, codecOptions: Swift.String?, codec: Swift.String?, appData: Swift.String?) throws -> Mediasoup.Producer + public func createProducer(for track: WebRTC.RTCMediaStreamTrack, encoding: WebRTC.RTCRtpEncodingParameters, scalabilityMode: Swift.String, codecOptions: Swift.String?, codec: Swift.String?, appData: Swift.String?) throws -> Mediasoup.Producer } extension Mediasoup.SendTransport : Mediasoup.Transport { public var id: Swift.String { @@ -101,7 +104,6 @@ extension Mediasoup.SendTransport : Mediasoup.Transport { public func close() public func restartICE(with iceParameters: Swift.String) throws public func updateICEServers(_ iceServers: Swift.String) throws - public func updateICETransportPolicy(_ transportPolicy: Mediasoup.ICETransportPolicy) throws } extension Mediasoup.SendTransport : Mediasoup_Private.SendTransportWrapperDelegate { @objc dynamic public func onConnect(_ transport: Mediasoup_Private.SendTransportWrapper, dtlsParameters: Swift.String) @@ -113,19 +115,64 @@ public protocol ConsumerDelegate : AnyObject { func onTransportClose(in consumer: Mediasoup.Consumer) } public protocol SendTransportDelegate : Mediasoup.TransportDelegate { - func onProduce(transport: Mediasoup.Transport, kind: Mediasoup.MediaKind, rtpParameters: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) - func onProduceData(transport: Mediasoup.Transport, sctpParameters: Swift.String, label: Swift.String, protocol dataProtocol: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) + func onProduce(transport: any Mediasoup.Transport, kind: Mediasoup.MediaKind, rtpParameters: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) + func onProduceData(transport: any Mediasoup.Transport, sctpParameters: Swift.String, label: Swift.String, protocol dataProtocol: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) } public enum MediasoupError : Swift.Error { case unsupported(Swift.String) case invalidState(Swift.String) case invalidParameters(Swift.String) case mediasoup(Foundation.NSError) - case unknown(Swift.Error) + case unknown(any Swift.Error) } public protocol ProducerDelegate : AnyObject { func onTransportClose(in producer: Mediasoup.Producer) } +@_hasMissingDesignatedInitializers public class DataConsumer { + weak public var delegate: (any Mediasoup.DataConsumerDelegate)? + public var id: Swift.String { + get + } + public var localId: Swift.String { + get + } + public var producerId: Swift.String { + get + } + public var closed: Swift.Bool { + get + } + public var label: Swift.String { + get + } + public var dataProtocol: Swift.String { + get + } + public var appData: Swift.String { + get + } + public var sctpStreamParameters: Swift.String { + get + } + public func close() + @objc deinit +} +extension Mediasoup.DataConsumer : Mediasoup_Private.DataConsumerWrapperDelegate { + @objc dynamic public func onMessage(_ messageData: Foundation.Data, consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onConnecting(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onOpen(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onClosing(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onClose(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onTransportClose(_ consumer: Mediasoup_Private.DataConsumerWrapper) +} +public protocol DataConsumerDelegate : AnyObject { + func onConnecting(consumer: Mediasoup.DataConsumer) + func onOpen(consumer: Mediasoup.DataConsumer) + func onClosing(consumer: Mediasoup.DataConsumer) + func onClose(consumer: Mediasoup.DataConsumer) + func onTransportClose(in consumer: Mediasoup.DataConsumer) + func onMessage(data: Foundation.Data, from consumer: Mediasoup.DataConsumer) +} public enum ICETransportPolicy { case none case relay @@ -138,7 +185,7 @@ public enum ICETransportPolicy { } } @_hasMissingDesignatedInitializers public class Producer { - weak public var delegate: Mediasoup.ProducerDelegate? + weak public var delegate: (any Mediasoup.ProducerDelegate)? public var track: WebRTC.RTCMediaStreamTrack { get } @@ -180,17 +227,18 @@ extension Mediasoup.Producer : Mediasoup_Private.ProducerWrapperDelegate { } public class Device { public init() + public init(pcFactory: WebRTC.RTCPeerConnectionFactory) public func isLoaded() -> Swift.Bool public func load(with routerRTPCapabilities: Swift.String) throws public func rtpCapabilities() throws -> Swift.String public func sctpCapabilities() throws -> Swift.String public func canProduce(_ mediaKind: Mediasoup.MediaKind) throws -> Swift.Bool - public func createSendTransport(id: Swift.String, iceParameters: Swift.String, iceCandidates: Swift.String, dtlsParameters: Swift.String, sctpParameters: Swift.String?, appData: Swift.String?) throws -> Mediasoup.SendTransport - public func createReceiveTransport(id: Swift.String, iceParameters: Swift.String, iceCandidates: Swift.String, dtlsParameters: Swift.String, sctpParameters: Swift.String? = nil, appData: Swift.String? = nil) throws -> Mediasoup.ReceiveTransport + public func createSendTransport(id: Swift.String, iceParameters: Swift.String, iceCandidates: Swift.String, dtlsParameters: Swift.String, sctpParameters: Swift.String?, iceServers: Swift.String? = nil, iceTransportPolicy: Mediasoup.ICETransportPolicy = .all, appData: Swift.String?) throws -> Mediasoup.SendTransport + public func createReceiveTransport(id: Swift.String, iceParameters: Swift.String, iceCandidates: Swift.String, dtlsParameters: Swift.String, sctpParameters: Swift.String? = nil, iceServers: Swift.String? = nil, iceTransportPolicy: Mediasoup.ICETransportPolicy = .all, appData: Swift.String? = nil) throws -> Mediasoup.ReceiveTransport @objc deinit } @_hasMissingDesignatedInitializers public class Consumer { - weak public var delegate: Mediasoup.ConsumerDelegate? + weak public var delegate: (any Mediasoup.ConsumerDelegate)? public var track: WebRTC.RTCMediaStreamTrack { get } diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.abi.json b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.abi.json new file mode 100644 index 0000000..3c02b65 --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -0,0 +1,6001 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "ReceiveTransportDelegate", + "printedName": "ReceiveTransportDelegate", + "declKind": "Protocol", + "usr": "s:9Mediasoup24ReceiveTransportDelegateP", + "mangledName": "$s9Mediasoup24ReceiveTransportDelegateP", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 : Mediasoup.TransportDelegate>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "TransportDelegate", + "printedName": "TransportDelegate", + "usr": "s:9Mediasoup17TransportDelegateP", + "mangledName": "$s9Mediasoup17TransportDelegateP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "ReceiveTransport", + "printedName": "ReceiveTransport", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "Mediasoup.ReceiveTransportDelegate?" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvp", + "mangledName": "$s9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.ReceiveTransportDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ReceiveTransportDelegate", + "printedName": "Mediasoup.ReceiveTransportDelegate", + "usr": "s:9Mediasoup24ReceiveTransportDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvg", + "mangledName": "$s9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.ReceiveTransportDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ReceiveTransportDelegate", + "printedName": "Mediasoup.ReceiveTransportDelegate", + "usr": "s:9Mediasoup24ReceiveTransportDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvs", + "mangledName": "$s9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvs", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvM", + "mangledName": "$s9Mediasoup16ReceiveTransportC8delegateAA0bC8Delegate_pSgvM", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "consume", + "printedName": "consume(consumerId:producerId:kind:rtpParameters:appData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Consumer", + "printedName": "Mediasoup.Consumer", + "usr": "s:9Mediasoup8ConsumerC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ReceiveTransportC7consume10consumerId08producerF04kind13rtpParameters7appDataAA8ConsumerCSS_SSAA9MediaKindOS2SSgtKF", + "mangledName": "$s9Mediasoup16ReceiveTransportC7consume10consumerId08producerF04kind13rtpParameters7appDataAA8ConsumerCSS_SSAA9MediaKindOS2SSgtKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "consumeData", + "printedName": "consumeData(consumerId:producerId:streamId:label:protocol:appData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataConsumer", + "printedName": "Mediasoup.DataConsumer", + "usr": "s:9Mediasoup12DataConsumerC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ReceiveTransportC11consumeData10consumerId08producerG006streamG05label8protocol03appE0AA0E8ConsumerCSS_SSs6UInt16VS2SSgAOtKF", + "mangledName": "$s9Mediasoup16ReceiveTransportC11consumeData10consumerId08producerG006streamG05label8protocol03appE0AA0E8ConsumerCSS_SSs6UInt16VS2SSgAOtKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup16ReceiveTransportC2idSSvp", + "mangledName": "$s9Mediasoup16ReceiveTransportC2idSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC2idSSvg", + "mangledName": "$s9Mediasoup16ReceiveTransportC2idSSvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup16ReceiveTransportC6closedSbvp", + "mangledName": "$s9Mediasoup16ReceiveTransportC6closedSbvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC6closedSbvg", + "mangledName": "$s9Mediasoup16ReceiveTransportC6closedSbvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectionState", + "printedName": "connectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup16ReceiveTransportC15connectionStateAA0c10ConnectionE0Ovp", + "mangledName": "$s9Mediasoup16ReceiveTransportC15connectionStateAA0c10ConnectionE0Ovp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC15connectionStateAA0c10ConnectionE0Ovg", + "mangledName": "$s9Mediasoup16ReceiveTransportC15connectionStateAA0c10ConnectionE0Ovg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup16ReceiveTransportC7appDataSSvp", + "mangledName": "$s9Mediasoup16ReceiveTransportC7appDataSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC7appDataSSvg", + "mangledName": "$s9Mediasoup16ReceiveTransportC7appDataSSvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stats", + "printedName": "stats", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup16ReceiveTransportC5statsSSvp", + "mangledName": "$s9Mediasoup16ReceiveTransportC5statsSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup16ReceiveTransportC5statsSSvg", + "mangledName": "$s9Mediasoup16ReceiveTransportC5statsSSvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "close", + "printedName": "close()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ReceiveTransportC5closeyyF", + "mangledName": "$s9Mediasoup16ReceiveTransportC5closeyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "restartICE", + "printedName": "restartICE(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ReceiveTransportC10restartICE4withySS_tKF", + "mangledName": "$s9Mediasoup16ReceiveTransportC10restartICE4withySS_tKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateICEServers", + "printedName": "updateICEServers(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ReceiveTransportC16updateICEServersyySSKF", + "mangledName": "$s9Mediasoup16ReceiveTransportC16updateICEServersyySSKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onConnect", + "printedName": "onConnect(_:dtlsParameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReceiveTransportWrapper", + "printedName": "Mediasoup_Private.ReceiveTransportWrapper", + "usr": "c:objc(cs)ReceiveTransportWrapper" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ReceiveTransportC9onConnect_14dtlsParametersySo0bC7WrapperC_SStF", + "mangledName": "$s9Mediasoup16ReceiveTransportC9onConnect_14dtlsParametersySo0bC7WrapperC_SStF", + "moduleName": "Mediasoup", + "objc_name": "onConnect:dtlsParameters:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onConnectionStateChange", + "printedName": "onConnectionStateChange(_:connectionState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReceiveTransportWrapper", + "printedName": "Mediasoup_Private.ReceiveTransportWrapper", + "usr": "c:objc(cs)ReceiveTransportWrapper" + }, + { + "kind": "TypeNominal", + "name": "MediasoupClientTransportConnectionState", + "printedName": "Mediasoup_Private.MediasoupClientTransportConnectionState", + "usr": "c:MediasoupClientTransportConnectionState.h@T@MediasoupClientTransportConnectionState" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ReceiveTransportC23onConnectionStateChange_010connectionF0ySo0bC7WrapperC_So0a6ClientceF0atF", + "mangledName": "$s9Mediasoup16ReceiveTransportC23onConnectionStateChange_010connectionF0ySo0bC7WrapperC_So0a6ClientceF0atF", + "moduleName": "Mediasoup", + "objc_name": "onConnectionStateChange:connectionState:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9Mediasoup16ReceiveTransportC", + "mangledName": "$s9Mediasoup16ReceiveTransportC", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Transport", + "printedName": "Transport", + "usr": "s:9Mediasoup9TransportP", + "mangledName": "$s9Mediasoup9TransportP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "MediaKind", + "printedName": "MediaKind", + "children": [ + { + "kind": "Var", + "name": "audio", + "printedName": "audio", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediaKind.Type) -> Mediasoup.MediaKind", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.MediaKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup9MediaKindO5audioyA2CmF", + "mangledName": "$s9Mediasoup9MediaKindO5audioyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "video", + "printedName": "video", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediaKind.Type) -> Mediasoup.MediaKind", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.MediaKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup9MediaKindO5videoyA2CmF", + "mangledName": "$s9Mediasoup9MediaKindO5videoyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + }, + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup9MediaKindO2eeoiySbAC_ACtFZ", + "mangledName": "$s9Mediasoup9MediaKindO2eeoiySbAC_ACtFZ", + "moduleName": "Mediasoup", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup9MediaKindO9hashValueSivp", + "mangledName": "$s9Mediasoup9MediaKindO9hashValueSivp", + "moduleName": "Mediasoup", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup9MediaKindO9hashValueSivg", + "mangledName": "$s9Mediasoup9MediaKindO9hashValueSivg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup9MediaKindO4hash4intoys6HasherVz_tF", + "mangledName": "$s9Mediasoup9MediaKindO4hash4intoys6HasherVz_tF", + "moduleName": "Mediasoup", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9Mediasoup9MediaKindO", + "mangledName": "$s9Mediasoup9MediaKindO", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "Transport", + "printedName": "Transport", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup9TransportP2idSSvp", + "mangledName": "$s9Mediasoup9TransportP2idSSvp", + "moduleName": "Mediasoup", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup9TransportP2idSSvg", + "mangledName": "$s9Mediasoup9TransportP2idSSvg", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup9TransportP6closedSbvp", + "mangledName": "$s9Mediasoup9TransportP6closedSbvp", + "moduleName": "Mediasoup", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup9TransportP6closedSbvg", + "mangledName": "$s9Mediasoup9TransportP6closedSbvg", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectionState", + "printedName": "connectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup9TransportP15connectionStateAA0b10ConnectionD0Ovp", + "mangledName": "$s9Mediasoup9TransportP15connectionStateAA0b10ConnectionD0Ovp", + "moduleName": "Mediasoup", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup9TransportP15connectionStateAA0b10ConnectionD0Ovg", + "mangledName": "$s9Mediasoup9TransportP15connectionStateAA0b10ConnectionD0Ovg", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup9TransportP7appDataSSvp", + "mangledName": "$s9Mediasoup9TransportP7appDataSSvp", + "moduleName": "Mediasoup", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup9TransportP7appDataSSvg", + "mangledName": "$s9Mediasoup9TransportP7appDataSSvg", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stats", + "printedName": "stats", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup9TransportP5statsSSvp", + "mangledName": "$s9Mediasoup9TransportP5statsSSvp", + "moduleName": "Mediasoup", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup9TransportP5statsSSvg", + "mangledName": "$s9Mediasoup9TransportP5statsSSvg", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "close", + "printedName": "close()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup9TransportP5closeyyF", + "mangledName": "$s9Mediasoup9TransportP5closeyyF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "restartICE", + "printedName": "restartICE(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup9TransportP10restartICE4withySS_tKF", + "mangledName": "$s9Mediasoup9TransportP10restartICE4withySS_tKF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateICEServers", + "printedName": "updateICEServers(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup9TransportP16updateICEServersyySSKF", + "mangledName": "$s9Mediasoup9TransportP16updateICEServersyySSKF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9Mediasoup9TransportP", + "mangledName": "$s9Mediasoup9TransportP", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "TransportDelegate", + "printedName": "TransportDelegate", + "children": [ + { + "kind": "Function", + "name": "onConnect", + "printedName": "onConnect(transport:dtlsParameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Transport", + "printedName": "Mediasoup.Transport", + "usr": "s:9Mediasoup9TransportP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup17TransportDelegateP9onConnect9transport14dtlsParametersyAA0B0_p_SStF", + "mangledName": "$s9Mediasoup17TransportDelegateP9onConnect9transport14dtlsParametersyAA0B0_p_SStF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.TransportDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onConnectionStateChange", + "printedName": "onConnectionStateChange(transport:connectionState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Transport", + "printedName": "Mediasoup.Transport", + "usr": "s:9Mediasoup9TransportP" + }, + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup17TransportDelegateP23onConnectionStateChange9transport010connectionF0yAA0B0_p_AA0beF0OtF", + "mangledName": "$s9Mediasoup17TransportDelegateP23onConnectionStateChange9transport010connectionF0yAA0B0_p_AA0beF0OtF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.TransportDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9Mediasoup17TransportDelegateP", + "mangledName": "$s9Mediasoup17TransportDelegateP", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "TransportConnectionState", + "printedName": "TransportConnectionState", + "children": [ + { + "kind": "Var", + "name": "new", + "printedName": "new", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.TransportConnectionState.Type) -> Mediasoup.TransportConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.TransportConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup24TransportConnectionStateO3newyA2CmF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO3newyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "checking", + "printedName": "checking", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.TransportConnectionState.Type) -> Mediasoup.TransportConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.TransportConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup24TransportConnectionStateO8checkingyA2CmF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO8checkingyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "connected", + "printedName": "connected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.TransportConnectionState.Type) -> Mediasoup.TransportConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.TransportConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup24TransportConnectionStateO9connectedyA2CmF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO9connectedyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "completed", + "printedName": "completed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.TransportConnectionState.Type) -> Mediasoup.TransportConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.TransportConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup24TransportConnectionStateO9completedyA2CmF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO9completedyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.TransportConnectionState.Type) -> Mediasoup.TransportConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.TransportConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup24TransportConnectionStateO6failedyA2CmF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO6failedyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "disconnected", + "printedName": "disconnected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.TransportConnectionState.Type) -> Mediasoup.TransportConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.TransportConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup24TransportConnectionStateO12disconnectedyA2CmF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO12disconnectedyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.TransportConnectionState.Type) -> Mediasoup.TransportConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.TransportConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup24TransportConnectionStateO6closedyA2CmF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO6closedyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup24TransportConnectionStateO2eeoiySbAC_ACtFZ", + "mangledName": "$s9Mediasoup24TransportConnectionStateO2eeoiySbAC_ACtFZ", + "moduleName": "Mediasoup", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup24TransportConnectionStateO9hashValueSivp", + "mangledName": "$s9Mediasoup24TransportConnectionStateO9hashValueSivp", + "moduleName": "Mediasoup", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup24TransportConnectionStateO9hashValueSivg", + "mangledName": "$s9Mediasoup24TransportConnectionStateO9hashValueSivg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup24TransportConnectionStateO4hash4intoys6HasherVz_tF", + "mangledName": "$s9Mediasoup24TransportConnectionStateO4hash4intoys6HasherVz_tF", + "moduleName": "Mediasoup", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9Mediasoup24TransportConnectionStateO", + "mangledName": "$s9Mediasoup24TransportConnectionStateO", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "SendTransport", + "printedName": "SendTransport", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "Mediasoup.SendTransportDelegate?" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvp", + "mangledName": "$s9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.SendTransportDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SendTransportDelegate", + "printedName": "Mediasoup.SendTransportDelegate", + "usr": "s:9Mediasoup21SendTransportDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvg", + "mangledName": "$s9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.SendTransportDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SendTransportDelegate", + "printedName": "Mediasoup.SendTransportDelegate", + "usr": "s:9Mediasoup21SendTransportDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvs", + "mangledName": "$s9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvs", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvM", + "mangledName": "$s9Mediasoup13SendTransportC8delegateAA0bC8Delegate_pSgvM", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "createProducer", + "printedName": "createProducer(for:encodings:codecOptions:codec:appData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Producer", + "printedName": "Mediasoup.Producer", + "usr": "s:9Mediasoup8ProducerC" + }, + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[WebRTC.RTCRtpEncodingParameters]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WebRTC.RTCRtpEncodingParameters]", + "children": [ + { + "kind": "TypeNominal", + "name": "RTCRtpEncodingParameters", + "printedName": "WebRTC.RTCRtpEncodingParameters", + "usr": "c:objc(cs)RTCRtpEncodingParameters" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC14createProducer3for9encodings12codecOptions0H07appDataAA0E0CSo19RTCMediaStreamTrackC_SaySo24RTCRtpEncodingParametersCGSgSSSgA2RtKF", + "mangledName": "$s9Mediasoup13SendTransportC14createProducer3for9encodings12codecOptions0H07appDataAA0E0CSo19RTCMediaStreamTrackC_SaySo24RTCRtpEncodingParametersCGSgSSSgA2RtKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createProducer", + "printedName": "createProducer(for:encoding:scalabilityMode:codecOptions:codec:appData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Producer", + "printedName": "Mediasoup.Producer", + "usr": "s:9Mediasoup8ProducerC" + }, + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + }, + { + "kind": "TypeNominal", + "name": "RTCRtpEncodingParameters", + "printedName": "WebRTC.RTCRtpEncodingParameters", + "usr": "c:objc(cs)RTCRtpEncodingParameters" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC14createProducer3for8encoding15scalabilityMode12codecOptions0J07appDataAA0E0CSo19RTCMediaStreamTrackC_So24RTCRtpEncodingParametersCS2SSgA2QtKF", + "mangledName": "$s9Mediasoup13SendTransportC14createProducer3for8encoding15scalabilityMode12codecOptions0J07appDataAA0E0CSo19RTCMediaStreamTrackC_So24RTCRtpEncodingParametersCS2SSgA2QtKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup13SendTransportC2idSSvp", + "mangledName": "$s9Mediasoup13SendTransportC2idSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC2idSSvg", + "mangledName": "$s9Mediasoup13SendTransportC2idSSvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup13SendTransportC6closedSbvp", + "mangledName": "$s9Mediasoup13SendTransportC6closedSbvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC6closedSbvg", + "mangledName": "$s9Mediasoup13SendTransportC6closedSbvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectionState", + "printedName": "connectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup13SendTransportC15connectionStateAA0c10ConnectionE0Ovp", + "mangledName": "$s9Mediasoup13SendTransportC15connectionStateAA0c10ConnectionE0Ovp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TransportConnectionState", + "printedName": "Mediasoup.TransportConnectionState", + "usr": "s:9Mediasoup24TransportConnectionStateO" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC15connectionStateAA0c10ConnectionE0Ovg", + "mangledName": "$s9Mediasoup13SendTransportC15connectionStateAA0c10ConnectionE0Ovg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup13SendTransportC7appDataSSvp", + "mangledName": "$s9Mediasoup13SendTransportC7appDataSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC7appDataSSvg", + "mangledName": "$s9Mediasoup13SendTransportC7appDataSSvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stats", + "printedName": "stats", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup13SendTransportC5statsSSvp", + "mangledName": "$s9Mediasoup13SendTransportC5statsSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup13SendTransportC5statsSSvg", + "mangledName": "$s9Mediasoup13SendTransportC5statsSSvg", + "moduleName": "Mediasoup", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "close", + "printedName": "close()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC5closeyyF", + "mangledName": "$s9Mediasoup13SendTransportC5closeyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "restartICE", + "printedName": "restartICE(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC10restartICE4withySS_tKF", + "mangledName": "$s9Mediasoup13SendTransportC10restartICE4withySS_tKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateICEServers", + "printedName": "updateICEServers(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC16updateICEServersyySSKF", + "mangledName": "$s9Mediasoup13SendTransportC16updateICEServersyySSKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onConnect", + "printedName": "onConnect(_:dtlsParameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SendTransportWrapper", + "printedName": "Mediasoup_Private.SendTransportWrapper", + "usr": "c:objc(cs)SendTransportWrapper" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC9onConnect_14dtlsParametersySo0bC7WrapperC_SStF", + "mangledName": "$s9Mediasoup13SendTransportC9onConnect_14dtlsParametersySo0bC7WrapperC_SStF", + "moduleName": "Mediasoup", + "objc_name": "onConnect:dtlsParameters:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onConnectionStateChange", + "printedName": "onConnectionStateChange(_:connectionState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SendTransportWrapper", + "printedName": "Mediasoup_Private.SendTransportWrapper", + "usr": "c:objc(cs)SendTransportWrapper" + }, + { + "kind": "TypeNominal", + "name": "MediasoupClientTransportConnectionState", + "printedName": "Mediasoup_Private.MediasoupClientTransportConnectionState", + "usr": "c:MediasoupClientTransportConnectionState.h@T@MediasoupClientTransportConnectionState" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC23onConnectionStateChange_010connectionF0ySo0bC7WrapperC_So0a6ClientceF0atF", + "mangledName": "$s9Mediasoup13SendTransportC23onConnectionStateChange_010connectionF0ySo0bC7WrapperC_So0a6ClientceF0atF", + "moduleName": "Mediasoup", + "objc_name": "onConnectionStateChange:connectionState:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onProduce", + "printedName": "onProduce(_:kind:rtpParameters:appData:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SendTransportWrapper", + "printedName": "Mediasoup_Private.SendTransportWrapper", + "usr": "c:objc(cs)SendTransportWrapper" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC9onProduce_4kind13rtpParameters7appData8callbackySo0bC7WrapperC_S3SySSSgctF", + "mangledName": "$s9Mediasoup13SendTransportC9onProduce_4kind13rtpParameters7appData8callbackySo0bC7WrapperC_S3SySSSgctF", + "moduleName": "Mediasoup", + "objc_name": "onProduce:kind:rtpParameters:appData:callback:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onProduceData", + "printedName": "onProduceData(_:sctpParameters:label:protocol:appData:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SendTransportWrapper", + "printedName": "Mediasoup_Private.SendTransportWrapper", + "usr": "c:objc(cs)SendTransportWrapper" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup13SendTransportC13onProduceData_14sctpParameters5label8protocol03appF08callbackySo0bC7WrapperC_S4SySSSgctF", + "mangledName": "$s9Mediasoup13SendTransportC13onProduceData_14sctpParameters5label8protocol03appF08callbackySo0bC7WrapperC_S4SySSSgctF", + "moduleName": "Mediasoup", + "objc_name": "onProduceData:sctpParameters:label:protocol:appData:callback:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9Mediasoup13SendTransportC", + "mangledName": "$s9Mediasoup13SendTransportC", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Transport", + "printedName": "Transport", + "usr": "s:9Mediasoup9TransportP", + "mangledName": "$s9Mediasoup9TransportP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "ConsumerDelegate", + "printedName": "ConsumerDelegate", + "children": [ + { + "kind": "Function", + "name": "onTransportClose", + "printedName": "onTransportClose(in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Consumer", + "printedName": "Mediasoup.Consumer", + "usr": "s:9Mediasoup8ConsumerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ConsumerDelegateP16onTransportClose2inyAA0B0C_tF", + "mangledName": "$s9Mediasoup16ConsumerDelegateP16onTransportClose2inyAA0B0C_tF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.ConsumerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9Mediasoup16ConsumerDelegateP", + "mangledName": "$s9Mediasoup16ConsumerDelegateP", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "SendTransportDelegate", + "printedName": "SendTransportDelegate", + "children": [ + { + "kind": "Function", + "name": "onProduce", + "printedName": "onProduce(transport:kind:rtpParameters:appData:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Transport", + "printedName": "Mediasoup.Transport", + "usr": "s:9Mediasoup9TransportP" + }, + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup21SendTransportDelegateP9onProduce9transport4kind13rtpParameters7appData8callbackyAA0C0_p_AA9MediaKindOS2SySSSgctF", + "mangledName": "$s9Mediasoup21SendTransportDelegateP9onProduce9transport4kind13rtpParameters7appData8callbackyAA0C0_p_AA9MediaKindOS2SySSSgctF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.SendTransportDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onProduceData", + "printedName": "onProduceData(transport:sctpParameters:label:protocol:appData:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Transport", + "printedName": "Mediasoup.Transport", + "usr": "s:9Mediasoup9TransportP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup21SendTransportDelegateP13onProduceData9transport14sctpParameters5label8protocol03appG08callbackyAA0C0_p_S4SySSSgctF", + "mangledName": "$s9Mediasoup21SendTransportDelegateP13onProduceData9transport14sctpParameters5label8protocol03appG08callbackyAA0C0_p_S4SySSSgctF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.SendTransportDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9Mediasoup21SendTransportDelegateP", + "mangledName": "$s9Mediasoup21SendTransportDelegateP", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 : Mediasoup.TransportDelegate>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "TransportDelegate", + "printedName": "TransportDelegate", + "usr": "s:9Mediasoup17TransportDelegateP", + "mangledName": "$s9Mediasoup17TransportDelegateP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "MediasoupError", + "printedName": "MediasoupError", + "children": [ + { + "kind": "Var", + "name": "unsupported", + "printedName": "unsupported", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediasoupError.Type) -> (Swift.String) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.MediasoupError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup0A5ErrorO11unsupportedyACSScACmF", + "mangledName": "$s9Mediasoup0A5ErrorO11unsupportedyACSScACmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "invalidState", + "printedName": "invalidState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediasoupError.Type) -> (Swift.String) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.MediasoupError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup0A5ErrorO12invalidStateyACSScACmF", + "mangledName": "$s9Mediasoup0A5ErrorO12invalidStateyACSScACmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "invalidParameters", + "printedName": "invalidParameters", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediasoupError.Type) -> (Swift.String) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.MediasoupError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup0A5ErrorO17invalidParametersyACSScACmF", + "mangledName": "$s9Mediasoup0A5ErrorO17invalidParametersyACSScACmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "mediasoup", + "printedName": "mediasoup", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediasoupError.Type) -> (Foundation.NSError) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.MediasoupError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup0A5ErrorO9mediasoupyACSo7NSErrorCcACmF", + "mangledName": "$s9Mediasoup0A5ErrorO9mediasoupyACSo7NSErrorCcACmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediasoupError.Type) -> (Swift.Error) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> Mediasoup.MediasoupError", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.MediasoupError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediasoupError", + "printedName": "Mediasoup.MediasoupError", + "usr": "s:9Mediasoup0A5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup0A5ErrorO7unknownyACs0B0_pcACmF", + "mangledName": "$s9Mediasoup0A5ErrorO7unknownyACs0B0_pcACmF", + "moduleName": "Mediasoup" + } + ], + "declKind": "Enum", + "usr": "s:9Mediasoup0A5ErrorO", + "mangledName": "$s9Mediasoup0A5ErrorO", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "ProducerDelegate", + "printedName": "ProducerDelegate", + "children": [ + { + "kind": "Function", + "name": "onTransportClose", + "printedName": "onTransportClose(in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Producer", + "printedName": "Mediasoup.Producer", + "usr": "s:9Mediasoup8ProducerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup16ProducerDelegateP16onTransportClose2inyAA0B0C_tF", + "mangledName": "$s9Mediasoup16ProducerDelegateP16onTransportClose2inyAA0B0C_tF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.ProducerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9Mediasoup16ProducerDelegateP", + "mangledName": "$s9Mediasoup16ProducerDelegateP", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "DataConsumer", + "printedName": "DataConsumer", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "Mediasoup.DataConsumerDelegate?" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvp", + "mangledName": "$s9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.DataConsumerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataConsumerDelegate", + "printedName": "Mediasoup.DataConsumerDelegate", + "usr": "s:9Mediasoup20DataConsumerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvg", + "mangledName": "$s9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.DataConsumerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataConsumerDelegate", + "printedName": "Mediasoup.DataConsumerDelegate", + "usr": "s:9Mediasoup20DataConsumerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvs", + "mangledName": "$s9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvs", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvM", + "mangledName": "$s9Mediasoup12DataConsumerC8delegateAA0bC8Delegate_pSgvM", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC2idSSvp", + "mangledName": "$s9Mediasoup12DataConsumerC2idSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC2idSSvg", + "mangledName": "$s9Mediasoup12DataConsumerC2idSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "localId", + "printedName": "localId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC7localIdSSvp", + "mangledName": "$s9Mediasoup12DataConsumerC7localIdSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC7localIdSSvg", + "mangledName": "$s9Mediasoup12DataConsumerC7localIdSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "producerId", + "printedName": "producerId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC10producerIdSSvp", + "mangledName": "$s9Mediasoup12DataConsumerC10producerIdSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC10producerIdSSvg", + "mangledName": "$s9Mediasoup12DataConsumerC10producerIdSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC6closedSbvp", + "mangledName": "$s9Mediasoup12DataConsumerC6closedSbvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC6closedSbvg", + "mangledName": "$s9Mediasoup12DataConsumerC6closedSbvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "label", + "printedName": "label", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC5labelSSvp", + "mangledName": "$s9Mediasoup12DataConsumerC5labelSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC5labelSSvg", + "mangledName": "$s9Mediasoup12DataConsumerC5labelSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dataProtocol", + "printedName": "dataProtocol", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC12dataProtocolSSvp", + "mangledName": "$s9Mediasoup12DataConsumerC12dataProtocolSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC12dataProtocolSSvg", + "mangledName": "$s9Mediasoup12DataConsumerC12dataProtocolSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC03appB0SSvp", + "mangledName": "$s9Mediasoup12DataConsumerC03appB0SSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC03appB0SSvg", + "mangledName": "$s9Mediasoup12DataConsumerC03appB0SSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sctpStreamParameters", + "printedName": "sctpStreamParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup12DataConsumerC20sctpStreamParametersSSvp", + "mangledName": "$s9Mediasoup12DataConsumerC20sctpStreamParametersSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup12DataConsumerC20sctpStreamParametersSSvg", + "mangledName": "$s9Mediasoup12DataConsumerC20sctpStreamParametersSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "close", + "printedName": "close()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup12DataConsumerC5closeyyF", + "mangledName": "$s9Mediasoup12DataConsumerC5closeyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMessage", + "printedName": "onMessage(_:consumer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "DataConsumerWrapper", + "printedName": "Mediasoup_Private.DataConsumerWrapper", + "usr": "c:objc(cs)DataConsumerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup12DataConsumerC9onMessage_8consumery10Foundation0B0V_So0bC7WrapperCtF", + "mangledName": "$s9Mediasoup12DataConsumerC9onMessage_8consumery10Foundation0B0V_So0bC7WrapperCtF", + "moduleName": "Mediasoup", + "objc_name": "onMessage:consumer:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onConnecting", + "printedName": "onConnecting(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumerWrapper", + "printedName": "Mediasoup_Private.DataConsumerWrapper", + "usr": "c:objc(cs)DataConsumerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup12DataConsumerC12onConnectingyySo0bC7WrapperCF", + "mangledName": "$s9Mediasoup12DataConsumerC12onConnectingyySo0bC7WrapperCF", + "moduleName": "Mediasoup", + "objc_name": "onConnecting:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onOpen", + "printedName": "onOpen(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumerWrapper", + "printedName": "Mediasoup_Private.DataConsumerWrapper", + "usr": "c:objc(cs)DataConsumerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup12DataConsumerC6onOpenyySo0bC7WrapperCF", + "mangledName": "$s9Mediasoup12DataConsumerC6onOpenyySo0bC7WrapperCF", + "moduleName": "Mediasoup", + "objc_name": "onOpen:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onClosing", + "printedName": "onClosing(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumerWrapper", + "printedName": "Mediasoup_Private.DataConsumerWrapper", + "usr": "c:objc(cs)DataConsumerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup12DataConsumerC9onClosingyySo0bC7WrapperCF", + "mangledName": "$s9Mediasoup12DataConsumerC9onClosingyySo0bC7WrapperCF", + "moduleName": "Mediasoup", + "objc_name": "onClosing:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onClose", + "printedName": "onClose(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumerWrapper", + "printedName": "Mediasoup_Private.DataConsumerWrapper", + "usr": "c:objc(cs)DataConsumerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup12DataConsumerC7onCloseyySo0bC7WrapperCF", + "mangledName": "$s9Mediasoup12DataConsumerC7onCloseyySo0bC7WrapperCF", + "moduleName": "Mediasoup", + "objc_name": "onClose:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTransportClose", + "printedName": "onTransportClose(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumerWrapper", + "printedName": "Mediasoup_Private.DataConsumerWrapper", + "usr": "c:objc(cs)DataConsumerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup12DataConsumerC16onTransportCloseyySo0bC7WrapperCF", + "mangledName": "$s9Mediasoup12DataConsumerC16onTransportCloseyySo0bC7WrapperCF", + "moduleName": "Mediasoup", + "objc_name": "onTransportClose:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9Mediasoup12DataConsumerC", + "mangledName": "$s9Mediasoup12DataConsumerC", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "DataConsumerDelegate", + "printedName": "DataConsumerDelegate", + "children": [ + { + "kind": "Function", + "name": "onConnecting", + "printedName": "onConnecting(consumer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumer", + "printedName": "Mediasoup.DataConsumer", + "usr": "s:9Mediasoup12DataConsumerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup20DataConsumerDelegateP12onConnecting8consumeryAA0bC0C_tF", + "mangledName": "$s9Mediasoup20DataConsumerDelegateP12onConnecting8consumeryAA0bC0C_tF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.DataConsumerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onOpen", + "printedName": "onOpen(consumer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumer", + "printedName": "Mediasoup.DataConsumer", + "usr": "s:9Mediasoup12DataConsumerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup20DataConsumerDelegateP6onOpen8consumeryAA0bC0C_tF", + "mangledName": "$s9Mediasoup20DataConsumerDelegateP6onOpen8consumeryAA0bC0C_tF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.DataConsumerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onClosing", + "printedName": "onClosing(consumer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumer", + "printedName": "Mediasoup.DataConsumer", + "usr": "s:9Mediasoup12DataConsumerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup20DataConsumerDelegateP9onClosing8consumeryAA0bC0C_tF", + "mangledName": "$s9Mediasoup20DataConsumerDelegateP9onClosing8consumeryAA0bC0C_tF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.DataConsumerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onClose", + "printedName": "onClose(consumer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumer", + "printedName": "Mediasoup.DataConsumer", + "usr": "s:9Mediasoup12DataConsumerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup20DataConsumerDelegateP7onClose8consumeryAA0bC0C_tF", + "mangledName": "$s9Mediasoup20DataConsumerDelegateP7onClose8consumeryAA0bC0C_tF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.DataConsumerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTransportClose", + "printedName": "onTransportClose(in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataConsumer", + "printedName": "Mediasoup.DataConsumer", + "usr": "s:9Mediasoup12DataConsumerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup20DataConsumerDelegateP16onTransportClose2inyAA0bC0C_tF", + "mangledName": "$s9Mediasoup20DataConsumerDelegateP16onTransportClose2inyAA0bC0C_tF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.DataConsumerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMessage", + "printedName": "onMessage(data:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "DataConsumer", + "printedName": "Mediasoup.DataConsumer", + "usr": "s:9Mediasoup12DataConsumerC" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup20DataConsumerDelegateP9onMessage4data4fromy10Foundation0B0V_AA0bC0CtF", + "mangledName": "$s9Mediasoup20DataConsumerDelegateP9onMessage4data4fromy10Foundation0B0V_AA0bC0CtF", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 where τ_0_0 : Mediasoup.DataConsumerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9Mediasoup20DataConsumerDelegateP", + "mangledName": "$s9Mediasoup20DataConsumerDelegateP", + "moduleName": "Mediasoup", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "ICETransportPolicy", + "printedName": "ICETransportPolicy", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.ICETransportPolicy.Type) -> Mediasoup.ICETransportPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.ICETransportPolicy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup18ICETransportPolicyO4noneyA2CmF", + "mangledName": "$s9Mediasoup18ICETransportPolicyO4noneyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "relay", + "printedName": "relay", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.ICETransportPolicy.Type) -> Mediasoup.ICETransportPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.ICETransportPolicy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup18ICETransportPolicyO5relayyA2CmF", + "mangledName": "$s9Mediasoup18ICETransportPolicyO5relayyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "noHost", + "printedName": "noHost", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.ICETransportPolicy.Type) -> Mediasoup.ICETransportPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.ICETransportPolicy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup18ICETransportPolicyO6noHostyA2CmF", + "mangledName": "$s9Mediasoup18ICETransportPolicyO6noHostyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Var", + "name": "all", + "printedName": "all", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.ICETransportPolicy.Type) -> Mediasoup.ICETransportPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Mediasoup.ICETransportPolicy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9Mediasoup18ICETransportPolicyO3allyA2CmF", + "mangledName": "$s9Mediasoup18ICETransportPolicyO3allyA2CmF", + "moduleName": "Mediasoup" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + }, + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "usr": "s:9Mediasoup18ICETransportPolicyO" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup18ICETransportPolicyO2eeoiySbAC_ACtFZ", + "mangledName": "$s9Mediasoup18ICETransportPolicyO2eeoiySbAC_ACtFZ", + "moduleName": "Mediasoup", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup18ICETransportPolicyO9hashValueSivp", + "mangledName": "$s9Mediasoup18ICETransportPolicyO9hashValueSivp", + "moduleName": "Mediasoup", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup18ICETransportPolicyO9hashValueSivg", + "mangledName": "$s9Mediasoup18ICETransportPolicyO9hashValueSivg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup18ICETransportPolicyO4hash4intoys6HasherVz_tF", + "mangledName": "$s9Mediasoup18ICETransportPolicyO4hash4intoys6HasherVz_tF", + "moduleName": "Mediasoup", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9Mediasoup18ICETransportPolicyO", + "mangledName": "$s9Mediasoup18ICETransportPolicyO", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "Producer", + "printedName": "Producer", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "Mediasoup.ProducerDelegate?" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvp", + "mangledName": "$s9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.ProducerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProducerDelegate", + "printedName": "Mediasoup.ProducerDelegate", + "usr": "s:9Mediasoup16ProducerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvg", + "mangledName": "$s9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.ProducerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProducerDelegate", + "printedName": "Mediasoup.ProducerDelegate", + "usr": "s:9Mediasoup16ProducerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvs", + "mangledName": "$s9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvs", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvM", + "mangledName": "$s9Mediasoup8ProducerC8delegateAA0B8Delegate_pSgvM", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "track", + "printedName": "track", + "children": [ + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC5trackSo19RTCMediaStreamTrackCvp", + "mangledName": "$s9Mediasoup8ProducerC5trackSo19RTCMediaStreamTrackCvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC5trackSo19RTCMediaStreamTrackCvg", + "mangledName": "$s9Mediasoup8ProducerC5trackSo19RTCMediaStreamTrackCvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC2idSSvp", + "mangledName": "$s9Mediasoup8ProducerC2idSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC2idSSvg", + "mangledName": "$s9Mediasoup8ProducerC2idSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "localId", + "printedName": "localId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC7localIdSSvp", + "mangledName": "$s9Mediasoup8ProducerC7localIdSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC7localIdSSvg", + "mangledName": "$s9Mediasoup8ProducerC7localIdSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC6closedSbvp", + "mangledName": "$s9Mediasoup8ProducerC6closedSbvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC6closedSbvg", + "mangledName": "$s9Mediasoup8ProducerC6closedSbvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "paused", + "printedName": "paused", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC6pausedSbvp", + "mangledName": "$s9Mediasoup8ProducerC6pausedSbvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC6pausedSbvg", + "mangledName": "$s9Mediasoup8ProducerC6pausedSbvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC4kindAA9MediaKindOvp", + "mangledName": "$s9Mediasoup8ProducerC4kindAA9MediaKindOvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC4kindAA9MediaKindOvg", + "mangledName": "$s9Mediasoup8ProducerC4kindAA9MediaKindOvg", + "moduleName": "Mediasoup", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxSpatialLayer", + "printedName": "maxSpatialLayer", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC15maxSpatialLayers5UInt8Vvp", + "mangledName": "$s9Mediasoup8ProducerC15maxSpatialLayers5UInt8Vvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC15maxSpatialLayers5UInt8Vvg", + "mangledName": "$s9Mediasoup8ProducerC15maxSpatialLayers5UInt8Vvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC7appDataSSvp", + "mangledName": "$s9Mediasoup8ProducerC7appDataSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC7appDataSSvg", + "mangledName": "$s9Mediasoup8ProducerC7appDataSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rtpParameters", + "printedName": "rtpParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC13rtpParametersSSvp", + "mangledName": "$s9Mediasoup8ProducerC13rtpParametersSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC13rtpParametersSSvg", + "mangledName": "$s9Mediasoup8ProducerC13rtpParametersSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stats", + "printedName": "stats", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ProducerC5statsSSvp", + "mangledName": "$s9Mediasoup8ProducerC5statsSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ProducerC5statsSSvg", + "mangledName": "$s9Mediasoup8ProducerC5statsSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ProducerC5pauseyyF", + "mangledName": "$s9Mediasoup8ProducerC5pauseyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ProducerC6resumeyyF", + "mangledName": "$s9Mediasoup8ProducerC6resumeyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "close", + "printedName": "close()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ProducerC5closeyyF", + "mangledName": "$s9Mediasoup8ProducerC5closeyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setMaxSpatialLayer", + "printedName": "setMaxSpatialLayer(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ProducerC18setMaxSpatialLayeryySiKF", + "mangledName": "$s9Mediasoup8ProducerC18setMaxSpatialLayeryySiKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "replaceTrack", + "printedName": "replaceTrack(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ProducerC12replaceTrackyySo014RTCMediaStreamD0CKF", + "mangledName": "$s9Mediasoup8ProducerC12replaceTrackyySo014RTCMediaStreamD0CKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getStats", + "printedName": "getStats()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ProducerC8getStatsSSyKF", + "mangledName": "$s9Mediasoup8ProducerC8getStatsSSyKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTransportClose", + "printedName": "onTransportClose(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProducerWrapper", + "printedName": "Mediasoup_Private.ProducerWrapper", + "usr": "c:objc(cs)ProducerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ProducerC16onTransportCloseyySo0B7WrapperCF", + "mangledName": "$s9Mediasoup8ProducerC16onTransportCloseyySo0B7WrapperCF", + "moduleName": "Mediasoup", + "objc_name": "onTransportClose:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9Mediasoup8ProducerC", + "mangledName": "$s9Mediasoup8ProducerC", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "Device", + "printedName": "Device", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Device", + "printedName": "Mediasoup.Device", + "usr": "s:9Mediasoup6DeviceC" + } + ], + "declKind": "Constructor", + "usr": "s:9Mediasoup6DeviceCACycfc", + "mangledName": "$s9Mediasoup6DeviceCACycfc", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pcFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Device", + "printedName": "Mediasoup.Device", + "usr": "s:9Mediasoup6DeviceC" + }, + { + "kind": "TypeNominal", + "name": "RTCPeerConnectionFactory", + "printedName": "WebRTC.RTCPeerConnectionFactory", + "usr": "c:objc(cs)RTCPeerConnectionFactory" + } + ], + "declKind": "Constructor", + "usr": "s:9Mediasoup6DeviceC9pcFactoryACSo017RTCPeerConnectionD0C_tcfc", + "mangledName": "$s9Mediasoup6DeviceC9pcFactoryACSo017RTCPeerConnectionD0C_tcfc", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "isLoaded", + "printedName": "isLoaded()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup6DeviceC8isLoadedSbyF", + "mangledName": "$s9Mediasoup6DeviceC8isLoadedSbyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup6DeviceC4load4withySS_tKF", + "mangledName": "$s9Mediasoup6DeviceC4load4withySS_tKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "rtpCapabilities", + "printedName": "rtpCapabilities()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup6DeviceC15rtpCapabilitiesSSyKF", + "mangledName": "$s9Mediasoup6DeviceC15rtpCapabilitiesSSyKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sctpCapabilities", + "printedName": "sctpCapabilities()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup6DeviceC16sctpCapabilitiesSSyKF", + "mangledName": "$s9Mediasoup6DeviceC16sctpCapabilitiesSSyKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "canProduce", + "printedName": "canProduce(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup6DeviceC10canProduceySbAA9MediaKindOKF", + "mangledName": "$s9Mediasoup6DeviceC10canProduceySbAA9MediaKindOKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createSendTransport", + "printedName": "createSendTransport(id:iceParameters:iceCandidates:dtlsParameters:sctpParameters:iceServers:iceTransportPolicy:appData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SendTransport", + "printedName": "Mediasoup.SendTransport", + "usr": "s:9Mediasoup13SendTransportC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "hasDefaultArg": true, + "usr": "s:9Mediasoup18ICETransportPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup6DeviceC19createSendTransport2id13iceParameters0G10Candidates04dtlsH004sctpH00G7Servers0gE6Policy7appDataAA0dE0CSS_S4SSgAoA012ICETransportM0OAOtKF", + "mangledName": "$s9Mediasoup6DeviceC19createSendTransport2id13iceParameters0G10Candidates04dtlsH004sctpH00G7Servers0gE6Policy7appDataAA0dE0CSS_S4SSgAoA012ICETransportM0OAOtKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createReceiveTransport", + "printedName": "createReceiveTransport(id:iceParameters:iceCandidates:dtlsParameters:sctpParameters:iceServers:iceTransportPolicy:appData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ReceiveTransport", + "printedName": "Mediasoup.ReceiveTransport", + "usr": "s:9Mediasoup16ReceiveTransportC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ICETransportPolicy", + "printedName": "Mediasoup.ICETransportPolicy", + "hasDefaultArg": true, + "usr": "s:9Mediasoup18ICETransportPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup6DeviceC22createReceiveTransport2id13iceParameters0G10Candidates04dtlsH004sctpH00G7Servers0gE6Policy7appDataAA0dE0CSS_S4SSgAoA012ICETransportM0OAOtKF", + "mangledName": "$s9Mediasoup6DeviceC22createReceiveTransport2id13iceParameters0G10Candidates04dtlsH004sctpH00G7Servers0gE6Policy7appDataAA0dE0CSS_S4SSgAoA012ICETransportM0OAOtKF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9Mediasoup6DeviceC", + "mangledName": "$s9Mediasoup6DeviceC", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "Mediasoup_Private", + "printedName": "Mediasoup_Private", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "Mediasoup" + }, + { + "kind": "TypeDecl", + "name": "Consumer", + "printedName": "Consumer", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "Mediasoup.ConsumerDelegate?" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvp", + "mangledName": "$s9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.ConsumerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConsumerDelegate", + "printedName": "Mediasoup.ConsumerDelegate", + "usr": "s:9Mediasoup16ConsumerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvg", + "mangledName": "$s9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvg", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.ConsumerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConsumerDelegate", + "printedName": "Mediasoup.ConsumerDelegate", + "usr": "s:9Mediasoup16ConsumerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvs", + "mangledName": "$s9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvs", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvM", + "mangledName": "$s9Mediasoup8ConsumerC8delegateAA0B8Delegate_pSgvM", + "moduleName": "Mediasoup", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "track", + "printedName": "track", + "children": [ + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC5trackSo19RTCMediaStreamTrackCvp", + "mangledName": "$s9Mediasoup8ConsumerC5trackSo19RTCMediaStreamTrackCvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC5trackSo19RTCMediaStreamTrackCvg", + "mangledName": "$s9Mediasoup8ConsumerC5trackSo19RTCMediaStreamTrackCvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC2idSSvp", + "mangledName": "$s9Mediasoup8ConsumerC2idSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC2idSSvg", + "mangledName": "$s9Mediasoup8ConsumerC2idSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "localId", + "printedName": "localId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC7localIdSSvp", + "mangledName": "$s9Mediasoup8ConsumerC7localIdSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC7localIdSSvg", + "mangledName": "$s9Mediasoup8ConsumerC7localIdSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "producerId", + "printedName": "producerId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC10producerIdSSvp", + "mangledName": "$s9Mediasoup8ConsumerC10producerIdSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC10producerIdSSvg", + "mangledName": "$s9Mediasoup8ConsumerC10producerIdSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC6closedSbvp", + "mangledName": "$s9Mediasoup8ConsumerC6closedSbvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC6closedSbvg", + "mangledName": "$s9Mediasoup8ConsumerC6closedSbvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "paused", + "printedName": "paused", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC6pausedSbvp", + "mangledName": "$s9Mediasoup8ConsumerC6pausedSbvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC6pausedSbvg", + "mangledName": "$s9Mediasoup8ConsumerC6pausedSbvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC4kindAA9MediaKindOvp", + "mangledName": "$s9Mediasoup8ConsumerC4kindAA9MediaKindOvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC4kindAA9MediaKindOvg", + "mangledName": "$s9Mediasoup8ConsumerC4kindAA9MediaKindOvg", + "moduleName": "Mediasoup", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC7appDataSSvp", + "mangledName": "$s9Mediasoup8ConsumerC7appDataSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC7appDataSSvg", + "mangledName": "$s9Mediasoup8ConsumerC7appDataSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rtpParameters", + "printedName": "rtpParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC13rtpParametersSSvp", + "mangledName": "$s9Mediasoup8ConsumerC13rtpParametersSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC13rtpParametersSSvg", + "mangledName": "$s9Mediasoup8ConsumerC13rtpParametersSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stats", + "printedName": "stats", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9Mediasoup8ConsumerC5statsSSvp", + "mangledName": "$s9Mediasoup8ConsumerC5statsSSvp", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9Mediasoup8ConsumerC5statsSSvg", + "mangledName": "$s9Mediasoup8ConsumerC5statsSSvg", + "moduleName": "Mediasoup", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ConsumerC5pauseyyF", + "mangledName": "$s9Mediasoup8ConsumerC5pauseyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ConsumerC6resumeyyF", + "mangledName": "$s9Mediasoup8ConsumerC6resumeyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "close", + "printedName": "close()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ConsumerC5closeyyF", + "mangledName": "$s9Mediasoup8ConsumerC5closeyyF", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTransportClose", + "printedName": "onTransportClose(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConsumerWrapper", + "printedName": "Mediasoup_Private.ConsumerWrapper", + "usr": "c:objc(cs)ConsumerWrapper" + } + ], + "declKind": "Func", + "usr": "s:9Mediasoup8ConsumerC16onTransportCloseyySo0B7WrapperCF", + "mangledName": "$s9Mediasoup8ConsumerC16onTransportCloseyySo0B7WrapperCF", + "moduleName": "Mediasoup", + "objc_name": "onTransportClose:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9Mediasoup8ConsumerC", + "mangledName": "$s9Mediasoup8ConsumerC", + "moduleName": "Mediasoup", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + } + ], + "json_format_version": 8 + }, + "ConstValues": [] +} \ No newline at end of file diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface new file mode 100644 index 0000000..b834c52 --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -0,0 +1,283 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) +// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Mediasoup +// swift-module-flags-ignorable: -enable-bare-slash-regex +import Foundation +@_exported import Mediasoup +import Mediasoup_Private +import Swift +import WebRTC +import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims +public protocol ReceiveTransportDelegate : Mediasoup.TransportDelegate { +} +@_hasMissingDesignatedInitializers public class ReceiveTransport { + weak public var delegate: (any Mediasoup.ReceiveTransportDelegate)? + @objc deinit + public func consume(consumerId: Swift.String, producerId: Swift.String, kind: Mediasoup.MediaKind, rtpParameters: Swift.String, appData: Swift.String?) throws -> Mediasoup.Consumer + public func consumeData(consumerId: Swift.String, producerId: Swift.String, streamId: Swift.UInt16, label: Swift.String, protocol protocolName: Swift.String?, appData: Swift.String?) throws -> Mediasoup.DataConsumer +} +extension Mediasoup.ReceiveTransport : Mediasoup.Transport { + public var id: Swift.String { + get + } + public var closed: Swift.Bool { + get + } + public var connectionState: Mediasoup.TransportConnectionState { + get + } + public var appData: Swift.String { + get + } + public var stats: Swift.String { + get + } + public func close() + public func restartICE(with iceParameters: Swift.String) throws + public func updateICEServers(_ iceServers: Swift.String) throws +} +extension Mediasoup.ReceiveTransport : Mediasoup_Private.ReceiveTransportWrapperDelegate { + @objc dynamic public func onConnect(_ transport: Mediasoup_Private.ReceiveTransportWrapper, dtlsParameters: Swift.String) + @objc dynamic public func onConnectionStateChange(_ transport: Mediasoup_Private.ReceiveTransportWrapper, connectionState: Mediasoup_Private.MediasoupClientTransportConnectionState) +} +public enum MediaKind { + case audio + case video + public static func == (a: Mediasoup.MediaKind, b: Mediasoup.MediaKind) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public protocol Transport : AnyObject { + var id: Swift.String { get } + var closed: Swift.Bool { get } + var connectionState: Mediasoup.TransportConnectionState { get } + var appData: Swift.String { get } + var stats: Swift.String { get } + func close() + func restartICE(with iceParameters: Swift.String) throws + func updateICEServers(_ iceServers: Swift.String) throws +} +public protocol TransportDelegate : AnyObject { + func onConnect(transport: any Mediasoup.Transport, dtlsParameters: Swift.String) + func onConnectionStateChange(transport: any Mediasoup.Transport, connectionState: Mediasoup.TransportConnectionState) +} +public enum TransportConnectionState { + case new + case checking + case connected + case completed + case failed + case disconnected + case closed + public static func == (a: Mediasoup.TransportConnectionState, b: Mediasoup.TransportConnectionState) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class SendTransport { + weak public var delegate: (any Mediasoup.SendTransportDelegate)? + @objc deinit + public func createProducer(for track: WebRTC.RTCMediaStreamTrack, encodings: [WebRTC.RTCRtpEncodingParameters]?, codecOptions: Swift.String?, codec: Swift.String?, appData: Swift.String?) throws -> Mediasoup.Producer + public func createProducer(for track: WebRTC.RTCMediaStreamTrack, encoding: WebRTC.RTCRtpEncodingParameters, scalabilityMode: Swift.String, codecOptions: Swift.String?, codec: Swift.String?, appData: Swift.String?) throws -> Mediasoup.Producer +} +extension Mediasoup.SendTransport : Mediasoup.Transport { + public var id: Swift.String { + get + } + public var closed: Swift.Bool { + get + } + public var connectionState: Mediasoup.TransportConnectionState { + get + } + public var appData: Swift.String { + get + } + public var stats: Swift.String { + get + } + public func close() + public func restartICE(with iceParameters: Swift.String) throws + public func updateICEServers(_ iceServers: Swift.String) throws +} +extension Mediasoup.SendTransport : Mediasoup_Private.SendTransportWrapperDelegate { + @objc dynamic public func onConnect(_ transport: Mediasoup_Private.SendTransportWrapper, dtlsParameters: Swift.String) + @objc dynamic public func onConnectionStateChange(_ transport: Mediasoup_Private.SendTransportWrapper, connectionState: Mediasoup_Private.MediasoupClientTransportConnectionState) + @objc dynamic public func onProduce(_ transport: Mediasoup_Private.SendTransportWrapper, kind: Swift.String, rtpParameters: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) + @objc dynamic public func onProduceData(_ transport: Mediasoup_Private.SendTransportWrapper, sctpParameters: Swift.String, label: Swift.String, protocol dataProtocol: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) +} +public protocol ConsumerDelegate : AnyObject { + func onTransportClose(in consumer: Mediasoup.Consumer) +} +public protocol SendTransportDelegate : Mediasoup.TransportDelegate { + func onProduce(transport: any Mediasoup.Transport, kind: Mediasoup.MediaKind, rtpParameters: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) + func onProduceData(transport: any Mediasoup.Transport, sctpParameters: Swift.String, label: Swift.String, protocol dataProtocol: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) +} +public enum MediasoupError : Swift.Error { + case unsupported(Swift.String) + case invalidState(Swift.String) + case invalidParameters(Swift.String) + case mediasoup(Foundation.NSError) + case unknown(any Swift.Error) +} +public protocol ProducerDelegate : AnyObject { + func onTransportClose(in producer: Mediasoup.Producer) +} +@_hasMissingDesignatedInitializers public class DataConsumer { + weak public var delegate: (any Mediasoup.DataConsumerDelegate)? + public var id: Swift.String { + get + } + public var localId: Swift.String { + get + } + public var producerId: Swift.String { + get + } + public var closed: Swift.Bool { + get + } + public var label: Swift.String { + get + } + public var dataProtocol: Swift.String { + get + } + public var appData: Swift.String { + get + } + public var sctpStreamParameters: Swift.String { + get + } + public func close() + @objc deinit +} +extension Mediasoup.DataConsumer : Mediasoup_Private.DataConsumerWrapperDelegate { + @objc dynamic public func onMessage(_ messageData: Foundation.Data, consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onConnecting(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onOpen(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onClosing(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onClose(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onTransportClose(_ consumer: Mediasoup_Private.DataConsumerWrapper) +} +public protocol DataConsumerDelegate : AnyObject { + func onConnecting(consumer: Mediasoup.DataConsumer) + func onOpen(consumer: Mediasoup.DataConsumer) + func onClosing(consumer: Mediasoup.DataConsumer) + func onClose(consumer: Mediasoup.DataConsumer) + func onTransportClose(in consumer: Mediasoup.DataConsumer) + func onMessage(data: Foundation.Data, from consumer: Mediasoup.DataConsumer) +} +public enum ICETransportPolicy { + case none + case relay + case noHost + case all + public static func == (a: Mediasoup.ICETransportPolicy, b: Mediasoup.ICETransportPolicy) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class Producer { + weak public var delegate: (any Mediasoup.ProducerDelegate)? + public var track: WebRTC.RTCMediaStreamTrack { + get + } + public var id: Swift.String { + get + } + public var localId: Swift.String { + get + } + public var closed: Swift.Bool { + get + } + public var paused: Swift.Bool { + get + } + final public let kind: Mediasoup.MediaKind + public var maxSpatialLayer: Swift.UInt8 { + get + } + public var appData: Swift.String { + get + } + public var rtpParameters: Swift.String { + get + } + public var stats: Swift.String { + get + } + public func pause() + public func resume() + public func close() + public func setMaxSpatialLayer(_ layer: Swift.Int) throws + public func replaceTrack(_ track: WebRTC.RTCMediaStreamTrack) throws + public func getStats() throws -> Swift.String + @objc deinit +} +extension Mediasoup.Producer : Mediasoup_Private.ProducerWrapperDelegate { + @objc dynamic public func onTransportClose(_ producer: Mediasoup_Private.ProducerWrapper) +} +public class Device { + public init() + public init(pcFactory: WebRTC.RTCPeerConnectionFactory) + public func isLoaded() -> Swift.Bool + public func load(with routerRTPCapabilities: Swift.String) throws + public func rtpCapabilities() throws -> Swift.String + public func sctpCapabilities() throws -> Swift.String + public func canProduce(_ mediaKind: Mediasoup.MediaKind) throws -> Swift.Bool + public func createSendTransport(id: Swift.String, iceParameters: Swift.String, iceCandidates: Swift.String, dtlsParameters: Swift.String, sctpParameters: Swift.String?, iceServers: Swift.String? = nil, iceTransportPolicy: Mediasoup.ICETransportPolicy = .all, appData: Swift.String?) throws -> Mediasoup.SendTransport + public func createReceiveTransport(id: Swift.String, iceParameters: Swift.String, iceCandidates: Swift.String, dtlsParameters: Swift.String, sctpParameters: Swift.String? = nil, iceServers: Swift.String? = nil, iceTransportPolicy: Mediasoup.ICETransportPolicy = .all, appData: Swift.String? = nil) throws -> Mediasoup.ReceiveTransport + @objc deinit +} +@_hasMissingDesignatedInitializers public class Consumer { + weak public var delegate: (any Mediasoup.ConsumerDelegate)? + public var track: WebRTC.RTCMediaStreamTrack { + get + } + public var id: Swift.String { + get + } + public var localId: Swift.String { + get + } + public var producerId: Swift.String { + get + } + public var closed: Swift.Bool { + get + } + public var paused: Swift.Bool { + get + } + final public let kind: Mediasoup.MediaKind + public var appData: Swift.String { + get + } + public var rtpParameters: Swift.String { + get + } + public var stats: Swift.String { + get + } + public func pause() + public func resume() + public func close() + @objc deinit +} +extension Mediasoup.Consumer : Mediasoup_Private.ConsumerWrapperDelegate { + @objc dynamic public func onTransportClose(_ consumer: Mediasoup_Private.ConsumerWrapper) +} +extension Mediasoup.MediaKind : Swift.Equatable {} +extension Mediasoup.MediaKind : Swift.Hashable {} +extension Mediasoup.TransportConnectionState : Swift.Equatable {} +extension Mediasoup.TransportConnectionState : Swift.Hashable {} +extension Mediasoup.ICETransportPolicy : Swift.Equatable {} +extension Mediasoup.ICETransportPolicy : Swift.Hashable {} diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index a03f634..ee1954c 100644 Binary files a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index 2e8bbe5..b834c52 100644 --- a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,18 +1,22 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) // swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Mediasoup +// swift-module-flags-ignorable: -enable-bare-slash-regex import Foundation @_exported import Mediasoup import Mediasoup_Private import Swift import WebRTC import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims public protocol ReceiveTransportDelegate : Mediasoup.TransportDelegate { } @_hasMissingDesignatedInitializers public class ReceiveTransport { - weak public var delegate: Mediasoup.ReceiveTransportDelegate? + weak public var delegate: (any Mediasoup.ReceiveTransportDelegate)? @objc deinit public func consume(consumerId: Swift.String, producerId: Swift.String, kind: Mediasoup.MediaKind, rtpParameters: Swift.String, appData: Swift.String?) throws -> Mediasoup.Consumer + public func consumeData(consumerId: Swift.String, producerId: Swift.String, streamId: Swift.UInt16, label: Swift.String, protocol protocolName: Swift.String?, appData: Swift.String?) throws -> Mediasoup.DataConsumer } extension Mediasoup.ReceiveTransport : Mediasoup.Transport { public var id: Swift.String { @@ -33,7 +37,6 @@ extension Mediasoup.ReceiveTransport : Mediasoup.Transport { public func close() public func restartICE(with iceParameters: Swift.String) throws public func updateICEServers(_ iceServers: Swift.String) throws - public func updateICETransportPolicy(_ transportPolicy: Mediasoup.ICETransportPolicy) throws } extension Mediasoup.ReceiveTransport : Mediasoup_Private.ReceiveTransportWrapperDelegate { @objc dynamic public func onConnect(_ transport: Mediasoup_Private.ReceiveTransportWrapper, dtlsParameters: Swift.String) @@ -57,11 +60,10 @@ public protocol Transport : AnyObject { func close() func restartICE(with iceParameters: Swift.String) throws func updateICEServers(_ iceServers: Swift.String) throws - func updateICETransportPolicy(_ transportPolicy: Mediasoup.ICETransportPolicy) throws } public protocol TransportDelegate : AnyObject { - func onConnect(transport: Mediasoup.Transport, dtlsParameters: Swift.String) - func onConnectionStateChange(transport: Mediasoup.Transport, connectionState: Mediasoup.TransportConnectionState) + func onConnect(transport: any Mediasoup.Transport, dtlsParameters: Swift.String) + func onConnectionStateChange(transport: any Mediasoup.Transport, connectionState: Mediasoup.TransportConnectionState) } public enum TransportConnectionState { case new @@ -78,9 +80,10 @@ public enum TransportConnectionState { } } @_hasMissingDesignatedInitializers public class SendTransport { - weak public var delegate: Mediasoup.SendTransportDelegate? + weak public var delegate: (any Mediasoup.SendTransportDelegate)? @objc deinit - public func createProducer(for track: WebRTC.RTCMediaStreamTrack, encodings: [WebRTC.RTCRtpEncodingParameters]?, codecOptions: Swift.String?, appData: Swift.String?) throws -> Mediasoup.Producer + public func createProducer(for track: WebRTC.RTCMediaStreamTrack, encodings: [WebRTC.RTCRtpEncodingParameters]?, codecOptions: Swift.String?, codec: Swift.String?, appData: Swift.String?) throws -> Mediasoup.Producer + public func createProducer(for track: WebRTC.RTCMediaStreamTrack, encoding: WebRTC.RTCRtpEncodingParameters, scalabilityMode: Swift.String, codecOptions: Swift.String?, codec: Swift.String?, appData: Swift.String?) throws -> Mediasoup.Producer } extension Mediasoup.SendTransport : Mediasoup.Transport { public var id: Swift.String { @@ -101,7 +104,6 @@ extension Mediasoup.SendTransport : Mediasoup.Transport { public func close() public func restartICE(with iceParameters: Swift.String) throws public func updateICEServers(_ iceServers: Swift.String) throws - public func updateICETransportPolicy(_ transportPolicy: Mediasoup.ICETransportPolicy) throws } extension Mediasoup.SendTransport : Mediasoup_Private.SendTransportWrapperDelegate { @objc dynamic public func onConnect(_ transport: Mediasoup_Private.SendTransportWrapper, dtlsParameters: Swift.String) @@ -113,19 +115,64 @@ public protocol ConsumerDelegate : AnyObject { func onTransportClose(in consumer: Mediasoup.Consumer) } public protocol SendTransportDelegate : Mediasoup.TransportDelegate { - func onProduce(transport: Mediasoup.Transport, kind: Mediasoup.MediaKind, rtpParameters: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) - func onProduceData(transport: Mediasoup.Transport, sctpParameters: Swift.String, label: Swift.String, protocol dataProtocol: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) + func onProduce(transport: any Mediasoup.Transport, kind: Mediasoup.MediaKind, rtpParameters: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) + func onProduceData(transport: any Mediasoup.Transport, sctpParameters: Swift.String, label: Swift.String, protocol dataProtocol: Swift.String, appData: Swift.String, callback: @escaping (Swift.String?) -> Swift.Void) } public enum MediasoupError : Swift.Error { case unsupported(Swift.String) case invalidState(Swift.String) case invalidParameters(Swift.String) case mediasoup(Foundation.NSError) - case unknown(Swift.Error) + case unknown(any Swift.Error) } public protocol ProducerDelegate : AnyObject { func onTransportClose(in producer: Mediasoup.Producer) } +@_hasMissingDesignatedInitializers public class DataConsumer { + weak public var delegate: (any Mediasoup.DataConsumerDelegate)? + public var id: Swift.String { + get + } + public var localId: Swift.String { + get + } + public var producerId: Swift.String { + get + } + public var closed: Swift.Bool { + get + } + public var label: Swift.String { + get + } + public var dataProtocol: Swift.String { + get + } + public var appData: Swift.String { + get + } + public var sctpStreamParameters: Swift.String { + get + } + public func close() + @objc deinit +} +extension Mediasoup.DataConsumer : Mediasoup_Private.DataConsumerWrapperDelegate { + @objc dynamic public func onMessage(_ messageData: Foundation.Data, consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onConnecting(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onOpen(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onClosing(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onClose(_ consumer: Mediasoup_Private.DataConsumerWrapper) + @objc dynamic public func onTransportClose(_ consumer: Mediasoup_Private.DataConsumerWrapper) +} +public protocol DataConsumerDelegate : AnyObject { + func onConnecting(consumer: Mediasoup.DataConsumer) + func onOpen(consumer: Mediasoup.DataConsumer) + func onClosing(consumer: Mediasoup.DataConsumer) + func onClose(consumer: Mediasoup.DataConsumer) + func onTransportClose(in consumer: Mediasoup.DataConsumer) + func onMessage(data: Foundation.Data, from consumer: Mediasoup.DataConsumer) +} public enum ICETransportPolicy { case none case relay @@ -138,7 +185,7 @@ public enum ICETransportPolicy { } } @_hasMissingDesignatedInitializers public class Producer { - weak public var delegate: Mediasoup.ProducerDelegate? + weak public var delegate: (any Mediasoup.ProducerDelegate)? public var track: WebRTC.RTCMediaStreamTrack { get } @@ -180,17 +227,18 @@ extension Mediasoup.Producer : Mediasoup_Private.ProducerWrapperDelegate { } public class Device { public init() + public init(pcFactory: WebRTC.RTCPeerConnectionFactory) public func isLoaded() -> Swift.Bool public func load(with routerRTPCapabilities: Swift.String) throws public func rtpCapabilities() throws -> Swift.String public func sctpCapabilities() throws -> Swift.String public func canProduce(_ mediaKind: Mediasoup.MediaKind) throws -> Swift.Bool - public func createSendTransport(id: Swift.String, iceParameters: Swift.String, iceCandidates: Swift.String, dtlsParameters: Swift.String, sctpParameters: Swift.String?, appData: Swift.String?) throws -> Mediasoup.SendTransport - public func createReceiveTransport(id: Swift.String, iceParameters: Swift.String, iceCandidates: Swift.String, dtlsParameters: Swift.String, sctpParameters: Swift.String? = nil, appData: Swift.String? = nil) throws -> Mediasoup.ReceiveTransport + public func createSendTransport(id: Swift.String, iceParameters: Swift.String, iceCandidates: Swift.String, dtlsParameters: Swift.String, sctpParameters: Swift.String?, iceServers: Swift.String? = nil, iceTransportPolicy: Mediasoup.ICETransportPolicy = .all, appData: Swift.String?) throws -> Mediasoup.SendTransport + public func createReceiveTransport(id: Swift.String, iceParameters: Swift.String, iceCandidates: Swift.String, dtlsParameters: Swift.String, sctpParameters: Swift.String? = nil, iceServers: Swift.String? = nil, iceTransportPolicy: Mediasoup.ICETransportPolicy = .all, appData: Swift.String? = nil) throws -> Mediasoup.ReceiveTransport @objc deinit } @_hasMissingDesignatedInitializers public class Consumer { - weak public var delegate: Mediasoup.ConsumerDelegate? + weak public var delegate: (any Mediasoup.ConsumerDelegate)? public var track: WebRTC.RTCMediaStreamTrack { get } diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/module.modulemap b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/module.modulemap index 5eb97ec..3adf8e5 100644 --- a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/module.modulemap +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/module.modulemap @@ -3,6 +3,6 @@ framework module Mediasoup { } module Mediasoup.Swift { - header "Mediasoup-Swift.h" - requires objc + header "Mediasoup-Swift.h" + requires objc } diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/module.private.modulemap b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/module.private.modulemap index 2fa9879..7f3d59c 100644 --- a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/module.private.modulemap +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/Modules/module.private.modulemap @@ -11,4 +11,6 @@ module Mediasoup_Private { private header "PrivateHeaders/ReceiveTransportWrapperDelegate.h" private header "PrivateHeaders/ConsumerWrapper.hpp" private header "PrivateHeaders/ConsumerWrapperDelegate.h" + private header "PrivateHeaders/DataConsumerWrapper.hpp" + private header "PrivateHeaders/DataConsumerWrapperDelegate.h" } diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/PrivateHeaders/DataConsumerWrapper.hpp b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/PrivateHeaders/DataConsumerWrapper.hpp new file mode 100644 index 0000000..df76d7f --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/PrivateHeaders/DataConsumerWrapper.hpp @@ -0,0 +1,37 @@ +#ifndef DataConsumerWrapper_h +#define DataConsumerWrapper_h + +#import + +#ifdef __cplusplus +namespace mediasoupclient { + class DataConsumer; +} +class DataConsumerListenerAdapter; +#endif + +@protocol DataConsumerWrapperDelegate; + + +@interface DataConsumerWrapper : NSObject + +@property(nonatomic, nullable, weak) id delegate; +@property(nonatomic, nonnull, readonly, getter = id) NSString *id; +@property(nonatomic, nonnull, readonly, getter = localId) NSString *localId; +@property(nonatomic, nonnull, readonly, getter = producerId) NSString *producerId; +@property(nonatomic, nonnull, readonly, getter = sctpStreamParameters) NSString *sctpStreamParameters; +@property(nonatomic, readonly, getter = closed) BOOL closed; +@property(nonatomic, nonnull, readonly, getter = label) NSString *label; +@property(nonatomic, nonnull, readonly, getter = dataProtocol) NSString *dataProtocol; +@property(nonatomic, nonnull, readonly, getter = appData) NSString *appData; + +#ifdef __cplusplus +- (instancetype _Nullable)initWithDataConsumer:(mediasoupclient::DataConsumer *_Nonnull)consumer + listenerAdapter:(DataConsumerListenerAdapter *_Nonnull)listenerAdapter; +#endif + +- (void)close; + +@end + +#endif /* DataConsumerWrapper_h */ diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/PrivateHeaders/DataConsumerWrapperDelegate.h b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/PrivateHeaders/DataConsumerWrapperDelegate.h new file mode 100644 index 0000000..7f19a2a --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/PrivateHeaders/DataConsumerWrapperDelegate.h @@ -0,0 +1,19 @@ +#ifndef DataConsumerWrapperDelegate_h +#define DataConsumerWrapperDelegate_h + +#import + + +@class DataConsumerWrapper; + + +@protocol DataConsumerWrapperDelegate +- (void)onMessage:(NSData *_Nonnull)messageData consumer:(DataConsumerWrapper *_Nonnull)consumer; +- (void)onConnecting:(DataConsumerWrapper *_Nonnull)consumer; +- (void)onOpen:(DataConsumerWrapper *_Nonnull)consumer; +- (void)onClosing:(DataConsumerWrapper *_Nonnull)consumer; +- (void)onClose:(DataConsumerWrapper *_Nonnull)consumer; +- (void)onTransportClose:(DataConsumerWrapper *_Nonnull)consumer; +@end + +#endif /* DataConsumerWrapperDelegate_h */ diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/PrivateHeaders/DeviceWrapper.h b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/PrivateHeaders/DeviceWrapper.h index 66b7a52..1c9f8c9 100644 --- a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/PrivateHeaders/DeviceWrapper.h +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/PrivateHeaders/DeviceWrapper.h @@ -7,10 +7,15 @@ @class ReceiveTransportWrapper; @class SendTransportWrapper; +@class RTCPeerConnectionFactory; +typedef NS_ENUM(NSInteger, RTCIceTransportPolicy); @interface DeviceWrapper : NSObject +- (instancetype _Nonnull)init; +- (instancetype _Nonnull)initWithPCFactory:(RTCPeerConnectionFactory *_Nonnull)pcFactory NS_DESIGNATED_INITIALIZER; + - (BOOL)isLoaded; - (void)loadWithRouterRTPCapabilities:(NSString *_Nonnull)routerRTPCapabilities @@ -33,6 +38,8 @@ iceCandidates:(NSString *_Nonnull)iceCandidates dtlsParameters:(NSString *_Nonnull)dtlsParameters sctpParameters:(NSString *_Nullable)sctpParameters + iceServers:(NSString *_Nullable)iceServers + iceTransportPolicy:(RTCIceTransportPolicy)iceTransportPolicy appData:(NSString *_Nullable)appData error:(out NSError *__autoreleasing _Nullable *_Nullable)error; @@ -41,6 +48,8 @@ iceCandidates:(NSString *_Nonnull)iceCandidates dtlsParameters:(NSString *_Nonnull)dtlsParameters sctpParameters:(NSString *_Nullable)sctpParameters + iceServers:(NSString *_Nullable)iceServers + iceTransportPolicy:(RTCIceTransportPolicy)iceTransportPolicy appData:(NSString *_Nullable)appData error:(out NSError *__autoreleasing _Nullable *_Nullable)error; diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/PrivateHeaders/ReceiveTransportWrapper.hpp b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/PrivateHeaders/ReceiveTransportWrapper.hpp index b0975cc..f63b404 100644 --- a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/PrivateHeaders/ReceiveTransportWrapper.hpp +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/PrivateHeaders/ReceiveTransportWrapper.hpp @@ -12,9 +12,9 @@ class ReceiveTransportListenerAdapter; #endif @class ConsumerWrapper; +@class DataConsumerWrapper; @class RTCPeerConnectionFactory; @protocol ReceiveTransportWrapperDelegate; -typedef NS_ENUM(NSInteger, RTCIceTransportPolicy); @interface ReceiveTransportWrapper : NSObject @@ -42,10 +42,6 @@ typedef NS_ENUM(NSInteger, RTCIceTransportPolicy); error:(out NSError *__autoreleasing _Nullable *_Nullable)error __attribute__((swift_error(nonnull_error))); -- (void)updateICETransportPolicy:(RTCIceTransportPolicy)iceTransportPolicy - error:(out NSError *__autoreleasing _Nullable *_Nullable)error - __attribute__((swift_error(nonnull_error))); - - (ConsumerWrapper *_Nullable)createConsumerWithId:(NSString *_Nonnull)consumerId producerId:(NSString *_Nonnull)producerId kind:(MediasoupClientMediaKind _Nonnull)kind @@ -53,6 +49,14 @@ typedef NS_ENUM(NSInteger, RTCIceTransportPolicy); appData:(NSString *_Nullable)appData error:(out NSError *__autoreleasing _Nullable *_Nullable)error; +- (DataConsumerWrapper *_Nullable)createDataConsumerWithId:(NSString *_Nonnull)consumerId + producerId:(NSString *_Nonnull)producerId + streamId:(UInt16)streamId + label:(NSString *_Nonnull)label + protocol:(NSString *_Nullable)protocol + appData:(NSString *_Nullable)appData + error:(out NSError *__autoreleasing _Nullable *_Nullable)error; + @end #endif /* ReceiveTransportWrapper_h */ diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/PrivateHeaders/SendTransportWrapper.hpp b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/PrivateHeaders/SendTransportWrapper.hpp index b82c13c..a4fa6fa 100644 --- a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/PrivateHeaders/SendTransportWrapper.hpp +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/PrivateHeaders/SendTransportWrapper.hpp @@ -14,7 +14,7 @@ class SendTransportListenerAdapter; @class RTCMediaStreamTrack; @class RTCRtpEncodingParameters; @protocol SendTransportWrapperDelegate; -typedef NS_ENUM(NSInteger, RTCIceTransportPolicy); + @interface SendTransportWrapper : NSObject @@ -40,13 +40,18 @@ typedef NS_ENUM(NSInteger, RTCIceTransportPolicy); error:(out NSError *__autoreleasing _Nullable *_Nullable)error __attribute__((swift_error(nonnull_error))); -- (void)updateICETransportPolicy:(RTCIceTransportPolicy)iceTransportPolicy - error:(out NSError *__autoreleasing _Nullable *_Nullable)error - __attribute__((swift_error(nonnull_error))); - - (ProducerWrapper *_Nullable)createProducerForTrack:(RTCMediaStreamTrack *_Nonnull)mediaTrack encodings:(NSArray *_Nullable)encodings codecOptions:(NSString *_Nullable)codecOptions + codec:(NSString *_Nullable)codec + appData:(NSString *_Nullable)appData + error:(out NSError *__autoreleasing _Nullable *_Nullable)error; + +- (ProducerWrapper *_Nullable)createProducerForTrack:(RTCMediaStreamTrack *_Nonnull)mediaTrack + encoding:(RTCRtpEncodingParameters *_Nonnull)encoding + scalabilityMode:(NSString *_Nonnull)scalabilityMode + codecOptions:(NSString *_Nullable)codecOptions + codec:(NSString *_Nullable)codec appData:(NSString *_Nullable)appData error:(out NSError *__autoreleasing _Nullable *_Nullable)error; diff --git a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/_CodeSignature/CodeResources b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/_CodeSignature/CodeResources index 8044ff4..dea4b1e 100644 --- a/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/_CodeSignature/CodeResources +++ b/Pods/VideoSDKRTC/Frameworks/Mediasoup.xcframework/ios-arm64_x86_64-simulator/Mediasoup.framework/_CodeSignature/CodeResources @@ -6,51 +6,67 @@ Headers/Mediasoup-Swift.h - 57wGgOVF53nR8hBRkCumuB8/swE= + otkEu7BP29rUVxtErAO6TRqwkEQ= Info.plist - /I+cLaemR2SEfOdARIoo/fWcD4k= + nRi2EjqFnDODwy09IKFHivrl7DA= Modules/Mediasoup.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo - y4cuOVoQVRRhAEGse+n0E5u3n1Q= + IrZlGakFVH4YiJlxliXx25NKXB0= Modules/Mediasoup.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo - 4Z68jG1zR+Lz4n/Zd/kgZ+QBg7k= + yLxV2qX3srh8xWUv5DJv7yZatx8= + + Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.abi.json + + CeGyeppWdIk3xGY1mnRJmqtspPo= + + Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + eZLIJ4QPQTf1O5f2DNNP2PQqMvQ= Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.swiftdoc - shbgux3ANI/LY43ftpC96UbcJRM= + 8614fvVZi4Sj172alcsL084s114= Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.swiftinterface - m3qqoF22djkWj6BEcaKoT2jF5E8= + eZLIJ4QPQTf1O5f2DNNP2PQqMvQ= Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.swiftmodule - L/fdM8EcXfmOqBwpgq1GEmXXVHo= + 3xoSeSScuq7vQwp5H8KtGaq+2pY= + + Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.abi.json + + CeGyeppWdIk3xGY1mnRJmqtspPo= + + Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + anyJKeQgk6u3Vds8LRrNCTaH+Wc= Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - GyThfeJZGobm5npTFdoeG8Uu72w= + 18kj1Aa4Dhv3+AseZYUwK2OchEI= Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - mie0G4Y78WURXT0xLidJ+Kdmi3M= + anyJKeQgk6u3Vds8LRrNCTaH+Wc= Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - iUI1W0WAbJGw2r/ITRON97L/enI= + o9ujjITpMRbUA0e/mHORou1zVqs= Modules/module.modulemap - D5dkuKHPg5D/kaUVkiLCTxOhWbg= + +FK1nem4sHlpbetmf8Pju1r01TI= Modules/module.private.modulemap - QO8a9HSsE/gxGJmmXXLpop1oHZM= + 3JqVCw+rSTWfXSlclcJs4y+UC9Y= PrivateHeaders/ConsumerWrapper.hpp @@ -60,9 +76,17 @@ oswr1p92zCslBx1n7ZUif3rnDz8= + PrivateHeaders/DataConsumerWrapper.hpp + + sEfgLvUPUP0QbaXX8iTMVFws7CU= + + PrivateHeaders/DataConsumerWrapperDelegate.h + + 7/Nuvu+PqGfed11eAqb50Tb9qyo= + PrivateHeaders/DeviceWrapper.h - ce7AD1Hv1p38L1zkFTM7TWipw04= + fHXpoqtOpDyztFXVhuRKW0/jxSo= PrivateHeaders/MediasoupClientError.h @@ -94,7 +118,7 @@ PrivateHeaders/ReceiveTransportWrapper.hpp - sogyET3n1RTJSOn3Uw0UwX95Fv0= + 5XINLKK/OIwucEvUC5pVvSHhGsw= PrivateHeaders/ReceiveTransportWrapperDelegate.h @@ -106,7 +130,7 @@ PrivateHeaders/SendTransportWrapper.hpp - 1t7tjSxmTrs781pknNd5I7G+JG0= + pxXUVibWK4X4lCWcs3TU1KAGYtA= PrivateHeaders/SendTransportWrapperDelegate.h @@ -119,77 +143,105 @@ hash2 - dPY4P2ljzMabjK7nuo2z8AiyOxt05e+0ESb8Ovz2Noo= + Kn+xFiyLN0pBKOY56UOU87yNSew0AZMUYeMlUR12kgQ= Modules/Mediasoup.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo hash2 - 13zg+LkEDVnJCiH1uxuPWNfkpnf5g05HxOt9StdaUbQ= + w6zBS0BtLJhAzK6Py1LM4zyrs0XWT7i2YVLuy4bBFpA= Modules/Mediasoup.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo hash2 - vSm4TW5MXyudPLiKAsvB/PdXZ0xHGDtuAlHlX1yqM2Y= + /cn+jvoLRJKIsGYE+wGE2v+RuxFzIqR7Vdph9xb9jH4= + + + Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.abi.json + + hash2 + + aLoMhWww0aiLXWvmA0PafPjkK0FiNm/AGypGPTuu/zA= + + + Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + hash2 + + 5M3zusO9b7ELrz0L5jEFyMqmzl3yf9kpFQP7J1WX+sE= Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.swiftdoc hash2 - BYFj+nH0Fxy5+p3vsumFFLAnUEDgmFPGS0PksGtrjlQ= + 0ZNYIFlvE8AWFbSDiQA2eoYhf3qzGpHE8dZ12138FKM= Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.swiftinterface hash2 - BSXdpmNJdeo34RsNjzjotIw6xzSPmCLtj/e6EoLq8OI= + 5M3zusO9b7ELrz0L5jEFyMqmzl3yf9kpFQP7J1WX+sE= Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - s3zLJsa1llpbv+HlPgChKFvyNoSeMpYKXLN1j6+JJPk= + /7Zp2DNQoWHLWNC5F60PpVc/ZwO6H0s4M9oCnYsBcbI= + + + Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.abi.json + + hash2 + + aLoMhWww0aiLXWvmA0PafPjkK0FiNm/AGypGPTuu/zA= + + + Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + hash2 + + P4L/l6R/iHlDxxLXTt0iPGtMmD66N33exR+vM4ZhRc8= Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.swiftdoc hash2 - lDWN+PxWV+eaV3kX9RVuoV0DwkET+AJ2eq61hlv8+M4= + GACAYLAK5HHq31uE0iiMDIv640FLN8VrfxITSu4n+mU= Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.swiftinterface hash2 - 0Zk/yM01DVIMGrtIMvu+dUAh4EKGVrfjXqH9KKC8pfg= + P4L/l6R/iHlDxxLXTt0iPGtMmD66N33exR+vM4ZhRc8= Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - +yd3fTZgDk2tCTTxPCmFmge1mDd1VkNhCio9TmuNUQU= + qikdWrKXHIvWugQWVDqKXXvZAni9m4Sk66im7lycjUM= Modules/module.modulemap hash2 - m/Ov5D2pXeCeczh5zfVt2cEkolRbxTuKW2JuNSyEw+Y= + xZdI+cDZ+yz3XxLk/Oi7N1KA8L+/dU5W90tN2nAHXnM= Modules/module.private.modulemap hash2 - bXZpK64VSmS8yMx1MXUhozsPDgZRLeKEYoz/1retiXM= + ao8zoaUmY1ab+jZfI9ZO4ew8h1YyJ20R84JVOgVJhOs= PrivateHeaders/ConsumerWrapper.hpp @@ -206,11 +258,25 @@ xW27w5a3vXvBRuLyJZtrP8iKU8nnoGRYjckAZf0jrB4= + PrivateHeaders/DataConsumerWrapper.hpp + + hash2 + + XcQabfIfhFptp6E0sqzfyplA74tmHKUjcQitlKi1eS4= + + + PrivateHeaders/DataConsumerWrapperDelegate.h + + hash2 + + k+XTGD6dHSpyibL2TYQ85xQcy3FRtxZisJWmp36t/Es= + + PrivateHeaders/DeviceWrapper.h hash2 - ATxXYHAYJ5qlqQ+s+mTnf9UqFg/Wzn97lzADKhQtoyQ= + N7oz0Yer7yFY9VhZbhWy759+qemnTzOJTq1fmCP9/pM= PrivateHeaders/MediasoupClientError.h @@ -266,7 +332,7 @@ hash2 - aOzjIxP4fk0PuwLWZeT7OZmgTb+X/botf2ciJAswEZo= + nkekFAuQKr7EzjyJI02ZBsmgp6BgFWAIg7p3X0CYeKQ= PrivateHeaders/ReceiveTransportWrapperDelegate.h @@ -287,7 +353,7 @@ hash2 - xHx9IGBPTy4ZOr8IqJx1SIsbqeou4mqixSF6v0sUP5g= + b8mFT1IySQ4fP9qZp55Lh/k7bcq7LLRbWcAuGOlvmug= PrivateHeaders/SendTransportWrapperDelegate.h diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/Info.plist b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/Info.plist index cad957e..cca813b 100644 --- a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/Info.plist +++ b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/Info.plist @@ -5,31 +5,35 @@ AvailableLibraries + BinaryPath + VideoSDKRTC.framework/VideoSDKRTC LibraryIdentifier - ios-arm64 + ios-arm64_x86_64-simulator LibraryPath VideoSDKRTC.framework SupportedArchitectures arm64 + x86_64 SupportedPlatform ios + SupportedPlatformVariant + simulator + BinaryPath + VideoSDKRTC.framework/VideoSDKRTC LibraryIdentifier - ios-arm64_x86_64-simulator + ios-arm64 LibraryPath VideoSDKRTC.framework SupportedArchitectures arm64 - x86_64 SupportedPlatform ios - SupportedPlatformVariant - simulator CFBundlePackageType diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Headers/BroadcastScreenCapturer.h b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Headers/BroadcastScreenCapturer.h new file mode 100644 index 0000000..935f3bf --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Headers/BroadcastScreenCapturer.h @@ -0,0 +1,26 @@ +// +// BroadcastScreenCapturer.h +// Pods +// +// Created by Parth Asodariya on 23/06/23. +// + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +extern NSString* const kRTCScreensharingSocketFD; +extern NSString* const kRTCAppGroupIdentifier; +extern NSString* const kRTCScreenSharingExtension; + +@class iOSSocketConnectionFrameReader; + +@interface iOSBroadcastScreenCapturer : RTCVideoCapturer +- (void)startCapture; +- (void)stopCapture; +- (void)stopCaptureWithCompletionHandler:(nullable void (^)(void))completionHandler; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Headers/SocketConnection.h b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Headers/SocketConnection.h new file mode 100644 index 0000000..802b67c --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Headers/SocketConnection.h @@ -0,0 +1,20 @@ +// +// SocketConnection.h +// Pods +// +// Created by Parth Asodariya on 23/06/23. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface iOSSocketConnection : NSObject + +- (instancetype)initWithFilePath:(nonnull NSString*)filePath; +- (void)openWithStreamDelegate:(id)streamDelegate; +- (void)close; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Headers/SocketConnectionFrameReader.h b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Headers/SocketConnectionFrameReader.h new file mode 100644 index 0000000..c0dd05c --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Headers/SocketConnectionFrameReader.h @@ -0,0 +1,23 @@ +// +// SocketConnectionFrameReader.h +// Pods +// +// Created by Parth Asodariya on 23/06/23. +// + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +@class iOSSocketConnection; + +@interface iOSSocketConnectionFrameReader : RTCVideoCapturer + +- (instancetype)initWithDelegate:(__weak id)delegate; +- (void)startCaptureWithConnection:(nonnull iOSSocketConnection*)connection; +- (void)stopCapture; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Headers/VideoSDKRTC-Bridging-Header.h b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Headers/VideoSDKRTC-Bridging-Header.h deleted file mode 100644 index cb14cb9..0000000 --- a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Headers/VideoSDKRTC-Bridging-Header.h +++ /dev/null @@ -1,16 +0,0 @@ -// -// VideoSDKRTC-Bridging-Header.h -// VideoSDKRTC -// -// Created by VideoSDK Team on 02/09/21. -// Copyright © 2021 Zujo Tech Pvt Ltd. All rights reserved. -// -// -//#ifndef VideoSDKRTC_Bridging_Header_h -//#define VideoSDKRTC_Bridging_Header_h -// -//#include "vl_mediasoup_client_ios/Mediasoupclient.h" -// -//#endif /* VideoSDKRTC_Bridging_Header_h */ -// -// diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Headers/VideoSDKRTC-Swift.h b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Headers/VideoSDKRTC-Swift.h index a9de8c9..4f90366 100644 --- a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Headers/VideoSDKRTC-Swift.h +++ b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Headers/VideoSDKRTC-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) +// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) #ifndef VIDEOSDKRTC_SWIFT_H #define VIDEOSDKRTC_SWIFT_H #pragma clang diagnostic push @@ -23,7 +23,6 @@ # include #endif -#pragma clang diagnostic ignored "-Wduplicate-method-match" #pragma clang diagnostic ignored "-Wauto-import" #if defined(__OBJC__) #include @@ -32,10 +31,30 @@ #include #include #include +#include +#include +#include +#include #else #include #include #include +#include +#endif +#if defined(__cplusplus) +#if defined(__arm64e__) && __has_include() +# include +#else +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreserved-macro-identifier" +# ifndef __ptrauth_swift_value_witness_function_pointer +# define __ptrauth_swift_value_witness_function_pointer(x) +# endif +# ifndef __ptrauth_swift_class_method_pointer +# define __ptrauth_swift_class_method_pointer(x) +# endif +#pragma clang diagnostic pop +#endif #endif #if !defined(SWIFT_TYPEDEFS) @@ -71,53 +90,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # if __has_feature(objc_class_property) # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ # else -# define SWIFT_CLASS_PROPERTY(...) +# define SWIFT_CLASS_PROPERTY(...) # endif #endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) +#if !defined(SWIFT_RUNTIME_NAME) +# if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +# else +# define SWIFT_RUNTIME_NAME(X) +# endif #endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) +#if !defined(SWIFT_COMPILE_NAME) +# if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +# else +# define SWIFT_COMPILE_NAME(X) +# endif #endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) +#if !defined(SWIFT_METHOD_FAMILY) +# if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +# else +# define SWIFT_METHOD_FAMILY(X) +# endif #endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE +#if !defined(SWIFT_NOESCAPE) +# if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +# else +# define SWIFT_NOESCAPE +# endif #endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT +#if !defined(SWIFT_RELEASES_ARGUMENT) +# if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +# else +# define SWIFT_RELEASES_ARGUMENT +# endif #endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT +#if !defined(SWIFT_WARN_UNUSED_RESULT) +# if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +# else +# define SWIFT_WARN_UNUSED_RESULT +# endif #endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN +#if !defined(SWIFT_NORETURN) +# if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +# else +# define SWIFT_NORETURN +# endif #endif #if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_EXTRA #endif #if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_EXTRA #endif #if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA +# define SWIFT_ENUM_EXTRA #endif #if !defined(SWIFT_CLASS) # if __has_attribute(objc_subclassing_restricted) @@ -137,28 +169,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) # endif #endif - #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA #endif - #if !defined(SWIFT_EXTENSION) # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) #endif - #if !defined(OBJC_DESIGNATED_INITIALIZER) # if __has_attribute(objc_designated_initializer) # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) # else -# define OBJC_DESIGNATED_INITIALIZER +# define OBJC_DESIGNATED_INITIALIZER # endif #endif #if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# if __has_attribute(enum_extensibility) # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) # else -# define SWIFT_ENUM_ATTR(_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) # endif #endif #if !defined(SWIFT_ENUM) @@ -187,14 +216,16 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_DEPRECATED_MSG) # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) #endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#if !defined(SWIFT_DEPRECATED_OBJC) +# if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +# else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +# endif #endif #if defined(__OBJC__) #if !defined(IBSegueAction) -# define IBSegueAction +# define IBSegueAction #endif #endif #if !defined(SWIFT_EXTERN) @@ -207,26 +238,42 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_CALL) # define SWIFT_CALL __attribute__((swiftcall)) #endif +#if !defined(SWIFT_INDIRECT_RESULT) +# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) +#endif +#if !defined(SWIFT_CONTEXT) +# define SWIFT_CONTEXT __attribute__((swift_context)) +#endif +#if !defined(SWIFT_ERROR_RESULT) +# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) +#endif #if defined(__cplusplus) -#if !defined(SWIFT_NOEXCEPT) # define SWIFT_NOEXCEPT noexcept -#endif #else -#if !defined(SWIFT_NOEXCEPT) # define SWIFT_NOEXCEPT #endif +#if !defined(SWIFT_C_INLINE_THUNK) +# if __has_attribute(always_inline) +# if __has_attribute(nodebug) +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) +# else +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) +# endif +# else +# define SWIFT_C_INLINE_THUNK inline +# endif #endif -#if defined(__cplusplus) -#if !defined(SWIFT_CXX_INT_DEFINED) -#define SWIFT_CXX_INT_DEFINED -namespace swift { -using Int = ptrdiff_t; -using UInt = size_t; -} +#if defined(_WIN32) +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) +#endif +#else +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL #endif #endif #if defined(__OBJC__) -#if __has_feature(modules) +#if __has_feature(objc_modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif @@ -258,12 +305,12 @@ SWIFT_CLASS("_TtC11VideoSDKRTC13PubSubMessage") + (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); @end -#endif -#if defined(__cplusplus) #endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif +#if defined(__cplusplus) +#endif #pragma clang diagnostic pop #endif diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Headers/VideoSDKRTC-umbrella.h b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Headers/VideoSDKRTC-umbrella.h index 19c937a..ea753c1 100644 --- a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Headers/VideoSDKRTC-umbrella.h +++ b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Headers/VideoSDKRTC-umbrella.h @@ -10,6 +10,9 @@ #endif #endif +#import "BroadcastScreenCapturer.h" +#import "SocketConnection.h" +#import "SocketConnectionFrameReader.h" FOUNDATION_EXPORT double VideoSDKRTCVersionNumber; FOUNDATION_EXPORT const unsigned char VideoSDKRTCVersionString[]; diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Info.plist b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Info.plist index a048db4..65bd6c8 100644 Binary files a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Info.plist and b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Info.plist differ diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios.abi.json b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios.abi.json index c97f791..69e4e21 100644 --- a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios.abi.json +++ b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios.abi.json @@ -24,236 +24,181 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "os.activity", + "printedName": "os.activity", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", - "name": "CameraPosition", - "printedName": "CameraPosition", + "name": "Aggregations", + "printedName": "Aggregations", "children": [ { - "kind": "Var", - "name": "back", - "printedName": "back", + "kind": "Function", + "name": "drop", + "printedName": "drop()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.CameraPosition.Type) -> VideoSDKRTC.CameraPosition", - "children": [ - { - "kind": "TypeNominal", - "name": "CameraPosition", - "printedName": "VideoSDKRTC.CameraPosition", - "usr": "s:11VideoSDKRTC14CameraPositionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CameraPosition.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CameraPosition", - "printedName": "VideoSDKRTC.CameraPosition", - "usr": "s:11VideoSDKRTC14CameraPositionO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC14CameraPositionO4backyA2CmF", - "mangledName": "$s11VideoSDKRTC14CameraPositionO4backyA2CmF", - "moduleName": "VideoSDKRTC" + "declKind": "Func", + "usr": "s:11VideoSDKRTC12AggregationsO4dropAA11Aggregation_pyFZ", + "mangledName": "$s11VideoSDKRTC12AggregationsO4dropAA11Aggregation_pyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "front", - "printedName": "front", + "kind": "Function", + "name": "defaultAggregation", + "printedName": "defaultAggregation()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.CameraPosition.Type) -> VideoSDKRTC.CameraPosition", - "children": [ - { - "kind": "TypeNominal", - "name": "CameraPosition", - "printedName": "VideoSDKRTC.CameraPosition", - "usr": "s:11VideoSDKRTC14CameraPositionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CameraPosition.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CameraPosition", - "printedName": "VideoSDKRTC.CameraPosition", - "usr": "s:11VideoSDKRTC14CameraPositionO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC14CameraPositionO5frontyA2CmF", - "mangledName": "$s11VideoSDKRTC14CameraPositionO5frontyA2CmF", - "moduleName": "VideoSDKRTC" + "declKind": "Func", + "usr": "s:11VideoSDKRTC12AggregationsO18defaultAggregationAA0E0_pyFZ", + "mangledName": "$s11VideoSDKRTC12AggregationsO18defaultAggregationAA0E0_pyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "toggle", - "printedName": "toggle()", + "name": "sum", + "printedName": "sum()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC14CameraPositionO6toggleyyF", - "mangledName": "$s11VideoSDKRTC14CameraPositionO6toggleyyF", + "usr": "s:11VideoSDKRTC12AggregationsO3sumAA11Aggregation_pyFZ", + "mangledName": "$s11VideoSDKRTC12AggregationsO3sumAA11Aggregation_pyFZ", "moduleName": "VideoSDKRTC", + "static": true, "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "funcSelfKind": "Mutating" + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Function", + "name": "lastValue", + "printedName": "lastValue()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.CameraPosition?", - "children": [ - { - "kind": "TypeNominal", - "name": "CameraPosition", - "printedName": "VideoSDKRTC.CameraPosition", - "usr": "s:11VideoSDKRTC14CameraPositionO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" } ], - "declKind": "Constructor", - "usr": "s:11VideoSDKRTC14CameraPositionO8rawValueACSgSi_tcfc", - "mangledName": "$s11VideoSDKRTC14CameraPositionO8rawValueACSgSi_tcfc", + "declKind": "Func", + "usr": "s:11VideoSDKRTC12AggregationsO9lastValueAA11Aggregation_pyFZ", + "mangledName": "$s11VideoSDKRTC12AggregationsO9lastValueAA11Aggregation_pyFZ", "moduleName": "VideoSDKRTC", - "implicit": true, - "init_kind": "Designated" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Function", + "name": "explicitBucketHistogram", + "printedName": "explicitBucketHistogram()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" } ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC14CameraPositionO8rawValueSivp", - "mangledName": "$s11VideoSDKRTC14CameraPositionO8rawValueSivp", + "declKind": "Func", + "usr": "s:11VideoSDKRTC12AggregationsO23explicitBucketHistogramAA11Aggregation_pyFZ", + "mangledName": "$s11VideoSDKRTC12AggregationsO23explicitBucketHistogramAA11Aggregation_pyFZ", "moduleName": "VideoSDKRTC", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC14CameraPositionO8rawValueSivg", - "mangledName": "$s11VideoSDKRTC14CameraPositionO8rawValueSivg", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:11VideoSDKRTC14CameraPositionO", - "mangledName": "$s11VideoSDKRTC14CameraPositionO", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "Int", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Function", + "name": "explicitBucketHistogram", + "printedName": "explicitBucketHistogram(buckets:)", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ] + ], + "usr": "s:Sa" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "declKind": "Func", + "usr": "s:11VideoSDKRTC12AggregationsO23explicitBucketHistogram7bucketsAA11Aggregation_pSaySdG_tFZ", + "mangledName": "$s11VideoSDKRTC12AggregationsO23explicitBucketHistogram7bucketsAA11Aggregation_pSaySdG_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC12AggregationsO", + "mangledName": "$s11VideoSDKRTC12AggregationsO", "moduleName": "VideoSDKRTC", "declAttributes": [ - "RawDocComment" + "AccessControl" ] }, { @@ -267,342 +212,563 @@ ] }, { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + "kind": "TypeDecl", + "name": "DefaultAggregationSelector", + "printedName": "DefaultAggregationSelector", + "children": [ + { + "kind": "Function", + "name": "getDefaultAggregation", + "printedName": "getDefaultAggregation(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26DefaultAggregationSelectorP03getcD03forAA0D0_pAA14InstrumentTypeO_tF", + "mangledName": "$s11VideoSDKRTC26DefaultAggregationSelectorP03getcD03forAA0D0_pAA14InstrumentTypeO_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DefaultAggregationSelector>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC26DefaultAggregationSelectorP", + "mangledName": "$s11VideoSDKRTC26DefaultAggregationSelectorP", "moduleName": "VideoSDKRTC", "declAttributes": [ - "RawDocComment" + "AccessControl" ] }, { "kind": "TypeDecl", - "name": "CustomVideoTrackConfig", - "printedName": "CustomVideoTrackConfig", + "name": "AggregationSelector", + "printedName": "AggregationSelector", "children": [ { "kind": "Var", - "name": "h90p_w160p", - "printedName": "h90p_w160p", + "name": "instance", + "printedName": "instance", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "kind": "TypeNominal", + "name": "AggregationSelector", + "printedName": "VideoSDKRTC.AggregationSelector", + "usr": "s:11VideoSDKRTC19AggregationSelectorC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19AggregationSelectorC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - } - ] + "name": "AggregationSelector", + "printedName": "VideoSDKRTC.AggregationSelector", + "usr": "s:11VideoSDKRTC19AggregationSelectorC" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19AggregationSelectorC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO10h90p_w160pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO10h90p_w160pyA2CmF", - "moduleName": "VideoSDKRTC" + ] }, { "kind": "Var", - "name": "h180p_w320p", - "printedName": "h180p_w320p", + "name": "selector", + "printedName": "selector", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.InstrumentType) -> VideoSDKRTC.Aggregation", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - } - ] + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" } ] } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h180p_w320pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h180p_w320pyA2CmF", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Var", - "name": "h216p_w384p", - "printedName": "h216p_w384p", - "children": [ + "declKind": "Var", + "usr": "s:11VideoSDKRTC19AggregationSelectorC8selectoryAA0C0_pAA14InstrumentTypeOcvp", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC8selectoryAA0C0_pAA14InstrumentTypeOcvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType) -> VideoSDKRTC.Aggregation", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" } ] } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19AggregationSelectorC8selectoryAA0C0_pAA14InstrumentTypeOcvg", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC8selectoryAA0C0_pAA14InstrumentTypeOcvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h216p_w384pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h216p_w384pyA2CmF", - "moduleName": "VideoSDKRTC" + ] }, { - "kind": "Var", - "name": "h360p_w640p", - "printedName": "h360p_w640p", + "kind": "Function", + "name": "getDefaultAggregation", + "printedName": "getDefaultAggregation(for:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h360p_w640pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h360p_w640pyA2CmF", - "moduleName": "VideoSDKRTC" + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AggregationSelectorC010getDefaultC03forAA0C0_pAA14InstrumentTypeO_tF", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC010getDefaultC03forAA0C0_pAA14InstrumentTypeO_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "h540p_w960p", - "printedName": "h540p_w960p", + "kind": "Function", + "name": "defaultSelector", + "printedName": "defaultSelector()", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.InstrumentType) -> VideoSDKRTC.Aggregation", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - } - ] + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" } ] } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h540p_w960pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h540p_w960pyA2CmF", - "moduleName": "VideoSDKRTC" + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AggregationSelectorC07defaultD0AA0C0_pAA14InstrumentTypeOcyFZ", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC07defaultD0AA0C0_pAA14InstrumentTypeOcyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "h720p_w1280p", - "printedName": "h720p_w1280p", + "kind": "Function", + "name": "with", + "printedName": "with(instrumentType:aggregation:)", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.InstrumentType) -> VideoSDKRTC.Aggregation", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - } - ] + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" } ] + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO12h720p_w1280pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO12h720p_w1280pyA2CmF", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Var", - "name": "h1080p_w1920p", - "printedName": "h1080p_w1920p", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - } - ] - } - ] + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AggregationSelectorC4with14instrumentType11aggregationAA0C0_pAA010InstrumentG0OcAI_AaG_ptF", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC4with14instrumentType11aggregationAA0C0_pAA010InstrumentG0OcAI_AaG_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19AggregationSelectorC", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DefaultAggregationSelector", + "printedName": "DefaultAggregationSelector", + "usr": "s:11VideoSDKRTC26DefaultAggregationSelectorP", + "mangledName": "$s11VideoSDKRTC26DefaultAggregationSelectorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AggregationTemporalitySelectorProtocol", + "printedName": "AggregationTemporalitySelectorProtocol", + "children": [ + { + "kind": "Function", + "name": "getAggregationTemporality", + "printedName": "getAggregationTemporality(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1920pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1920pyA2CmF", - "moduleName": "VideoSDKRTC" + "declKind": "Func", + "usr": "s:11VideoSDKRTC38AggregationTemporalitySelectorProtocolP03getcD03forAA0cD0OAA14InstrumentTypeO_tF", + "mangledName": "$s11VideoSDKRTC38AggregationTemporalitySelectorProtocolP03getcD03forAA0cD0OAA14InstrumentTypeO_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AggregationTemporalitySelectorProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC38AggregationTemporalitySelectorProtocolP", + "mangledName": "$s11VideoSDKRTC38AggregationTemporalitySelectorProtocolP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "AggregationTemporalitySelector", + "printedName": "AggregationTemporalitySelector", + "children": [ + { + "kind": "Function", + "name": "getAggregationTemporality", + "printedName": "getAggregationTemporality(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC03getcD03forAA0cD0OAA14InstrumentTypeO_tF", + "mangledName": "$s11VideoSDKRTC30AggregationTemporalitySelectorC03getcD03forAA0cD0OAA14InstrumentTypeO_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "h1440p_w2560p", - "printedName": "h1440p_w2560p", + "name": "aggregationTemporalitySelector", + "printedName": "aggregationTemporalitySelector", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvp", + "mangledName": "$s11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" } ] } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvg", + "mangledName": "$s11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvs", + "mangledName": "$s11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvM", + "mangledName": "$s11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w2560pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w2560pyA2CmF", - "moduleName": "VideoSDKRTC" - }, + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC", + "mangledName": "$s11VideoSDKRTC30AggregationTemporalitySelectorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AggregationTemporalitySelectorProtocol", + "printedName": "AggregationTemporalitySelectorProtocol", + "usr": "s:11VideoSDKRTC38AggregationTemporalitySelectorProtocolP", + "mangledName": "$s11VideoSDKRTC38AggregationTemporalitySelectorProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AggregationTemporality", + "printedName": "AggregationTemporality", + "children": [ { "kind": "Var", - "name": "h2160p_w3840p", - "printedName": "h2160p_w3840p", + "name": "delta", + "printedName": "delta", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationTemporality.Type) -> VideoSDKRTC.AggregationTemporality", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationTemporality.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" } ] } @@ -610,36 +776,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h2160p_w3840pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h2160p_w3840pyA2CmF", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO5deltayA2CmF", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO5deltayA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h120p_w160p", - "printedName": "h120p_w160p", + "name": "cumulative", + "printedName": "cumulative", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationTemporality.Type) -> VideoSDKRTC.AggregationTemporality", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationTemporality.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" } ] } @@ -647,36 +813,216 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h120p_w160pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h120p_w160pyA2CmF", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO10cumulativeyA2CmF", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO10cumulativeyA2CmF", "moduleName": "VideoSDKRTC" }, + { + "kind": "Function", + "name": "alwaysCumulative", + "printedName": "alwaysCumulative()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporalitySelector", + "printedName": "VideoSDKRTC.AggregationTemporalitySelector", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO16alwaysCumulativeAA0cD8SelectorCyFZ", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO16alwaysCumulativeAA0cD8SelectorCyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deltaPreferred", + "printedName": "deltaPreferred()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporalitySelector", + "printedName": "VideoSDKRTC.AggregationTemporalitySelector", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO14deltaPreferredAA0cD8SelectorCyFZ", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO14deltaPreferredAA0cD8SelectorCyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Var", - "name": "h180p_w240p", - "printedName": "h180p_w240p", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AggregationType", + "printedName": "AggregationType", + "children": [ + { + "kind": "Var", + "name": "intGauge", + "printedName": "intGauge", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -684,36 +1030,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h180p_w240pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h180p_w240pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO8intGaugeyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO8intGaugeyA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h240p_w320p", - "printedName": "h240p_w320p", + "name": "doubleGauge", + "printedName": "doubleGauge", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -721,36 +1067,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h240p_w320pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h240p_w320pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO11doubleGaugeyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO11doubleGaugeyA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h360p_w480p", - "printedName": "h360p_w480p", + "name": "doubleSum", + "printedName": "doubleSum", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -758,36 +1104,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h360p_w480pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h360p_w480pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO9doubleSumyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO9doubleSumyA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h480p_w640p", - "printedName": "h480p_w640p", + "name": "intSum", + "printedName": "intSum", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -795,36 +1141,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h480p_w640pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h480p_w640pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO6intSumyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO6intSumyA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h540p_w720p", - "printedName": "h540p_w720p", + "name": "doubleSummary", + "printedName": "doubleSummary", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -832,36 +1178,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h540p_w720pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h540p_w720pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO13doubleSummaryyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO13doubleSummaryyA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h720p_w960p", - "printedName": "h720p_w960p", + "name": "intSummary", + "printedName": "intSummary", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -869,36 +1215,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h720p_w960pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h720p_w960pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO10intSummaryyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO10intSummaryyA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h1080p_w1440p", - "printedName": "h1080p_w1440p", + "name": "doubleHistogram", + "printedName": "doubleHistogram", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -906,36 +1252,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1440pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1440pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO15doubleHistogramyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO15doubleHistogramyA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h1440p_w1920p", - "printedName": "h1440p_w1920p", + "name": "intHistogram", + "printedName": "intHistogram", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -943,57 +1289,58 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w1920pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w1920pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO12intHistogramyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO12intHistogramyA2CmF", "moduleName": "VideoSDKRTC" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "Optional", + "printedName": "VideoSDKRTC.AggregationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO2eeoiySbAC_ACtFZ", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO2eeoiySbAC_ACtFZ", + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC15AggregationTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO8rawValueACSgSS_tcfc", "moduleName": "VideoSDKRTC", - "static": true, "implicit": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivp", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivp", + "usr": "s:11VideoSDKRTC15AggregationTypeO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO8rawValueSSvp", "moduleName": "VideoSDKRTC", "implicit": true, "accessors": [ @@ -1004,53 +1351,29 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivg", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivg", + "usr": "s:11VideoSDKRTC15AggregationTypeO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO8rawValueSSvg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" } ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO4hash4intoys6HasherVz_tF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO4hash4intoys6HasherVz_tF", - "moduleName": "VideoSDKRTC", - "implicit": true, - "funcSelfKind": "NonMutating" } ], "declKind": "Enum", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO", + "usr": "s:11VideoSDKRTC15AggregationTypeO", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO", "moduleName": "VideoSDKRTC", "declAttributes": [ "AccessControl" ], + "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", @@ -1065,6 +1388,42 @@ "printedName": "Hashable", "usr": "s:SH", "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, @@ -1078,21 +1437,113 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, { "kind": "TypeDecl", - "name": "CustomRTCMediaStream", - "printedName": "CustomRTCMediaStream", + "name": "Aggregator", + "printedName": "Aggregator", + "children": [ + { + "kind": "Function", + "name": "update", + "printedName": "update(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10AggregatorC6update5valueyx_tF", + "mangledName": "$s11VideoSDKRTC10AggregatorC6update5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkpoint", + "printedName": "checkpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10AggregatorC10checkpointyyF", + "mangledName": "$s11VideoSDKRTC10AggregatorC10checkpointyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10AggregatorC12toMetricDataAA0eF0_pyF", + "mangledName": "$s11VideoSDKRTC10AggregatorC12toMetricDataAA0eF0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAggregationType", + "printedName": "getAggregationType()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10AggregatorC18getAggregationTypeAA0eF0OyF", + "mangledName": "$s11VideoSDKRTC10AggregatorC18getAggregationTypeAA0eF0OyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], "declKind": "Class", - "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC", - "mangledName": "$s11VideoSDKRTC20CustomRTCMediaStreamC", + "usr": "s:11VideoSDKRTC10AggregatorC", + "mangledName": "$s11VideoSDKRTC10AggregatorC", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], @@ -1109,13 +1560,81 @@ ] }, { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + "kind": "TypeDecl", + "name": "Aggregation", + "printedName": "Aggregation", + "children": [ + { + "kind": "Function", + "name": "createAggregator", + "printedName": "createAggregator(descriptor:exemplarFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableAggregator", + "printedName": "VideoSDKRTC.StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11AggregationP16createAggregator10descriptor14exemplarFilterAA06StableE0_pAA20InstrumentDescriptorV_AA08ExemplarH0_ptF", + "mangledName": "$s11VideoSDKRTC11AggregationP16createAggregator10descriptor14exemplarFilterAA06StableE0_pAA20InstrumentDescriptorV_AA08ExemplarH0_ptF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Aggregation>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isCompatible", + "printedName": "isCompatible(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11AggregationP12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "mangledName": "$s11VideoSDKRTC11AggregationP12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Aggregation>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC11AggregationP", + "mangledName": "$s11VideoSDKRTC11AggregationP", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ] }, { @@ -1130,163 +1649,190 @@ }, { "kind": "TypeDecl", - "name": "LivestreamOutput", - "printedName": "LivestreamOutput", + "name": "AggregatorHandle", + "printedName": "AggregatorHandle", "children": [ { - "kind": "Var", - "name": "url", - "printedName": "url", + "kind": "Function", + "name": "aggregateThenMaybeReset", + "printedName": "aggregateThenMaybeReset(startEpochNano:endEpochNano:attributes:reset:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC16LivestreamOutputV3urlSSvp", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV3urlSSvp", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC16LivestreamOutputV3urlSSvg", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV3urlSSvg", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "streamKey", - "printedName": "streamKey", - "children": [ + "usr": "s:SD" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC16LivestreamOutputV9streamKeySSvp", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV9streamKeySSvp", + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AggregatorHandleC23aggregateThenMaybeReset14startEpochNano03endjK010attributes5resetAA9PointDataCs6UInt64V_ALSDySSAA14AttributeValueOGSbtF", + "mangledName": "$s11VideoSDKRTC16AggregatorHandleC23aggregateThenMaybeReset14startEpochNano03endjK010attributes5resetAA9PointDataCs6UInt64V_ALSDySSAA14AttributeValueOGSbtF", "moduleName": "VideoSDKRTC", "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordLong", + "printedName": "recordLong(value:attributes:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC16LivestreamOutputV9streamKeySSvg", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV9streamKeySSvg", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "get" + "usr": "s:SD" } - ] + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AggregatorHandleC10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC16AggregatorHandleC10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(url:streamKey:)", + "kind": "Function", + "name": "recordLong", + "printedName": "recordLong(value:)", "children": [ { "kind": "TypeNominal", - "name": "LivestreamOutput", - "printedName": "VideoSDKRTC.LivestreamOutput", - "usr": "s:11VideoSDKRTC16LivestreamOutputV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Constructor", - "usr": "s:11VideoSDKRTC16LivestreamOutputV3url9streamKeyACSS_SStcfc", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV3url9streamKeyACSS_SStcfc", + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AggregatorHandleC10recordLong5valueySi_tF", + "mangledName": "$s11VideoSDKRTC16AggregatorHandleC10recordLong5valueySi_tF", "moduleName": "VideoSDKRTC", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "init_kind": "Designated" + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", + "kind": "Function", + "name": "recordDouble", + "printedName": "recordDouble(value:attributes:)", "children": [ { "kind": "TypeNominal", - "name": "LivestreamOutput", - "printedName": "VideoSDKRTC.LivestreamOutput", - "usr": "s:11VideoSDKRTC16LivestreamOutputV" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Decoder", - "printedName": "Swift.Decoder", - "usr": "s:s7DecoderP" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" } ], - "declKind": "Constructor", - "usr": "s:11VideoSDKRTC16LivestreamOutputV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV4fromACs7Decoder_p_tKcfc", + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AggregatorHandleC12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC16AggregatorHandleC12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", "moduleName": "VideoSDKRTC", - "implicit": true, - "throwing": true, - "init_kind": "Designated" + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", + "name": "recordDouble", + "printedName": "recordDouble(value:)", "children": [ { "kind": "TypeNominal", @@ -1295,68 +1841,29 @@ }, { "kind": "TypeNominal", - "name": "Encoder", - "printedName": "Swift.Encoder", - "usr": "s:s7EncoderP" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC16LivestreamOutputV6encode2toys7Encoder_p_tKF", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV6encode2toys7Encoder_p_tKF", + "usr": "s:11VideoSDKRTC16AggregatorHandleC12recordDouble5valueySd_tF", + "mangledName": "$s11VideoSDKRTC16AggregatorHandleC12recordDouble5valueySd_tF", "moduleName": "VideoSDKRTC", - "implicit": true, - "throwing": true, + "declAttributes": [ + "AccessControl" + ], "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:11VideoSDKRTC16LivestreamOutputV", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV", + "declKind": "Class", + "usr": "s:11VideoSDKRTC16AggregatorHandleC", + "mangledName": "$s11VideoSDKRTC16AggregatorHandleC", "moduleName": "VideoSDKRTC", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "conformances": [ - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "AVFoundation", - "printedName": "AVFoundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" + "hasMissingDesignatedInitializers": true }, { "kind": "Import", @@ -1368,29 +1875,15 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Mediasoup", - "printedName": "Mediasoup", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, { "kind": "TypeDecl", - "name": "MediaStream", - "printedName": "MediaStream", + "name": "Google_Protobuf_Any", + "printedName": "Google_Protobuf_Any", "children": [ { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "typeURL", + "printedName": "typeURL", "children": [ { "kind": "TypeNominal", @@ -1400,16 +1893,13 @@ } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11MediaStreamC2idSSvp", - "mangledName": "$s11VideoSDKRTC11MediaStreamC2idSSvp", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvp", "moduleName": "VideoSDKRTC", "declAttributes": [ - "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -1424,82 +1914,74 @@ } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11MediaStreamC2idSSvg", - "mangledName": "$s11VideoSDKRTC11MediaStreamC2idSSvg", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvg", "moduleName": "VideoSDKRTC", - "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "kind", - "printedName": "kind", - "children": [ - { - "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" - } - ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvp", - "mangledName": "$s11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvp", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvg", - "mangledName": "$s11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvg", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvM", "moduleName": "VideoSDKRTC", "implicit": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "track", - "printedName": "track", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "RTCMediaStreamTrack", - "printedName": "WebRTC.RTCMediaStreamTrack", - "usr": "c:objc(cs)RTCMediaStreamTrack" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvp", - "mangledName": "$s11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvp", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvp", "moduleName": "VideoSDKRTC", "declAttributes": [ - "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -1508,50 +1990,80 @@ "children": [ { "kind": "TypeNominal", - "name": "RTCMediaStreamTrack", - "printedName": "WebRTC.RTCMediaStreamTrack", - "usr": "c:objc(cs)RTCMediaStreamTrack" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvg", - "mangledName": "$s11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvg", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvg", "moduleName": "VideoSDKRTC", - "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "producer", - "printedName": "producer", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Mediasoup.Producer?", - "children": [ - { - "kind": "TypeNominal", - "name": "Producer", - "printedName": "Mediasoup.Producer", - "usr": "s:9Mediasoup8ProducerC" - } - ], - "usr": "s:Sq" + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvp", - "mangledName": "$s11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvp", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvp", "moduleName": "VideoSDKRTC", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -1562,59 +2074,156 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Mediasoup.Producer?", - "children": [ - { - "kind": "TypeNominal", - "name": "Producer", - "printedName": "Mediasoup.Producer", - "usr": "s:9Mediasoup8ProducerC" - } - ], - "usr": "s:Sq" + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvg", - "mangledName": "$s11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvg", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyVACycfc", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "consumer", - "printedName": "consumer", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Mediasoup.Consumer?", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Consumer", - "printedName": "Mediasoup.Consumer", - "usr": "s:9Mediasoup8ConsumerC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvp", - "mangledName": "$s11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvp", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV17_protobuf_nameMapAA05_NameH0VvpZ", "moduleName": "VideoSDKRTC", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -1624,68 +2233,81 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Mediasoup.Consumer?", - "children": [ - { - "kind": "TypeNominal", - "name": "Consumer", - "printedName": "Mediasoup.Consumer", - "usr": "s:9Mediasoup8ConsumerC" - } - ], - "usr": "s:Sq" + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvg", - "mangledName": "$s11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvg", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV17_protobuf_nameMapAA05_NameH0VvgZ", "moduleName": "VideoSDKRTC", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Function", - "name": "pause", - "printedName": "pause()", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11MediaStreamC5pauseyyF", - "mangledName": "$s11VideoSDKRTC11MediaStreamC5pauseyyF", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "Mutating", + "AccessControl" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "throwing": true, + "funcSelfKind": "Mutating" }, { "kind": "Function", - "name": "resume", - "printedName": "resume()", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11MediaStreamC6resumeyyF", - "mangledName": "$s11VideoSDKRTC11MediaStreamC6resumeyyF", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV8traverse7visitoryxz_tKAA7VisitorRzlF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ], "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -1701,151 +2323,169 @@ }, { "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" }, { "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11MediaStreamC2eeoiySbAC_ACtFZ", - "mangledName": "$s11VideoSDKRTC11MediaStreamC2eeoiySbAC_ACtFZ", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV2eeoiySbAC_ACtFZ", "moduleName": "VideoSDKRTC", "static": true, "declAttributes": [ - "Final", "AccessControl" ], "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:11VideoSDKRTC11MediaStreamC", - "mangledName": "$s11VideoSDKRTC11MediaStreamC", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "MediaType", - "printedName": "MediaType", - "children": [ + }, { "kind": "Var", - "name": "share", - "printedName": "share", + "name": "hashValue", + "printedName": "hashValue", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.MediaType.Type) -> VideoSDKRTC.MediaType", + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.MediaType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" - } - ] + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(message:partial:typePrefix:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" + }, + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC9MediaTypeO5shareyA2CmF", - "mangledName": "$s11VideoSDKRTC9MediaTypeO5shareyA2CmF", - "moduleName": "VideoSDKRTC" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV7message7partial10typePrefixAcA7Message_p_SbSStKcfc", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV7message7partial10typePrefixAcA7Message_p_SbSStKcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" }, { - "kind": "Var", - "name": "state", - "printedName": "state", + "kind": "Constructor", + "name": "init", + "printedName": "init(textFormatString:options:extensions:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.MediaType.Type) -> (Mediasoup.MediaKind) -> VideoSDKRTC.MediaType", + "kind": "TypeNominal", + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TextFormatDecodingOptions", + "printedName": "VideoSDKRTC.TextFormatDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Mediasoup.MediaKind) -> VideoSDKRTC.MediaType", - "children": [ - { - "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(value: Mediasoup.MediaKind)", - "children": [ - { - "kind": "TypeNominal", - "name": "MediaKind", - "printedName": "Mediasoup.MediaKind", - "usr": "s:9Mediasoup9MediaKindO" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.MediaType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" - } - ] + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" } - ] + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC9MediaTypeO5stateyAC9Mediasoup0C4KindO_tcACmF", - "mangledName": "$s11VideoSDKRTC9MediaTypeO5stateyAC9Mediasoup0C4KindO_tcACmF", - "moduleName": "VideoSDKRTC" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV16textFormatString7options10extensionsACSS_AA04TextG15DecodingOptionsVAA12ExtensionMap_pSgtKcfc", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV16textFormatString7options10extensionsACSS_AA04TextG15DecodingOptionsVAA12ExtensionMap_pSgtKcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" }, { "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "name": "isA", + "printedName": "isA(_:)", "children": [ { "kind": "TypeNominal", @@ -1855,34 +2495,238 @@ }, { "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV3isAySbxmAA7MessageRzlF", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV3isAySbxmAA7MessageRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC9MediaTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s11VideoSDKRTC9MediaTypeO2eeoiySbAC_ACtFZ", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV4hash4intoys6HasherVz_tF", "moduleName": "VideoSDKRTC", - "static": true, - "implicit": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:11VideoSDKRTC9MediaTypeO", - "mangledName": "$s11VideoSDKRTC9MediaTypeO", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "AccessControl" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(messageType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV8register11messageTypeSbAA7Message_pXp_tFZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV8register11messageTypeSbAA7Message_pXp_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "messageType", + "printedName": "messageType(forTypeURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Message.Type?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV11messageType03forG3URLAA7Message_pXpSgSS_tFZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV11messageType03forG3URLAA7Message_pXpSgSS_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "messageType", + "printedName": "messageType(forMessageName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Message.Type?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV11messageType14forMessageNameAA0I0_pXpSgSS_tFZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV11messageType14forMessageNameAA0I0_pXpSgSS_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, { "kind": "Conformance", "name": "Equatable", @@ -1902,93 +2746,180 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "AVFoundation", - "printedName": "AVFoundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, { "kind": "TypeDecl", - "name": "Meeting", - "printedName": "Meeting", + "name": "AnyUnpackError", + "printedName": "AnyUnpackError", "children": [ { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "typeMismatch", + "printedName": "typeMismatch", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AnyUnpackError.Type) -> VideoSDKRTC.AnyUnpackError", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.AnyUnpackError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC7MeetingC2idSSvp", - "mangledName": "$s11VideoSDKRTC7MeetingC2idSSvp", + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO12typeMismatchyA2CmF", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO12typeMismatchyA2CmF", "moduleName": "VideoSDKRTC", "declAttributes": [ - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "malformedWellKnownTypeJSON", + "printedName": "malformedWellKnownTypeJSON", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AnyUnpackError.Type) -> VideoSDKRTC.AnyUnpackError", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.AnyUnpackError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC7MeetingC2idSSvg", - "mangledName": "$s11VideoSDKRTC7MeetingC2idSSvg", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO26malformedWellKnownTypeJSONyA2CmF", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO26malformedWellKnownTypeJSONyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "localParticipant", - "printedName": "localParticipant", + "name": "malformedAnyField", + "printedName": "malformedAnyField", "children": [ { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AnyUnpackError.Type) -> VideoSDKRTC.AnyUnpackError", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.AnyUnpackError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvp", - "mangledName": "$s11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvp", + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO09malformedC5FieldyA2CmF", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO09malformedC5FieldyA2CmF", "moduleName": "VideoSDKRTC", "declAttributes": [ - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + }, + { + "kind": "TypeNominal", + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + } ], - "hasStorage": true, + "declKind": "Func", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -1997,54 +2928,119 @@ "children": [ { "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvg", - "mangledName": "$s11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvg", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO9hashValueSivg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" } ] }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Api", + "printedName": "Google_Protobuf_Api", + "children": [ { "kind": "Var", - "name": "participants", - "printedName": "participants", + "name": "name", + "printedName": "name", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : VideoSDKRTC.Participant]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" - } - ], - "usr": "s:SD" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvp", - "mangledName": "$s11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvp", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvp", "moduleName": "VideoSDKRTC", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], @@ -2057,107 +3053,91 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : VideoSDKRTC.Participant]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" - } - ], - "usr": "s:SD" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvg", - "mangledName": "$s11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvg", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "pubsub", - "printedName": "pubsub", - "children": [ + }, { - "kind": "TypeNominal", - "name": "PubSub", - "printedName": "VideoSDKRTC.PubSub", - "usr": "s:11VideoSDKRTC6PubSubC" - } - ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvp", - "mangledName": "$s11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvp", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "Lazy", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "PubSub", - "printedName": "VideoSDKRTC.PubSub", - "usr": "s:11VideoSDKRTC6PubSubC" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvg", - "mangledName": "$s11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvg", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvM", "moduleName": "VideoSDKRTC", "implicit": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "customVideoMediaStream", - "printedName": "customVideoMediaStream", + "name": "methods", + "printedName": "methods", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Method]", "children": [ { "kind": "TypeNominal", - "name": "CustomRTCMediaStream", - "printedName": "VideoSDKRTC.CustomRTCMediaStream", - "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + "name": "Google_Protobuf_Method", + "printedName": "VideoSDKRTC.Google_Protobuf_Method", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvp", - "mangledName": "$s11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvp", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvp", "moduleName": "VideoSDKRTC", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -2168,497 +3148,828 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Method]", "children": [ { "kind": "TypeNominal", - "name": "CustomRTCMediaStream", - "printedName": "VideoSDKRTC.CustomRTCMediaStream", - "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + "name": "Google_Protobuf_Method", + "printedName": "VideoSDKRTC.Google_Protobuf_Method", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvg", - "mangledName": "$s11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvg", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "join", - "printedName": "join(cameraPosition:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Position", - "printedName": "AVFoundation.AVCaptureDevice.Position", - "usr": "c:@E@AVCaptureDevicePosition" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Method]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Method", + "printedName": "VideoSDKRTC.Google_Protobuf_Method", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC4join14cameraPositionySo015AVCaptureDeviceF0V_tF", - "mangledName": "$s11VideoSDKRTC7MeetingC4join14cameraPositionySo015AVCaptureDeviceF0V_tF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "leave", - "printedName": "leave()", + "kind": "Var", + "name": "options", + "printedName": "options", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC5leaveyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC5leaveyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "end", - "printedName": "end()", + "kind": "Var", + "name": "version", + "printedName": "version", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC3endyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC3endyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "enableWebcam", - "printedName": "enableWebcam(customVideoStream:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "CustomRTCMediaStream", - "printedName": "VideoSDKRTC.CustomRTCMediaStream", - "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC12enableWebcam06customA6StreamyAA014CustomRTCMediaG0CSg_tF", - "mangledName": "$s11VideoSDKRTC7MeetingC12enableWebcam06customA6StreamyAA014CustomRTCMediaG0CSg_tF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "disableWebcam", - "printedName": "disableWebcam()", + "kind": "Var", + "name": "sourceContext", + "printedName": "sourceContext", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC13disableWebcamyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC13disableWebcamyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0Vvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0Vvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "switchWebcam", - "printedName": "switchWebcam()", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0Vvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0Vvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0VvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC12switchWebcamyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC12switchWebcamyyF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "muteMic", - "printedName": "muteMic()", + "kind": "Var", + "name": "hasSourceContext", + "printedName": "hasSourceContext", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC7muteMicyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC7muteMicyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV16hasSourceContextSbvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV16hasSourceContextSbvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "unmuteMic", - "printedName": "unmuteMic()", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV16hasSourceContextSbvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV16hasSourceContextSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC9unmuteMicyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC9unmuteMicyyF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Function", - "name": "startRecording", - "printedName": "startRecording(webhookUrl:)", + "name": "clearSourceContext", + "printedName": "clearSourceContext()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC14startRecording10webhookUrlySS_tF", - "mangledName": "$s11VideoSDKRTC7MeetingC14startRecording10webhookUrlySS_tF", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV18clearSourceContextyyF", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV18clearSourceContextyyF", "moduleName": "VideoSDKRTC", "declAttributes": [ + "Mutating", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "funcSelfKind": "Mutating" }, { - "kind": "Function", - "name": "stopRecording", - "printedName": "stopRecording()", + "kind": "Var", + "name": "mixins", + "printedName": "mixins", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Mixin]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Mixin", + "printedName": "VideoSDKRTC.Google_Protobuf_Mixin", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV" + } + ], + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC13stopRecordingyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC13stopRecordingyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "startLivestream", - "printedName": "startLivestream(outputs:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Mixin]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Mixin", + "printedName": "VideoSDKRTC.Google_Protobuf_Mixin", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[VideoSDKRTC.LivestreamOutput]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "LivestreamOutput", - "printedName": "VideoSDKRTC.LivestreamOutput", - "usr": "s:11VideoSDKRTC16LivestreamOutputV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Mixin]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Mixin", + "printedName": "VideoSDKRTC.Google_Protobuf_Mixin", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV" + } + ], + "usr": "s:Sa" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC15startLivestream7outputsySayAA0E6OutputVG_tF", - "mangledName": "$s11VideoSDKRTC7MeetingC15startLivestream7outputsySayAA0E6OutputVG_tF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "stopLivestream", - "printedName": "stopLivestream()", + "kind": "Var", + "name": "syntax", + "printedName": "syntax", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC14stopLivestreamyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC14stopLivestreamyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addEventListener", - "printedName": "addEventListener(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "MeetingEventListener", - "printedName": "VideoSDKRTC.MeetingEventListener", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC16addEventListeneryyAA0ceF0_pF", - "mangledName": "$s11VideoSDKRTC7MeetingC16addEventListeneryyAA0ceF0_pF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "removeEventListener", - "printedName": "removeEventListener(_:)", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MeetingEventListener", - "printedName": "VideoSDKRTC.MeetingEventListener", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP" + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC19removeEventListeneryyAA0ceF0_pF", - "mangledName": "$s11VideoSDKRTC7MeetingC19removeEventListeneryyAA0ceF0_pF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvp", "moduleName": "VideoSDKRTC", "declAttributes": [ - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Meeting", - "printedName": "VideoSDKRTC.Meeting", - "usr": "s:11VideoSDKRTC7MeetingC" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { "kind": "TypeNominal", - "name": "Meeting", - "printedName": "VideoSDKRTC.Meeting", - "usr": "s:11VideoSDKRTC7MeetingC" + "name": "Google_Protobuf_Api", + "printedName": "VideoSDKRTC.Google_Protobuf_Api", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC2eeoiySbAC_ACtFZ", - "mangledName": "$s11VideoSDKRTC7MeetingC2eeoiySbAC_ACtFZ", + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiVACycfc", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiVACycfc", "moduleName": "VideoSDKRTC", - "static": true, "declAttributes": [ - "Final", "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:11VideoSDKRTC7MeetingC", - "mangledName": "$s11VideoSDKRTC7MeetingC", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "MeetingEventListener", - "printedName": "MeetingEventListener", - "children": [ + "init_kind": "Designated" + }, { - "kind": "Function", - "name": "onMeetingJoined", - "printedName": "onMeetingJoined()", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP02onC6JoinedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP02onC6JoinedyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV16protoMessageNameSSvpZ", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, + "static": true, "declAttributes": [ - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "onMeetingLeft", - "printedName": "onMeetingLeft()", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP02onC4LeftyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP02onC4LeftyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV17_protobuf_nameMapAA05_NameH0VvpZ", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, + "static": true, "declAttributes": [ - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { "kind": "Function", - "name": "onParticipantJoined", - "printedName": "onParticipantJoined(_:)", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", @@ -2667,28 +3978,29 @@ }, { "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onParticipantJoinedyyAA0G0CF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onParticipantJoinedyyAA0G0CF", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "Mutating", + "AccessControl" ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { "kind": "Function", - "name": "onParticipantLeft", - "printedName": "onParticipantLeft(_:)", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", @@ -2697,135 +4009,219 @@ }, { "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP17onParticipantLeftyyAA0G0CF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP17onParticipantLeftyyAA0G0CF", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV8traverse7visitoryxz_tKAA7VisitorRzlF", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ], - "reqNewWitnessTableEntry": true, + "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "onRecordingStarted", - "printedName": "onRecordingStarted()", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP18onRecordingStartedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP18onRecordingStartedyyF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onRecordingStoppped", - "printedName": "onRecordingStoppped()", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Google_Protobuf_Api", + "printedName": "VideoSDKRTC.Google_Protobuf_Api", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Api", + "printedName": "VideoSDKRTC.Google_Protobuf_Api", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onRecordingStopppedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onRecordingStopppedyyF", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV2eeoiySbAC_ACtFZ", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, + "static": true, "declAttributes": [ - "RawDocComment" + "AccessControl" ], - "reqNewWitnessTableEntry": true, + "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "onLivestreamStarted", - "printedName": "onLivestreamStarted()", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onLivestreamStartedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onLivestreamStartedyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV9hashValueSivp", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { - "kind": "Function", - "name": "onLivestreamStopped", - "printedName": "onLivestreamStopped()", + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Method", + "printedName": "Google_Protobuf_Method", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onLivestreamStoppedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onLivestreamStoppedyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvp", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onSpeakerChanged", - "printedName": "onSpeakerChanged(participantId:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "String", @@ -2833,36 +4229,61 @@ "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP16onSpeakerChanged13participantIdySSSg_tF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP16onSpeakerChanged13participantIdySSSg_tF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "onMicRequested", - "printedName": "onMicRequested(participantId:accept:reject:)", + "kind": "Var", + "name": "requestTypeURL", + "printedName": "requestTypeURL", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -2871,12 +4292,17 @@ "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -2885,70 +4311,85 @@ }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Void", "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "onWebcamRequested", - "printedName": "onWebcamRequested(participantId:accept:reject:)", + "kind": "Var", + "name": "requestStreaming", + "printedName": "requestStreaming", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -2957,228 +4398,66 @@ }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Void", "printedName": "()" } - ] - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onMeetingJoined", - "printedName": "onMeetingJoined()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE02onC6JoinedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE02onC6JoinedyyF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onMeetingLeft", - "printedName": "onMeetingLeft()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE02onC4LeftyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE02onC4LeftyyF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onParticipantJoined", - "printedName": "onParticipantJoined(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onParticipantJoinedyyAA0G0CF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onParticipantJoinedyyAA0G0CF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onParticipantLeft", - "printedName": "onParticipantLeft(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE17onParticipantLeftyyAA0G0CF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE17onParticipantLeftyyAA0G0CF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onRecordingStarted", - "printedName": "onRecordingStarted()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE18onRecordingStartedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE18onRecordingStartedyyF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onRecordingStoppped", - "printedName": "onRecordingStoppped()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onRecordingStopppedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onRecordingStopppedyyF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "onLivestreamStarted", - "printedName": "onLivestreamStarted()", + "kind": "Var", + "name": "responseTypeURL", + "printedName": "responseTypeURL", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStartedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStartedyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvp", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onLivestreamStopped", - "printedName": "onLivestreamStopped()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStoppedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStoppedyyF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onSpeakerChanged", - "printedName": "onSpeakerChanged(participantId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -3187,33 +4466,23 @@ "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE16onSpeakerChanged13participantIdySSSg_tF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE16onSpeakerChanged13participantIdySSSg_tF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onMicRequested", - "printedName": "onMicRequested(participantId:accept:reject:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "String", @@ -3221,80 +4490,183 @@ "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "responseStreaming", + "printedName": "responseStreaming", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" } - ] - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "onWebcamRequested", - "printedName": "onWebcamRequested(participantId:accept:reject:)", + "kind": "Var", + "name": "options", + "printedName": "options", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -3303,120 +4675,65 @@ }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Void", "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Participant", - "printedName": "Participant", - "children": [ + ] + }, { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "syntax", + "printedName": "syntax", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11ParticipantC2idSSvp", - "mangledName": "$s11VideoSDKRTC11ParticipantC2idSSvp", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "HasInitialValue", "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], @@ -3429,87 +4746,82 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11ParticipantC2idSSvg", - "mangledName": "$s11VideoSDKRTC11ParticipantC2idSSvg", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "displayName", - "printedName": "displayName", - "children": [ + }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC11ParticipantC11displayNameSSvp", - "mangledName": "$s11VideoSDKRTC11ParticipantC11displayNameSSvp", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11ParticipantC11displayNameSSvg", - "mangledName": "$s11VideoSDKRTC11ParticipantC11displayNameSSvg", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvM", "moduleName": "VideoSDKRTC", "implicit": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "videoQuality", - "printedName": "videoQuality", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovp", - "mangledName": "$s11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovp", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvp", "moduleName": "VideoSDKRTC", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -3520,42 +4832,107 @@ "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovg", - "mangledName": "$s11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovg", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Method", + "printedName": "VideoSDKRTC.Google_Protobuf_Method", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodVACycfc", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "isLocal", - "printedName": "isLocal", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11ParticipantC7isLocalSbvp", - "mangledName": "$s11VideoSDKRTC11ParticipantC7isLocalSbvp", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV16protoMessageNameSSvpZ", "moduleName": "VideoSDKRTC", + "static": true, "declAttributes": [ + "HasInitialValue", "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -3565,57 +4942,46 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11ParticipantC7isLocalSbvg", - "mangledName": "$s11VideoSDKRTC11ParticipantC7isLocalSbvg", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV16protoMessageNameSSvgZ", "moduleName": "VideoSDKRTC", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "streams", - "printedName": "streams", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : VideoSDKRTC.MediaStream]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" - } - ], - "usr": "s:SD" + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvp", - "mangledName": "$s11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvp", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV17_protobuf_nameMapAA05_NameH0VvpZ", "moduleName": "VideoSDKRTC", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -3625,185 +4991,230 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : VideoSDKRTC.MediaStream]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" - } - ], - "usr": "s:SD" + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvg", - "mangledName": "$s11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvg", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV17_protobuf_nameMapAA05_NameH0VvgZ", "moduleName": "VideoSDKRTC", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Function", - "name": "enableMic", - "printedName": "enableMic()", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC9enableMicyyF", - "mangledName": "$s11VideoSDKRTC11ParticipantC9enableMicyyF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "disableMic", - "printedName": "disableMic()", - "children": [ + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC10disableMicyyF", - "mangledName": "$s11VideoSDKRTC11ParticipantC10disableMicyyF", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "Mutating", + "AccessControl" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "throwing": true, + "funcSelfKind": "Mutating" }, { "kind": "Function", - "name": "enableWebcam", - "printedName": "enableWebcam()", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC12enableWebcamyyF", - "mangledName": "$s11VideoSDKRTC11ParticipantC12enableWebcamyyF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "disableWebcam", - "printedName": "disableWebcam()", - "children": [ + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC13disableWebcamyyF", - "mangledName": "$s11VideoSDKRTC11ParticipantC13disableWebcamyyF", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV8traverse7visitoryxz_tKAA7VisitorRzlF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ], "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "remove", - "printedName": "remove()", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC6removeyyF", - "mangledName": "$s11VideoSDKRTC11ParticipantC6removeyyF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addStream", - "printedName": "addStream(_:)", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Google_Protobuf_Method", + "printedName": "VideoSDKRTC.Google_Protobuf_Method", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV" }, { "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" + "name": "Google_Protobuf_Method", + "printedName": "VideoSDKRTC.Google_Protobuf_Method", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC9addStreamyyAA05MediaE0CF", - "mangledName": "$s11VideoSDKRTC11ParticipantC9addStreamyyAA05MediaE0CF", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV2eeoiySbAC_ACtFZ", "moduleName": "VideoSDKRTC", + "static": true, "declAttributes": [ - "RawDocComment" + "AccessControl" ], "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "removeStream", - "printedName": "removeStream(_:)", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.MediaStream?", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Mixin", + "printedName": "Google_Protobuf_Mixin", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -3811,69 +5222,377 @@ "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC12removeStreamyAA05MediaE0CSgSSF", - "mangledName": "$s11VideoSDKRTC11ParticipantC12removeStreamyAA05MediaE0CSgSSF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvp", "moduleName": "VideoSDKRTC", "declAttributes": [ - "DiscardableResult", + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "removeAllStreams", - "printedName": "removeAllStreams()", + "kind": "Var", + "name": "root", + "printedName": "root", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC16removeAllStreamsyyF", - "mangledName": "$s11VideoSDKRTC11ParticipantC16removeAllStreamsyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "setQuality", - "printedName": "setQuality(_:)", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "Google_Protobuf_Mixin", + "printedName": "VideoSDKRTC.Google_Protobuf_Mixin", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC10setQualityyyAA0aE0OF", - "mangledName": "$s11VideoSDKRTC11ParticipantC10setQualityyyAA0aE0OF", + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinVACycfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinVACycfc", "moduleName": "VideoSDKRTC", "declAttributes": [ - "RawDocComment" + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { "kind": "Function", - "name": "addEventListener", - "printedName": "addEventListener(_:)", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", @@ -3882,25 +5601,29 @@ }, { "kind": "TypeNominal", - "name": "ParticipantEventListener", - "printedName": "VideoSDKRTC.ParticipantEventListener", - "usr": "s:11VideoSDKRTC24ParticipantEventListenerP" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC16addEventListeneryyAA0ceF0_pF", - "mangledName": "$s11VideoSDKRTC11ParticipantC16addEventListeneryyAA0ceF0_pF", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "Mutating", + "AccessControl" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "throwing": true, + "funcSelfKind": "Mutating" }, { "kind": "Function", - "name": "removeEventListener", - "printedName": "removeEventListener(_:)", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", @@ -3909,19 +5632,22 @@ }, { "kind": "TypeNominal", - "name": "ParticipantEventListener", - "printedName": "VideoSDKRTC.ParticipantEventListener", - "usr": "s:11VideoSDKRTC24ParticipantEventListenerP" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC19removeEventListeneryyAA0ceF0_pF", - "mangledName": "$s11VideoSDKRTC11ParticipantC19removeEventListeneryyAA0ceF0_pF", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV8traverse7visitoryxz_tKAA7VisitorRzlF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ], "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -3937,39 +5663,121 @@ }, { "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "name": "Google_Protobuf_Mixin", + "printedName": "VideoSDKRTC.Google_Protobuf_Mixin", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV" }, { "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "name": "Google_Protobuf_Mixin", + "printedName": "VideoSDKRTC.Google_Protobuf_Mixin", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC2eeoiySbAC_ACtFZ", - "mangledName": "$s11VideoSDKRTC11ParticipantC2eeoiySbAC_ACtFZ", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV2eeoiySbAC_ACtFZ", "moduleName": "VideoSDKRTC", "static": true, "declAttributes": [ - "Final", "AccessControl" ], "isFromExtension": true, "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Class", - "usr": "s:11VideoSDKRTC11ParticipantC", - "mangledName": "$s11VideoSDKRTC11ParticipantC", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV", "moduleName": "VideoSDKRTC", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasMissingDesignatedInitializers": true, "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, { "kind": "Conformance", "name": "Equatable", @@ -3991,13 +5799,13 @@ }, { "kind": "TypeDecl", - "name": "ParticipantEventListener", - "printedName": "ParticipantEventListener", + "name": "APIDoubleObserverMetricHandle", + "printedName": "APIDoubleObserverMetricHandle", "children": [ { "kind": "Function", - "name": "onStreamEnabled", - "printedName": "onStreamEnabled(_:forParticipant:)", + "name": "observe", + "printedName": "observe(value:)", "children": [ { "kind": "TypeNominal", @@ -4006,34 +5814,53 @@ }, { "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC24ParticipantEventListenerP15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", - "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerP15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", + "usr": "s:11VideoSDKRTC29APIDoubleObserverMetricHandleP7observe5valueySd_tF", + "mangledName": "$s11VideoSDKRTC29APIDoubleObserverMetricHandleP7observe5valueySd_tF", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.APIDoubleObserverMetricHandle>", + "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC29APIDoubleObserverMetricHandleP", + "mangledName": "$s11VideoSDKRTC29APIDoubleObserverMetricHandleP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "APIIntObserverMetricHandle", + "printedName": "APIIntObserverMetricHandle", + "children": [ { "kind": "Function", - "name": "onStreamDisabled", - "printedName": "onStreamDisabled(_:forParticipant:)", + "name": "observe", + "printedName": "observe(value:)", "children": [ { "kind": "TypeNominal", @@ -4042,120 +5869,31 @@ }, { "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC24ParticipantEventListenerP16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", - "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerP16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", + "usr": "s:11VideoSDKRTC26APIIntObserverMetricHandleP7observe5valueySi_tF", + "mangledName": "$s11VideoSDKRTC26APIIntObserverMetricHandleP7observe5valueySi_tF", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.APIIntObserverMetricHandle>", + "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onStreamEnabled", - "printedName": "onStreamEnabled(_:forParticipant:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC24ParticipantEventListenerPAAE15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", - "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerPAAE15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onStreamDisabled", - "printedName": "onStreamDisabled(_:forParticipant:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC24ParticipantEventListenerPAAE16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", - "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerPAAE16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" } ], "declKind": "Protocol", - "usr": "s:11VideoSDKRTC24ParticipantEventListenerP", - "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerP", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + "usr": "s:11VideoSDKRTC26APIIntObserverMetricHandleP", + "mangledName": "$s11VideoSDKRTC26APIIntObserverMetricHandleP", "moduleName": "VideoSDKRTC", "declAttributes": [ + "AccessControl", "RawDocComment" ] }, @@ -4171,99 +5909,95 @@ }, { "kind": "TypeDecl", - "name": "PubSub", - "printedName": "PubSub", + "name": "ArrayWithCapacity", + "printedName": "ArrayWithCapacity", "children": [ { - "kind": "Function", - "name": "publish", - "printedName": "publish(topic:message:options:)", + "kind": "Var", + "name": "capacity", + "printedName": "capacity", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV8capacitySivp", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV8capacitySivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "hasDefaultArg": true, - "usr": "s:SD" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV8capacitySivg", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV8capacitySivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC6PubSubC7publish5topic7message7optionsySS_SSSDySSypGtF", - "mangledName": "$s11VideoSDKRTC6PubSubC7publish5topic7message7optionsySS_SSSDySSypGtF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "subscribe", - "printedName": "subscribe(topic:forListener:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(capacity:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" }, { "kind": "TypeNominal", - "name": "PubSubMessageListener", - "printedName": "VideoSDKRTC.PubSubMessageListener", - "usr": "s:11VideoSDKRTC21PubSubMessageListenerP" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC6PubSubC9subscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", - "mangledName": "$s11VideoSDKRTC6PubSubC9subscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV8capacityACyxGSi_tcfc", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV8capacityACyxGSi_tcfc", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "unsubscribe", - "printedName": "unsubscribe(topic:forListener:)", + "name": "append", + "printedName": "append(_:)", "children": [ { "kind": "TypeNominal", @@ -4272,110 +6006,42 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "PubSubMessageListener", - "printedName": "VideoSDKRTC.PubSubMessageListener", - "usr": "s:11VideoSDKRTC21PubSubMessageListenerP" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC6PubSubC11unsubscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", - "mangledName": "$s11VideoSDKRTC6PubSubC11unsubscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV6appendyyxF", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV6appendyyxF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "Mutating", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "funcSelfKind": "Mutating" }, - { - "kind": "Function", - "name": "getMessagesForTopic", - "printedName": "getMessagesForTopic(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[VideoSDKRTC.PubSubMessage]", - "children": [ - { - "kind": "TypeNominal", - "name": "PubSubMessage", - "printedName": "VideoSDKRTC.PubSubMessage", - "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC6PubSubC19getMessagesForTopicySayAA0cD7MessageCGSSF", - "mangledName": "$s11VideoSDKRTC6PubSubC19getMessagesForTopicySayAA0cD7MessageCGSSF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:11VideoSDKRTC6PubSubC", - "mangledName": "$s11VideoSDKRTC6PubSubC", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "PubSubMessage", - "printedName": "PubSubMessage", - "children": [ { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "startIndex", + "printedName": "startIndex", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvp", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvp", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV10startIndexSivp", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV10startIndexSivp", "moduleName": "VideoSDKRTC", "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -4384,84 +6050,42 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvg", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvg", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV10startIndexSivg", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV10startIndexSivg", "moduleName": "VideoSDKRTC", - "implicit": true, + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvs", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvs", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvM", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvM", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "topic", - "printedName": "topic", + "name": "endIndex", + "printedName": "endIndex", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvp", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvp", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV8endIndexSivp", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV8endIndexSivp", "moduleName": "VideoSDKRTC", "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -4470,84 +6094,49 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvg", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvg", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV8endIndexSivg", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV8endIndexSivg", "moduleName": "VideoSDKRTC", - "implicit": true, + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvs", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvs", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvM", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvM", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "message", - "printedName": "message", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvp", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvp", + "declKind": "Subscript", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityVyxSicip", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityVyxSicip", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -4556,16 +6145,23 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvg", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvg", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityVyxSicig", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityVyxSicig", "moduleName": "VideoSDKRTC", - "implicit": true, + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isFromExtension": true, "accessorKind": "get" }, { @@ -4580,16 +6176,23 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvs", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvs", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityVyxSicis", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityVyxSicis", "moduleName": "VideoSDKRTC", - "implicit": true, + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isFromExtension": true, "accessorKind": "set" }, { @@ -4601,209 +6204,334 @@ "kind": "TypeNominal", "name": "Void", "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvM", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvM", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityVyxSiciM", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityVyxSiciM", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "implicit": true, + "isFromExtension": true, "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "senderId", - "printedName": "senderId", + "kind": "Function", + "name": "index", + "printedName": "index(after:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvp", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvp", + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV5index5afterS2i_tF", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV5index5afterS2i_tF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvg", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvg", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "get" - }, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvs", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvs", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Slice", + "printedName": "Swift.Slice>", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" + } + ], + "usr": "s:s5SliceV" } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvM", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvM", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:SM", + "mangledName": "$sSM" }, { - "kind": "Var", - "name": "senderName", - "printedName": "senderName", + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvp", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvp", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvg", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvg", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator>", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Slice", + "printedName": "Swift.Slice>", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" + } + ], + "usr": "s:s5SliceV" } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvs", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvs", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices>", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" + } + ], + "usr": "s:SI" } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvM", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvM", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:Sl", + "mangledName": "$sSl" }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator>", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AsynchronousMetricStorage", + "printedName": "AsynchronousMetricStorage", + "children": [ { "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", + "name": "registeredReader", + "printedName": "registeredReader", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "RegisteredReader", + "printedName": "VideoSDKRTC.RegisteredReader", + "usr": "s:11VideoSDKRTC16RegisteredReaderC" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvp", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvp", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC16registeredReaderAA010RegisteredG0Cvp", + "mangledName": "$s11VideoSDKRTC25AsynchronousMetricStorageC16registeredReaderAA010RegisteredG0Cvp", "moduleName": "VideoSDKRTC", "declAttributes": [ "HasStorage", - "AccessControl", - "RawDocComment" + "SetterAccess", + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -4814,641 +6542,740 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "RegisteredReader", + "printedName": "VideoSDKRTC.RegisteredReader", + "usr": "s:11VideoSDKRTC16RegisteredReaderC" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvg", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvg", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC16registeredReaderAA010RegisteredG0Cvg", + "mangledName": "$s11VideoSDKRTC25AsynchronousMetricStorageC16registeredReaderAA010RegisteredG0Cvg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "metricDescriptor", + "printedName": "metricDescriptor", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvs", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvs", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "set" - }, + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC16metricDescriptorAA0dG0Vvp", + "mangledName": "$s11VideoSDKRTC25AsynchronousMetricStorageC16metricDescriptorAA0dG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvM", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvM", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC16metricDescriptorAA0dG0Vvg", + "mangledName": "$s11VideoSDKRTC25AsynchronousMetricStorageC16metricDescriptorAA0dG0Vvg", "moduleName": "VideoSDKRTC", "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Function", + "name": "collect", + "printedName": "collect(resource:scope:startEpochNanos:epochNanos:)", "children": [ { "kind": "TypeNominal", - "name": "PubSubMessage", - "printedName": "VideoSDKRTC.PubSubMessage", - "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage" + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], - "declKind": "Constructor", - "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage(im)init", - "mangledName": "$s11VideoSDKRTC13PubSubMessageCACycfc", + "declKind": "Func", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC7collect8resource5scope15startEpochNanos05epochK0AA06StableD4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", + "mangledName": "$s11VideoSDKRTC25AsynchronousMetricStorageC7collect8resource5scope15startEpochNanos05epochK0AA06StableD4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", "moduleName": "VideoSDKRTC", - "overriding": true, - "implicit": true, - "objc_name": "init", "declAttributes": [ - "Dynamic", - "ObjC", - "Override" + "AccessControl" ], - "init_kind": "Designated" + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEmpty", + "printedName": "isEmpty()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC7isEmptySbyF", + "mangledName": "$s11VideoSDKRTC25AsynchronousMetricStorageC7isEmptySbyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC", + "mangledName": "$s11VideoSDKRTC25AsynchronousMetricStorageC", "moduleName": "VideoSDKRTC", "declAttributes": [ - "AccessControl", - "ObjC" + "AccessControl" ], - "superclassUsr": "c:objc(cs)NSObject", "hasMissingDesignatedInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "name": "MetricStorage", + "printedName": "MetricStorage", + "usr": "s:11VideoSDKRTC13MetricStorageP", + "mangledName": "$s11VideoSDKRTC13MetricStorageP" } ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "TypeDecl", - "name": "PubSubMessageListener", - "printedName": "PubSubMessageListener", + "name": "AsyncMessageSequence", + "printedName": "AsyncMessageSequence", "children": [ { - "kind": "Function", - "name": "onMessageReceived", - "printedName": "onMessageReceived(_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(base:extensions:partial:options:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "AsyncMessageSequence", + "printedName": "VideoSDKRTC.AsyncMessageSequence<τ_0_0, τ_0_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV" }, { "kind": "TypeNominal", - "name": "PubSubMessage", - "printedName": "VideoSDKRTC.PubSubMessage", - "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC21PubSubMessageListenerP02onE8ReceivedyyAA0cdE0CF", - "mangledName": "$s11VideoSDKRTC21PubSubMessageListenerP02onE8ReceivedyyAA0cdE0CF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.PubSubMessageListener>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV4base10extensions7partial7optionsACyxq_Gx_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtcfc", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV4base10extensions7partial7optionsACyxq_Gx_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", "RawDocComment" ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:11VideoSDKRTC21PubSubMessageListenerP", - "mangledName": "$s11VideoSDKRTC21PubSubMessageListenerP", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Mediasoup", - "printedName": "Mediasoup", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Mediasoup", - "printedName": "Mediasoup", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "VideosdkWebSocket", - "printedName": "VideosdkWebSocket", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "VideoQuality", - "printedName": "VideoQuality", - "children": [ + "init_kind": "Designated" + }, { - "kind": "Var", - "name": "high", - "printedName": "high", + "kind": "TypeDecl", + "name": "AsyncIterator", + "printedName": "AsyncIterator", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.VideoQuality.Type) -> VideoSDKRTC.VideoQuality", + "kind": "Var", + "name": "iterator", + "printedName": "iterator", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "Optional", + "printedName": "τ_0_0.AsyncIterator?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.AsyncIterator" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvp", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "UsableFromInline" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.AsyncIterator?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.AsyncIterator" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvg", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.VideoQuality.Type", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.AsyncIterator?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.AsyncIterator" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvs", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvM", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "implicit": true, + "intro_Macosx": "10.15", + "intro_iOS": "13.0", + "intro_tvOS": "13.0", + "intro_watchOS": "6.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available" + ], + "accessorKind": "_modify" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC0A7QualityO4highyA2CmF", - "mangledName": "$s11VideoSDKRTC0A7QualityO4highyA2CmF", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Var", - "name": "medium", - "printedName": "medium", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.VideoQuality.Type) -> VideoSDKRTC.VideoQuality", + "kind": "Var", + "name": "extensions", + "printedName": "extensions", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" - }, + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV10extensionsAA12ExtensionMap_pSgvp", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV10extensionsAA12ExtensionMap_pSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "UsableFromInline" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.VideoQuality.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV10extensionsAA12ExtensionMap_pSgvg", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV10extensionsAA12ExtensionMap_pSgvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC0A7QualityO6mediumyA2CmF", - "mangledName": "$s11VideoSDKRTC0A7QualityO6mediumyA2CmF", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Var", - "name": "low", - "printedName": "low", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.VideoQuality.Type) -> VideoSDKRTC.VideoQuality", + "kind": "Var", + "name": "partial", + "printedName": "partial", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" - }, + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7partialSbvp", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7partialSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "UsableFromInline" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.VideoQuality.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7partialSbvg", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7partialSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC0A7QualityO3lowyA2CmF", - "mangledName": "$s11VideoSDKRTC0A7QualityO3lowyA2CmF", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.VideoQuality?", + "kind": "Var", + "name": "options", + "printedName": "options", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" } ], - "usr": "s:Sq" + "declKind": "Var", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7optionsAA21BinaryDecodingOptionsVvp", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7optionsAA21BinaryDecodingOptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "UsableFromInline" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7optionsAA21BinaryDecodingOptionsVvg", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7optionsAA21BinaryDecodingOptionsVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:11VideoSDKRTC0A7QualityO8rawValueACSgSS_tcfc", - "mangledName": "$s11VideoSDKRTC0A7QualityO8rawValueACSgSS_tcfc", - "moduleName": "VideoSDKRTC", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC0A7QualityO8rawValueSSvp", - "mangledName": "$s11VideoSDKRTC0A7QualityO8rawValueSSvp", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessors": [ + "kind": "Function", + "name": "nextVarInt", + "printedName": "nextVarInt()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt64?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV10nextVarInts6UInt64VSgyYaKF", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV10nextVarInts6UInt64VSgyYaKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "Inlinable", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Function", + "name": "readBytes", + "printedName": "readBytes(_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC0A7QualityO8rawValueSSvg", - "mangledName": "$s11VideoSDKRTC0A7QualityO8rawValueSSvg", + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV9readBytesySays5UInt8VGSiYaKF", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV9readBytesySays5UInt8VGSiYaKF", "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allCases", - "printedName": "allCases", - "children": [ + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "UsableFromInline", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[VideoSDKRTC.VideoQuality]", + "kind": "Function", + "name": "next", + "printedName": "next()", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "Optional", + "printedName": "τ_0_1?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sa" + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV4nextq_SgyYaKF", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV4nextq_SgyYaKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "Inlinable", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "Mutating" } ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC0A7QualityO8allCasesSayACGvpZ", - "mangledName": "$s11VideoSDKRTC0A7QualityO8allCasesSayACGvpZ", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV", "moduleName": "VideoSDKRTC", - "static": true, - "implicit": true, - "accessors": [ + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Conformance", + "name": "AsyncIteratorProtocol", + "printedName": "AsyncIteratorProtocol", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[VideoSDKRTC.VideoQuality]", + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "GenericTypeParam", + "printedName": "τ_0_1" } - ], - "usr": "s:Sa" + ] } ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC0A7QualityO8allCasesSayACGvgZ", - "mangledName": "$s11VideoSDKRTC0A7QualityO8allCasesSayACGvgZ", - "moduleName": "VideoSDKRTC", - "static": true, - "implicit": true, - "accessorKind": "get" + "usr": "s:ScI", + "mangledName": "$sScI" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" } ] + }, + { + "kind": "Function", + "name": "makeAsyncIterator", + "printedName": "makeAsyncIterator()", + "children": [ + { + "kind": "TypeNominal", + "name": "AsyncIterator", + "printedName": "VideoSDKRTC.AsyncMessageSequence<τ_0_0, τ_0_1>.AsyncIterator", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV04makeC8IteratorAC0cG0Vyxq__GyF", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV04makeC8IteratorAC0cG0Vyxq__GyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } ], - "declKind": "Enum", - "usr": "s:11VideoSDKRTC0A7QualityO", - "mangledName": "$s11VideoSDKRTC0A7QualityO", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "intro_Macosx": "10.15", + "intro_iOS": "13.0", + "intro_tvOS": "13.0", + "intro_watchOS": "6.0", "declAttributes": [ "AccessControl", + "Available", + "Available", + "Available", + "Available", "RawDocComment" ], - "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "name": "AsyncSequence", + "printedName": "AsyncSequence", "children": [ { "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "name": "AsyncIterator", + "printedName": "AsyncIterator", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AsyncIterator", + "printedName": "VideoSDKRTC.AsyncMessageSequence<τ_0_0, τ_0_1>.AsyncIterator", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV" } ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ + }, { "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[VideoSDKRTC.VideoQuality]", - "children": [ - { - "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" - } - ], - "usr": "s:Sa" + "name": "GenericTypeParam", + "printedName": "τ_0_1" } ] } ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" + "usr": "s:Sci", + "mangledName": "$sSci" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" } ] }, @@ -5462,244 +7289,301 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, { "kind": "TypeDecl", - "name": "VideoSDK", - "printedName": "VideoSDK", + "name": "AttributeProcessorProtocol", + "printedName": "AttributeProcessorProtocol", "children": [ { "kind": "Function", - "name": "config", - "printedName": "config(token:)", + "name": "process", + "printedName": "process(incoming:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC0A3SDKC6config5tokenySS_tFZ", - "mangledName": "$s11VideoSDKRTC0A3SDKC6config5tokenySS_tFZ", + "usr": "s:11VideoSDKRTC26AttributeProcessorProtocolP7process8incomingSDySSAA0C5ValueOGAH_tF", + "mangledName": "$s11VideoSDKRTC26AttributeProcessorProtocolP7process8incomingSDySSAA0C5ValueOGAH_tF", "moduleName": "VideoSDKRTC", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AttributeProcessorProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC26AttributeProcessorProtocolP", + "mangledName": "$s11VideoSDKRTC26AttributeProcessorProtocolP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "AttributeProcessor", + "printedName": "AttributeProcessor", + "children": [ { "kind": "Function", - "name": "initMeeting", - "printedName": "initMeeting(meetingId:participantId:participantName:micEnabled:webcamEnabled:customCameraVideoStream:)", + "name": "then", + "printedName": "then(other:)", "children": [ { "kind": "TypeNominal", - "name": "Meeting", - "printedName": "VideoSDKRTC.Meeting", - "usr": "s:11VideoSDKRTC7MeetingC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.CustomRTCMediaStream?", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomRTCMediaStream", - "printedName": "VideoSDKRTC.CustomRTCMediaStream", - "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC0A3SDKC11initMeeting9meetingId011participantG00H4Name10micEnabled06webcamK0012customCameraA6StreamAA0E0CSS_S2SS2bAA014CustomRTCMediaO0CSgtFZ", - "mangledName": "$s11VideoSDKRTC0A3SDKC11initMeeting9meetingId011participantG00H4Name10micEnabled06webcamK0012customCameraA6StreamAA0E0CSS_S2SS2bAA014CustomRTCMediaO0CSgtFZ", + "usr": "s:11VideoSDKRTC18AttributeProcessorC4then5otherA2C_tF", + "mangledName": "$s11VideoSDKRTC18AttributeProcessorC4then5otherA2C_tF", "moduleName": "VideoSDKRTC", - "static": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "createCameraVideoTrack", - "printedName": "createCameraVideoTrack(encoderConfig:facingMode:multiStream:)", + "name": "process", + "printedName": "process(incoming:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "CustomRTCMediaStream", - "printedName": "VideoSDKRTC.CustomRTCMediaStream", - "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "usr": "s:Sq" + "usr": "s:SD" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig?", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18AttributeProcessorC7process8incomingSDySSAA0C5ValueOGAH_tF", + "mangledName": "$s11VideoSDKRTC18AttributeProcessorC7process8incomingSDySSAA0C5ValueOGAH_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "filterByKeyName", + "printedName": "filterByKeyName(nameFilter:)", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "AVFoundation.AVCaptureDevice.Position?", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Swift.Bool", "children": [ { "kind": "TypeNominal", - "name": "Position", - "printedName": "AVFoundation.AVCaptureDevice.Position", - "usr": "c:@E@AVCaptureDevicePosition" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18AttributeProcessorC15filterByKeyName10nameFilterACSbSSc_tFZ", + "mangledName": "$s11VideoSDKRTC18AttributeProcessorC15filterByKeyName10nameFilterACSbSSc_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "append", + "printedName": "append(attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:SD" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC0A3SDKC012createCameraA5Track13encoderConfig10facingMode11multiStreamAA014CustomRTCMediaL0CSgAA0mafH0OSg_So23AVCaptureDevicePositionVSgSbSgtKFZ", - "mangledName": "$s11VideoSDKRTC0A3SDKC012createCameraA5Track13encoderConfig10facingMode11multiStreamAA014CustomRTCMediaL0CSgAA0mafH0OSg_So23AVCaptureDevicePositionVSgSbSgtKFZ", + "usr": "s:11VideoSDKRTC18AttributeProcessorC6append10attributesACSDySSAA0C5ValueOG_tFZ", + "mangledName": "$s11VideoSDKRTC18AttributeProcessorC6append10attributesACSDySSAA0C5ValueOG_tFZ", "moduleName": "VideoSDKRTC", "static": true, "declAttributes": [ "Final", "AccessControl" ], - "throwing": true, "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "s:11VideoSDKRTC0A3SDKC", - "mangledName": "$s11VideoSDKRTC0A3SDKC", + "usr": "s:11VideoSDKRTC18AttributeProcessorC", + "mangledName": "$s11VideoSDKRTC18AttributeProcessorC", "moduleName": "VideoSDKRTC", "declAttributes": [ - "AccessControl", - "Final" + "AccessControl" ], - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AttributeProcessorProtocol", + "printedName": "AttributeProcessorProtocol", + "usr": "s:11VideoSDKRTC26AttributeProcessorProtocolP", + "mangledName": "$s11VideoSDKRTC26AttributeProcessorProtocolP" + } + ] }, { "kind": "TypeDecl", - "name": "Data", - "printedName": "Data", + "name": "JoinedAttributeProcessor", + "printedName": "JoinedAttributeProcessor", "children": [ { "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString()", + "name": "process", + "printedName": "process(incoming:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV11VideoSDKRTCE12toJSONStringSSyF", - "mangledName": "$s10Foundation4DataV11VideoSDKRTCE12toJSONStringSSyF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "toJSON", - "printedName": "toJSON()", - "children": [ + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + }, { "kind": "TypeNominal", "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", @@ -5709,349 +7593,566 @@ }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], "usr": "s:SD" } ], "declKind": "Func", - "usr": "s:10Foundation4DataV11VideoSDKRTCE6toJSONSDySSypGyF", - "mangledName": "$s10Foundation4DataV11VideoSDKRTCE6toJSONSDySSypGyF", + "usr": "s:11VideoSDKRTC24JoinedAttributeProcessorC7process8incomingSDySSAA0D5ValueOGAH_tF", + "mangledName": "$s11VideoSDKRTC24JoinedAttributeProcessorC7process8incomingSDySSAA0D5ValueOGAH_tF", "moduleName": "VideoSDKRTC", + "overriding": true, "declAttributes": [ - "RawDocComment" + "AccessControl", + "Override" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "toJSONArray", - "printedName": "toJSONArray()", + "name": "then", + "printedName": "then(other:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sa" + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + }, + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" } ], "declKind": "Func", - "usr": "s:10Foundation4DataV11VideoSDKRTCE11toJSONArraySayypGyF", - "mangledName": "$s10Foundation4DataV11VideoSDKRTCE11toJSONArraySayypGyF", + "usr": "s:11VideoSDKRTC24JoinedAttributeProcessorC4then5otherAA0dE0CAG_tF", + "mangledName": "$s11VideoSDKRTC24JoinedAttributeProcessorC4then5otherAA0dE0CAG_tF", "moduleName": "VideoSDKRTC", + "overriding": true, "declAttributes": [ - "RawDocComment" + "AccessControl", + "Override" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:10Foundation4DataV", - "mangledName": "$s10Foundation4DataV", - "moduleName": "Foundation", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ + }, { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", + "kind": "Function", + "name": "prepend", + "printedName": "prepend(processor:)", "children": [ { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSData", - "printedName": "Foundation.NSData", - "usr": "c:objc(cs)NSData" - } - ] + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + }, + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" } ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + "declKind": "Func", + "usr": "s:11VideoSDKRTC24JoinedAttributeProcessorC7prepend9processorAA0dE0CAG_tF", + "mangledName": "$s11VideoSDKRTC24JoinedAttributeProcessorC7prepend9processorAA0dE0CAG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC24JoinedAttributeProcessorC", + "mangledName": "$s11VideoSDKRTC24JoinedAttributeProcessorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC18AttributeProcessorC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.AttributeProcessor" + ], + "conformances": [ { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, + "name": "AttributeProcessorProtocol", + "printedName": "AttributeProcessorProtocol", + "usr": "s:11VideoSDKRTC26AttributeProcessorProtocolP", + "mangledName": "$s11VideoSDKRTC26AttributeProcessorProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoopAttributeProcessor", + "printedName": "NoopAttributeProcessor", + "children": [ { - "kind": "Conformance", - "name": "RandomAccessCollection", - "printedName": "RandomAccessCollection", + "kind": "Function", + "name": "process", + "printedName": "process(incoming:)", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:SD" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:SD" } ], - "usr": "s:Sk", - "mangledName": "$sSk" - }, + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopAttributeProcessorC7process8incomingSDySSAA0D5ValueOGAH_tF", + "mangledName": "$s11VideoSDKRTC22NoopAttributeProcessorC7process8incomingSDySSAA0D5ValueOGAH_tF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC22NoopAttributeProcessorC", + "mangledName": "$s11VideoSDKRTC22NoopAttributeProcessorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC18AttributeProcessorC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.AttributeProcessor" + ], + "conformances": [ { "kind": "Conformance", - "name": "MutableCollection", - "printedName": "MutableCollection", + "name": "AttributeProcessorProtocol", + "printedName": "AttributeProcessorProtocol", + "usr": "s:11VideoSDKRTC26AttributeProcessorProtocolP", + "mangledName": "$s11VideoSDKRTC26AttributeProcessorProtocolP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AttributesDictionary", + "printedName": "AttributesDictionary", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(capacity:valueLengthLimit:)", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] + "kind": "TypeNominal", + "name": "AttributesDictionary", + "printedName": "VideoSDKRTC.AttributesDictionary", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV" }, { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" } ], - "usr": "s:SM", - "mangledName": "$sSM" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV8capacity16valueLengthLimitACSi_Sitcfc", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV8capacity16valueLengthLimitACSi_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MutableDataProtocol", - "printedName": "MutableDataProtocol", - "usr": "s:10Foundation19MutableDataProtocolP", - "mangledName": "$s10Foundation19MutableDataProtocolP" - }, - { - "kind": "Conformance", - "name": "ContiguousBytes", - "printedName": "ContiguousBytes", - "usr": "s:10Foundation15ContiguousBytesP", - "mangledName": "$s10Foundation15ContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ + "declKind": "Subscript", + "usr": "s:11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSScip", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSScip", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSScig", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSScig", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSScis", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSScis", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSSciM", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSSciM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "updateValue", + "printedName": "updateValue(value:forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:Sq" }, { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV11updateValue5value6forKeyAA09AttributeF0OSgAH_SStF", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV11updateValue5value6forKeyAA09AttributeF0OSgAH_SStF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "updateValues", + "printedName": "updateValues(attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:SD" } ], - "usr": "s:SK", - "mangledName": "$sSK" + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV12updateValues10attributesySDySSAA14AttributeValueOG_tF", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV12updateValues10attributesySDySSAA14AttributeValueOG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" }, { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", + "kind": "Function", + "name": "updateValues", + "printedName": "updateValues(attributes:)", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AttributesDictionary", + "printedName": "VideoSDKRTC.AttributesDictionary", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV12updateValues10attributesyAC_tF", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV12updateValues10attributesyAC_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "removeValueForKey", + "printedName": "removeValueForKey(key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:Sq" }, { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV17removeValueForKey3keyAA09AttributeF0OSgSS_tF", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV17removeValueForKey3keyAA09AttributeF0OSgSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "removeAll", + "printedName": "removeAll(keepCapacity:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV9removeAll12keepCapacityySi_tF", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV9removeAll12keepCapacityySi_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV5countSivp", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV5countSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -6059,89 +8160,143 @@ "printedName": "Swift.Int", "usr": "s:Si" } - ] - }, + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV5countSivg", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV5countSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "numberOfDroppedAttributes", + "printedName": "numberOfDroppedAttributes", + "children": [ { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV015numberOfDroppedC0Sivp", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV015numberOfDroppedC0Sivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Foundation.Data.Iterator", - "usr": "s:10Foundation4DataV8IteratorV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] - }, + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV015numberOfDroppedC0Sivg", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV015numberOfDroppedC0Sivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] - }, + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV6valuesSayAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV6valuesSayAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", + "name": "Array", + "printedName": "[VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "usr": "s:Sn" + "usr": "s:Sa" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV6valuesSayAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV6valuesSayAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" } - ], - "usr": "s:Sl", - "mangledName": "$sSl" + ] }, { - "kind": "Conformance", - "name": "DataProtocol", - "printedName": "DataProtocol", + "kind": "Function", + "name": "makeIterator", + "printedName": "makeIterator()", "children": [ { - "kind": "TypeWitness", - "name": "Regions", - "printedName": "Regions", - "children": [ - { - "kind": "TypeNominal", - "name": "CollectionOfOne", - "printedName": "Swift.CollectionOfOne", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:s15CollectionOfOneV" - } - ] + "kind": "TypeNominal", + "name": "AttributesWithCapacityIterator", + "printedName": "VideoSDKRTC.AttributesWithCapacityIterator", + "usr": "s:11VideoSDKRTC30AttributesWithCapacityIteratorV" } ], - "usr": "s:10Foundation12DataProtocolP", - "mangledName": "$s10Foundation12DataProtocolP" - }, + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV12makeIteratorAA0c12WithCapacityF0VyF", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV12makeIteratorAA0c12WithCapacityF0VyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ { "kind": "Conformance", "name": "Sequence", @@ -6154,9 +8309,22 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Tuple", + "printedName": "(Swift.String, VideoSDKRTC.AttributeValue)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] }, @@ -6167,693 +8335,524 @@ "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Foundation.Data.Iterator", - "usr": "s:10Foundation4DataV8IteratorV" + "name": "AttributesWithCapacityIterator", + "printedName": "VideoSDKRTC.AttributesWithCapacityIterator", + "usr": "s:11VideoSDKRTC30AttributesWithCapacityIteratorV" } ] } ], "usr": "s:ST", "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSData", - "printedName": "Foundation.NSData", - "usr": "c:objc(cs)NSData" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "TypeDecl", - "name": "String", - "printedName": "String", - "children": [ + } + ] + }, + { + "kind": "TypeDecl", + "name": "AttributesWithCapacityIterator", + "printedName": "AttributesWithCapacityIterator", + "children": [ { "kind": "Function", - "name": "toJSON", - "printedName": "toJSON()", + "name": "next", + "printedName": "next()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "(Swift.String, VideoSDKRTC.AttributeValue)?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Tuple", + "printedName": "(Swift.String, VideoSDKRTC.AttributeValue)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:SS11VideoSDKRTCE6toJSONSDySSypGyF", - "mangledName": "$sSS11VideoSDKRTCE6toJSONSDySSypGyF", + "usr": "s:11VideoSDKRTC30AttributesWithCapacityIteratorV4nextSS_AA14AttributeValueOtSgyF", + "mangledName": "$s11VideoSDKRTC30AttributesWithCapacityIteratorV4nextSS_AA14AttributeValueOtSgyF", "moduleName": "VideoSDKRTC", "declAttributes": [ - "RawDocComment" + "Mutating", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "funcSelfKind": "Mutating" } ], "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", - "moduleName": "Swift", + "usr": "s:11VideoSDKRTC30AttributesWithCapacityIteratorV", + "mangledName": "$s11VideoSDKRTC30AttributesWithCapacityIteratorV", + "moduleName": "VideoSDKRTC", "declAttributes": [ - "Frozen" + "AccessControl" ], - "isExternal": true, "conformances": [ { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", + "name": "IteratorProtocol", + "printedName": "IteratorProtocol", "children": [ { "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(Swift.String, VideoSDKRTC.AttributeValue)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] } ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" - }, + "usr": "s:St", + "mangledName": "$sSt" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AttributeSet", + "printedName": "AttributeSet", + "children": [ { - "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "kind": "Var", + "name": "labels", + "printedName": "labels", "children": [ { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:SD" } ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, + "declKind": "Var", + "usr": "s:11VideoSDKRTC12AttributeSetC6labelsSDySSAA0C5ValueOGvp", + "mangledName": "$s11VideoSDKRTC12AttributeSetC6labelsSDySSAA0C5ValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "usr": "s:SI" + "usr": "s:SD" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12AttributeSetC6labelsSDySSAA0C5ValueOGvg", + "mangledName": "$s11VideoSDKRTC12AttributeSetC6labelsSDySSAA0C5ValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" } - ], - "usr": "s:SK", - "mangledName": "$sSK" + ] }, { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", + "kind": "Var", + "name": "empty", + "printedName": "empty", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, + "kind": "TypeNominal", + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12AttributeSetC5emptyACvpZ", + "mangledName": "$s11VideoSDKRTC12AttributeSetC5emptyACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12AttributeSetC5emptyACvgZ", + "mangledName": "$s11VideoSDKRTC12AttributeSetC5emptyACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12AttributeSetC5emptyACvsZ", + "mangledName": "$s11VideoSDKRTC12AttributeSetC5emptyACvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12AttributeSetC5emptyACvMZ", + "mangledName": "$s11VideoSDKRTC12AttributeSetC5emptyACvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "usr": "s:Sl", - "mangledName": "$sSl" + ] }, { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", + "kind": "Constructor", + "name": "init", + "printedName": "init(labels:)", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] + "kind": "TypeNominal", + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" }, { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:SD" } ], - "usr": "s:ST", - "mangledName": "$sST" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC12AttributeSetC6labelsACSDySSAA0C5ValueOG_tcfc", + "mangledName": "$s11VideoSDKRTC12AttributeSetC6labelsACSDySSAA0C5ValueOG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Required", + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { - "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", - "children": [ - { - "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" - } - ] + "kind": "TypeNominal", + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] + "kind": "TypeNominal", + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" } ], - "usr": "s:Sy", - "mangledName": "$sSy" + "declKind": "Func", + "usr": "s:11VideoSDKRTC12AttributeSetC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC12AttributeSetC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { - "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" + "declKind": "Func", + "usr": "s:11VideoSDKRTC12AttributeSetC4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC12AttributeSetC4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12AttributeSetC9hashValueSivp", + "mangledName": "$s11VideoSDKRTC12AttributeSetC9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isOpen": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12AttributeSetC9hashValueSivg", + "mangledName": "$s11VideoSDKRTC12AttributeSetC9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isOpen": true, + "accessorKind": "get" } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" + ] }, { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] + "kind": "TypeNominal", + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" } ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC12AttributeSetC4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC12AttributeSetC4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Required" + ], + "throwing": true, + "init_kind": "Designated" }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Dictionary", - "printedName": "Dictionary", - "children": [ { "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString()", + "name": "encode", + "printedName": "encode(to:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" } ], "declKind": "Func", - "usr": "s:SD11VideoSDKRTCE12toJSONStringSSyF", - "mangledName": "$sSD11VideoSDKRTCE12toJSONStringSSyF", + "usr": "s:11VideoSDKRTC12AttributeSetC6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC12AttributeSetC6encode2toys7Encoder_p_tKF", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", - "sugared_genericSig": "", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, + "implicit": true, + "isOpen": true, + "throwing": true, "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:SD", - "mangledName": "$sSD", - "moduleName": "Swift", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", - "sugared_genericSig": "", + "declKind": "Class", + "usr": "s:11VideoSDKRTC12AttributeSetC", + "mangledName": "$s11VideoSDKRTC12AttributeSetC", + "moduleName": "VideoSDKRTC", + "isOpen": true, "declAttributes": [ - "Frozen" + "AccessControl" ], - "isExternal": true, + "hasMissingDesignatedInitializers": true, "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" }, { "kind": "Conformance", @@ -6864,597 +8863,638 @@ }, { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AttributeValue", + "printedName": "AttributeValue", + "children": [ { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", + "kind": "Var", + "name": "string", + "printedName": "string", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> (Swift.String) -> VideoSDKRTC.AttributeValue", "children": [ { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: τ_0_0, value: τ_0_1)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideoSDKRTC.AttributeValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ + }, { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", - "usr": "s:SD8IteratorV" + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] } ], - "usr": "s:ST", - "mangledName": "$sST" + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO6stringyACSScACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO6stringyACSScACmF", + "moduleName": "VideoSDKRTC" }, { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", + "kind": "Var", + "name": "bool", + "printedName": "bool", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> (Swift.Bool) -> VideoSDKRTC.AttributeValue", "children": [ { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: τ_0_0, value: τ_0_1)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> VideoSDKRTC.AttributeValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ] - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ + }, { "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Index", - "usr": "s:SD5IndexV" + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO4boolyACSbcACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO4boolyACSbcACmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "int", + "printedName": "int", + "children": [ { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> (Swift.Int) -> VideoSDKRTC.AttributeValue", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.AttributeValue", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", - "usr": "s:SD8IteratorV" + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO3intyACSicACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO3intyACSicACmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "double", + "printedName": "double", + "children": [ { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> (Swift.Double) -> VideoSDKRTC.AttributeValue", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> VideoSDKRTC.AttributeValue", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, { "kind": "TypeNominal", - "name": "Slice", - "printedName": "Swift.Slice<[τ_0_0 : τ_0_1]>", + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ], - "usr": "s:s5SliceV" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO6doubleyACSdcACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO6doubleyACSdcACmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "stringArray", + "printedName": "stringArray", + "children": [ { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> ([Swift.String]) -> VideoSDKRTC.AttributeValue", "children": [ { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices<[τ_0_0 : τ_0_1]>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String]) -> VideoSDKRTC.AttributeValue", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:SD" + "usr": "s:Sa" } - ], - "usr": "s:SI" + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] } ], - "usr": "s:Sl", - "mangledName": "$sSl" + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO11stringArrayyACSaySSGcACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO11stringArrayyACSaySSGcACmF", + "moduleName": "VideoSDKRTC" }, { - "kind": "Conformance", - "name": "ExpressibleByDictionaryLiteral", - "printedName": "ExpressibleByDictionaryLiteral", + "kind": "Var", + "name": "boolArray", + "printedName": "boolArray", "children": [ { - "kind": "TypeWitness", - "name": "Key", - "printedName": "Key", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> ([Swift.Bool]) -> VideoSDKRTC.AttributeValue", "children": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Value", - "printedName": "Value", - "children": [ + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.Bool]) -> VideoSDKRTC.AttributeValue", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sa" + } + ] + }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] } ], - "usr": "s:s30ExpressibleByDictionaryLiteralP", - "mangledName": "$ss30ExpressibleByDictionaryLiteralP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO9boolArrayyACSaySbGcACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO9boolArrayyACSaySbGcACmF", + "moduleName": "VideoSDKRTC" }, { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "kind": "Var", + "name": "intArray", + "printedName": "intArray", "children": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> ([Swift.Int]) -> VideoSDKRTC.AttributeValue", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.Int]) -> VideoSDKRTC.AttributeValue", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ] + }, { "kind": "TypeNominal", - "name": "NSDictionary", - "printedName": "Foundation.NSDictionary", - "usr": "c:objc(cs)NSDictionary" + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] } ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Array", - "printedName": "Array", - "children": [ - { - "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:Sa11VideoSDKRTCE12toJSONStringSSyF", - "mangledName": "$sSa11VideoSDKRTCE12toJSONStringSSyF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:Sa", - "mangledName": "$sSa", - "moduleName": "Swift", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_DestructorSafeContainer", - "printedName": "_DestructorSafeContainer", - "usr": "s:s24_DestructorSafeContainerP", - "mangledName": "$ss24_DestructorSafeContainerP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO8intArrayyACSaySiGcACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO8intArrayyACSaySiGcACmF", + "moduleName": "VideoSDKRTC" }, { - "kind": "Conformance", - "name": "_ArrayProtocol", - "printedName": "_ArrayProtocol", + "kind": "Var", + "name": "doubleArray", + "printedName": "doubleArray", "children": [ { - "kind": "TypeWitness", - "name": "_Buffer", - "printedName": "_Buffer", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> ([Swift.Double]) -> VideoSDKRTC.AttributeValue", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.Double]) -> VideoSDKRTC.AttributeValue", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ] + }, { "kind": "TypeNominal", - "name": "_ArrayBuffer", - "printedName": "Swift._ArrayBuffer<τ_0_0>", + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ], - "usr": "s:s12_ArrayBufferV" + ] } ] } ], - "usr": "s:s14_ArrayProtocolP", - "mangledName": "$ss14_ArrayProtocolP" + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO11doubleArrayyACSaySdGcACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO11doubleArrayyACSaySdGcACmF", + "moduleName": "VideoSDKRTC" }, { - "kind": "Conformance", - "name": "RandomAccessCollection", - "printedName": "RandomAccessCollection", + "kind": "Var", + "name": "set", + "printedName": "set", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> (VideoSDKRTC.AttributeSet) -> VideoSDKRTC.AttributeValue", "children": [ { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeSet) -> VideoSDKRTC.AttributeValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" } - ], - "usr": "s:s10ArraySliceV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ + ] + }, { "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ], - "usr": "s:Sn" + ] } ] } ], - "usr": "s:Sk", - "mangledName": "$sSk" + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO3setyAcA0C3SetCcACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO3setyAcA0C3SetCcACmF", + "moduleName": "VideoSDKRTC" }, { - "kind": "Conformance", - "name": "MutableCollection", - "printedName": "MutableCollection", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14AttributeValueO11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC14AttributeValueO11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - }, + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14AttributeValueO11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC14AttributeValueO11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:Sq" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], - "usr": "s:SM", - "mangledName": "$sSM" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSgypcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSgypcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" }, { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "usr": "s:SK", - "mangledName": "$sSK" + "declKind": "Func", + "usr": "s:11VideoSDKRTC14AttributeValueO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC14AttributeValueO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14AttributeValueO04hashD0Sivp", + "mangledName": "$s11VideoSDKRTC14AttributeValueO04hashD0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -7462,186 +9502,358 @@ "printedName": "Swift.Int", "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14AttributeValueO04hashD0Sivg", + "mangledName": "$s11VideoSDKRTC14AttributeValueO04hashD0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "IndexingIterator", - "printedName": "Swift.IndexingIterator<[τ_0_0]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s16IndexingIteratorV" - } - ] + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14AttributeValueO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSScfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" }, { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sl", - "mangledName": "$sSl" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSbcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSbcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" }, { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" }, { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSicfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSicfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSdcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSdcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", "children": [ { "kind": "TypeNominal", - "name": "IndexingIterator", - "printedName": "Swift.IndexingIterator<[τ_0_0]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s16IndexingIteratorV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sa" } ], - "usr": "s:ST", - "mangledName": "$sST" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSaySSGcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSaySSGcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" }, { - "kind": "Conformance", - "name": "ExpressibleByArrayLiteral", - "printedName": "ExpressibleByArrayLiteral", + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", "children": [ { - "kind": "TypeWitness", - "name": "ArrayLiteralElement", - "printedName": "ArrayLiteralElement", + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "usr": "s:Sa" } ], - "usr": "s:s25ExpressibleByArrayLiteralP", - "mangledName": "$ss25ExpressibleByArrayLiteralP" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSaySiGcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSaySiGcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" }, { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", "children": [ { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", "children": [ { "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ] + ], + "usr": "s:Sa" } ], - "usr": "s:Sm", - "mangledName": "$sSm" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSaySdGcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSaySdGcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyAcA0C3SetCcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyAcA0C3SetCcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueO4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueO4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14AttributeValueO6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC14AttributeValueO", + "mangledName": "$s11VideoSDKRTC14AttributeValueO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ { "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", @@ -7650,13 +9862,6 @@ "usr": "s:s23CustomStringConvertibleP", "mangledName": "$ss23CustomStringConvertibleP" }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, { "kind": "Conformance", "name": "Hashable", @@ -7664,27 +9869,6 @@ "usr": "s:SH", "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, { "kind": "Conformance", "name": "Decodable", @@ -7694,3243 +9878,299971 @@ }, { "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AVKit", + "printedName": "AVKit", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Baggage", + "printedName": "Baggage", + "children": [ { - "kind": "Conformance", - "name": "DataProtocol", - "printedName": "DataProtocol", + "kind": "Function", + "name": "baggageBuilder", + "printedName": "baggageBuilder()", "children": [ { - "kind": "TypeWitness", - "name": "Regions", - "printedName": "Regions", - "children": [ - { - "kind": "TypeNominal", - "name": "CollectionOfOne", - "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s15CollectionOfOneV" - } - ] + "kind": "TypeNominal", + "name": "BaggageBuilder", + "printedName": "VideoSDKRTC.BaggageBuilder", + "usr": "s:11VideoSDKRTC14BaggageBuilderP" } ], - "usr": "s:10Foundation12DataProtocolP", - "mangledName": "$s10Foundation12DataProtocolP" - }, - { - "kind": "Conformance", - "name": "MutableDataProtocol", - "printedName": "MutableDataProtocol", - "usr": "s:10Foundation19MutableDataProtocolP", - "mangledName": "$s10Foundation19MutableDataProtocolP" + "declKind": "Func", + "usr": "s:11VideoSDKRTC7BaggageP14baggageBuilderAA0cE0_pyFZ", + "mangledName": "$s11VideoSDKRTC7BaggageP14baggageBuilderAA0cE0_pyFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Baggage>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "EncodableWithConfiguration", - "printedName": "EncodableWithConfiguration", + "kind": "Function", + "name": "getEntries", + "printedName": "getEntries()", "children": [ { - "kind": "TypeWitness", - "name": "EncodingConfiguration", - "printedName": "EncodingConfiguration", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Entry]", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.EncodingConfiguration" + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" } - ] + ], + "usr": "s:Sa" } ], - "usr": "s:10Foundation26EncodableWithConfigurationP", - "mangledName": "$s10Foundation26EncodableWithConfigurationP" + "declKind": "Func", + "usr": "s:11VideoSDKRTC7BaggageP10getEntriesSayAA5EntryVGyF", + "mangledName": "$s11VideoSDKRTC7BaggageP10getEntriesSayAA5EntryVGyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Baggage>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "DecodableWithConfiguration", - "printedName": "DecodableWithConfiguration", + "kind": "Function", + "name": "getEntryValue", + "printedName": "getEntryValue(key:)", "children": [ { - "kind": "TypeWitness", - "name": "DecodingConfiguration", - "printedName": "DecodingConfiguration", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryValue?", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.DecodingConfiguration" + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" } ], - "usr": "s:10Foundation26DecodableWithConfigurationP", - "mangledName": "$s10Foundation26DecodableWithConfigurationP" + "declKind": "Func", + "usr": "s:11VideoSDKRTC7BaggageP13getEntryValue3keyAA0eF0VSgAA0E3KeyV_tF", + "mangledName": "$s11VideoSDKRTC7BaggageP13getEntryValue3keyAA0eF0VSgAA0E3KeyV_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Baggage>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC7BaggageP", + "mangledName": "$s11VideoSDKRTC7BaggageP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + }, + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC2eeoiySbAA7Baggage_p_AaC_ptF", + "mangledName": "$s11VideoSDKRTC2eeoiySbAA7Baggage_p_AaC_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BaggageBuilder", + "printedName": "BaggageBuilder", + "children": [ + { + "kind": "Function", + "name": "setParent", + "printedName": "setParent(_:)", "children": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Baggage?", "children": [ { "kind": "TypeNominal", - "name": "NSArray", - "printedName": "Foundation.NSArray", - "usr": "c:objc(cs)NSArray" + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" + "declKind": "Func", + "usr": "s:11VideoSDKRTC14BaggageBuilderP9setParentyxAA0C0_pSgF", + "mangledName": "$s11VideoSDKRTC14BaggageBuilderP9setParentyxAA0C0_pSgF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.BaggageBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "kind": "Function", + "name": "setNoParent", + "printedName": "setNoParent()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14BaggageBuilderP11setNoParentxyF", + "mangledName": "$s11VideoSDKRTC14BaggageBuilderP11setNoParentxyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.BaggageBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "ContiguousBytes", - "printedName": "ContiguousBytes", - "usr": "s:10Foundation15ContiguousBytesP", - "mangledName": "$s10Foundation15ContiguousBytesP" + "kind": "Function", + "name": "put", + "printedName": "put(key:value:metadata:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + }, + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14BaggageBuilderP3put3key5value8metadataxAA8EntryKeyV_AA0I5ValueVAA0I8MetadataVSgtF", + "mangledName": "$s11VideoSDKRTC14BaggageBuilderP3put3key5value8metadataxAA8EntryKeyV_AA0I5ValueVAA0I8MetadataVSgtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.BaggageBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "remove", + "printedName": "remove(key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14BaggageBuilderP6remove3keyxAA8EntryKeyV_tF", + "mangledName": "$s11VideoSDKRTC14BaggageBuilderP6remove3keyxAA8EntryKeyV_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.BaggageBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14BaggageBuilderP5buildAA0C0_pyF", + "mangledName": "$s11VideoSDKRTC14BaggageBuilderP5buildAA0C0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.BaggageBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14BaggageBuilderP", + "mangledName": "$s11VideoSDKRTC14BaggageBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "TypeDecl", - "name": "Encodable", - "printedName": "Encodable", + "name": "BaggageManager", + "printedName": "BaggageManager", "children": [ { "kind": "Function", - "name": "toJSON", - "printedName": "toJSON()", + "name": "baggageBuilder", + "printedName": "baggageBuilder()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "BaggageBuilder", + "printedName": "VideoSDKRTC.BaggageBuilder", + "usr": "s:11VideoSDKRTC14BaggageBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14BaggageManagerP14baggageBuilderAA0cF0_pyF", + "mangledName": "$s11VideoSDKRTC14BaggageManagerP14baggageBuilderAA0cF0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.BaggageManager>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14BaggageManagerP", + "mangledName": "$s11VideoSDKRTC14BaggageManagerP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BatchLogRecordProcessor", + "printedName": "BatchLogRecordProcessor", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(logRecordExporter:scheduleDelay:exportTimeout:maxQueueSize:maxExportBatchSize:willExportCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BatchLogRecordProcessor", + "printedName": "VideoSDKRTC.BatchLogRecordProcessor", + "usr": "s:11VideoSDKRTC23BatchLogRecordProcessorC" + }, + { + "kind": "TypeNominal", + "name": "LogRecordExporter", + "printedName": "VideoSDKRTC.LogRecordExporter", + "usr": "s:11VideoSDKRTC17LogRecordExporterP" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((inout [VideoSDKRTC.ReadableLogRecord]) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(inout [VideoSDKRTC.ReadableLogRecord]) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ] } ], - "usr": "s:SD" + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC23BatchLogRecordProcessorC03logE8Exporter13scheduleDelay13exportTimeout12maxQueueSize0m6ExportcO004willP8CallbackAcA0deH0_p_S2dS2iySayAA08ReadabledE0VGzcSgtcfc", + "mangledName": "$s11VideoSDKRTC23BatchLogRecordProcessorC03logE8Exporter13scheduleDelay13exportTimeout12maxQueueSize0m6ExportcO004willP8CallbackAcA0deH0_p_S2dS2iySayAA08ReadabledE0VGzcSgtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "onEmit", + "printedName": "onEmit(logRecord:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" } ], "declKind": "Func", - "usr": "s:SE11VideoSDKRTCE6toJSONSDySSypGyF", - "mangledName": "$sSE11VideoSDKRTCE6toJSONSDySSypGyF", + "usr": "s:11VideoSDKRTC23BatchLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", + "mangledName": "$s11VideoSDKRTC23BatchLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "toJSONArray", - "printedName": "toJSONArray()", + "name": "forceFlush", + "printedName": "forceFlush()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23BatchLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC23BatchLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush(timeout:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:SE11VideoSDKRTCE11toJSONArraySayypGyF", - "mangledName": "$sSE11VideoSDKRTCE11toJSONArraySayypGyF", + "usr": "s:11VideoSDKRTC23BatchLogRecordProcessorC10forceFlush7timeoutySdSg_tF", + "mangledName": "$s11VideoSDKRTC23BatchLogRecordProcessorC10forceFlush7timeoutySdSg_tF", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23BatchLogRecordProcessorC8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC23BatchLogRecordProcessorC8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" } ], - "declKind": "Protocol", - "usr": "s:SE", - "mangledName": "$sSE", - "moduleName": "Swift", - "isExternal": true - } - ], - "json_format_version": 8 - }, - "ConstValues": [ + "declKind": "Class", + "usr": "s:11VideoSDKRTC23BatchLogRecordProcessorC", + "mangledName": "$s11VideoSDKRTC23BatchLogRecordProcessorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordProcessor", + "printedName": "LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BatchSpanProcessor", + "printedName": "BatchSpanProcessor", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(spanExporter:scheduleDelay:exportTimeout:maxQueueSize:maxExportBatchSize:willExportCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BatchSpanProcessor", + "printedName": "VideoSDKRTC.BatchSpanProcessor", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV" + }, + { + "kind": "TypeNominal", + "name": "SpanExporter", + "printedName": "VideoSDKRTC.SpanExporter", + "usr": "s:11VideoSDKRTC12SpanExporterP" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((inout [VideoSDKRTC.SpanData]) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(inout [VideoSDKRTC.SpanData]) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV12spanExporter13scheduleDelay13exportTimeout12maxQueueSize0l6ExportcN004willO8CallbackAcA0dG0_p_S2dS2iySayAA0D4DataVGzcSgtcfc", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV12spanExporter13scheduleDelay13exportTimeout12maxQueueSize0l6ExportcN004willO8CallbackAcA0dG0_p_S2dS2iySayAA0D4DataVGzcSgtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "isStartRequired", + "printedName": "isStartRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV15isStartRequiredSbvp", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV15isStartRequiredSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV15isStartRequiredSbvg", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV15isStartRequiredSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isEndRequired", + "printedName": "isEndRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV13isEndRequiredSbvp", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV13isEndRequiredSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV13isEndRequiredSbvg", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV13isEndRequiredSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "onStart", + "printedName": "onStart(parentContext:span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV7onStart13parentContext4spanyAA0dI0VSg_AA08ReadableD0_ptF", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV7onStart13parentContext4spanyAA0dI0VSg_AA08ReadableD0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onEnd", + "printedName": "onEnd(span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV5onEnd4spanyAA08ReadableD0_p_tF", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV5onEnd4spanyAA08ReadableD0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV8shutdownyyF", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush(timeout:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV10forceFlush7timeoutySdSg_tF", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV10forceFlush7timeoutySdSg_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SpanProcessor", + "printedName": "SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BinaryDecodingError", + "printedName": "BinaryDecodingError", + "children": [ + { + "kind": "Var", + "name": "trailingGarbage", + "printedName": "trailingGarbage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO15trailingGarbageyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO15trailingGarbageyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "truncated", + "printedName": "truncated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO9truncatedyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO9truncatedyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "invalidUTF8", + "printedName": "invalidUTF8", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO11invalidUTF8yA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO11invalidUTF8yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedProtobuf", + "printedName": "malformedProtobuf", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO17malformedProtobufyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO17malformedProtobufyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "missingRequiredFields", + "printedName": "missingRequiredFields", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO21missingRequiredFieldsyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO21missingRequiredFieldsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "internalExtensionError", + "printedName": "internalExtensionError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO017internalExtensionE0yA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO017internalExtensionE0yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messageDepthLimit", + "printedName": "messageDepthLimit", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO17messageDepthLimityA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO17messageDepthLimityA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "tooLarge", + "printedName": "tooLarge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO8tooLargeyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO8tooLargeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "BinaryDecodingOptions", + "printedName": "BinaryDecodingOptions", + "children": [ + { + "kind": "Var", + "name": "messageDepthLimit", + "printedName": "messageDepthLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivp", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivg", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivs", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivM", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "discardUnknownFields", + "printedName": "discardUnknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvp", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvg", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvs", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvM", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "BinaryDelimited", + "printedName": "BinaryDelimited", + "children": [ + { + "kind": "TypeDecl", + "name": "Error", + "printedName": "Error", + "children": [ + { + "kind": "Var", + "name": "unknownStreamError", + "printedName": "unknownStreamError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDelimited.Error.Type) -> VideoSDKRTC.BinaryDelimited.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDelimited.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO013unknownStreamE0yA2EmF", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO013unknownStreamE0yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "truncated", + "printedName": "truncated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDelimited.Error.Type) -> VideoSDKRTC.BinaryDelimited.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDelimited.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO9truncatedyA2EmF", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO9truncatedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "tooLarge", + "printedName": "tooLarge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDelimited.Error.Type) -> VideoSDKRTC.BinaryDelimited.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDelimited.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO8tooLargeyA2EmF", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO8tooLargeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedLength", + "printedName": "malformedLength", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDelimited.Error.Type) -> VideoSDKRTC.BinaryDelimited.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDelimited.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO15malformedLengthyA2EmF", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO15malformedLengthyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "noBytesAvailable", + "printedName": "noBytesAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDelimited.Error.Type) -> VideoSDKRTC.BinaryDelimited.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDelimited.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO16noBytesAvailableyA2EmF", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO16noBytesAvailableyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "serialize", + "printedName": "serialize(message:to:partial:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + }, + { + "kind": "TypeNominal", + "name": "OutputStream", + "printedName": "Foundation.OutputStream", + "usr": "c:objc(cs)NSOutputStream" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO9serialize7message2to7partialyAA7Message_p_So14NSOutputStreamCSbtKFZ", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO9serialize7message2to7partialyAA7Message_p_So14NSOutputStreamCSbtKFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parse", + "printedName": "parse(messageType:from:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeNominal", + "name": "InputStream", + "printedName": "Foundation.InputStream", + "usr": "c:objc(cs)NSInputStream" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5parse11messageType4from10extensions7partial7optionsxxm_So13NSInputStreamCAA12ExtensionMap_pSgSbAA0C15DecodingOptionsVtKAA7MessageRzlFZ", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5parse11messageType4from10extensions7partial7optionsxxm_So13NSInputStreamCAA12ExtensionMap_pSgSbAA0C15DecodingOptionsVtKAA7MessageRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "merge", + "printedName": "merge(into:from:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "InputStream", + "printedName": "Foundation.InputStream", + "usr": "c:objc(cs)NSInputStream" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5merge4into4from10extensions7partial7optionsyxz_So13NSInputStreamCAA12ExtensionMap_pSgSbAA0C15DecodingOptionsVtKAA7MessageRzlFZ", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5merge4into4from10extensions7partial7optionsyxz_So13NSInputStreamCAA12ExtensionMap_pSgSbAA0C15DecodingOptionsVtKAA7MessageRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BinaryEncodingError", + "printedName": "BinaryEncodingError", + "children": [ + { + "kind": "Var", + "name": "anyTranscodeFailure", + "printedName": "anyTranscodeFailure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryEncodingError.Type) -> VideoSDKRTC.BinaryEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO19anyTranscodeFailureyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO19anyTranscodeFailureyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "missingRequiredFields", + "printedName": "missingRequiredFields", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryEncodingError.Type) -> VideoSDKRTC.BinaryEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO21missingRequiredFieldsyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO21missingRequiredFieldsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "tooLarge", + "printedName": "tooLarge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryEncodingError.Type) -> VideoSDKRTC.BinaryEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO8tooLargeyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO8tooLargeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BoundCounterMetric", + "printedName": "BoundCounterMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundCounterMetric", + "printedName": "VideoSDKRTC.BoundCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundCounterMetricC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18BoundCounterMetricCACyxGycfc", + "mangledName": "$s11VideoSDKRTC18BoundCounterMetricCACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18BoundCounterMetricC3add5valueyx_tF", + "mangledName": "$s11VideoSDKRTC18BoundCounterMetricC3add5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18BoundCounterMetricC", + "mangledName": "$s11VideoSDKRTC18BoundCounterMetricC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BoundHistogramMetric", + "printedName": "BoundHistogramMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(explicitBoundaries:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundHistogramMetric", + "printedName": "VideoSDKRTC.BoundHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC18explicitBoundariesACyxGSayxGSg_tcfc", + "mangledName": "$s11VideoSDKRTC20BoundHistogramMetricC18explicitBoundariesACyxGSayxGSg_tcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC6record5valueyx_tF", + "mangledName": "$s11VideoSDKRTC20BoundHistogramMetricC6record5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC", + "mangledName": "$s11VideoSDKRTC20BoundHistogramMetricC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BoundMeasureMetric", + "printedName": "BoundMeasureMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundMeasureMetric", + "printedName": "VideoSDKRTC.BoundMeasureMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18BoundMeasureMetricCACyxGycfc", + "mangledName": "$s11VideoSDKRTC18BoundMeasureMetricCACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC6record5valueyx_tF", + "mangledName": "$s11VideoSDKRTC18BoundMeasureMetricC6record5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC", + "mangledName": "$s11VideoSDKRTC18BoundMeasureMetricC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BoundRawCounterMetric", + "printedName": "BoundRawCounterMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawCounterMetric", + "printedName": "VideoSDKRTC.BoundRawCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricCACyxGycfc", + "mangledName": "$s11VideoSDKRTC21BoundRawCounterMetricCACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(sum:startDate:endDate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC6record3sum9startDate03endJ0yx_10Foundation0J0VAJtF", + "mangledName": "$s11VideoSDKRTC21BoundRawCounterMetricC6record3sum9startDate03endJ0yx_10Foundation0J0VAJtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC", + "mangledName": "$s11VideoSDKRTC21BoundRawCounterMetricC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BoundRawHistogramMetric", + "printedName": "BoundRawHistogramMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawHistogramMetric", + "printedName": "VideoSDKRTC.BoundRawHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricCACyxGycfc", + "mangledName": "$s11VideoSDKRTC23BoundRawHistogramMetricCACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(explicitBoundaries:counts:startDate:endDate:count:sum:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC6record18explicitBoundaries6counts9startDate03endL05count3sumySayxG_SaySiG10Foundation0L0VAOSixtF", + "mangledName": "$s11VideoSDKRTC23BoundRawHistogramMetricC6record18explicitBoundaries6counts9startDate03endL05count3sumySayxG_SaySiG10Foundation0L0VAOSixtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC", + "mangledName": "$s11VideoSDKRTC23BoundRawHistogramMetricC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CallbackRegistration", + "printedName": "CallbackRegistration", + "children": [ + { + "kind": "Function", + "name": "execute", + "printedName": "execute(reader:startEpochNanos:epochNanos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "RegisteredReader", + "printedName": "VideoSDKRTC.RegisteredReader", + "usr": "s:11VideoSDKRTC16RegisteredReaderC" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20CallbackRegistrationC7execute6reader15startEpochNanos05epochI0yAA16RegisteredReaderC_s6UInt64VAKtF", + "mangledName": "$s11VideoSDKRTC20CallbackRegistrationC7execute6reader15startEpochNanos05epochI0yAA16RegisteredReaderC_s6UInt64VAKtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20CallbackRegistrationC", + "mangledName": "$s11VideoSDKRTC20CallbackRegistrationC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CameraPosition", + "printedName": "CameraPosition", + "children": [ + { + "kind": "Var", + "name": "back", + "printedName": "back", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CameraPosition.Type) -> VideoSDKRTC.CameraPosition", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraPosition", + "printedName": "VideoSDKRTC.CameraPosition", + "usr": "s:11VideoSDKRTC14CameraPositionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CameraPosition.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraPosition", + "printedName": "VideoSDKRTC.CameraPosition", + "usr": "s:11VideoSDKRTC14CameraPositionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14CameraPositionO4backyA2CmF", + "mangledName": "$s11VideoSDKRTC14CameraPositionO4backyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "front", + "printedName": "front", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CameraPosition.Type) -> VideoSDKRTC.CameraPosition", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraPosition", + "printedName": "VideoSDKRTC.CameraPosition", + "usr": "s:11VideoSDKRTC14CameraPositionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CameraPosition.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraPosition", + "printedName": "VideoSDKRTC.CameraPosition", + "usr": "s:11VideoSDKRTC14CameraPositionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14CameraPositionO5frontyA2CmF", + "mangledName": "$s11VideoSDKRTC14CameraPositionO5frontyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "toggle", + "printedName": "toggle()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14CameraPositionO6toggleyyF", + "mangledName": "$s11VideoSDKRTC14CameraPositionO6toggleyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.CameraPosition?", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraPosition", + "printedName": "VideoSDKRTC.CameraPosition", + "usr": "s:11VideoSDKRTC14CameraPositionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14CameraPositionO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC14CameraPositionO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14CameraPositionO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC14CameraPositionO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14CameraPositionO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC14CameraPositionO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC14CameraPositionO", + "mangledName": "$s11VideoSDKRTC14CameraPositionO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Clock", + "printedName": "Clock", + "children": [ + { + "kind": "Var", + "name": "now", + "printedName": "now", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC5ClockP3now10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC5ClockP3now10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC5ClockP3now10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC5ClockP3now10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Clock>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nanoTime", + "printedName": "nanoTime", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC5ClockPAAE8nanoTimes6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC5ClockPAAE8nanoTimes6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC5ClockPAAE8nanoTimes6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC5ClockPAAE8nanoTimes6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Clock>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC5ClockP", + "mangledName": "$s11VideoSDKRTC5ClockP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC2eeoiySbAA5Clock_p_AaC_ptF", + "mangledName": "$s11VideoSDKRTC2eeoiySbAA5Clock_p_AaC_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CollectionRegistration", + "printedName": "CollectionRegistration", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC22CollectionRegistrationP", + "mangledName": "$s11VideoSDKRTC22CollectionRegistrationP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "Opentelemetry_Proto_Common_V1_AnyValue", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "boolValue", + "printedName": "boolValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0Sbvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0Sbvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0Sbvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0Sbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0SbvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0SbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64Vvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64Vvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64Vvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64VvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "doubleValue", + "printedName": "doubleValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0Sdvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0Sdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0Sdvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0Sdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0Sdvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0Sdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0SdvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0SdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "arrayValue", + "printedName": "arrayValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0Vvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0Vvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0Vvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0VvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "kvlistValue", + "printedName": "kvlistValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bytesValue", + "printedName": "bytesValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_Value", + "printedName": "OneOf_Value", + "children": [ + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type) -> (Swift.String) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O06stringH0yAESScAEmF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O06stringH0yAESScAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "boolValue", + "printedName": "boolValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type) -> (Swift.Bool) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O04boolH0yAESbcAEmF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O04boolH0yAESbcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type) -> (Swift.Int64) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int64) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O03intH0yAEs5Int64VcAEmF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O03intH0yAEs5Int64VcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "doubleValue", + "printedName": "doubleValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type) -> (Swift.Double) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O06doubleH0yAESdcAEmF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O06doubleH0yAESdcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "arrayValue", + "printedName": "arrayValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type) -> (VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O05arrayH0yAeA0c1_d1_e1_f6_ArrayH0VcAEmF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O05arrayH0yAeA0c1_d1_e1_f6_ArrayH0VcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "kvlistValue", + "printedName": "kvlistValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type) -> (VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O06kvlistH0yAeA0c1_d1_e1_f4_KeyH4ListVcAEmF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O06kvlistH0yAeA0c1_d1_e1_f4_KeyH4ListVcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "bytesValue", + "printedName": "bytesValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type) -> (Foundation.Data) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O05bytesH0yAE10Foundation4DataVcAEmF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O05bytesH0yAE10Foundation4DataVcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueVACycfc", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04hashH0Sivp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04hashH0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04hashH0Sivg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04hashH0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "Opentelemetry_Proto_Common_V1_ArrayValue", + "children": [ + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvp", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvg", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvs", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvM", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueVACycfc", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV04hashH0Sivp", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV04hashH0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV04hashH0Sivg", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV04hashH0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "Opentelemetry_Proto_Common_V1_KeyValueList", + "children": [ + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvs", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvM", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListVACycfc", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV04hashH0Sivp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV04hashH0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV04hashH0Sivg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV04hashH0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "Opentelemetry_Proto_Common_V1_KeyValue", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0Vvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0Vvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0Vvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0VvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasValue", + "printedName": "hasValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV03hasH0Sbvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV03hasH0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV03hasH0Sbvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV03hasH0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearValue", + "printedName": "clearValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV05clearH0yyF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV05clearH0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueVACycfc", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV04hashH0Sivp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV04hashH0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV04hashH0Sivg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV04hashH0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvp", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvg", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvs", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvM", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvp", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvg", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvs", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvM", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedAttributesCount", + "printedName": "droppedAttributesCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeVACycfc", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CommonAdapter", + "printedName": "CommonAdapter", + "children": [ + { + "kind": "Function", + "name": "toProtoAttribute", + "printedName": "toProtoAttribute(key:attributeValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13CommonAdapterV16toProtoAttribute3key14attributeValueAA014Opentelemetry_f1_c7_V1_KeyJ0VSS_AA0gJ0OtFZ", + "mangledName": "$s11VideoSDKRTC13CommonAdapterV16toProtoAttribute3key14attributeValueAA014Opentelemetry_f1_c7_V1_KeyJ0VSS_AA0gJ0OtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toProtoInstrumentationScope", + "printedName": "toProtoInstrumentationScope(instrumentationScopeInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13CommonAdapterV27toProtoInstrumentationScope015instrumentationH4InfoAA014Opentelemetry_f1_c4_V1_gH0VAA0ghJ0V_tFZ", + "mangledName": "$s11VideoSDKRTC13CommonAdapterV27toProtoInstrumentationScope015instrumentationH4InfoAA014Opentelemetry_f1_c4_V1_gH0VAA0ghJ0V_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13CommonAdapterV", + "mangledName": "$s11VideoSDKRTC13CommonAdapterV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ContextManager", + "printedName": "ContextManager", + "children": [ + { + "kind": "Function", + "name": "getCurrentContextValue", + "printedName": "getCurrentContextValue(forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AnyObject?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ContextManagerP010getCurrentC5Value6forKeyyXlSgAA013OpenTelemetryC4KeysO_tF", + "mangledName": "$s11VideoSDKRTC14ContextManagerP010getCurrentC5Value6forKeyyXlSgAA013OpenTelemetryC4KeysO_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ContextManager>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCurrentContextValue", + "printedName": "setCurrentContextValue(forKey:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ContextManagerP010setCurrentC5Value6forKey5valueyAA013OpenTelemetryC4KeysO_yXltF", + "mangledName": "$s11VideoSDKRTC14ContextManagerP010setCurrentC5Value6forKey5valueyAA013OpenTelemetryC4KeysO_yXltF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ContextManager>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeContextValue", + "printedName": "removeContextValue(forKey:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ContextManagerP06removeC5Value6forKey5valueyAA013OpenTelemetryC4KeysO_yXltF", + "mangledName": "$s11VideoSDKRTC14ContextManagerP06removeC5Value6forKey5valueyAA013OpenTelemetryC4KeysO_yXltF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ContextManager>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14ContextManagerP", + "mangledName": "$s11VideoSDKRTC14ContextManagerP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ContextPropagators", + "printedName": "ContextPropagators", + "children": [ + { + "kind": "Var", + "name": "textMapPropagator", + "printedName": "textMapPropagator", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP17textMapPropagatorAA04TextfG0_pvp", + "mangledName": "$s11VideoSDKRTC18ContextPropagatorsP17textMapPropagatorAA04TextfG0_pvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP17textMapPropagatorAA04TextfG0_pvg", + "mangledName": "$s11VideoSDKRTC18ContextPropagatorsP17textMapPropagatorAA04TextfG0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ContextPropagators>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "textMapBaggagePropagator", + "printedName": "textMapBaggagePropagator", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapBaggagePropagator", + "printedName": "VideoSDKRTC.TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP24textMapBaggagePropagatorAA04TextfgH0_pvp", + "mangledName": "$s11VideoSDKRTC18ContextPropagatorsP24textMapBaggagePropagatorAA04TextfgH0_pvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapBaggagePropagator", + "printedName": "VideoSDKRTC.TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP24textMapBaggagePropagatorAA04TextfgH0_pvg", + "mangledName": "$s11VideoSDKRTC18ContextPropagatorsP24textMapBaggagePropagatorAA04TextfgH0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ContextPropagators>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP", + "mangledName": "$s11VideoSDKRTC18ContextPropagatorsP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CounterMetric", + "printedName": "CounterMetric", + "children": [ + { + "kind": "AssociatedType", + "name": "T", + "printedName": "T", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC13CounterMetricP1TQa", + "mangledName": "$s11VideoSDKRTC13CounterMetricP1TQa", + "moduleName": "VideoSDKRTC", + "protocolReq": true + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13CounterMetricP3add5value8labelsety1TQz_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC13CounterMetricP3add5value8labelsety1TQz_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.CounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13CounterMetricP3add5value6labelsy1TQz_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC13CounterMetricP3add5value6labelsy1TQz_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.CounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundCounterMetric", + "printedName": "VideoSDKRTC.BoundCounterMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC18BoundCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13CounterMetricP4bind8labelsetAA05BoundcD0Cy1TQzGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC13CounterMetricP4bind8labelsetAA05BoundcD0Cy1TQzGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.CounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundCounterMetric", + "printedName": "VideoSDKRTC.BoundCounterMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC18BoundCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13CounterMetricP4bind6labelsAA05BoundcD0Cy1TQzGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC13CounterMetricP4bind6labelsAA05BoundcD0Cy1TQzGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.CounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13CounterMetricP", + "mangledName": "$s11VideoSDKRTC13CounterMetricP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AnyCounterMetric", + "printedName": "AnyCounterMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCounterMetric", + "printedName": "VideoSDKRTC.AnyCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16AnyCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16AnyCounterMetricVyACyxGqd__c1TQyd__RszAA0dE0Rd__lufc", + "mangledName": "$s11VideoSDKRTC16AnyCounterMetricVyACyxGqd__c1TQyd__RszAA0dE0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 == τ_1_0.T, τ_1_0 : VideoSDKRTC.CounterMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AnyCounterMetricV3add5value8labelsetyx_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC16AnyCounterMetricV3add5value8labelsetyx_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AnyCounterMetricV3add5value6labelsyx_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC16AnyCounterMetricV3add5value6labelsyx_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundCounterMetric", + "printedName": "VideoSDKRTC.BoundCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AnyCounterMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC16AnyCounterMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundCounterMetric", + "printedName": "VideoSDKRTC.BoundCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AnyCounterMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC16AnyCounterMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16AnyCounterMetricV", + "mangledName": "$s11VideoSDKRTC16AnyCounterMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CounterMetric", + "printedName": "CounterMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC13CounterMetricP", + "mangledName": "$s11VideoSDKRTC13CounterMetricP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoopCounterMetric", + "printedName": "NoopCounterMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopCounterMetric", + "printedName": "VideoSDKRTC.NoopCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17NoopCounterMetricV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17NoopCounterMetricVACyxGycfc", + "mangledName": "$s11VideoSDKRTC17NoopCounterMetricVACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17NoopCounterMetricV3add5value8labelsetyx_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC17NoopCounterMetricV3add5value8labelsetyx_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17NoopCounterMetricV3add5value6labelsyx_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC17NoopCounterMetricV3add5value6labelsyx_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundCounterMetric", + "printedName": "VideoSDKRTC.BoundCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17NoopCounterMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC17NoopCounterMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundCounterMetric", + "printedName": "VideoSDKRTC.BoundCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17NoopCounterMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC17NoopCounterMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC17NoopCounterMetricV", + "mangledName": "$s11VideoSDKRTC17NoopCounterMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CounterMetric", + "printedName": "CounterMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC13CounterMetricP", + "mangledName": "$s11VideoSDKRTC13CounterMetricP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CounterSumAggregator", + "printedName": "CounterSumAggregator", + "children": [ + { + "kind": "Function", + "name": "update", + "printedName": "update(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20CounterSumAggregatorC6update5valueyx_tF", + "mangledName": "$s11VideoSDKRTC20CounterSumAggregatorC6update5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkpoint", + "printedName": "checkpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20CounterSumAggregatorC10checkpointyyF", + "mangledName": "$s11VideoSDKRTC20CounterSumAggregatorC10checkpointyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20CounterSumAggregatorC12toMetricDataAA0gH0_pyF", + "mangledName": "$s11VideoSDKRTC20CounterSumAggregatorC12toMetricDataAA0gH0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAggregationType", + "printedName": "getAggregationType()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20CounterSumAggregatorC18getAggregationTypeAA0gH0OyF", + "mangledName": "$s11VideoSDKRTC20CounterSumAggregatorC18getAggregationTypeAA0gH0OyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20CounterSumAggregatorC", + "mangledName": "$s11VideoSDKRTC20CounterSumAggregatorC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:11VideoSDKRTC10AggregatorC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.Aggregator<τ_0_0>" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "CustomRTCMediaStream", + "printedName": "CustomRTCMediaStream", + "declKind": "Class", + "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC", + "mangledName": "$s11VideoSDKRTC20CustomRTCMediaStreamC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CustomVideoTrackConfig", + "printedName": "CustomVideoTrackConfig", + "children": [ + { + "kind": "Var", + "name": "h90p_w160p", + "printedName": "h90p_w160p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO10h90p_w160pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO10h90p_w160pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h180p_w320p", + "printedName": "h180p_w320p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h180p_w320pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h180p_w320pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h216p_w384p", + "printedName": "h216p_w384p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h216p_w384pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h216p_w384pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h360p_w640p", + "printedName": "h360p_w640p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h360p_w640pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h360p_w640pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h540p_w960p", + "printedName": "h540p_w960p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h540p_w960pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h540p_w960pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h720p_w1280p", + "printedName": "h720p_w1280p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO12h720p_w1280pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO12h720p_w1280pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h1080p_w1920p", + "printedName": "h1080p_w1920p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1920pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1920pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h1440p_w2560p", + "printedName": "h1440p_w2560p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w2560pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w2560pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h2160p_w3840p", + "printedName": "h2160p_w3840p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h2160p_w3840pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h2160p_w3840pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h120p_w160p", + "printedName": "h120p_w160p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h120p_w160pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h120p_w160pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h180p_w240p", + "printedName": "h180p_w240p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h180p_w240pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h180p_w240pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h240p_w320p", + "printedName": "h240p_w320p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h240p_w320pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h240p_w320pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h360p_w480p", + "printedName": "h360p_w480p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h360p_w480pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h360p_w480pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h480p_w640p", + "printedName": "h480p_w640p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h480p_w640pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h480p_w640pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h540p_w720p", + "printedName": "h540p_w720p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h540p_w720pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h540p_w720pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h720p_w960p", + "printedName": "h720p_w960p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h720p_w960pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h720p_w960pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h1080p_w1440p", + "printedName": "h1080p_w1440p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1440pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1440pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h1440p_w1920p", + "printedName": "h1440p_w1920p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w1920pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w1920pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultAggregation", + "printedName": "DefaultAggregation", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAggregation", + "printedName": "VideoSDKRTC.DefaultAggregation", + "usr": "s:11VideoSDKRTC18DefaultAggregationC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18DefaultAggregationC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC18DefaultAggregationC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAggregation", + "printedName": "VideoSDKRTC.DefaultAggregation", + "usr": "s:11VideoSDKRTC18DefaultAggregationC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18DefaultAggregationC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC18DefaultAggregationC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createAggregator", + "printedName": "createAggregator(descriptor:exemplarFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableAggregator", + "printedName": "VideoSDKRTC.StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DefaultAggregationC16createAggregator10descriptor14exemplarFilterAA06StableF0_pAA20InstrumentDescriptorV_AA08ExemplarI0_ptF", + "mangledName": "$s11VideoSDKRTC18DefaultAggregationC16createAggregator10descriptor14exemplarFilterAA06StableF0_pAA20InstrumentDescriptorV_AA08ExemplarI0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isCompatible", + "printedName": "isCompatible(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DefaultAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "mangledName": "$s11VideoSDKRTC18DefaultAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18DefaultAggregationC", + "mangledName": "$s11VideoSDKRTC18DefaultAggregationC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Aggregation", + "printedName": "Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP", + "mangledName": "$s11VideoSDKRTC11AggregationP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultBaggage", + "printedName": "DefaultBaggage", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(entries:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultBaggage", + "printedName": "VideoSDKRTC.DefaultBaggage", + "usr": "s:11VideoSDKRTC14DefaultBaggageC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[VideoSDKRTC.EntryKey : VideoSDKRTC.Entry?]", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Entry?", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14DefaultBaggageC7entriesACSDyAA8EntryKeyVAA0F0VSgG_tcfc", + "mangledName": "$s11VideoSDKRTC14DefaultBaggageC7entriesACSDyAA8EntryKeyVAA0F0VSgG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "baggageBuilder", + "printedName": "baggageBuilder()", + "children": [ + { + "kind": "TypeNominal", + "name": "BaggageBuilder", + "printedName": "VideoSDKRTC.BaggageBuilder", + "usr": "s:11VideoSDKRTC14BaggageBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DefaultBaggageC14baggageBuilderAA0dF0_pyFZ", + "mangledName": "$s11VideoSDKRTC14DefaultBaggageC14baggageBuilderAA0dF0_pyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getEntries", + "printedName": "getEntries()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Entry]", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DefaultBaggageC10getEntriesSayAA5EntryVGyF", + "mangledName": "$s11VideoSDKRTC14DefaultBaggageC10getEntriesSayAA5EntryVGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getEntryValue", + "printedName": "getEntryValue(key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DefaultBaggageC13getEntryValue3keyAA0fG0VSgAA0F3KeyV_tF", + "mangledName": "$s11VideoSDKRTC14DefaultBaggageC13getEntryValue3keyAA0fG0VSgAA0F3KeyV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DefaultBaggage", + "printedName": "VideoSDKRTC.DefaultBaggage", + "usr": "s:11VideoSDKRTC14DefaultBaggageC" + }, + { + "kind": "TypeNominal", + "name": "DefaultBaggage", + "printedName": "VideoSDKRTC.DefaultBaggage", + "usr": "s:11VideoSDKRTC14DefaultBaggageC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DefaultBaggageC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC14DefaultBaggageC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC14DefaultBaggageC", + "mangledName": "$s11VideoSDKRTC14DefaultBaggageC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Baggage", + "printedName": "Baggage", + "usr": "s:11VideoSDKRTC7BaggageP", + "mangledName": "$s11VideoSDKRTC7BaggageP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultBaggageBuilder", + "printedName": "DefaultBaggageBuilder", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultBaggageBuilder", + "printedName": "VideoSDKRTC.DefaultBaggageBuilder", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderCACycfc", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setParent", + "printedName": "setParent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Baggage?", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC9setParentyACXDAA0D0_pSgF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderC9setParentyACXDAA0D0_pSgF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setNoParent", + "printedName": "setNoParent()", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC11setNoParentACXDyF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderC11setNoParentACXDyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "put", + "printedName": "put(key:value:metadata:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + }, + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC3put3key5value8metadataACXDAA8EntryKeyV_AA0J5ValueVAA0J8MetadataVSgtF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderC3put3key5value8metadataACXDAA8EntryKeyV_AA0J5ValueVAA0J8MetadataVSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "put", + "printedName": "put(key:value:metadata:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC3put3key5value8metadataACXDSS_S2SSgtF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderC3put3key5value8metadataACXDSS_S2SSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "remove", + "printedName": "remove(key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC6remove3keyACXDAA8EntryKeyV_tF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderC6remove3keyACXDAA8EntryKeyV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC5buildAA0D0_pyF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderC5buildAA0D0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "BaggageBuilder", + "printedName": "BaggageBuilder", + "usr": "s:11VideoSDKRTC14BaggageBuilderP", + "mangledName": "$s11VideoSDKRTC14BaggageBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultBaggageManager", + "printedName": "DefaultBaggageManager", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultBaggageManager", + "printedName": "VideoSDKRTC.DefaultBaggageManager", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageManagerC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultBaggageManager", + "printedName": "VideoSDKRTC.DefaultBaggageManager", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageManagerC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DefaultBaggageManager", + "printedName": "VideoSDKRTC.DefaultBaggageManager", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC8instanceACvsZ", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageManagerC8instanceACvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC8instanceACvMZ", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageManagerC8instanceACvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "baggageBuilder", + "printedName": "baggageBuilder()", + "children": [ + { + "kind": "TypeNominal", + "name": "BaggageBuilder", + "printedName": "VideoSDKRTC.BaggageBuilder", + "usr": "s:11VideoSDKRTC14BaggageBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC14baggageBuilderAA0dG0_pyF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageManagerC14baggageBuilderAA0dG0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentBaggage", + "printedName": "getCurrentBaggage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Baggage?", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC010getCurrentD0AA0D0_pSgyF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageManagerC010getCurrentD0AA0D0_pSgyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageManagerC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "BaggageManager", + "printedName": "BaggageManager", + "usr": "s:11VideoSDKRTC14BaggageManagerP", + "mangledName": "$s11VideoSDKRTC14BaggageManagerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultContextPropagators", + "printedName": "DefaultContextPropagators", + "children": [ + { + "kind": "Var", + "name": "textMapPropagator", + "printedName": "textMapPropagator", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvp", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvg", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvs", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvM", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "textMapBaggagePropagator", + "printedName": "textMapBaggagePropagator", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapBaggagePropagator", + "printedName": "VideoSDKRTC.TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvp", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapBaggagePropagator", + "printedName": "VideoSDKRTC.TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvg", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TextMapBaggagePropagator", + "printedName": "VideoSDKRTC.TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvs", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvM", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultContextPropagators", + "printedName": "VideoSDKRTC.DefaultContextPropagators", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsVACycfc", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(textPropagators:baggagePropagator:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultContextPropagators", + "printedName": "VideoSDKRTC.DefaultContextPropagators", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.TextMapPropagator]", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "TextMapBaggagePropagator", + "printedName": "VideoSDKRTC.TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV04textE017baggagePropagatorACSayAA07TextMapH0_pG_AA0ij7BaggageH0_ptcfc", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV04textE017baggagePropagatorACSayAA07TextMapH0_pG_AA0ij7BaggageH0_ptcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addTextMapPropagator", + "printedName": "addTextMapPropagator(textFormat:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV20addTextMapPropagator10textFormatyAA0ghI0_p_tF", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV20addTextMapPropagator10textFormatyAA0ghI0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ContextPropagators", + "printedName": "ContextPropagators", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP", + "mangledName": "$s11VideoSDKRTC18ContextPropagatorsP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "children": [ + { + "kind": "Function", + "name": "eventBuilder", + "printedName": "eventBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "EventBuilder", + "printedName": "VideoSDKRTC.EventBuilder", + "usr": "s:11VideoSDKRTC12EventBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13DefaultLoggerC12eventBuilder4nameAA05EventF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC13DefaultLoggerC12eventBuilder4nameAA05EventF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logRecordBuilder", + "printedName": "logRecordBuilder()", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordBuilder", + "printedName": "VideoSDKRTC.LogRecordBuilder", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13DefaultLoggerC16logRecordBuilderAA03LogfG0_pyF", + "mangledName": "$s11VideoSDKRTC13DefaultLoggerC16logRecordBuilderAA03LogfG0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC13DefaultLoggerC", + "mangledName": "$s11VideoSDKRTC13DefaultLoggerC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Logger", + "printedName": "Logger", + "usr": "s:11VideoSDKRTC6LoggerP", + "mangledName": "$s11VideoSDKRTC6LoggerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultLoggerProvider", + "printedName": "DefaultLoggerProvider", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerProvider", + "printedName": "VideoSDKRTC.LoggerProvider", + "usr": "s:11VideoSDKRTC14LoggerProviderP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21DefaultLoggerProviderC8instanceAA0dE0_pvpZ", + "mangledName": "$s11VideoSDKRTC21DefaultLoggerProviderC8instanceAA0dE0_pvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerProvider", + "printedName": "VideoSDKRTC.LoggerProvider", + "usr": "s:11VideoSDKRTC14LoggerProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21DefaultLoggerProviderC8instanceAA0dE0_pvgZ", + "mangledName": "$s11VideoSDKRTC21DefaultLoggerProviderC8instanceAA0dE0_pvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationScopeName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "VideoSDKRTC.Logger", + "usr": "s:11VideoSDKRTC6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultLoggerProviderC3get24instrumentationScopeNameAA0D0_pSS_tF", + "mangledName": "$s11VideoSDKRTC21DefaultLoggerProviderC3get24instrumentationScopeNameAA0D0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loggerBuilder", + "printedName": "loggerBuilder(instrumentationScopeName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerBuilder", + "printedName": "VideoSDKRTC.LoggerBuilder", + "usr": "s:11VideoSDKRTC13LoggerBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultLoggerProviderC13loggerBuilder24instrumentationScopeNameAA0dG0_pSS_tF", + "mangledName": "$s11VideoSDKRTC21DefaultLoggerProviderC13loggerBuilder24instrumentationScopeNameAA0dG0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21DefaultLoggerProviderC", + "mangledName": "$s11VideoSDKRTC21DefaultLoggerProviderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LoggerProvider", + "printedName": "LoggerProvider", + "usr": "s:11VideoSDKRTC14LoggerProviderP", + "mangledName": "$s11VideoSDKRTC14LoggerProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultMeterProvider", + "printedName": "DefaultMeterProvider", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvpZ", + "mangledName": "$s11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvgZ", + "mangledName": "$s11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvsZ", + "mangledName": "$s11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvMZ", + "mangledName": "$s11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "setDefault", + "printedName": "setDefault(meterFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20DefaultMeterProviderC03setC012meterFactoryyAA0dE0_p_tFZ", + "mangledName": "$s11VideoSDKRTC20DefaultMeterProviderC03setC012meterFactoryyAA0dE0_p_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationName:instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Meter", + "printedName": "VideoSDKRTC.Meter", + "usr": "s:11VideoSDKRTC5MeterP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20DefaultMeterProviderC3get19instrumentationName0G7VersionAA0D0_pSS_SSSgtF", + "mangledName": "$s11VideoSDKRTC20DefaultMeterProviderC3get19instrumentationName0G7VersionAA0D0_pSS_SSSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20DefaultMeterProviderC", + "mangledName": "$s11VideoSDKRTC20DefaultMeterProviderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "MeterProvider", + "printedName": "MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP", + "mangledName": "$s11VideoSDKRTC13MeterProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultStableMeter", + "printedName": "DefaultStableMeter", + "children": [ + { + "kind": "Function", + "name": "counterBuilder", + "printedName": "counterBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LongCounterBuilder", + "printedName": "VideoSDKRTC.LongCounterBuilder", + "usr": "s:11VideoSDKRTC18LongCounterBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DefaultStableMeterC14counterBuilder4nameAA011LongCounterG0_pSS_tF", + "mangledName": "$s11VideoSDKRTC18DefaultStableMeterC14counterBuilder4nameAA011LongCounterG0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "upDownCounterBuilder", + "printedName": "upDownCounterBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LongUpDownCounterBuilder", + "printedName": "VideoSDKRTC.LongUpDownCounterBuilder", + "usr": "s:11VideoSDKRTC24LongUpDownCounterBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DefaultStableMeterC20upDownCounterBuilder4nameAA06LongUpghI0_pSS_tF", + "mangledName": "$s11VideoSDKRTC18DefaultStableMeterC20upDownCounterBuilder4nameAA06LongUpghI0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "histogramBuilder", + "printedName": "histogramBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleHistogramBuilder", + "printedName": "VideoSDKRTC.DoubleHistogramBuilder", + "usr": "s:11VideoSDKRTC22DoubleHistogramBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DefaultStableMeterC16histogramBuilder4nameAA015DoubleHistogramG0_pSS_tF", + "mangledName": "$s11VideoSDKRTC18DefaultStableMeterC16histogramBuilder4nameAA015DoubleHistogramG0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "gaugeBuilder", + "printedName": "gaugeBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleGaugeBuilder", + "printedName": "VideoSDKRTC.DoubleGaugeBuilder", + "usr": "s:11VideoSDKRTC18DoubleGaugeBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DefaultStableMeterC12gaugeBuilder4nameAA011DoubleGaugeG0_pSS_tF", + "mangledName": "$s11VideoSDKRTC18DefaultStableMeterC12gaugeBuilder4nameAA011DoubleGaugeG0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18DefaultStableMeterC", + "mangledName": "$s11VideoSDKRTC18DefaultStableMeterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "StableMeter", + "printedName": "StableMeter", + "usr": "s:11VideoSDKRTC11StableMeterP", + "mangledName": "$s11VideoSDKRTC11StableMeterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultStableMeterProvider", + "printedName": "DefaultStableMeterProvider", + "children": [ + { + "kind": "Function", + "name": "noop", + "printedName": "noop()", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterBuilder", + "printedName": "VideoSDKRTC.MeterBuilder", + "usr": "s:11VideoSDKRTC12MeterBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC4noopAA0E7Builder_pyFZ", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC4noopAA0E7Builder_pyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeter", + "printedName": "VideoSDKRTC.StableMeter", + "usr": "s:11VideoSDKRTC11StableMeterP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC3get4nameAA0dE0_pSS_tF", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC3get4nameAA0dE0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "meterBuilder", + "printedName": "meterBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterBuilder", + "printedName": "VideoSDKRTC.MeterBuilder", + "usr": "s:11VideoSDKRTC12MeterBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC12meterBuilder4nameAA0eH0_pSS_tF", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC12meterBuilder4nameAA0eH0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeterProvider", + "printedName": "VideoSDKRTC.StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvpZ", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeterProvider", + "printedName": "VideoSDKRTC.StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvgZ", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "StableMeterProvider", + "printedName": "VideoSDKRTC.StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvsZ", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvMZ", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "StableMeterProvider", + "printedName": "StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP", + "mangledName": "$s11VideoSDKRTC19StableMeterProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultTracer", + "printedName": "DefaultTracer", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultTracer", + "printedName": "VideoSDKRTC.DefaultTracer", + "usr": "s:11VideoSDKRTC13DefaultTracerC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13DefaultTracerC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC13DefaultTracerC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultTracer", + "printedName": "VideoSDKRTC.DefaultTracer", + "usr": "s:11VideoSDKRTC13DefaultTracerC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13DefaultTracerC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC13DefaultTracerC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DefaultTracer", + "printedName": "VideoSDKRTC.DefaultTracer", + "usr": "s:11VideoSDKRTC13DefaultTracerC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13DefaultTracerC8instanceACvsZ", + "mangledName": "$s11VideoSDKRTC13DefaultTracerC8instanceACvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13DefaultTracerC8instanceACvMZ", + "mangledName": "$s11VideoSDKRTC13DefaultTracerC8instanceACvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "spanBuilder", + "printedName": "spanBuilder(spanName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanBuilder", + "printedName": "VideoSDKRTC.SpanBuilder", + "usr": "s:11VideoSDKRTC11SpanBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13DefaultTracerC11spanBuilder0E4NameAA04SpanF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC13DefaultTracerC11spanBuilder0E4NameAA04SpanF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC13DefaultTracerC", + "mangledName": "$s11VideoSDKRTC13DefaultTracerC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Tracer", + "printedName": "Tracer", + "usr": "s:11VideoSDKRTC6TracerP", + "mangledName": "$s11VideoSDKRTC6TracerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultTracerProvider", + "printedName": "DefaultTracerProvider", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultTracerProvider", + "printedName": "VideoSDKRTC.DefaultTracerProvider", + "usr": "s:11VideoSDKRTC21DefaultTracerProviderC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21DefaultTracerProviderC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC21DefaultTracerProviderC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultTracerProvider", + "printedName": "VideoSDKRTC.DefaultTracerProvider", + "usr": "s:11VideoSDKRTC21DefaultTracerProviderC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21DefaultTracerProviderC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC21DefaultTracerProviderC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationName:instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Tracer", + "printedName": "VideoSDKRTC.Tracer", + "usr": "s:11VideoSDKRTC6TracerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultTracerProviderC3get19instrumentationName0G7VersionAA0D0_pSS_SSSgtF", + "mangledName": "$s11VideoSDKRTC21DefaultTracerProviderC3get19instrumentationName0G7VersionAA0D0_pSS_SSSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21DefaultTracerProviderC", + "mangledName": "$s11VideoSDKRTC21DefaultTracerProviderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "TracerProvider", + "printedName": "TracerProvider", + "usr": "s:11VideoSDKRTC14TracerProviderP", + "mangledName": "$s11VideoSDKRTC14TracerProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FileDescriptorSet", + "printedName": "Google_Protobuf_FileDescriptorSet", + "children": [ + { + "kind": "Var", + "name": "file", + "printedName": "file", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FileDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FileDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FileDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorSet", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetVACycfc", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorSet", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorSet", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FileDescriptorProto", + "printedName": "Google_Protobuf_FileDescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "package", + "printedName": "package", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPackage", + "printedName": "hasPackage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasPackageSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasPackageSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasPackageSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasPackageSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPackage", + "printedName": "clearPackage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV12clearPackageyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV12clearPackageyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "dependency", + "printedName": "dependency", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "publicDependency", + "printedName": "publicDependency", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "weakDependency", + "printedName": "weakDependency", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "messageType", + "printedName": "messageType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enumType", + "printedName": "enumType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "service", + "printedName": "service", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "extension", + "printedName": "extension", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "sourceCodeInfo", + "printedName": "sourceCodeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0Vvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0Vvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0Vvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0VvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSourceCodeInfo", + "printedName": "hasSourceCodeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17hasSourceCodeInfoSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17hasSourceCodeInfoSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17hasSourceCodeInfoSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17hasSourceCodeInfoSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSourceCodeInfo", + "printedName": "clearSourceCodeInfo()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV19clearSourceCodeInfoyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV19clearSourceCodeInfoyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "syntax", + "printedName": "syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSyntax", + "printedName": "hasSyntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hasSyntaxSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hasSyntaxSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hasSyntaxSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hasSyntaxSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSyntax", + "printedName": "clearSyntax()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11clearSyntaxyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11clearSyntaxyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "edition", + "printedName": "edition", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasEdition", + "printedName": "hasEdition", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasEditionSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasEditionSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasEditionSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasEditionSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearEdition", + "printedName": "clearEdition()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV12clearEditionyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV12clearEditionyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "Google_Protobuf_DescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "field", + "printedName": "field", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "extension", + "printedName": "extension", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nestedType", + "printedName": "nestedType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enumType", + "printedName": "enumType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "extensionRange", + "printedName": "extensionRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "oneofDecl", + "printedName": "oneofDecl", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_OneofDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_OneofDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_OneofDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MessageOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MessageOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MessageOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MessageOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MessageOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MessageOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "reservedRange", + "printedName": "reservedRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reservedName", + "printedName": "reservedName", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ExtensionRange", + "printedName": "ExtensionRange", + "children": [ + { + "kind": "Var", + "name": "start", + "printedName": "start", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32Vvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32Vvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32Vvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32VvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasStart", + "printedName": "hasStart", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8hasStartSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8hasStartSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8hasStartSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8hasStartSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearStart", + "printedName": "clearStart()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV10clearStartyyF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV10clearStartyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "end", + "printedName": "end", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32Vvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32Vvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32Vvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32VvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasEnd", + "printedName": "hasEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV6hasEndSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV6hasEndSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV6hasEndSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV6hasEndSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearEnd", + "printedName": "clearEnd()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8clearEndyyF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8clearEndyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ExtensionRangeOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ExtensionRangeOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ExtensionRangeOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeVAEycfc", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExtensionRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV" + }, + { + "kind": "TypeNominal", + "name": "ExtensionRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ReservedRange", + "printedName": "ReservedRange", + "children": [ + { + "kind": "Var", + "name": "start", + "printedName": "start", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32Vvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32Vvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32Vvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32VvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasStart", + "printedName": "hasStart", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8hasStartSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8hasStartSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8hasStartSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8hasStartSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearStart", + "printedName": "clearStart()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV10clearStartyyF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV10clearStartyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "end", + "printedName": "end", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32Vvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32Vvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32Vvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32VvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasEnd", + "printedName": "hasEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV6hasEndSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV6hasEndSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV6hasEndSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV6hasEndSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearEnd", + "printedName": "clearEnd()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8clearEndyyF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8clearEndyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeVAEycfc", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV" + }, + { + "kind": "TypeNominal", + "name": "ReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_ExtensionRangeOptions", + "printedName": "Google_Protobuf_ExtensionRangeOptions", + "children": [ + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "declaration", + "printedName": "declaration", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration]", + "children": [ + { + "kind": "TypeNominal", + "name": "Declaration", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration]", + "children": [ + { + "kind": "TypeNominal", + "name": "Declaration", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration]", + "children": [ + { + "kind": "TypeNominal", + "name": "Declaration", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "verification", + "printedName": "verification", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasVerification", + "printedName": "hasVerification", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV15hasVerificationSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV15hasVerificationSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV15hasVerificationSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV15hasVerificationSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearVerification", + "printedName": "clearVerification()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17clearVerificationyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17clearVerificationyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "VerificationState", + "printedName": "VerificationState", + "children": [ + { + "kind": "Var", + "name": "declaration", + "printedName": "declaration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState.Type) -> VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO11declarationyA2EmF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO11declarationyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unverified", + "printedName": "unverified", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState.Type) -> VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO10unverifiedyA2EmF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO10unverifiedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateOAEycfc", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState?", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState]", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState]", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState]", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Declaration", + "printedName": "Declaration", + "children": [ + { + "kind": "Var", + "name": "number", + "printedName": "number", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32Vvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32Vvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32Vvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32VvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasNumber", + "printedName": "hasNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hasNumberSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hasNumberSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hasNumberSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hasNumberSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearNumber", + "printedName": "clearNumber()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11clearNumberyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11clearNumberyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "fullName", + "printedName": "fullName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFullName", + "printedName": "hasFullName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasFullNameSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasFullNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasFullNameSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasFullNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFullName", + "printedName": "clearFullName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13clearFullNameyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13clearFullNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasType", + "printedName": "hasType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV7hasTypeSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV7hasTypeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV7hasTypeSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV7hasTypeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearType", + "printedName": "clearType()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9clearTypeyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9clearTypeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "reserved", + "printedName": "reserved", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasReserved", + "printedName": "hasReserved", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasReservedSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasReservedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasReservedSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasReservedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearReserved", + "printedName": "clearReserved()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13clearReservedyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13clearReservedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "repeated", + "printedName": "repeated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasRepeated", + "printedName": "hasRepeated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasRepeatedSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasRepeatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasRepeatedSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasRepeatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearRepeated", + "printedName": "clearRepeated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13clearRepeatedyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13clearRepeatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Declaration", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationVAEycfc", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Declaration", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV" + }, + { + "kind": "TypeNominal", + "name": "Declaration", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ExtensionRangeOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ExtensionRangeOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ExtensionRangeOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "Google_Protobuf_FieldDescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "number", + "printedName": "number", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32Vvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32Vvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32Vvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32VvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasNumber", + "printedName": "hasNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hasNumberSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hasNumberSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hasNumberSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hasNumberSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearNumber", + "printedName": "clearNumber()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11clearNumberyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11clearNumberyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "label", + "printedName": "label", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasLabel", + "printedName": "hasLabel", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8hasLabelSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8hasLabelSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8hasLabelSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8hasLabelSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearLabel", + "printedName": "clearLabel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10clearLabelyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10clearLabelyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasType", + "printedName": "hasType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasTypeSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasTypeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasTypeSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasTypeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearType", + "printedName": "clearType()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9clearTypeyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9clearTypeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "typeName", + "printedName": "typeName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasTypeName", + "printedName": "hasTypeName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasTypeNameSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasTypeNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasTypeNameSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasTypeNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearTypeName", + "printedName": "clearTypeName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13clearTypeNameyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13clearTypeNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "extendee", + "printedName": "extendee", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasExtendee", + "printedName": "hasExtendee", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasExtendeeSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasExtendeeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasExtendeeSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasExtendeeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearExtendee", + "printedName": "clearExtendee()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13clearExtendeeyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13clearExtendeeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "defaultValue", + "printedName": "defaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDefaultValue", + "printedName": "hasDefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV15hasDefaultValueSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV15hasDefaultValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV15hasDefaultValueSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV15hasDefaultValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDefaultValue", + "printedName": "clearDefaultValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17clearDefaultValueyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17clearDefaultValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "oneofIndex", + "printedName": "oneofIndex", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32Vvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32Vvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32Vvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32VvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOneofIndex", + "printedName": "hasOneofIndex", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13hasOneofIndexSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13hasOneofIndexSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13hasOneofIndexSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13hasOneofIndexSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOneofIndex", + "printedName": "clearOneofIndex()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV15clearOneofIndexyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV15clearOneofIndexyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "jsonName", + "printedName": "jsonName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJsonName", + "printedName": "hasJsonName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasJsonNameSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasJsonNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasJsonNameSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasJsonNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJsonName", + "printedName": "clearJsonName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13clearJsonNameyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13clearJsonNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "proto3Optional", + "printedName": "proto3Optional", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasProto3Optional", + "printedName": "hasProto3Optional", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17hasProto3OptionalSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17hasProto3OptionalSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17hasProto3OptionalSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17hasProto3OptionalSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearProto3Optional", + "printedName": "clearProto3Optional()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV19clearProto3OptionalyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV19clearProto3OptionalyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TypeEnum", + "printedName": "TypeEnum", + "children": [ + { + "kind": "Var", + "name": "double", + "printedName": "double", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6doubleyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6doubleyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "float", + "printedName": "float", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5floatyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5floatyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "int64", + "printedName": "int64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5int64yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5int64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "uint64", + "printedName": "uint64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6uint64yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6uint64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "int32", + "printedName": "int32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5int32yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5int32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fixed64", + "printedName": "fixed64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO7fixed64yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO7fixed64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fixed32", + "printedName": "fixed32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO7fixed32yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO7fixed32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "bool", + "printedName": "bool", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO4boolyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO4boolyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "string", + "printedName": "string", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6stringyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6stringyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "group", + "printedName": "group", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5groupyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5groupyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO7messageyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO7messageyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "bytes", + "printedName": "bytes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5bytesyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5bytesyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "uint32", + "printedName": "uint32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6uint32yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6uint32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "enum", + "printedName": "enum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO4enumyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO4enumyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "sfixed32", + "printedName": "sfixed32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8sfixed32yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8sfixed32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "sfixed64", + "printedName": "sfixed64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8sfixed64yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8sfixed64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "sint32", + "printedName": "sint32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6sint32yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6sint32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "sint64", + "printedName": "sint64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6sint64yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6sint64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumOAEycfc", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum]", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum]", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum]", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Label", + "printedName": "Label", + "children": [ + { + "kind": "Var", + "name": "optional", + "printedName": "optional", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8optionalyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8optionalyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "required", + "printedName": "required", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8requiredyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8requiredyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "repeated", + "printedName": "repeated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8repeatedyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8repeatedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelOAEycfc", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label?", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label]", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label]", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label]", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_OneofDescriptorProto", + "printedName": "Google_Protobuf_OneofDescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "Google_Protobuf_EnumDescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "reservedRange", + "printedName": "reservedRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reservedName", + "printedName": "reservedName", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "EnumReservedRange", + "printedName": "EnumReservedRange", + "children": [ + { + "kind": "Var", + "name": "start", + "printedName": "start", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32Vvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32Vvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32Vvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32VvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasStart", + "printedName": "hasStart", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8hasStartSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8hasStartSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8hasStartSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8hasStartSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearStart", + "printedName": "clearStart()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV10clearStartyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV10clearStartyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "end", + "printedName": "end", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32Vvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32Vvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32Vvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32VvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasEnd", + "printedName": "hasEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV6hasEndSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV6hasEndSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV6hasEndSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV6hasEndSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearEnd", + "printedName": "clearEnd()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8clearEndyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8clearEndyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeVAEycfc", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "EnumReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV" + }, + { + "kind": "TypeNominal", + "name": "EnumReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_EnumValueDescriptorProto", + "printedName": "Google_Protobuf_EnumValueDescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "number", + "printedName": "number", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32Vvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32Vvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32Vvs", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32VvM", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasNumber", + "printedName": "hasNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV9hasNumberSbvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV9hasNumberSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV9hasNumberSbvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV9hasNumberSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearNumber", + "printedName": "clearNumber()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV11clearNumberyyF", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV11clearNumberyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueOptions", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueOptions", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueOptions", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvs", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvM", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_ServiceDescriptorProto", + "printedName": "Google_Protobuf_ServiceDescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "method", + "printedName": "method", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_MethodDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodDescriptorProto", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_MethodDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodDescriptorProto", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_MethodDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodDescriptorProto", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvs", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvM", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_MethodDescriptorProto", + "printedName": "Google_Protobuf_MethodDescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "inputType", + "printedName": "inputType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasInputType", + "printedName": "hasInputType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV12hasInputTypeSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV12hasInputTypeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV12hasInputTypeSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV12hasInputTypeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearInputType", + "printedName": "clearInputType()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV14clearInputTypeyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV14clearInputTypeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "outputType", + "printedName": "outputType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOutputType", + "printedName": "hasOutputType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13hasOutputTypeSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13hasOutputTypeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13hasOutputTypeSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13hasOutputTypeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOutputType", + "printedName": "clearOutputType()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clearOutputTypeyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clearOutputTypeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "clientStreaming", + "printedName": "clientStreaming", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasClientStreaming", + "printedName": "hasClientStreaming", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasClientStreamingSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasClientStreamingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasClientStreamingSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasClientStreamingSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearClientStreaming", + "printedName": "clearClientStreaming()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV20clearClientStreamingyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV20clearClientStreamingyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "serverStreaming", + "printedName": "serverStreaming", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasServerStreaming", + "printedName": "hasServerStreaming", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasServerStreamingSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasServerStreamingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasServerStreamingSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasServerStreamingSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearServerStreaming", + "printedName": "clearServerStreaming()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV20clearServerStreamingyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV20clearServerStreamingyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodDescriptorProto", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodDescriptorProto", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodDescriptorProto", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FileOptions", + "printedName": "Google_Protobuf_FileOptions", + "children": [ + { + "kind": "Var", + "name": "javaPackage", + "printedName": "javaPackage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJavaPackage", + "printedName": "hasJavaPackage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasJavaPackageSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasJavaPackageSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasJavaPackageSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasJavaPackageSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJavaPackage", + "printedName": "clearJavaPackage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearJavaPackageyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearJavaPackageyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "javaOuterClassname", + "printedName": "javaOuterClassname", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJavaOuterClassname", + "printedName": "hasJavaOuterClassname", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasJavaOuterClassnameSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasJavaOuterClassnameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasJavaOuterClassnameSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasJavaOuterClassnameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJavaOuterClassname", + "printedName": "clearJavaOuterClassname()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV23clearJavaOuterClassnameyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV23clearJavaOuterClassnameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "javaMultipleFiles", + "printedName": "javaMultipleFiles", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJavaMultipleFiles", + "printedName": "hasJavaMultipleFiles", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasJavaMultipleFilesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasJavaMultipleFilesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasJavaMultipleFilesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasJavaMultipleFilesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJavaMultipleFiles", + "printedName": "clearJavaMultipleFiles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV22clearJavaMultipleFilesyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV22clearJavaMultipleFilesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "javaGenerateEqualsAndHash", + "printedName": "javaGenerateEqualsAndHash", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJavaGenerateEqualsAndHash", + "printedName": "hasJavaGenerateEqualsAndHash", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV28hasJavaGenerateEqualsAndHashSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV28hasJavaGenerateEqualsAndHashSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV28hasJavaGenerateEqualsAndHashSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV28hasJavaGenerateEqualsAndHashSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJavaGenerateEqualsAndHash", + "printedName": "clearJavaGenerateEqualsAndHash()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV30clearJavaGenerateEqualsAndHashyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV30clearJavaGenerateEqualsAndHashyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "javaStringCheckUtf8", + "printedName": "javaStringCheckUtf8", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8Sbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8Sbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8Sbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8Sbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8SbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8SbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJavaStringCheckUtf8", + "printedName": "hasJavaStringCheckUtf8", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaStringCheckUtf8Sbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaStringCheckUtf8Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaStringCheckUtf8Sbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaStringCheckUtf8Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJavaStringCheckUtf8", + "printedName": "clearJavaStringCheckUtf8()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV24clearJavaStringCheckUtf8yyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV24clearJavaStringCheckUtf8yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "optimizeFor", + "printedName": "optimizeFor", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptimizeFor", + "printedName": "hasOptimizeFor", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasOptimizeForSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasOptimizeForSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasOptimizeForSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasOptimizeForSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptimizeFor", + "printedName": "clearOptimizeFor()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearOptimizeForyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearOptimizeForyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "goPackage", + "printedName": "goPackage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasGoPackage", + "printedName": "hasGoPackage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12hasGoPackageSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12hasGoPackageSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12hasGoPackageSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12hasGoPackageSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearGoPackage", + "printedName": "clearGoPackage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14clearGoPackageyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14clearGoPackageyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "ccGenericServices", + "printedName": "ccGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasCcGenericServices", + "printedName": "hasCcGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasCcGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasCcGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasCcGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasCcGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCcGenericServices", + "printedName": "clearCcGenericServices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV22clearCcGenericServicesyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV22clearCcGenericServicesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "javaGenericServices", + "printedName": "javaGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJavaGenericServices", + "printedName": "hasJavaGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJavaGenericServices", + "printedName": "clearJavaGenericServices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV24clearJavaGenericServicesyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV24clearJavaGenericServicesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "pyGenericServices", + "printedName": "pyGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPyGenericServices", + "printedName": "hasPyGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasPyGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasPyGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasPyGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasPyGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPyGenericServices", + "printedName": "clearPyGenericServices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV22clearPyGenericServicesyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV22clearPyGenericServicesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "phpGenericServices", + "printedName": "phpGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPhpGenericServices", + "printedName": "hasPhpGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasPhpGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasPhpGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasPhpGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasPhpGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPhpGenericServices", + "printedName": "clearPhpGenericServices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV23clearPhpGenericServicesyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV23clearPhpGenericServicesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "deprecated", + "printedName": "deprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecated", + "printedName": "hasDeprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13hasDeprecatedSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13hasDeprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13hasDeprecatedSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13hasDeprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecated", + "printedName": "clearDeprecated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15clearDeprecatedyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15clearDeprecatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "ccEnableArenas", + "printedName": "ccEnableArenas", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasCcEnableArenas", + "printedName": "hasCcEnableArenas", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasCcEnableArenasSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasCcEnableArenasSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasCcEnableArenasSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasCcEnableArenasSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCcEnableArenas", + "printedName": "clearCcEnableArenas()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19clearCcEnableArenasyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19clearCcEnableArenasyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "objcClassPrefix", + "printedName": "objcClassPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasObjcClassPrefix", + "printedName": "hasObjcClassPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasObjcClassPrefixSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasObjcClassPrefixSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasObjcClassPrefixSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasObjcClassPrefixSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearObjcClassPrefix", + "printedName": "clearObjcClassPrefix()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20clearObjcClassPrefixyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20clearObjcClassPrefixyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "csharpNamespace", + "printedName": "csharpNamespace", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasCsharpNamespace", + "printedName": "hasCsharpNamespace", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasCsharpNamespaceSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasCsharpNamespaceSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasCsharpNamespaceSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasCsharpNamespaceSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCsharpNamespace", + "printedName": "clearCsharpNamespace()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20clearCsharpNamespaceyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20clearCsharpNamespaceyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "swiftPrefix", + "printedName": "swiftPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSwiftPrefix", + "printedName": "hasSwiftPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasSwiftPrefixSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasSwiftPrefixSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasSwiftPrefixSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasSwiftPrefixSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSwiftPrefix", + "printedName": "clearSwiftPrefix()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearSwiftPrefixyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearSwiftPrefixyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "phpClassPrefix", + "printedName": "phpClassPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPhpClassPrefix", + "printedName": "hasPhpClassPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasPhpClassPrefixSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasPhpClassPrefixSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasPhpClassPrefixSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasPhpClassPrefixSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPhpClassPrefix", + "printedName": "clearPhpClassPrefix()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19clearPhpClassPrefixyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19clearPhpClassPrefixyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "phpNamespace", + "printedName": "phpNamespace", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPhpNamespace", + "printedName": "hasPhpNamespace", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15hasPhpNamespaceSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15hasPhpNamespaceSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15hasPhpNamespaceSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15hasPhpNamespaceSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPhpNamespace", + "printedName": "clearPhpNamespace()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17clearPhpNamespaceyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17clearPhpNamespaceyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "phpMetadataNamespace", + "printedName": "phpMetadataNamespace", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPhpMetadataNamespace", + "printedName": "hasPhpMetadataNamespace", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV23hasPhpMetadataNamespaceSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV23hasPhpMetadataNamespaceSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV23hasPhpMetadataNamespaceSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV23hasPhpMetadataNamespaceSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPhpMetadataNamespace", + "printedName": "clearPhpMetadataNamespace()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV25clearPhpMetadataNamespaceyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV25clearPhpMetadataNamespaceyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "rubyPackage", + "printedName": "rubyPackage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasRubyPackage", + "printedName": "hasRubyPackage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasRubyPackageSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasRubyPackageSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasRubyPackageSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasRubyPackageSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearRubyPackage", + "printedName": "clearRubyPackage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearRubyPackageyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearRubyPackageyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OptimizeMode", + "printedName": "OptimizeMode", + "children": [ + { + "kind": "Var", + "name": "speed", + "printedName": "speed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode.Type) -> VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO5speedyA2EmF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO5speedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "codeSize", + "printedName": "codeSize", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode.Type) -> VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8codeSizeyA2EmF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8codeSizeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "liteRuntime", + "printedName": "liteRuntime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode.Type) -> VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO11liteRuntimeyA2EmF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO11liteRuntimeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeOAEycfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_MessageOptions", + "printedName": "Google_Protobuf_MessageOptions", + "children": [ + { + "kind": "Var", + "name": "messageSetWireFormat", + "printedName": "messageSetWireFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMessageSetWireFormat", + "printedName": "hasMessageSetWireFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV03hasE13SetWireFormatSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV03hasE13SetWireFormatSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV03hasE13SetWireFormatSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV03hasE13SetWireFormatSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearMessageSetWireFormat", + "printedName": "clearMessageSetWireFormat()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV05clearE13SetWireFormatyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV05clearE13SetWireFormatyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "noStandardDescriptorAccessor", + "printedName": "noStandardDescriptorAccessor", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasNoStandardDescriptorAccessor", + "printedName": "hasNoStandardDescriptorAccessor", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV31hasNoStandardDescriptorAccessorSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV31hasNoStandardDescriptorAccessorSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV31hasNoStandardDescriptorAccessorSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV31hasNoStandardDescriptorAccessorSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearNoStandardDescriptorAccessor", + "printedName": "clearNoStandardDescriptorAccessor()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV33clearNoStandardDescriptorAccessoryyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV33clearNoStandardDescriptorAccessoryyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "deprecated", + "printedName": "deprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecated", + "printedName": "hasDeprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13hasDeprecatedSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13hasDeprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13hasDeprecatedSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13hasDeprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecated", + "printedName": "clearDeprecated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV15clearDeprecatedyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV15clearDeprecatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "mapEntry", + "printedName": "mapEntry", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMapEntry", + "printedName": "hasMapEntry", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasMapEntrySbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasMapEntrySbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasMapEntrySbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasMapEntrySbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearMapEntry", + "printedName": "clearMapEntry()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13clearMapEntryyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13clearMapEntryyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "deprecatedLegacyJsonFieldConflicts", + "printedName": "deprecatedLegacyJsonFieldConflicts", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecatedLegacyJsonFieldConflicts", + "printedName": "hasDeprecatedLegacyJsonFieldConflicts", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecatedLegacyJsonFieldConflicts", + "printedName": "clearDeprecatedLegacyJsonFieldConflicts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV39clearDeprecatedLegacyJsonFieldConflictsyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV39clearDeprecatedLegacyJsonFieldConflictsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MessageOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MessageOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV05protoE4NameSSvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV05protoE4NameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV05protoE4NameSSvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV05protoE4NameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV06decodeE07decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV06decodeE07decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MessageOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MessageOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MessageOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MessageOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FieldOptions", + "printedName": "Google_Protobuf_FieldOptions", + "children": [ + { + "kind": "Var", + "name": "ctype", + "printedName": "ctype", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasCtype", + "printedName": "hasCtype", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV8hasCtypeSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV8hasCtypeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV8hasCtypeSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV8hasCtypeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCtype", + "printedName": "clearCtype()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV10clearCtypeyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV10clearCtypeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "packed", + "printedName": "packed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPacked", + "printedName": "hasPacked", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasPackedSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasPackedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasPackedSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasPackedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPacked", + "printedName": "clearPacked()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11clearPackedyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11clearPackedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "jstype", + "printedName": "jstype", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJstype", + "printedName": "hasJstype", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasJstypeSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasJstypeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasJstypeSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasJstypeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJstype", + "printedName": "clearJstype()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11clearJstypeyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11clearJstypeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "lazy", + "printedName": "lazy", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasLazy", + "printedName": "hasLazy", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasLazySbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasLazySbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasLazySbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasLazySbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearLazy", + "printedName": "clearLazy()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9clearLazyyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9clearLazyyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unverifiedLazy", + "printedName": "unverifiedLazy", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasUnverifiedLazy", + "printedName": "hasUnverifiedLazy", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV17hasUnverifiedLazySbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV17hasUnverifiedLazySbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV17hasUnverifiedLazySbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV17hasUnverifiedLazySbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearUnverifiedLazy", + "printedName": "clearUnverifiedLazy()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV19clearUnverifiedLazyyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV19clearUnverifiedLazyyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "deprecated", + "printedName": "deprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecated", + "printedName": "hasDeprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13hasDeprecatedSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13hasDeprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13hasDeprecatedSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13hasDeprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecated", + "printedName": "clearDeprecated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15clearDeprecatedyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15clearDeprecatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "weak", + "printedName": "weak", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasWeak", + "printedName": "hasWeak", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasWeakSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasWeakSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasWeakSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasWeakSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearWeak", + "printedName": "clearWeak()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9clearWeakyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9clearWeakyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "debugRedact", + "printedName": "debugRedact", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDebugRedact", + "printedName": "hasDebugRedact", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14hasDebugRedactSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14hasDebugRedactSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14hasDebugRedactSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14hasDebugRedactSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDebugRedact", + "printedName": "clearDebugRedact()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16clearDebugRedactyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16clearDebugRedactyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "retention", + "printedName": "retention", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasRetention", + "printedName": "hasRetention", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV12hasRetentionSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV12hasRetentionSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV12hasRetentionSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV12hasRetentionSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearRetention", + "printedName": "clearRetention()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14clearRetentionyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14clearRetentionyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "targets", + "printedName": "targets", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "editionDefaults", + "printedName": "editionDefaults", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault]", + "children": [ + { + "kind": "TypeNominal", + "name": "EditionDefault", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault]", + "children": [ + { + "kind": "TypeNominal", + "name": "EditionDefault", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault]", + "children": [ + { + "kind": "TypeNominal", + "name": "EditionDefault", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CType", + "printedName": "CType", + "children": [ + { + "kind": "Var", + "name": "string", + "printedName": "string", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.CType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO6stringyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO6stringyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cord", + "printedName": "cord", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.CType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO4cordyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO4cordyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "stringPiece", + "printedName": "stringPiece", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.CType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO11stringPieceyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO11stringPieceyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeOAEycfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.CType]", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.CType]", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.CType]", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "JSType", + "printedName": "JSType", + "children": [ + { + "kind": "Var", + "name": "jsNormal", + "printedName": "jsNormal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.JSType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8jsNormalyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8jsNormalyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "jsString", + "printedName": "jsString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.JSType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8jsStringyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8jsStringyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "jsNumber", + "printedName": "jsNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.JSType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8jsNumberyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8jsNumberyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeOAEycfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType?", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.JSType]", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.JSType]", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.JSType]", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OptionRetention", + "printedName": "OptionRetention", + "children": [ + { + "kind": "Var", + "name": "retentionUnknown", + "printedName": "retentionUnknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO16retentionUnknownyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO16retentionUnknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "retentionRuntime", + "printedName": "retentionRuntime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO16retentionRuntimeyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO16retentionRuntimeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "retentionSource", + "printedName": "retentionSource", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO15retentionSourceyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO15retentionSourceyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionOAEycfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention?", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OptionTargetType", + "printedName": "OptionTargetType", + "children": [ + { + "kind": "Var", + "name": "targetTypeUnknown", + "printedName": "targetTypeUnknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI7UnknownyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI7UnknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "targetTypeFile", + "printedName": "targetTypeFile", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI4FileyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI4FileyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeExtensionRange", + "printedName": "targetTypeExtensionRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI14ExtensionRangeyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI14ExtensionRangeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeMessage", + "printedName": "targetTypeMessage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI7MessageyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI7MessageyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeField", + "printedName": "targetTypeField", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetiE0yA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetiE0yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeOneof", + "printedName": "targetTypeOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI5OneofyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI5OneofyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeEnum", + "printedName": "targetTypeEnum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI4EnumyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI4EnumyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeEnumEntry", + "printedName": "targetTypeEnumEntry", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI9EnumEntryyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI9EnumEntryyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeService", + "printedName": "targetTypeService", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI7ServiceyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI7ServiceyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeMethod", + "printedName": "targetTypeMethod", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI6MethodyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI6MethodyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeOAEycfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType?", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "EditionDefault", + "printedName": "EditionDefault", + "children": [ + { + "kind": "Var", + "name": "edition", + "printedName": "edition", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasEdition", + "printedName": "hasEdition", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV03hasG0Sbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV03hasG0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV03hasG0Sbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV03hasG0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearEdition", + "printedName": "clearEdition()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV05clearG0yyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV05clearG0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasValue", + "printedName": "hasValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV8hasValueSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV8hasValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV8hasValueSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV8hasValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearValue", + "printedName": "clearValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV10clearValueyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV10clearValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "EditionDefault", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultVAEycfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "EditionDefault", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV" + }, + { + "kind": "TypeNominal", + "name": "EditionDefault", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_OneofOptions", + "printedName": "Google_Protobuf_OneofOptions", + "children": [ + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_EnumOptions", + "printedName": "Google_Protobuf_EnumOptions", + "children": [ + { + "kind": "Var", + "name": "allowAlias", + "printedName": "allowAlias", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasAllowAlias", + "printedName": "hasAllowAlias", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasAllowAliasSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasAllowAliasSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasAllowAliasSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasAllowAliasSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearAllowAlias", + "printedName": "clearAllowAlias()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV15clearAllowAliasyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV15clearAllowAliasyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "deprecated", + "printedName": "deprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecated", + "printedName": "hasDeprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasDeprecatedSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasDeprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasDeprecatedSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasDeprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecated", + "printedName": "clearDeprecated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV15clearDeprecatedyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV15clearDeprecatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "deprecatedLegacyJsonFieldConflicts", + "printedName": "deprecatedLegacyJsonFieldConflicts", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecatedLegacyJsonFieldConflicts", + "printedName": "hasDeprecatedLegacyJsonFieldConflicts", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecatedLegacyJsonFieldConflicts", + "printedName": "clearDeprecatedLegacyJsonFieldConflicts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV39clearDeprecatedLegacyJsonFieldConflictsyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV39clearDeprecatedLegacyJsonFieldConflictsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_EnumValueOptions", + "printedName": "Google_Protobuf_EnumValueOptions", + "children": [ + { + "kind": "Var", + "name": "deprecated", + "printedName": "deprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvs", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvM", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecated", + "printedName": "hasDeprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13hasDeprecatedSbvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13hasDeprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13hasDeprecatedSbvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13hasDeprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecated", + "printedName": "clearDeprecated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV15clearDeprecatedyyF", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV15clearDeprecatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "debugRedact", + "printedName": "debugRedact", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvs", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvM", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDebugRedact", + "printedName": "hasDebugRedact", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV14hasDebugRedactSbvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV14hasDebugRedactSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV14hasDebugRedactSbvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV14hasDebugRedactSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDebugRedact", + "printedName": "clearDebugRedact()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV16clearDebugRedactyyF", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV16clearDebugRedactyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvs", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvM", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueOptions", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvs", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvM", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueOptions", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueOptions", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_ServiceOptions", + "printedName": "Google_Protobuf_ServiceOptions", + "children": [ + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "deprecated", + "printedName": "deprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecated", + "printedName": "hasDeprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13hasDeprecatedSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13hasDeprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13hasDeprecatedSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13hasDeprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecated", + "printedName": "clearDeprecated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV15clearDeprecatedyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV15clearDeprecatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_MethodOptions", + "printedName": "Google_Protobuf_MethodOptions", + "children": [ + { + "kind": "Var", + "name": "deprecated", + "printedName": "deprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecated", + "printedName": "hasDeprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13hasDeprecatedSbvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13hasDeprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13hasDeprecatedSbvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13hasDeprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecated", + "printedName": "clearDeprecated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV15clearDeprecatedyyF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV15clearDeprecatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "idempotencyLevel", + "printedName": "idempotencyLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0Ovp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0Ovg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0Ovs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0OvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasIdempotencyLevel", + "printedName": "hasIdempotencyLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV19hasIdempotencyLevelSbvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV19hasIdempotencyLevelSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV19hasIdempotencyLevelSbvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV19hasIdempotencyLevelSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearIdempotencyLevel", + "printedName": "clearIdempotencyLevel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV21clearIdempotencyLevelyyF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV21clearIdempotencyLevelyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "IdempotencyLevel", + "printedName": "IdempotencyLevel", + "children": [ + { + "kind": "Var", + "name": "idempotencyUnknown", + "printedName": "idempotencyUnknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel.Type) -> VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO18idempotencyUnknownyA2EmF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO18idempotencyUnknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "noSideEffects", + "printedName": "noSideEffects", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel.Type) -> VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO13noSideEffectsyA2EmF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO13noSideEffectsyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "idempotent", + "printedName": "idempotent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel.Type) -> VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO10idempotentyA2EmF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO10idempotentyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelOAEycfc", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel?", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "Google_Protobuf_UninterpretedOption", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart]", + "children": [ + { + "kind": "TypeNominal", + "name": "NamePart", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart]", + "children": [ + { + "kind": "TypeNominal", + "name": "NamePart", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart]", + "children": [ + { + "kind": "TypeNominal", + "name": "NamePart", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "identifierValue", + "printedName": "identifierValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasIdentifierValue", + "printedName": "hasIdentifierValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV18hasIdentifierValueSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV18hasIdentifierValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV18hasIdentifierValueSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV18hasIdentifierValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearIdentifierValue", + "printedName": "clearIdentifierValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV20clearIdentifierValueyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV20clearIdentifierValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "positiveIntValue", + "printedName": "positiveIntValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64VvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPositiveIntValue", + "printedName": "hasPositiveIntValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasPositiveIntValueSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasPositiveIntValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasPositiveIntValueSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasPositiveIntValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPositiveIntValue", + "printedName": "clearPositiveIntValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV21clearPositiveIntValueyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV21clearPositiveIntValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "negativeIntValue", + "printedName": "negativeIntValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64Vvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64Vvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64Vvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64VvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasNegativeIntValue", + "printedName": "hasNegativeIntValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasNegativeIntValueSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasNegativeIntValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasNegativeIntValueSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasNegativeIntValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearNegativeIntValue", + "printedName": "clearNegativeIntValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV21clearNegativeIntValueyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV21clearNegativeIntValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "doubleValue", + "printedName": "doubleValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDoubleValue", + "printedName": "hasDoubleValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasDoubleValueSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasDoubleValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasDoubleValueSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasDoubleValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDoubleValue", + "printedName": "clearDoubleValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16clearDoubleValueyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16clearDoubleValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasStringValue", + "printedName": "hasStringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasStringValueSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasStringValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasStringValueSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasStringValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearStringValue", + "printedName": "clearStringValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16clearStringValueyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16clearStringValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "aggregateValue", + "printedName": "aggregateValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasAggregateValue", + "printedName": "hasAggregateValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17hasAggregateValueSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17hasAggregateValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17hasAggregateValueSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17hasAggregateValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearAggregateValue", + "printedName": "clearAggregateValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19clearAggregateValueyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19clearAggregateValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NamePart", + "printedName": "NamePart", + "children": [ + { + "kind": "Var", + "name": "namePart", + "printedName": "namePart", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasNamePart", + "printedName": "hasNamePart", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV03hasgH0Sbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV03hasgH0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV03hasgH0Sbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV03hasgH0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearNamePart", + "printedName": "clearNamePart()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV05cleargH0yyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV05cleargH0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "isExtension", + "printedName": "isExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasIsExtension", + "printedName": "hasIsExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV14hasIsExtensionSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV14hasIsExtensionSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV14hasIsExtensionSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV14hasIsExtensionSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearIsExtension", + "printedName": "clearIsExtension()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV16clearIsExtensionyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV16clearIsExtensionyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NamePart", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartVAEycfc", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV012protoMessageG0SSvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV012protoMessageG0SSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV012protoMessageG0SSvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV012protoMessageG0SSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV17_protobuf_nameMapAA01_gK0VvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV17_protobuf_nameMapAA01_gK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV17_protobuf_nameMapAA01_gK0VvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV17_protobuf_nameMapAA01_gK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "NamePart", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV" + }, + { + "kind": "TypeNominal", + "name": "NamePart", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionVACycfc", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FeatureSet", + "printedName": "Google_Protobuf_FeatureSet", + "children": [ + { + "kind": "Var", + "name": "fieldPresence", + "printedName": "fieldPresence", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0Ovp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0Ovg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0Ovs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0OvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFieldPresence", + "printedName": "hasFieldPresence", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV16hasFieldPresenceSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV16hasFieldPresenceSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV16hasFieldPresenceSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV16hasFieldPresenceSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFieldPresence", + "printedName": "clearFieldPresence()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV18clearFieldPresenceyyF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV18clearFieldPresenceyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "enumType", + "printedName": "enumType", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0Ovp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0Ovg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0Ovs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0OvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasEnumType", + "printedName": "hasEnumType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV11hasEnumTypeSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV11hasEnumTypeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV11hasEnumTypeSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV11hasEnumTypeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearEnumType", + "printedName": "clearEnumType()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13clearEnumTypeyyF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13clearEnumTypeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "repeatedFieldEncoding", + "printedName": "repeatedFieldEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0Ovp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0Ovg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0Ovs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0OvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasRepeatedFieldEncoding", + "printedName": "hasRepeatedFieldEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasRepeatedFieldEncodingSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasRepeatedFieldEncodingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasRepeatedFieldEncodingSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasRepeatedFieldEncodingSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearRepeatedFieldEncoding", + "printedName": "clearRepeatedFieldEncoding()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV26clearRepeatedFieldEncodingyyF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV26clearRepeatedFieldEncodingyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "stringFieldValidation", + "printedName": "stringFieldValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0Ovp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0Ovg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0Ovs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0OvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasStringFieldValidation", + "printedName": "hasStringFieldValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasStringFieldValidationSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasStringFieldValidationSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasStringFieldValidationSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasStringFieldValidationSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearStringFieldValidation", + "printedName": "clearStringFieldValidation()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV26clearStringFieldValidationyyF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV26clearStringFieldValidationyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "messageEncoding", + "printedName": "messageEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0Ovp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0Ovg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0Ovs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0OvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMessageEncoding", + "printedName": "hasMessageEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV18hasMessageEncodingSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV18hasMessageEncodingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV18hasMessageEncodingSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV18hasMessageEncodingSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearMessageEncoding", + "printedName": "clearMessageEncoding()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV20clearMessageEncodingyyF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV20clearMessageEncodingyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "jsonFormat", + "printedName": "jsonFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0Ovp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0Ovg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0Ovs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0OvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJsonFormat", + "printedName": "hasJsonFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13hasJsonFormatSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13hasJsonFormatSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13hasJsonFormatSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13hasJsonFormatSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJsonFormat", + "printedName": "clearJsonFormat()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15clearJsonFormatyyF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15clearJsonFormatyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "rawFeatures", + "printedName": "rawFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasRawFeatures", + "printedName": "hasRawFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV14hasRawFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV14hasRawFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV14hasRawFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV14hasRawFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearRawFeatures", + "printedName": "clearRawFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV16clearRawFeaturesyyF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV16clearRawFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FieldPresence", + "printedName": "FieldPresence", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO7unknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "explicit", + "printedName": "explicit", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8explicityA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8explicityA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "implicit", + "printedName": "implicit", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8implicityA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8implicityA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "legacyRequired", + "printedName": "legacyRequired", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO14legacyRequiredyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO14legacyRequiredyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceOAEycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence?", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence]", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence]", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence]", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "EnumType", + "printedName": "EnumType", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO7unknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "open", + "printedName": "open", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO4openyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO4openyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO6closedyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO6closedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeOAEycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType?", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType]", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType]", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType]", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RepeatedFieldEncoding", + "printedName": "RepeatedFieldEncoding", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO7unknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "packed", + "printedName": "packed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO6packedyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO6packedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "expanded", + "printedName": "expanded", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8expandedyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8expandedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingOAEycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding?", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding]", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding]", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding]", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StringFieldValidation", + "printedName": "StringFieldValidation", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO7unknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "mandatory", + "printedName": "mandatory", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO9mandatoryyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO9mandatoryyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hint", + "printedName": "hint", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO4hintyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO4hintyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO4noneyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO4noneyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationOAEycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation?", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation]", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation]", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation]", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MessageEncoding", + "printedName": "MessageEncoding", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO7unknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "lengthPrefixed", + "printedName": "lengthPrefixed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO14lengthPrefixedyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO14lengthPrefixedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "delimited", + "printedName": "delimited", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO9delimitedyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO9delimitedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingOAEycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding]", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding]", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding]", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "JsonFormat", + "printedName": "JsonFormat", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO7unknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "allow", + "printedName": "allow", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO5allowyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO5allowyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "legacyBestEffort", + "printedName": "legacyBestEffort", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO16legacyBestEffortyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO16legacyBestEffortyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatOAEycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat?", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat]", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat]", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat]", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetVACycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0Vvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0Vvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0Vvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0VvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_SourceCodeInfo", + "printedName": "Google_Protobuf_SourceCodeInfo", + "children": [ + { + "kind": "Var", + "name": "location", + "printedName": "location", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location]", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location]", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location]", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Location", + "printedName": "Location", + "children": [ + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "span", + "printedName": "span", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "leadingComments", + "printedName": "leadingComments", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasLeadingComments", + "printedName": "hasLeadingComments", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV18hasLeadingCommentsSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV18hasLeadingCommentsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV18hasLeadingCommentsSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV18hasLeadingCommentsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearLeadingComments", + "printedName": "clearLeadingComments()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV20clearLeadingCommentsyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV20clearLeadingCommentsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "trailingComments", + "printedName": "trailingComments", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasTrailingComments", + "printedName": "hasTrailingComments", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV19hasTrailingCommentsSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV19hasTrailingCommentsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV19hasTrailingCommentsSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV19hasTrailingCommentsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearTrailingComments", + "printedName": "clearTrailingComments()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV21clearTrailingCommentsyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV21clearTrailingCommentsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "leadingDetachedComments", + "printedName": "leadingDetachedComments", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationVAEycfc", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV" + }, + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoVACycfc", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_GeneratedCodeInfo", + "printedName": "Google_Protobuf_GeneratedCodeInfo", + "children": [ + { + "kind": "Var", + "name": "annotation", + "printedName": "annotation", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation]", + "children": [ + { + "kind": "TypeNominal", + "name": "Annotation", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation]", + "children": [ + { + "kind": "TypeNominal", + "name": "Annotation", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation]", + "children": [ + { + "kind": "TypeNominal", + "name": "Annotation", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Annotation", + "printedName": "Annotation", + "children": [ + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sourceFile", + "printedName": "sourceFile", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSourceFile", + "printedName": "hasSourceFile", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13hasSourceFileSbvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13hasSourceFileSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13hasSourceFileSbvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13hasSourceFileSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSourceFile", + "printedName": "clearSourceFile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV15clearSourceFileyyF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV15clearSourceFileyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "begin", + "printedName": "begin", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32Vvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32Vvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32Vvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32VvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasBegin", + "printedName": "hasBegin", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8hasBeginSbvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8hasBeginSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8hasBeginSbvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8hasBeginSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearBegin", + "printedName": "clearBegin()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10clearBeginyyF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10clearBeginyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "end", + "printedName": "end", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32Vvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32Vvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32Vvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32VvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasEnd", + "printedName": "hasEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV6hasEndSbvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV6hasEndSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV6hasEndSbvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV6hasEndSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearEnd", + "printedName": "clearEnd()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8clearEndyyF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8clearEndyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "semantic", + "printedName": "semantic", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSemantic", + "printedName": "hasSemantic", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV11hasSemanticSbvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV11hasSemanticSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV11hasSemanticSbvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV11hasSemanticSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSemantic", + "printedName": "clearSemantic()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13clearSemanticyyF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13clearSemanticyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Semantic", + "printedName": "Semantic", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic.Type) -> VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO4noneyA2GmF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO4noneyA2GmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "set", + "printedName": "set", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic.Type) -> VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO3setyA2GmF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO3setyA2GmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "alias", + "printedName": "alias", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic.Type) -> VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO5aliasyA2GmF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO5aliasyA2GmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticOAGycfc", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticOAGycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic?", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8rawValueAGSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8rawValueAGSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic]", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8allCasesSayAGGvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8allCasesSayAGGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic]", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8allCasesSayAGGvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8allCasesSayAGGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic]", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Annotation", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationVAEycfc", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Annotation", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV" + }, + { + "kind": "TypeNominal", + "name": "Annotation", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_GeneratedCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoVACycfc", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_GeneratedCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_GeneratedCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleCounter", + "printedName": "DoubleCounter", + "children": [ + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13DoubleCounterP3add5valueySd_tF", + "mangledName": "$s11VideoSDKRTC13DoubleCounterP3add5valueySd_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13DoubleCounterP3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC13DoubleCounterP3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13DoubleCounterP", + "mangledName": "$s11VideoSDKRTC13DoubleCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleCounterBuilder", + "printedName": "DoubleCounterBuilder", + "children": [ + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleCounter", + "printedName": "VideoSDKRTC.DoubleCounter", + "usr": "s:11VideoSDKRTC13DoubleCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20DoubleCounterBuilderP5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC20DoubleCounterBuilderP5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableDoubleCounter", + "printedName": "VideoSDKRTC.ObservableDoubleCounter", + "usr": "s:11VideoSDKRTC23ObservableDoubleCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableDoubleMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableDoubleMeasurement", + "printedName": "VideoSDKRTC.ObservableDoubleMeasurement", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20DoubleCounterBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC20DoubleCounterBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC20DoubleCounterBuilderP", + "mangledName": "$s11VideoSDKRTC20DoubleCounterBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleCounterMeterBuilderSdk", + "printedName": "DoubleCounterMeterBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleCounter", + "printedName": "VideoSDKRTC.DoubleCounter", + "usr": "s:11VideoSDKRTC13DoubleCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28DoubleCounterMeterBuilderSdkC5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC28DoubleCounterMeterBuilderSdkC5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableDoubleCounter", + "printedName": "VideoSDKRTC.ObservableDoubleCounter", + "usr": "s:11VideoSDKRTC23ObservableDoubleCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableDoubleMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableDoubleMeasurement", + "printedName": "VideoSDKRTC.ObservableDoubleMeasurement", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28DoubleCounterMeterBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0kC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC28DoubleCounterMeterBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0kC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC28DoubleCounterMeterBuilderSdkC", + "mangledName": "$s11VideoSDKRTC28DoubleCounterMeterBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleCounterBuilder", + "printedName": "DoubleCounterBuilder", + "usr": "s:11VideoSDKRTC20DoubleCounterBuilderP", + "mangledName": "$s11VideoSDKRTC20DoubleCounterBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HistogramAggregatorError", + "printedName": "HistogramAggregatorError", + "children": [ + { + "kind": "Var", + "name": "unsupportedOperation", + "printedName": "unsupportedOperation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.HistogramAggregatorError.Type) -> (Swift.String) -> VideoSDKRTC.HistogramAggregatorError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideoSDKRTC.HistogramAggregatorError", + "children": [ + { + "kind": "TypeNominal", + "name": "HistogramAggregatorError", + "printedName": "VideoSDKRTC.HistogramAggregatorError", + "usr": "s:11VideoSDKRTC24HistogramAggregatorErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.HistogramAggregatorError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HistogramAggregatorError", + "printedName": "VideoSDKRTC.HistogramAggregatorError", + "usr": "s:11VideoSDKRTC24HistogramAggregatorErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC24HistogramAggregatorErrorO20unsupportedOperationyACSScACmF", + "mangledName": "$s11VideoSDKRTC24HistogramAggregatorErrorO20unsupportedOperationyACSScACmF", + "moduleName": "VideoSDKRTC" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC24HistogramAggregatorErrorO", + "mangledName": "$s11VideoSDKRTC24HistogramAggregatorErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleExplicitBucketHistogramAggregator", + "printedName": "DoubleExplicitBucketHistogramAggregator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(boundaries:reservoirSupplier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleExplicitBucketHistogramAggregator", + "printedName": "VideoSDKRTC.DoubleExplicitBucketHistogramAggregator", + "usr": "s:11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> VideoSDKRTC.ExemplarReservoir", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarReservoir", + "printedName": "VideoSDKRTC.ExemplarReservoir", + "usr": "s:11VideoSDKRTC17ExemplarReservoirC" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC10boundaries17reservoirSupplierACSaySdG_AA17ExemplarReservoirCyctcfc", + "mangledName": "$s11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC10boundaries17reservoirSupplierACSaySdG_AA17ExemplarReservoirCyctcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "diff", + "printedName": "diff(previousCumulative:currentCumulative:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC4diff18previousCumulative07currentJ0AA9PointDataCAH_AHtKF", + "mangledName": "$s11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC4diff18previousCumulative07currentJ0AA9PointDataCAH_AHtKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toPoint", + "printedName": "toPoint(measurement:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC7toPoint11measurementAA0I4DataCAA11MeasurementV_tKF", + "mangledName": "$s11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC7toPoint11measurementAA0I4DataCAA11MeasurementV_tKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createHandle", + "printedName": "createHandle()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregatorHandle", + "printedName": "VideoSDKRTC.AggregatorHandle", + "usr": "s:11VideoSDKRTC16AggregatorHandleC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC12createHandleAA0gI0CyF", + "mangledName": "$s11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC12createHandleAA0gI0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData(resource:scope:descriptor:points:temporality:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StableiJ0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0I10DescriptorVSayAA05PointJ0CGAA22AggregationTemporalityOtF", + "mangledName": "$s11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StableiJ0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0I10DescriptorVSayAA05PointJ0CGAA22AggregationTemporalityOtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC", + "mangledName": "$s11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "StableAggregator", + "printedName": "StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleGaugeBuilder", + "printedName": "DoubleGaugeBuilder", + "children": [ + { + "kind": "Function", + "name": "ofLongs", + "printedName": "ofLongs()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongGaugeBuilder", + "printedName": "VideoSDKRTC.LongGaugeBuilder", + "usr": "s:11VideoSDKRTC16LongGaugeBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DoubleGaugeBuilderP7ofLongsAA04LongdE0_pyF", + "mangledName": "$s11VideoSDKRTC18DoubleGaugeBuilderP7ofLongsAA04LongdE0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleGaugeBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableDoubleGauge", + "printedName": "VideoSDKRTC.ObservableDoubleGauge", + "usr": "s:11VideoSDKRTC21ObservableDoubleGaugeP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableDoubleMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableDoubleMeasurement", + "printedName": "VideoSDKRTC.ObservableDoubleMeasurement", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DoubleGaugeBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC18DoubleGaugeBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleGaugeBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC18DoubleGaugeBuilderP", + "mangledName": "$s11VideoSDKRTC18DoubleGaugeBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleGaugeBuilderSdk", + "printedName": "DoubleGaugeBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "ofLongs", + "printedName": "ofLongs()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongGaugeBuilder", + "printedName": "VideoSDKRTC.LongGaugeBuilder", + "usr": "s:11VideoSDKRTC16LongGaugeBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DoubleGaugeBuilderSdkC7ofLongsAA04LongdE0_pyF", + "mangledName": "$s11VideoSDKRTC21DoubleGaugeBuilderSdkC7ofLongsAA04LongdE0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableDoubleGauge", + "printedName": "VideoSDKRTC.ObservableDoubleGauge", + "usr": "s:11VideoSDKRTC21ObservableDoubleGaugeP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableDoubleMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableDoubleMeasurement", + "printedName": "VideoSDKRTC.ObservableDoubleMeasurement", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DoubleGaugeBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0jC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC21DoubleGaugeBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0jC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21DoubleGaugeBuilderSdkC", + "mangledName": "$s11VideoSDKRTC21DoubleGaugeBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleGaugeBuilder", + "printedName": "DoubleGaugeBuilder", + "usr": "s:11VideoSDKRTC18DoubleGaugeBuilderP", + "mangledName": "$s11VideoSDKRTC18DoubleGaugeBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleHistogram", + "printedName": "DoubleHistogram", + "children": [ + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15DoubleHistogramP6record5valueySd_tF", + "mangledName": "$s11VideoSDKRTC15DoubleHistogramP6record5valueySd_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleHistogram>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15DoubleHistogramP6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC15DoubleHistogramP6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleHistogram>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC15DoubleHistogramP", + "mangledName": "$s11VideoSDKRTC15DoubleHistogramP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleHistogramBuilder", + "printedName": "DoubleHistogramBuilder", + "children": [ + { + "kind": "Function", + "name": "ofLongs", + "printedName": "ofLongs()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongHistogramBuilder", + "printedName": "VideoSDKRTC.LongHistogramBuilder", + "usr": "s:11VideoSDKRTC20LongHistogramBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22DoubleHistogramBuilderP7ofLongsAA04LongdE0_pyF", + "mangledName": "$s11VideoSDKRTC22DoubleHistogramBuilderP7ofLongsAA04LongdE0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleHistogramBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleHistogram", + "printedName": "VideoSDKRTC.DoubleHistogram", + "usr": "s:11VideoSDKRTC15DoubleHistogramP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22DoubleHistogramBuilderP5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC22DoubleHistogramBuilderP5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleHistogramBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC22DoubleHistogramBuilderP", + "mangledName": "$s11VideoSDKRTC22DoubleHistogramBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleHistogramMeterBuilderSdk", + "printedName": "DoubleHistogramMeterBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "ofLongs", + "printedName": "ofLongs()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongHistogramBuilder", + "printedName": "VideoSDKRTC.LongHistogramBuilder", + "usr": "s:11VideoSDKRTC20LongHistogramBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30DoubleHistogramMeterBuilderSdkC7ofLongsAA04LongdF0_pyF", + "mangledName": "$s11VideoSDKRTC30DoubleHistogramMeterBuilderSdkC7ofLongsAA04LongdF0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleHistogram", + "printedName": "VideoSDKRTC.DoubleHistogram", + "usr": "s:11VideoSDKRTC15DoubleHistogramP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30DoubleHistogramMeterBuilderSdkC5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC30DoubleHistogramMeterBuilderSdkC5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC30DoubleHistogramMeterBuilderSdkC", + "mangledName": "$s11VideoSDKRTC30DoubleHistogramMeterBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleHistogramBuilder", + "printedName": "DoubleHistogramBuilder", + "usr": "s:11VideoSDKRTC22DoubleHistogramBuilderP", + "mangledName": "$s11VideoSDKRTC22DoubleHistogramBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleHistogramMeterSdk", + "printedName": "DoubleHistogramMeterSdk", + "children": [ + { + "kind": "Var", + "name": "instrumentDescriptor", + "printedName": "instrumentDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvp", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvg", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvs", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0VvM", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "storage", + "printedName": "storage", + "children": [ + { + "kind": "TypeNominal", + "name": "WritableMetricStorage", + "printedName": "VideoSDKRTC.WritableMetricStorage", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvp", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "WritableMetricStorage", + "printedName": "VideoSDKRTC.WritableMetricStorage", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvg", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WritableMetricStorage", + "printedName": "VideoSDKRTC.WritableMetricStorage", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvs", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvM", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC6record5valueySd_tF", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC6record5valueySd_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleHistogram", + "printedName": "DoubleHistogram", + "usr": "s:11VideoSDKRTC15DoubleHistogramP", + "mangledName": "$s11VideoSDKRTC15DoubleHistogramP" + }, + { + "kind": "Conformance", + "name": "Instrument", + "printedName": "Instrument", + "usr": "s:11VideoSDKRTC10InstrumentP", + "mangledName": "$s11VideoSDKRTC10InstrumentP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleLastValueAggregator", + "printedName": "DoubleLastValueAggregator", + "children": [ + { + "kind": "Function", + "name": "diff", + "printedName": "diff(previousCumulative:currentCumulative:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25DoubleLastValueAggregatorC4diff18previousCumulative07currentI0AA9PointDataCAH_AHtKF", + "mangledName": "$s11VideoSDKRTC25DoubleLastValueAggregatorC4diff18previousCumulative07currentI0AA9PointDataCAH_AHtKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toPoint", + "printedName": "toPoint(measurement:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25DoubleLastValueAggregatorC7toPoint11measurementAA0H4DataCAA11MeasurementV_tKF", + "mangledName": "$s11VideoSDKRTC25DoubleLastValueAggregatorC7toPoint11measurementAA0H4DataCAA11MeasurementV_tKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createHandle", + "printedName": "createHandle()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregatorHandle", + "printedName": "VideoSDKRTC.AggregatorHandle", + "usr": "s:11VideoSDKRTC16AggregatorHandleC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25DoubleLastValueAggregatorC12createHandleAA0fH0CyF", + "mangledName": "$s11VideoSDKRTC25DoubleLastValueAggregatorC12createHandleAA0fH0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData(resource:scope:descriptor:points:temporality:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25DoubleLastValueAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablehI0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0H10DescriptorVSayAA05PointI0CGAA22AggregationTemporalityOtF", + "mangledName": "$s11VideoSDKRTC25DoubleLastValueAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablehI0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0H10DescriptorVSayAA05PointI0CGAA22AggregationTemporalityOtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC25DoubleLastValueAggregatorC", + "mangledName": "$s11VideoSDKRTC25DoubleLastValueAggregatorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "StableAggregator", + "printedName": "StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleObserverMetric", + "printedName": "DoubleObserverMetric", + "children": [ + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP7observe5value8labelsetySd_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC20DoubleObserverMetricP7observe5value8labelsetySd_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleObserverMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP7observe5value6labelsySd_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC20DoubleObserverMetricP7observe5value6labelsySd_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleObserverMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP", + "mangledName": "$s11VideoSDKRTC20DoubleObserverMetricP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "NoopDoubleObserverMetric", + "printedName": "NoopDoubleObserverMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopDoubleObserverMetric", + "printedName": "VideoSDKRTC.NoopDoubleObserverMetric", + "usr": "s:11VideoSDKRTC24NoopDoubleObserverMetricV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24NoopDoubleObserverMetricVACycfc", + "mangledName": "$s11VideoSDKRTC24NoopDoubleObserverMetricVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24NoopDoubleObserverMetricV7observe5value8labelsetySd_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC24NoopDoubleObserverMetricV7observe5value8labelsetySd_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24NoopDoubleObserverMetricV7observe5value6labelsySd_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC24NoopDoubleObserverMetricV7observe5value6labelsySd_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC24NoopDoubleObserverMetricV", + "mangledName": "$s11VideoSDKRTC24NoopDoubleObserverMetricV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleObserverMetric", + "printedName": "DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP", + "mangledName": "$s11VideoSDKRTC20DoubleObserverMetricP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoublePointData", + "printedName": "DoublePointData", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15DoublePointDataC5valueSdvp", + "mangledName": "$s11VideoSDKRTC15DoublePointDataC5valueSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15DoublePointDataC5valueSdvg", + "mangledName": "$s11VideoSDKRTC15DoublePointDataC5valueSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15DoublePointDataC5valueSdvs", + "mangledName": "$s11VideoSDKRTC15DoublePointDataC5valueSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15DoublePointDataC5valueSdvM", + "mangledName": "$s11VideoSDKRTC15DoublePointDataC5valueSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC15DoublePointDataC", + "mangledName": "$s11VideoSDKRTC15DoublePointDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC9PointDataC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.PointData" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleSumAggregator", + "printedName": "DoubleSumAggregator", + "children": [ + { + "kind": "Function", + "name": "diff", + "printedName": "diff(previousCumulative:currentCumulative:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19DoubleSumAggregatorC4diff18previousCumulative07currentH0AA9PointDataCAH_AHtKF", + "mangledName": "$s11VideoSDKRTC19DoubleSumAggregatorC4diff18previousCumulative07currentH0AA9PointDataCAH_AHtKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toPoint", + "printedName": "toPoint(measurement:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19DoubleSumAggregatorC7toPoint11measurementAA0G4DataCAA11MeasurementV_tKF", + "mangledName": "$s11VideoSDKRTC19DoubleSumAggregatorC7toPoint11measurementAA0G4DataCAA11MeasurementV_tKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createHandle", + "printedName": "createHandle()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregatorHandle", + "printedName": "VideoSDKRTC.AggregatorHandle", + "usr": "s:11VideoSDKRTC16AggregatorHandleC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19DoubleSumAggregatorC12createHandleAA0eG0CyF", + "mangledName": "$s11VideoSDKRTC19DoubleSumAggregatorC12createHandleAA0eG0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData(resource:scope:descriptor:points:temporality:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19DoubleSumAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablegH0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0G10DescriptorVSayAA05PointH0CGAA22AggregationTemporalityOtF", + "mangledName": "$s11VideoSDKRTC19DoubleSumAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablegH0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0G10DescriptorVSayAA05PointH0CGAA22AggregationTemporalityOtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19DoubleSumAggregatorC", + "mangledName": "$s11VideoSDKRTC19DoubleSumAggregatorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC13SumAggregatorC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.SumAggregator" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "StableAggregator", + "printedName": "StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleUpDownCounter", + "printedName": "DoubleUpDownCounter", + "children": [ + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19DoubleUpDownCounterP3add5valueySd_tF", + "mangledName": "$s11VideoSDKRTC19DoubleUpDownCounterP3add5valueySd_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleUpDownCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19DoubleUpDownCounterP3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC19DoubleUpDownCounterP3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleUpDownCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC19DoubleUpDownCounterP", + "mangledName": "$s11VideoSDKRTC19DoubleUpDownCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleUpDownCounterBuilder", + "printedName": "DoubleUpDownCounterBuilder", + "children": [ + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleUpDownCounter", + "printedName": "VideoSDKRTC.DoubleUpDownCounter", + "usr": "s:11VideoSDKRTC19DoubleUpDownCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26DoubleUpDownCounterBuilderP5buildAA0cdeF0_pyF", + "mangledName": "$s11VideoSDKRTC26DoubleUpDownCounterBuilderP5buildAA0cdeF0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleUpDownCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableDoubleUpDownCounter", + "printedName": "VideoSDKRTC.ObservableDoubleUpDownCounter", + "usr": "s:11VideoSDKRTC29ObservableDoubleUpDownCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableDoubleMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableDoubleMeasurement", + "printedName": "VideoSDKRTC.ObservableDoubleMeasurement", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26DoubleUpDownCounterBuilderP17buildWithCallbackyAA010ObservablecdeF0_pyAA0kC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC26DoubleUpDownCounterBuilderP17buildWithCallbackyAA010ObservablecdeF0_pyAA0kC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleUpDownCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC26DoubleUpDownCounterBuilderP", + "mangledName": "$s11VideoSDKRTC26DoubleUpDownCounterBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleUpDownCounterBuilderSdk", + "printedName": "DoubleUpDownCounterBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleUpDownCounter", + "printedName": "VideoSDKRTC.DoubleUpDownCounter", + "usr": "s:11VideoSDKRTC19DoubleUpDownCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29DoubleUpDownCounterBuilderSdkC5buildAA0cdeF0_pyF", + "mangledName": "$s11VideoSDKRTC29DoubleUpDownCounterBuilderSdkC5buildAA0cdeF0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableDoubleUpDownCounter", + "printedName": "VideoSDKRTC.ObservableDoubleUpDownCounter", + "usr": "s:11VideoSDKRTC29ObservableDoubleUpDownCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableDoubleMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableDoubleMeasurement", + "printedName": "VideoSDKRTC.ObservableDoubleMeasurement", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29DoubleUpDownCounterBuilderSdkC17buildWithCallbackyAA010ObservablecdeF0_pyAA0lC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC29DoubleUpDownCounterBuilderSdkC17buildWithCallbackyAA010ObservablecdeF0_pyAA0lC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC29DoubleUpDownCounterBuilderSdkC", + "mangledName": "$s11VideoSDKRTC29DoubleUpDownCounterBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleUpDownCounterBuilder", + "printedName": "DoubleUpDownCounterBuilder", + "usr": "s:11VideoSDKRTC26DoubleUpDownCounterBuilderP", + "mangledName": "$s11VideoSDKRTC26DoubleUpDownCounterBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleUpDownCounterSdk", + "printedName": "DoubleUpDownCounterSdk", + "children": [ + { + "kind": "Var", + "name": "instrumentDescriptor", + "printedName": "instrumentDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22DoubleUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvp", + "mangledName": "$s11VideoSDKRTC22DoubleUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22DoubleUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvg", + "mangledName": "$s11VideoSDKRTC22DoubleUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22DoubleUpDownCounterSdkC3add5valueySd_tF", + "mangledName": "$s11VideoSDKRTC22DoubleUpDownCounterSdkC3add5valueySd_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22DoubleUpDownCounterSdkC3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC22DoubleUpDownCounterSdkC3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC22DoubleUpDownCounterSdkC", + "mangledName": "$s11VideoSDKRTC22DoubleUpDownCounterSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleUpDownCounter", + "printedName": "DoubleUpDownCounter", + "usr": "s:11VideoSDKRTC19DoubleUpDownCounterP", + "mangledName": "$s11VideoSDKRTC19DoubleUpDownCounterP" + }, + { + "kind": "Conformance", + "name": "Instrument", + "printedName": "Instrument", + "usr": "s:11VideoSDKRTC10InstrumentP", + "mangledName": "$s11VideoSDKRTC10InstrumentP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DropAggregation", + "printedName": "DropAggregation", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "DropAggregation", + "printedName": "VideoSDKRTC.DropAggregation", + "usr": "s:11VideoSDKRTC15DropAggregationC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15DropAggregationC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC15DropAggregationC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DropAggregation", + "printedName": "VideoSDKRTC.DropAggregation", + "usr": "s:11VideoSDKRTC15DropAggregationC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15DropAggregationC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC15DropAggregationC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createAggregator", + "printedName": "createAggregator(descriptor:exemplarFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableAggregator", + "printedName": "VideoSDKRTC.StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15DropAggregationC16createAggregator10descriptor14exemplarFilterAA06StableF0_pAA20InstrumentDescriptorV_AA08ExemplarI0_ptF", + "mangledName": "$s11VideoSDKRTC15DropAggregationC16createAggregator10descriptor14exemplarFilterAA06StableF0_pAA20InstrumentDescriptorV_AA08ExemplarI0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isCompatible", + "printedName": "isCompatible(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15DropAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "mangledName": "$s11VideoSDKRTC15DropAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC15DropAggregationC", + "mangledName": "$s11VideoSDKRTC15DropAggregationC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Aggregation", + "printedName": "Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP", + "mangledName": "$s11VideoSDKRTC11AggregationP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DropAggregator", + "printedName": "DropAggregator", + "children": [ + { + "kind": "Var", + "name": "POINT_DATA", + "printedName": "POINT_DATA", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14DropAggregatorC10POINT_DATAAA9PointDataCvpZ", + "mangledName": "$s11VideoSDKRTC14DropAggregatorC10POINT_DATAAA9PointDataCvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14DropAggregatorC10POINT_DATAAA9PointDataCvgZ", + "mangledName": "$s11VideoSDKRTC14DropAggregatorC10POINT_DATAAA9PointDataCvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createHandle", + "printedName": "createHandle()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregatorHandle", + "printedName": "VideoSDKRTC.AggregatorHandle", + "usr": "s:11VideoSDKRTC16AggregatorHandleC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DropAggregatorC12createHandleAA0dF0CyF", + "mangledName": "$s11VideoSDKRTC14DropAggregatorC12createHandleAA0dF0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "diff", + "printedName": "diff(previousCumulative:currentCumulative:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DropAggregatorC4diff18previousCumulative07currentG0AA9PointDataCAH_AHtF", + "mangledName": "$s11VideoSDKRTC14DropAggregatorC4diff18previousCumulative07currentG0AA9PointDataCAH_AHtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toPoint", + "printedName": "toPoint(measurement:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DropAggregatorC7toPoint11measurementAA0F4DataCAA11MeasurementV_tF", + "mangledName": "$s11VideoSDKRTC14DropAggregatorC7toPoint11measurementAA0F4DataCAA11MeasurementV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData(resource:scope:descriptor:points:temporality:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DropAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablefG0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0F10DescriptorVSayAA05PointG0CGAA22AggregationTemporalityOtF", + "mangledName": "$s11VideoSDKRTC14DropAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablefG0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0F10DescriptorVSayAA05PointG0CGAA22AggregationTemporalityOtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC14DropAggregatorC", + "mangledName": "$s11VideoSDKRTC14DropAggregatorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "StableAggregator", + "printedName": "StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Duration", + "printedName": "Google_Protobuf_Duration", + "children": [ + { + "kind": "Var", + "name": "seconds", + "printedName": "seconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64Vvp", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64Vvg", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64Vvs", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64VvM", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nanos", + "printedName": "nanos", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32Vvp", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32Vvg", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32Vvs", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32VvM", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationVACycfc", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(seconds:nanos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "hasDefaultArg": true, + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "hasDefaultArg": true, + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV7seconds5nanosACs5Int64V_s5Int32Vtcfc", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV7seconds5nanosACs5Int64V_s5Int32Vtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(floatLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV12floatLiteralACSd_tcfc", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV12floatLiteralACSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(timeInterval:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV12timeIntervalACSd_tcfc", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV12timeIntervalACSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "timeInterval", + "printedName": "timeInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV12timeIntervalSdvp", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV12timeIntervalSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV12timeIntervalSdvg", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV12timeIntervalSdvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Empty", + "printedName": "Google_Protobuf_Empty", + "children": [ + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Empty", + "printedName": "VideoSDKRTC.Google_Protobuf_Empty", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyVACycfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Empty", + "printedName": "VideoSDKRTC.Google_Protobuf_Empty", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Empty", + "printedName": "VideoSDKRTC.Google_Protobuf_Empty", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EmptyMetricStorage", + "printedName": "EmptyMetricStorage", + "children": [ + { + "kind": "Function", + "name": "recordLong", + "printedName": "recordLong(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordDouble", + "printedName": "recordDouble(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "EmptyMetricStorage", + "printedName": "VideoSDKRTC.EmptyMetricStorage", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EmptyMetricStorage", + "printedName": "VideoSDKRTC.EmptyMetricStorage", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EmptyMetricStorage", + "printedName": "VideoSDKRTC.EmptyMetricStorage", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC8instanceACvsZ", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC8instanceACvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC8instanceACvMZ", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC8instanceACvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "metricDescriptor", + "printedName": "metricDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0Vvp", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0Vvg", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0Vvs", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0VvM", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "collect", + "printedName": "collect(resource:scope:startEpochNanos:epochNanos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC7collect8resource5scope15startEpochNanos05epochK0AA06StableD4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC7collect8resource5scope15startEpochNanos05epochK0AA06StableD4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEmpty", + "printedName": "isEmpty()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC02isC0SbyF", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC02isC0SbyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "MetricStorage", + "printedName": "MetricStorage", + "usr": "s:11VideoSDKRTC13MetricStorageP", + "mangledName": "$s11VideoSDKRTC13MetricStorageP" + }, + { + "kind": "Conformance", + "name": "WritableMetricStorage", + "printedName": "WritableMetricStorage", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP", + "mangledName": "$s11VideoSDKRTC21WritableMetricStorageP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Entry", + "printedName": "Entry", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC5EntryV3keyAA0C3KeyVvp", + "mangledName": "$s11VideoSDKRTC5EntryV3keyAA0C3KeyVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC5EntryV3keyAA0C3KeyVvg", + "mangledName": "$s11VideoSDKRTC5EntryV3keyAA0C3KeyVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC5EntryV5valueAA0C5ValueVvp", + "mangledName": "$s11VideoSDKRTC5EntryV5valueAA0C5ValueVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC5EntryV5valueAA0C5ValueVvg", + "mangledName": "$s11VideoSDKRTC5EntryV5valueAA0C5ValueVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadata", + "printedName": "metadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC5EntryV8metadataAA0C8MetadataVSgvp", + "mangledName": "$s11VideoSDKRTC5EntryV8metadataAA0C8MetadataVSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC5EntryV8metadataAA0C8MetadataVSgvg", + "mangledName": "$s11VideoSDKRTC5EntryV8metadataAA0C8MetadataVSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(key:value:metadata:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + }, + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC5EntryV3key5value8metadataAcA0C3KeyV_AA0C5ValueVAA0C8MetadataVSgtcfc", + "mangledName": "$s11VideoSDKRTC5EntryV3key5value8metadataAcA0C3KeyV_AA0C5ValueVAA0C8MetadataVSgtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" + }, + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5EntryV1loiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC5EntryV1loiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" + }, + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5EntryV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC5EntryV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC5EntryV", + "mangledName": "$s11VideoSDKRTC5EntryV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EntryKey", + "printedName": "EntryKey", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8EntryKeyV4nameSSvp", + "mangledName": "$s11VideoSDKRTC8EntryKeyV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8EntryKeyV4nameSSvg", + "mangledName": "$s11VideoSDKRTC8EntryKeyV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8EntryKeyV4nameACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC8EntryKeyV4nameACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8EntryKeyV1loiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC8EntryKeyV1loiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8EntryKeyV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC8EntryKeyV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8EntryKeyV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC8EntryKeyV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8EntryKeyV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC8EntryKeyV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8EntryKeyV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC8EntryKeyV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC8EntryKeyV", + "mangledName": "$s11VideoSDKRTC8EntryKeyV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EntryMetadata", + "printedName": "EntryMetadata", + "children": [ + { + "kind": "Var", + "name": "metadata", + "printedName": "metadata", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13EntryMetadataV8metadataSSvp", + "mangledName": "$s11VideoSDKRTC13EntryMetadataV8metadataSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13EntryMetadataV8metadataSSvg", + "mangledName": "$s11VideoSDKRTC13EntryMetadataV8metadataSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13EntryMetadataV8metadataSSvs", + "mangledName": "$s11VideoSDKRTC13EntryMetadataV8metadataSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13EntryMetadataV8metadataSSvM", + "mangledName": "$s11VideoSDKRTC13EntryMetadataV8metadataSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(metadata:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC13EntryMetadataV8metadataACSgSSSg_tcfc", + "mangledName": "$s11VideoSDKRTC13EntryMetadataV8metadataACSgSSSg_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + }, + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13EntryMetadataV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC13EntryMetadataV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13EntryMetadataV", + "mangledName": "$s11VideoSDKRTC13EntryMetadataV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EntryValue", + "printedName": "EntryValue", + "children": [ + { + "kind": "Var", + "name": "string", + "printedName": "string", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10EntryValueV6stringSSvp", + "mangledName": "$s11VideoSDKRTC10EntryValueV6stringSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10EntryValueV6stringSSvg", + "mangledName": "$s11VideoSDKRTC10EntryValueV6stringSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10EntryValueV6stringACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC10EntryValueV6stringACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + }, + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10EntryValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC10EntryValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC10EntryValueV", + "mangledName": "$s11VideoSDKRTC10EntryValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Enum", + "printedName": "Enum", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC4EnumPxycfc", + "mangledName": "$s11VideoSDKRTC4EnumPxycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC4EnumP8rawValuexSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC4EnumP8rawValuexSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC4EnumP8rawValueSivp", + "mangledName": "$s11VideoSDKRTC4EnumP8rawValueSivp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4EnumP8rawValueSivg", + "mangledName": "$s11VideoSDKRTC4EnumP8rawValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4EnumPAAE4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC4EnumPAAE4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : Swift.CaseIterable, τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_0 : Swift.Sendable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EnvironmentContextPropagator", + "printedName": "EnvironmentContextPropagator", + "children": [ + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28EnvironmentContextPropagatorV6fieldsShySSGvp", + "mangledName": "$s11VideoSDKRTC28EnvironmentContextPropagatorV6fieldsShySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28EnvironmentContextPropagatorV6fieldsShySSGvg", + "mangledName": "$s11VideoSDKRTC28EnvironmentContextPropagatorV6fieldsShySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "EnvironmentContextPropagator", + "printedName": "VideoSDKRTC.EnvironmentContextPropagator", + "usr": "s:11VideoSDKRTC28EnvironmentContextPropagatorV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28EnvironmentContextPropagatorVACycfc", + "mangledName": "$s11VideoSDKRTC28EnvironmentContextPropagatorVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "inject", + "printedName": "inject(spanContext:carrier:setter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28EnvironmentContextPropagatorV6inject04spanD07carrier6setteryAA04SpanD0V_SDyS2SGzxtAA6SetterRzlF", + "mangledName": "$s11VideoSDKRTC28EnvironmentContextPropagatorV6inject04spanD07carrier6setteryAA04SpanD0V_SDyS2SGzxtAA6SetterRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Setter>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "extract", + "printedName": "extract(carrier:getter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28EnvironmentContextPropagatorV7extract7carrier6getterAA04SpanD0VSgSDyS2SG_xtAA6GetterRzlF", + "mangledName": "$s11VideoSDKRTC28EnvironmentContextPropagatorV7extract7carrier6getterAA04SpanD0VSgSDyS2SG_xtAA6GetterRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Getter>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC28EnvironmentContextPropagatorV", + "mangledName": "$s11VideoSDKRTC28EnvironmentContextPropagatorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "TextMapPropagator", + "printedName": "TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP", + "mangledName": "$s11VideoSDKRTC17TextMapPropagatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EnvVarHeaders", + "printedName": "EnvVarHeaders", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[(Swift.String, Swift.String)]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.String, Swift.String)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13EnvVarHeadersV10attributesSaySS_SStGSgvpZ", + "mangledName": "$s11VideoSDKRTC13EnvVarHeadersV10attributesSaySS_SStGSgvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[(Swift.String, Swift.String)]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.String, Swift.String)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13EnvVarHeadersV10attributesSaySS_SStGSgvgZ", + "mangledName": "$s11VideoSDKRTC13EnvVarHeadersV10attributesSaySS_SStGSgvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "attributes", + "printedName": "attributes(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[(Swift.String, Swift.String)]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.String, Swift.String)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13EnvVarHeadersV10attributes3forSaySS_SStGSgSSSg_tFZ", + "mangledName": "$s11VideoSDKRTC13EnvVarHeadersV10attributes3forSaySS_SStGSgSSSg_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13EnvVarHeadersV", + "mangledName": "$s11VideoSDKRTC13EnvVarHeadersV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EnvVarResource", + "printedName": "EnvVarResource", + "children": [ + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14EnvVarResourceV8resourceAA0E0VvpZ", + "mangledName": "$s11VideoSDKRTC14EnvVarResourceV8resourceAA0E0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14EnvVarResourceV8resourceAA0E0VvgZ", + "mangledName": "$s11VideoSDKRTC14EnvVarResourceV8resourceAA0E0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(environment:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14EnvVarResourceV3get11environmentAA0E0VSDyS2SG_tFZ", + "mangledName": "$s11VideoSDKRTC14EnvVarResourceV3get11environmentAA0E0VSDyS2SG_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14EnvVarResourceV", + "mangledName": "$s11VideoSDKRTC14EnvVarResourceV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EventBuilder", + "printedName": "EventBuilder", + "children": [ + { + "kind": "Function", + "name": "setData", + "printedName": "setData(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12EventBuilderP7setDatayxSDySSAA14AttributeValueOGF", + "mangledName": "$s11VideoSDKRTC12EventBuilderP7setDatayxSDySSAA14AttributeValueOGF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.EventBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC12EventBuilderP", + "mangledName": "$s11VideoSDKRTC12EventBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordBuilder", + "printedName": "LogRecordBuilder", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ExemplarData", + "printedName": "ExemplarData", + "children": [ + { + "kind": "Var", + "name": "filteredAttributes", + "printedName": "filteredAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvs", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvM", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "epochNanos", + "printedName": "epochNanos", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64VvM", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "spanContext", + "printedName": "spanContext", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvp", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvg", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvs", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvM", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + }, + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ExemplarDataC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC12ExemplarDataC", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleExemplarData", + "printedName": "DoubleExemplarData", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18DoubleExemplarDataC5valueSdvp", + "mangledName": "$s11VideoSDKRTC18DoubleExemplarDataC5valueSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18DoubleExemplarDataC5valueSdvg", + "mangledName": "$s11VideoSDKRTC18DoubleExemplarDataC5valueSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18DoubleExemplarDataC5valueSdvs", + "mangledName": "$s11VideoSDKRTC18DoubleExemplarDataC5valueSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18DoubleExemplarDataC5valueSdvM", + "mangledName": "$s11VideoSDKRTC18DoubleExemplarDataC5valueSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18DoubleExemplarDataC", + "mangledName": "$s11VideoSDKRTC18DoubleExemplarDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC12ExemplarDataC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.ExemplarData" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LongExemplarData", + "printedName": "LongExemplarData", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16LongExemplarDataC5valueSivp", + "mangledName": "$s11VideoSDKRTC16LongExemplarDataC5valueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16LongExemplarDataC5valueSivg", + "mangledName": "$s11VideoSDKRTC16LongExemplarDataC5valueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16LongExemplarDataC5valueSivs", + "mangledName": "$s11VideoSDKRTC16LongExemplarDataC5valueSivs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16LongExemplarDataC5valueSivM", + "mangledName": "$s11VideoSDKRTC16LongExemplarDataC5valueSivM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16LongExemplarDataC", + "mangledName": "$s11VideoSDKRTC16LongExemplarDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC12ExemplarDataC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.ExemplarData" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ExemplarFilter", + "printedName": "ExemplarFilter", + "children": [ + { + "kind": "Function", + "name": "shouldSampleMeasurement", + "printedName": "shouldSampleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ExemplarFilterP23shouldSampleMeasurement5value10attributesSbSi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC14ExemplarFilterP23shouldSampleMeasurement5value10attributesSbSi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExemplarFilter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldSampleMeasurement", + "printedName": "shouldSampleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ExemplarFilterP23shouldSampleMeasurement5value10attributesSbSd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC14ExemplarFilterP23shouldSampleMeasurement5value10attributesSbSd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExemplarFilter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14ExemplarFilterP", + "mangledName": "$s11VideoSDKRTC14ExemplarFilterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "AlwaysOnFilter", + "printedName": "AlwaysOnFilter", + "children": [ + { + "kind": "Function", + "name": "shouldSampleMeasurement", + "printedName": "shouldSampleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14AlwaysOnFilterV23shouldSampleMeasurement5value10attributesSbSd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC14AlwaysOnFilterV23shouldSampleMeasurement5value10attributesSbSd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldSampleMeasurement", + "printedName": "shouldSampleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14AlwaysOnFilterV23shouldSampleMeasurement5value10attributesSbSi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC14AlwaysOnFilterV23shouldSampleMeasurement5value10attributesSbSi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14AlwaysOnFilterV", + "mangledName": "$s11VideoSDKRTC14AlwaysOnFilterV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExemplarFilter", + "printedName": "ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP", + "mangledName": "$s11VideoSDKRTC14ExemplarFilterP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AlwaysOffFilter", + "printedName": "AlwaysOffFilter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AlwaysOffFilter", + "printedName": "VideoSDKRTC.AlwaysOffFilter", + "usr": "s:11VideoSDKRTC15AlwaysOffFilterV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC15AlwaysOffFilterVACycfc", + "mangledName": "$s11VideoSDKRTC15AlwaysOffFilterVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "shouldSampleMeasurement", + "printedName": "shouldSampleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15AlwaysOffFilterV23shouldSampleMeasurement5value10attributesSbSi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC15AlwaysOffFilterV23shouldSampleMeasurement5value10attributesSbSi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldSampleMeasurement", + "printedName": "shouldSampleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15AlwaysOffFilterV23shouldSampleMeasurement5value10attributesSbSd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC15AlwaysOffFilterV23shouldSampleMeasurement5value10attributesSbSd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC15AlwaysOffFilterV", + "mangledName": "$s11VideoSDKRTC15AlwaysOffFilterV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExemplarFilter", + "printedName": "ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP", + "mangledName": "$s11VideoSDKRTC14ExemplarFilterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ExemplarReservoir", + "printedName": "ExemplarReservoir", + "children": [ + { + "kind": "Function", + "name": "collectAndReset", + "printedName": "collectAndReset(attribute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ExemplarData]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExemplarReservoirC15collectAndReset9attributeSayAA0C4DataCGSDySSAA14AttributeValueOG_tF", + "mangledName": "$s11VideoSDKRTC17ExemplarReservoirC15collectAndReset9attributeSayAA0C4DataCGSDySSAA14AttributeValueOG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "offerDoubleMeasurement", + "printedName": "offerDoubleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC17ExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "offerLongMeasurement", + "printedName": "offerLongMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC17ExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC17ExemplarReservoirC", + "mangledName": "$s11VideoSDKRTC17ExemplarReservoirC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "TypeDecl", + "name": "NoopExemplarReservoir", + "printedName": "NoopExemplarReservoir", + "children": [ + { + "kind": "Function", + "name": "offerDoubleMeasurement", + "printedName": "offerDoubleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC21NoopExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "offerLongMeasurement", + "printedName": "offerLongMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC21NoopExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "collectAndReset", + "printedName": "collectAndReset(attribute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ExemplarData]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopExemplarReservoirC15collectAndReset9attributeSayAA0D4DataCGSDySSAA14AttributeValueOG_tF", + "mangledName": "$s11VideoSDKRTC21NoopExemplarReservoirC15collectAndReset9attributeSayAA0D4DataCGSDySSAA14AttributeValueOG_tF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21NoopExemplarReservoirC", + "mangledName": "$s11VideoSDKRTC21NoopExemplarReservoirC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC17ExemplarReservoirC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.ExemplarReservoir" + ] + }, + { + "kind": "TypeDecl", + "name": "ExemplarReservoirCollection", + "printedName": "ExemplarReservoirCollection", + "declKind": "Enum", + "usr": "s:11VideoSDKRTC27ExemplarReservoirCollectionO", + "mangledName": "$s11VideoSDKRTC27ExemplarReservoirCollectionO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "FixedSizedExemplarReservoir", + "printedName": "FixedSizedExemplarReservoir", + "children": [ + { + "kind": "Function", + "name": "offerLongMeasurement", + "printedName": "offerLongMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27FixedSizedExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC27FixedSizedExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "offerDoubleMeasurement", + "printedName": "offerDoubleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27FixedSizedExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC27FixedSizedExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "collectAndReset", + "printedName": "collectAndReset(attribute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ExemplarData]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27FixedSizedExemplarReservoirC15collectAndReset9attributeSayAA0E4DataCGSDySSAA14AttributeValueOG_tF", + "mangledName": "$s11VideoSDKRTC27FixedSizedExemplarReservoirC15collectAndReset9attributeSayAA0E4DataCGSDySSAA14AttributeValueOG_tF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC27FixedSizedExemplarReservoirC", + "mangledName": "$s11VideoSDKRTC27FixedSizedExemplarReservoirC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC17ExemplarReservoirC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.ExemplarReservoir" + ] + }, + { + "kind": "TypeDecl", + "name": "RandomFixedSizedExemplarReservoir", + "printedName": "RandomFixedSizedExemplarReservoir", + "declKind": "Class", + "usr": "s:11VideoSDKRTC33RandomFixedSizedExemplarReservoirC", + "mangledName": "$s11VideoSDKRTC33RandomFixedSizedExemplarReservoirC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC27FixedSizedExemplarReservoirC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.FixedSizedExemplarReservoir", + "VideoSDKRTC.ExemplarReservoir" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ExplicitBucketHistogramAggregation", + "printedName": "ExplicitBucketHistogramAggregation", + "children": [ + { + "kind": "Var", + "name": "DEFAULT_BOUNDARIES", + "printedName": "DEFAULT_BOUNDARIES", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC18DEFAULT_BOUNDARIESSaySdGvpZ", + "mangledName": "$s11VideoSDKRTC34ExplicitBucketHistogramAggregationC18DEFAULT_BOUNDARIESSaySdGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC18DEFAULT_BOUNDARIESSaySdGvgZ", + "mangledName": "$s11VideoSDKRTC34ExplicitBucketHistogramAggregationC18DEFAULT_BOUNDARIESSaySdGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "ExplicitBucketHistogramAggregation", + "printedName": "VideoSDKRTC.ExplicitBucketHistogramAggregation", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC34ExplicitBucketHistogramAggregationC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExplicitBucketHistogramAggregation", + "printedName": "VideoSDKRTC.ExplicitBucketHistogramAggregation", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC34ExplicitBucketHistogramAggregationC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createAggregator", + "printedName": "createAggregator(descriptor:exemplarFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableAggregator", + "printedName": "VideoSDKRTC.StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC16createAggregator10descriptor14exemplarFilterAA06StableH0_pAA20InstrumentDescriptorV_AA08ExemplarK0_ptF", + "mangledName": "$s11VideoSDKRTC34ExplicitBucketHistogramAggregationC16createAggregator10descriptor14exemplarFilterAA06StableH0_pAA20InstrumentDescriptorV_AA08ExemplarK0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isCompatible", + "printedName": "isCompatible(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "mangledName": "$s11VideoSDKRTC34ExplicitBucketHistogramAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC", + "mangledName": "$s11VideoSDKRTC34ExplicitBucketHistogramAggregationC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Aggregation", + "printedName": "Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP", + "mangledName": "$s11VideoSDKRTC11AggregationP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ExponentialHistogramBuckets", + "printedName": "ExponentialHistogramBuckets", + "children": [ + { + "kind": "Var", + "name": "scale", + "printedName": "scale", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP5scaleSivp", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP5scaleSivp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP5scaleSivg", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP5scaleSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExponentialHistogramBuckets>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "offset", + "printedName": "offset", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP6offsetSivp", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP6offsetSivp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP6offsetSivg", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP6offsetSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExponentialHistogramBuckets>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bucketCounts", + "printedName": "bucketCounts", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP12bucketCountsSaySiGvp", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP12bucketCountsSaySiGvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP12bucketCountsSaySiGvg", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP12bucketCountsSaySiGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExponentialHistogramBuckets>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalCount", + "printedName": "totalCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP10totalCountSivp", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP10totalCountSivp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP10totalCountSivg", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP10totalCountSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExponentialHistogramBuckets>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ExportResult", + "printedName": "ExportResult", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ExportResult.Type) -> VideoSDKRTC.ExportResult", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ExportResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC12ExportResultO7successyA2CmF", + "mangledName": "$s11VideoSDKRTC12ExportResultO7successyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "failure", + "printedName": "failure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ExportResult.Type) -> VideoSDKRTC.ExportResult", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ExportResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC12ExportResultO7failureyA2CmF", + "mangledName": "$s11VideoSDKRTC12ExportResultO7failureyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ExportResultO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC12ExportResultO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ExportResultO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC12ExportResultO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExportResultO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC12ExportResultO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ExportResultO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC12ExportResultO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC12ExportResultO", + "mangledName": "$s11VideoSDKRTC12ExportResultO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "children": [ + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "setExtensionValue", + "printedName": "setExtensionValue(ext:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension<τ_1_0, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.ValueType" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0Cyqd__xG_0G4TypeQyd__tAA0F5FieldRd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0Cyqd__xG_0G4TypeQyd__tAA0F5FieldRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "getExtensionValue", + "printedName": "getExtensionValue(ext:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0.ValueType?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.ValueType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension<τ_1_0, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17getExtensionValue3ext0G4TypeQyd__SgAA0dF0Cyqd__xG_tAA0F5FieldRd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17getExtensionValue3ext0G4TypeQyd__SgAA0dF0Cyqd__xG_tAA0F5FieldRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hasExtensionValue", + "printedName": "hasExtensionValue(ext:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension<τ_1_0, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17hasExtensionValue3extSbAA0dF0Cyqd__xG_tAA0F5FieldRd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17hasExtensionValue3extSbAA0dF0Cyqd__xG_tAA0F5FieldRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearExtensionValue", + "printedName": "clearExtensionValue(ext:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension<τ_1_0, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE19clearExtensionValue3extyAA0dF0Cyqd__xG_tAA0F5FieldRd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE19clearExtensionValue3extyAA0dF0Cyqd__xG_tAA0F5FieldRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setExtensionValue", + "printedName": "setExtensionValue(ext:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedExtensionField", + "printedName": "VideoSDKRTC.RepeatedExtensionField<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA08RepeatedF5FieldVyqd__GxG_Say8BaseTypeQyd__GtAA0kM0Rd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA08RepeatedF5FieldVyqd__GxG_Say8BaseTypeQyd__GtAA0kM0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setExtensionValue", + "printedName": "setExtensionValue(ext:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "PackedExtensionField", + "printedName": "VideoSDKRTC.PackedExtensionField<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA06PackedF5FieldVyqd__GxG_Say8BaseTypeQyd__GtAA0kM0Rd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA06PackedF5FieldVyqd__GxG_Say8BaseTypeQyd__GtAA0kM0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setExtensionValue", + "printedName": "setExtensionValue(ext:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedEnumExtensionField", + "printedName": "VideoSDKRTC.RepeatedEnumExtensionField<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA012RepeatedEnumF5FieldVyqd__GxG_Sayqd__GtAA0K0Rd__Si03RawG0Rtd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA012RepeatedEnumF5FieldVyqd__GxG_Sayqd__GtAA0K0Rd__Si03RawG0Rtd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.Enum, τ_1_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setExtensionValue", + "printedName": "setExtensionValue(ext:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "PackedEnumExtensionField", + "printedName": "VideoSDKRTC.PackedEnumExtensionField<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA010PackedEnumF5FieldVyqd__GxG_Sayqd__GtAA0K0Rd__Si03RawG0Rtd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA010PackedEnumF5FieldVyqd__GxG_Sayqd__GtAA0K0Rd__Si03RawG0Rtd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.Enum, τ_1_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setExtensionValue", + "printedName": "setExtensionValue(ext:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedMessageExtensionField", + "printedName": "VideoSDKRTC.RepeatedMessageExtensionField<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA08RepeateddF5FieldVyqd__GxG_Sayqd__GtSQRd__AA0D0Rd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA08RepeateddF5FieldVyqd__GxG_Sayqd__GtSQRd__AA0D0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : Swift.Equatable, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setExtensionValue", + "printedName": "setExtensionValue(ext:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedGroupExtensionField", + "printedName": "VideoSDKRTC.RepeatedGroupExtensionField<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA013RepeatedGroupF5FieldVyqd__GxG_Sayqd__GtSHRd__AA0D0Rd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA013RepeatedGroupF5FieldVyqd__GxG_Sayqd__GtSHRd__AA0D0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : Swift.Hashable, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "children": [ + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP08protobufD0AA0c7MessageD0_pvp", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP08protobufD0AA0c7MessageD0_pvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP08protobufD0AA0c7MessageD0_pvg", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP08protobufD0AA0c7MessageD0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP7isEqual5otherSbAaB_p_tF", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP7isEqual5otherSbAaB_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.AnyExtensionField, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.AnyExtensionField, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldPAAE13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldPAAE13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldPAAE13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldPAAE13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyExtensionField>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "AssociatedType", + "name": "ValueType", + "printedName": "ValueType", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC14ExtensionFieldP9ValueTypeQa", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP9ValueTypeQa", + "moduleName": "VideoSDKRTC", + "protocolReq": true + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueType" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvp", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueType" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvg", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueType" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvs", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvM", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueType" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14ExtensionFieldP08protobufC05valuexAA010AnyMessageC0_p_9ValueTypeQztcfc", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP08protobufC05valuexAA010AnyMessageC0_p_9ValueTypeQztcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14ExtensionFieldP08protobufC07decoderxSgAA010AnyMessageC0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP08protobufC07decoderxSgAA010AnyMessageC0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensionField, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.AnyExtensionField>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OptionalExtensionField", + "printedName": "OptionalExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvp", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvg", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvs", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvM", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvp", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvg", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvs", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvM", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OptionalExtensionField", + "printedName": "VideoSDKRTC.OptionalExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "OptionalExtensionField", + "printedName": "VideoSDKRTC.OptionalExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalExtensionField", + "printedName": "VideoSDKRTC.OptionalExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV08protobufD05valueACyxGAA010AnyMessageD0_p_8BaseTypeQztcfc", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV08protobufD05valueACyxGAA010AnyMessageD0_p_8BaseTypeQztcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV7isEqual5otherSbAA03AnydE0_p_tF", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV7isEqual5otherSbAA03AnydE0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.OptionalExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalExtensionField", + "printedName": "VideoSDKRTC.OptionalExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV08protobufD07decoderACyxGSgAA010AnyMessageD0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV08protobufD07decoderACyxGSgAA010AnyMessageD0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RepeatedExtensionField", + "printedName": "RepeatedExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvp", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvg", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvs", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvM", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvp", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvg", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvs", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvM", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "RepeatedExtensionField", + "printedName": "VideoSDKRTC.RepeatedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "RepeatedExtensionField", + "printedName": "VideoSDKRTC.RepeatedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedExtensionField", + "printedName": "VideoSDKRTC.RepeatedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV08protobufD05valueACyxGAA010AnyMessageD0_p_Say8BaseTypeQzGtcfc", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV08protobufD05valueACyxGAA010AnyMessageD0_p_Say8BaseTypeQzGtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV7isEqual5otherSbAA03AnydE0_p_tF", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV7isEqual5otherSbAA03AnydE0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.RepeatedExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedExtensionField", + "printedName": "VideoSDKRTC.RepeatedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV08protobufD07decoderACyxGSgAA010AnyMessageD0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV08protobufD07decoderACyxGSgAA010AnyMessageD0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PackedExtensionField", + "printedName": "PackedExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvp", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvg", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvs", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvM", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvp", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvg", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvs", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvM", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "PackedExtensionField", + "printedName": "VideoSDKRTC.PackedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "PackedExtensionField", + "printedName": "VideoSDKRTC.PackedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PackedExtensionField", + "printedName": "VideoSDKRTC.PackedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV08protobufD05valueACyxGAA010AnyMessageD0_p_Say8BaseTypeQzGtcfc", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV08protobufD05valueACyxGAA010AnyMessageD0_p_Say8BaseTypeQzGtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV7isEqual5otherSbAA03AnydE0_p_tF", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV7isEqual5otherSbAA03AnydE0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.PackedExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "PackedExtensionField", + "printedName": "VideoSDKRTC.PackedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV08protobufD07decoderACyxGSgAA010AnyMessageD0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV08protobufD07decoderACyxGSgAA010AnyMessageD0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OptionalEnumExtensionField", + "printedName": "OptionalEnumExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvp", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvg", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvs", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvM", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OptionalEnumExtensionField", + "printedName": "VideoSDKRTC.OptionalEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "OptionalEnumExtensionField", + "printedName": "VideoSDKRTC.OptionalEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalEnumExtensionField", + "printedName": "VideoSDKRTC.OptionalEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_xtcfc", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_xtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.SPBDecoder, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.OptionalEnumExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalEnumExtensionField", + "printedName": "VideoSDKRTC.OptionalEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.SPBDecoder, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.Visitor, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RepeatedEnumExtensionField", + "printedName": "RepeatedEnumExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvp", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvg", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvs", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvM", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "RepeatedEnumExtensionField", + "printedName": "VideoSDKRTC.RepeatedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "RepeatedEnumExtensionField", + "printedName": "VideoSDKRTC.RepeatedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedEnumExtensionField", + "printedName": "VideoSDKRTC.RepeatedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_SayxGtcfc", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_SayxGtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.SPBDecoder, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.RepeatedEnumExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedEnumExtensionField", + "printedName": "VideoSDKRTC.RepeatedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.SPBDecoder, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.Visitor, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PackedEnumExtensionField", + "printedName": "PackedEnumExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvp", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvg", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvs", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvM", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "PackedEnumExtensionField", + "printedName": "VideoSDKRTC.PackedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "PackedEnumExtensionField", + "printedName": "VideoSDKRTC.PackedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PackedEnumExtensionField", + "printedName": "VideoSDKRTC.PackedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_SayxGtcfc", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_SayxGtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.SPBDecoder, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.PackedEnumExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "PackedEnumExtensionField", + "printedName": "VideoSDKRTC.PackedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.SPBDecoder, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.Visitor, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OptionalMessageExtensionField", + "printedName": "OptionalMessageExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvp", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvg", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvs", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvM", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvp", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvg", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvs", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvM", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OptionalMessageExtensionField", + "printedName": "VideoSDKRTC.OptionalMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "OptionalMessageExtensionField", + "printedName": "VideoSDKRTC.OptionalMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalMessageExtensionField", + "printedName": "VideoSDKRTC.OptionalMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE05valueACyxGAA03AnydE0_p_xtcfc", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE05valueACyxGAA03AnydE0_p_xtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.OptionalMessageExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalMessageExtensionField", + "printedName": "VideoSDKRTC.OptionalMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE07decoderACyxGSgAA03AnydE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE07decoderACyxGSgAA03AnydE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RepeatedMessageExtensionField", + "printedName": "RepeatedMessageExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvp", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvg", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvs", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvM", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvp", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvg", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvs", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvM", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "RepeatedMessageExtensionField", + "printedName": "VideoSDKRTC.RepeatedMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "RepeatedMessageExtensionField", + "printedName": "VideoSDKRTC.RepeatedMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedMessageExtensionField", + "printedName": "VideoSDKRTC.RepeatedMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE05valueACyxGAA03AnydE0_p_SayxGtcfc", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE05valueACyxGAA03AnydE0_p_SayxGtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.RepeatedMessageExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedMessageExtensionField", + "printedName": "VideoSDKRTC.RepeatedMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE07decoderACyxGSgAA03AnydE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE07decoderACyxGSgAA03AnydE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OptionalGroupExtensionField", + "printedName": "OptionalGroupExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvp", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvg", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvs", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvM", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OptionalGroupExtensionField", + "printedName": "VideoSDKRTC.OptionalGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "OptionalGroupExtensionField", + "printedName": "VideoSDKRTC.OptionalGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalGroupExtensionField", + "printedName": "VideoSDKRTC.OptionalGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_xtcfc", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_xtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.OptionalGroupExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalGroupExtensionField", + "printedName": "VideoSDKRTC.OptionalGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RepeatedGroupExtensionField", + "printedName": "RepeatedGroupExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvp", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvg", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvs", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvM", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "RepeatedGroupExtensionField", + "printedName": "VideoSDKRTC.RepeatedGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "RepeatedGroupExtensionField", + "printedName": "VideoSDKRTC.RepeatedGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedGroupExtensionField", + "printedName": "VideoSDKRTC.RepeatedGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_SayxGtcfc", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_SayxGtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.RepeatedGroupExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedGroupExtensionField", + "printedName": "VideoSDKRTC.RepeatedGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ExtensionFieldValueSet", + "printedName": "ExtensionFieldValueSet", + "children": [ + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetVACycfc", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:start:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV8traverse7visitor5start3endyxz_S2itKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV8traverse7visitor5start3endyxz_S2itKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyExtensionField?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Subscript", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSicip", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSicip", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyExtensionField?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSicig", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSicig", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyExtensionField?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSicis", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSicis", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSiciM", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSiciM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV04hashE0Sivp", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV04hashE0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV04hashE0Sivg", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV04hashE0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ExtensionMap", + "printedName": "ExtensionMap", + "children": [ + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyMessageExtension?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Subscript", + "usr": "s:11VideoSDKRTC12ExtensionMapPyAA010AnyMessageC0_pSgAA0F0_pXp_Sitcip", + "mangledName": "$s11VideoSDKRTC12ExtensionMapPyAA010AnyMessageC0_pSgAA0F0_pXp_Sitcip", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensionMap>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyMessageExtension?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExtensionMapPyAA010AnyMessageC0_pSgAA0F0_pXp_Sitcig", + "mangledName": "$s11VideoSDKRTC12ExtensionMapPyAA010AnyMessageC0_pSgAA0F0_pXp_Sitcig", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensionMap>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "fieldNumberForProto", + "printedName": "fieldNumberForProto(messageType:protoFieldName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ExtensionMapP19fieldNumberForProto11messageType14protoFieldNameSiSgAA7Message_pXp_SStF", + "mangledName": "$s11VideoSDKRTC12ExtensionMapP19fieldNumberForProto11messageType14protoFieldNameSiSgAA7Message_pXp_SStF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensionMap>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC12ExtensionMapP", + "mangledName": "$s11VideoSDKRTC12ExtensionMapP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : Swift.Sendable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FieldMask", + "printedName": "Google_Protobuf_FieldMask", + "children": [ + { + "kind": "Var", + "name": "paths", + "printedName": "paths", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldMask", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldMask", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskVACycfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldMask", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldMask", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldMask", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldMask", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protoPaths:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldMask", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldMask", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV10protoPathsACSaySSG_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV10protoPathsACSaySSG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protoPaths:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldMask", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldMask", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV10protoPathsACSSd_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV10protoPathsACSSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jsonPaths:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldMask?", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldMask", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldMask", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV9jsonPathsACSgSSd_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV9jsonPathsACSgSSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "AssociatedType", + "name": "BaseType", + "printedName": "BaseType", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC9FieldTypeP04BaseD0Qa", + "mangledName": "$s11VideoSDKRTC9FieldTypeP04BaseD0Qa", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9FieldTypeP18proto3DefaultValue04BaseD0QzvpZ", + "mangledName": "$s11VideoSDKRTC9FieldTypeP18proto3DefaultValue04BaseD0QzvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9FieldTypeP18proto3DefaultValue04BaseD0QzvgZ", + "mangledName": "$s11VideoSDKRTC9FieldTypeP18proto3DefaultValue04BaseD0QzvgZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.BaseType?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9FieldTypeP14decodeSingular5value4fromy04BaseD0QzSgz_qd__ztKAA10SPBDecoderRd__lFZ", + "mangledName": "$s11VideoSDKRTC9FieldTypeP14decodeSingular5value4fromy04BaseD0QzSgz_qd__ztKAA10SPBDecoderRd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9FieldTypeP14decodeRepeated5value4fromySay04BaseD0QzGz_qd__ztKAA10SPBDecoderRd__lFZ", + "mangledName": "$s11VideoSDKRTC9FieldTypeP14decodeRepeated5value4fromySay04BaseD0QzGz_qd__ztKAA10SPBDecoderRd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9FieldTypeP13visitSingular5value11fieldNumber4withy04BaseD0Qz_Siqd__ztKAA7VisitorRd__lFZ", + "mangledName": "$s11VideoSDKRTC9FieldTypeP13visitSingular5value11fieldNumber4withy04BaseD0Qz_Siqd__ztKAA7VisitorRd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9FieldTypeP13visitRepeated5value11fieldNumber4withySay04BaseD0QzG_Siqd__ztKAA7VisitorRd__lFZ", + "mangledName": "$s11VideoSDKRTC9FieldTypeP13visitRepeated5value11fieldNumber4withySay04BaseD0QzG_Siqd__ztKAA7VisitorRd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9FieldTypeP11visitPacked5value11fieldNumber4withySay04BaseD0QzG_Siqd__ztKAA7VisitorRd__lFZ", + "mangledName": "$s11VideoSDKRTC9FieldTypeP11visitPacked5value11fieldNumber4withySay04BaseD0QzG_Siqd__ztKAA7VisitorRd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0.BaseType : Swift.Hashable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MapKeyType", + "printedName": "MapKeyType", + "children": [ + { + "kind": "Function", + "name": "_lessThan", + "printedName": "_lessThan(lhs:rhs:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10MapKeyTypeP9_lessThan3lhs3rhsSb04BaseE0Qz_AHtFZ", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP9_lessThan3lhs3rhsSb04BaseE0Qz_AHtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MapKeyType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "_lessThan", + "printedName": "_lessThan(lhs:rhs:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10MapKeyTypePAASL04BaseE0RpzrlE9_lessThan3lhs3rhsSbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC10MapKeyTypePAASL04BaseE0RpzrlE9_lessThan3lhs3rhsSbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MapKeyType, τ_0_0.BaseType : Swift.Comparable>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MapValueType", + "printedName": "MapValueType", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufFloat", + "printedName": "ProtobufFloat", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13ProtobufFloatV18proto3DefaultValueSfvpZ", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV18proto3DefaultValueSfvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13ProtobufFloatV18proto3DefaultValueSfvgZ", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV18proto3DefaultValueSfvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Float?", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufFloatV14decodeSingular5value4fromySfSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV14decodeSingular5value4fromySfSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufFloatV14decodeRepeated5value4fromySaySfGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV14decodeRepeated5value4fromySaySfGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufFloatV13visitSingular5value11fieldNumber4withySf_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV13visitSingular5value11fieldNumber4withySf_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufFloatV13visitRepeated5value11fieldNumber4withySaySfG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV13visitRepeated5value11fieldNumber4withySaySfG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufFloatV11visitPacked5value11fieldNumber4withySaySfG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV11visitPacked5value11fieldNumber4withySaySfG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13ProtobufFloatV", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufDouble", + "printedName": "ProtobufDouble", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV18proto3DefaultValueSdvpZ", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV18proto3DefaultValueSdvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV18proto3DefaultValueSdvgZ", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV18proto3DefaultValueSdvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV14decodeSingular5value4fromySdSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV14decodeSingular5value4fromySdSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV14decodeRepeated5value4fromySaySdGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV14decodeRepeated5value4fromySaySdGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV13visitSingular5value11fieldNumber4withySd_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV13visitSingular5value11fieldNumber4withySd_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV13visitRepeated5value11fieldNumber4withySaySdG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV13visitRepeated5value11fieldNumber4withySaySdG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV11visitPacked5value11fieldNumber4withySaySdG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV11visitPacked5value11fieldNumber4withySaySdG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufInt32", + "printedName": "ProtobufInt32", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13ProtobufInt32V18proto3DefaultValues0D0VvpZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V18proto3DefaultValues0D0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13ProtobufInt32V18proto3DefaultValues0D0VvgZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V18proto3DefaultValues0D0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int32?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt32V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt32V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt32V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt32V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt32V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13ProtobufInt32V", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufInt64", + "printedName": "ProtobufInt64", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13ProtobufInt64V18proto3DefaultValues0D0VvpZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V18proto3DefaultValues0D0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13ProtobufInt64V18proto3DefaultValues0D0VvgZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V18proto3DefaultValues0D0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt64V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt64V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt64V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt64V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt64V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13ProtobufInt64V", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufUInt32", + "printedName": "ProtobufUInt32", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V18proto3DefaultValues0D0VvpZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V18proto3DefaultValues0D0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V18proto3DefaultValues0D0VvgZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V18proto3DefaultValues0D0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufUInt64", + "printedName": "ProtobufUInt64", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V18proto3DefaultValues0D0VvpZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V18proto3DefaultValues0D0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V18proto3DefaultValues0D0VvgZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V18proto3DefaultValues0D0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt64?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufSInt32", + "printedName": "ProtobufSInt32", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V18proto3DefaultValues5Int32VvpZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V18proto3DefaultValues5Int32VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V18proto3DefaultValues5Int32VvgZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V18proto3DefaultValues5Int32VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int32?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V14decodeSingular5value4fromys5Int32VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V14decodeSingular5value4fromys5Int32VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V14decodeRepeated5value4fromySays5Int32VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V14decodeRepeated5value4fromySays5Int32VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V13visitSingular5value11fieldNumber4withys5Int32V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V13visitSingular5value11fieldNumber4withys5Int32V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V13visitRepeated5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V13visitRepeated5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V11visitPacked5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V11visitPacked5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufSInt64", + "printedName": "ProtobufSInt64", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V18proto3DefaultValues5Int64VvpZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V18proto3DefaultValues5Int64VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V18proto3DefaultValues5Int64VvgZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V18proto3DefaultValues5Int64VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V14decodeSingular5value4fromys5Int64VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V14decodeSingular5value4fromys5Int64VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V14decodeRepeated5value4fromySays5Int64VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V14decodeRepeated5value4fromySays5Int64VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V13visitSingular5value11fieldNumber4withys5Int64V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V13visitSingular5value11fieldNumber4withys5Int64V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V13visitRepeated5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V13visitRepeated5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V11visitPacked5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V11visitPacked5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufFixed32", + "printedName": "ProtobufFixed32", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V18proto3DefaultValues6UInt32VvpZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V18proto3DefaultValues6UInt32VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V18proto3DefaultValues6UInt32VvgZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V18proto3DefaultValues6UInt32VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V14decodeSingular5value4fromys6UInt32VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V14decodeSingular5value4fromys6UInt32VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V14decodeRepeated5value4fromySays6UInt32VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V14decodeRepeated5value4fromySays6UInt32VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V13visitSingular5value11fieldNumber4withys6UInt32V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V13visitSingular5value11fieldNumber4withys6UInt32V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V13visitRepeated5value11fieldNumber4withySays6UInt32VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V13visitRepeated5value11fieldNumber4withySays6UInt32VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V11visitPacked5value11fieldNumber4withySays6UInt32VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V11visitPacked5value11fieldNumber4withySays6UInt32VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufFixed64", + "printedName": "ProtobufFixed64", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V18proto3DefaultValues6UInt64VvpZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V18proto3DefaultValues6UInt64VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V18proto3DefaultValues6UInt64VvgZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V18proto3DefaultValues6UInt64VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt64?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V14decodeSingular5value4fromys6UInt64VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V14decodeSingular5value4fromys6UInt64VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V14decodeRepeated5value4fromySays6UInt64VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V14decodeRepeated5value4fromySays6UInt64VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V13visitSingular5value11fieldNumber4withys6UInt64V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V13visitSingular5value11fieldNumber4withys6UInt64V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V13visitRepeated5value11fieldNumber4withySays6UInt64VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V13visitRepeated5value11fieldNumber4withySays6UInt64VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V11visitPacked5value11fieldNumber4withySays6UInt64VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V11visitPacked5value11fieldNumber4withySays6UInt64VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufSFixed32", + "printedName": "ProtobufSFixed32", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V18proto3DefaultValues5Int32VvpZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V18proto3DefaultValues5Int32VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V18proto3DefaultValues5Int32VvgZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V18proto3DefaultValues5Int32VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int32?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V14decodeSingular5value4fromys5Int32VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V14decodeSingular5value4fromys5Int32VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V14decodeRepeated5value4fromySays5Int32VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V14decodeRepeated5value4fromySays5Int32VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V13visitSingular5value11fieldNumber4withys5Int32V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V13visitSingular5value11fieldNumber4withys5Int32V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V13visitRepeated5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V13visitRepeated5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V11visitPacked5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V11visitPacked5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufSFixed64", + "printedName": "ProtobufSFixed64", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V18proto3DefaultValues5Int64VvpZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V18proto3DefaultValues5Int64VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V18proto3DefaultValues5Int64VvgZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V18proto3DefaultValues5Int64VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V14decodeSingular5value4fromys5Int64VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V14decodeSingular5value4fromys5Int64VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V14decodeRepeated5value4fromySays5Int64VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V14decodeRepeated5value4fromySays5Int64VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V13visitSingular5value11fieldNumber4withys5Int64V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V13visitSingular5value11fieldNumber4withys5Int64V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V13visitRepeated5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V13visitRepeated5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V11visitPacked5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V11visitPacked5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufBool", + "printedName": "ProtobufBool", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ProtobufBoolV18proto3DefaultValueSbvpZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV18proto3DefaultValueSbvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ProtobufBoolV18proto3DefaultValueSbvgZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV18proto3DefaultValueSbvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ProtobufBoolV14decodeSingular5value4fromySbSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV14decodeSingular5value4fromySbSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ProtobufBoolV14decodeRepeated5value4fromySaySbGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV14decodeRepeated5value4fromySaySbGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ProtobufBoolV13visitSingular5value11fieldNumber4withySb_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV13visitSingular5value11fieldNumber4withySb_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ProtobufBoolV13visitRepeated5value11fieldNumber4withySaySbG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV13visitRepeated5value11fieldNumber4withySaySbG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ProtobufBoolV11visitPacked5value11fieldNumber4withySaySbG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV11visitPacked5value11fieldNumber4withySaySbG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "_lessThan", + "printedName": "_lessThan(lhs:rhs:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ProtobufBoolV9_lessThan3lhs3rhsS2b_SbtFZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV9_lessThan3lhs3rhsS2b_SbtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC12ProtobufBoolV", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufString", + "printedName": "ProtobufString", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14ProtobufStringV18proto3DefaultValueSSvpZ", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV18proto3DefaultValueSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ProtobufStringV18proto3DefaultValueSSvgZ", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV18proto3DefaultValueSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufStringV14decodeSingular5value4fromySSSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV14decodeSingular5value4fromySSSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufStringV14decodeRepeated5value4fromySaySSGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV14decodeRepeated5value4fromySaySSGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufStringV13visitSingular5value11fieldNumber4withySS_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV13visitSingular5value11fieldNumber4withySS_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufStringV13visitRepeated5value11fieldNumber4withySaySSG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV13visitRepeated5value11fieldNumber4withySaySSG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufStringV11visitPacked5value11fieldNumber4withySaySSG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV11visitPacked5value11fieldNumber4withySaySSG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14ProtobufStringV", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufBytes", + "printedName": "ProtobufBytes", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13ProtobufBytesV18proto3DefaultValue10Foundation4DataVvpZ", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV18proto3DefaultValue10Foundation4DataVvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13ProtobufBytesV18proto3DefaultValue10Foundation4DataVvgZ", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV18proto3DefaultValue10Foundation4DataVvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufBytesV14decodeSingular5value4fromy10Foundation4DataVSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV14decodeSingular5value4fromy10Foundation4DataVSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufBytesV14decodeRepeated5value4fromySay10Foundation4DataVGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV14decodeRepeated5value4fromySay10Foundation4DataVGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufBytesV13visitSingular5value11fieldNumber4withy10Foundation4DataV_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV13visitSingular5value11fieldNumber4withy10Foundation4DataV_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufBytesV13visitRepeated5value11fieldNumber4withySay10Foundation4DataVG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV13visitRepeated5value11fieldNumber4withySay10Foundation4DataVG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufBytesV11visitPacked5value11fieldNumber4withySay10Foundation4DataVG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV11visitPacked5value11fieldNumber4withySay10Foundation4DataVG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13ProtobufBytesV", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FilteredExemplarReservoir", + "printedName": "FilteredExemplarReservoir", + "children": [ + { + "kind": "Function", + "name": "offerDoubleMeasurement", + "printedName": "offerDoubleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25FilteredExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC25FilteredExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "offerLongMeasurement", + "printedName": "offerLongMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25FilteredExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC25FilteredExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "collectAndReset", + "printedName": "collectAndReset(attribute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ExemplarData]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25FilteredExemplarReservoirC15collectAndReset9attributeSayAA0D4DataCGSDySSAA14AttributeValueOG_tF", + "mangledName": "$s11VideoSDKRTC25FilteredExemplarReservoirC15collectAndReset9attributeSayAA0D4DataCGSDySSAA14AttributeValueOG_tF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC25FilteredExemplarReservoirC", + "mangledName": "$s11VideoSDKRTC25FilteredExemplarReservoirC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC17ExemplarReservoirC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.ExemplarReservoir" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "defaultAnyTypeURLPrefix", + "printedName": "defaultAnyTypeURLPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC23defaultAnyTypeURLPrefixSSvp", + "mangledName": "$s11VideoSDKRTC23defaultAnyTypeURLPrefixSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23defaultAnyTypeURLPrefixSSvg", + "mangledName": "$s11VideoSDKRTC23defaultAnyTypeURLPrefixSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Dispatch", + "printedName": "Dispatch", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "-", + "printedName": "-(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC1sopyAA24Google_Protobuf_DurationVADF", + "mangledName": "$s11VideoSDKRTC1sopyAA24Google_Protobuf_DurationVADF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Prefix", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "+", + "printedName": "+(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC1poiyAA24Google_Protobuf_DurationVAD_ADtF", + "mangledName": "$s11VideoSDKRTC1poiyAA24Google_Protobuf_DurationVAD_ADtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "-", + "printedName": "-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC1soiyAA24Google_Protobuf_DurationVAD_ADtF", + "mangledName": "$s11VideoSDKRTC1soiyAA24Google_Protobuf_DurationVAD_ADtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "-", + "printedName": "-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC1soiyAA24Google_Protobuf_DurationVAA0c1_D10_TimestampV_AFtF", + "mangledName": "$s11VideoSDKRTC1soiyAA24Google_Protobuf_DurationVAA0c1_D10_TimestampV_AFtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "+", + "printedName": "+(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC1poiyAA25Google_Protobuf_TimestampVAD_AA0c1_D9_DurationVtF", + "mangledName": "$s11VideoSDKRTC1poiyAA25Google_Protobuf_TimestampVAD_AA0c1_D9_DurationVtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "+", + "printedName": "+(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC1poiyAA25Google_Protobuf_TimestampVAA0c1_D9_DurationV_ADtF", + "mangledName": "$s11VideoSDKRTC1poiyAA25Google_Protobuf_TimestampVAA0c1_D9_DurationV_ADtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "-", + "printedName": "-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC1soiyAA25Google_Protobuf_TimestampVAD_AA0c1_D9_DurationVtF", + "mangledName": "$s11VideoSDKRTC1soiyAA25Google_Protobuf_TimestampVAD_AA0c1_D9_DurationVtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Headers", + "printedName": "Headers", + "children": [ + { + "kind": "Function", + "name": "getUserAgentHeader", + "printedName": "getUserAgentHeader()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7HeadersV18getUserAgentHeaderSSyFZ", + "mangledName": "$s11VideoSDKRTC7HeadersV18getUserAgentHeaderSSyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC7HeadersV", + "mangledName": "$s11VideoSDKRTC7HeadersV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HistogramAggregator", + "printedName": "HistogramAggregator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(explicitBoundaries:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HistogramAggregator", + "printedName": "VideoSDKRTC.HistogramAggregator<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC19HistogramAggregatorC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19HistogramAggregatorC18explicitBoundariesACyxGSayxGSg_tKcfc", + "mangledName": "$s11VideoSDKRTC19HistogramAggregatorC18explicitBoundariesACyxGSayxGSg_tKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "update", + "printedName": "update(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19HistogramAggregatorC6update5valueyx_tF", + "mangledName": "$s11VideoSDKRTC19HistogramAggregatorC6update5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkpoint", + "printedName": "checkpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19HistogramAggregatorC10checkpointyyF", + "mangledName": "$s11VideoSDKRTC19HistogramAggregatorC10checkpointyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19HistogramAggregatorC12toMetricDataAA0fG0_pyF", + "mangledName": "$s11VideoSDKRTC19HistogramAggregatorC12toMetricDataAA0fG0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAggregationType", + "printedName": "getAggregationType()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19HistogramAggregatorC18getAggregationTypeAA0fG0OyF", + "mangledName": "$s11VideoSDKRTC19HistogramAggregatorC18getAggregationTypeAA0fG0OyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19HistogramAggregatorC", + "mangledName": "$s11VideoSDKRTC19HistogramAggregatorC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:11VideoSDKRTC10AggregatorC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.Aggregator<τ_0_0>" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HistogramExemplarReservoir", + "printedName": "HistogramExemplarReservoir", + "children": [ + { + "kind": "Function", + "name": "offerLongMeasurement", + "printedName": "offerLongMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26HistogramExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC26HistogramExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC26HistogramExemplarReservoirC", + "mangledName": "$s11VideoSDKRTC26HistogramExemplarReservoirC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC27FixedSizedExemplarReservoirC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.FixedSizedExemplarReservoir", + "VideoSDKRTC.ExemplarReservoir" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HistogramMetric", + "printedName": "HistogramMetric", + "children": [ + { + "kind": "AssociatedType", + "name": "T", + "printedName": "T", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC15HistogramMetricP1TQa", + "mangledName": "$s11VideoSDKRTC15HistogramMetricP1TQa", + "moduleName": "VideoSDKRTC", + "protocolReq": true + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundHistogramMetric", + "printedName": "VideoSDKRTC.BoundHistogramMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15HistogramMetricP4bind8labelsetAA05BoundcD0Cy1TQzGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC15HistogramMetricP4bind8labelsetAA05BoundcD0Cy1TQzGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.HistogramMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundHistogramMetric", + "printedName": "VideoSDKRTC.BoundHistogramMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15HistogramMetricP4bind6labelsAA05BoundcD0Cy1TQzGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC15HistogramMetricP4bind6labelsAA05BoundcD0Cy1TQzGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.HistogramMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15HistogramMetricPAAE6record5value8labelsety1TQz_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC15HistogramMetricPAAE6record5value8labelsety1TQz_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.HistogramMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15HistogramMetricPAAE6record5value6labelsy1TQz_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC15HistogramMetricPAAE6record5value6labelsy1TQz_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.HistogramMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC15HistogramMetricP", + "mangledName": "$s11VideoSDKRTC15HistogramMetricP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AnyHistogramMetric", + "printedName": "AnyHistogramMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyHistogramMetric", + "printedName": "VideoSDKRTC.AnyHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18AnyHistogramMetricVyACyxGqd__c1TQyd__RszAA0dE0Rd__lufc", + "mangledName": "$s11VideoSDKRTC18AnyHistogramMetricVyACyxGqd__c1TQyd__RszAA0dE0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 == τ_1_0.T, τ_1_0 : VideoSDKRTC.HistogramMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundHistogramMetric", + "printedName": "VideoSDKRTC.BoundHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC18AnyHistogramMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundHistogramMetric", + "printedName": "VideoSDKRTC.BoundHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC18AnyHistogramMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV", + "mangledName": "$s11VideoSDKRTC18AnyHistogramMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "HistogramMetric", + "printedName": "HistogramMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC15HistogramMetricP", + "mangledName": "$s11VideoSDKRTC15HistogramMetricP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoopHistogramMetric", + "printedName": "NoopHistogramMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopHistogramMetric", + "printedName": "VideoSDKRTC.NoopHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC19NoopHistogramMetricV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19NoopHistogramMetricVACyxGycfc", + "mangledName": "$s11VideoSDKRTC19NoopHistogramMetricVACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundHistogramMetric", + "printedName": "VideoSDKRTC.BoundHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19NoopHistogramMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC19NoopHistogramMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundHistogramMetric", + "printedName": "VideoSDKRTC.BoundHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19NoopHistogramMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC19NoopHistogramMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19NoopHistogramMetricV", + "mangledName": "$s11VideoSDKRTC19NoopHistogramMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "HistogramMetric", + "printedName": "HistogramMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC15HistogramMetricP", + "mangledName": "$s11VideoSDKRTC15HistogramMetricP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HistogramPointData", + "printedName": "HistogramPointData", + "children": [ + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3sumSdvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3sumSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3sumSdvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3sumSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3sumSdvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3sumSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3sumSdvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3sumSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC5counts6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC5counts6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC5counts6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC5counts6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC5counts6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC5counts6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC5counts6UInt64VvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC5counts6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "min", + "printedName": "min", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3minSdvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3minSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3minSdvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3minSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3minSdvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3minSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3minSdvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3minSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "max", + "printedName": "max", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3maxSdvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3maxSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3maxSdvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3maxSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3maxSdvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3maxSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3maxSdvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3maxSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "boundaries", + "printedName": "boundaries", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "counts", + "printedName": "counts", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6countsSaySiGvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6countsSaySiGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6countsSaySiGvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6countsSaySiGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6countsSaySiGvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6countsSaySiGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6countsSaySiGvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6countsSaySiGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMin", + "printedName": "hasMin", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMinSbvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMinSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMinSbvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMinSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMinSbvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMinSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMinSbvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMinSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMax", + "printedName": "hasMax", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMaxSbvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMaxSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMaxSbvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMaxSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMaxSbvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMaxSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMaxSbvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMaxSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18HistogramPointDataC", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC9PointDataC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.PointData" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HLSConfig", + "printedName": "HLSConfig", + "children": [ + { + "kind": "Var", + "name": "layout", + "printedName": "layout", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvp", + "mangledName": "$s11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvg", + "mangledName": "$s11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvs", + "mangledName": "$s11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvM", + "mangledName": "$s11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "theme", + "printedName": "theme", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvp", + "mangledName": "$s11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvg", + "mangledName": "$s11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvs", + "mangledName": "$s11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvM", + "mangledName": "$s11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvp", + "mangledName": "$s11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvg", + "mangledName": "$s11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvs", + "mangledName": "$s11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvM", + "mangledName": "$s11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "quality", + "printedName": "quality", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvp", + "mangledName": "$s11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvg", + "mangledName": "$s11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvs", + "mangledName": "$s11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvM", + "mangledName": "$s11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "orientation", + "printedName": "orientation", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvp", + "mangledName": "$s11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvg", + "mangledName": "$s11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvs", + "mangledName": "$s11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvM", + "mangledName": "$s11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(layout:theme:mode:quality:orientation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSConfig", + "printedName": "VideoSDKRTC.HLSConfig", + "usr": "s:11VideoSDKRTC9HLSConfigC" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + }, + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + }, + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + }, + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + }, + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC9HLSConfigC6layout5theme4mode7quality11orientationAcA12ConfigLayoutC_AA0I5ThemeOAA0I4ModeOAA0I7QualityOAA0I11OrientationOtcfc", + "mangledName": "$s11VideoSDKRTC9HLSConfigC6layout5theme4mode7quality11orientationAcA12ConfigLayoutC_AA0I5ThemeOAA0I4ModeOAA0I7QualityOAA0I11OrientationOtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "toJson", + "printedName": "toJson()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9HLSConfigC6toJsonSDySSypGyF", + "mangledName": "$s11VideoSDKRTC9HLSConfigC6toJsonSDySSypGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC9HLSConfigC", + "mangledName": "$s11VideoSDKRTC9HLSConfigC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "RecordingConfig", + "printedName": "RecordingConfig", + "children": [ + { + "kind": "Var", + "name": "layout", + "printedName": "layout", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvp", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvg", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvs", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvM", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "theme", + "printedName": "theme", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvp", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvg", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvs", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvM", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvp", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvg", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvs", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvM", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "quality", + "printedName": "quality", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvp", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvg", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvs", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvM", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "orientation", + "printedName": "orientation", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvp", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvg", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvs", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvM", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(layout:theme:mode:quality:orientation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingConfig", + "printedName": "VideoSDKRTC.RecordingConfig", + "usr": "s:11VideoSDKRTC15RecordingConfigC" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + }, + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + }, + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + }, + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + }, + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC15RecordingConfigC6layout5theme4mode7quality11orientationAcA0D6LayoutC_AA0D5ThemeOAA0D4ModeOAA0D7QualityOAA0D11OrientationOtcfc", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC6layout5theme4mode7quality11orientationAcA0D6LayoutC_AA0D5ThemeOAA0D4ModeOAA0D7QualityOAA0D11OrientationOtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "toJson", + "printedName": "toJson()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15RecordingConfigC6toJsonSDySSypGyF", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC6toJsonSDySSypGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC15RecordingConfigC", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "HLSUrl", + "printedName": "HLSUrl", + "children": [ + { + "kind": "Var", + "name": "downstreamUrl", + "printedName": "downstreamUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6HLSUrlC13downstreamUrlSSvp", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13downstreamUrlSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC13downstreamUrlSSvg", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13downstreamUrlSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC13downstreamUrlSSvs", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13downstreamUrlSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC13downstreamUrlSSvM", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13downstreamUrlSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "playbackHlsUrl", + "printedName": "playbackHlsUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvp", + "mangledName": "$s11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvg", + "mangledName": "$s11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvs", + "mangledName": "$s11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvM", + "mangledName": "$s11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "livestreamUrl", + "printedName": "livestreamUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6HLSUrlC13livestreamUrlSSvp", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13livestreamUrlSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC13livestreamUrlSSvg", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13livestreamUrlSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC13livestreamUrlSSvs", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13livestreamUrlSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC13livestreamUrlSSvM", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13livestreamUrlSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(downstreamUrl:playbackHlsUrl:livestreamUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSUrl", + "printedName": "VideoSDKRTC.HLSUrl", + "usr": "s:11VideoSDKRTC6HLSUrlC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6HLSUrlC13downstreamUrl011playbackHlsE0010livestreamE0ACSSSg_A2Gtcfc", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13downstreamUrl011playbackHlsE0010livestreamE0ACSSSg_A2Gtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "toJson", + "printedName": "toJson()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6HLSUrlC6toJsonSDySSypGyF", + "mangledName": "$s11VideoSDKRTC6HLSUrlC6toJsonSDySSypGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC6HLSUrlC", + "mangledName": "$s11VideoSDKRTC6HLSUrlC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigLayout", + "printedName": "ConfigLayout", + "children": [ + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvp", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvg", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvs", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvM", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "priority", + "printedName": "priority", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvp", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvg", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvs", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvM", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "gridSize", + "printedName": "gridSize", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8gridSizeSivp", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8gridSizeSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8gridSizeSivg", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8gridSizeSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8gridSizeSivs", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8gridSizeSivs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8gridSizeSivM", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8gridSizeSivM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(type:priority:gridSize:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC4type8priority8gridSizeAcA0cD4GridO_AA0cD8PriorityOSitcfc", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC4type8priority8gridSizeAcA0cD4GridO_AA0cD8PriorityOSitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "toJson", + "printedName": "toJson()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ConfigLayoutC6toJsonSDySSypGyF", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC6toJsonSDySSypGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC12ConfigLayoutC", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigLayoutPriority", + "printedName": "ConfigLayoutPriority", + "children": [ + { + "kind": "Var", + "name": "SPEAKER", + "printedName": "SPEAKER", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigLayoutPriority.Type) -> VideoSDKRTC.ConfigLayoutPriority", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigLayoutPriority.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO7SPEAKERyA2CmF", + "mangledName": "$s11VideoSDKRTC20ConfigLayoutPriorityO7SPEAKERyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "PIN", + "printedName": "PIN", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigLayoutPriority.Type) -> VideoSDKRTC.ConfigLayoutPriority", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigLayoutPriority.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO3PINyA2CmF", + "mangledName": "$s11VideoSDKRTC20ConfigLayoutPriorityO3PINyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ConfigLayoutPriority?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC20ConfigLayoutPriorityO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC20ConfigLayoutPriorityO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC20ConfigLayoutPriorityO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO", + "mangledName": "$s11VideoSDKRTC20ConfigLayoutPriorityO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigLayoutGrid", + "printedName": "ConfigLayoutGrid", + "children": [ + { + "kind": "Var", + "name": "GRID", + "printedName": "GRID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigLayoutGrid.Type) -> VideoSDKRTC.ConfigLayoutGrid", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigLayoutGrid.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO4GRIDyA2CmF", + "mangledName": "$s11VideoSDKRTC16ConfigLayoutGridO4GRIDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "SPOTLIGHT", + "printedName": "SPOTLIGHT", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigLayoutGrid.Type) -> VideoSDKRTC.ConfigLayoutGrid", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigLayoutGrid.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO9SPOTLIGHTyA2CmF", + "mangledName": "$s11VideoSDKRTC16ConfigLayoutGridO9SPOTLIGHTyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "SIDEBAR", + "printedName": "SIDEBAR", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigLayoutGrid.Type) -> VideoSDKRTC.ConfigLayoutGrid", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigLayoutGrid.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO7SIDEBARyA2CmF", + "mangledName": "$s11VideoSDKRTC16ConfigLayoutGridO7SIDEBARyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ConfigLayoutGrid?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC16ConfigLayoutGridO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC16ConfigLayoutGridO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC16ConfigLayoutGridO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO", + "mangledName": "$s11VideoSDKRTC16ConfigLayoutGridO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigTheme", + "printedName": "ConfigTheme", + "children": [ + { + "kind": "Var", + "name": "DEFAULT", + "printedName": "DEFAULT", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigTheme.Type) -> VideoSDKRTC.ConfigTheme", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigTheme.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC11ConfigThemeO7DEFAULTyA2CmF", + "mangledName": "$s11VideoSDKRTC11ConfigThemeO7DEFAULTyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "LIGHT", + "printedName": "LIGHT", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigTheme.Type) -> VideoSDKRTC.ConfigTheme", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigTheme.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC11ConfigThemeO5LIGHTyA2CmF", + "mangledName": "$s11VideoSDKRTC11ConfigThemeO5LIGHTyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "DARK", + "printedName": "DARK", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigTheme.Type) -> VideoSDKRTC.ConfigTheme", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigTheme.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC11ConfigThemeO4DARKyA2CmF", + "mangledName": "$s11VideoSDKRTC11ConfigThemeO4DARKyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ConfigTheme?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC11ConfigThemeO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC11ConfigThemeO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ConfigThemeO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC11ConfigThemeO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ConfigThemeO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC11ConfigThemeO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC11ConfigThemeO", + "mangledName": "$s11VideoSDKRTC11ConfigThemeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigMode", + "printedName": "ConfigMode", + "children": [ + { + "kind": "Var", + "name": "video_and_audio", + "printedName": "video_and_audio", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigMode.Type) -> VideoSDKRTC.ConfigMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC10ConfigModeO15video_and_audioyA2CmF", + "mangledName": "$s11VideoSDKRTC10ConfigModeO15video_and_audioyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "audio", + "printedName": "audio", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigMode.Type) -> VideoSDKRTC.ConfigMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC10ConfigModeO5audioyA2CmF", + "mangledName": "$s11VideoSDKRTC10ConfigModeO5audioyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ConfigMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10ConfigModeO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC10ConfigModeO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10ConfigModeO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC10ConfigModeO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10ConfigModeO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC10ConfigModeO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC10ConfigModeO", + "mangledName": "$s11VideoSDKRTC10ConfigModeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigQuality", + "printedName": "ConfigQuality", + "children": [ + { + "kind": "Var", + "name": "high", + "printedName": "high", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigQuality.Type) -> VideoSDKRTC.ConfigQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC13ConfigQualityO4highyA2CmF", + "mangledName": "$s11VideoSDKRTC13ConfigQualityO4highyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "med", + "printedName": "med", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigQuality.Type) -> VideoSDKRTC.ConfigQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC13ConfigQualityO3medyA2CmF", + "mangledName": "$s11VideoSDKRTC13ConfigQualityO3medyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "low", + "printedName": "low", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigQuality.Type) -> VideoSDKRTC.ConfigQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC13ConfigQualityO3lowyA2CmF", + "mangledName": "$s11VideoSDKRTC13ConfigQualityO3lowyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ConfigQuality?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC13ConfigQualityO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC13ConfigQualityO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13ConfigQualityO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC13ConfigQualityO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13ConfigQualityO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC13ConfigQualityO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC13ConfigQualityO", + "mangledName": "$s11VideoSDKRTC13ConfigQualityO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigOrientation", + "printedName": "ConfigOrientation", + "children": [ + { + "kind": "Var", + "name": "landscape", + "printedName": "landscape", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigOrientation.Type) -> VideoSDKRTC.ConfigOrientation", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigOrientation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17ConfigOrientationO9landscapeyA2CmF", + "mangledName": "$s11VideoSDKRTC17ConfigOrientationO9landscapeyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "portrait", + "printedName": "portrait", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigOrientation.Type) -> VideoSDKRTC.ConfigOrientation", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigOrientation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17ConfigOrientationO8portraityA2CmF", + "mangledName": "$s11VideoSDKRTC17ConfigOrientationO8portraityA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ConfigOrientation?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17ConfigOrientationO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC17ConfigOrientationO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ConfigOrientationO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC17ConfigOrientationO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ConfigOrientationO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC17ConfigOrientationO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC17ConfigOrientationO", + "mangledName": "$s11VideoSDKRTC17ConfigOrientationO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IdGenerator", + "printedName": "IdGenerator", + "children": [ + { + "kind": "Function", + "name": "generateSpanId", + "printedName": "generateSpanId()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11IdGeneratorP012generateSpanC0AA0fC0VyF", + "mangledName": "$s11VideoSDKRTC11IdGeneratorP012generateSpanC0AA0fC0VyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.IdGenerator>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateTraceId", + "printedName": "generateTraceId()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11IdGeneratorP013generateTraceC0AA0fC0VyF", + "mangledName": "$s11VideoSDKRTC11IdGeneratorP013generateTraceC0AA0fC0VyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.IdGenerator>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC11IdGeneratorP", + "mangledName": "$s11VideoSDKRTC11IdGeneratorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "InMemoryLogRecordExporter", + "printedName": "InMemoryLogRecordExporter", + "children": [ + { + "kind": "Function", + "name": "getFinishedLogRecords", + "printedName": "getFinishedLogRecords()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InMemoryLogRecordExporterC011getFinishedE7RecordsSayAA08ReadableeF0VGyF", + "mangledName": "$s11VideoSDKRTC25InMemoryLogRecordExporterC011getFinishedE7RecordsSayAA08ReadableeF0VGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "export", + "printedName": "export(logRecords:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InMemoryLogRecordExporterC6export10logRecordsAA12ExportResultOSayAA08ReadableeF0VG_tF", + "mangledName": "$s11VideoSDKRTC25InMemoryLogRecordExporterC6export10logRecordsAA12ExportResultOSayAA08ReadableeF0VG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InMemoryLogRecordExporterC8shutdownyyF", + "mangledName": "$s11VideoSDKRTC25InMemoryLogRecordExporterC8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InMemoryLogRecordExporterC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC25InMemoryLogRecordExporterC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC25InMemoryLogRecordExporterC", + "mangledName": "$s11VideoSDKRTC25InMemoryLogRecordExporterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordExporter", + "printedName": "LogRecordExporter", + "usr": "s:11VideoSDKRTC17LogRecordExporterP", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Instrument", + "printedName": "Instrument", + "children": [ + { + "kind": "Var", + "name": "instrumentDescriptor", + "printedName": "instrumentDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10InstrumentP20instrumentDescriptorAA0cE0Vvp", + "mangledName": "$s11VideoSDKRTC10InstrumentP20instrumentDescriptorAA0cE0Vvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10InstrumentP20instrumentDescriptorAA0cE0Vvg", + "mangledName": "$s11VideoSDKRTC10InstrumentP20instrumentDescriptorAA0cE0Vvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Instrument>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10InstrumentPAAE2eeoiySbx_xtFZ", + "mangledName": "$s11VideoSDKRTC10InstrumentPAAE2eeoiySbx_xtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Instrument>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC10InstrumentP", + "mangledName": "$s11VideoSDKRTC10InstrumentP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : Swift.Equatable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "InstrumentationScopeInfo", + "printedName": "InstrumentationScopeInfo", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV7versionSSSgvp", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV7versionSSSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV7versionSSSgvg", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV7versionSSSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "schemaUrl", + "printedName": "schemaUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV9schemaUrlSSSgvp", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV9schemaUrlSSSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV9schemaUrlSSSgvg", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV9schemaUrlSSSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoVACycfc", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:version:schemaUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV4name7version9schemaUrlACSS_SSSgAGtcfc", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV4name7version9schemaUrlACSS_SSSgAGtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "InstrumentDescriptor", + "printedName": "InstrumentDescriptor", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV4nameSSvp", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV4nameSSvg", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unit", + "printedName": "unit", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV4unitSSvp", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV4unitSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV4unitSSvg", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV4unitSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV4typeAA0C4TypeOvp", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV4typeAA0C4TypeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV4typeAA0C4TypeOvg", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV4typeAA0C4TypeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "valueType", + "printedName": "valueType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV9valueTypeAA0c5ValueF0Ovp", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV9valueTypeAA0c5ValueF0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV9valueTypeAA0c5ValueF0Ovg", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV9valueTypeAA0c5ValueF0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:description:unit:type:valueType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV4name11description4unit4type9valueTypeACSS_S2SAA0cJ0OAA0c5ValueJ0Otcfc", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV4name11description4unit4type9valueTypeACSS_S2SAA0cJ0OAA0c5ValueJ0Otcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "InstrumentSelector", + "printedName": "InstrumentSelector", + "children": [ + { + "kind": "Function", + "name": "builder", + "printedName": "builder()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentSelectorBuilder", + "printedName": "VideoSDKRTC.InstrumentSelectorBuilder", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18InstrumentSelectorC7builderAA0cD7BuilderCyFZ", + "mangledName": "$s11VideoSDKRTC18InstrumentSelectorC7builderAA0cD7BuilderCyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18InstrumentSelectorC", + "mangledName": "$s11VideoSDKRTC18InstrumentSelectorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "InstrumentSelectorBuilder", + "printedName": "InstrumentSelectorBuilder", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentSelectorBuilder", + "printedName": "VideoSDKRTC.InstrumentSelectorBuilder", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderCACycfc", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setInstrument", + "printedName": "setInstrument(type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC03setC04typeACXDAA0C4TypeO_tF", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderC03setC04typeACXDAA0C4TypeO_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setInstrument", + "printedName": "setInstrument(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC03setC04nameACXDSS_tF", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderC03setC04nameACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setMeter", + "printedName": "setMeter(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC8setMeter4nameACXDSS_tF", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderC8setMeter4nameACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setMeter", + "printedName": "setMeter(version:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC8setMeter7versionACXDSS_tF", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderC8setMeter7versionACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setMeter", + "printedName": "setMeter(schemaUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC8setMeter9schemaUrlACXDSS_tF", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderC8setMeter9schemaUrlACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentSelector", + "printedName": "VideoSDKRTC.InstrumentSelector", + "usr": "s:11VideoSDKRTC18InstrumentSelectorC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC5buildAA0cD0CyF", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderC5buildAA0cD0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "InstrumentType", + "printedName": "InstrumentType", + "children": [ + { + "kind": "Var", + "name": "counter", + "printedName": "counter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType.Type) -> VideoSDKRTC.InstrumentType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14InstrumentTypeO7counteryA2CmF", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO7counteryA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "upDownCounter", + "printedName": "upDownCounter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType.Type) -> VideoSDKRTC.InstrumentType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14InstrumentTypeO13upDownCounteryA2CmF", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO13upDownCounteryA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "histogram", + "printedName": "histogram", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType.Type) -> VideoSDKRTC.InstrumentType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14InstrumentTypeO9histogramyA2CmF", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO9histogramyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "observableCounter", + "printedName": "observableCounter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType.Type) -> VideoSDKRTC.InstrumentType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14InstrumentTypeO17observableCounteryA2CmF", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO17observableCounteryA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "observableUpDownCounter", + "printedName": "observableUpDownCounter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType.Type) -> VideoSDKRTC.InstrumentType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14InstrumentTypeO23observableUpDownCounteryA2CmF", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO23observableUpDownCounteryA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "observableGauge", + "printedName": "observableGauge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType.Type) -> VideoSDKRTC.InstrumentType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14InstrumentTypeO15observableGaugeyA2CmF", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO15observableGaugeyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14InstrumentTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14InstrumentTypeO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14InstrumentTypeO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14InstrumentTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.InstrumentType]", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14InstrumentTypeO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.InstrumentType]", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14InstrumentTypeO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC14InstrumentTypeO", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.InstrumentType]", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "InstrumentValueType", + "printedName": "InstrumentValueType", + "children": [ + { + "kind": "Var", + "name": "long", + "printedName": "long", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentValueType.Type) -> VideoSDKRTC.InstrumentValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentValueType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO4longyA2CmF", + "mangledName": "$s11VideoSDKRTC19InstrumentValueTypeO4longyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "double", + "printedName": "double", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentValueType.Type) -> VideoSDKRTC.InstrumentValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentValueType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO6doubleyA2CmF", + "mangledName": "$s11VideoSDKRTC19InstrumentValueTypeO6doubleyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC19InstrumentValueTypeO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO04hashD0Sivp", + "mangledName": "$s11VideoSDKRTC19InstrumentValueTypeO04hashD0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO04hashD0Sivg", + "mangledName": "$s11VideoSDKRTC19InstrumentValueTypeO04hashD0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC19InstrumentValueTypeO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO", + "mangledName": "$s11VideoSDKRTC19InstrumentValueTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Internal", + "printedName": "Internal", + "children": [ + { + "kind": "Var", + "name": "emptyData", + "printedName": "emptyData", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8InternalO9emptyData10Foundation0E0VvpZ", + "mangledName": "$s11VideoSDKRTC8InternalO9emptyData10Foundation0E0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8InternalO9emptyData10Foundation0E0VvgZ", + "mangledName": "$s11VideoSDKRTC8InternalO9emptyData10Foundation0E0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "areAllInitialized", + "printedName": "areAllInitialized(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Message]", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8InternalO17areAllInitializedySbSayAA7Message_pGFZ", + "mangledName": "$s11VideoSDKRTC8InternalO17areAllInitializedySbSayAA7Message_pGFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "areAllInitialized", + "printedName": "areAllInitialized(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_0_0 : VideoSDKRTC.Message]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8InternalO17areAllInitializedySbSDyxAA7Message_pGSHRzlFZ", + "mangledName": "$s11VideoSDKRTC8InternalO17areAllInitializedySbSDyxAA7Message_pGSHRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC8InternalO", + "mangledName": "$s11VideoSDKRTC8InternalO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IntObserverMetric", + "printedName": "IntObserverMetric", + "children": [ + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17IntObserverMetricP7observe5value8labelsetySi_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC17IntObserverMetricP7observe5value8labelsetySi_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.IntObserverMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17IntObserverMetricP7observe5value6labelsySi_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC17IntObserverMetricP7observe5value6labelsySi_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.IntObserverMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC17IntObserverMetricP", + "mangledName": "$s11VideoSDKRTC17IntObserverMetricP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "NoopIntObserverMetric", + "printedName": "NoopIntObserverMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopIntObserverMetric", + "printedName": "VideoSDKRTC.NoopIntObserverMetric", + "usr": "s:11VideoSDKRTC21NoopIntObserverMetricV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21NoopIntObserverMetricVACycfc", + "mangledName": "$s11VideoSDKRTC21NoopIntObserverMetricVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopIntObserverMetricV7observe5value8labelsetySi_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC21NoopIntObserverMetricV7observe5value8labelsetySi_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopIntObserverMetricV7observe5value6labelsySi_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC21NoopIntObserverMetricV7observe5value6labelsySi_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC21NoopIntObserverMetricV", + "mangledName": "$s11VideoSDKRTC21NoopIntObserverMetricV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "IntObserverMetric", + "printedName": "IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP", + "mangledName": "$s11VideoSDKRTC17IntObserverMetricP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Darwin", + "printedName": "Darwin", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreMedia", + "printedName": "CoreMedia", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "JSONDecodingError", + "printedName": "JSONDecodingError", + "children": [ + { + "kind": "Var", + "name": "failure", + "printedName": "failure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO7failureyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO7failureyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedNumber", + "printedName": "malformedNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO15malformedNumberyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO15malformedNumberyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "numberRange", + "printedName": "numberRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO11numberRangeyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO11numberRangeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedMap", + "printedName": "malformedMap", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO12malformedMapyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO12malformedMapyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedBool", + "printedName": "malformedBool", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO13malformedBoolyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO13malformedBoolyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedString", + "printedName": "malformedString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO15malformedStringyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO15malformedStringyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "invalidUTF8", + "printedName": "invalidUTF8", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO11invalidUTF8yA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO11invalidUTF8yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "missingFieldNames", + "printedName": "missingFieldNames", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO17missingFieldNamesyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO17missingFieldNamesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "schemaMismatch", + "printedName": "schemaMismatch", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO14schemaMismatchyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO14schemaMismatchyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unrecognizedEnumValue", + "printedName": "unrecognizedEnumValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO21unrecognizedEnumValueyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO21unrecognizedEnumValueyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "illegalNull", + "printedName": "illegalNull", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO11illegalNullyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO11illegalNullyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unquotedMapKey", + "printedName": "unquotedMapKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO14unquotedMapKeyyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO14unquotedMapKeyyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "leadingZero", + "printedName": "leadingZero", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO11leadingZeroyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO11leadingZeroyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "truncated", + "printedName": "truncated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO9truncatedyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO9truncatedyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedDuration", + "printedName": "malformedDuration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO17malformedDurationyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO17malformedDurationyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedTimestamp", + "printedName": "malformedTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO18malformedTimestampyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO18malformedTimestampyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedFieldMask", + "printedName": "malformedFieldMask", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO18malformedFieldMaskyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO18malformedFieldMaskyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "trailingGarbage", + "printedName": "trailingGarbage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO15trailingGarbageyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO15trailingGarbageyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "conflictingOneOf", + "printedName": "conflictingOneOf", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO16conflictingOneOfyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO16conflictingOneOfyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messageDepthLimit", + "printedName": "messageDepthLimit", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO17messageDepthLimityA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO17messageDepthLimityA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unknownField", + "printedName": "unknownField", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> (Swift.String) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO12unknownFieldyACSScACmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO12unknownFieldyACSScACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "JSONDecodingOptions", + "printedName": "JSONDecodingOptions", + "children": [ + { + "kind": "Var", + "name": "messageDepthLimit", + "printedName": "messageDepthLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivp", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivg", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivs", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivM", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ignoreUnknownFields", + "printedName": "ignoreUnknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvp", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvg", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvs", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvM", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "JSONEncodingError", + "printedName": "JSONEncodingError", + "children": [ + { + "kind": "Var", + "name": "anyTranscodeFailure", + "printedName": "anyTranscodeFailure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONEncodingError.Type) -> VideoSDKRTC.JSONEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO19anyTranscodeFailureyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO19anyTranscodeFailureyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "timestampRange", + "printedName": "timestampRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONEncodingError.Type) -> VideoSDKRTC.JSONEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO14timestampRangeyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO14timestampRangeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "durationRange", + "printedName": "durationRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONEncodingError.Type) -> VideoSDKRTC.JSONEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO13durationRangeyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO13durationRangeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fieldMaskConversion", + "printedName": "fieldMaskConversion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONEncodingError.Type) -> VideoSDKRTC.JSONEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO19fieldMaskConversionyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO19fieldMaskConversionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "missingFieldNames", + "printedName": "missingFieldNames", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONEncodingError.Type) -> VideoSDKRTC.JSONEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO17missingFieldNamesyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO17missingFieldNamesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "missingValue", + "printedName": "missingValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONEncodingError.Type) -> VideoSDKRTC.JSONEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO12missingValueyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO12missingValueyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "valueNumberNotFinite", + "printedName": "valueNumberNotFinite", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONEncodingError.Type) -> VideoSDKRTC.JSONEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO20valueNumberNotFiniteyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO20valueNumberNotFiniteyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "JSONEncodingOptions", + "printedName": "JSONEncodingOptions", + "children": [ + { + "kind": "Var", + "name": "alwaysPrintInt64sAsNumbers", + "printedName": "alwaysPrintInt64sAsNumbers", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvp", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvg", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvs", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvM", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "alwaysPrintEnumsAsInts", + "printedName": "alwaysPrintEnumsAsInts", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvp", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvg", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvs", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvM", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "preserveProtoFieldNames", + "printedName": "preserveProtoFieldNames", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvp", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvg", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvs", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvM", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingOptions", + "printedName": "VideoSDKRTC.JSONEncodingOptions", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LabelSet", + "printedName": "LabelSet", + "children": [ + { + "kind": "Var", + "name": "labels", + "printedName": "labels", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8LabelSetC6labelsSDyS2SGvp", + "mangledName": "$s11VideoSDKRTC8LabelSetC6labelsSDyS2SGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8LabelSetC6labelsSDyS2SGvg", + "mangledName": "$s11VideoSDKRTC8LabelSetC6labelsSDyS2SGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "empty", + "printedName": "empty", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8LabelSetC5emptyACvpZ", + "mangledName": "$s11VideoSDKRTC8LabelSetC5emptyACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8LabelSetC5emptyACvgZ", + "mangledName": "$s11VideoSDKRTC8LabelSetC5emptyACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8LabelSetC5emptyACvsZ", + "mangledName": "$s11VideoSDKRTC8LabelSetC5emptyACvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8LabelSetC5emptyACvMZ", + "mangledName": "$s11VideoSDKRTC8LabelSetC5emptyACvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8LabelSetC6labelsACSDyS2SG_tcfc", + "mangledName": "$s11VideoSDKRTC8LabelSetC6labelsACSDyS2SG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Required", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8LabelSetC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC8LabelSetC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8LabelSetC4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC8LabelSetC4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8LabelSetC9hashValueSivp", + "mangledName": "$s11VideoSDKRTC8LabelSetC9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isOpen": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8LabelSetC9hashValueSivg", + "mangledName": "$s11VideoSDKRTC8LabelSetC9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC8LabelSetC", + "mangledName": "$s11VideoSDKRTC8LabelSetC", + "moduleName": "VideoSDKRTC", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LastValueAggregation", + "printedName": "LastValueAggregation", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "LastValueAggregation", + "printedName": "VideoSDKRTC.LastValueAggregation", + "usr": "s:11VideoSDKRTC20LastValueAggregationC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20LastValueAggregationC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC20LastValueAggregationC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LastValueAggregation", + "printedName": "VideoSDKRTC.LastValueAggregation", + "usr": "s:11VideoSDKRTC20LastValueAggregationC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20LastValueAggregationC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC20LastValueAggregationC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createAggregator", + "printedName": "createAggregator(descriptor:exemplarFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableAggregator", + "printedName": "VideoSDKRTC.StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20LastValueAggregationC16createAggregator10descriptor14exemplarFilterAA06StableG0_pAA20InstrumentDescriptorV_AA08ExemplarJ0_ptF", + "mangledName": "$s11VideoSDKRTC20LastValueAggregationC16createAggregator10descriptor14exemplarFilterAA06StableG0_pAA20InstrumentDescriptorV_AA08ExemplarJ0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isCompatible", + "printedName": "isCompatible(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20LastValueAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "mangledName": "$s11VideoSDKRTC20LastValueAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20LastValueAggregationC", + "mangledName": "$s11VideoSDKRTC20LastValueAggregationC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Aggregation", + "printedName": "Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP", + "mangledName": "$s11VideoSDKRTC11AggregationP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LastValueAggregator", + "printedName": "LastValueAggregator", + "children": [ + { + "kind": "Function", + "name": "update", + "printedName": "update(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LastValueAggregatorC6update5valueyx_tF", + "mangledName": "$s11VideoSDKRTC19LastValueAggregatorC6update5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkpoint", + "printedName": "checkpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LastValueAggregatorC10checkpointyyF", + "mangledName": "$s11VideoSDKRTC19LastValueAggregatorC10checkpointyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LastValueAggregatorC12toMetricDataAA0gH0_pyF", + "mangledName": "$s11VideoSDKRTC19LastValueAggregatorC12toMetricDataAA0gH0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAggregationType", + "printedName": "getAggregationType()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LastValueAggregatorC18getAggregationTypeAA0gH0OyF", + "mangledName": "$s11VideoSDKRTC19LastValueAggregatorC18getAggregationTypeAA0gH0OyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19LastValueAggregatorC", + "mangledName": "$s11VideoSDKRTC19LastValueAggregatorC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:11VideoSDKRTC10AggregatorC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.Aggregator<τ_0_0>" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LivestreamOutput", + "printedName": "LivestreamOutput", + "children": [ + { + "kind": "Var", + "name": "url", + "printedName": "url", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16LivestreamOutputV3urlSSvp", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV3urlSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16LivestreamOutputV3urlSSvg", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV3urlSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "streamKey", + "printedName": "streamKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16LivestreamOutputV9streamKeySSvp", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV9streamKeySSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16LivestreamOutputV9streamKeySSvg", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV9streamKeySSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(url:streamKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LivestreamOutput", + "printedName": "VideoSDKRTC.LivestreamOutput", + "usr": "s:11VideoSDKRTC16LivestreamOutputV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16LivestreamOutputV3url9streamKeyACSS_SStcfc", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV3url9streamKeyACSS_SStcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LivestreamOutput", + "printedName": "VideoSDKRTC.LivestreamOutput", + "usr": "s:11VideoSDKRTC16LivestreamOutputV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16LivestreamOutputV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LivestreamOutputV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16LivestreamOutputV", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Darwin", + "printedName": "Darwin", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Logger", + "printedName": "Logger", + "children": [ + { + "kind": "Function", + "name": "eventBuilder", + "printedName": "eventBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "EventBuilder", + "printedName": "VideoSDKRTC.EventBuilder", + "usr": "s:11VideoSDKRTC12EventBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6LoggerP12eventBuilder4nameAA05EventE0_pSS_tF", + "mangledName": "$s11VideoSDKRTC6LoggerP12eventBuilder4nameAA05EventE0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Logger>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logRecordBuilder", + "printedName": "logRecordBuilder()", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordBuilder", + "printedName": "VideoSDKRTC.LogRecordBuilder", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6LoggerP16logRecordBuilderAA03LogeF0_pyF", + "mangledName": "$s11VideoSDKRTC6LoggerP16logRecordBuilderAA03LogeF0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Logger>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC6LoggerP", + "mangledName": "$s11VideoSDKRTC6LoggerP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoggerBuilder", + "printedName": "LoggerBuilder", + "children": [ + { + "kind": "Function", + "name": "setEventDomain", + "printedName": "setEventDomain(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LoggerBuilderP14setEventDomainyxSSF", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP14setEventDomainyxSSF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSchemaUrl", + "printedName": "setSchemaUrl(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LoggerBuilderP12setSchemaUrlyxSSF", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP12setSchemaUrlyxSSF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setInstrumentationVersion", + "printedName": "setInstrumentationVersion(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LoggerBuilderP25setInstrumentationVersionyxSSF", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP25setInstrumentationVersionyxSSF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setIncludeTraceContext", + "printedName": "setIncludeTraceContext(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LoggerBuilderP22setIncludeTraceContextyxSbF", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP22setIncludeTraceContextyxSbF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttributes", + "printedName": "setAttributes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LoggerBuilderP13setAttributesyxSDySSAA14AttributeValueOGF", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP13setAttributesyxSDySSAA14AttributeValueOGF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "VideoSDKRTC.Logger", + "usr": "s:11VideoSDKRTC6LoggerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LoggerBuilderP5buildAA0C0_pyF", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP5buildAA0C0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13LoggerBuilderP", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoggerBuilderSdk", + "printedName": "LoggerBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "setEventDomain", + "printedName": "setEventDomain(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LoggerBuilderSdkC14setEventDomainyACXDSSF", + "mangledName": "$s11VideoSDKRTC16LoggerBuilderSdkC14setEventDomainyACXDSSF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSchemaUrl", + "printedName": "setSchemaUrl(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LoggerBuilderSdkC12setSchemaUrlyACXDSSF", + "mangledName": "$s11VideoSDKRTC16LoggerBuilderSdkC12setSchemaUrlyACXDSSF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setInstrumentationVersion", + "printedName": "setInstrumentationVersion(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LoggerBuilderSdkC25setInstrumentationVersionyACXDSSF", + "mangledName": "$s11VideoSDKRTC16LoggerBuilderSdkC25setInstrumentationVersionyACXDSSF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setIncludeTraceContext", + "printedName": "setIncludeTraceContext(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LoggerBuilderSdkC22setIncludeTraceContextyACXDSbF", + "mangledName": "$s11VideoSDKRTC16LoggerBuilderSdkC22setIncludeTraceContextyACXDSbF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttributes", + "printedName": "setAttributes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LoggerBuilderSdkC13setAttributesyACXDSDySSAA14AttributeValueOGF", + "mangledName": "$s11VideoSDKRTC16LoggerBuilderSdkC13setAttributesyACXDSDySSAA14AttributeValueOGF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "VideoSDKRTC.Logger", + "usr": "s:11VideoSDKRTC6LoggerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LoggerBuilderSdkC5buildAA0C0_pyF", + "mangledName": "$s11VideoSDKRTC16LoggerBuilderSdkC5buildAA0C0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16LoggerBuilderSdkC", + "mangledName": "$s11VideoSDKRTC16LoggerBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LoggerBuilder", + "printedName": "LoggerBuilder", + "usr": "s:11VideoSDKRTC13LoggerBuilderP", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoggerProvider", + "printedName": "LoggerProvider", + "children": [ + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationScopeName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "VideoSDKRTC.Logger", + "usr": "s:11VideoSDKRTC6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14LoggerProviderP3get24instrumentationScopeNameAA0C0_pSS_tF", + "mangledName": "$s11VideoSDKRTC14LoggerProviderP3get24instrumentationScopeNameAA0C0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerProvider>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loggerBuilder", + "printedName": "loggerBuilder(instrumentationScopeName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerBuilder", + "printedName": "VideoSDKRTC.LoggerBuilder", + "usr": "s:11VideoSDKRTC13LoggerBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14LoggerProviderP13loggerBuilder24instrumentationScopeNameAA0cF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC14LoggerProviderP13loggerBuilder24instrumentationScopeNameAA0cF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerProvider>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14LoggerProviderP", + "mangledName": "$s11VideoSDKRTC14LoggerProviderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoggerProviderBuilder", + "printedName": "LoggerProviderBuilder", + "children": [ + { + "kind": "Var", + "name": "clock", + "printedName": "clock", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC5clockAA5Clock_pvp", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC5clockAA5Clock_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC5clockAA5Clock_pvg", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC5clockAA5Clock_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "logLimits", + "printedName": "logLimits", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLimits", + "printedName": "VideoSDKRTC.LogLimits", + "usr": "s:11VideoSDKRTC9LogLimitsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC9logLimitsAA03LogG0Vvp", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC9logLimitsAA03LogG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLimits", + "printedName": "VideoSDKRTC.LogLimits", + "usr": "s:11VideoSDKRTC9LogLimitsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC9logLimitsAA03LogG0Vvg", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC9logLimitsAA03LogG0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "logProcessors", + "printedName": "logProcessors", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.LogRecordProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordProcessor", + "printedName": "VideoSDKRTC.LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC13logProcessorsSayAA18LogRecordProcessor_pGvp", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC13logProcessorsSayAA18LogRecordProcessor_pGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.LogRecordProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordProcessor", + "printedName": "VideoSDKRTC.LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC13logProcessorsSayAA18LogRecordProcessor_pGvg", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC13logProcessorsSayAA18LogRecordProcessor_pGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerProviderBuilder", + "printedName": "VideoSDKRTC.LoggerProviderBuilder", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderCACycfc", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(clock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC4with5clockACXDAA5Clock_p_tF", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC4with5clockACXDAA5Clock_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(resource:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC4with8resourceACXDAA8ResourceV_tF", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC4with8resourceACXDAA8ResourceV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(logLimits:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "LogLimits", + "printedName": "VideoSDKRTC.LogLimits", + "usr": "s:11VideoSDKRTC9LogLimitsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC4with9logLimitsACXDAA03LogH0V_tF", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC4with9logLimitsACXDAA03LogH0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(processors:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.LogRecordProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordProcessor", + "printedName": "VideoSDKRTC.LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC4with10processorsACXDSayAA18LogRecordProcessor_pG_tF", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC4with10processorsACXDSayAA18LogRecordProcessor_pG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerProviderSdk", + "printedName": "VideoSDKRTC.LoggerProviderSdk", + "usr": "s:11VideoSDKRTC17LoggerProviderSdkC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC5buildAA0cD3SdkCyF", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC5buildAA0cD3SdkCyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoggerProviderSdk", + "printedName": "LoggerProviderSdk", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(clock:resource:logLimits:logRecordProcessors:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerProviderSdk", + "printedName": "VideoSDKRTC.LoggerProviderSdk", + "usr": "s:11VideoSDKRTC17LoggerProviderSdkC" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC5ClockP" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "LogLimits", + "printedName": "VideoSDKRTC.LogLimits", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC9LogLimitsV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.LogRecordProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordProcessor", + "printedName": "VideoSDKRTC.LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17LoggerProviderSdkC5clock8resource9logLimits0H16RecordProcessorsAcA5Clock_p_AA8ResourceVAA03LogI0VSayAA0nJ9Processor_pGtcfc", + "mangledName": "$s11VideoSDKRTC17LoggerProviderSdkC5clock8resource9logLimits0H16RecordProcessorsAcA5Clock_p_AA8ResourceVAA03LogI0VSayAA0nJ9Processor_pGtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationScopeName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "VideoSDKRTC.Logger", + "usr": "s:11VideoSDKRTC6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LoggerProviderSdkC3get24instrumentationScopeNameAA0C0_pSS_tF", + "mangledName": "$s11VideoSDKRTC17LoggerProviderSdkC3get24instrumentationScopeNameAA0C0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loggerBuilder", + "printedName": "loggerBuilder(instrumentationScopeName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerBuilder", + "printedName": "VideoSDKRTC.LoggerBuilder", + "usr": "s:11VideoSDKRTC13LoggerBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LoggerProviderSdkC13loggerBuilder24instrumentationScopeNameAA0cG0_pSS_tF", + "mangledName": "$s11VideoSDKRTC17LoggerProviderSdkC13loggerBuilder24instrumentationScopeNameAA0cG0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC17LoggerProviderSdkC", + "mangledName": "$s11VideoSDKRTC17LoggerProviderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LoggerProvider", + "printedName": "LoggerProvider", + "usr": "s:11VideoSDKRTC14LoggerProviderP", + "mangledName": "$s11VideoSDKRTC14LoggerProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "os.log", + "printedName": "os.log", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "LoggerSdk", + "printedName": "LoggerSdk", + "children": [ + { + "kind": "Function", + "name": "eventBuilder", + "printedName": "eventBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "EventBuilder", + "printedName": "VideoSDKRTC.EventBuilder", + "usr": "s:11VideoSDKRTC12EventBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9LoggerSdkC12eventBuilder4nameAA05EventF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC9LoggerSdkC12eventBuilder4nameAA05EventF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logRecordBuilder", + "printedName": "logRecordBuilder()", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordBuilder", + "printedName": "VideoSDKRTC.LogRecordBuilder", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9LoggerSdkC16logRecordBuilderAA03LogfG0_pyF", + "mangledName": "$s11VideoSDKRTC9LoggerSdkC16logRecordBuilderAA03LogfG0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC9LoggerSdkC", + "mangledName": "$s11VideoSDKRTC9LoggerSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Logger", + "printedName": "Logger", + "usr": "s:11VideoSDKRTC6LoggerP", + "mangledName": "$s11VideoSDKRTC6LoggerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LogLimits", + "printedName": "LogLimits", + "children": [ + { + "kind": "Var", + "name": "defaultMaxAttributeCount", + "printedName": "defaultMaxAttributeCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9LogLimitsV24defaultMaxAttributeCountSivpZ", + "mangledName": "$s11VideoSDKRTC9LogLimitsV24defaultMaxAttributeCountSivpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9LogLimitsV24defaultMaxAttributeCountSivgZ", + "mangledName": "$s11VideoSDKRTC9LogLimitsV24defaultMaxAttributeCountSivgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultMaxAtributeLength", + "printedName": "defaultMaxAtributeLength", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9LogLimitsV24defaultMaxAtributeLengthSivpZ", + "mangledName": "$s11VideoSDKRTC9LogLimitsV24defaultMaxAtributeLengthSivpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9LogLimitsV24defaultMaxAtributeLengthSivgZ", + "mangledName": "$s11VideoSDKRTC9LogLimitsV24defaultMaxAtributeLengthSivgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxAttributeCount", + "printedName": "maxAttributeCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9LogLimitsV17maxAttributeCountSivp", + "mangledName": "$s11VideoSDKRTC9LogLimitsV17maxAttributeCountSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9LogLimitsV17maxAttributeCountSivg", + "mangledName": "$s11VideoSDKRTC9LogLimitsV17maxAttributeCountSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxAttributeLength", + "printedName": "maxAttributeLength", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9LogLimitsV18maxAttributeLengthSivp", + "mangledName": "$s11VideoSDKRTC9LogLimitsV18maxAttributeLengthSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9LogLimitsV18maxAttributeLengthSivg", + "mangledName": "$s11VideoSDKRTC9LogLimitsV18maxAttributeLengthSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(maxAttributeCount:maxAttributeLength:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLimits", + "printedName": "VideoSDKRTC.LogLimits", + "usr": "s:11VideoSDKRTC9LogLimitsV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC9LogLimitsV17maxAttributeCount0eF6LengthACSi_Sitcfc", + "mangledName": "$s11VideoSDKRTC9LogLimitsV17maxAttributeCount0eF6LengthACSi_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC9LogLimitsV", + "mangledName": "$s11VideoSDKRTC9LogLimitsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LogRecordAdapter", + "printedName": "LogRecordAdapter", + "children": [ + { + "kind": "Function", + "name": "toProtoResourceRecordLog", + "printedName": "toProtoResourceRecordLog(logRecordList:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordAdapterC015toProtoResourcedC003logD4ListSayAA014Opentelemetry_g9_Logs_V1_hL0VGSayAA08ReadablecD0VG_tFZ", + "mangledName": "$s11VideoSDKRTC16LogRecordAdapterC015toProtoResourcedC003logD4ListSayAA014Opentelemetry_g9_Logs_V1_hL0VGSayAA08ReadablecD0VG_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16LogRecordAdapterC", + "mangledName": "$s11VideoSDKRTC16LogRecordAdapterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LogRecordBuilder", + "printedName": "LogRecordBuilder", + "children": [ + { + "kind": "Function", + "name": "setTimestamp", + "printedName": "setTimestamp(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP12setTimestampyx10Foundation4DateVF", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP12setTimestampyx10Foundation4DateVF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setObservedTimestamp", + "printedName": "setObservedTimestamp(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP20setObservedTimestampyx10Foundation4DateVF", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP20setObservedTimestampyx10Foundation4DateVF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSpanContext", + "printedName": "setSpanContext(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP14setSpanContextyxAA0gH0VF", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP14setSpanContextyxAA0gH0VF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSeverity", + "printedName": "setSeverity(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP11setSeverityyxAA0G0OF", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP11setSeverityyxAA0G0OF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setBody", + "printedName": "setBody(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP7setBodyyxSSF", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP7setBodyyxSSF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttributes", + "printedName": "setAttributes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP13setAttributesyxSDySSAA14AttributeValueOGF", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP13setAttributesyxSDySSAA14AttributeValueOGF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "emit", + "printedName": "emit()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP4emityyF", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP4emityyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LogRecordBuilderSdk", + "printedName": "LogRecordBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "setTimestamp", + "printedName": "setTimestamp(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC12setTimestampyACXD10Foundation4DateVF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC12setTimestampyACXD10Foundation4DateVF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setObservedTimestamp", + "printedName": "setObservedTimestamp(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC20setObservedTimestampyACXD10Foundation4DateVF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC20setObservedTimestampyACXD10Foundation4DateVF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSpanContext", + "printedName": "setSpanContext(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC14setSpanContextyACXDAA0hI0VF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC14setSpanContextyACXDAA0hI0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSeverity", + "printedName": "setSeverity(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC11setSeverityyACXDAA0H0OF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC11setSeverityyACXDAA0H0OF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setBody", + "printedName": "setBody(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC7setBodyyACXDSSF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC7setBodyyACXDSSF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttributes", + "printedName": "setAttributes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC13setAttributesyACXDSDySSAA14AttributeValueOGF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC13setAttributesyACXDSDySSAA14AttributeValueOGF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setData", + "printedName": "setData(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC7setDatayACXDSDySSAA14AttributeValueOGF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC7setDatayACXDSDySSAA14AttributeValueOGF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "emit", + "printedName": "emit()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC4emityyF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC4emityyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "EventBuilder", + "printedName": "EventBuilder", + "usr": "s:11VideoSDKRTC12EventBuilderP", + "mangledName": "$s11VideoSDKRTC12EventBuilderP" + }, + { + "kind": "Conformance", + "name": "LogRecordBuilder", + "printedName": "LogRecordBuilder", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LogRecordExporter", + "printedName": "LogRecordExporter", + "children": [ + { + "kind": "Function", + "name": "export", + "printedName": "export(logRecords:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LogRecordExporterP6export10logRecordsAA12ExportResultOSayAA08ReadablecD0VG_tF", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP6export10logRecordsAA12ExportResultOSayAA08ReadablecD0VG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LogRecordExporterP8shutdownyyF", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP8shutdownyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LogRecordExporterP10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC17LogRecordExporterP", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LogRecordProcessor", + "printedName": "LogRecordProcessor", + "children": [ + { + "kind": "Function", + "name": "onEmit", + "printedName": "onEmit(logRecord:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP6onEmit03logD0yAA08ReadablecD0V_tF", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP6onEmit03logD0yAA08ReadablecD0V_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "Var", + "name": "unspecified", + "printedName": "unspecified", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO11unspecifiedyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO11unspecifiedyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "trace", + "printedName": "trace", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5traceyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5traceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "trace2", + "printedName": "trace2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6trace2yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6trace2yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "trace3", + "printedName": "trace3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6trace3yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6trace3yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "trace4", + "printedName": "trace4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6trace4yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6trace4yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5debugyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5debugyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "debug2", + "printedName": "debug2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6debug2yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6debug2yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "debug3", + "printedName": "debug3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6debug3yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6debug3yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "debug4", + "printedName": "debug4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6debug4yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6debug4yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "info", + "printedName": "info", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO4infoyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO4infoyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "info2", + "printedName": "info2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5info2yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5info2yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "info3", + "printedName": "info3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5info3yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5info3yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "info4", + "printedName": "info4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5info4yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5info4yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "warn", + "printedName": "warn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO4warnyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO4warnyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "warn2", + "printedName": "warn2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5warn2yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5warn2yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "warn3", + "printedName": "warn3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5warn3yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5warn3yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "warn4", + "printedName": "warn4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5warn4yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5warn4yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5erroryA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5erroryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error2", + "printedName": "error2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6error2yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6error2yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error3", + "printedName": "error3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6error3yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6error3yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error4", + "printedName": "error4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6error4yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6error4yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fatal", + "printedName": "fatal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5fatalyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5fatalyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fatal2", + "printedName": "fatal2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6fatal2yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6fatal2yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fatal3", + "printedName": "fatal3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6fatal3yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6fatal3yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fatal4", + "printedName": "fatal4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6fatal4yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6fatal4yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> (Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO12UNRECOGNIZEDyACSicACmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO12UNRECOGNIZEDyACSicACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberOACycfc", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberOACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber?", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvsZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvMZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "children": [ + { + "kind": "Var", + "name": "doNotUse", + "printedName": "doNotUse", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8doNotUseyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8doNotUseyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "traceFlagsMask", + "printedName": "traceFlagsMask", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO05traceI4MaskyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO05traceI4MaskyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags.Type) -> (Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO12UNRECOGNIZEDyACSicACmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO12UNRECOGNIZEDyACSicACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsOACycfc", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsOACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags?", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvsZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvMZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Logs_V1_LogsData", + "printedName": "Opentelemetry_Proto_Logs_V1_LogsData", + "children": [ + { + "kind": "Var", + "name": "resourceLogs", + "printedName": "resourceLogs", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvp", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvg", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvs", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvM", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogsData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataVACycfc", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogsData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogsData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "children": [ + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0VvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasResource", + "printedName": "hasResource", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V03hasG0Sbvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V03hasG0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V03hasG0Sbvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V03hasG0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearResource", + "printedName": "clearResource()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05clearG0yyF", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05clearG0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "scopeLogs", + "printedName": "scopeLogs", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "schemaURL", + "printedName": "schemaURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0VACycfc", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0VACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9hashValueSivp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9hashValueSivg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "printedName": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "children": [ + { + "kind": "Var", + "name": "scope", + "printedName": "scope", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvp", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvg", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvs", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0VvM", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasScope", + "printedName": "hasScope", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V03hasG0Sbvp", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V03hasG0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V03hasG0Sbvg", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V03hasG0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearScope", + "printedName": "clearScope()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V05clearG0yyF", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V05clearG0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "logRecords", + "printedName": "logRecords", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecord", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvp", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecord", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvg", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecord", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvs", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvM", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "schemaURL", + "printedName": "schemaURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvp", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvg", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvs", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvM", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0VACycfc", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0VACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9hashValueSivp", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9hashValueSivg", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Logs_V1_LogRecord", + "printedName": "Opentelemetry_Proto_Logs_V1_LogRecord", + "children": [ + { + "kind": "Var", + "name": "timeUnixNano", + "printedName": "timeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "observedTimeUnixNano", + "printedName": "observedTimeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "severityNumber", + "printedName": "severityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0Ovp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0Ovg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0Ovs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0Ovs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0OvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "severityText", + "printedName": "severityText", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "body", + "printedName": "body", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasBody", + "printedName": "hasBody", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7hasBodySbvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7hasBodySbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7hasBodySbvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7hasBodySbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearBody", + "printedName": "clearBody()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV9clearBodyyyF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV9clearBodyyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedAttributesCount", + "printedName": "droppedAttributesCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "flags", + "printedName": "flags", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32VvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "traceID", + "printedName": "traceID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "spanID", + "printedName": "spanID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecord", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordVACycfc", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecord", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecord", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "printedName": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "children": [ + { + "kind": "Var", + "name": "resourceLogs", + "printedName": "resourceLogs", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvs", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvM", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestVACycfc", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "printedName": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "children": [ + { + "kind": "Var", + "name": "partialSuccess", + "printedName": "partialSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvs", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0VvM", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPartialSuccess", + "printedName": "hasPartialSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPartialSuccess", + "printedName": "clearPartialSuccess()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV19clearPartialSuccessyyF", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV19clearPartialSuccessyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseVACycfc", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "printedName": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "children": [ + { + "kind": "Var", + "name": "rejectedLogRecords", + "printedName": "rejectedLogRecords", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64Vvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64Vvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64Vvs", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64VvM", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorMessage", + "printedName": "errorMessage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvs", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvM", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessVACycfc", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongCounter", + "printedName": "LongCounter", + "children": [ + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11LongCounterP3add5valueySi_tF", + "mangledName": "$s11VideoSDKRTC11LongCounterP3add5valueySi_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attribute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11LongCounterP3add5value9attributeySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC11LongCounterP3add5value9attributeySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC11LongCounterP", + "mangledName": "$s11VideoSDKRTC11LongCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongCounterBuilder", + "printedName": "LongCounterBuilder", + "children": [ + { + "kind": "Function", + "name": "ofDoubles", + "printedName": "ofDoubles()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleCounterBuilder", + "printedName": "VideoSDKRTC.DoubleCounterBuilder", + "usr": "s:11VideoSDKRTC20DoubleCounterBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18LongCounterBuilderP9ofDoublesAA06DoubledE0_pyF", + "mangledName": "$s11VideoSDKRTC18LongCounterBuilderP9ofDoublesAA06DoubledE0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongCounter", + "printedName": "VideoSDKRTC.LongCounter", + "usr": "s:11VideoSDKRTC11LongCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18LongCounterBuilderP5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC18LongCounterBuilderP5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableLongCounter", + "printedName": "VideoSDKRTC.ObservableLongCounter", + "usr": "s:11VideoSDKRTC21ObservableLongCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableLongMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableLongMeasurement", + "printedName": "VideoSDKRTC.ObservableLongMeasurement", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18LongCounterBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC18LongCounterBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC18LongCounterBuilderP", + "mangledName": "$s11VideoSDKRTC18LongCounterBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongCounterMeterBuilderSdk", + "printedName": "LongCounterMeterBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "ofDoubles", + "printedName": "ofDoubles()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleCounterBuilder", + "printedName": "VideoSDKRTC.DoubleCounterBuilder", + "usr": "s:11VideoSDKRTC20DoubleCounterBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26LongCounterMeterBuilderSdkC9ofDoublesAA06DoubledF0_pyF", + "mangledName": "$s11VideoSDKRTC26LongCounterMeterBuilderSdkC9ofDoublesAA06DoubledF0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongCounter", + "printedName": "VideoSDKRTC.LongCounter", + "usr": "s:11VideoSDKRTC11LongCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26LongCounterMeterBuilderSdkC5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC26LongCounterMeterBuilderSdkC5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableLongCounter", + "printedName": "VideoSDKRTC.ObservableLongCounter", + "usr": "s:11VideoSDKRTC21ObservableLongCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableLongMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableLongMeasurement", + "printedName": "VideoSDKRTC.ObservableLongMeasurement", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26LongCounterMeterBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0kC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC26LongCounterMeterBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0kC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC26LongCounterMeterBuilderSdkC", + "mangledName": "$s11VideoSDKRTC26LongCounterMeterBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LongCounterBuilder", + "printedName": "LongCounterBuilder", + "usr": "s:11VideoSDKRTC18LongCounterBuilderP", + "mangledName": "$s11VideoSDKRTC18LongCounterBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongCounterSdk", + "printedName": "LongCounterSdk", + "children": [ + { + "kind": "Var", + "name": "instrumentDescriptor", + "printedName": "instrumentDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0Vvp", + "mangledName": "$s11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0Vvg", + "mangledName": "$s11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0Vvs", + "mangledName": "$s11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0VvM", + "mangledName": "$s11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14LongCounterSdkC3add5valueySi_tF", + "mangledName": "$s11VideoSDKRTC14LongCounterSdkC3add5valueySi_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attribute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14LongCounterSdkC3add5value9attributeySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC14LongCounterSdkC3add5value9attributeySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC14LongCounterSdkC", + "mangledName": "$s11VideoSDKRTC14LongCounterSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LongCounter", + "printedName": "LongCounter", + "usr": "s:11VideoSDKRTC11LongCounterP", + "mangledName": "$s11VideoSDKRTC11LongCounterP" + }, + { + "kind": "Conformance", + "name": "Instrument", + "printedName": "Instrument", + "usr": "s:11VideoSDKRTC10InstrumentP", + "mangledName": "$s11VideoSDKRTC10InstrumentP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleCounterSdk", + "printedName": "DoubleCounterSdk", + "children": [ + { + "kind": "Var", + "name": "instrumentDescriptor", + "printedName": "instrumentDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0Vvp", + "mangledName": "$s11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0Vvg", + "mangledName": "$s11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0Vvs", + "mangledName": "$s11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0VvM", + "mangledName": "$s11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16DoubleCounterSdkV3add5valueySd_tF", + "mangledName": "$s11VideoSDKRTC16DoubleCounterSdkV3add5valueySd_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16DoubleCounterSdkV3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC16DoubleCounterSdkV3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16DoubleCounterSdkV", + "mangledName": "$s11VideoSDKRTC16DoubleCounterSdkV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleCounter", + "printedName": "DoubleCounter", + "usr": "s:11VideoSDKRTC13DoubleCounterP", + "mangledName": "$s11VideoSDKRTC13DoubleCounterP" + }, + { + "kind": "Conformance", + "name": "Instrument", + "printedName": "Instrument", + "usr": "s:11VideoSDKRTC10InstrumentP", + "mangledName": "$s11VideoSDKRTC10InstrumentP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongGaugeBuilder", + "printedName": "LongGaugeBuilder", + "children": [ + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableLongGauge", + "printedName": "VideoSDKRTC.ObservableLongGauge", + "usr": "s:11VideoSDKRTC19ObservableLongGaugeP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableLongMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableLongMeasurement", + "printedName": "VideoSDKRTC.ObservableLongMeasurement", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LongGaugeBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC16LongGaugeBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongGaugeBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC16LongGaugeBuilderP", + "mangledName": "$s11VideoSDKRTC16LongGaugeBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongGaugeBuilderSdk", + "printedName": "LongGaugeBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableLongGauge", + "printedName": "VideoSDKRTC.ObservableLongGauge", + "usr": "s:11VideoSDKRTC19ObservableLongGaugeP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableLongMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableLongMeasurement", + "printedName": "VideoSDKRTC.ObservableLongMeasurement", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LongGaugeBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0jC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC19LongGaugeBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0jC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19LongGaugeBuilderSdkC", + "mangledName": "$s11VideoSDKRTC19LongGaugeBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LongGaugeBuilder", + "printedName": "LongGaugeBuilder", + "usr": "s:11VideoSDKRTC16LongGaugeBuilderP", + "mangledName": "$s11VideoSDKRTC16LongGaugeBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongHistogram", + "printedName": "LongHistogram", + "children": [ + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LongHistogramP6record5valueySi_tF", + "mangledName": "$s11VideoSDKRTC13LongHistogramP6record5valueySi_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongHistogram>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LongHistogramP6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC13LongHistogramP6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongHistogram>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13LongHistogramP", + "mangledName": "$s11VideoSDKRTC13LongHistogramP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongHistogramBuilder", + "printedName": "LongHistogramBuilder", + "children": [ + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongHistogram", + "printedName": "VideoSDKRTC.LongHistogram", + "usr": "s:11VideoSDKRTC13LongHistogramP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20LongHistogramBuilderP5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC20LongHistogramBuilderP5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongHistogramBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC20LongHistogramBuilderP", + "mangledName": "$s11VideoSDKRTC20LongHistogramBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongHistogramMeterBuilderSdk", + "printedName": "LongHistogramMeterBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongHistogram", + "printedName": "VideoSDKRTC.LongHistogram", + "usr": "s:11VideoSDKRTC13LongHistogramP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28LongHistogramMeterBuilderSdkC5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC28LongHistogramMeterBuilderSdkC5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC28LongHistogramMeterBuilderSdkC", + "mangledName": "$s11VideoSDKRTC28LongHistogramMeterBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LongHistogramBuilder", + "printedName": "LongHistogramBuilder", + "usr": "s:11VideoSDKRTC20LongHistogramBuilderP", + "mangledName": "$s11VideoSDKRTC20LongHistogramBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongHistogramMeterSdk", + "printedName": "LongHistogramMeterSdk", + "children": [ + { + "kind": "Var", + "name": "instrumentDescriptor", + "printedName": "instrumentDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvp", + "mangledName": "$s11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvg", + "mangledName": "$s11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvs", + "mangledName": "$s11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0VvM", + "mangledName": "$s11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21LongHistogramMeterSdkC6record5valueySi_tF", + "mangledName": "$s11VideoSDKRTC21LongHistogramMeterSdkC6record5valueySi_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21LongHistogramMeterSdkC6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC21LongHistogramMeterSdkC6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21LongHistogramMeterSdkC", + "mangledName": "$s11VideoSDKRTC21LongHistogramMeterSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LongHistogram", + "printedName": "LongHistogram", + "usr": "s:11VideoSDKRTC13LongHistogramP", + "mangledName": "$s11VideoSDKRTC13LongHistogramP" + }, + { + "kind": "Conformance", + "name": "Instrument", + "printedName": "Instrument", + "usr": "s:11VideoSDKRTC10InstrumentP", + "mangledName": "$s11VideoSDKRTC10InstrumentP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongLastValueAggregator", + "printedName": "LongLastValueAggregator", + "children": [ + { + "kind": "Function", + "name": "diff", + "printedName": "diff(previousCumulative:currentCumulative:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23LongLastValueAggregatorC4diff18previousCumulative07currentI0AA9PointDataCAH_AHtKF", + "mangledName": "$s11VideoSDKRTC23LongLastValueAggregatorC4diff18previousCumulative07currentI0AA9PointDataCAH_AHtKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toPoint", + "printedName": "toPoint(measurement:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23LongLastValueAggregatorC7toPoint11measurementAA0H4DataCAA11MeasurementV_tKF", + "mangledName": "$s11VideoSDKRTC23LongLastValueAggregatorC7toPoint11measurementAA0H4DataCAA11MeasurementV_tKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createHandle", + "printedName": "createHandle()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregatorHandle", + "printedName": "VideoSDKRTC.AggregatorHandle", + "usr": "s:11VideoSDKRTC16AggregatorHandleC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23LongLastValueAggregatorC12createHandleAA0fH0CyF", + "mangledName": "$s11VideoSDKRTC23LongLastValueAggregatorC12createHandleAA0fH0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData(resource:scope:descriptor:points:temporality:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23LongLastValueAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablehI0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0H10DescriptorVSayAA05PointI0CGAA22AggregationTemporalityOtF", + "mangledName": "$s11VideoSDKRTC23LongLastValueAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablehI0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0H10DescriptorVSayAA05PointI0CGAA22AggregationTemporalityOtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC23LongLastValueAggregatorC", + "mangledName": "$s11VideoSDKRTC23LongLastValueAggregatorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "StableAggregator", + "printedName": "StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongPointData", + "printedName": "LongPointData", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13LongPointDataC5valueSivp", + "mangledName": "$s11VideoSDKRTC13LongPointDataC5valueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13LongPointDataC5valueSivg", + "mangledName": "$s11VideoSDKRTC13LongPointDataC5valueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13LongPointDataC5valueSivs", + "mangledName": "$s11VideoSDKRTC13LongPointDataC5valueSivs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13LongPointDataC5valueSivM", + "mangledName": "$s11VideoSDKRTC13LongPointDataC5valueSivM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC13LongPointDataC", + "mangledName": "$s11VideoSDKRTC13LongPointDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC9PointDataC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.PointData" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongSumAggregator", + "printedName": "LongSumAggregator", + "children": [ + { + "kind": "Function", + "name": "diff", + "printedName": "diff(previousCumulative:currentCumulative:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LongSumAggregatorC4diff18previousCumulative07currentH0AA9PointDataCAH_AHtKF", + "mangledName": "$s11VideoSDKRTC17LongSumAggregatorC4diff18previousCumulative07currentH0AA9PointDataCAH_AHtKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toPoint", + "printedName": "toPoint(measurement:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LongSumAggregatorC7toPoint11measurementAA0G4DataCAA11MeasurementV_tKF", + "mangledName": "$s11VideoSDKRTC17LongSumAggregatorC7toPoint11measurementAA0G4DataCAA11MeasurementV_tKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createHandle", + "printedName": "createHandle()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregatorHandle", + "printedName": "VideoSDKRTC.AggregatorHandle", + "usr": "s:11VideoSDKRTC16AggregatorHandleC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LongSumAggregatorC12createHandleAA0eG0CyF", + "mangledName": "$s11VideoSDKRTC17LongSumAggregatorC12createHandleAA0eG0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData(resource:scope:descriptor:points:temporality:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LongSumAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablegH0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0G10DescriptorVSayAA05PointH0CGAA22AggregationTemporalityOtF", + "mangledName": "$s11VideoSDKRTC17LongSumAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablegH0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0G10DescriptorVSayAA05PointH0CGAA22AggregationTemporalityOtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC17LongSumAggregatorC", + "mangledName": "$s11VideoSDKRTC17LongSumAggregatorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC13SumAggregatorC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.SumAggregator" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "StableAggregator", + "printedName": "StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongUpDownCounter", + "printedName": "LongUpDownCounter", + "children": [ + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LongUpDownCounterP3add5valueySi_tF", + "mangledName": "$s11VideoSDKRTC17LongUpDownCounterP3add5valueySi_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongUpDownCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LongUpDownCounterP3add5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC17LongUpDownCounterP3add5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongUpDownCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC17LongUpDownCounterP", + "mangledName": "$s11VideoSDKRTC17LongUpDownCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongUpDownCounterBuilder", + "printedName": "LongUpDownCounterBuilder", + "children": [ + { + "kind": "Function", + "name": "ofDoubles", + "printedName": "ofDoubles()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleUpDownCounterBuilder", + "printedName": "VideoSDKRTC.DoubleUpDownCounterBuilder", + "usr": "s:11VideoSDKRTC26DoubleUpDownCounterBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24LongUpDownCounterBuilderP9ofDoublesAA06DoubledefG0_pyF", + "mangledName": "$s11VideoSDKRTC24LongUpDownCounterBuilderP9ofDoublesAA06DoubledefG0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongUpDownCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongUpDownCounter", + "printedName": "VideoSDKRTC.LongUpDownCounter", + "usr": "s:11VideoSDKRTC17LongUpDownCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24LongUpDownCounterBuilderP5buildAA0cdeF0_pyF", + "mangledName": "$s11VideoSDKRTC24LongUpDownCounterBuilderP5buildAA0cdeF0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongUpDownCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableLongUpDownCounter", + "printedName": "VideoSDKRTC.ObservableLongUpDownCounter", + "usr": "s:11VideoSDKRTC27ObservableLongUpDownCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableLongMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableLongMeasurement", + "printedName": "VideoSDKRTC.ObservableLongMeasurement", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24LongUpDownCounterBuilderP17buildWithCallbackyAA010ObservablecdeF0_pyAA0kC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC24LongUpDownCounterBuilderP17buildWithCallbackyAA010ObservablecdeF0_pyAA0kC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongUpDownCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC24LongUpDownCounterBuilderP", + "mangledName": "$s11VideoSDKRTC24LongUpDownCounterBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongUpDownCounterBuilderSdk", + "printedName": "LongUpDownCounterBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "ofDoubles", + "printedName": "ofDoubles()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleUpDownCounterBuilder", + "printedName": "VideoSDKRTC.DoubleUpDownCounterBuilder", + "usr": "s:11VideoSDKRTC26DoubleUpDownCounterBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27LongUpDownCounterBuilderSdkC9ofDoublesAA06DoubledefG0_pyF", + "mangledName": "$s11VideoSDKRTC27LongUpDownCounterBuilderSdkC9ofDoublesAA06DoubledefG0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongUpDownCounter", + "printedName": "VideoSDKRTC.LongUpDownCounter", + "usr": "s:11VideoSDKRTC17LongUpDownCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27LongUpDownCounterBuilderSdkC5buildAA0cdeF0_pyF", + "mangledName": "$s11VideoSDKRTC27LongUpDownCounterBuilderSdkC5buildAA0cdeF0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableLongUpDownCounter", + "printedName": "VideoSDKRTC.ObservableLongUpDownCounter", + "usr": "s:11VideoSDKRTC27ObservableLongUpDownCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableLongMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableLongMeasurement", + "printedName": "VideoSDKRTC.ObservableLongMeasurement", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27LongUpDownCounterBuilderSdkC17buildWithCallbackyAA010ObservablecdeF0_pyAA0lC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC27LongUpDownCounterBuilderSdkC17buildWithCallbackyAA010ObservablecdeF0_pyAA0lC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC27LongUpDownCounterBuilderSdkC", + "mangledName": "$s11VideoSDKRTC27LongUpDownCounterBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LongUpDownCounterBuilder", + "printedName": "LongUpDownCounterBuilder", + "usr": "s:11VideoSDKRTC24LongUpDownCounterBuilderP", + "mangledName": "$s11VideoSDKRTC24LongUpDownCounterBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongUpDownCounterSdk", + "printedName": "LongUpDownCounterSdk", + "children": [ + { + "kind": "Var", + "name": "instrumentDescriptor", + "printedName": "instrumentDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20LongUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvp", + "mangledName": "$s11VideoSDKRTC20LongUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20LongUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvg", + "mangledName": "$s11VideoSDKRTC20LongUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20LongUpDownCounterSdkC3add5valueySi_tF", + "mangledName": "$s11VideoSDKRTC20LongUpDownCounterSdkC3add5valueySi_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20LongUpDownCounterSdkC3add5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC20LongUpDownCounterSdkC3add5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20LongUpDownCounterSdkC", + "mangledName": "$s11VideoSDKRTC20LongUpDownCounterSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LongUpDownCounter", + "printedName": "LongUpDownCounter", + "usr": "s:11VideoSDKRTC17LongUpDownCounterP", + "mangledName": "$s11VideoSDKRTC17LongUpDownCounterP" + }, + { + "kind": "Conformance", + "name": "Instrument", + "printedName": "Instrument", + "usr": "s:11VideoSDKRTC10InstrumentP", + "mangledName": "$s11VideoSDKRTC10InstrumentP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MaxValueAggregator", + "printedName": "MaxValueAggregator", + "children": [ + { + "kind": "Function", + "name": "update", + "printedName": "update(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MaxValueAggregatorC6update5valueyx_tF", + "mangledName": "$s11VideoSDKRTC18MaxValueAggregatorC6update5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkpoint", + "printedName": "checkpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MaxValueAggregatorC10checkpointyyF", + "mangledName": "$s11VideoSDKRTC18MaxValueAggregatorC10checkpointyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MaxValueAggregatorC12toMetricDataAA0gH0_pyF", + "mangledName": "$s11VideoSDKRTC18MaxValueAggregatorC12toMetricDataAA0gH0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAggregationType", + "printedName": "getAggregationType()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MaxValueAggregatorC18getAggregationTypeAA0gH0OyF", + "mangledName": "$s11VideoSDKRTC18MaxValueAggregatorC18getAggregationTypeAA0gH0OyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18MaxValueAggregatorC", + "mangledName": "$s11VideoSDKRTC18MaxValueAggregatorC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC10AggregatorC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.Aggregator<τ_0_0>" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Measurement", + "printedName": "Measurement", + "children": [ + { + "kind": "Var", + "name": "startEpochNano", + "printedName": "startEpochNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MeasurementV14startEpochNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC11MeasurementV14startEpochNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MeasurementV14startEpochNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC11MeasurementV14startEpochNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "epochNano", + "printedName": "epochNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MeasurementV9epochNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC11MeasurementV9epochNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MeasurementV9epochNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC11MeasurementV9epochNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasLongValue", + "printedName": "hasLongValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MeasurementV12hasLongValueSbvp", + "mangledName": "$s11VideoSDKRTC11MeasurementV12hasLongValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MeasurementV12hasLongValueSbvg", + "mangledName": "$s11VideoSDKRTC11MeasurementV12hasLongValueSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "longValue", + "printedName": "longValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MeasurementV9longValueSivp", + "mangledName": "$s11VideoSDKRTC11MeasurementV9longValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MeasurementV9longValueSivg", + "mangledName": "$s11VideoSDKRTC11MeasurementV9longValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "doubleValue", + "printedName": "doubleValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MeasurementV11doubleValueSdvp", + "mangledName": "$s11VideoSDKRTC11MeasurementV11doubleValueSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MeasurementV11doubleValueSdvg", + "mangledName": "$s11VideoSDKRTC11MeasurementV11doubleValueSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasDoubleValue", + "printedName": "hasDoubleValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MeasurementV14hasDoubleValueSbvp", + "mangledName": "$s11VideoSDKRTC11MeasurementV14hasDoubleValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MeasurementV14hasDoubleValueSbvg", + "mangledName": "$s11VideoSDKRTC11MeasurementV14hasDoubleValueSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MeasurementV10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC11MeasurementV10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MeasurementV10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC11MeasurementV10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "longMeasurement", + "printedName": "longMeasurement(startEpochNano:endEpochNano:value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11MeasurementV04longC014startEpochNano03endfG05value10attributesACs6UInt64V_AJSiSDySSAA14AttributeValueOGtFZ", + "mangledName": "$s11VideoSDKRTC11MeasurementV04longC014startEpochNano03endfG05value10attributesACs6UInt64V_AJSiSDySSAA14AttributeValueOGtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "doubleMeasurement", + "printedName": "doubleMeasurement(startEpochNano:endEpochNano:value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11MeasurementV06doubleC014startEpochNano03endfG05value10attributesACs6UInt64V_AJSdSDySSAA14AttributeValueOGtFZ", + "mangledName": "$s11VideoSDKRTC11MeasurementV06doubleC014startEpochNano03endfG05value10attributesACs6UInt64V_AJSdSDySSAA14AttributeValueOGtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC11MeasurementV", + "mangledName": "$s11VideoSDKRTC11MeasurementV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeasureMetric", + "printedName": "MeasureMetric", + "children": [ + { + "kind": "AssociatedType", + "name": "T", + "printedName": "T", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC13MeasureMetricP1TQa", + "mangledName": "$s11VideoSDKRTC13MeasureMetricP1TQa", + "moduleName": "VideoSDKRTC", + "protocolReq": true + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundMeasureMetric", + "printedName": "VideoSDKRTC.BoundMeasureMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13MeasureMetricP4bind8labelsetAA05BoundcD0Cy1TQzGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC13MeasureMetricP4bind8labelsetAA05BoundcD0Cy1TQzGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeasureMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundMeasureMetric", + "printedName": "VideoSDKRTC.BoundMeasureMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13MeasureMetricP4bind6labelsAA05BoundcD0Cy1TQzGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC13MeasureMetricP4bind6labelsAA05BoundcD0Cy1TQzGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeasureMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13MeasureMetricPAAE6record5value8labelsety1TQz_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC13MeasureMetricPAAE6record5value8labelsety1TQz_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeasureMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13MeasureMetricPAAE6record5value6labelsy1TQz_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC13MeasureMetricPAAE6record5value6labelsy1TQz_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeasureMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13MeasureMetricP", + "mangledName": "$s11VideoSDKRTC13MeasureMetricP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AnyMeasureMetric", + "printedName": "AnyMeasureMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMeasureMetric", + "printedName": "VideoSDKRTC.AnyMeasureMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16AnyMeasureMetricVyACyxGqd__c1TQyd__RszAA0dE0Rd__lufc", + "mangledName": "$s11VideoSDKRTC16AnyMeasureMetricVyACyxGqd__c1TQyd__RszAA0dE0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 == τ_1_0.T, τ_1_0 : VideoSDKRTC.MeasureMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundMeasureMetric", + "printedName": "VideoSDKRTC.BoundMeasureMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC16AnyMeasureMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundMeasureMetric", + "printedName": "VideoSDKRTC.BoundMeasureMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC16AnyMeasureMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV", + "mangledName": "$s11VideoSDKRTC16AnyMeasureMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MeasureMetric", + "printedName": "MeasureMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC13MeasureMetricP", + "mangledName": "$s11VideoSDKRTC13MeasureMetricP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoopMeasureMetric", + "printedName": "NoopMeasureMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopMeasureMetric", + "printedName": "VideoSDKRTC.NoopMeasureMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17NoopMeasureMetricV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17NoopMeasureMetricVACyxGycfc", + "mangledName": "$s11VideoSDKRTC17NoopMeasureMetricVACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundMeasureMetric", + "printedName": "VideoSDKRTC.BoundMeasureMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17NoopMeasureMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC17NoopMeasureMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundMeasureMetric", + "printedName": "VideoSDKRTC.BoundMeasureMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17NoopMeasureMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC17NoopMeasureMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC17NoopMeasureMetricV", + "mangledName": "$s11VideoSDKRTC17NoopMeasureMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MeasureMetric", + "printedName": "MeasureMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC13MeasureMetricP", + "mangledName": "$s11VideoSDKRTC13MeasureMetricP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeasureMinMaxSumCountAggregator", + "printedName": "MeasureMinMaxSumCountAggregator", + "children": [ + { + "kind": "Function", + "name": "update", + "printedName": "update(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC6update5valueyx_tF", + "mangledName": "$s11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC6update5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkpoint", + "printedName": "checkpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC10checkpointyyF", + "mangledName": "$s11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC10checkpointyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC12toMetricDataAA0jK0_pyF", + "mangledName": "$s11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC12toMetricDataAA0jK0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAggregationType", + "printedName": "getAggregationType()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC18getAggregationTypeAA0jK0OyF", + "mangledName": "$s11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC18getAggregationTypeAA0jK0OyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC", + "mangledName": "$s11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:11VideoSDKRTC10AggregatorC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.Aggregator<τ_0_0>" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "authorisationStatus", + "printedName": "authorisationStatus", + "children": [ + { + "kind": "Var", + "name": "notDetermined", + "printedName": "notDetermined", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.authorisationStatus.Type) -> VideoSDKRTC.authorisationStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.authorisationStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19authorisationStatusO13notDeterminedyA2CmF", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO13notDeterminedyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "authorised", + "printedName": "authorised", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.authorisationStatus.Type) -> VideoSDKRTC.authorisationStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.authorisationStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19authorisationStatusO10authorisedyA2CmF", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO10authorisedyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "denied", + "printedName": "denied", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.authorisationStatus.Type) -> VideoSDKRTC.authorisationStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.authorisationStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19authorisationStatusO6deniedyA2CmF", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO6deniedyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "restricted", + "printedName": "restricted", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.authorisationStatus.Type) -> VideoSDKRTC.authorisationStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.authorisationStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19authorisationStatusO10restrictedyA2CmF", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO10restrictedyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + }, + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19authorisationStatusO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19authorisationStatusO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19authorisationStatusO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19authorisationStatusO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC19authorisationStatusO", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthorisationDelegate", + "printedName": "AuthorisationDelegate", + "children": [ + { + "kind": "Function", + "name": "handlePermission", + "printedName": "handlePermission()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21AuthorisationDelegateP16handlePermissionyyF", + "mangledName": "$s11VideoSDKRTC21AuthorisationDelegateP16handlePermissionyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AuthorisationDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC21AuthorisationDelegateP", + "mangledName": "$s11VideoSDKRTC21AuthorisationDelegateP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Mediasoup", + "printedName": "Mediasoup", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "MediaStream", + "printedName": "MediaStream", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MediaStreamC2idSSvp", + "mangledName": "$s11VideoSDKRTC11MediaStreamC2idSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MediaStreamC2idSSvg", + "mangledName": "$s11VideoSDKRTC11MediaStreamC2idSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvp", + "mangledName": "$s11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvg", + "mangledName": "$s11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "track", + "printedName": "track", + "children": [ + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvp", + "mangledName": "$s11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvg", + "mangledName": "$s11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "producer", + "printedName": "producer", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.Producer?", + "children": [ + { + "kind": "TypeNominal", + "name": "Producer", + "printedName": "Mediasoup.Producer", + "usr": "s:9Mediasoup8ProducerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvp", + "mangledName": "$s11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.Producer?", + "children": [ + { + "kind": "TypeNominal", + "name": "Producer", + "printedName": "Mediasoup.Producer", + "usr": "s:9Mediasoup8ProducerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvg", + "mangledName": "$s11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "consumer", + "printedName": "consumer", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.Consumer?", + "children": [ + { + "kind": "TypeNominal", + "name": "Consumer", + "printedName": "Mediasoup.Consumer", + "usr": "s:9Mediasoup8ConsumerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvp", + "mangledName": "$s11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.Consumer?", + "children": [ + { + "kind": "TypeNominal", + "name": "Consumer", + "printedName": "Mediasoup.Consumer", + "usr": "s:9Mediasoup8ConsumerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvg", + "mangledName": "$s11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11MediaStreamC5pauseyyF", + "mangledName": "$s11VideoSDKRTC11MediaStreamC5pauseyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11MediaStreamC6resumeyyF", + "mangledName": "$s11VideoSDKRTC11MediaStreamC6resumeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11MediaStreamC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC11MediaStreamC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC11MediaStreamC", + "mangledName": "$s11VideoSDKRTC11MediaStreamC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MediaType", + "printedName": "MediaType", + "children": [ + { + "kind": "Var", + "name": "share", + "printedName": "share", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MediaType.Type) -> VideoSDKRTC.MediaType", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MediaType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC9MediaTypeO5shareyA2CmF", + "mangledName": "$s11VideoSDKRTC9MediaTypeO5shareyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "state", + "printedName": "state", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MediaType.Type) -> (Mediasoup.MediaKind) -> VideoSDKRTC.MediaType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediaKind) -> VideoSDKRTC.MediaType", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(value: Mediasoup.MediaKind)", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MediaType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC9MediaTypeO5stateyAC9Mediasoup0C4KindO_tcACmF", + "mangledName": "$s11VideoSDKRTC9MediaTypeO5stateyAC9Mediasoup0C4KindO_tcACmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + }, + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9MediaTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC9MediaTypeO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC9MediaTypeO", + "mangledName": "$s11VideoSDKRTC9MediaTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "ReplayKit", + "printedName": "ReplayKit", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Swift", + "printedName": "Swift", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "Meeting", + "printedName": "Meeting", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC2idSSvp", + "mangledName": "$s11VideoSDKRTC7MeetingC2idSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC2idSSvg", + "mangledName": "$s11VideoSDKRTC7MeetingC2idSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "localParticipant", + "printedName": "localParticipant", + "children": [ + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvp", + "mangledName": "$s11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvg", + "mangledName": "$s11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "participants", + "printedName": "participants", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.Participant]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvp", + "mangledName": "$s11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.Participant]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvg", + "mangledName": "$s11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pinnedParticipants", + "printedName": "pinnedParticipants", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.ParticipantPinState]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC18pinnedParticipantsSDySSAA19ParticipantPinStateVGvp", + "mangledName": "$s11VideoSDKRTC7MeetingC18pinnedParticipantsSDySSAA19ParticipantPinStateVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.ParticipantPinState]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC18pinnedParticipantsSDySSAA19ParticipantPinStateVGvg", + "mangledName": "$s11VideoSDKRTC7MeetingC18pinnedParticipantsSDySSAA19ParticipantPinStateVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hlsUrls", + "printedName": "hlsUrls", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.HLSUrl?", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSUrl", + "printedName": "VideoSDKRTC.HLSUrl", + "usr": "s:11VideoSDKRTC6HLSUrlC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvp", + "mangledName": "$s11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.HLSUrl?", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSUrl", + "printedName": "VideoSDKRTC.HLSUrl", + "usr": "s:11VideoSDKRTC6HLSUrlC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvg", + "mangledName": "$s11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.HLSUrl?", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSUrl", + "printedName": "VideoSDKRTC.HLSUrl", + "usr": "s:11VideoSDKRTC6HLSUrlC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvs", + "mangledName": "$s11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvM", + "mangledName": "$s11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hlsState", + "printedName": "hlsState", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvp", + "mangledName": "$s11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvg", + "mangledName": "$s11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvs", + "mangledName": "$s11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvM", + "mangledName": "$s11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "liveStreamState", + "printedName": "liveStreamState", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0Ovp", + "mangledName": "$s11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0Ovg", + "mangledName": "$s11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0Ovs", + "mangledName": "$s11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0Ovs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0OvM", + "mangledName": "$s11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "recordingState", + "printedName": "recordingState", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0Ovp", + "mangledName": "$s11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0Ovg", + "mangledName": "$s11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0Ovs", + "mangledName": "$s11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0Ovs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0OvM", + "mangledName": "$s11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pubsub", + "printedName": "pubsub", + "children": [ + { + "kind": "TypeNominal", + "name": "PubSub", + "printedName": "VideoSDKRTC.PubSub", + "usr": "s:11VideoSDKRTC6PubSubC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvp", + "mangledName": "$s11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Lazy", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PubSub", + "printedName": "VideoSDKRTC.PubSub", + "usr": "s:11VideoSDKRTC6PubSubC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvg", + "mangledName": "$s11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "customVideoMediaStream", + "printedName": "customVideoMediaStream", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomRTCMediaStream", + "printedName": "VideoSDKRTC.CustomRTCMediaStream", + "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvp", + "mangledName": "$s11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomRTCMediaStream", + "printedName": "VideoSDKRTC.CustomRTCMediaStream", + "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvg", + "mangledName": "$s11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "meetingMode", + "printedName": "meetingMode", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Mode?", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC11meetingModeAA0E0OSgvp", + "mangledName": "$s11VideoSDKRTC7MeetingC11meetingModeAA0E0OSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Mode?", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC11meetingModeAA0E0OSgvg", + "mangledName": "$s11VideoSDKRTC7MeetingC11meetingModeAA0E0OSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "join", + "printedName": "join(cameraPosition:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Position", + "printedName": "AVFoundation.AVCaptureDevice.Position", + "usr": "c:@E@AVCaptureDevicePosition" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC4join14cameraPositionySo015AVCaptureDeviceF0V_tF", + "mangledName": "$s11VideoSDKRTC7MeetingC4join14cameraPositionySo015AVCaptureDeviceF0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "leave", + "printedName": "leave()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC5leaveyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC5leaveyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "end", + "printedName": "end()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC3endyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC3endyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enableWebcam", + "printedName": "enableWebcam(customVideoStream:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomRTCMediaStream", + "printedName": "VideoSDKRTC.CustomRTCMediaStream", + "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC12enableWebcam06customA6StreamyAA014CustomRTCMediaG0CSg_tF", + "mangledName": "$s11VideoSDKRTC7MeetingC12enableWebcam06customA6StreamyAA014CustomRTCMediaG0CSg_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableWebcam", + "printedName": "disableWebcam()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC13disableWebcamyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC13disableWebcamyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "switchWebcam", + "printedName": "switchWebcam()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC12switchWebcamyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC12switchWebcamyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "muteMic", + "printedName": "muteMic()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC7muteMicyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC7muteMicyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unmuteMic", + "printedName": "unmuteMic()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC9unmuteMicyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC9unmuteMicyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startRecording", + "printedName": "startRecording(webhookUrl:awsDirPath:config:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.RecordingConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingConfig", + "printedName": "VideoSDKRTC.RecordingConfig", + "usr": "s:11VideoSDKRTC15RecordingConfigC" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC14startRecording10webhookUrl10awsDirPath6configySS_SSSgAA0E6ConfigCSgtF", + "mangledName": "$s11VideoSDKRTC7MeetingC14startRecording10webhookUrl10awsDirPath6configySS_SSSgAA0E6ConfigCSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopRecording", + "printedName": "stopRecording()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC13stopRecordingyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC13stopRecordingyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startLivestream", + "printedName": "startLivestream(outputs:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.LivestreamOutput]", + "children": [ + { + "kind": "TypeNominal", + "name": "LivestreamOutput", + "printedName": "VideoSDKRTC.LivestreamOutput", + "usr": "s:11VideoSDKRTC16LivestreamOutputV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC15startLivestream7outputsySayAA0E6OutputVG_tF", + "mangledName": "$s11VideoSDKRTC7MeetingC15startLivestream7outputsySayAA0E6OutputVG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopLivestream", + "printedName": "stopLivestream()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC14stopLivestreamyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC14stopLivestreamyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startHLS", + "printedName": "startHLS(config:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.HLSConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSConfig", + "printedName": "VideoSDKRTC.HLSConfig", + "usr": "s:11VideoSDKRTC9HLSConfigC" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC8startHLS6configyAA9HLSConfigCSg_tF", + "mangledName": "$s11VideoSDKRTC7MeetingC8startHLS6configyAA9HLSConfigCSg_tF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopHLS", + "printedName": "stopHLS()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC7stopHLSyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC7stopHLSyyF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "changeMode", + "printedName": "changeMode(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC10changeModeyyAA0E0OF", + "mangledName": "$s11VideoSDKRTC7MeetingC10changeModeyyAA0E0OF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enableScreenShare", + "printedName": "enableScreenShare()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC17enableScreenShareyyYaF", + "mangledName": "$s11VideoSDKRTC7MeetingC17enableScreenShareyyYaF", + "moduleName": "VideoSDKRTC", + "intro_iOS": "13.0.0", + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableScreenShare", + "printedName": "disableScreenShare()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC18disableScreenShareyyYaF", + "mangledName": "$s11VideoSDKRTC7MeetingC18disableScreenShareyyYaF", + "moduleName": "VideoSDKRTC", + "intro_iOS": "13.0.0", + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "changeMic", + "printedName": "changeMic(selectedDevice:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC9changeMic14selectedDeviceySS_tF", + "mangledName": "$s11VideoSDKRTC7MeetingC9changeMic14selectedDeviceySS_tF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getMics", + "printedName": "getMics()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(deviceName: Swift.String, deviceType: Swift.String)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(deviceName: Swift.String, deviceType: Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC7getMicsSaySS10deviceName_SS0F4TypetGyF", + "mangledName": "$s11VideoSDKRTC7MeetingC7getMicsSaySS10deviceName_SS0F4TypetGyF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeOberver", + "printedName": "removeOberver()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC13removeOberveryyF", + "mangledName": "$s11VideoSDKRTC7MeetingC13removeOberveryyF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEventListener", + "printedName": "addEventListener(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MeetingEventListener", + "printedName": "VideoSDKRTC.MeetingEventListener", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC16addEventListeneryyAA0ceF0_pF", + "mangledName": "$s11VideoSDKRTC7MeetingC16addEventListeneryyAA0ceF0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeEventListener", + "printedName": "removeEventListener(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MeetingEventListener", + "printedName": "VideoSDKRTC.MeetingEventListener", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC19removeEventListeneryyAA0ceF0_pF", + "mangledName": "$s11VideoSDKRTC7MeetingC19removeEventListeneryyAA0ceF0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Meeting", + "printedName": "VideoSDKRTC.Meeting", + "usr": "s:11VideoSDKRTC7MeetingC" + }, + { + "kind": "TypeNominal", + "name": "Meeting", + "printedName": "VideoSDKRTC.Meeting", + "usr": "s:11VideoSDKRTC7MeetingC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC7MeetingC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC7MeetingC", + "mangledName": "$s11VideoSDKRTC7MeetingC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeetingEventListener", + "printedName": "MeetingEventListener", + "children": [ + { + "kind": "Function", + "name": "onMeetingJoined", + "printedName": "onMeetingJoined()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP02onC6JoinedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP02onC6JoinedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMeetingLeft", + "printedName": "onMeetingLeft()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP02onC4LeftyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP02onC4LeftyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onParticipantJoined", + "printedName": "onParticipantJoined(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onParticipantJoinedyyAA0G0CF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onParticipantJoinedyyAA0G0CF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onParticipantLeft", + "printedName": "onParticipantLeft(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP17onParticipantLeftyyAA0G0CF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP17onParticipantLeftyyAA0G0CF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRecordingStarted", + "printedName": "onRecordingStarted()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP18onRecordingStartedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP18onRecordingStartedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRecordingStoppped", + "printedName": "onRecordingStoppped()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onRecordingStopppedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onRecordingStopppedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onLivestreamStarted", + "printedName": "onLivestreamStarted()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onLivestreamStartedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onLivestreamStartedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onLivestreamStopped", + "printedName": "onLivestreamStopped()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onLivestreamStoppedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onLivestreamStoppedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSpeakerChanged", + "printedName": "onSpeakerChanged(participantId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP16onSpeakerChanged13participantIdySSSg_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP16onSpeakerChanged13participantIdySSSg_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMicRequested", + "printedName": "onMicRequested(participantId:accept:reject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWebcamRequested", + "printedName": "onWebcamRequested(participantId:accept:reject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSocketError", + "printedName": "onSocketError(message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP13onSocketError7messageySS_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP13onSocketError7messageySS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMeetingStateChanged", + "printedName": "onMeetingStateChanged(meetingState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP02onC12StateChanged07meetingG0yAA0cG0O_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP02onC12StateChanged07meetingG0yAA0cG0O_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onError", + "printedName": "onError(error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP7onError5erroryAA0A8SDKErrorO_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP7onError5erroryAA0A8SDKErrorO_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onHlsStateChanged", + "printedName": "onHlsStateChanged(state:hlsUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.HLSUrl?", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSUrl", + "printedName": "VideoSDKRTC.HLSUrl", + "usr": "s:11VideoSDKRTC6HLSUrlC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP17onHlsStateChanged5state6hlsUrlyAA8HLSStateO_AA6HLSUrlCSgtF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP17onHlsStateChanged5state6hlsUrlyAA8HLSStateO_AA6HLSUrlCSgtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onLivestreamStateChanged", + "printedName": "onLivestreamStateChanged(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP24onLivestreamStateChanged5stateyAA010LiveStreamH0O_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP24onLivestreamStateChanged5stateyAA010LiveStreamH0O_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRecordingStateChanged", + "printedName": "onRecordingStateChanged(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP23onRecordingStateChanged5stateyAA0gH0O_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP23onRecordingStateChanged5stateyAA0gH0O_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onPinStateChanged", + "printedName": "onPinStateChanged(participantId:pinType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP17onPinStateChanged13participantId7pinTypeySS_AA0gM0OtF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP17onPinStateChanged13participantId7pinTypeySS_AA0gM0OtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onParticipantModeChanged", + "printedName": "onParticipantModeChanged(participantId:mode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP24onParticipantModeChanged13participantId4modeySS_AA0H0OtF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP24onParticipantModeChanged13participantId4modeySS_AA0H0OtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMicChanged", + "printedName": "onMicChanged(selectedDevice:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP12onMicChanged14selectedDeviceySS_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP12onMicChanged14selectedDeviceySS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMeetingJoined", + "printedName": "onMeetingJoined()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE02onC6JoinedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE02onC6JoinedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMeetingLeft", + "printedName": "onMeetingLeft()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE02onC4LeftyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE02onC4LeftyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onParticipantJoined", + "printedName": "onParticipantJoined(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onParticipantJoinedyyAA0G0CF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onParticipantJoinedyyAA0G0CF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onParticipantLeft", + "printedName": "onParticipantLeft(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE17onParticipantLeftyyAA0G0CF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE17onParticipantLeftyyAA0G0CF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRecordingStarted", + "printedName": "onRecordingStarted()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE18onRecordingStartedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE18onRecordingStartedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRecordingStoppped", + "printedName": "onRecordingStoppped()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onRecordingStopppedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onRecordingStopppedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onLivestreamStarted", + "printedName": "onLivestreamStarted()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStartedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStartedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onLivestreamStopped", + "printedName": "onLivestreamStopped()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStoppedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStoppedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSpeakerChanged", + "printedName": "onSpeakerChanged(participantId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE16onSpeakerChanged13participantIdySSSg_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE16onSpeakerChanged13participantIdySSSg_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMicRequested", + "printedName": "onMicRequested(participantId:accept:reject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWebcamRequested", + "printedName": "onWebcamRequested(participantId:accept:reject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSocketError", + "printedName": "onSocketError(message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE13onSocketError7messageySS_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE13onSocketError7messageySS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMeetingStateChanged", + "printedName": "onMeetingStateChanged(meetingState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE02onC12StateChanged07meetingG0yAA0cG0O_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE02onC12StateChanged07meetingG0yAA0cG0O_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onError", + "printedName": "onError(error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE7onError5erroryAA0A8SDKErrorO_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE7onError5erroryAA0A8SDKErrorO_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onHlsStateChanged", + "printedName": "onHlsStateChanged(state:hlsUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.HLSUrl?", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSUrl", + "printedName": "VideoSDKRTC.HLSUrl", + "usr": "s:11VideoSDKRTC6HLSUrlC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE17onHlsStateChanged5state6hlsUrlyAA8HLSStateO_AA6HLSUrlCSgtF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE17onHlsStateChanged5state6hlsUrlyAA8HLSStateO_AA6HLSUrlCSgtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onLivestreamStateChanged", + "printedName": "onLivestreamStateChanged(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE24onLivestreamStateChanged5stateyAA010LiveStreamH0O_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE24onLivestreamStateChanged5stateyAA010LiveStreamH0O_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRecordingStateChanged", + "printedName": "onRecordingStateChanged(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE23onRecordingStateChanged5stateyAA0gH0O_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE23onRecordingStateChanged5stateyAA0gH0O_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onPinStateChanged", + "printedName": "onPinStateChanged(participantId:pinType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE17onPinStateChanged13participantId7pinTypeySS_AA0gM0OtF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE17onPinStateChanged13participantId7pinTypeySS_AA0gM0OtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onParticipantModeChanged", + "printedName": "onParticipantModeChanged(participantId:mode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE24onParticipantModeChanged13participantId4modeySS_AA0H0OtF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE24onParticipantModeChanged13participantId4modeySS_AA0H0OtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMicChanged", + "printedName": "onMicChanged(selectedDevice:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE12onMicChanged14selectedDeviceySS_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE12onMicChanged14selectedDeviceySS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeetingState", + "printedName": "MeetingState", + "children": [ + { + "kind": "Var", + "name": "CONNECTING", + "printedName": "CONNECTING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MeetingState.Type) -> VideoSDKRTC.MeetingState", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MeetingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC12MeetingStateO10CONNECTINGyA2CmF", + "mangledName": "$s11VideoSDKRTC12MeetingStateO10CONNECTINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "CONNECTED", + "printedName": "CONNECTED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MeetingState.Type) -> VideoSDKRTC.MeetingState", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MeetingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC12MeetingStateO9CONNECTEDyA2CmF", + "mangledName": "$s11VideoSDKRTC12MeetingStateO9CONNECTEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "CLOSING", + "printedName": "CLOSING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MeetingState.Type) -> VideoSDKRTC.MeetingState", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MeetingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC12MeetingStateO7CLOSINGyA2CmF", + "mangledName": "$s11VideoSDKRTC12MeetingStateO7CLOSINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "CLOSED", + "printedName": "CLOSED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MeetingState.Type) -> VideoSDKRTC.MeetingState", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MeetingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC12MeetingStateO6CLOSEDyA2CmF", + "mangledName": "$s11VideoSDKRTC12MeetingStateO6CLOSEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "CANCELLED", + "printedName": "CANCELLED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MeetingState.Type) -> VideoSDKRTC.MeetingState", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MeetingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC12MeetingStateO9CANCELLEDyA2CmF", + "mangledName": "$s11VideoSDKRTC12MeetingStateO9CANCELLEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.MeetingState?", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC12MeetingStateO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC12MeetingStateO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12MeetingStateO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC12MeetingStateO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12MeetingStateO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC12MeetingStateO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC12MeetingStateO", + "mangledName": "$s11VideoSDKRTC12MeetingStateO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Mode", + "printedName": "Mode", + "children": [ + { + "kind": "Var", + "name": "CONFERENCE", + "printedName": "CONFERENCE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Mode.Type) -> VideoSDKRTC.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC4ModeO10CONFERENCEyA2CmF", + "mangledName": "$s11VideoSDKRTC4ModeO10CONFERENCEyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "VIEWER", + "printedName": "VIEWER", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Mode.Type) -> VideoSDKRTC.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC4ModeO6VIEWERyA2CmF", + "mangledName": "$s11VideoSDKRTC4ModeO6VIEWERyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC4ModeO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC4ModeO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4ModeO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC4ModeO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Mode?", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC4ModeO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC4ModeO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC4ModeO", + "mangledName": "$s11VideoSDKRTC4ModeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "VideoSDKError", + "printedName": "VideoSDKError", + "children": [ + { + "kind": "Var", + "name": "UNKNOWN_ERROR", + "printedName": "UNKNOWN_ERROR", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO13UNKNOWN_ERRORyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO13UNKNOWN_ERRORyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "INVALID_API_KEY", + "printedName": "INVALID_API_KEY", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO15INVALID_API_KEYyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO15INVALID_API_KEYyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "INVALID_TOKEN", + "printedName": "INVALID_TOKEN", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO13INVALID_TOKENyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO13INVALID_TOKENyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "INVALID_MEETING_ID", + "printedName": "INVALID_MEETING_ID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO18INVALID_MEETING_IDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO18INVALID_MEETING_IDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "INVALID_PARTICIPANT_ID", + "printedName": "INVALID_PARTICIPANT_ID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO22INVALID_PARTICIPANT_IDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO22INVALID_PARTICIPANT_IDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "DUPLICATE_PARTICIPANT", + "printedName": "DUPLICATE_PARTICIPANT", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO21DUPLICATE_PARTICIPANTyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO21DUPLICATE_PARTICIPANTyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ACCOUNT_DEACTIVATED", + "printedName": "ACCOUNT_DEACTIVATED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO19ACCOUNT_DEACTIVATEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO19ACCOUNT_DEACTIVATEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ACCOUNT_DISCONTINUED", + "printedName": "ACCOUNT_DISCONTINUED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO20ACCOUNT_DISCONTINUEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO20ACCOUNT_DISCONTINUEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "INVALID_PERMISSIONS", + "printedName": "INVALID_PERMISSIONS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO19INVALID_PERMISSIONSyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO19INVALID_PERMISSIONSyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "MAX_PARTCIPANT_REACHED", + "printedName": "MAX_PARTCIPANT_REACHED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO22MAX_PARTCIPANT_REACHEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO22MAX_PARTCIPANT_REACHEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "MAX_SPEAKER_REACHED", + "printedName": "MAX_SPEAKER_REACHED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO19MAX_SPEAKER_REACHEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO19MAX_SPEAKER_REACHEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "START_RECORDING_FAILED", + "printedName": "START_RECORDING_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO22START_RECORDING_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO22START_RECORDING_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "STOP_RECORDING_FAILED", + "printedName": "STOP_RECORDING_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO21STOP_RECORDING_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO21STOP_RECORDING_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "START_LIVESTREAM_FAILED", + "printedName": "START_LIVESTREAM_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO23START_LIVESTREAM_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO23START_LIVESTREAM_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "STOP_LIVESTREAM_FAILED", + "printedName": "STOP_LIVESTREAM_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO22STOP_LIVESTREAM_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO22STOP_LIVESTREAM_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "INVALID_LIVESTREAM_CONFIG", + "printedName": "INVALID_LIVESTREAM_CONFIG", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO25INVALID_LIVESTREAM_CONFIGyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO25INVALID_LIVESTREAM_CONFIGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "START_HLS_FAILED", + "printedName": "START_HLS_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO16START_HLS_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO16START_HLS_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "STOP_HLS_FAILED", + "printedName": "STOP_HLS_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO15STOP_HLS_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO15STOP_HLS_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "RECORDING_FAILED", + "printedName": "RECORDING_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO16RECORDING_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO16RECORDING_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "LIVESTREAM_FAILED", + "printedName": "LIVESTREAM_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO17LIVESTREAM_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO17LIVESTREAM_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "HLS_FAILED", + "printedName": "HLS_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO10HLS_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO10HLS_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ERROR_GET_VIDEO_MEDIA", + "printedName": "ERROR_GET_VIDEO_MEDIA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO21ERROR_GET_VIDEO_MEDIAyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO21ERROR_GET_VIDEO_MEDIAyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "ERROR_GET_AUDIO_MEDIA", + "printedName": "ERROR_GET_AUDIO_MEDIA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO21ERROR_GET_AUDIO_MEDIAyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO21ERROR_GET_AUDIO_MEDIAyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ERROR_GET_DISPLAY_MEDIA", + "printedName": "ERROR_GET_DISPLAY_MEDIA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO23ERROR_GET_DISPLAY_MEDIAyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO23ERROR_GET_DISPLAY_MEDIAyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ERROR_GET_VIDEO_MEDIA_PERMISSION_DENIED", + "printedName": "ERROR_GET_VIDEO_MEDIA_PERMISSION_DENIED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO39ERROR_GET_VIDEO_MEDIA_PERMISSION_DENIEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO39ERROR_GET_VIDEO_MEDIA_PERMISSION_DENIEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ERROR_GET_AUDIO_MEDIA_PERMISSION_DENIED", + "printedName": "ERROR_GET_AUDIO_MEDIA_PERMISSION_DENIED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO39ERROR_GET_AUDIO_MEDIA_PERMISSION_DENIEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO39ERROR_GET_AUDIO_MEDIA_PERMISSION_DENIEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ERROR_GET_DISPLAY_MEDIA_PERMISSION_DENIED", + "printedName": "ERROR_GET_DISPLAY_MEDIA_PERMISSION_DENIED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO41ERROR_GET_DISPLAY_MEDIA_PERMISSION_DENIEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO41ERROR_GET_DISPLAY_MEDIA_PERMISSION_DENIEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.VideoSDKError?", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC0A8SDKErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC0A8SDKErrorO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC0A8SDKErrorO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC0A8SDKErrorO", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "HLSState", + "printedName": "HLSState", + "children": [ + { + "kind": "Var", + "name": "HLS_STARTED", + "printedName": "HLS_STARTED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.HLSState.Type) -> VideoSDKRTC.HLSState", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.HLSState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8HLSStateO11HLS_STARTEDyA2CmF", + "mangledName": "$s11VideoSDKRTC8HLSStateO11HLS_STARTEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "HLS_STARTING", + "printedName": "HLS_STARTING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.HLSState.Type) -> VideoSDKRTC.HLSState", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.HLSState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8HLSStateO12HLS_STARTINGyA2CmF", + "mangledName": "$s11VideoSDKRTC8HLSStateO12HLS_STARTINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "HLS_STOPPED", + "printedName": "HLS_STOPPED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.HLSState.Type) -> VideoSDKRTC.HLSState", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.HLSState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8HLSStateO11HLS_STOPPEDyA2CmF", + "mangledName": "$s11VideoSDKRTC8HLSStateO11HLS_STOPPEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "HLS_STOPPING", + "printedName": "HLS_STOPPING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.HLSState.Type) -> VideoSDKRTC.HLSState", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.HLSState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8HLSStateO12HLS_STOPPINGyA2CmF", + "mangledName": "$s11VideoSDKRTC8HLSStateO12HLS_STOPPINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "HLS_PLAYABLE", + "printedName": "HLS_PLAYABLE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.HLSState.Type) -> VideoSDKRTC.HLSState", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.HLSState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8HLSStateO12HLS_PLAYABLEyA2CmF", + "mangledName": "$s11VideoSDKRTC8HLSStateO12HLS_PLAYABLEyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.HLSState?", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8HLSStateO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC8HLSStateO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8HLSStateO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC8HLSStateO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8HLSStateO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC8HLSStateO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC8HLSStateO", + "mangledName": "$s11VideoSDKRTC8HLSStateO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RecordingState", + "printedName": "RecordingState", + "children": [ + { + "kind": "Var", + "name": "RECORDING_STARTED", + "printedName": "RECORDING_STARTED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.RecordingState.Type) -> VideoSDKRTC.RecordingState", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.RecordingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14RecordingStateO17RECORDING_STARTEDyA2CmF", + "mangledName": "$s11VideoSDKRTC14RecordingStateO17RECORDING_STARTEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "RECORDING_STARTING", + "printedName": "RECORDING_STARTING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.RecordingState.Type) -> VideoSDKRTC.RecordingState", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.RecordingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14RecordingStateO18RECORDING_STARTINGyA2CmF", + "mangledName": "$s11VideoSDKRTC14RecordingStateO18RECORDING_STARTINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "RECORDING_STOPPED", + "printedName": "RECORDING_STOPPED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.RecordingState.Type) -> VideoSDKRTC.RecordingState", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.RecordingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14RecordingStateO17RECORDING_STOPPEDyA2CmF", + "mangledName": "$s11VideoSDKRTC14RecordingStateO17RECORDING_STOPPEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "RECORDING_STOPPING", + "printedName": "RECORDING_STOPPING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.RecordingState.Type) -> VideoSDKRTC.RecordingState", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.RecordingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14RecordingStateO18RECORDING_STOPPINGyA2CmF", + "mangledName": "$s11VideoSDKRTC14RecordingStateO18RECORDING_STOPPINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.RecordingState?", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14RecordingStateO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC14RecordingStateO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14RecordingStateO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC14RecordingStateO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14RecordingStateO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC14RecordingStateO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC14RecordingStateO", + "mangledName": "$s11VideoSDKRTC14RecordingStateO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LiveStreamState", + "printedName": "LiveStreamState", + "children": [ + { + "kind": "Var", + "name": "LIVESTREAM_STARTED", + "printedName": "LIVESTREAM_STARTED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.LiveStreamState.Type) -> VideoSDKRTC.LiveStreamState", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.LiveStreamState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15LiveStreamStateO18LIVESTREAM_STARTEDyA2CmF", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO18LIVESTREAM_STARTEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "LIVESTREAM_STARTING", + "printedName": "LIVESTREAM_STARTING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.LiveStreamState.Type) -> VideoSDKRTC.LiveStreamState", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.LiveStreamState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15LiveStreamStateO19LIVESTREAM_STARTINGyA2CmF", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO19LIVESTREAM_STARTINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "LIVESTREAM_STOPPED", + "printedName": "LIVESTREAM_STOPPED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.LiveStreamState.Type) -> VideoSDKRTC.LiveStreamState", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.LiveStreamState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15LiveStreamStateO18LIVESTREAM_STOPPEDyA2CmF", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO18LIVESTREAM_STOPPEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "LIVESTREAM_STOPPING", + "printedName": "LIVESTREAM_STOPPING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.LiveStreamState.Type) -> VideoSDKRTC.LiveStreamState", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.LiveStreamState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15LiveStreamStateO19LIVESTREAM_STOPPINGyA2CmF", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO19LIVESTREAM_STOPPINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.LiveStreamState?", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC15LiveStreamStateO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15LiveStreamStateO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15LiveStreamStateO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC15LiveStreamStateO", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Message", + "printedName": "Message", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePxycfc", + "mangledName": "$s11VideoSDKRTC7MessagePxycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MessageP05protoC4NameSSvpZ", + "mangledName": "$s11VideoSDKRTC7MessageP05protoC4NameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MessageP05protoC4NameSSvgZ", + "mangledName": "$s11VideoSDKRTC7MessageP05protoC4NameSSvgZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MessageP13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC7MessageP13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MessageP13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC7MessageP13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessageP06decodeC07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC7MessageP06decodeC07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessageP8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC7MessageP8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessageP4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC7MessageP4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqualTo", + "printedName": "isEqualTo(message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessageP9isEqualTo7messageSbAaB_p_tF", + "mangledName": "$s11VideoSDKRTC7MessageP9isEqualTo7messageSbAaB_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MessagePAAE13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC7MessagePAAE13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MessagePAAE13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC7MessagePAAE13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(inout τ_0_0) throws -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE4withyxyxzKXEKFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE4withyxyxzKXEKFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "Rethrows", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(unpackingAny:extensions:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE12unpackingAny10extensions7optionsxAA016Google_Protobuf_E0V_AA12ExtensionMap_pSgAA21BinaryDecodingOptionsVtKcfc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE12unpackingAny10extensions7optionsxAA016Google_Protobuf_E0V_AA12ExtensionMap_pSgAA21BinaryDecodingOptionsVtKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "serializedBytes", + "printedName": "serializedBytes(partial:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE15serializedBytes7partialqd__Sb_tKAA023SwiftProtobufContiguousE0Rd__lF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE15serializedBytes7partialqd__Sb_tKAA023SwiftProtobufContiguousE0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serializedBytes:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE15serializedBytes10extensions7partial7optionsxqd___AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKcAA023SwiftProtobufContiguousE0Rd__lufc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE15serializedBytes10extensions7partial7optionsxqd___AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKcAA023SwiftProtobufContiguousE0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "Inlinable", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "merge", + "printedName": "merge(serializedBytes:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5merge15serializedBytes10extensions7partial7optionsyqd___AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKAA023SwiftProtobufContiguousF0Rd__lF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5merge15serializedBytes10extensions7partial7optionsyqd___AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKAA023SwiftProtobufContiguousF0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "Inlinable", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "_merge", + "printedName": "_merge(rawBuffer:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawBufferPointer", + "printedName": "Swift.UnsafeRawBufferPointer", + "usr": "s:SW" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE6_merge9rawBuffer10extensions7partial7optionsySW_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE6_merge9rawBuffer10extensions7partial7optionsySW_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "UsableFromInline", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serializedData:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE14serializedData10extensions7partial7optionsx10Foundation0E0V_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKcfc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE14serializedData10extensions7partial7optionsx10Foundation0E0V_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "Inlinable", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "merge", + "printedName": "merge(serializedData:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5merge14serializedData10extensions7partial7optionsy10Foundation0F0V_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5merge14serializedData10extensions7partial7optionsy10Foundation0F0V_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "Inlinable", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "serializedData", + "printedName": "serializedData(partial:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE14serializedData7partial10Foundation0E0VSb_tKF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE14serializedData7partial10Foundation0E0VSb_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "jsonString", + "printedName": "jsonString(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingOptions", + "printedName": "VideoSDKRTC.JSONEncodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE10jsonString7optionsSSAA19JSONEncodingOptionsV_tKF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE10jsonString7optionsSSAA19JSONEncodingOptionsV_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "jsonUTF8Bytes", + "printedName": "jsonUTF8Bytes(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingOptions", + "printedName": "VideoSDKRTC.JSONEncodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes7optionsqd__AA19JSONEncodingOptionsV_tKAA023SwiftProtobufContiguousF0Rd__lF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes7optionsqd__AA19JSONEncodingOptionsV_tKAA023SwiftProtobufContiguousF0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jsonString:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE10jsonString7optionsxSS_AA19JSONDecodingOptionsVtKcfc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE10jsonString7optionsxSS_AA19JSONDecodingOptionsVtKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jsonString:extensions:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE10jsonString10extensions7optionsxSS_AA12ExtensionMap_pSgAA19JSONDecodingOptionsVtKcfc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE10jsonString10extensions7optionsxSS_AA12ExtensionMap_pSgAA19JSONDecodingOptionsVtKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jsonUTF8Bytes:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes7optionsxqd___AA19JSONDecodingOptionsVtKcAA023SwiftProtobufContiguousF0Rd__lufc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes7optionsxqd___AA19JSONDecodingOptionsVtKcAA023SwiftProtobufContiguousF0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jsonUTF8Bytes:extensions:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes10extensions7optionsxqd___AA12ExtensionMap_pSgAA19JSONDecodingOptionsVtKcAA023SwiftProtobufContiguousF0Rd__lufc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes10extensions7optionsxqd___AA12ExtensionMap_pSgAA19JSONDecodingOptionsVtKcAA023SwiftProtobufContiguousF0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jsonUTF8Data:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE12jsonUTF8Data7optionsx10Foundation0F0V_AA19JSONDecodingOptionsVtKcfc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE12jsonUTF8Data7optionsx10Foundation0F0V_AA19JSONDecodingOptionsVtKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jsonUTF8Data:extensions:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE12jsonUTF8Data10extensions7optionsx10Foundation0F0V_AA12ExtensionMap_pSgAA19JSONDecodingOptionsVtKcfc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE12jsonUTF8Data10extensions7optionsx10Foundation0F0V_AA12ExtensionMap_pSgAA19JSONDecodingOptionsVtKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "jsonUTF8Data", + "printedName": "jsonUTF8Data(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingOptions", + "printedName": "VideoSDKRTC.JSONEncodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE12jsonUTF8Data7options10Foundation0F0VAA19JSONEncodingOptionsV_tKF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE12jsonUTF8Data7options10Foundation0F0VAA19JSONEncodingOptionsV_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "jsonString", + "printedName": "jsonString(from:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingOptions", + "printedName": "VideoSDKRTC.JSONEncodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE10jsonString4from7optionsSSqd___AA19JSONEncodingOptionsVtK7ElementQyd__RszSlRd__lFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE10jsonString4from7optionsSSqd___AA19JSONEncodingOptionsVtK7ElementQyd__RszSlRd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_0_0 == τ_1_0.Element, τ_1_0 : Swift.Collection>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "jsonUTF8Bytes", + "printedName": "jsonUTF8Bytes(from:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingOptions", + "printedName": "VideoSDKRTC.JSONEncodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes4from7optionsqd_0_qd___AA19JSONEncodingOptionsVtK7ElementQyd__RszSlRd__AA023SwiftProtobufContiguousF0Rd_0_r0_lFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes4from7optionsqd_0_qd___AA19JSONEncodingOptionsVtK7ElementQyd__RszSlRd__AA023SwiftProtobufContiguousF0Rd_0_r0_lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0, τ_1_1 where τ_0_0 : VideoSDKRTC.Message, τ_0_0 == τ_1_0.Element, τ_1_0 : Swift.Collection, τ_1_1 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(fromJSONString:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5array14fromJSONString7optionsSayxGSS_AA19JSONDecodingOptionsVtKFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5array14fromJSONString7optionsSayxGSS_AA19JSONDecodingOptionsVtKFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(fromJSONString:extensions:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC12ExtensionMapP" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5array14fromJSONString10extensions7optionsSayxGSS_AA12ExtensionMap_pAA19JSONDecodingOptionsVtKFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5array14fromJSONString10extensions7optionsSayxGSS_AA12ExtensionMap_pAA19JSONDecodingOptionsVtKFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(fromJSONUTF8Bytes:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5array17fromJSONUTF8Bytes7optionsSayxGqd___AA19JSONDecodingOptionsVtKAA023SwiftProtobufContiguousG0Rd__lFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5array17fromJSONUTF8Bytes7optionsSayxGqd___AA19JSONDecodingOptionsVtKAA023SwiftProtobufContiguousG0Rd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(fromJSONUTF8Bytes:extensions:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC12ExtensionMapP" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5array17fromJSONUTF8Bytes10extensions7optionsSayxGqd___AA12ExtensionMap_pAA19JSONDecodingOptionsVtKAA023SwiftProtobufContiguousG0Rd__lFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5array17fromJSONUTF8Bytes10extensions7optionsSayxGqd___AA12ExtensionMap_pAA19JSONDecodingOptionsVtKAA023SwiftProtobufContiguousG0Rd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(fromJSONUTF8Data:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5array16fromJSONUTF8Data7optionsSayxG10Foundation0G0V_AA19JSONDecodingOptionsVtKFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5array16fromJSONUTF8Data7optionsSayxG10Foundation0G0V_AA19JSONDecodingOptionsVtKFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(fromJSONUTF8Data:extensions:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC12ExtensionMapP" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5array16fromJSONUTF8Data10extensions7optionsSayxG10Foundation0G0V_AA12ExtensionMap_pAA19JSONDecodingOptionsVtKFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5array16fromJSONUTF8Data10extensions7optionsSayxG10Foundation0G0V_AA12ExtensionMap_pAA19JSONDecodingOptionsVtKFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "jsonUTF8Data", + "printedName": "jsonUTF8Data(from:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingOptions", + "printedName": "VideoSDKRTC.JSONEncodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE12jsonUTF8Data4from7options10Foundation0F0Vqd___AA19JSONEncodingOptionsVtK7ElementQyd__RszSlRd__lFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE12jsonUTF8Data4from7options10Foundation0F0Vqd___AA19JSONEncodingOptionsVtK7ElementQyd__RszSlRd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_0_0 == τ_1_0.Element, τ_1_0 : Swift.Collection>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "textFormatString", + "printedName": "textFormatString()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE16textFormatStringSSyF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE16textFormatStringSSyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "textFormatString", + "printedName": "textFormatString(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TextFormatEncodingOptions", + "printedName": "VideoSDKRTC.TextFormatEncodingOptions", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE16textFormatString7optionsSSAA04TextE15EncodingOptionsV_tF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE16textFormatString7optionsSSAA04TextE15EncodingOptionsV_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(textFormatString:options:extensions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TextFormatDecodingOptions", + "printedName": "VideoSDKRTC.TextFormatDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE16textFormatString7options10extensionsxSS_AA04TextE15DecodingOptionsVAA12ExtensionMap_pSgtKcfc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE16textFormatString7options10extensionsxSS_AA04TextE15DecodingOptionsVAA12ExtensionMap_pSgtKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC._MessageBase>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "_MessageBase", + "printedName": "_MessageBase", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : Swift.Sendable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "children": [ + { + "kind": "Function", + "name": "_protobuf_generated_isEqualTo", + "printedName": "_protobuf_generated_isEqualTo(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP29_protobuf_generated_isEqualTo5otherSbx_tF", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP29_protobuf_generated_isEqualTo5otherSbx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC._MessageImplementationBase>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqualTo", + "printedName": "isEqualTo(message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26_MessageImplementationBasePAAE9isEqualTo7messageSbAA0C0_p_tF", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBasePAAE9isEqualTo7messageSbAA0C0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC._MessageImplementationBase>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26_MessageImplementationBasePAAE2eeoiySbx_xtFZ", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBasePAAE2eeoiySbx_xtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC._MessageImplementationBase>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "_protobuf_generated_isEqualTo", + "printedName": "_protobuf_generated_isEqualTo(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26_MessageImplementationBasePAAE29_protobuf_generated_isEqualTo5otherSbx_tF", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBasePAAE29_protobuf_generated_isEqualTo5otherSbx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC._MessageImplementationBase>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AnyMessageExtension", + "printedName": "AnyMessageExtension", + "children": [ + { + "kind": "Var", + "name": "fieldNumber", + "printedName": "fieldNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP11fieldNumberSivp", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP11fieldNumberSivp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP11fieldNumberSivg", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP11fieldNumberSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyMessageExtension>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fieldName", + "printedName": "fieldName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP9fieldNameSSvp", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP9fieldNameSSvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP9fieldNameSSvg", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP9fieldNameSSvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyMessageExtension>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messageType", + "printedName": "messageType", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP11messageTypeAA0D0_pXpvp", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP11messageTypeAA0D0_pXpvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP11messageTypeAA0D0_pXpvg", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP11messageTypeAA0D0_pXpvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyMessageExtension>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "_protobuf_newField", + "printedName": "_protobuf_newField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyExtensionField?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP18_protobuf_newField7decoderAA0ceH0_pSgqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP18_protobuf_newField7decoderAA0ceH0_pSgqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.AnyMessageExtension, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : Swift.Sendable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MessageExtension", + "printedName": "MessageExtension", + "children": [ + { + "kind": "Var", + "name": "fieldNumber", + "printedName": "fieldNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MessageExtensionC11fieldNumberSivp", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC11fieldNumberSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MessageExtensionC11fieldNumberSivg", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC11fieldNumberSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.ExtensionField, τ_0_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fieldName", + "printedName": "fieldName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MessageExtensionC9fieldNameSSvp", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC9fieldNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MessageExtensionC9fieldNameSSvg", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC9fieldNameSSvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.ExtensionField, τ_0_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messageType", + "printedName": "messageType", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MessageExtensionC11messageTypeAA0C0_pXpvp", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC11messageTypeAA0C0_pXpvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MessageExtensionC11messageTypeAA0C0_pXpvg", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC11messageTypeAA0C0_pXpvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.ExtensionField, τ_0_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_protobuf_fieldNumber:fieldName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension<τ_0_0, τ_0_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16MessageExtensionC21_protobuf_fieldNumber0F4NameACyxq_GSi_SStcfc", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC21_protobuf_fieldNumber0F4NameACyxq_GSi_SStcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.ExtensionField, τ_0_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "_protobuf_newField", + "printedName": "_protobuf_newField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyExtensionField?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MessageExtensionC18_protobuf_newField7decoderAA03AnydG0_pSgqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC18_protobuf_newField7decoderAA03AnydG0_pSgqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensionField, τ_0_1 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16MessageExtensionC", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.ExtensionField, τ_0_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AnyMessageExtension", + "printedName": "AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Meter", + "printedName": "Meter", + "children": [ + { + "kind": "Function", + "name": "createIntCounter", + "printedName": "createIntCounter(name:monotonic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCounterMetric", + "printedName": "VideoSDKRTC.AnyCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC16AnyCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP16createIntCounter4name9monotonicAA03AnyF6MetricVySiGSS_SbtF", + "mangledName": "$s11VideoSDKRTC5MeterP16createIntCounter4name9monotonicAA03AnyF6MetricVySiGSS_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleCounter", + "printedName": "createDoubleCounter(name:monotonic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCounterMetric", + "printedName": "VideoSDKRTC.AnyCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC16AnyCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP19createDoubleCounter4name9monotonicAA03AnyF6MetricVySdGSS_SbtF", + "mangledName": "$s11VideoSDKRTC5MeterP19createDoubleCounter4name9monotonicAA03AnyF6MetricVySdGSS_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntMeasure", + "printedName": "createIntMeasure(name:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMeasureMetric", + "printedName": "VideoSDKRTC.AnyMeasureMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP16createIntMeasure4name8absoluteAA03AnyF6MetricVySiGSS_SbtF", + "mangledName": "$s11VideoSDKRTC5MeterP16createIntMeasure4name8absoluteAA03AnyF6MetricVySiGSS_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleMeasure", + "printedName": "createDoubleMeasure(name:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMeasureMetric", + "printedName": "VideoSDKRTC.AnyMeasureMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP19createDoubleMeasure4name8absoluteAA03AnyF6MetricVySdGSS_SbtF", + "mangledName": "$s11VideoSDKRTC5MeterP19createDoubleMeasure4name8absoluteAA03AnyF6MetricVySdGSS_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntHistogram", + "printedName": "createIntHistogram(name:explicitBoundaries:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyHistogramMetric", + "printedName": "VideoSDKRTC.AnyHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.Int]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP18createIntHistogram4name18explicitBoundaries8absoluteAA03AnyF6MetricVySiGSS_SaySiGSgSbtF", + "mangledName": "$s11VideoSDKRTC5MeterP18createIntHistogram4name18explicitBoundaries8absoluteAA03AnyF6MetricVySiGSS_SaySiGSgSbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleHistogram", + "printedName": "createDoubleHistogram(name:explicitBoundaries:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyHistogramMetric", + "printedName": "VideoSDKRTC.AnyHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP21createDoubleHistogram4name18explicitBoundaries8absoluteAA03AnyF6MetricVySdGSS_SaySdGSgSbtF", + "mangledName": "$s11VideoSDKRTC5MeterP21createDoubleHistogram4name18explicitBoundaries8absoluteAA03AnyF6MetricVySdGSS_SaySdGSgSbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRawDoubleHistogram", + "printedName": "createRawDoubleHistogram(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawHistogramMetric", + "printedName": "VideoSDKRTC.AnyRawHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP24createRawDoubleHistogram4nameAA03AnyeG6MetricVySdGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterP24createRawDoubleHistogram4nameAA03AnyeG6MetricVySdGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRawIntHistogram", + "printedName": "createRawIntHistogram(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawHistogramMetric", + "printedName": "VideoSDKRTC.AnyRawHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP21createRawIntHistogram4nameAA03AnyeG6MetricVySiGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterP21createRawIntHistogram4nameAA03AnyeG6MetricVySiGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRawDoubleCounter", + "printedName": "createRawDoubleCounter(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawCounterMetric", + "printedName": "VideoSDKRTC.AnyRawCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP22createRawDoubleCounter4nameAA03AnyeG6MetricVySdGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterP22createRawDoubleCounter4nameAA03AnyeG6MetricVySdGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRawIntCounter", + "printedName": "createRawIntCounter(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawCounterMetric", + "printedName": "VideoSDKRTC.AnyRawCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP19createRawIntCounter4nameAA03AnyeG6MetricVySiGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterP19createRawIntCounter4nameAA03AnyeG6MetricVySiGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntObserver", + "printedName": "createIntObserver(name:absolute:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.IntObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP17createIntObserver4name8absolute8callbackAA0eF6Metric_pSS_SbyAaH_pctF", + "mangledName": "$s11VideoSDKRTC5MeterP17createIntObserver4name8absolute8callbackAA0eF6Metric_pSS_SbyAaH_pctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleObserver", + "printedName": "createDoubleObserver(name:absolute:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.DoubleObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP20createDoubleObserver4name8absolute8callbackAA0eF6Metric_pSS_SbyAaH_pctF", + "mangledName": "$s11VideoSDKRTC5MeterP20createDoubleObserver4name8absolute8callbackAA0eF6Metric_pSS_SbyAaH_pctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntObservableGauge", + "printedName": "createIntObservableGauge(name:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.IntObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP24createIntObservableGauge4name8callbackAA0E14ObserverMetric_pSS_yAaG_pctF", + "mangledName": "$s11VideoSDKRTC5MeterP24createIntObservableGauge4name8callbackAA0E14ObserverMetric_pSS_yAaG_pctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleObservableGauge", + "printedName": "createDoubleObservableGauge(name:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.DoubleObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP27createDoubleObservableGauge4name8callbackAA0E14ObserverMetric_pSS_yAaG_pctF", + "mangledName": "$s11VideoSDKRTC5MeterP27createDoubleObservableGauge4name8callbackAA0E14ObserverMetric_pSS_yAaG_pctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getLabelSet", + "printedName": "getLabelSet(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP11getLabelSet6labelsAA0eF0CSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC5MeterP11getLabelSet6labelsAA0eF0CSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntCounter", + "printedName": "createIntCounter(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCounterMetric", + "printedName": "VideoSDKRTC.AnyCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC16AnyCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterPAAE16createIntCounter4nameAA03AnyF6MetricVySiGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterPAAE16createIntCounter4nameAA03AnyF6MetricVySiGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleCounter", + "printedName": "createDoubleCounter(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCounterMetric", + "printedName": "VideoSDKRTC.AnyCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC16AnyCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterPAAE19createDoubleCounter4nameAA03AnyF6MetricVySdGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterPAAE19createDoubleCounter4nameAA03AnyF6MetricVySdGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntMeasure", + "printedName": "createIntMeasure(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMeasureMetric", + "printedName": "VideoSDKRTC.AnyMeasureMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterPAAE16createIntMeasure4nameAA03AnyF6MetricVySiGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterPAAE16createIntMeasure4nameAA03AnyF6MetricVySiGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleMeasure", + "printedName": "createDoubleMeasure(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMeasureMetric", + "printedName": "VideoSDKRTC.AnyMeasureMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterPAAE19createDoubleMeasure4nameAA03AnyF6MetricVySdGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterPAAE19createDoubleMeasure4nameAA03AnyF6MetricVySdGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntObserver", + "printedName": "createIntObserver(name:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.IntObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterPAAE17createIntObserver4name8callbackAA0eF6Metric_pSS_yAaG_pctF", + "mangledName": "$s11VideoSDKRTC5MeterPAAE17createIntObserver4name8callbackAA0eF6Metric_pSS_yAaG_pctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleObserver", + "printedName": "createDoubleObserver(name:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.DoubleObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterPAAE20createDoubleObserver4name8callbackAA0eF6Metric_pSS_yAaG_pctF", + "mangledName": "$s11VideoSDKRTC5MeterPAAE20createDoubleObserver4name8callbackAA0eF6Metric_pSS_yAaG_pctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addMetric", + "printedName": "addMetric(name:type:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.MetricData]", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterPAAE9addMetric4name4type4dataySS_AA15AggregationTypeOSayAA0E4Data_pGtF", + "mangledName": "$s11VideoSDKRTC5MeterPAAE9addMetric4name4type4dataySS_AA15AggregationTypeOSayAA0E4Data_pGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC5MeterP", + "mangledName": "$s11VideoSDKRTC5MeterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeterBuilder", + "printedName": "MeterBuilder", + "children": [ + { + "kind": "Function", + "name": "setSchemaUrl", + "printedName": "setSchemaUrl(schemaUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12MeterBuilderP12setSchemaUrl06schemaG0xSS_tF", + "mangledName": "$s11VideoSDKRTC12MeterBuilderP12setSchemaUrl06schemaG0xSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setInstrumentationVersion", + "printedName": "setInstrumentationVersion(instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12MeterBuilderP25setInstrumentationVersion015instrumentationG0xSS_tF", + "mangledName": "$s11VideoSDKRTC12MeterBuilderP25setInstrumentationVersion015instrumentationG0xSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeter", + "printedName": "VideoSDKRTC.StableMeter", + "usr": "s:11VideoSDKRTC11StableMeterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12MeterBuilderP5buildAA06StableC0_pyF", + "mangledName": "$s11VideoSDKRTC12MeterBuilderP5buildAA06StableC0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC12MeterBuilderP", + "mangledName": "$s11VideoSDKRTC12MeterBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeterBuilderSdk", + "printedName": "MeterBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "setSchemaUrl", + "printedName": "setSchemaUrl(schemaUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15MeterBuilderSdkC12setSchemaUrl06schemaH0ACXDSS_tF", + "mangledName": "$s11VideoSDKRTC15MeterBuilderSdkC12setSchemaUrl06schemaH0ACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setInstrumentationVersion", + "printedName": "setInstrumentationVersion(instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15MeterBuilderSdkC25setInstrumentationVersion015instrumentationH0ACXDSS_tF", + "mangledName": "$s11VideoSDKRTC15MeterBuilderSdkC25setInstrumentationVersion015instrumentationH0ACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeter", + "printedName": "VideoSDKRTC.StableMeter", + "usr": "s:11VideoSDKRTC11StableMeterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15MeterBuilderSdkC5buildAA06StableC0_pyF", + "mangledName": "$s11VideoSDKRTC15MeterBuilderSdkC5buildAA06StableC0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC15MeterBuilderSdkC", + "mangledName": "$s11VideoSDKRTC15MeterBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "MeterBuilder", + "printedName": "MeterBuilder", + "usr": "s:11VideoSDKRTC12MeterBuilderP", + "mangledName": "$s11VideoSDKRTC12MeterBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeterProvider", + "printedName": "MeterProvider", + "children": [ + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationName:instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Meter", + "printedName": "VideoSDKRTC.Meter", + "usr": "s:11VideoSDKRTC5MeterP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13MeterProviderP3get19instrumentationName0F7VersionAA0C0_pSS_SSSgtF", + "mangledName": "$s11VideoSDKRTC13MeterProviderP3get19instrumentationName0F7VersionAA0C0_pSS_SSSgtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeterProvider>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13MeterProviderP", + "mangledName": "$s11VideoSDKRTC13MeterProviderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeterProviderBuilder", + "printedName": "MeterProviderBuilder", + "children": [ + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metricExporter", + "printedName": "metricExporter", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporter", + "printedName": "VideoSDKRTC.MetricExporter", + "usr": "s:11VideoSDKRTC14MetricExporterP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC14metricExporterAA06MetricG0_pvp", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC14metricExporterAA06MetricG0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporter", + "printedName": "VideoSDKRTC.MetricExporter", + "usr": "s:11VideoSDKRTC14MetricExporterP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC14metricExporterAA06MetricG0_pvg", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC14metricExporterAA06MetricG0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metricPushInterval", + "printedName": "metricPushInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC18metricPushIntervalSdvp", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC18metricPushIntervalSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC18metricPushIntervalSdvg", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC18metricPushIntervalSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metricProcessor", + "printedName": "metricProcessor", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricProcessor", + "printedName": "VideoSDKRTC.MetricProcessor", + "usr": "s:11VideoSDKRTC15MetricProcessorP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC15metricProcessorAA06MetricG0_pvp", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC15metricProcessorAA06MetricG0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricProcessor", + "printedName": "VideoSDKRTC.MetricProcessor", + "usr": "s:11VideoSDKRTC15MetricProcessorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC15metricProcessorAA06MetricG0_pvg", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC15metricProcessorAA06MetricG0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProviderBuilder", + "printedName": "VideoSDKRTC.MeterProviderBuilder", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderCACycfc", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(processor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "MetricProcessor", + "printedName": "VideoSDKRTC.MetricProcessor", + "usr": "s:11VideoSDKRTC15MetricProcessorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC4with9processorACXDAA15MetricProcessor_p_tF", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC4with9processorACXDAA15MetricProcessor_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(exporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "MetricExporter", + "printedName": "VideoSDKRTC.MetricExporter", + "usr": "s:11VideoSDKRTC14MetricExporterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC4with8exporterACXDAA14MetricExporter_p_tF", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC4with8exporterACXDAA14MetricExporter_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(pushInterval:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC4with12pushIntervalACXDSd_tF", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC4with12pushIntervalACXDSd_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(resource:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC4with8resourceACXDAA8ResourceV_tF", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC4with8resourceACXDAA8ResourceV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeterProviderSdk", + "printedName": "MeterProviderSdk", + "children": [ + { + "kind": "Var", + "name": "defaultPushInterval", + "printedName": "defaultPushInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC19defaultPushIntervalSdvpZ", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC19defaultPushIntervalSdvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC19defaultPushIntervalSdvgZ", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC19defaultPushIntervalSdvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProviderSdk", + "printedName": "VideoSDKRTC.MeterProviderSdk", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16MeterProviderSdkCACycfc", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(metricProcessor:metricExporter:metricPushInterval:resource:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProviderSdk", + "printedName": "VideoSDKRTC.MeterProviderSdk", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC" + }, + { + "kind": "TypeNominal", + "name": "MetricProcessor", + "printedName": "VideoSDKRTC.MetricProcessor", + "usr": "s:11VideoSDKRTC15MetricProcessorP" + }, + { + "kind": "TypeNominal", + "name": "MetricExporter", + "printedName": "VideoSDKRTC.MetricExporter", + "usr": "s:11VideoSDKRTC14MetricExporterP" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC15metricProcessor0F8Exporter0F12PushInterval8resourceAcA06MetricG0_p_AA0lH0_pSdAA8ResourceVtcfc", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC15metricProcessor0F8Exporter0F12PushInterval8resourceAcA06MetricG0_p_AA0lH0_pSdAA8ResourceVtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationName:instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Meter", + "printedName": "VideoSDKRTC.Meter", + "usr": "s:11VideoSDKRTC5MeterP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC3get19instrumentationName0G7VersionAA0C0_pSS_SSSgtF", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC3get19instrumentationName0G7VersionAA0C0_pSS_SSSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setMetricProcessor", + "printedName": "setMetricProcessor(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MetricProcessor", + "printedName": "VideoSDKRTC.MetricProcessor", + "usr": "s:11VideoSDKRTC15MetricProcessorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC18setMetricProcessoryyAA0gH0_pF", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC18setMetricProcessoryyAA0gH0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addMetricExporter", + "printedName": "addMetricExporter(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MetricExporter", + "printedName": "VideoSDKRTC.MetricExporter", + "usr": "s:11VideoSDKRTC14MetricExporterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC17addMetricExporteryyAA0gH0_pF", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC17addMetricExporteryyAA0gH0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setMetricPushInterval", + "printedName": "setMetricPushInterval(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC21setMetricPushIntervalyySdF", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC21setMetricPushIntervalyySdF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setResource", + "printedName": "setResource(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC11setResourceyyAA0G0VF", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC11setResourceyyAA0G0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MeterProvider", + "printedName": "MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP", + "mangledName": "$s11VideoSDKRTC13MeterProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Metric", + "printedName": "Metric", + "children": [ + { + "kind": "Var", + "name": "namespace", + "printedName": "namespace", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6MetricV9namespaceSSvp", + "mangledName": "$s11VideoSDKRTC6MetricV9namespaceSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6MetricV9namespaceSSvg", + "mangledName": "$s11VideoSDKRTC6MetricV9namespaceSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6MetricV8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC6MetricV8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6MetricV8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC6MetricV8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instrumentationScopeInfo", + "printedName": "instrumentationScopeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6MetricV24instrumentationScopeInfoAA015InstrumentationeF0Vvp", + "mangledName": "$s11VideoSDKRTC6MetricV24instrumentationScopeInfoAA015InstrumentationeF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6MetricV24instrumentationScopeInfoAA015InstrumentationeF0Vvg", + "mangledName": "$s11VideoSDKRTC6MetricV24instrumentationScopeInfoAA015InstrumentationeF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6MetricV4nameSSvp", + "mangledName": "$s11VideoSDKRTC6MetricV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6MetricV4nameSSvg", + "mangledName": "$s11VideoSDKRTC6MetricV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6MetricV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC6MetricV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6MetricV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC6MetricV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aggregationType", + "printedName": "aggregationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6MetricV15aggregationTypeAA011AggregationE0Ovp", + "mangledName": "$s11VideoSDKRTC6MetricV15aggregationTypeAA011AggregationE0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6MetricV15aggregationTypeAA011AggregationE0Ovg", + "mangledName": "$s11VideoSDKRTC6MetricV15aggregationTypeAA011AggregationE0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.MetricData]", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6MetricV4dataSayAA0C4Data_pGvp", + "mangledName": "$s11VideoSDKRTC6MetricV4dataSayAA0C4Data_pGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.MetricData]", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6MetricV4dataSayAA0C4Data_pGvg", + "mangledName": "$s11VideoSDKRTC6MetricV4dataSayAA0C4Data_pGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + }, + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6MetricV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC6MetricV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6MetricV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC6MetricV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6MetricV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC6MetricV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC6MetricV", + "mangledName": "$s11VideoSDKRTC6MetricV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricData", + "printedName": "MetricData", + "children": [ + { + "kind": "Var", + "name": "startTimestamp", + "printedName": "startTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "labels", + "printedName": "labels", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10MetricDataP6labelsSDyS2SGvp", + "mangledName": "$s11VideoSDKRTC10MetricDataP6labelsSDyS2SGvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP6labelsSDyS2SGvg", + "mangledName": "$s11VideoSDKRTC10MetricDataP6labelsSDyS2SGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP6labelsSDyS2SGvs", + "mangledName": "$s11VideoSDKRTC10MetricDataP6labelsSDyS2SGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP6labelsSDyS2SGvM", + "mangledName": "$s11VideoSDKRTC10MetricDataP6labelsSDyS2SGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC10MetricDataP", + "mangledName": "$s11VideoSDKRTC10MetricDataP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "NoopMetricData", + "printedName": "NoopMetricData", + "children": [ + { + "kind": "Var", + "name": "startTimestamp", + "printedName": "startTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "labels", + "printedName": "labels", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvp", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvg", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvs", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvM", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopMetricData", + "printedName": "VideoSDKRTC.NoopMetricData", + "usr": "s:11VideoSDKRTC14NoopMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "NoopMetricData", + "printedName": "VideoSDKRTC.NoopMetricData", + "usr": "s:11VideoSDKRTC14NoopMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "NoopMetricData", + "printedName": "VideoSDKRTC.NoopMetricData", + "usr": "s:11VideoSDKRTC14NoopMetricDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14NoopMetricDataV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14NoopMetricDataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14NoopMetricDataV", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricData", + "printedName": "MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP", + "mangledName": "$s11VideoSDKRTC10MetricDataP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SumData", + "printedName": "SumData", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(startTimestamp:timestamp:labels:sum:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SumData", + "printedName": "VideoSDKRTC.SumData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC7SumDataV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7SumDataV14startTimestamp9timestamp6labels3sumACyxG10Foundation4DateV_AKSDyS2SGxtcfc", + "mangledName": "$s11VideoSDKRTC7SumDataV14startTimestamp9timestamp6labels3sumACyxG10Foundation4DateV_AKSDyS2SGxtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "startTimestamp", + "printedName": "startTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "labels", + "printedName": "labels", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7SumDataV6labelsSDyS2SGvp", + "mangledName": "$s11VideoSDKRTC7SumDataV6labelsSDyS2SGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV6labelsSDyS2SGvg", + "mangledName": "$s11VideoSDKRTC7SumDataV6labelsSDyS2SGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV6labelsSDyS2SGvs", + "mangledName": "$s11VideoSDKRTC7SumDataV6labelsSDyS2SGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV6labelsSDyS2SGvM", + "mangledName": "$s11VideoSDKRTC7SumDataV6labelsSDyS2SGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7SumDataV3sumxvp", + "mangledName": "$s11VideoSDKRTC7SumDataV3sumxvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV3sumxvg", + "mangledName": "$s11VideoSDKRTC7SumDataV3sumxvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV3sumxvs", + "mangledName": "$s11VideoSDKRTC7SumDataV3sumxvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV3sumxvM", + "mangledName": "$s11VideoSDKRTC7SumDataV3sumxvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SumData", + "printedName": "VideoSDKRTC.SumData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC7SumDataV" + }, + { + "kind": "TypeNominal", + "name": "SumData", + "printedName": "VideoSDKRTC.SumData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC7SumDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7SumDataVAASQRzlE2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC7SumDataVAASQRzlE2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable>", + "sugared_genericSig": "", + "static": true, + "implicit": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SumData", + "printedName": "VideoSDKRTC.SumData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC7SumDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7SumDataVAASeRzSERzlE4fromACyxGs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC7SumDataVAASeRzSERzlE4fromACyxGs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7SumDataVAASeRzSERzlE6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC7SumDataVAASeRzSERzlE6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC7SumDataV", + "mangledName": "$s11VideoSDKRTC7SumDataV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricData", + "printedName": "MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP", + "mangledName": "$s11VideoSDKRTC10MetricDataP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SummaryData", + "printedName": "SummaryData", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(startTimestamp:timestamp:labels:count:sum:min:max:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SummaryData", + "printedName": "VideoSDKRTC.SummaryData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC11SummaryDataV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC11SummaryDataV14startTimestamp9timestamp6labels5count3sum3min3maxACyxG10Foundation4DateV_ANSDyS2SGSixxxtcfc", + "mangledName": "$s11VideoSDKRTC11SummaryDataV14startTimestamp9timestamp6labels5count3sum3min3maxACyxG10Foundation4DateV_ANSDyS2SGSixxxtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "startTimestamp", + "printedName": "startTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "labels", + "printedName": "labels", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvp", + "mangledName": "$s11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvg", + "mangledName": "$s11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvs", + "mangledName": "$s11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvM", + "mangledName": "$s11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SummaryDataV5countSivp", + "mangledName": "$s11VideoSDKRTC11SummaryDataV5countSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV5countSivg", + "mangledName": "$s11VideoSDKRTC11SummaryDataV5countSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV5countSivs", + "mangledName": "$s11VideoSDKRTC11SummaryDataV5countSivs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV5countSivM", + "mangledName": "$s11VideoSDKRTC11SummaryDataV5countSivM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SummaryDataV3sumxvp", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3sumxvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3sumxvg", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3sumxvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3sumxvs", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3sumxvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3sumxvM", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3sumxvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "min", + "printedName": "min", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SummaryDataV3minxvp", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3minxvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3minxvg", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3minxvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3minxvs", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3minxvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3minxvM", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3minxvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "max", + "printedName": "max", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SummaryDataV3maxxvp", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3maxxvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3maxxvg", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3maxxvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3maxxvs", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3maxxvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3maxxvM", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3maxxvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SummaryData", + "printedName": "VideoSDKRTC.SummaryData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC11SummaryDataV" + }, + { + "kind": "TypeNominal", + "name": "SummaryData", + "printedName": "VideoSDKRTC.SummaryData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC11SummaryDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SummaryDataVAASQRzlE2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC11SummaryDataVAASQRzlE2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable>", + "sugared_genericSig": "", + "static": true, + "implicit": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SummaryData", + "printedName": "VideoSDKRTC.SummaryData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC11SummaryDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC11SummaryDataVAASeRzSERzlE4fromACyxGs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC11SummaryDataVAASeRzSERzlE4fromACyxGs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SummaryDataVAASeRzSERzlE6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC11SummaryDataVAASeRzSERzlE6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC11SummaryDataV", + "mangledName": "$s11VideoSDKRTC11SummaryDataV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricData", + "printedName": "MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP", + "mangledName": "$s11VideoSDKRTC10MetricDataP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "HistogramData", + "printedName": "HistogramData", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(startTimestamp:timestamp:labels:buckets:count:sum:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HistogramData", + "printedName": "VideoSDKRTC.HistogramData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC13HistogramDataV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(boundaries: [τ_0_0], counts: [Swift.Int])", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC13HistogramDataV14startTimestamp9timestamp6labels7buckets5count3sumACyxG10Foundation4DateV_AMSDyS2SGSayxG10boundaries_SaySiG6countstSixtcfc", + "mangledName": "$s11VideoSDKRTC13HistogramDataV14startTimestamp9timestamp6labels7buckets5count3sumACyxG10Foundation4DateV_AMSDyS2SGSayxG10boundaries_SaySiG6countstSixtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "startTimestamp", + "printedName": "startTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "labels", + "printedName": "labels", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvp", + "mangledName": "$s11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvg", + "mangledName": "$s11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvs", + "mangledName": "$s11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvM", + "mangledName": "$s11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "buckets", + "printedName": "buckets", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(boundaries: [τ_0_0], counts: [Swift.Int])", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvp", + "mangledName": "$s11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(boundaries: [τ_0_0], counts: [Swift.Int])", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvg", + "mangledName": "$s11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(boundaries: [τ_0_0], counts: [Swift.Int])", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvs", + "mangledName": "$s11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvM", + "mangledName": "$s11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13HistogramDataV5countSivp", + "mangledName": "$s11VideoSDKRTC13HistogramDataV5countSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV5countSivg", + "mangledName": "$s11VideoSDKRTC13HistogramDataV5countSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV5countSivs", + "mangledName": "$s11VideoSDKRTC13HistogramDataV5countSivs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV5countSivM", + "mangledName": "$s11VideoSDKRTC13HistogramDataV5countSivM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13HistogramDataV3sumxvp", + "mangledName": "$s11VideoSDKRTC13HistogramDataV3sumxvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV3sumxvg", + "mangledName": "$s11VideoSDKRTC13HistogramDataV3sumxvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV3sumxvs", + "mangledName": "$s11VideoSDKRTC13HistogramDataV3sumxvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV3sumxvM", + "mangledName": "$s11VideoSDKRTC13HistogramDataV3sumxvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "HistogramData", + "printedName": "VideoSDKRTC.HistogramData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC13HistogramDataV" + }, + { + "kind": "TypeNominal", + "name": "HistogramData", + "printedName": "VideoSDKRTC.HistogramData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC13HistogramDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13HistogramDataVAASQRzlE2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC13HistogramDataVAASQRzlE2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HistogramData", + "printedName": "VideoSDKRTC.HistogramData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC13HistogramDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC13HistogramDataVAASeRzSERzlE4fromACyxGs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC13HistogramDataVAASeRzSERzlE4fromACyxGs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13HistogramDataVAASeRzSERzlE6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC13HistogramDataVAASeRzSERzlE6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13HistogramDataV", + "mangledName": "$s11VideoSDKRTC13HistogramDataV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricData", + "printedName": "MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP", + "mangledName": "$s11VideoSDKRTC10MetricDataP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricDescriptor", + "printedName": "MetricDescriptor", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MetricDescriptorV4nameSSvp", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV4nameSSvg", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MetricDescriptorV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "view", + "printedName": "view", + "children": [ + { + "kind": "TypeNominal", + "name": "StableView", + "printedName": "VideoSDKRTC.StableView", + "usr": "s:11VideoSDKRTC10StableViewC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MetricDescriptorV4viewAA10StableViewCvp", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV4viewAA10StableViewCvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableView", + "printedName": "VideoSDKRTC.StableView", + "usr": "s:11VideoSDKRTC10StableViewC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV4viewAA10StableViewCvg", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV4viewAA10StableViewCvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instrument", + "printedName": "instrument", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MetricDescriptorV10instrumentAA010InstrumentD0Vvp", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV10instrumentAA010InstrumentD0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV10instrumentAA010InstrumentD0Vvg", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV10instrumentAA010InstrumentD0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "aggregationName", + "printedName": "aggregationName()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MetricDescriptorV15aggregationNameSSyF", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV15aggregationNameSSyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MetricDescriptorV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MetricDescriptorV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MetricDescriptorV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16MetricDescriptorV", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricExporterResultCode", + "printedName": "MetricExporterResultCode", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricExporterResultCode.Type) -> VideoSDKRTC.MetricExporterResultCode", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricExporterResultCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO7successyA2CmF", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO7successyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "failureNotRetryable", + "printedName": "failureNotRetryable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricExporterResultCode.Type) -> VideoSDKRTC.MetricExporterResultCode", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricExporterResultCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO19failureNotRetryableyA2CmF", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO19failureNotRetryableyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "failureRetryable", + "printedName": "failureRetryable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricExporterResultCode.Type) -> VideoSDKRTC.MetricExporterResultCode", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricExporterResultCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO16failureRetryableyA2CmF", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO16failureRetryableyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MetricExporter", + "printedName": "MetricExporter", + "children": [ + { + "kind": "Function", + "name": "export", + "printedName": "export(metrics:shouldCancel:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> Swift.Bool)?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricExporterP6export7metrics12shouldCancelAA0cD10ResultCodeOSayAA0C0VG_SbycSgtF", + "mangledName": "$s11VideoSDKRTC14MetricExporterP6export7metrics12shouldCancelAA0cD10ResultCodeOSayAA0C0VG_SbycSgtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14MetricExporterP", + "mangledName": "$s11VideoSDKRTC14MetricExporterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricProcessor", + "printedName": "MetricProcessor", + "children": [ + { + "kind": "Function", + "name": "finishCollectionCycle", + "printedName": "finishCollectionCycle()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15MetricProcessorP21finishCollectionCycleSayAA0C0VGyF", + "mangledName": "$s11VideoSDKRTC15MetricProcessorP21finishCollectionCycleSayAA0C0VGyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "process", + "printedName": "process(metric:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15MetricProcessorP7process6metricyAA0C0V_tF", + "mangledName": "$s11VideoSDKRTC15MetricProcessorP7process6metricyAA0C0V_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC15MetricProcessorP", + "mangledName": "$s11VideoSDKRTC15MetricProcessorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricProcessorSdk", + "printedName": "MetricProcessorSdk", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricProcessorSdk", + "printedName": "VideoSDKRTC.MetricProcessorSdk", + "usr": "s:11VideoSDKRTC18MetricProcessorSdkC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18MetricProcessorSdkCACycfc", + "mangledName": "$s11VideoSDKRTC18MetricProcessorSdkCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "finishCollectionCycle", + "printedName": "finishCollectionCycle()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MetricProcessorSdkC21finishCollectionCycleSayAA0C0VGyF", + "mangledName": "$s11VideoSDKRTC18MetricProcessorSdkC21finishCollectionCycleSayAA0C0VGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "process", + "printedName": "process(metric:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MetricProcessorSdkC7process6metricyAA0C0V_tF", + "mangledName": "$s11VideoSDKRTC18MetricProcessorSdkC7process6metricyAA0C0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18MetricProcessorSdkC", + "mangledName": "$s11VideoSDKRTC18MetricProcessorSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricProcessor", + "printedName": "MetricProcessor", + "usr": "s:11VideoSDKRTC15MetricProcessorP", + "mangledName": "$s11VideoSDKRTC15MetricProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricProducer", + "printedName": "MetricProducer", + "children": [ + { + "kind": "Function", + "name": "collectAllMetrics", + "printedName": "collectAllMetrics()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.StableMetricData]", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricProducerP17collectAllMetricsSayAA06StableC4DataVGyF", + "mangledName": "$s11VideoSDKRTC14MetricProducerP17collectAllMetricsSayAA06StableC4DataVGyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricProducer>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14MetricProducerP", + "mangledName": "$s11VideoSDKRTC14MetricProducerP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.CollectionRegistration>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CollectionRegistration", + "printedName": "CollectionRegistration", + "usr": "s:11VideoSDKRTC22CollectionRegistrationP", + "mangledName": "$s11VideoSDKRTC22CollectionRegistrationP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoopMetricProducer", + "printedName": "NoopMetricProducer", + "children": [ + { + "kind": "Function", + "name": "collectAllMetrics", + "printedName": "collectAllMetrics()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.StableMetricData]", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18NoopMetricProducerV17collectAllMetricsSayAA06StableD4DataVGyF", + "mangledName": "$s11VideoSDKRTC18NoopMetricProducerV17collectAllMetricsSayAA06StableD4DataVGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18NoopMetricProducerV", + "mangledName": "$s11VideoSDKRTC18NoopMetricProducerV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricProducer", + "printedName": "MetricProducer", + "usr": "s:11VideoSDKRTC14MetricProducerP", + "mangledName": "$s11VideoSDKRTC14MetricProducerP" + }, + { + "kind": "Conformance", + "name": "CollectionRegistration", + "printedName": "CollectionRegistration", + "usr": "s:11VideoSDKRTC22CollectionRegistrationP", + "mangledName": "$s11VideoSDKRTC22CollectionRegistrationP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "children": [ + { + "kind": "Var", + "name": "unspecified", + "printedName": "unspecified", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO11unspecifiedyA2CmF", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO11unspecifiedyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "delta", + "printedName": "delta", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO5deltayA2CmF", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO5deltayA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cumulative", + "printedName": "cumulative", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO10cumulativeyA2CmF", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO10cumulativeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type) -> (Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO12UNRECOGNIZEDyACSicACmF", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO12UNRECOGNIZEDyACSicACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityOACycfc", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityOACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality?", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvsZ", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvMZ", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "children": [ + { + "kind": "Var", + "name": "doNotUse", + "printedName": "doNotUse", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags.Type) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8doNotUseyA2CmF", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8doNotUseyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "noRecordedValueMask", + "printedName": "noRecordedValueMask", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags.Type) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO19noRecordedValueMaskyA2CmF", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO19noRecordedValueMaskyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags.Type) -> (Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO12UNRECOGNIZEDyACSicACmF", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO12UNRECOGNIZEDyACSicACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsOACycfc", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsOACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags?", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvsZ", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvMZ", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_MetricsData", + "printedName": "Opentelemetry_Proto_Metrics_V1_MetricsData", + "children": [ + { + "kind": "Var", + "name": "resourceMetrics", + "printedName": "resourceMetrics", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvp", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvg", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvs", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvM", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_MetricsData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataVACycfc", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_MetricsData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_MetricsData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "children": [ + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvp", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvg", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvs", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0VvM", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasResource", + "printedName": "hasResource", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V03hasG0Sbvp", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V03hasG0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V03hasG0Sbvg", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V03hasG0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearResource", + "printedName": "clearResource()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05clearG0yyF", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05clearG0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "scopeMetrics", + "printedName": "scopeMetrics", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvp", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvg", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvs", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvM", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "schemaURL", + "printedName": "schemaURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvp", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvg", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvs", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvM", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0VACycfc", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0VACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9hashValueSivp", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9hashValueSivg", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "printedName": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "children": [ + { + "kind": "Var", + "name": "scope", + "printedName": "scope", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0VvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasScope", + "printedName": "hasScope", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V03hasG0Sbvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V03hasG0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V03hasG0Sbvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V03hasG0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearScope", + "printedName": "clearScope()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V05clearG0yyF", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V05clearG0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "metrics", + "printedName": "metrics", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "schemaURL", + "printedName": "schemaURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0VACycfc", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0VACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9hashValueSivp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9hashValueSivg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "Opentelemetry_Proto_Metrics_V1_Metric", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "description_p", + "printedName": "description_p", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unit", + "printedName": "unit", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "gauge", + "printedName": "gauge", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "histogram", + "printedName": "histogram", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "exponentialHistogram", + "printedName": "exponentialHistogram", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0Vvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0Vvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0Vvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0VvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "summary", + "printedName": "summary", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_Data", + "printedName": "OneOf_Data", + "children": [ + { + "kind": "Var", + "name": "gauge", + "printedName": "gauge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type) -> (VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO5gaugeyAeA0c1_d1_e1_F6_GaugeVcAEmF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO5gaugeyAeA0c1_d1_e1_F6_GaugeVcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type) -> (VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO3sumyAeA0c1_d1_e1_F4_SumVcAEmF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO3sumyAeA0c1_d1_e1_F4_SumVcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "histogram", + "printedName": "histogram", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type) -> (VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO9histogramyAeA0c1_d1_e1_F10_HistogramVcAEmF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO9histogramyAeA0c1_d1_e1_F10_HistogramVcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "exponentialHistogram", + "printedName": "exponentialHistogram", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type) -> (VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO20exponentialHistogramyAeA0c1_d1_e1_f12_ExponentialL0VcAEmF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO20exponentialHistogramyAeA0c1_d1_e1_f12_ExponentialL0VcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "summary", + "printedName": "summary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type) -> (VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO7summaryyAeA0c1_d1_e1_F8_SummaryVcAEmF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO7summaryyAeA0c1_d1_e1_F8_SummaryVcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricVACycfc", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "Opentelemetry_Proto_Metrics_V1_Gauge", + "children": [ + { + "kind": "Var", + "name": "dataPoints", + "printedName": "dataPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvp", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvg", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvs", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvM", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeVACycfc", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "Opentelemetry_Proto_Metrics_V1_Sum", + "children": [ + { + "kind": "Var", + "name": "dataPoints", + "printedName": "dataPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvp", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvg", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvs", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvM", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovp", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovg", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovs", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0OvM", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isMonotonic", + "printedName": "isMonotonic", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvp", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvg", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvs", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvM", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumVACycfc", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "Opentelemetry_Proto_Metrics_V1_Histogram", + "children": [ + { + "kind": "Var", + "name": "dataPoints", + "printedName": "dataPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvp", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvg", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvs", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvM", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovp", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovg", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovs", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0OvM", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramVACycfc", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "children": [ + { + "kind": "Var", + "name": "dataPoints", + "printedName": "dataPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvp", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvg", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvs", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvM", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0Ovp", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0Ovg", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0Ovs", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0Ovs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0OvM", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramVACycfc", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "Opentelemetry_Proto_Metrics_V1_Summary", + "children": [ + { + "kind": "Var", + "name": "dataPoints", + "printedName": "dataPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryVACycfc", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "startTimeUnixNano", + "printedName": "startTimeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timeUnixNano", + "printedName": "timeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "asDouble", + "printedName": "asDouble", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "asInt", + "printedName": "asInt", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64Vvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64Vvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64Vvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64VvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "exemplars", + "printedName": "exemplars", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "flags", + "printedName": "flags", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32VvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_Value", + "printedName": "OneOf_Value", + "children": [ + { + "kind": "Var", + "name": "asDouble", + "printedName": "asDouble", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value.Type) -> (Swift.Double) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO8asDoubleyAESdcAEmF", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO8asDoubleyAESdcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "asInt", + "printedName": "asInt", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value.Type) -> (Swift.Int64) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int64) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO5asIntyAEs5Int64VcAEmF", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO5asIntyAEs5Int64VcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointVACycfc", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "printedName": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "startTimeUnixNano", + "printedName": "startTimeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timeUnixNano", + "printedName": "timeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64VvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSum", + "printedName": "hasSum", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasSumSbvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasSumSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasSumSbvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasSumSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSum", + "printedName": "clearSum()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8clearSumyyF", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8clearSumyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "bucketCounts", + "printedName": "bucketCounts", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "explicitBounds", + "printedName": "explicitBounds", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "exemplars", + "printedName": "exemplars", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "flags", + "printedName": "flags", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32VvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "min", + "printedName": "min", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMin", + "printedName": "hasMin", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMinSbvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMinSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMinSbvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMinSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearMin", + "printedName": "clearMin()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8clearMinyyF", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8clearMinyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "max", + "printedName": "max", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMax", + "printedName": "hasMax", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMaxSbvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMaxSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMaxSbvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMaxSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearMax", + "printedName": "clearMax()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8clearMaxyyF", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8clearMaxyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointVACycfc", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "printedName": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "startTimeUnixNano", + "printedName": "startTimeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timeUnixNano", + "printedName": "timeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64VvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSum", + "printedName": "hasSum", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasSumSbvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasSumSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasSumSbvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasSumSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSum", + "printedName": "clearSum()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8clearSumyyF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8clearSumyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "scale", + "printedName": "scale", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32Vvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32Vvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32Vvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32VvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "zeroCount", + "printedName": "zeroCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64VvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "positive", + "printedName": "positive", + "children": [ + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPositive", + "printedName": "hasPositive", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasPositiveSbvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasPositiveSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasPositiveSbvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasPositiveSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPositive", + "printedName": "clearPositive()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13clearPositiveyyF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13clearPositiveyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "negative", + "printedName": "negative", + "children": [ + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasNegative", + "printedName": "hasNegative", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasNegativeSbvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasNegativeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasNegativeSbvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasNegativeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearNegative", + "printedName": "clearNegative()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13clearNegativeyyF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13clearNegativeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "flags", + "printedName": "flags", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32VvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "exemplars", + "printedName": "exemplars", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "min", + "printedName": "min", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMin", + "printedName": "hasMin", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMinSbvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMinSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMinSbvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMinSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearMin", + "printedName": "clearMin()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8clearMinyyF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8clearMinyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "max", + "printedName": "max", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMax", + "printedName": "hasMax", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMaxSbvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMaxSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMaxSbvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMaxSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearMax", + "printedName": "clearMax()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8clearMaxyyF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8clearMaxyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "zeroThreshold", + "printedName": "zeroThreshold", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Buckets", + "printedName": "Buckets", + "children": [ + { + "kind": "Var", + "name": "offset", + "printedName": "offset", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32Vvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32Vvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32Vvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32VvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bucketCounts", + "printedName": "bucketCounts", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsVAEycfc", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV17_protobuf_nameMapAA05_NameN0VvpZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV17_protobuf_nameMapAA05_NameN0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV17_protobuf_nameMapAA05_NameN0VvgZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV17_protobuf_nameMapAA05_NameN0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + }, + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointVACycfc", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "printedName": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "startTimeUnixNano", + "printedName": "startTimeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timeUnixNano", + "printedName": "timeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64VvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "quantileValues", + "printedName": "quantileValues", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "flags", + "printedName": "flags", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32VvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ValueAtQuantile", + "printedName": "ValueAtQuantile", + "children": [ + { + "kind": "Var", + "name": "quantile", + "printedName": "quantile", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileVAEycfc", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV17_protobuf_nameMapAA05_NameO0VvpZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV17_protobuf_nameMapAA05_NameO0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV17_protobuf_nameMapAA05_NameO0VvgZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV17_protobuf_nameMapAA05_NameO0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV" + }, + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV04hashJ0Sivp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV04hashJ0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV04hashJ0Sivg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV04hashJ0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointVACycfc", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "children": [ + { + "kind": "Var", + "name": "filteredAttributes", + "printedName": "filteredAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timeUnixNano", + "printedName": "timeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "asDouble", + "printedName": "asDouble", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "asInt", + "printedName": "asInt", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64Vvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64Vvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64Vvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64VvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "spanID", + "printedName": "spanID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "traceID", + "printedName": "traceID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_Value", + "printedName": "OneOf_Value", + "children": [ + { + "kind": "Var", + "name": "asDouble", + "printedName": "asDouble", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value.Type) -> (Swift.Double) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO8asDoubleyAESdcAEmF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO8asDoubleyAESdcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "asInt", + "printedName": "asInt", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value.Type) -> (Swift.Int64) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int64) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO5asIntyAEs5Int64VcAEmF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO5asIntyAEs5Int64VcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarVACycfc", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "printedName": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "children": [ + { + "kind": "Var", + "name": "resourceMetrics", + "printedName": "resourceMetrics", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvs", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvM", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestVACycfc", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "printedName": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "children": [ + { + "kind": "Var", + "name": "partialSuccess", + "printedName": "partialSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvs", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0VvM", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPartialSuccess", + "printedName": "hasPartialSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPartialSuccess", + "printedName": "clearPartialSuccess()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV19clearPartialSuccessyyF", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV19clearPartialSuccessyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseVACycfc", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "printedName": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "children": [ + { + "kind": "Var", + "name": "rejectedDataPoints", + "printedName": "rejectedDataPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64Vvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64Vvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64Vvs", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64VvM", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorMessage", + "printedName": "errorMessage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvs", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvM", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessVACycfc", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricsAdapter", + "printedName": "MetricsAdapter", + "children": [ + { + "kind": "Function", + "name": "toProtoResourceMetrics", + "printedName": "toProtoResourceMetrics(stableMetricData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.StableMetricData]", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricsAdapterO015toProtoResourceC016stableMetricDataSayAA014Opentelemetry_f1_c4_V1_gC0VGSayAA06StableiJ0VG_tFZ", + "mangledName": "$s11VideoSDKRTC14MetricsAdapterO015toProtoResourceC016stableMetricDataSayAA014Opentelemetry_f1_c4_V1_gC0VGSayAA06StableiJ0VG_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toProtoResourceMetrics", + "printedName": "toProtoResourceMetrics(metricDataList:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricsAdapterO015toProtoResourceC014metricDataListSayAA014Opentelemetry_f1_c4_V1_gC0VGSayAA6MetricVG_tFZ", + "mangledName": "$s11VideoSDKRTC14MetricsAdapterO015toProtoResourceC014metricDataListSayAA014Opentelemetry_f1_c4_V1_gC0VGSayAA6MetricVG_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toProtoMetric", + "printedName": "toProtoMetric(stableMetric:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric?", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricsAdapterO13toProtoMetric06stableG0AA014Opentelemetry_f1_c4_V1_G0VSgAA06StableG4DataV_tFZ", + "mangledName": "$s11VideoSDKRTC14MetricsAdapterO13toProtoMetric06stableG0AA014Opentelemetry_f1_c4_V1_G0VSgAA06StableG4DataV_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toProtoMetric", + "printedName": "toProtoMetric(metric:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric?", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricsAdapterO13toProtoMetric6metricAA014Opentelemetry_f1_c4_V1_G0VSgAA0G0V_tFZ", + "mangledName": "$s11VideoSDKRTC14MetricsAdapterO13toProtoMetric6metricAA014Opentelemetry_f1_c4_V1_G0VSgAA0G0V_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC14MetricsAdapterO", + "mangledName": "$s11VideoSDKRTC14MetricsAdapterO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricStorageConstants", + "printedName": "MetricStorageConstants", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22MetricStorageConstantsV", + "mangledName": "$s11VideoSDKRTC22MetricStorageConstantsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricStorage", + "printedName": "MetricStorage", + "children": [ + { + "kind": "Var", + "name": "metricDescriptor", + "printedName": "metricDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13MetricStorageP16metricDescriptorAA0cF0Vvp", + "mangledName": "$s11VideoSDKRTC13MetricStorageP16metricDescriptorAA0cF0Vvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13MetricStorageP16metricDescriptorAA0cF0Vvg", + "mangledName": "$s11VideoSDKRTC13MetricStorageP16metricDescriptorAA0cF0Vvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricStorage>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "collect", + "printedName": "collect(resource:scope:startEpochNanos:epochNanos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13MetricStorageP7collect8resource5scope15startEpochNanos05epochJ0AA06StableC4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", + "mangledName": "$s11VideoSDKRTC13MetricStorageP7collect8resource5scope15startEpochNanos05epochJ0AA06StableC4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricStorage>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "isEmpty", + "printedName": "isEmpty()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13MetricStorageP7isEmptySbyF", + "mangledName": "$s11VideoSDKRTC13MetricStorageP7isEmptySbyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricStorage>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13MetricStorageP", + "mangledName": "$s11VideoSDKRTC13MetricStorageP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "WritableMetricStorage", + "printedName": "WritableMetricStorage", + "children": [ + { + "kind": "Function", + "name": "recordLong", + "printedName": "recordLong(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC21WritableMetricStorageP10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.WritableMetricStorage>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "recordDouble", + "printedName": "recordDouble(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC21WritableMetricStorageP12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.WritableMetricStorage>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP", + "mangledName": "$s11VideoSDKRTC21WritableMetricStorageP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricStorageRegistry", + "printedName": "MetricStorageRegistry", + "declKind": "Class", + "usr": "s:11VideoSDKRTC21MetricStorageRegistryC", + "mangledName": "$s11VideoSDKRTC21MetricStorageRegistryC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MillisClock", + "printedName": "MillisClock", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MillisClock", + "printedName": "VideoSDKRTC.MillisClock", + "usr": "s:11VideoSDKRTC11MillisClockC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC11MillisClockCACycfc", + "mangledName": "$s11VideoSDKRTC11MillisClockCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "now", + "printedName": "now", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MillisClockC3now10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC11MillisClockC3now10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MillisClockC3now10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC11MillisClockC3now10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC11MillisClockC", + "mangledName": "$s11VideoSDKRTC11MillisClockC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Clock", + "printedName": "Clock", + "usr": "s:11VideoSDKRTC5ClockP", + "mangledName": "$s11VideoSDKRTC5ClockP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Mediasoup", + "printedName": "Mediasoup", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MonotonicClock", + "printedName": "MonotonicClock", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(clock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MonotonicClock", + "printedName": "VideoSDKRTC.MonotonicClock", + "usr": "s:11VideoSDKRTC14MonotonicClockC" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14MonotonicClockC5clockAcA0D0_p_tcfc", + "mangledName": "$s11VideoSDKRTC14MonotonicClockC5clockAcA0D0_p_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "now", + "printedName": "now", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14MonotonicClockC3now10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC14MonotonicClockC3now10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14MonotonicClockC3now10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC14MonotonicClockC3now10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC14MonotonicClockC", + "mangledName": "$s11VideoSDKRTC14MonotonicClockC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Clock", + "printedName": "Clock", + "usr": "s:11VideoSDKRTC5ClockP", + "mangledName": "$s11VideoSDKRTC5ClockP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MultiLogRecordExporter", + "printedName": "MultiLogRecordExporter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(logRecordExporters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MultiLogRecordExporter", + "printedName": "VideoSDKRTC.MultiLogRecordExporter", + "usr": "s:11VideoSDKRTC22MultiLogRecordExporterC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.LogRecordExporter]", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordExporter", + "printedName": "VideoSDKRTC.LogRecordExporter", + "usr": "s:11VideoSDKRTC17LogRecordExporterP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22MultiLogRecordExporterC03logE9ExportersACSayAA0deF0_pG_tcfc", + "mangledName": "$s11VideoSDKRTC22MultiLogRecordExporterC03logE9ExportersACSayAA0deF0_pG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "export", + "printedName": "export(logRecords:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22MultiLogRecordExporterC6export10logRecordsAA12ExportResultOSayAA08ReadabledE0VG_tF", + "mangledName": "$s11VideoSDKRTC22MultiLogRecordExporterC6export10logRecordsAA12ExportResultOSayAA08ReadabledE0VG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22MultiLogRecordExporterC8shutdownyyF", + "mangledName": "$s11VideoSDKRTC22MultiLogRecordExporterC8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22MultiLogRecordExporterC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC22MultiLogRecordExporterC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC22MultiLogRecordExporterC", + "mangledName": "$s11VideoSDKRTC22MultiLogRecordExporterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordExporter", + "printedName": "LogRecordExporter", + "usr": "s:11VideoSDKRTC17LogRecordExporterP", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MultiLogRecordProcessor", + "printedName": "MultiLogRecordProcessor", + "children": [ + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23MultiLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC23MultiLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23MultiLogRecordProcessorC8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC23MultiLogRecordProcessorC8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(logRecordProcessors:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MultiLogRecordProcessor", + "printedName": "VideoSDKRTC.MultiLogRecordProcessor", + "usr": "s:11VideoSDKRTC23MultiLogRecordProcessorC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.LogRecordProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordProcessor", + "printedName": "VideoSDKRTC.LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC23MultiLogRecordProcessorC03logE10ProcessorsACSayAA0deF0_pG_tcfc", + "mangledName": "$s11VideoSDKRTC23MultiLogRecordProcessorC03logE10ProcessorsACSayAA0deF0_pG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "onEmit", + "printedName": "onEmit(logRecord:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23MultiLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", + "mangledName": "$s11VideoSDKRTC23MultiLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC23MultiLogRecordProcessorC", + "mangledName": "$s11VideoSDKRTC23MultiLogRecordProcessorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordProcessor", + "printedName": "LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MultiSpanExporter", + "printedName": "MultiSpanExporter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(spanExporters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MultiSpanExporter", + "printedName": "VideoSDKRTC.MultiSpanExporter", + "usr": "s:11VideoSDKRTC17MultiSpanExporterC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanExporter]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporter", + "printedName": "VideoSDKRTC.SpanExporter", + "usr": "s:11VideoSDKRTC12SpanExporterP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17MultiSpanExporterC13spanExportersACSayAA0dE0_pG_tcfc", + "mangledName": "$s11VideoSDKRTC17MultiSpanExporterC13spanExportersACSayAA0dE0_pG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "export", + "printedName": "export(spans:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17MultiSpanExporterC6export5spansAA0dE10ResultCodeOSayAA0D4DataVG_tF", + "mangledName": "$s11VideoSDKRTC17MultiSpanExporterC6export5spansAA0dE10ResultCodeOSayAA0D4DataVG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17MultiSpanExporterC5flushAA0dE10ResultCodeOyF", + "mangledName": "$s11VideoSDKRTC17MultiSpanExporterC5flushAA0dE10ResultCodeOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17MultiSpanExporterC8shutdownyyF", + "mangledName": "$s11VideoSDKRTC17MultiSpanExporterC8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC17MultiSpanExporterC", + "mangledName": "$s11VideoSDKRTC17MultiSpanExporterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SpanExporter", + "printedName": "SpanExporter", + "usr": "s:11VideoSDKRTC12SpanExporterP", + "mangledName": "$s11VideoSDKRTC12SpanExporterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MultiSpanProcessor", + "printedName": "MultiSpanProcessor", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(spanProcessors:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MultiSpanProcessor", + "printedName": "VideoSDKRTC.MultiSpanProcessor", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV14spanProcessorsACSayAA0dE0_pG_tcfc", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV14spanProcessorsACSayAA0dE0_pG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "isStartRequired", + "printedName": "isStartRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV15isStartRequiredSbvp", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV15isStartRequiredSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV15isStartRequiredSbvg", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV15isStartRequiredSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isEndRequired", + "printedName": "isEndRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV13isEndRequiredSbvp", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV13isEndRequiredSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV13isEndRequiredSbvg", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV13isEndRequiredSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "onStart", + "printedName": "onStart(parentContext:span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV7onStart13parentContext4spanyAA0dI0VSg_AA08ReadableD0_ptF", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV7onStart13parentContext4spanyAA0dI0VSg_AA08ReadableD0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onEnd", + "printedName": "onEnd(span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV5onEnd4spanyAA08ReadableD0_p_tF", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV5onEnd4spanyAA08ReadableD0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV8shutdownyyF", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush(timeout:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV10forceFlush7timeoutySdSg_tF", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV10forceFlush7timeoutySdSg_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SpanProcessor", + "printedName": "SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_NameMap", + "printedName": "_NameMap", + "children": [ + { + "kind": "TypeDecl", + "name": "NameDescription", + "printedName": "NameDescription", + "children": [ + { + "kind": "Var", + "name": "same", + "printedName": "same", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC._NameMap.NameDescription.Type) -> (Swift.StaticString) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.StaticString) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(proto: Swift.StaticString)", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._NameMap.NameDescription.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO4sameyAEs12StaticStringV_tcAEmF", + "mangledName": "$s11VideoSDKRTC8_NameMapV0C11DescriptionO4sameyAEs12StaticStringV_tcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "standard", + "printedName": "standard", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC._NameMap.NameDescription.Type) -> (Swift.StaticString) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.StaticString) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(proto: Swift.StaticString)", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._NameMap.NameDescription.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO8standardyAEs12StaticStringV_tcAEmF", + "mangledName": "$s11VideoSDKRTC8_NameMapV0C11DescriptionO8standardyAEs12StaticStringV_tcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unique", + "printedName": "unique", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC._NameMap.NameDescription.Type) -> (Swift.StaticString, Swift.StaticString) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.StaticString, Swift.StaticString) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(proto: Swift.StaticString, json: Swift.StaticString)", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._NameMap.NameDescription.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO6uniqueyAEs12StaticStringV_AHtcAEmF", + "mangledName": "$s11VideoSDKRTC8_NameMapV0C11DescriptionO6uniqueyAEs12StaticStringV_AHtcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "aliased", + "printedName": "aliased", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC._NameMap.NameDescription.Type) -> (Swift.StaticString, [Swift.StaticString]) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.StaticString, [Swift.StaticString]) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(proto: Swift.StaticString, aliases: [Swift.StaticString])", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.StaticString]", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ], + "usr": "s:Sa" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._NameMap.NameDescription.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO7aliasedyAEs12StaticStringV_SayAHGtcAEmF", + "mangledName": "$s11VideoSDKRTC8_NameMapV0C11DescriptionO7aliasedyAEs12StaticStringV_SayAHGtcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO", + "mangledName": "$s11VideoSDKRTC8_NameMapV0C11DescriptionO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8_NameMapVACycfc", + "mangledName": "$s11VideoSDKRTC8_NameMapVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(dictionaryLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.Int, VideoSDKRTC._NameMap.NameDescription)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Int, VideoSDKRTC._NameMap.NameDescription)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8_NameMapV17dictionaryLiteralACSi_AC0C11DescriptionOtd_tcfc", + "mangledName": "$s11VideoSDKRTC8_NameMapV17dictionaryLiteralACSi_AC0C11DescriptionOtd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC8_NameMapV", + "mangledName": "$s11VideoSDKRTC8_NameMapV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByDictionaryLiteral", + "printedName": "ExpressibleByDictionaryLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "Key", + "printedName": "Key", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Value", + "printedName": "Value", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + } + ] + } + ], + "usr": "s:s30ExpressibleByDictionaryLiteralP", + "mangledName": "$ss30ExpressibleByDictionaryLiteralP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "NoopLogRecordExporter", + "printedName": "NoopLogRecordExporter", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopLogRecordExporter", + "printedName": "VideoSDKRTC.NoopLogRecordExporter", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC21NoopLogRecordExporterC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopLogRecordExporter", + "printedName": "VideoSDKRTC.NoopLogRecordExporter", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC21NoopLogRecordExporterC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "export", + "printedName": "export(logRecords:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC6export10logRecordsAA12ExportResultOSayAA08ReadabledE0VG_tF", + "mangledName": "$s11VideoSDKRTC21NoopLogRecordExporterC6export10logRecordsAA12ExportResultOSayAA08ReadabledE0VG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC8shutdownyyF", + "mangledName": "$s11VideoSDKRTC21NoopLogRecordExporterC8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC21NoopLogRecordExporterC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC", + "mangledName": "$s11VideoSDKRTC21NoopLogRecordExporterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordExporter", + "printedName": "LogRecordExporter", + "usr": "s:11VideoSDKRTC17LogRecordExporterP", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "NoopLogRecordProcessor", + "printedName": "NoopLogRecordProcessor", + "children": [ + { + "kind": "Var", + "name": "noopLogRecordProcessor", + "printedName": "noopLogRecordProcessor", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopLogRecordProcessor", + "printedName": "VideoSDKRTC.NoopLogRecordProcessor", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC04noopdeF0ACvpZ", + "mangledName": "$s11VideoSDKRTC22NoopLogRecordProcessorC04noopdeF0ACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopLogRecordProcessor", + "printedName": "VideoSDKRTC.NoopLogRecordProcessor", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC04noopdeF0ACvgZ", + "mangledName": "$s11VideoSDKRTC22NoopLogRecordProcessorC04noopdeF0ACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "onEmit", + "printedName": "onEmit(logRecord:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", + "mangledName": "$s11VideoSDKRTC22NoopLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC22NoopLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC22NoopLogRecordProcessorC8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC", + "mangledName": "$s11VideoSDKRTC22NoopLogRecordProcessorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordProcessor", + "printedName": "LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableDoubleCounter", + "printedName": "ObservableDoubleCounter", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC23ObservableDoubleCounterP", + "mangledName": "$s11VideoSDKRTC23ObservableDoubleCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableDoubleGauge", + "printedName": "ObservableDoubleGauge", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC21ObservableDoubleGaugeP", + "mangledName": "$s11VideoSDKRTC21ObservableDoubleGaugeP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableDoubleMeasurement", + "printedName": "ObservableDoubleMeasurement", + "children": [ + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP6record5valueySd_tF", + "mangledName": "$s11VideoSDKRTC27ObservableDoubleMeasurementP6record5valueySd_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ObservableDoubleMeasurement>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC27ObservableDoubleMeasurementP6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ObservableDoubleMeasurement>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP", + "mangledName": "$s11VideoSDKRTC27ObservableDoubleMeasurementP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableDoubleUpDownCounter", + "printedName": "ObservableDoubleUpDownCounter", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC29ObservableDoubleUpDownCounterP", + "mangledName": "$s11VideoSDKRTC29ObservableDoubleUpDownCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableInstrumentSdk", + "printedName": "ObservableInstrumentSdk", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC23ObservableInstrumentSdkV", + "mangledName": "$s11VideoSDKRTC23ObservableInstrumentSdkV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ObservableDoubleCounter", + "printedName": "ObservableDoubleCounter", + "usr": "s:11VideoSDKRTC23ObservableDoubleCounterP", + "mangledName": "$s11VideoSDKRTC23ObservableDoubleCounterP" + }, + { + "kind": "Conformance", + "name": "ObservableLongCounter", + "printedName": "ObservableLongCounter", + "usr": "s:11VideoSDKRTC21ObservableLongCounterP", + "mangledName": "$s11VideoSDKRTC21ObservableLongCounterP" + }, + { + "kind": "Conformance", + "name": "ObservableLongGauge", + "printedName": "ObservableLongGauge", + "usr": "s:11VideoSDKRTC19ObservableLongGaugeP", + "mangledName": "$s11VideoSDKRTC19ObservableLongGaugeP" + }, + { + "kind": "Conformance", + "name": "ObservableLongUpDownCounter", + "printedName": "ObservableLongUpDownCounter", + "usr": "s:11VideoSDKRTC27ObservableLongUpDownCounterP", + "mangledName": "$s11VideoSDKRTC27ObservableLongUpDownCounterP" + }, + { + "kind": "Conformance", + "name": "ObservableDoubleGauge", + "printedName": "ObservableDoubleGauge", + "usr": "s:11VideoSDKRTC21ObservableDoubleGaugeP", + "mangledName": "$s11VideoSDKRTC21ObservableDoubleGaugeP" + }, + { + "kind": "Conformance", + "name": "ObservableDoubleUpDownCounter", + "printedName": "ObservableDoubleUpDownCounter", + "usr": "s:11VideoSDKRTC29ObservableDoubleUpDownCounterP", + "mangledName": "$s11VideoSDKRTC29ObservableDoubleUpDownCounterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableLongCounter", + "printedName": "ObservableLongCounter", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC21ObservableLongCounterP", + "mangledName": "$s11VideoSDKRTC21ObservableLongCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableLongGauge", + "printedName": "ObservableLongGauge", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC19ObservableLongGaugeP", + "mangledName": "$s11VideoSDKRTC19ObservableLongGaugeP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableLongMeasurement", + "printedName": "ObservableLongMeasurement", + "children": [ + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP6record5valueySi_tF", + "mangledName": "$s11VideoSDKRTC25ObservableLongMeasurementP6record5valueySi_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ObservableLongMeasurement>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC25ObservableLongMeasurementP6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ObservableLongMeasurement>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP", + "mangledName": "$s11VideoSDKRTC25ObservableLongMeasurementP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableLongUpDownCounter", + "printedName": "ObservableLongUpDownCounter", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC27ObservableLongUpDownCounterP", + "mangledName": "$s11VideoSDKRTC27ObservableLongUpDownCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "defaultOltpHTTPMetricsEndpoint", + "printedName": "defaultOltpHTTPMetricsEndpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30defaultOltpHTTPMetricsEndpoint10Foundation3URLVyF", + "mangledName": "$s11VideoSDKRTC30defaultOltpHTTPMetricsEndpoint10Foundation3URLVyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "OtlpHttpMetricExporter", + "printedName": "OtlpHttpMetricExporter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(endpoint:useSession:authToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OtlpHttpMetricExporter", + "printedName": "VideoSDKRTC.OtlpHttpMetricExporter", + "usr": "s:11VideoSDKRTC22OtlpHttpMetricExporterC" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "hasDefaultArg": true, + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URLSession?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSession", + "printedName": "Foundation.URLSession", + "usr": "c:objc(cs)NSURLSession" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22OtlpHttpMetricExporterC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "mangledName": "$s11VideoSDKRTC22OtlpHttpMetricExporterC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "export", + "printedName": "export(metrics:shouldCancel:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> Swift.Bool)?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22OtlpHttpMetricExporterC6export7metrics12shouldCancelAA0eF10ResultCodeOSayAA0E0VG_SbycSgtF", + "mangledName": "$s11VideoSDKRTC22OtlpHttpMetricExporterC6export7metrics12shouldCancelAA0eF10ResultCodeOSayAA0E0VG_SbycSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22OtlpHttpMetricExporterC5flushAA0eF10ResultCodeOyF", + "mangledName": "$s11VideoSDKRTC22OtlpHttpMetricExporterC5flushAA0eF10ResultCodeOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC22OtlpHttpMetricExporterC", + "mangledName": "$s11VideoSDKRTC22OtlpHttpMetricExporterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.OtlpHttpExporterBase" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricExporter", + "printedName": "MetricExporter", + "usr": "s:11VideoSDKRTC14MetricExporterP", + "mangledName": "$s11VideoSDKRTC14MetricExporterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OpenTelemetry", + "printedName": "OpenTelemetry", + "children": [ + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV7versionSSvpZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV7versionSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV7versionSSvgZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV7versionSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV7versionSSvsZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV7versionSSvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV7versionSSvMZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV7versionSSvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetry", + "printedName": "VideoSDKRTC.OpenTelemetry", + "usr": "s:11VideoSDKRTC13OpenTelemetryV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetry", + "printedName": "VideoSDKRTC.OpenTelemetry", + "usr": "s:11VideoSDKRTC13OpenTelemetryV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OpenTelemetry", + "printedName": "VideoSDKRTC.OpenTelemetry", + "usr": "s:11VideoSDKRTC13OpenTelemetryV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV8instanceACvsZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV8instanceACvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV8instanceACvMZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV8instanceACvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tracerProvider", + "printedName": "tracerProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "TracerProvider", + "printedName": "VideoSDKRTC.TracerProvider", + "usr": "s:11VideoSDKRTC14TracerProviderP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV14tracerProviderAA06TracerF0_pvp", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV14tracerProviderAA06TracerF0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TracerProvider", + "printedName": "VideoSDKRTC.TracerProvider", + "usr": "s:11VideoSDKRTC14TracerProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV14tracerProviderAA06TracerF0_pvg", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV14tracerProviderAA06TracerF0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "meterProvider", + "printedName": "meterProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV13meterProviderAA05MeterF0_pvp", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV13meterProviderAA05MeterF0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV13meterProviderAA05MeterF0_pvg", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV13meterProviderAA05MeterF0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stableMeterProvider", + "printedName": "stableMeterProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.StableMeterProvider?", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeterProvider", + "printedName": "VideoSDKRTC.StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV19stableMeterProviderAA06StablefG0_pSgvp", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV19stableMeterProviderAA06StablefG0_pSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.StableMeterProvider?", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeterProvider", + "printedName": "VideoSDKRTC.StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV19stableMeterProviderAA06StablefG0_pSgvg", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV19stableMeterProviderAA06StablefG0_pSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "loggerProvider", + "printedName": "loggerProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerProvider", + "printedName": "VideoSDKRTC.LoggerProvider", + "usr": "s:11VideoSDKRTC14LoggerProviderP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV14loggerProviderAA06LoggerF0_pvp", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV14loggerProviderAA06LoggerF0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerProvider", + "printedName": "VideoSDKRTC.LoggerProvider", + "usr": "s:11VideoSDKRTC14LoggerProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV14loggerProviderAA06LoggerF0_pvg", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV14loggerProviderAA06LoggerF0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "baggageManager", + "printedName": "baggageManager", + "children": [ + { + "kind": "TypeNominal", + "name": "BaggageManager", + "printedName": "VideoSDKRTC.BaggageManager", + "usr": "s:11VideoSDKRTC14BaggageManagerP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV14baggageManagerAA07BaggageF0_pvp", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV14baggageManagerAA07BaggageF0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BaggageManager", + "printedName": "VideoSDKRTC.BaggageManager", + "usr": "s:11VideoSDKRTC14BaggageManagerP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV14baggageManagerAA07BaggageF0_pvg", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV14baggageManagerAA07BaggageF0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "propagators", + "printedName": "propagators", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextPropagators", + "printedName": "VideoSDKRTC.ContextPropagators", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV11propagatorsAA18ContextPropagators_pvp", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV11propagatorsAA18ContextPropagators_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextPropagators", + "printedName": "VideoSDKRTC.ContextPropagators", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV11propagatorsAA18ContextPropagators_pvg", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV11propagatorsAA18ContextPropagators_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "contextProvider", + "printedName": "contextProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextProvider", + "printedName": "VideoSDKRTC.OpenTelemetryContextProvider", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV15contextProviderAA0cd7ContextF0Vvp", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV15contextProviderAA0cd7ContextF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextProvider", + "printedName": "VideoSDKRTC.OpenTelemetryContextProvider", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV15contextProviderAA0cd7ContextF0Vvg", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV15contextProviderAA0cd7ContextF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "registerStableMeterProvider", + "printedName": "registerStableMeterProvider(meterProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "StableMeterProvider", + "printedName": "VideoSDKRTC.StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13OpenTelemetryV27registerStableMeterProvider05meterH0yAA0fgH0_p_tFZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV27registerStableMeterProvider05meterH0yAA0fgH0_p_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerTracerProvider", + "printedName": "registerTracerProvider(tracerProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TracerProvider", + "printedName": "VideoSDKRTC.TracerProvider", + "usr": "s:11VideoSDKRTC14TracerProviderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13OpenTelemetryV22registerTracerProvider06tracerG0yAA0fG0_p_tFZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV22registerTracerProvider06tracerG0yAA0fG0_p_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerMeterProvider", + "printedName": "registerMeterProvider(meterProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13OpenTelemetryV21registerMeterProvider05meterG0yAA0fG0_p_tFZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV21registerMeterProvider05meterG0yAA0fG0_p_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerLoggerProvider", + "printedName": "registerLoggerProvider(loggerProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoggerProvider", + "printedName": "VideoSDKRTC.LoggerProvider", + "usr": "s:11VideoSDKRTC14LoggerProviderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13OpenTelemetryV22registerLoggerProvider06loggerG0yAA0fG0_p_tFZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV22registerLoggerProvider06loggerG0yAA0fG0_p_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerBaggageManager", + "printedName": "registerBaggageManager(baggageManager:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BaggageManager", + "printedName": "VideoSDKRTC.BaggageManager", + "usr": "s:11VideoSDKRTC14BaggageManagerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13OpenTelemetryV22registerBaggageManager07baggageG0yAA0fG0_p_tFZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV22registerBaggageManager07baggageG0yAA0fG0_p_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerPropagators", + "printedName": "registerPropagators(textPropagators:baggagePropagator:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.TextMapPropagator]", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "TextMapBaggagePropagator", + "printedName": "VideoSDKRTC.TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13OpenTelemetryV19registerPropagators04textF017baggagePropagatorySayAA07TextMapI0_pG_AA0jk7BaggageI0_ptFZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV19registerPropagators04textF017baggagePropagatorySayAA07TextMapI0_pG_AA0jk7BaggageI0_ptFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerContextManager", + "printedName": "registerContextManager(contextManager:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ContextManager", + "printedName": "VideoSDKRTC.ContextManager", + "usr": "s:11VideoSDKRTC14ContextManagerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13OpenTelemetryV22registerContextManager07contextG0yAA0fG0_p_tFZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV22registerContextManager07contextG0yAA0fG0_p_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13OpenTelemetryV", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "os.activity", + "printedName": "os.activity", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "OpenTelemetryContextKeys", + "printedName": "OpenTelemetryContextKeys", + "children": [ + { + "kind": "Var", + "name": "span", + "printedName": "span", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.OpenTelemetryContextKeys.Type) -> VideoSDKRTC.OpenTelemetryContextKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO4spanyA2CmF", + "mangledName": "$s11VideoSDKRTC24OpenTelemetryContextKeysO4spanyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "baggage", + "printedName": "baggage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.OpenTelemetryContextKeys.Type) -> VideoSDKRTC.OpenTelemetryContextKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO7baggageyA2CmF", + "mangledName": "$s11VideoSDKRTC24OpenTelemetryContextKeysO7baggageyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC24OpenTelemetryContextKeysO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC24OpenTelemetryContextKeysO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC24OpenTelemetryContextKeysO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO", + "mangledName": "$s11VideoSDKRTC24OpenTelemetryContextKeysO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OpenTelemetryContextProvider", + "printedName": "OpenTelemetryContextProvider", + "children": [ + { + "kind": "Var", + "name": "activeSpan", + "printedName": "activeSpan", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Span?", + "children": [ + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV10activeSpanAA0H0_pSgvp", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV10activeSpanAA0H0_pSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Span?", + "children": [ + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV10activeSpanAA0H0_pSgvg", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV10activeSpanAA0H0_pSgvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "activeBaggage", + "printedName": "activeBaggage", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Baggage?", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV13activeBaggageAA0H0_pSgvp", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV13activeBaggageAA0H0_pSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Baggage?", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV13activeBaggageAA0H0_pSgvg", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV13activeBaggageAA0H0_pSgvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setActiveSpan", + "printedName": "setActiveSpan(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV13setActiveSpanyyAA0I0_pF", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV13setActiveSpanyyAA0I0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setActiveBaggage", + "printedName": "setActiveBaggage(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV16setActiveBaggageyyAA0I0_pF", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV16setActiveBaggageyyAA0I0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeContextForSpan", + "printedName": "removeContextForSpan(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV06removeE7ForSpanyyAA0I0_pF", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV06removeE7ForSpanyyAA0I0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeContextForBaggage", + "printedName": "removeContextForBaggage(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV06removeE10ForBaggageyyAA0I0_pF", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV06removeE10ForBaggageyyAA0I0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OtlpConfiguration", + "printedName": "OtlpConfiguration", + "children": [ + { + "kind": "Var", + "name": "DefaultTimeoutInterval", + "printedName": "DefaultTimeoutInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV22DefaultTimeoutIntervalSdvpZ", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV22DefaultTimeoutIntervalSdvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV22DefaultTimeoutIntervalSdvgZ", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV22DefaultTimeoutIntervalSdvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "headers", + "printedName": "headers", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[(Swift.String, Swift.String)]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.String, Swift.String)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV7headersSaySS_SStGSgvp", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV7headersSaySS_SStGSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[(Swift.String, Swift.String)]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.String, Swift.String)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV7headersSaySS_SStGSgvg", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV7headersSaySS_SStGSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeout", + "printedName": "timeout", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV7timeoutSdvp", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV7timeoutSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV7timeoutSdvg", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV7timeoutSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(timeout:headers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OtlpConfiguration", + "printedName": "VideoSDKRTC.OtlpConfiguration", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[(Swift.String, Swift.String)]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.String, Swift.String)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV7timeout7headersACSd_SaySS_SStGSgtcfc", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV7timeout7headersACSd_SaySS_SStGSgtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OtlpHttpExporterBase", + "printedName": "OtlpHttpExporterBase", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(endpoint:useSession:authToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OtlpHttpExporterBase", + "printedName": "VideoSDKRTC.OtlpHttpExporterBase", + "usr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URLSession?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSession", + "printedName": "Foundation.URLSession", + "usr": "c:objc(cs)NSURLSession" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "mangledName": "$s11VideoSDKRTC20OtlpHttpExporterBaseC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "createRequest", + "printedName": "createRequest(body:endpoint:authToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC13createRequest4body8endpoint9authToken10Foundation10URLRequestVAA7Message_p_AH3URLVSStF", + "mangledName": "$s11VideoSDKRTC20OtlpHttpExporterBaseC13createRequest4body8endpoint9authToken10Foundation10URLRequestVAA7Message_p_AH3URLVSStF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC8shutdownyyF", + "mangledName": "$s11VideoSDKRTC20OtlpHttpExporterBaseC8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC", + "mangledName": "$s11VideoSDKRTC20OtlpHttpExporterBaseC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "defaultOltpHttpLoggingEndpoint", + "printedName": "defaultOltpHttpLoggingEndpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30defaultOltpHttpLoggingEndpoint10Foundation3URLVyF", + "mangledName": "$s11VideoSDKRTC30defaultOltpHttpLoggingEndpoint10Foundation3URLVyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "OtlpHttpLogExporter", + "printedName": "OtlpHttpLogExporter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(endpoint:useSession:authToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OtlpHttpLogExporter", + "printedName": "VideoSDKRTC.OtlpHttpLogExporter", + "usr": "s:11VideoSDKRTC19OtlpHttpLogExporterC" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "hasDefaultArg": true, + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URLSession?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSession", + "printedName": "Foundation.URLSession", + "usr": "c:objc(cs)NSURLSession" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19OtlpHttpLogExporterC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "mangledName": "$s11VideoSDKRTC19OtlpHttpLogExporterC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "export", + "printedName": "export(logRecords:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19OtlpHttpLogExporterC6export10logRecordsAA12ExportResultOSayAA08ReadableE6RecordVG_tF", + "mangledName": "$s11VideoSDKRTC19OtlpHttpLogExporterC6export10logRecordsAA12ExportResultOSayAA08ReadableE6RecordVG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19OtlpHttpLogExporterC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC19OtlpHttpLogExporterC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19OtlpHttpLogExporterC5flushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC19OtlpHttpLogExporterC5flushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19OtlpHttpLogExporterC", + "mangledName": "$s11VideoSDKRTC19OtlpHttpLogExporterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.OtlpHttpExporterBase" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordExporter", + "printedName": "LogRecordExporter", + "usr": "s:11VideoSDKRTC17LogRecordExporterP", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "defaultOltpHttpTracesEndpoint", + "printedName": "defaultOltpHttpTracesEndpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29defaultOltpHttpTracesEndpoint10Foundation3URLVyF", + "mangledName": "$s11VideoSDKRTC29defaultOltpHttpTracesEndpoint10Foundation3URLVyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "OtlpHttpTraceExporter", + "printedName": "OtlpHttpTraceExporter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(endpoint:useSession:authToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OtlpHttpTraceExporter", + "printedName": "VideoSDKRTC.OtlpHttpTraceExporter", + "usr": "s:11VideoSDKRTC21OtlpHttpTraceExporterC" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "hasDefaultArg": true, + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URLSession?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSession", + "printedName": "Foundation.URLSession", + "usr": "c:objc(cs)NSURLSession" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21OtlpHttpTraceExporterC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "mangledName": "$s11VideoSDKRTC21OtlpHttpTraceExporterC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "export", + "printedName": "export(spans:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21OtlpHttpTraceExporterC6export5spansAA04SpanF10ResultCodeOSayAA0I4DataVG_tF", + "mangledName": "$s11VideoSDKRTC21OtlpHttpTraceExporterC6export5spansAA04SpanF10ResultCodeOSayAA0I4DataVG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21OtlpHttpTraceExporterC5flushAA04SpanF10ResultCodeOyF", + "mangledName": "$s11VideoSDKRTC21OtlpHttpTraceExporterC5flushAA04SpanF10ResultCodeOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21OtlpHttpTraceExporterC", + "mangledName": "$s11VideoSDKRTC21OtlpHttpTraceExporterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.OtlpHttpExporterBase" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SpanExporter", + "printedName": "SpanExporter", + "usr": "s:11VideoSDKRTC12SpanExporterP", + "mangledName": "$s11VideoSDKRTC12SpanExporterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OtlpSpan", + "printedName": "OtlpSpan", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OtlpSpan", + "printedName": "VideoSDKRTC.OtlpSpan", + "usr": "s:11VideoSDKRTC8OtlpSpanV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8OtlpSpanV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC8OtlpSpanV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8OtlpSpanV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC8OtlpSpanV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC8OtlpSpanV", + "mangledName": "$s11VideoSDKRTC8OtlpSpanV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Attribute", + "printedName": "Attribute", + "children": [ + { + "kind": "TypeDecl", + "name": "Value", + "printedName": "Value", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Value", + "printedName": "VideoSDKRTC.Attribute.Value", + "usr": "s:11VideoSDKRTC9AttributeV5ValueV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC9AttributeV5ValueV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC9AttributeV5ValueV4fromAEs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9AttributeV5ValueV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC9AttributeV5ValueV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC9AttributeV5ValueV", + "mangledName": "$s11VideoSDKRTC9AttributeV5ValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Attribute", + "printedName": "VideoSDKRTC.Attribute", + "usr": "s:11VideoSDKRTC9AttributeV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC9AttributeV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC9AttributeV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9AttributeV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC9AttributeV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC9AttributeV", + "mangledName": "$s11VideoSDKRTC9AttributeV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OTPCConstants", + "printedName": "OTPCConstants", + "children": [ + { + "kind": "TypeDecl", + "name": "HTTP", + "printedName": "HTTP", + "children": [ + { + "kind": "Var", + "name": "userAgent", + "printedName": "userAgent", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OTPCConstantsO4HTTPO9userAgentSSvpZ", + "mangledName": "$s11VideoSDKRTC13OTPCConstantsO4HTTPO9userAgentSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OTPCConstantsO4HTTPO9userAgentSSvgZ", + "mangledName": "$s11VideoSDKRTC13OTPCConstantsO4HTTPO9userAgentSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC13OTPCConstantsO4HTTPO", + "mangledName": "$s11VideoSDKRTC13OTPCConstantsO4HTTPO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC13OTPCConstantsO", + "mangledName": "$s11VideoSDKRTC13OTPCConstantsO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Participant", + "printedName": "Participant", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ParticipantC2idSSvp", + "mangledName": "$s11VideoSDKRTC11ParticipantC2idSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC2idSSvg", + "mangledName": "$s11VideoSDKRTC11ParticipantC2idSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ParticipantC11displayNameSSvp", + "mangledName": "$s11VideoSDKRTC11ParticipantC11displayNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC11displayNameSSvg", + "mangledName": "$s11VideoSDKRTC11ParticipantC11displayNameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "videoQuality", + "printedName": "videoQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovp", + "mangledName": "$s11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovg", + "mangledName": "$s11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isLocal", + "printedName": "isLocal", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ParticipantC7isLocalSbvp", + "mangledName": "$s11VideoSDKRTC11ParticipantC7isLocalSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC7isLocalSbvg", + "mangledName": "$s11VideoSDKRTC11ParticipantC7isLocalSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "streams", + "printedName": "streams", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.MediaStream]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvp", + "mangledName": "$s11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.MediaStream]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvg", + "mangledName": "$s11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pinState", + "printedName": "pinState", + "children": [ + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0Vvp", + "mangledName": "$s11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0Vvg", + "mangledName": "$s11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0Vvs", + "mangledName": "$s11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0VvM", + "mangledName": "$s11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ParticipantC4modeAA4ModeOvp", + "mangledName": "$s11VideoSDKRTC11ParticipantC4modeAA4ModeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC4modeAA4ModeOvg", + "mangledName": "$s11VideoSDKRTC11ParticipantC4modeAA4ModeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC4modeAA4ModeOvs", + "mangledName": "$s11VideoSDKRTC11ParticipantC4modeAA4ModeOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC4modeAA4ModeOvM", + "mangledName": "$s11VideoSDKRTC11ParticipantC4modeAA4ModeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enableMic", + "printedName": "enableMic()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC9enableMicyyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC9enableMicyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableMic", + "printedName": "disableMic()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC10disableMicyyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC10disableMicyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enableWebcam", + "printedName": "enableWebcam()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC12enableWebcamyyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC12enableWebcamyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableWebcam", + "printedName": "disableWebcam()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC13disableWebcamyyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC13disableWebcamyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "remove", + "printedName": "remove()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC6removeyyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC6removeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "participantPinStateChanged", + "printedName": "participantPinStateChanged(pinState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC26participantPinStateChanged03pinF0yAA0ceF0V_tF", + "mangledName": "$s11VideoSDKRTC11ParticipantC26participantPinStateChanged03pinF0yAA0ceF0V_tF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "participantModeChanged", + "printedName": "participantModeChanged(mode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC22participantModeChanged4modeyAA0E0O_tF", + "mangledName": "$s11VideoSDKRTC11ParticipantC22participantModeChanged4modeyAA0E0O_tF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAudioStats", + "printedName": "getAudioStats()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC13getAudioStatsSDySSypGSgyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC13getAudioStatsSDySSypGSgyF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getVideoStats", + "printedName": "getVideoStats()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC03getA5StatsSDySSypGSgyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC03getA5StatsSDySSypGSgyF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addStream", + "printedName": "addStream(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC9addStreamyyAA05MediaE0CF", + "mangledName": "$s11VideoSDKRTC11ParticipantC9addStreamyyAA05MediaE0CF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeStream", + "printedName": "removeStream(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.MediaStream?", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC12removeStreamyAA05MediaE0CSgSSF", + "mangledName": "$s11VideoSDKRTC11ParticipantC12removeStreamyAA05MediaE0CSgSSF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeAllStreams", + "printedName": "removeAllStreams()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC16removeAllStreamsyyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC16removeAllStreamsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setQuality", + "printedName": "setQuality(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC10setQualityyyAA0aE0OF", + "mangledName": "$s11VideoSDKRTC11ParticipantC10setQualityyyAA0aE0OF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pin", + "printedName": "pin(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC3pinyySS_AA7PinTypeOtF", + "mangledName": "$s11VideoSDKRTC11ParticipantC3pinyySS_AA7PinTypeOtF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unpin", + "printedName": "unpin(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC5unpinyyAA7PinTypeOF", + "mangledName": "$s11VideoSDKRTC11ParticipantC5unpinyyAA7PinTypeOF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setPinState", + "printedName": "setPinState(pinState:peerId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC11setPinState03pinF06peerIdyAA0ceF0V_SStF", + "mangledName": "$s11VideoSDKRTC11ParticipantC11setPinState03pinF06peerIdyAA0ceF0V_SStF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEventListener", + "printedName": "addEventListener(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ParticipantEventListener", + "printedName": "VideoSDKRTC.ParticipantEventListener", + "usr": "s:11VideoSDKRTC24ParticipantEventListenerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC16addEventListeneryyAA0ceF0_pF", + "mangledName": "$s11VideoSDKRTC11ParticipantC16addEventListeneryyAA0ceF0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeEventListener", + "printedName": "removeEventListener(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ParticipantEventListener", + "printedName": "VideoSDKRTC.ParticipantEventListener", + "usr": "s:11VideoSDKRTC24ParticipantEventListenerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC19removeEventListeneryyAA0ceF0_pF", + "mangledName": "$s11VideoSDKRTC11ParticipantC19removeEventListeneryyAA0ceF0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC11ParticipantC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC11ParticipantC", + "mangledName": "$s11VideoSDKRTC11ParticipantC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ParticipantEventListener", + "printedName": "ParticipantEventListener", + "children": [ + { + "kind": "Function", + "name": "onStreamEnabled", + "printedName": "onStreamEnabled(_:forParticipant:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24ParticipantEventListenerP15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", + "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerP15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onStreamDisabled", + "printedName": "onStreamDisabled(_:forParticipant:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24ParticipantEventListenerP16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", + "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerP16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onStreamEnabled", + "printedName": "onStreamEnabled(_:forParticipant:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24ParticipantEventListenerPAAE15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", + "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerPAAE15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onStreamDisabled", + "printedName": "onStreamDisabled(_:forParticipant:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24ParticipantEventListenerPAAE16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", + "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerPAAE16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC24ParticipantEventListenerP", + "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PinType", + "printedName": "PinType", + "children": [ + { + "kind": "Var", + "name": "SHARE_AND_CAM", + "printedName": "SHARE_AND_CAM", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.PinType.Type) -> VideoSDKRTC.PinType", + "children": [ + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.PinType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC7PinTypeO13SHARE_AND_CAMyA2CmF", + "mangledName": "$s11VideoSDKRTC7PinTypeO13SHARE_AND_CAMyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "CAM", + "printedName": "CAM", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.PinType.Type) -> VideoSDKRTC.PinType", + "children": [ + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.PinType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC7PinTypeO3CAMyA2CmF", + "mangledName": "$s11VideoSDKRTC7PinTypeO3CAMyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "SHARE", + "printedName": "SHARE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.PinType.Type) -> VideoSDKRTC.PinType", + "children": [ + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.PinType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC7PinTypeO5SHAREyA2CmF", + "mangledName": "$s11VideoSDKRTC7PinTypeO5SHAREyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.PinType?", + "children": [ + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7PinTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC7PinTypeO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7PinTypeO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC7PinTypeO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7PinTypeO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC7PinTypeO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC7PinTypeO", + "mangledName": "$s11VideoSDKRTC7PinTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ParticipantPinState", + "printedName": "ParticipantPinState", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC19ParticipantPinStateV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC19ParticipantPinStateV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV", + "mangledName": "$s11VideoSDKRTC19ParticipantPinStateV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PointData", + "printedName": "PointData", + "children": [ + { + "kind": "Var", + "name": "startEpochNanos", + "printedName": "startEpochNanos", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64VvM", + "mangledName": "$s11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "endEpochNanos", + "printedName": "endEpochNanos", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64VvM", + "mangledName": "$s11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvs", + "mangledName": "$s11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvM", + "mangledName": "$s11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "exemplars", + "printedName": "exemplars", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ExemplarData]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvp", + "mangledName": "$s11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ExemplarData]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvg", + "mangledName": "$s11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ExemplarData]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvs", + "mangledName": "$s11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvM", + "mangledName": "$s11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "-", + "printedName": "-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9PointDataC1soiyACXDAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC9PointDataC1soiyACXDAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9PointDataC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC9PointDataC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC9PointDataC", + "mangledName": "$s11VideoSDKRTC9PointDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufAPIVersion_3", + "printedName": "ProtobufAPIVersion_3", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC20ProtobufAPIVersion_3P", + "mangledName": "$s11VideoSDKRTC20ProtobufAPIVersion_3P", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufAPIVersionCheck", + "printedName": "ProtobufAPIVersionCheck", + "children": [ + { + "kind": "AssociatedType", + "name": "Version", + "printedName": "Version", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC23ProtobufAPIVersionCheckP7VersionQa", + "mangledName": "$s11VideoSDKRTC23ProtobufAPIVersionCheckP7VersionQa", + "moduleName": "VideoSDKRTC", + "protocolReq": true + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC23ProtobufAPIVersionCheckP", + "mangledName": "$s11VideoSDKRTC23ProtobufAPIVersionCheckP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0.Version : VideoSDKRTC.ProtobufAPIVersion_3>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_ProtobufMap", + "printedName": "_ProtobufMap", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC12_ProtobufMapV", + "mangledName": "$s11VideoSDKRTC12_ProtobufMapV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.MapKeyType, τ_0_1 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_ProtobufMessageMap", + "printedName": "_ProtobufMessageMap", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19_ProtobufMessageMapV", + "mangledName": "$s11VideoSDKRTC19_ProtobufMessageMapV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.MapKeyType, τ_0_1 : Swift.Hashable, τ_0_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_ProtobufEnumMap", + "printedName": "_ProtobufEnumMap", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16_ProtobufEnumMapV", + "mangledName": "$s11VideoSDKRTC16_ProtobufEnumMapV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.MapKeyType, τ_0_1 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "children": [ + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP17_protobuf_nameMapAA01_dH0VvpZ", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP17_protobuf_nameMapAA01_dH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP17_protobuf_nameMapAA01_dH0VvgZ", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP17_protobuf_nameMapAA01_dH0VvgZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC._ProtoNameProviding>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProxyMeter", + "printedName": "ProxyMeter", + "children": [ + { + "kind": "Function", + "name": "createRawDoubleCounter", + "printedName": "createRawDoubleCounter(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawCounterMetric", + "printedName": "VideoSDKRTC.AnyRawCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV22createRawDoubleCounter4nameAA03AnyfH6MetricVySdGSS_tF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV22createRawDoubleCounter4nameAA03AnyfH6MetricVySdGSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRawIntCounter", + "printedName": "createRawIntCounter(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawCounterMetric", + "printedName": "VideoSDKRTC.AnyRawCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV19createRawIntCounter4nameAA03AnyfH6MetricVySiGSS_tF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV19createRawIntCounter4nameAA03AnyfH6MetricVySiGSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRawDoubleHistogram", + "printedName": "createRawDoubleHistogram(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawHistogramMetric", + "printedName": "VideoSDKRTC.AnyRawHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV24createRawDoubleHistogram4nameAA03AnyfH6MetricVySdGSS_tF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV24createRawDoubleHistogram4nameAA03AnyfH6MetricVySdGSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRawIntHistogram", + "printedName": "createRawIntHistogram(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawHistogramMetric", + "printedName": "VideoSDKRTC.AnyRawHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV21createRawIntHistogram4nameAA03AnyfH6MetricVySiGSS_tF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV21createRawIntHistogram4nameAA03AnyfH6MetricVySiGSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getLabelSet", + "printedName": "getLabelSet(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV11getLabelSet6labelsAA0fG0CSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV11getLabelSet6labelsAA0fG0CSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntCounter", + "printedName": "createIntCounter(name:monotonic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCounterMetric", + "printedName": "VideoSDKRTC.AnyCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC16AnyCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV16createIntCounter4name9monotonicAA03AnyG6MetricVySiGSS_SbtF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV16createIntCounter4name9monotonicAA03AnyG6MetricVySiGSS_SbtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleCounter", + "printedName": "createDoubleCounter(name:monotonic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCounterMetric", + "printedName": "VideoSDKRTC.AnyCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC16AnyCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV19createDoubleCounter4name9monotonicAA03AnyG6MetricVySdGSS_SbtF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV19createDoubleCounter4name9monotonicAA03AnyG6MetricVySdGSS_SbtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntMeasure", + "printedName": "createIntMeasure(name:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMeasureMetric", + "printedName": "VideoSDKRTC.AnyMeasureMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV16createIntMeasure4name8absoluteAA03AnyG6MetricVySiGSS_SbtF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV16createIntMeasure4name8absoluteAA03AnyG6MetricVySiGSS_SbtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleMeasure", + "printedName": "createDoubleMeasure(name:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMeasureMetric", + "printedName": "VideoSDKRTC.AnyMeasureMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV19createDoubleMeasure4name8absoluteAA03AnyG6MetricVySdGSS_SbtF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV19createDoubleMeasure4name8absoluteAA03AnyG6MetricVySdGSS_SbtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntHistogram", + "printedName": "createIntHistogram(name:explicitBoundaries:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyHistogramMetric", + "printedName": "VideoSDKRTC.AnyHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.Int]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV18createIntHistogram4name18explicitBoundaries8absoluteAA03AnyG6MetricVySiGSS_SaySiGSgSbtF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV18createIntHistogram4name18explicitBoundaries8absoluteAA03AnyG6MetricVySiGSS_SaySiGSgSbtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleHistogram", + "printedName": "createDoubleHistogram(name:explicitBoundaries:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyHistogramMetric", + "printedName": "VideoSDKRTC.AnyHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV21createDoubleHistogram4name18explicitBoundaries8absoluteAA03AnyG6MetricVySdGSS_SaySdGSgSbtF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV21createDoubleHistogram4name18explicitBoundaries8absoluteAA03AnyG6MetricVySdGSS_SaySdGSgSbtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntObservableGauge", + "printedName": "createIntObservableGauge(name:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.IntObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV24createIntObservableGauge4name8callbackAA0F14ObserverMetric_pSS_yAaG_pctF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV24createIntObservableGauge4name8callbackAA0F14ObserverMetric_pSS_yAaG_pctF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleObservableGauge", + "printedName": "createDoubleObservableGauge(name:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.DoubleObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV27createDoubleObservableGauge4name8callbackAA0F14ObserverMetric_pSS_yAaG_pctF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV27createDoubleObservableGauge4name8callbackAA0F14ObserverMetric_pSS_yAaG_pctF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntObserver", + "printedName": "createIntObserver(name:absolute:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.IntObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV17createIntObserver4name8absolute8callbackAA0fG6Metric_pSS_SbyAaH_pctF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV17createIntObserver4name8absolute8callbackAA0fG6Metric_pSS_SbyAaH_pctF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleObserver", + "printedName": "createDoubleObserver(name:absolute:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.DoubleObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV20createDoubleObserver4name8absolute8callbackAA0fG6Metric_pSS_SbyAaH_pctF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV20createDoubleObserver4name8absolute8callbackAA0fG6Metric_pSS_SbyAaH_pctF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC10ProxyMeterV", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Meter", + "printedName": "Meter", + "usr": "s:11VideoSDKRTC5MeterP", + "mangledName": "$s11VideoSDKRTC5MeterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PubSub", + "printedName": "PubSub", + "children": [ + { + "kind": "Function", + "name": "publish", + "printedName": "publish(topic:message:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6PubSubC7publish5topic7message7optionsySS_SSSDySSypGtF", + "mangledName": "$s11VideoSDKRTC6PubSubC7publish5topic7message7optionsySS_SSSDySSypGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "subscribe", + "printedName": "subscribe(topic:forListener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PubSubMessageListener", + "printedName": "VideoSDKRTC.PubSubMessageListener", + "usr": "s:11VideoSDKRTC21PubSubMessageListenerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6PubSubC9subscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", + "mangledName": "$s11VideoSDKRTC6PubSubC9subscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unsubscribe", + "printedName": "unsubscribe(topic:forListener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PubSubMessageListener", + "printedName": "VideoSDKRTC.PubSubMessageListener", + "usr": "s:11VideoSDKRTC21PubSubMessageListenerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6PubSubC11unsubscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", + "mangledName": "$s11VideoSDKRTC6PubSubC11unsubscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getMessagesForTopic", + "printedName": "getMessagesForTopic(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PubSubMessage]", + "children": [ + { + "kind": "TypeNominal", + "name": "PubSubMessage", + "printedName": "VideoSDKRTC.PubSubMessage", + "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6PubSubC19getMessagesForTopicySayAA0cD7MessageCGSSF", + "mangledName": "$s11VideoSDKRTC6PubSubC19getMessagesForTopicySayAA0cD7MessageCGSSF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC6PubSubC", + "mangledName": "$s11VideoSDKRTC6PubSubC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PubSubMessage", + "printedName": "PubSubMessage", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvp", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvg", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvs", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvM", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "topic", + "printedName": "topic", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvp", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvg", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvs", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvM", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvp", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvg", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvs", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvM", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "senderId", + "printedName": "senderId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvp", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvg", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvs", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvM", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "senderName", + "printedName": "senderName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvp", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvg", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvs", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvM", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvp", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvg", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvs", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvM", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "PubSubMessage", + "printedName": "VideoSDKRTC.PubSubMessage", + "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage" + } + ], + "declKind": "Constructor", + "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage(im)init", + "mangledName": "$s11VideoSDKRTC13PubSubMessageCACycfc", + "moduleName": "VideoSDKRTC", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PubSubMessageListener", + "printedName": "PubSubMessageListener", + "children": [ + { + "kind": "Function", + "name": "onMessageReceived", + "printedName": "onMessageReceived(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PubSubMessage", + "printedName": "VideoSDKRTC.PubSubMessage", + "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21PubSubMessageListenerP02onE8ReceivedyyAA0cdE0CF", + "mangledName": "$s11VideoSDKRTC21PubSubMessageListenerP02onE8ReceivedyyAA0cdE0CF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.PubSubMessageListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC21PubSubMessageListenerP", + "mangledName": "$s11VideoSDKRTC21PubSubMessageListenerP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "RandomIdGenerator", + "printedName": "RandomIdGenerator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "RandomIdGenerator", + "printedName": "VideoSDKRTC.RandomIdGenerator", + "usr": "s:11VideoSDKRTC17RandomIdGeneratorV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17RandomIdGeneratorVACycfc", + "mangledName": "$s11VideoSDKRTC17RandomIdGeneratorVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "generateSpanId", + "printedName": "generateSpanId()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17RandomIdGeneratorV012generateSpanD0AA0gD0VyF", + "mangledName": "$s11VideoSDKRTC17RandomIdGeneratorV012generateSpanD0AA0gD0VyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateTraceId", + "printedName": "generateTraceId()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17RandomIdGeneratorV013generateTraceD0AA0gD0VyF", + "mangledName": "$s11VideoSDKRTC17RandomIdGeneratorV013generateTraceD0AA0gD0VyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC17RandomIdGeneratorV", + "mangledName": "$s11VideoSDKRTC17RandomIdGeneratorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "IdGenerator", + "printedName": "IdGenerator", + "usr": "s:11VideoSDKRTC11IdGeneratorP", + "mangledName": "$s11VideoSDKRTC11IdGeneratorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "RawCounterMetric", + "printedName": "RawCounterMetric", + "children": [ + { + "kind": "AssociatedType", + "name": "T", + "printedName": "T", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC16RawCounterMetricP1TQa", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP1TQa", + "moduleName": "VideoSDKRTC", + "protocolReq": true + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(sum:startDate:endDate:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16RawCounterMetricP6record3sum9startDate03endI06labelsy1TQz_10Foundation0I0VAMSDyS2SGtF", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP6record3sum9startDate03endI06labelsy1TQz_10Foundation0I0VAMSDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawCounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(sum:startDate:endDate:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16RawCounterMetricP6record3sum9startDate03endI08labelsety1TQz_10Foundation0I0VAmA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP6record3sum9startDate03endI08labelsety1TQz_10Foundation0I0VAmA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawCounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawCounterMetric", + "printedName": "VideoSDKRTC.BoundRawCounterMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16RawCounterMetricP4bind8labelsetAA05BoundcdE0Cy1TQzGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP4bind8labelsetAA05BoundcdE0Cy1TQzGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawCounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawCounterMetric", + "printedName": "VideoSDKRTC.BoundRawCounterMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16RawCounterMetricP4bind6labelsAA05BoundcdE0Cy1TQzGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP4bind6labelsAA05BoundcdE0Cy1TQzGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawCounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC16RawCounterMetricP", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "AnyRawCounterMetric", + "printedName": "AnyRawCounterMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawCounterMetric", + "printedName": "VideoSDKRTC.AnyRawCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricVyACyxGqd__c1TQyd__RszAA0deF0Rd__lufc", + "mangledName": "$s11VideoSDKRTC19AnyRawCounterMetricVyACyxGqd__c1TQyd__RszAA0deF0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 == τ_1_0.T, τ_1_0 : VideoSDKRTC.RawCounterMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawCounterMetric", + "printedName": "VideoSDKRTC.BoundRawCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC19AnyRawCounterMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawCounterMetric", + "printedName": "VideoSDKRTC.BoundRawCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC19AnyRawCounterMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(sum:startDate:endDate:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV6record3sum9startDate03endJ08labelsetyx_10Foundation0J0VAkA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC19AnyRawCounterMetricV6record3sum9startDate03endJ08labelsetyx_10Foundation0J0VAkA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(sum:startDate:endDate:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV6record3sum9startDate03endJ06labelsyx_10Foundation0J0VAKSDyS2SGtF", + "mangledName": "$s11VideoSDKRTC19AnyRawCounterMetricV6record3sum9startDate03endJ06labelsyx_10Foundation0J0VAKSDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV", + "mangledName": "$s11VideoSDKRTC19AnyRawCounterMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "RawCounterMetric", + "printedName": "RawCounterMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC16RawCounterMetricP", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoopRawCounterMetric", + "printedName": "NoopRawCounterMetric", + "children": [ + { + "kind": "Function", + "name": "record", + "printedName": "record(sum:startDate:endDate:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20NoopRawCounterMetricV6record3sum9startDate03endJ06labelsyx_10Foundation0J0VAKSDyS2SGtF", + "mangledName": "$s11VideoSDKRTC20NoopRawCounterMetricV6record3sum9startDate03endJ06labelsyx_10Foundation0J0VAKSDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(sum:startDate:endDate:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20NoopRawCounterMetricV6record3sum9startDate03endJ08labelsetyx_10Foundation0J0VAkA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC20NoopRawCounterMetricV6record3sum9startDate03endJ08labelsetyx_10Foundation0J0VAkA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawCounterMetric", + "printedName": "VideoSDKRTC.BoundRawCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20NoopRawCounterMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC20NoopRawCounterMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawCounterMetric", + "printedName": "VideoSDKRTC.BoundRawCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20NoopRawCounterMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC20NoopRawCounterMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20NoopRawCounterMetricV", + "mangledName": "$s11VideoSDKRTC20NoopRawCounterMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "RawCounterMetric", + "printedName": "RawCounterMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC16RawCounterMetricP", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "RawHistogramMetric", + "printedName": "RawHistogramMetric", + "children": [ + { + "kind": "AssociatedType", + "name": "T", + "printedName": "T", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC18RawHistogramMetricP1TQa", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP1TQa", + "moduleName": "VideoSDKRTC", + "protocolReq": true + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawHistogramMetric", + "printedName": "VideoSDKRTC.BoundRawHistogramMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18RawHistogramMetricP4bind8labelsetAA05BoundcdE0Cy1TQzGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP4bind8labelsetAA05BoundcdE0Cy1TQzGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawHistogramMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawHistogramMetric", + "printedName": "VideoSDKRTC.BoundRawHistogramMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18RawHistogramMetricP4bind6labelsAA05BoundcdE0Cy1TQzGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP4bind6labelsAA05BoundcdE0Cy1TQzGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawHistogramMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(explicitBoundaries:counts:startDate:endDate:count:sum:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.T]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18RawHistogramMetricP6record18explicitBoundaries6counts9startDate03endK05count3sum8labelsetySay1TQzG_SaySiG10Foundation0K0VARSiAmA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP6record18explicitBoundaries6counts9startDate03endK05count3sum8labelsetySay1TQzG_SaySiG10Foundation0K0VARSiAmA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawHistogramMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(explicitBoundaries:counts:startDate:endDate:count:sum:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.T]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18RawHistogramMetricP6record18explicitBoundaries6counts9startDate03endK05count3sum6labelsySay1TQzG_SaySiG10Foundation0K0VARSiAMSDyS2SGtF", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP6record18explicitBoundaries6counts9startDate03endK05count3sum6labelsySay1TQzG_SaySiG10Foundation0K0VARSiAMSDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawHistogramMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC18RawHistogramMetricP", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AnyRawHistogramMetric", + "printedName": "AnyRawHistogramMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawHistogramMetric", + "printedName": "VideoSDKRTC.AnyRawHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricVyACyxGqd__c1TQyd__RszAA0deF0Rd__lufc", + "mangledName": "$s11VideoSDKRTC21AnyRawHistogramMetricVyACyxGqd__c1TQyd__RszAA0deF0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 == τ_1_0.T, τ_1_0 : VideoSDKRTC.RawHistogramMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawHistogramMetric", + "printedName": "VideoSDKRTC.BoundRawHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC21AnyRawHistogramMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawHistogramMetric", + "printedName": "VideoSDKRTC.BoundRawHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC21AnyRawHistogramMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(explicitBoundaries:counts:startDate:endDate:count:sum:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum6labelsySayxG_SaySiG10Foundation0L0VAPSixSDyS2SGtF", + "mangledName": "$s11VideoSDKRTC21AnyRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum6labelsySayxG_SaySiG10Foundation0L0VAPSixSDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(explicitBoundaries:counts:startDate:endDate:count:sum:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum8labelsetySayxG_SaySiG10Foundation0L0VAPSixAA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC21AnyRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum8labelsetySayxG_SaySiG10Foundation0L0VAPSixAA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV", + "mangledName": "$s11VideoSDKRTC21AnyRawHistogramMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "RawHistogramMetric", + "printedName": "RawHistogramMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC18RawHistogramMetricP", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoopRawHistogramMetric", + "printedName": "NoopRawHistogramMetric", + "children": [ + { + "kind": "Function", + "name": "record", + "printedName": "record(explicitBoundaries:counts:startDate:endDate:count:sum:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum8labelsetySayxG_SaySiG10Foundation0L0VAPSixAA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC22NoopRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum8labelsetySayxG_SaySiG10Foundation0L0VAPSixAA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(explicitBoundaries:counts:startDate:endDate:count:sum:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum6labelsySayxG_SaySiG10Foundation0L0VAPSixSDyS2SGtF", + "mangledName": "$s11VideoSDKRTC22NoopRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum6labelsySayxG_SaySiG10Foundation0L0VAPSixSDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopRawHistogramMetric", + "printedName": "VideoSDKRTC.NoopRawHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22NoopRawHistogramMetricV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22NoopRawHistogramMetricVACyxGycfc", + "mangledName": "$s11VideoSDKRTC22NoopRawHistogramMetricVACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawHistogramMetric", + "printedName": "VideoSDKRTC.BoundRawHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopRawHistogramMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC22NoopRawHistogramMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawHistogramMetric", + "printedName": "VideoSDKRTC.BoundRawHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopRawHistogramMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC22NoopRawHistogramMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22NoopRawHistogramMetricV", + "mangledName": "$s11VideoSDKRTC22NoopRawHistogramMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "RawHistogramMetric", + "printedName": "RawHistogramMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC18RawHistogramMetricP", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ReadableLogRecord", + "printedName": "ReadableLogRecord", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(resource:instrumentationScopeInfo:timestamp:observedTimestamp:spanContext:severity:body:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Severity?", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV8resource24instrumentationScopeInfo9timestamp17observedTimestamp11spanContext8severity4body10attributesAcA8ResourceV_AA015InstrumentationhI0V10Foundation4DateVARSgAA04SpanN0VSgAA8SeverityOSgSSSgSDySSAA14AttributeValueOGtcfc", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV8resource24instrumentationScopeInfo9timestamp17observedTimestamp11spanContext8severity4body10attributesAcA8ResourceV_AA015InstrumentationhI0V10Foundation4DateVARSgAA04SpanN0VSgAA8SeverityOSgSSSgSDySSAA14AttributeValueOGtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instrumentationScopeInfo", + "printedName": "instrumentationScopeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV24instrumentationScopeInfoAA015InstrumentationgH0Vvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV24instrumentationScopeInfoAA015InstrumentationgH0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV24instrumentationScopeInfoAA015InstrumentationgH0Vvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV24instrumentationScopeInfoAA015InstrumentationgH0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV9timestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV9timestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV9timestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV9timestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "observedTimestamp", + "printedName": "observedTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV17observedTimestamp10Foundation4DateVSgvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV17observedTimestamp10Foundation4DateVSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV17observedTimestamp10Foundation4DateVSgvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV17observedTimestamp10Foundation4DateVSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanContext", + "printedName": "spanContext", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV11spanContextAA04SpanG0VSgvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV11spanContextAA04SpanG0VSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV11spanContextAA04SpanG0VSgvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV11spanContextAA04SpanG0VSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "severity", + "printedName": "severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Severity?", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV8severityAA8SeverityOSgvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV8severityAA8SeverityOSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Severity?", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV8severityAA8SeverityOSgvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV8severityAA8SeverityOSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "body", + "printedName": "body", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV4bodySSSgvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV4bodySSSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV4bodySSSgvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV4bodySSSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ReadableSpan", + "printedName": "ReadableSpan", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ReadableSpanP4nameSSvp", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP4nameSSvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "overriding": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ReadableSpanP4nameSSvg", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP4nameSSvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReadableSpan>", + "sugared_genericSig": "", + "protocolReq": true, + "overriding": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ReadableSpanP4nameSSvs", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP4nameSSvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReadableSpan>", + "sugared_genericSig": "", + "protocolReq": true, + "overriding": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ReadableSpanP4nameSSvM", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP4nameSSvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReadableSpan>", + "sugared_genericSig": "", + "protocolReq": true, + "overriding": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "instrumentationScopeInfo", + "printedName": "instrumentationScopeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ReadableSpanP24instrumentationScopeInfoAA015InstrumentationfG0Vvp", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP24instrumentationScopeInfoAA015InstrumentationfG0Vvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ReadableSpanP24instrumentationScopeInfoAA015InstrumentationfG0Vvg", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP24instrumentationScopeInfoAA015InstrumentationfG0Vvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReadableSpan>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "toSpanData", + "printedName": "toSpanData()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ReadableSpanP02toD4DataAA0dF0VyF", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP02toD4DataAA0dF0VyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReadableSpan>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hasEnded", + "printedName": "hasEnded", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ReadableSpanP8hasEndedSbvp", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP8hasEndedSbvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ReadableSpanP8hasEndedSbvg", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP8hasEndedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReadableSpan>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "latency", + "printedName": "latency", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ReadableSpanP7latencySdvp", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP7latencySdvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ReadableSpanP7latencySdvg", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP7latencySdvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReadableSpan>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC12ReadableSpanP", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Span", + "printedName": "Span", + "usr": "s:11VideoSDKRTC4SpanP", + "mangledName": "$s11VideoSDKRTC4SpanP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "RecordEventsReadableSpan", + "printedName": "RecordEventsReadableSpan", + "children": [ + { + "kind": "Var", + "name": "isRecording", + "printedName": "isRecording", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvs", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvM", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvs", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvM", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "spanLimits", + "printedName": "spanLimits", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC10spanLimitsAA0fH0Vvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC10spanLimitsAA0fH0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC10spanLimitsAA0fH0Vvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC10spanLimitsAA0fH0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "context", + "printedName": "context", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC7contextAA0F7ContextVvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC7contextAA0F7ContextVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC7contextAA0F7ContextVvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC7contextAA0F7ContextVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "parentContext", + "printedName": "parentContext", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC13parentContextAA0fH0VSgvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC13parentContextAA0fH0VSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC13parentContextAA0fH0VSgvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC13parentContextAA0fH0VSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasRemoteParent", + "printedName": "hasRemoteParent", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC15hasRemoteParentSbvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC15hasRemoteParentSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC15hasRemoteParentSbvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC15hasRemoteParentSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanProcessor", + "printedName": "spanProcessor", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC13spanProcessorAA0fH0_pvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC13spanProcessorAA0fH0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC13spanProcessorAA0fH0_pvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC13spanProcessorAA0fH0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "links", + "printedName": "links", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC5linksSayAA0F4DataV4LinkVGvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC5linksSayAA0F4DataV4LinkVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC5linksSayAA0F4DataV4LinkVGvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC5linksSayAA0F4DataV4LinkVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalRecordedLinks", + "printedName": "totalRecordedLinks", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC18totalRecordedLinksSivp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC18totalRecordedLinksSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC18totalRecordedLinksSivg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC18totalRecordedLinksSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxNumberOfAttributes", + "printedName": "maxNumberOfAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC21maxNumberOfAttributesSivp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC21maxNumberOfAttributesSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC21maxNumberOfAttributesSivg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC21maxNumberOfAttributesSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxNumberOfAttributesPerEvent", + "printedName": "maxNumberOfAttributesPerEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC29maxNumberOfAttributesPerEventSivp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC29maxNumberOfAttributesPerEventSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC29maxNumberOfAttributesPerEventSivg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC29maxNumberOfAttributesPerEventSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC4kindAA0F4KindOvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC4kindAA0F4KindOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC4kindAA0F4KindOvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC4kindAA0F4KindOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "clock", + "printedName": "clock", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC5clockAA5Clock_pvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC5clockAA5Clock_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC5clockAA5Clock_pvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC5clockAA5Clock_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instrumentationScopeInfo", + "printedName": "instrumentationScopeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC24instrumentationScopeInfoAA015InstrumentationhI0Vvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC24instrumentationScopeInfoAA015InstrumentationhI0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC24instrumentationScopeInfoAA015InstrumentationhI0Vvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC24instrumentationScopeInfoAA015InstrumentationhI0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "startTime", + "printedName": "startTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC9startTime10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC9startTime10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC9startTime10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC9startTime10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "events", + "printedName": "events", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC6eventsAA17ArrayWithCapacityVyAA0F4DataV5EventVGvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC6eventsAA17ArrayWithCapacityVyAA0F4DataV5EventVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC6eventsAA17ArrayWithCapacityVyAA0F4DataV5EventVGvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC6eventsAA17ArrayWithCapacityVyAA0F4DataV5EventVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalAttributeCount", + "printedName": "totalAttributeCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC19totalAttributeCountSivp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC19totalAttributeCountSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC19totalAttributeCountSivg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC19totalAttributeCountSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalRecordedEvents", + "printedName": "totalRecordedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC013totalRecordedD0Sivp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC013totalRecordedD0Sivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC013totalRecordedD0Sivg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC013totalRecordedD0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvs", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvM", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "latency", + "printedName": "latency", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC7latencySdvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC7latencySdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC7latencySdvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC7latencySdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endTime", + "printedName": "endTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC7endTime10Foundation4DateVSgvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC7endTime10Foundation4DateVSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC7endTime10Foundation4DateVSgvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC7endTime10Foundation4DateVSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasEnded", + "printedName": "hasEnded", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8hasEndedSbvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8hasEndedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8hasEndedSbvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8hasEndedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "startSpan", + "printedName": "startSpan(context:name:instrumentationScopeInfo:kind:parentContext:hasRemoteParent:spanLimits:spanProcessor:clock:resource:attributes:links:totalRecordedLinks:startTime:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordEventsReadableSpan", + "printedName": "VideoSDKRTC.RecordEventsReadableSpan", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "AttributesDictionary", + "printedName": "VideoSDKRTC.AttributesDictionary", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC05startF07context4name24instrumentationScopeInfo4kind13parentContext15hasRemoteParent10spanLimits0S9Processor5clock8resource10attributes5links18totalRecordedLinks0G4TimeAcA0fO0V_SSAA015InstrumentationkL0VAA0F4KindOATSgSbAA0fT0VAA0fU0_pAA5Clock_pAA8ResourceVAA20AttributesDictionaryVSayAA0F4DataV4LinkVGSi10Foundation4DateVSgtFZ", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC05startF07context4name24instrumentationScopeInfo4kind13parentContext15hasRemoteParent10spanLimits0S9Processor5clock8resource10attributes5links18totalRecordedLinks0G4TimeAcA0fO0V_SSAA015InstrumentationkL0VAA0F4KindOATSgSbAA0fT0VAA0fU0_pAA5Clock_pAA8ResourceVAA20AttributesDictionaryVSayAA0F4DataV4LinkVGSi10Foundation4DateVSgtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toSpanData", + "printedName": "toSpanData()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC02toF4DataAA0fH0VyF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC02toF4DataAA0fH0VyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC12setAttribute3key5valueySS_AA0H5ValueOSgtF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC12setAttribute3key5valueySS_AA0H5ValueOSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4nameySS_tF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4nameySS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:timestamp:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4name9timestampySS_10Foundation4DateVtF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4name9timestampySS_10Foundation4DateVtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4name10attributesySS_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4name10attributesySS_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:attributes:timestamp:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4name10attributes9timestampySS_SDySSAA14AttributeValueOG10Foundation4DateVtF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4name10attributes9timestampySS_SDySSAA14AttributeValueOG10Foundation4DateVtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "end", + "printedName": "end()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC3endyyF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC3endyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "end", + "printedName": "end(time:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC3end4timey10Foundation4DateV_tF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC3end4timey10Foundation4DateV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ReadableSpan", + "printedName": "ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP" + }, + { + "kind": "Conformance", + "name": "Span", + "printedName": "Span", + "usr": "s:11VideoSDKRTC4SpanP", + "mangledName": "$s11VideoSDKRTC4SpanP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "RegisteredReader", + "printedName": "RegisteredReader", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16RegisteredReaderC2ids5Int32Vvp", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC2ids5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16RegisteredReaderC2ids5Int32Vvg", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC2ids5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "reader", + "printedName": "reader", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricReader", + "printedName": "VideoSDKRTC.StableMetricReader", + "usr": "s:11VideoSDKRTC18StableMetricReaderP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16RegisteredReaderC6readerAA012StableMetricD0_pvp", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC6readerAA012StableMetricD0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricReader", + "printedName": "VideoSDKRTC.StableMetricReader", + "usr": "s:11VideoSDKRTC18StableMetricReaderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16RegisteredReaderC6readerAA012StableMetricD0_pvg", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC6readerAA012StableMetricD0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "registry", + "printedName": "registry", + "children": [ + { + "kind": "TypeNominal", + "name": "StableViewRegistry", + "printedName": "VideoSDKRTC.StableViewRegistry", + "usr": "s:11VideoSDKRTC18StableViewRegistryC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16RegisteredReaderC8registryAA18StableViewRegistryCvp", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC8registryAA18StableViewRegistryCvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableViewRegistry", + "printedName": "VideoSDKRTC.StableViewRegistry", + "usr": "s:11VideoSDKRTC18StableViewRegistryC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16RegisteredReaderC8registryAA18StableViewRegistryCvg", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC8registryAA18StableViewRegistryCvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastCollectedEpochNanos", + "printedName": "lastCollectedEpochNanos", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64VvM", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16RegisteredReaderC4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "RegisteredReader", + "printedName": "VideoSDKRTC.RegisteredReader", + "usr": "s:11VideoSDKRTC16RegisteredReaderC" + }, + { + "kind": "TypeNominal", + "name": "RegisteredReader", + "printedName": "VideoSDKRTC.RegisteredReader", + "usr": "s:11VideoSDKRTC16RegisteredReaderC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16RegisteredReaderC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16RegisteredReaderC9hashValueSivp", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16RegisteredReaderC9hashValueSivg", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16RegisteredReaderC", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "RegisteredView", + "printedName": "RegisteredView", + "children": [ + { + "kind": "Var", + "name": "selector", + "printedName": "selector", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentSelector", + "printedName": "VideoSDKRTC.InstrumentSelector", + "usr": "s:11VideoSDKRTC18InstrumentSelectorC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14RegisteredViewC8selectorAA18InstrumentSelectorCvp", + "mangledName": "$s11VideoSDKRTC14RegisteredViewC8selectorAA18InstrumentSelectorCvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentSelector", + "printedName": "VideoSDKRTC.InstrumentSelector", + "usr": "s:11VideoSDKRTC18InstrumentSelectorC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14RegisteredViewC8selectorAA18InstrumentSelectorCvg", + "mangledName": "$s11VideoSDKRTC14RegisteredViewC8selectorAA18InstrumentSelectorCvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "view", + "printedName": "view", + "children": [ + { + "kind": "TypeNominal", + "name": "StableView", + "printedName": "VideoSDKRTC.StableView", + "usr": "s:11VideoSDKRTC10StableViewC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14RegisteredViewC4viewAA06StableD0Cvp", + "mangledName": "$s11VideoSDKRTC14RegisteredViewC4viewAA06StableD0Cvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableView", + "printedName": "VideoSDKRTC.StableView", + "usr": "s:11VideoSDKRTC10StableViewC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14RegisteredViewC4viewAA06StableD0Cvg", + "mangledName": "$s11VideoSDKRTC14RegisteredViewC4viewAA06StableD0Cvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributeProcessor", + "printedName": "attributeProcessor", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14RegisteredViewC18attributeProcessorAA09AttributeF0Cvp", + "mangledName": "$s11VideoSDKRTC14RegisteredViewC18attributeProcessorAA09AttributeF0Cvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14RegisteredViewC18attributeProcessorAA09AttributeF0Cvg", + "mangledName": "$s11VideoSDKRTC14RegisteredViewC18attributeProcessorAA09AttributeF0Cvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC14RegisteredViewC", + "mangledName": "$s11VideoSDKRTC14RegisteredViewC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ReservoirCell", + "printedName": "ReservoirCell", + "declKind": "Class", + "usr": "s:11VideoSDKRTC13ReservoirCellC", + "mangledName": "$s11VideoSDKRTC13ReservoirCellC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ReservoirCellSelector", + "printedName": "ReservoirCellSelector", + "children": [ + { + "kind": "Function", + "name": "reservoirCellIndex", + "printedName": "reservoirCellIndex(for:value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReservoirCell]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReservoirCell", + "printedName": "VideoSDKRTC.ReservoirCell", + "usr": "s:11VideoSDKRTC13ReservoirCellC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21ReservoirCellSelectorP09reservoirD5Index3for5value10attributesSiSayAA0cD0CG_SiSDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC21ReservoirCellSelectorP09reservoirD5Index3for5value10attributesSiSayAA0cD0CG_SiSDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReservoirCellSelector>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reservoirCellIndex", + "printedName": "reservoirCellIndex(for:value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReservoirCell]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReservoirCell", + "printedName": "VideoSDKRTC.ReservoirCell", + "usr": "s:11VideoSDKRTC13ReservoirCellC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21ReservoirCellSelectorP09reservoirD5Index3for5value10attributesSiSayAA0cD0CG_SdSDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC21ReservoirCellSelectorP09reservoirD5Index3for5value10attributesSiSayAA0cD0CG_SdSDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReservoirCellSelector>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21ReservoirCellSelectorP5resetyyF", + "mangledName": "$s11VideoSDKRTC21ReservoirCellSelectorP5resetyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReservoirCellSelector>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC21ReservoirCellSelectorP", + "mangledName": "$s11VideoSDKRTC21ReservoirCellSelectorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Resource", + "printedName": "Resource", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvs", + "mangledName": "$s11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvM", + "mangledName": "$s11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8ResourceVACycfc", + "mangledName": "$s11VideoSDKRTC8ResourceVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8ResourceV10attributesACSDySSAA14AttributeValueOG_tcfc", + "mangledName": "$s11VideoSDKRTC8ResourceV10attributesACSDySSAA14AttributeValueOG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "merge", + "printedName": "merge(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8ResourceV5merge5otheryAC_tF", + "mangledName": "$s11VideoSDKRTC8ResourceV5merge5otheryAC_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "merging", + "printedName": "merging(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8ResourceV7merging5otherA2C_tF", + "mangledName": "$s11VideoSDKRTC8ResourceV7merging5otherA2C_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8ResourceV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC8ResourceV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8ResourceV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC8ResourceV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8ResourceV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC8ResourceV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8ResourceV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC8ResourceV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8ResourceV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC8ResourceV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8ResourceV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC8ResourceV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC8ResourceV", + "mangledName": "$s11VideoSDKRTC8ResourceV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "Opentelemetry_Proto_Resource_V1_Resource", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedAttributesCount", + "printedName": "droppedAttributesCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0VACycfc", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0VACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V9hashValueSivp", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V9hashValueSivg", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ResourceAdapter", + "printedName": "ResourceAdapter", + "children": [ + { + "kind": "Function", + "name": "toProtoResource", + "printedName": "toProtoResource(resource:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ResourceAdapterV07toProtoC08resourceAA014Opentelemetry_f1_c4_V1_C0VAA0C0V_tFZ", + "mangledName": "$s11VideoSDKRTC15ResourceAdapterV07toProtoC08resourceAA014Opentelemetry_f1_c4_V1_C0VAA0C0V_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC15ResourceAdapterV", + "mangledName": "$s11VideoSDKRTC15ResourceAdapterV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ResourceAttributes", + "printedName": "ResourceAttributes", + "children": [ + { + "kind": "Var", + "name": "browserBrands", + "printedName": "browserBrands", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13browserBrandsyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13browserBrandsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "browserPlatform", + "printedName": "browserPlatform", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO15browserPlatformyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO15browserPlatformyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "browserMobile", + "printedName": "browserMobile", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13browserMobileyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13browserMobileyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "browserLanguage", + "printedName": "browserLanguage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO15browserLanguageyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO15browserLanguageyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userAgentOriginal", + "printedName": "userAgentOriginal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO17userAgentOriginalyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO17userAgentOriginalyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudProvider", + "printedName": "cloudProvider", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13cloudProvideryA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13cloudProvideryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudAccountId", + "printedName": "cloudAccountId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14cloudAccountIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14cloudAccountIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudRegion", + "printedName": "cloudRegion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO11cloudRegionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO11cloudRegionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudResourceId", + "printedName": "cloudResourceId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO05cloudC2IdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO05cloudC2IdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudAvailabilityZone", + "printedName": "cloudAvailabilityZone", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO21cloudAvailabilityZoneyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO21cloudAvailabilityZoneyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudPlatform", + "printedName": "cloudPlatform", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13cloudPlatformyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13cloudPlatformyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsEcsContainerArn", + "printedName": "awsEcsContainerArn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18awsEcsContainerArnyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18awsEcsContainerArnyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsEcsClusterArn", + "printedName": "awsEcsClusterArn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16awsEcsClusterArnyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16awsEcsClusterArnyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsEcsLaunchtype", + "printedName": "awsEcsLaunchtype", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16awsEcsLaunchtypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16awsEcsLaunchtypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsEcsTaskArn", + "printedName": "awsEcsTaskArn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13awsEcsTaskArnyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13awsEcsTaskArnyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsEcsTaskFamily", + "printedName": "awsEcsTaskFamily", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16awsEcsTaskFamilyyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16awsEcsTaskFamilyyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsEcsTaskRevision", + "printedName": "awsEcsTaskRevision", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18awsEcsTaskRevisionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18awsEcsTaskRevisionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsEksClusterArn", + "printedName": "awsEksClusterArn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16awsEksClusterArnyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16awsEksClusterArnyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsLogGroupNames", + "printedName": "awsLogGroupNames", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16awsLogGroupNamesyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16awsLogGroupNamesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsLogGroupArns", + "printedName": "awsLogGroupArns", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO15awsLogGroupArnsyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO15awsLogGroupArnsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsLogStreamNames", + "printedName": "awsLogStreamNames", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO17awsLogStreamNamesyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO17awsLogStreamNamesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsLogStreamArns", + "printedName": "awsLogStreamArns", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16awsLogStreamArnsyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16awsLogStreamArnsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "herokuReleaseCreationTimestamp", + "printedName": "herokuReleaseCreationTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO30herokuReleaseCreationTimestampyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO30herokuReleaseCreationTimestampyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "herokuReleaseCommit", + "printedName": "herokuReleaseCommit", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19herokuReleaseCommityA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19herokuReleaseCommityA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "herokuAppId", + "printedName": "herokuAppId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO11herokuAppIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO11herokuAppIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "containerName", + "printedName": "containerName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13containerNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13containerNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "containerId", + "printedName": "containerId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO11containerIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO11containerIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "containerRuntime", + "printedName": "containerRuntime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16containerRuntimeyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16containerRuntimeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "containerImageName", + "printedName": "containerImageName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18containerImageNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18containerImageNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "containerImageTag", + "printedName": "containerImageTag", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO17containerImageTagyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO17containerImageTagyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "deploymentEnvironment", + "printedName": "deploymentEnvironment", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO21deploymentEnvironmentyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO21deploymentEnvironmentyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "deviceId", + "printedName": "deviceId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8deviceIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8deviceIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "deviceModelIdentifier", + "printedName": "deviceModelIdentifier", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO21deviceModelIdentifieryA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO21deviceModelIdentifieryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "deviceModelName", + "printedName": "deviceModelName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO15deviceModelNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO15deviceModelNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "deviceManufacturer", + "printedName": "deviceManufacturer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18deviceManufactureryA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18deviceManufactureryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasName", + "printedName": "faasName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8faasNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8faasNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasVersion", + "printedName": "faasVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO11faasVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO11faasVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasInstance", + "printedName": "faasInstance", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12faasInstanceyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12faasInstanceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasMaxMemory", + "printedName": "faasMaxMemory", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13faasMaxMemoryyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13faasMaxMemoryyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hostId", + "printedName": "hostId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO6hostIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO6hostIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hostName", + "printedName": "hostName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8hostNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8hostNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hostType", + "printedName": "hostType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8hostTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8hostTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hostArch", + "printedName": "hostArch", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8hostArchyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8hostArchyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hostImageName", + "printedName": "hostImageName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13hostImageNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13hostImageNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hostImageId", + "printedName": "hostImageId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO11hostImageIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO11hostImageIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hostImageVersion", + "printedName": "hostImageVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16hostImageVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16hostImageVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sClusterName", + "printedName": "k8sClusterName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14k8sClusterNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14k8sClusterNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sNodeName", + "printedName": "k8sNodeName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO11k8sNodeNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO11k8sNodeNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sNodeUid", + "printedName": "k8sNodeUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO10k8sNodeUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO10k8sNodeUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sNamespaceName", + "printedName": "k8sNamespaceName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16k8sNamespaceNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16k8sNamespaceNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sPodUid", + "printedName": "k8sPodUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO9k8sPodUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO9k8sPodUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sPodName", + "printedName": "k8sPodName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO10k8sPodNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO10k8sPodNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sContainerName", + "printedName": "k8sContainerName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16k8sContainerNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16k8sContainerNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sContainerRestartCount", + "printedName": "k8sContainerRestartCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO24k8sContainerRestartCountyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO24k8sContainerRestartCountyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sReplicasetUid", + "printedName": "k8sReplicasetUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16k8sReplicasetUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16k8sReplicasetUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sReplicasetName", + "printedName": "k8sReplicasetName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO17k8sReplicasetNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO17k8sReplicasetNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sDeploymentUid", + "printedName": "k8sDeploymentUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16k8sDeploymentUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16k8sDeploymentUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sDeploymentName", + "printedName": "k8sDeploymentName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO17k8sDeploymentNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO17k8sDeploymentNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sStatefulsetUid", + "printedName": "k8sStatefulsetUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO17k8sStatefulsetUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO17k8sStatefulsetUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sStatefulsetName", + "printedName": "k8sStatefulsetName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18k8sStatefulsetNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18k8sStatefulsetNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sDaemonsetUid", + "printedName": "k8sDaemonsetUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO15k8sDaemonsetUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO15k8sDaemonsetUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sDaemonsetName", + "printedName": "k8sDaemonsetName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16k8sDaemonsetNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16k8sDaemonsetNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sJobUid", + "printedName": "k8sJobUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO9k8sJobUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO9k8sJobUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sJobName", + "printedName": "k8sJobName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO10k8sJobNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO10k8sJobNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sCronjobUid", + "printedName": "k8sCronjobUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13k8sCronjobUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13k8sCronjobUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sCronjobName", + "printedName": "k8sCronjobName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14k8sCronjobNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14k8sCronjobNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "osType", + "printedName": "osType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO6osTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO6osTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "osDescription", + "printedName": "osDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13osDescriptionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13osDescriptionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "osName", + "printedName": "osName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO6osNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO6osNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "osVersion", + "printedName": "osVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO9osVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO9osVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processPid", + "printedName": "processPid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO10processPidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO10processPidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processParentPid", + "printedName": "processParentPid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16processParentPidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16processParentPidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processExecutableName", + "printedName": "processExecutableName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO21processExecutableNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO21processExecutableNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processExecutablePath", + "printedName": "processExecutablePath", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO21processExecutablePathyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO21processExecutablePathyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processCommand", + "printedName": "processCommand", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14processCommandyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14processCommandyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processCommandLine", + "printedName": "processCommandLine", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18processCommandLineyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18processCommandLineyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processCommandArgs", + "printedName": "processCommandArgs", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18processCommandArgsyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18processCommandArgsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processOwner", + "printedName": "processOwner", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12processOwneryA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12processOwneryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processRuntimeName", + "printedName": "processRuntimeName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18processRuntimeNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18processRuntimeNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processRuntimeVersion", + "printedName": "processRuntimeVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO21processRuntimeVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO21processRuntimeVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processRuntimeDescription", + "printedName": "processRuntimeDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO25processRuntimeDescriptionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO25processRuntimeDescriptionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "serviceName", + "printedName": "serviceName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO11serviceNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO11serviceNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "serviceNamespace", + "printedName": "serviceNamespace", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16serviceNamespaceyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16serviceNamespaceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "serviceInstanceId", + "printedName": "serviceInstanceId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO17serviceInstanceIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO17serviceInstanceIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "serviceVersion", + "printedName": "serviceVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14serviceVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14serviceVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "telemetrySdkName", + "printedName": "telemetrySdkName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16telemetrySdkNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16telemetrySdkNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "telemetrySdkLanguage", + "printedName": "telemetrySdkLanguage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO20telemetrySdkLanguageyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO20telemetrySdkLanguageyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "telemetrySdkVersion", + "printedName": "telemetrySdkVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19telemetrySdkVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19telemetrySdkVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "telemetryAutoVersion", + "printedName": "telemetryAutoVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO20telemetryAutoVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO20telemetryAutoVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "webengineName", + "printedName": "webengineName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13webengineNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13webengineNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "webengineVersion", + "printedName": "webengineVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16webengineVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16webengineVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "webengineDescription", + "printedName": "webengineDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO20webengineDescriptionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO20webengineDescriptionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "otelScopeName", + "printedName": "otelScopeName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13otelScopeNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13otelScopeNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "otelScopeVersion", + "printedName": "otelScopeVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16otelScopeVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16otelScopeVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "otelLibraryName", + "printedName": "otelLibraryName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO15otelLibraryNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO15otelLibraryNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "otelLibraryVersion", + "printedName": "otelLibraryVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18otelLibraryVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18otelLibraryVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CloudProviderValues", + "printedName": "CloudProviderValues", + "children": [ + { + "kind": "Var", + "name": "alibabaCloud", + "printedName": "alibabaCloud", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07alibabaE0AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07alibabaE0AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07alibabaE0AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07alibabaE0AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aws", + "printedName": "aws", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3awsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3awsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3awsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3awsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azure", + "printedName": "azure", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV5azureAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV5azureAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV5azureAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV5azureAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcp", + "printedName": "gcp", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3gcpAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3gcpAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3gcpAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3gcpAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "heroku", + "printedName": "heroku", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV6herokuAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV6herokuAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV6herokuAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV6herokuAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ibmCloud", + "printedName": "ibmCloud", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV03ibmE0AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV03ibmE0AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV03ibmE0AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV03ibmE0AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tencentCloud", + "printedName": "tencentCloud", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07tencentE0AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07tencentE0AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07tencentE0AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07tencentE0AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CloudPlatformValues", + "printedName": "CloudPlatformValues", + "children": [ + { + "kind": "Var", + "name": "alibabaCloudEcs", + "printedName": "alibabaCloudEcs", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE3EcsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE3EcsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE3EcsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE3EcsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "alibabaCloudFc", + "printedName": "alibabaCloudFc", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE2FcAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE2FcAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE2FcAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE2FcAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "alibabaCloudOpenshift", + "printedName": "alibabaCloudOpenshift", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE9OpenshiftAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE9OpenshiftAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE9OpenshiftAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE9OpenshiftAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awsEc2", + "printedName": "awsEc2", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEc2AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEc2AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEc2AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEc2AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awsEcs", + "printedName": "awsEcs", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEcsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEcsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEcsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEcsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awsEks", + "printedName": "awsEks", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEksAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEksAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEksAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEksAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awsLambda", + "printedName": "awsLambda", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV9awsLambdaAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV9awsLambdaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV9awsLambdaAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV9awsLambdaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awsElasticBeanstalk", + "printedName": "awsElasticBeanstalk", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19awsElasticBeanstalkAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19awsElasticBeanstalkAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19awsElasticBeanstalkAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19awsElasticBeanstalkAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awsAppRunner", + "printedName": "awsAppRunner", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsAppRunnerAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsAppRunnerAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsAppRunnerAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsAppRunnerAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awsOpenshift", + "printedName": "awsOpenshift", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsOpenshiftAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsOpenshiftAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsOpenshiftAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsOpenshiftAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azureVm", + "printedName": "azureVm", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV7azureVmAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV7azureVmAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV7azureVmAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV7azureVmAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azureContainerInstances", + "printedName": "azureContainerInstances", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV23azureContainerInstancesAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV23azureContainerInstancesAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV23azureContainerInstancesAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV23azureContainerInstancesAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azureAks", + "printedName": "azureAks", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV8azureAksAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV8azureAksAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV8azureAksAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV8azureAksAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azureFunctions", + "printedName": "azureFunctions", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureFunctionsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureFunctionsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureFunctionsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureFunctionsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azureAppService", + "printedName": "azureAppService", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV15azureAppServiceAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV15azureAppServiceAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV15azureAppServiceAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV15azureAppServiceAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azureOpenshift", + "printedName": "azureOpenshift", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureOpenshiftAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureOpenshiftAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureOpenshiftAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureOpenshiftAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcpComputeEngine", + "printedName": "gcpComputeEngine", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV16gcpComputeEngineAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV16gcpComputeEngineAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV16gcpComputeEngineAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV16gcpComputeEngineAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcpCloudRun", + "printedName": "gcpCloudRun", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE3RunAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE3RunAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE3RunAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE3RunAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcpKubernetesEngine", + "printedName": "gcpKubernetesEngine", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19gcpKubernetesEngineAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19gcpKubernetesEngineAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19gcpKubernetesEngineAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19gcpKubernetesEngineAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcpCloudFunctions", + "printedName": "gcpCloudFunctions", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE9FunctionsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE9FunctionsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE9FunctionsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE9FunctionsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcpAppEngine", + "printedName": "gcpAppEngine", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpAppEngineAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpAppEngineAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpAppEngineAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpAppEngineAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcpOpenshift", + "printedName": "gcpOpenshift", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpOpenshiftAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpOpenshiftAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpOpenshiftAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpOpenshiftAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ibmCloudOpenshift", + "printedName": "ibmCloudOpenshift", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03ibmE9OpenshiftAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03ibmE9OpenshiftAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03ibmE9OpenshiftAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03ibmE9OpenshiftAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tencentCloudCvm", + "printedName": "tencentCloudCvm", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3CvmAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3CvmAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3CvmAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3CvmAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tencentCloudEks", + "printedName": "tencentCloudEks", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3EksAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3EksAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3EksAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3EksAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tencentCloudScf", + "printedName": "tencentCloudScf", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3ScfAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3ScfAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3ScfAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3ScfAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AwsEcsLaunchtypeValues", + "printedName": "AwsEcsLaunchtypeValues", + "children": [ + { + "kind": "Var", + "name": "ec2", + "printedName": "ec2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues.Type) -> VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "AwsEcsLaunchtypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AwsEcsLaunchtypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO3ec2yA2EmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO3ec2yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fargate", + "printedName": "fargate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues.Type) -> VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "AwsEcsLaunchtypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AwsEcsLaunchtypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO7fargateyA2EmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO7fargateyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "AwsEcsLaunchtypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "HostArchValues", + "printedName": "HostArchValues", + "children": [ + { + "kind": "Var", + "name": "amd64", + "printedName": "amd64", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5amd64AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5amd64AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5amd64AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5amd64AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "arm32", + "printedName": "arm32", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm32AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm32AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm32AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm32AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "arm64", + "printedName": "arm64", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm64AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm64AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm64AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm64AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ia64", + "printedName": "ia64", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV4ia64AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV4ia64AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV4ia64AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV4ia64AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ppc32", + "printedName": "ppc32", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc32AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc32AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc32AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc32AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ppc64", + "printedName": "ppc64", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc64AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc64AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc64AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc64AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "s390x", + "printedName": "s390x", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5s390xAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5s390xAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5s390xAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5s390xAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "x86", + "printedName": "x86", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV3x86AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV3x86AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV3x86AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV3x86AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OsTypeValues", + "printedName": "OsTypeValues", + "children": [ + { + "kind": "Var", + "name": "windows", + "printedName": "windows", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7windowsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7windowsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7windowsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7windowsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "linux", + "printedName": "linux", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV5linuxAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV5linuxAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV5linuxAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV5linuxAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "darwin", + "printedName": "darwin", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6darwinAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6darwinAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6darwinAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6darwinAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "freebsd", + "printedName": "freebsd", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7freebsdAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7freebsdAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7freebsdAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7freebsdAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "netbsd", + "printedName": "netbsd", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6netbsdAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6netbsdAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6netbsdAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6netbsdAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "openbsd", + "printedName": "openbsd", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7openbsdAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7openbsdAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7openbsdAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7openbsdAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dragonflybsd", + "printedName": "dragonflybsd", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV12dragonflybsdAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV12dragonflybsdAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV12dragonflybsdAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV12dragonflybsdAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hpux", + "printedName": "hpux", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV4hpuxAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV4hpuxAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV4hpuxAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV4hpuxAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aix", + "printedName": "aix", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV3aixAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV3aixAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV3aixAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV3aixAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "solaris", + "printedName": "solaris", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7solarisAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7solarisAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7solarisAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7solarisAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "zOs", + "printedName": "zOs", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV01zE0AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV01zE0AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV01zE0AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV01zE0AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TelemetrySdkLanguageValues", + "printedName": "TelemetrySdkLanguageValues", + "children": [ + { + "kind": "Var", + "name": "cpp", + "printedName": "cpp", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3cppAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3cppAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3cppAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3cppAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dotnet", + "printedName": "dotnet", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6dotnetAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6dotnetAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6dotnetAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6dotnetAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "erlang", + "printedName": "erlang", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6erlangAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6erlangAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6erlangAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6erlangAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "go", + "printedName": "go", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV2goAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV2goAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV2goAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV2goAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "java", + "printedName": "java", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4javaAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4javaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4javaAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4javaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nodejs", + "printedName": "nodejs", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6nodejsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6nodejsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6nodejsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6nodejsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "php", + "printedName": "php", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3phpAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3phpAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3phpAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3phpAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "python", + "printedName": "python", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6pythonAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6pythonAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6pythonAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6pythonAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ruby", + "printedName": "ruby", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4rubyAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4rubyAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4rubyAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4rubyAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "webjs", + "printedName": "webjs", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5webjsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5webjsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5webjsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5webjsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "swift", + "printedName": "swift", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5swiftAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5swiftAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5swiftAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5swiftAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ResourceAttributes?", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18ResourceAttributesO", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC2eeoiySbAA18ResourceAttributesO_SStF", + "mangledName": "$s11VideoSDKRTC2eeoiySbAA18ResourceAttributesO_SStF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC2eeoiySbSS_AA18ResourceAttributesOtF", + "mangledName": "$s11VideoSDKRTC2eeoiySbSS_AA18ResourceAttributesOtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Mediasoup", + "printedName": "Mediasoup", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Mediasoup", + "printedName": "Mediasoup", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Sampler", + "printedName": "Sampler", + "children": [ + { + "kind": "Function", + "name": "shouldSample", + "printedName": "shouldSample(parentContext:traceId:name:kind:attributes:parentLinks:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Decision", + "printedName": "VideoSDKRTC.Decision", + "usr": "s:11VideoSDKRTC8DecisionP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7SamplerP12shouldSample13parentContext7traceId4name4kind10attributes0F5LinksAA8Decision_pAA04SpanG0VSg_AA05TraceI0VSSAA0O4KindOSDySSAA14AttributeValueOGSayAA0O4DataV4LinkVGtF", + "mangledName": "$s11VideoSDKRTC7SamplerP12shouldSample13parentContext7traceId4name4kind10attributes0F5LinksAA8Decision_pAA04SpanG0VSg_AA05TraceI0VSSAA0O4KindOSDySSAA14AttributeValueOGSayAA0O4DataV4LinkVGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Sampler>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC7SamplerP", + "mangledName": "$s11VideoSDKRTC7SamplerP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject, τ_0_0 : Swift.CustomStringConvertible>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Decision", + "printedName": "Decision", + "children": [ + { + "kind": "Var", + "name": "isSampled", + "printedName": "isSampled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8DecisionP9isSampledSbvp", + "mangledName": "$s11VideoSDKRTC8DecisionP9isSampledSbvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8DecisionP9isSampledSbvg", + "mangledName": "$s11VideoSDKRTC8DecisionP9isSampledSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Decision>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8DecisionP10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC8DecisionP10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8DecisionP10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC8DecisionP10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Decision>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC8DecisionP", + "mangledName": "$s11VideoSDKRTC8DecisionP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Samplers", + "printedName": "Samplers", + "children": [ + { + "kind": "Var", + "name": "alwaysOn", + "printedName": "alwaysOn", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvpZ", + "mangledName": "$s11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvgZ", + "mangledName": "$s11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvsZ", + "mangledName": "$s11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvMZ", + "mangledName": "$s11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "alwaysOff", + "printedName": "alwaysOff", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvpZ", + "mangledName": "$s11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvgZ", + "mangledName": "$s11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvsZ", + "mangledName": "$s11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvMZ", + "mangledName": "$s11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "traceIdRatio", + "printedName": "traceIdRatio(ratio:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SamplersO12traceIdRatio5ratioAA7Sampler_pSd_tFZ", + "mangledName": "$s11VideoSDKRTC8SamplersO12traceIdRatio5ratioAA7Sampler_pSd_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parentBased", + "printedName": "parentBased(root:remoteParentSampled:remoteParentNotSampled:localParentSampled:localParentNotSampled:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + }, + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Sampler?", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Sampler?", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Sampler?", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Sampler?", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SamplersO11parentBased4root19remoteParentSampled0gh3NotI005localhI00khjI0AA7Sampler_pAaJ_p_AaJ_pSgA3KtFZ", + "mangledName": "$s11VideoSDKRTC8SamplersO11parentBased4root19remoteParentSampled0gh3NotI005localhI00khjI0AA7Sampler_pAaJ_p_AaJ_pSgA3KtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC8SamplersO", + "mangledName": "$s11VideoSDKRTC8SamplersO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SemanticAttributes", + "printedName": "SemanticAttributes", + "children": [ + { + "kind": "Var", + "name": "exceptionType", + "printedName": "exceptionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO13exceptionTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO13exceptionTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "exceptionMessage", + "printedName": "exceptionMessage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16exceptionMessageyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16exceptionMessageyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "exceptionStacktrace", + "printedName": "exceptionStacktrace", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19exceptionStacktraceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19exceptionStacktraceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpMethod", + "printedName": "httpMethod", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10httpMethodyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10httpMethodyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpStatusCode", + "printedName": "httpStatusCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14httpStatusCodeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14httpStatusCodeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netProtocolName", + "printedName": "netProtocolName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15netProtocolNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15netProtocolNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netProtocolVersion", + "printedName": "netProtocolVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18netProtocolVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18netProtocolVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netPeerName", + "printedName": "netPeerName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11netPeerNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11netPeerNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netPeerPort", + "printedName": "netPeerPort", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11netPeerPortyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11netPeerPortyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpScheme", + "printedName": "httpScheme", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10httpSchemeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10httpSchemeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpRoute", + "printedName": "httpRoute", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO9httpRouteyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO9httpRouteyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostName", + "printedName": "netHostName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11netHostNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11netHostNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostPort", + "printedName": "netHostPort", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11netHostPortyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11netHostPortyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO9eventNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO9eventNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "eventDomain", + "printedName": "eventDomain", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11eventDomainyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11eventDomainyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "logRecordUid", + "printedName": "logRecordUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO12logRecordUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO12logRecordUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "featureFlagKey", + "printedName": "featureFlagKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14featureFlagKeyyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14featureFlagKeyyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "featureFlagProviderName", + "printedName": "featureFlagProviderName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23featureFlagProviderNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23featureFlagProviderNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "featureFlagVariant", + "printedName": "featureFlagVariant", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18featureFlagVariantyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18featureFlagVariantyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsLambdaInvokedArn", + "printedName": "awsLambdaInvokedArn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19awsLambdaInvokedArnyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19awsLambdaInvokedArnyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudeventsEventId", + "printedName": "cloudeventsEventId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18cloudeventsEventIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18cloudeventsEventIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudeventsEventSource", + "printedName": "cloudeventsEventSource", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO22cloudeventsEventSourceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO22cloudeventsEventSourceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudeventsEventSpecVersion", + "printedName": "cloudeventsEventSpecVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27cloudeventsEventSpecVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27cloudeventsEventSpecVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudeventsEventType", + "printedName": "cloudeventsEventType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20cloudeventsEventTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20cloudeventsEventTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudeventsEventSubject", + "printedName": "cloudeventsEventSubject", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23cloudeventsEventSubjectyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23cloudeventsEventSubjectyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "opentracingRefType", + "printedName": "opentracingRefType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18opentracingRefTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18opentracingRefTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbSystem", + "printedName": "dbSystem", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8dbSystemyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8dbSystemyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbConnectionString", + "printedName": "dbConnectionString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18dbConnectionStringyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18dbConnectionStringyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbUser", + "printedName": "dbUser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO6dbUseryA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO6dbUseryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbJdbcDriverClassname", + "printedName": "dbJdbcDriverClassname", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21dbJdbcDriverClassnameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21dbJdbcDriverClassnameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbName", + "printedName": "dbName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO6dbNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO6dbNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbStatement", + "printedName": "dbStatement", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11dbStatementyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11dbStatementyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbOperation", + "printedName": "dbOperation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11dbOperationyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11dbOperationyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netSockPeerAddr", + "printedName": "netSockPeerAddr", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15netSockPeerAddryA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15netSockPeerAddryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netSockPeerPort", + "printedName": "netSockPeerPort", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15netSockPeerPortyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15netSockPeerPortyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netSockFamily", + "printedName": "netSockFamily", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO13netSockFamilyyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO13netSockFamilyyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netSockPeerName", + "printedName": "netSockPeerName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15netSockPeerNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15netSockPeerNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netTransport", + "printedName": "netTransport", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO12netTransportyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO12netTransportyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbMssqlInstanceName", + "printedName": "dbMssqlInstanceName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19dbMssqlInstanceNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19dbMssqlInstanceNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCassandraPageSize", + "printedName": "dbCassandraPageSize", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19dbCassandraPageSizeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19dbCassandraPageSizeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCassandraConsistencyLevel", + "printedName": "dbCassandraConsistencyLevel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27dbCassandraConsistencyLevelyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27dbCassandraConsistencyLevelyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCassandraTable", + "printedName": "dbCassandraTable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16dbCassandraTableyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16dbCassandraTableyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCassandraIdempotence", + "printedName": "dbCassandraIdempotence", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO22dbCassandraIdempotenceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO22dbCassandraIdempotenceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCassandraSpeculativeExecutionCount", + "printedName": "dbCassandraSpeculativeExecutionCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO36dbCassandraSpeculativeExecutionCountyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO36dbCassandraSpeculativeExecutionCountyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCassandraCoordinatorId", + "printedName": "dbCassandraCoordinatorId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24dbCassandraCoordinatorIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24dbCassandraCoordinatorIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCassandraCoordinatorDc", + "printedName": "dbCassandraCoordinatorDc", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24dbCassandraCoordinatorDcyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24dbCassandraCoordinatorDcyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbRedisDatabaseIndex", + "printedName": "dbRedisDatabaseIndex", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20dbRedisDatabaseIndexyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20dbRedisDatabaseIndexyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbMongodbCollection", + "printedName": "dbMongodbCollection", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19dbMongodbCollectionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19dbMongodbCollectionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbSqlTable", + "printedName": "dbSqlTable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10dbSqlTableyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10dbSqlTableyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbClientId", + "printedName": "dbCosmosdbClientId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18dbCosmosdbClientIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18dbCosmosdbClientIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbOperationType", + "printedName": "dbCosmosdbOperationType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23dbCosmosdbOperationTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23dbCosmosdbOperationTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userAgentOriginal", + "printedName": "userAgentOriginal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17userAgentOriginalyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17userAgentOriginalyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbConnectionMode", + "printedName": "dbCosmosdbConnectionMode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24dbCosmosdbConnectionModeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24dbCosmosdbConnectionModeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbContainer", + "printedName": "dbCosmosdbContainer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19dbCosmosdbContaineryA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19dbCosmosdbContaineryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbRequestContentLength", + "printedName": "dbCosmosdbRequestContentLength", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30dbCosmosdbRequestContentLengthyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30dbCosmosdbRequestContentLengthyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbStatusCode", + "printedName": "dbCosmosdbStatusCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20dbCosmosdbStatusCodeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20dbCosmosdbStatusCodeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbSubStatusCode", + "printedName": "dbCosmosdbSubStatusCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23dbCosmosdbSubStatusCodeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23dbCosmosdbSubStatusCodeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbRequestCharge", + "printedName": "dbCosmosdbRequestCharge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23dbCosmosdbRequestChargeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23dbCosmosdbRequestChargeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "otelStatusCode", + "printedName": "otelStatusCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14otelStatusCodeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14otelStatusCodeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "otelStatusDescription", + "printedName": "otelStatusDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21otelStatusDescriptionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21otelStatusDescriptionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasTrigger", + "printedName": "faasTrigger", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11faasTriggeryA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11faasTriggeryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasInvocationId", + "printedName": "faasInvocationId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16faasInvocationIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16faasInvocationIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudResourceId", + "printedName": "cloudResourceId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15cloudResourceIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15cloudResourceIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasDocumentCollection", + "printedName": "faasDocumentCollection", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO22faasDocumentCollectionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO22faasDocumentCollectionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasDocumentOperation", + "printedName": "faasDocumentOperation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21faasDocumentOperationyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21faasDocumentOperationyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasDocumentTime", + "printedName": "faasDocumentTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16faasDocumentTimeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16faasDocumentTimeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasDocumentName", + "printedName": "faasDocumentName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16faasDocumentNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16faasDocumentNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpTarget", + "printedName": "httpTarget", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10httpTargetyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10httpTargetyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpClientIp", + "printedName": "httpClientIp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO12httpClientIpyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO12httpClientIpyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netSockHostAddr", + "printedName": "netSockHostAddr", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15netSockHostAddryA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15netSockHostAddryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netSockHostPort", + "printedName": "netSockHostPort", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15netSockHostPortyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15netSockHostPortyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingSystem", + "printedName": "messagingSystem", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15messagingSystemyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15messagingSystemyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingOperation", + "printedName": "messagingOperation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18messagingOperationyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18messagingOperationyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingBatchMessageCount", + "printedName": "messagingBatchMessageCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26messagingBatchMessageCountyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26messagingBatchMessageCountyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingMessageId", + "printedName": "messagingMessageId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18messagingMessageIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18messagingMessageIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingMessageConversationId", + "printedName": "messagingMessageConversationId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30messagingMessageConversationIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30messagingMessageConversationIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingMessagePayloadSizeBytes", + "printedName": "messagingMessagePayloadSizeBytes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO32messagingMessagePayloadSizeBytesyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO32messagingMessagePayloadSizeBytesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingMessagePayloadCompressedSizeBytes", + "printedName": "messagingMessagePayloadCompressedSizeBytes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO42messagingMessagePayloadCompressedSizeBytesyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO42messagingMessagePayloadCompressedSizeBytesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasTime", + "printedName": "faasTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8faasTimeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8faasTimeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasCron", + "printedName": "faasCron", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8faasCronyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8faasCronyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasColdstart", + "printedName": "faasColdstart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO13faasColdstartyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO13faasColdstartyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasInvokedName", + "printedName": "faasInvokedName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15faasInvokedNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15faasInvokedNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasInvokedProvider", + "printedName": "faasInvokedProvider", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19faasInvokedProvideryA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19faasInvokedProvideryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasInvokedRegion", + "printedName": "faasInvokedRegion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17faasInvokedRegionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17faasInvokedRegionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostConnectionType", + "printedName": "netHostConnectionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21netHostConnectionTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21netHostConnectionTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostConnectionSubtype", + "printedName": "netHostConnectionSubtype", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24netHostConnectionSubtypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24netHostConnectionSubtypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostCarrierName", + "printedName": "netHostCarrierName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18netHostCarrierNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18netHostCarrierNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostCarrierMcc", + "printedName": "netHostCarrierMcc", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17netHostCarrierMccyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17netHostCarrierMccyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostCarrierMnc", + "printedName": "netHostCarrierMnc", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17netHostCarrierMncyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17netHostCarrierMncyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostCarrierIcc", + "printedName": "netHostCarrierIcc", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17netHostCarrierIccyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17netHostCarrierIccyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "peerService", + "printedName": "peerService", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11peerServiceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11peerServiceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "enduserId", + "printedName": "enduserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO9enduserIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO9enduserIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "enduserRole", + "printedName": "enduserRole", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11enduserRoleyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11enduserRoleyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "enduserScope", + "printedName": "enduserScope", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO12enduserScopeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO12enduserScopeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "threadId", + "printedName": "threadId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8threadIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8threadIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "threadName", + "printedName": "threadName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10threadNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10threadNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "codeFunction", + "printedName": "codeFunction", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO12codeFunctionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO12codeFunctionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "codeNamespace", + "printedName": "codeNamespace", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO13codeNamespaceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO13codeNamespaceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "codeFilepath", + "printedName": "codeFilepath", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO12codeFilepathyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO12codeFilepathyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "codeLineno", + "printedName": "codeLineno", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10codeLinenoyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10codeLinenoyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "codeColumn", + "printedName": "codeColumn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10codeColumnyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10codeColumnyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpRequestContentLength", + "printedName": "httpRequestContentLength", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24httpRequestContentLengthyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24httpRequestContentLengthyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpResponseContentLength", + "printedName": "httpResponseContentLength", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25httpResponseContentLengthyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25httpResponseContentLengthyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpUrl", + "printedName": "httpUrl", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO7httpUrlyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO7httpUrlyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpResendCount", + "printedName": "httpResendCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15httpResendCountyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15httpResendCountyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcSystem", + "printedName": "rpcSystem", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO9rpcSystemyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO9rpcSystemyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcService", + "printedName": "rpcService", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10rpcServiceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10rpcServiceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcMethod", + "printedName": "rpcMethod", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO9rpcMethodyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO9rpcMethodyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsRequestId", + "printedName": "awsRequestId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO12awsRequestIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO12awsRequestIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbTableNames", + "printedName": "awsDynamodbTableNames", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21awsDynamodbTableNamesyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21awsDynamodbTableNamesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbConsumedCapacity", + "printedName": "awsDynamodbConsumedCapacity", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27awsDynamodbConsumedCapacityyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27awsDynamodbConsumedCapacityyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbItemCollectionMetrics", + "printedName": "awsDynamodbItemCollectionMetrics", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO32awsDynamodbItemCollectionMetricsyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO32awsDynamodbItemCollectionMetricsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbProvisionedReadCapacity", + "printedName": "awsDynamodbProvisionedReadCapacity", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34awsDynamodbProvisionedReadCapacityyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34awsDynamodbProvisionedReadCapacityyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbProvisionedWriteCapacity", + "printedName": "awsDynamodbProvisionedWriteCapacity", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO35awsDynamodbProvisionedWriteCapacityyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO35awsDynamodbProvisionedWriteCapacityyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbConsistentRead", + "printedName": "awsDynamodbConsistentRead", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25awsDynamodbConsistentReadyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25awsDynamodbConsistentReadyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbProjection", + "printedName": "awsDynamodbProjection", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21awsDynamodbProjectionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21awsDynamodbProjectionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbLimit", + "printedName": "awsDynamodbLimit", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16awsDynamodbLimityA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16awsDynamodbLimityA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbAttributesToGet", + "printedName": "awsDynamodbAttributesToGet", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO011awsDynamodbD5ToGetyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO011awsDynamodbD5ToGetyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbIndexName", + "printedName": "awsDynamodbIndexName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20awsDynamodbIndexNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20awsDynamodbIndexNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbSelect", + "printedName": "awsDynamodbSelect", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17awsDynamodbSelectyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17awsDynamodbSelectyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbGlobalSecondaryIndexes", + "printedName": "awsDynamodbGlobalSecondaryIndexes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33awsDynamodbGlobalSecondaryIndexesyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33awsDynamodbGlobalSecondaryIndexesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbLocalSecondaryIndexes", + "printedName": "awsDynamodbLocalSecondaryIndexes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO32awsDynamodbLocalSecondaryIndexesyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO32awsDynamodbLocalSecondaryIndexesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbExclusiveStartTable", + "printedName": "awsDynamodbExclusiveStartTable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30awsDynamodbExclusiveStartTableyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30awsDynamodbExclusiveStartTableyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbTableCount", + "printedName": "awsDynamodbTableCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21awsDynamodbTableCountyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21awsDynamodbTableCountyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbScanForward", + "printedName": "awsDynamodbScanForward", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO22awsDynamodbScanForwardyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO22awsDynamodbScanForwardyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbSegment", + "printedName": "awsDynamodbSegment", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18awsDynamodbSegmentyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18awsDynamodbSegmentyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbTotalSegments", + "printedName": "awsDynamodbTotalSegments", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24awsDynamodbTotalSegmentsyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24awsDynamodbTotalSegmentsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbCount", + "printedName": "awsDynamodbCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16awsDynamodbCountyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16awsDynamodbCountyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbScannedCount", + "printedName": "awsDynamodbScannedCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23awsDynamodbScannedCountyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23awsDynamodbScannedCountyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbAttributeDefinitions", + "printedName": "awsDynamodbAttributeDefinitions", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO31awsDynamodbAttributeDefinitionsyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO31awsDynamodbAttributeDefinitionsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbGlobalSecondaryIndexUpdates", + "printedName": "awsDynamodbGlobalSecondaryIndexUpdates", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO38awsDynamodbGlobalSecondaryIndexUpdatesyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO38awsDynamodbGlobalSecondaryIndexUpdatesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsS3Bucket", + "printedName": "awsS3Bucket", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11awsS3BucketyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11awsS3BucketyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsS3Key", + "printedName": "awsS3Key", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8awsS3KeyyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8awsS3KeyyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsS3CopySource", + "printedName": "awsS3CopySource", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15awsS3CopySourceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15awsS3CopySourceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsS3UploadId", + "printedName": "awsS3UploadId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO13awsS3UploadIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO13awsS3UploadIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsS3Delete", + "printedName": "awsS3Delete", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11awsS3DeleteyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11awsS3DeleteyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsS3PartNumber", + "printedName": "awsS3PartNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15awsS3PartNumberyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15awsS3PartNumberyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "graphqlOperationName", + "printedName": "graphqlOperationName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20graphqlOperationNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20graphqlOperationNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "graphqlOperationType", + "printedName": "graphqlOperationType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20graphqlOperationTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20graphqlOperationTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "graphqlDocument", + "printedName": "graphqlDocument", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15graphqlDocumentyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15graphqlDocumentyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingDestinationName", + "printedName": "messagingDestinationName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24messagingDestinationNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24messagingDestinationNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingSourceName", + "printedName": "messagingSourceName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19messagingSourceNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19messagingSourceNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingDestinationTemplate", + "printedName": "messagingDestinationTemplate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO28messagingDestinationTemplateyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO28messagingDestinationTemplateyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingDestinationTemporary", + "printedName": "messagingDestinationTemporary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29messagingDestinationTemporaryyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29messagingDestinationTemporaryyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingDestinationAnonymous", + "printedName": "messagingDestinationAnonymous", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29messagingDestinationAnonymousyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29messagingDestinationAnonymousyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingSourceTemplate", + "printedName": "messagingSourceTemplate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23messagingSourceTemplateyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23messagingSourceTemplateyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingSourceTemporary", + "printedName": "messagingSourceTemporary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24messagingSourceTemporaryyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24messagingSourceTemporaryyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingSourceAnonymous", + "printedName": "messagingSourceAnonymous", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24messagingSourceAnonymousyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24messagingSourceAnonymousyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingConsumerId", + "printedName": "messagingConsumerId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19messagingConsumerIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19messagingConsumerIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRabbitmqDestinationRoutingKey", + "printedName": "messagingRabbitmqDestinationRoutingKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO38messagingRabbitmqDestinationRoutingKeyyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO38messagingRabbitmqDestinationRoutingKeyyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingKafkaMessageKey", + "printedName": "messagingKafkaMessageKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24messagingKafkaMessageKeyyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24messagingKafkaMessageKeyyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingKafkaConsumerGroup", + "printedName": "messagingKafkaConsumerGroup", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27messagingKafkaConsumerGroupyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27messagingKafkaConsumerGroupyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingKafkaClientId", + "printedName": "messagingKafkaClientId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO22messagingKafkaClientIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO22messagingKafkaClientIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingKafkaDestinationPartition", + "printedName": "messagingKafkaDestinationPartition", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34messagingKafkaDestinationPartitionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34messagingKafkaDestinationPartitionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingKafkaSourcePartition", + "printedName": "messagingKafkaSourcePartition", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29messagingKafkaSourcePartitionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29messagingKafkaSourcePartitionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingKafkaMessageOffset", + "printedName": "messagingKafkaMessageOffset", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27messagingKafkaMessageOffsetyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27messagingKafkaMessageOffsetyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingKafkaMessageTombstone", + "printedName": "messagingKafkaMessageTombstone", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30messagingKafkaMessageTombstoneyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30messagingKafkaMessageTombstoneyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqNamespace", + "printedName": "messagingRocketmqNamespace", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26messagingRocketmqNamespaceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26messagingRocketmqNamespaceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqClientGroup", + "printedName": "messagingRocketmqClientGroup", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO28messagingRocketmqClientGroupyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO28messagingRocketmqClientGroupyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqClientId", + "printedName": "messagingRocketmqClientId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25messagingRocketmqClientIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25messagingRocketmqClientIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqMessageDeliveryTimestamp", + "printedName": "messagingRocketmqMessageDeliveryTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO41messagingRocketmqMessageDeliveryTimestampyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO41messagingRocketmqMessageDeliveryTimestampyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqMessageDelayTimeLevel", + "printedName": "messagingRocketmqMessageDelayTimeLevel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO38messagingRocketmqMessageDelayTimeLevelyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO38messagingRocketmqMessageDelayTimeLevelyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqMessageGroup", + "printedName": "messagingRocketmqMessageGroup", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29messagingRocketmqMessageGroupyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29messagingRocketmqMessageGroupyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqMessageType", + "printedName": "messagingRocketmqMessageType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO28messagingRocketmqMessageTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO28messagingRocketmqMessageTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqMessageTag", + "printedName": "messagingRocketmqMessageTag", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27messagingRocketmqMessageTagyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27messagingRocketmqMessageTagyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqMessageKeys", + "printedName": "messagingRocketmqMessageKeys", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO28messagingRocketmqMessageKeysyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO28messagingRocketmqMessageKeysyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqConsumptionModel", + "printedName": "messagingRocketmqConsumptionModel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33messagingRocketmqConsumptionModelyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33messagingRocketmqConsumptionModelyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcGrpcStatusCode", + "printedName": "rpcGrpcStatusCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17rpcGrpcStatusCodeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17rpcGrpcStatusCodeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcJsonrpcVersion", + "printedName": "rpcJsonrpcVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17rpcJsonrpcVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17rpcJsonrpcVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcJsonrpcRequestId", + "printedName": "rpcJsonrpcRequestId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19rpcJsonrpcRequestIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19rpcJsonrpcRequestIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcJsonrpcErrorCode", + "printedName": "rpcJsonrpcErrorCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19rpcJsonrpcErrorCodeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19rpcJsonrpcErrorCodeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcJsonrpcErrorMessage", + "printedName": "rpcJsonrpcErrorMessage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO22rpcJsonrpcErrorMessageyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO22rpcJsonrpcErrorMessageyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messageType", + "printedName": "messageType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11messageTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11messageTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messageId", + "printedName": "messageId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO9messageIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO9messageIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messageCompressedSize", + "printedName": "messageCompressedSize", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21messageCompressedSizeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21messageCompressedSizeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messageUncompressedSize", + "printedName": "messageUncompressedSize", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23messageUncompressedSizeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23messageUncompressedSizeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcConnectRpcErrorCode", + "printedName": "rpcConnectRpcErrorCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO22rpcConnectRpcErrorCodeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO22rpcConnectRpcErrorCodeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "exceptionEscaped", + "printedName": "exceptionEscaped", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16exceptionEscapedyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16exceptionEscapedyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "exception", + "printedName": "exception", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO9exceptionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO9exceptionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EventDomainValues", + "printedName": "EventDomainValues", + "children": [ + { + "kind": "Var", + "name": "browser", + "printedName": "browser", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDomainValues", + "printedName": "VideoSDKRTC.SemanticAttributes.EventDomainValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV7browserAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV7browserAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDomainValues", + "printedName": "VideoSDKRTC.SemanticAttributes.EventDomainValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV7browserAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV7browserAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "device", + "printedName": "device", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDomainValues", + "printedName": "VideoSDKRTC.SemanticAttributes.EventDomainValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV6deviceAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV6deviceAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDomainValues", + "printedName": "VideoSDKRTC.SemanticAttributes.EventDomainValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV6deviceAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV6deviceAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "k8s", + "printedName": "k8s", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDomainValues", + "printedName": "VideoSDKRTC.SemanticAttributes.EventDomainValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV3k8sAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV3k8sAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDomainValues", + "printedName": "VideoSDKRTC.SemanticAttributes.EventDomainValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV3k8sAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV3k8sAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDomainValues", + "printedName": "VideoSDKRTC.SemanticAttributes.EventDomainValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OpentracingRefTypeValues", + "printedName": "OpentracingRefTypeValues", + "children": [ + { + "kind": "Var", + "name": "child_of", + "printedName": "child_of", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "OpentracingRefTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OpentracingRefTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8child_ofyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8child_ofyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "follows_from", + "printedName": "follows_from", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "OpentracingRefTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OpentracingRefTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO12follows_fromyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO12follows_fromyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "OpentracingRefTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DbSystemValues", + "printedName": "DbSystemValues", + "children": [ + { + "kind": "Var", + "name": "otherSql", + "printedName": "otherSql", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8otherSqlAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8otherSqlAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8otherSqlAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8otherSqlAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mssql", + "printedName": "mssql", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mssqlAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mssqlAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mssqlAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mssqlAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mssqlcompact", + "printedName": "mssqlcompact", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV12mssqlcompactAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV12mssqlcompactAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV12mssqlcompactAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV12mssqlcompactAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mysql", + "printedName": "mysql", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mysqlAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mysqlAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mysqlAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mysqlAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "oracle", + "printedName": "oracle", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6oracleAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6oracleAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6oracleAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6oracleAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "db2", + "printedName": "db2", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3db2AEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3db2AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3db2AEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3db2AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "postgresql", + "printedName": "postgresql", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10postgresqlAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10postgresqlAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10postgresqlAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10postgresqlAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "redshift", + "printedName": "redshift", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8redshiftAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8redshiftAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8redshiftAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8redshiftAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hive", + "printedName": "hive", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV4hiveAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV4hiveAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV4hiveAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV4hiveAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cloudscape", + "printedName": "cloudscape", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10cloudscapeAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10cloudscapeAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10cloudscapeAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10cloudscapeAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hsqldb", + "printedName": "hsqldb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hsqldbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hsqldbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hsqldbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hsqldbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "progress", + "printedName": "progress", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8progressAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8progressAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8progressAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8progressAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxdb", + "printedName": "maxdb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5maxdbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5maxdbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5maxdbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5maxdbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hanadb", + "printedName": "hanadb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hanadbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hanadbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hanadbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hanadbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ingres", + "printedName": "ingres", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6ingresAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6ingresAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6ingresAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6ingresAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "firstsql", + "printedName": "firstsql", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firstsqlAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firstsqlAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firstsqlAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firstsqlAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "edb", + "printedName": "edb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3edbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3edbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3edbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3edbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cache", + "printedName": "cache", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5cacheAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5cacheAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5cacheAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5cacheAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "adabas", + "printedName": "adabas", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6adabasAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6adabasAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6adabasAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6adabasAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "firebird", + "printedName": "firebird", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firebirdAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firebirdAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firebirdAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firebirdAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "derby", + "printedName": "derby", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5derbyAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5derbyAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5derbyAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5derbyAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "filemaker", + "printedName": "filemaker", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9filemakerAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9filemakerAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9filemakerAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9filemakerAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "informix", + "printedName": "informix", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8informixAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8informixAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8informixAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8informixAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instantdb", + "printedName": "instantdb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9instantdbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9instantdbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9instantdbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9instantdbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "interbase", + "printedName": "interbase", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9interbaseAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9interbaseAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9interbaseAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9interbaseAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mariadb", + "printedName": "mariadb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mariadbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mariadbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mariadbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mariadbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "netezza", + "printedName": "netezza", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7netezzaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7netezzaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7netezzaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7netezzaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pervasive", + "printedName": "pervasive", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pervasiveAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pervasiveAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pervasiveAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pervasiveAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pointbase", + "printedName": "pointbase", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pointbaseAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pointbaseAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pointbaseAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pointbaseAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sqlite", + "printedName": "sqlite", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sqliteAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sqliteAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sqliteAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sqliteAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sybase", + "printedName": "sybase", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sybaseAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sybaseAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sybaseAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sybaseAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "teradata", + "printedName": "teradata", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8teradataAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8teradataAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8teradataAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8teradataAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "vertica", + "printedName": "vertica", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7verticaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7verticaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7verticaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7verticaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "h2", + "printedName": "h2", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV2h2AEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV2h2AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV2h2AEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV2h2AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "coldfusion", + "printedName": "coldfusion", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10coldfusionAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10coldfusionAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10coldfusionAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10coldfusionAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cassandra", + "printedName": "cassandra", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9cassandraAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9cassandraAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9cassandraAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9cassandraAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hbase", + "printedName": "hbase", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5hbaseAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5hbaseAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5hbaseAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5hbaseAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mongodb", + "printedName": "mongodb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mongodbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mongodbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mongodbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mongodbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "redis", + "printedName": "redis", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5redisAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5redisAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5redisAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5redisAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "couchbase", + "printedName": "couchbase", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9couchbaseAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9couchbaseAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9couchbaseAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9couchbaseAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "couchdb", + "printedName": "couchdb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7couchdbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7couchdbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7couchdbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7couchdbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cosmosdb", + "printedName": "cosmosdb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8cosmosdbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8cosmosdbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8cosmosdbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8cosmosdbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dynamodb", + "printedName": "dynamodb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8dynamodbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8dynamodbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8dynamodbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8dynamodbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "neo4j", + "printedName": "neo4j", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5neo4jAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5neo4jAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5neo4jAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5neo4jAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "geode", + "printedName": "geode", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5geodeAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5geodeAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5geodeAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5geodeAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "elasticsearch", + "printedName": "elasticsearch", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV13elasticsearchAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV13elasticsearchAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV13elasticsearchAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV13elasticsearchAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "memcached", + "printedName": "memcached", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9memcachedAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9memcachedAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9memcachedAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9memcachedAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cockroachdb", + "printedName": "cockroachdb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11cockroachdbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11cockroachdbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11cockroachdbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11cockroachdbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "opensearch", + "printedName": "opensearch", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10opensearchAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10opensearchAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10opensearchAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10opensearchAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "clickhouse", + "printedName": "clickhouse", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10clickhouseAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10clickhouseAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10clickhouseAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10clickhouseAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanner", + "printedName": "spanner", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7spannerAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7spannerAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7spannerAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7spannerAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "trino", + "printedName": "trino", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5trinoAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5trinoAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5trinoAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5trinoAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NetSockFamilyValues", + "printedName": "NetSockFamilyValues", + "children": [ + { + "kind": "Var", + "name": "inet", + "printedName": "inet", + "children": [ + { + "kind": "TypeNominal", + "name": "NetSockFamilyValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetSockFamilyValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4inetAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4inetAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetSockFamilyValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetSockFamilyValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4inetAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4inetAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "inet6", + "printedName": "inet6", + "children": [ + { + "kind": "TypeNominal", + "name": "NetSockFamilyValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetSockFamilyValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV5inet6AEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV5inet6AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetSockFamilyValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetSockFamilyValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV5inet6AEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV5inet6AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unix", + "printedName": "unix", + "children": [ + { + "kind": "TypeNominal", + "name": "NetSockFamilyValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetSockFamilyValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4unixAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4unixAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetSockFamilyValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetSockFamilyValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4unixAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4unixAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NetSockFamilyValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetSockFamilyValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NetTransportValues", + "printedName": "NetTransportValues", + "children": [ + { + "kind": "Var", + "name": "ipTcp", + "printedName": "ipTcp", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipTcpAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipTcpAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipTcpAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipTcpAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ipUdp", + "printedName": "ipUdp", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipUdpAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipUdpAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipUdpAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipUdpAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pipe", + "printedName": "pipe", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV4pipeAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV4pipeAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV4pipeAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV4pipeAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "inproc", + "printedName": "inproc", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV6inprocAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV6inprocAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV6inprocAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV6inprocAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "other", + "printedName": "other", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5otherAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5otherAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5otherAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5otherAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "Var", + "name": "all", + "printedName": "all", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3allyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3allyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "each_quorum", + "printedName": "each_quorum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO11each_quorumyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO11each_quorumyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "quorum", + "printedName": "quorum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO6quorumyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO6quorumyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "local_quorum", + "printedName": "local_quorum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO12local_quorumyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO12local_quorumyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "one", + "printedName": "one", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3oneyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3oneyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "two", + "printedName": "two", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3twoyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3twoyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "three", + "printedName": "three", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO5threeyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO5threeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "local_one", + "printedName": "local_one", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO9local_oneyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO9local_oneyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "any", + "printedName": "any", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3anyyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3anyyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "serial", + "printedName": "serial", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO6serialyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO6serialyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "local_serial", + "printedName": "local_serial", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO12local_serialyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO12local_serialyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "DbCosmosdbOperationTypeValues", + "children": [ + { + "kind": "Var", + "name": "invalid", + "printedName": "invalid", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7invalidAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7invalidAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7invalidAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7invalidAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "create", + "printedName": "create", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6createAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6createAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6createAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6createAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "patch", + "printedName": "patch", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5patchAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5patchAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5patchAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5patchAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "read", + "printedName": "read", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4readAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4readAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4readAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4readAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "readFeed", + "printedName": "readFeed", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8readFeedAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8readFeedAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8readFeedAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8readFeedAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "delete", + "printedName": "delete", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6deleteAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6deleteAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6deleteAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6deleteAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "replace", + "printedName": "replace", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7replaceAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7replaceAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7replaceAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7replaceAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "execute", + "printedName": "execute", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7executeAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7executeAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7executeAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7executeAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "query", + "printedName": "query", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5queryAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5queryAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5queryAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5queryAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "head", + "printedName": "head", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4headAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4headAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4headAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4headAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "headFeed", + "printedName": "headFeed", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8headFeedAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8headFeedAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8headFeedAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8headFeedAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "upsert", + "printedName": "upsert", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6upsertAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6upsertAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6upsertAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6upsertAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "batch", + "printedName": "batch", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5batchAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5batchAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5batchAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5batchAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "queryPlan", + "printedName": "queryPlan", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV9queryPlanAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV9queryPlanAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV9queryPlanAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV9queryPlanAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "executeJavascript", + "printedName": "executeJavascript", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV17executeJavascriptAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV17executeJavascriptAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV17executeJavascriptAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV17executeJavascriptAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DbCosmosdbConnectionModeValues", + "printedName": "DbCosmosdbConnectionModeValues", + "children": [ + { + "kind": "Var", + "name": "gateway", + "printedName": "gateway", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbConnectionModeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbConnectionModeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO7gatewayyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO7gatewayyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "direct", + "printedName": "direct", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbConnectionModeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbConnectionModeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO6directyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO6directyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbConnectionModeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OtelStatusCodeValues", + "printedName": "OtelStatusCodeValues", + "children": [ + { + "kind": "Var", + "name": "ok", + "printedName": "ok", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "OtelStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtelStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO2okyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO2okyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "OtelStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtelStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO5erroryA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO5erroryA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "OtelStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FaasTriggerValues", + "printedName": "FaasTriggerValues", + "children": [ + { + "kind": "Var", + "name": "datasource", + "printedName": "datasource", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type) -> VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO10datasourceyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO10datasourceyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "http", + "printedName": "http", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type) -> VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO4httpyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO4httpyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "pubsub", + "printedName": "pubsub", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type) -> VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO6pubsubyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO6pubsubyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "timer", + "printedName": "timer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type) -> VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO5timeryA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO5timeryA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "other", + "printedName": "other", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type) -> VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO5otheryA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO5otheryA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FaasDocumentOperationValues", + "printedName": "FaasDocumentOperationValues", + "children": [ + { + "kind": "Var", + "name": "insert", + "printedName": "insert", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasDocumentOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6insertAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6insertAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasDocumentOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6insertAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6insertAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "edit", + "printedName": "edit", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasDocumentOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV4editAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV4editAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasDocumentOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV4editAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV4editAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "delete", + "printedName": "delete", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasDocumentOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6deleteAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6deleteAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasDocumentOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6deleteAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6deleteAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasDocumentOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MessagingOperationValues", + "printedName": "MessagingOperationValues", + "children": [ + { + "kind": "Var", + "name": "publish", + "printedName": "publish", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7publishAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7publishAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7publishAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7publishAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "receive", + "printedName": "receive", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7receiveAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7receiveAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7receiveAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7receiveAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "process", + "printedName": "process", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7processAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7processAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7processAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7processAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FaasInvokedProviderValues", + "printedName": "FaasInvokedProviderValues", + "children": [ + { + "kind": "Var", + "name": "alibabaCloud", + "printedName": "alibabaCloud", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12alibabaCloudAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12alibabaCloudAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12alibabaCloudAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12alibabaCloudAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aws", + "printedName": "aws", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3awsAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3awsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3awsAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3awsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azure", + "printedName": "azure", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV5azureAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV5azureAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV5azureAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV5azureAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcp", + "printedName": "gcp", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3gcpAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3gcpAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3gcpAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3gcpAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tencentCloud", + "printedName": "tencentCloud", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12tencentCloudAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12tencentCloudAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12tencentCloudAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12tencentCloudAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NetHostConnectionTypeValues", + "printedName": "NetHostConnectionTypeValues", + "children": [ + { + "kind": "Var", + "name": "wifi", + "printedName": "wifi", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4wifiAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4wifiAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4wifiAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4wifiAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "wired", + "printedName": "wired", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV5wiredAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV5wiredAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV5wiredAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV5wiredAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cell", + "printedName": "cell", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4cellAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4cellAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4cellAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4cellAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unavailable", + "printedName": "unavailable", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11unavailableAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11unavailableAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11unavailableAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11unavailableAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV7unknownAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV7unknownAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV7unknownAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV7unknownAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NetHostConnectionSubtypeValues", + "printedName": "NetHostConnectionSubtypeValues", + "children": [ + { + "kind": "Var", + "name": "gprs", + "printedName": "gprs", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4gprsAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4gprsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4gprsAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4gprsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "edge", + "printedName": "edge", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4edgeAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4edgeAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4edgeAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4edgeAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "umts", + "printedName": "umts", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4umtsAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4umtsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4umtsAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4umtsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cdma", + "printedName": "cdma", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4cdmaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4cdmaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4cdmaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4cdmaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "evdo0", + "printedName": "evdo0", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdo0AEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdo0AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdo0AEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdo0AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "evdoA", + "printedName": "evdoA", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoAAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoAAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoAAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoAAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cdma20001xrtt", + "printedName": "cdma20001xrtt", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV13cdma20001xrttAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV13cdma20001xrttAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV13cdma20001xrttAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV13cdma20001xrttAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hsdpa", + "printedName": "hsdpa", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsdpaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsdpaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsdpaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsdpaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hsupa", + "printedName": "hsupa", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsupaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsupaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsupaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsupaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hspa", + "printedName": "hspa", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4hspaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4hspaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4hspaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4hspaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "iden", + "printedName": "iden", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4idenAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4idenAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4idenAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4idenAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "evdoB", + "printedName": "evdoB", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoBAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoBAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoBAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoBAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lte", + "printedName": "lte", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3lteAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3lteAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3lteAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3lteAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ehrpd", + "printedName": "ehrpd", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5ehrpdAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5ehrpdAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5ehrpdAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5ehrpdAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hspap", + "printedName": "hspap", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hspapAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hspapAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hspapAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hspapAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gsm", + "printedName": "gsm", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3gsmAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3gsmAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3gsmAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3gsmAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tdScdma", + "printedName": "tdScdma", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV7tdScdmaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV7tdScdmaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV7tdScdmaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV7tdScdmaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "iwlan", + "printedName": "iwlan", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5iwlanAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5iwlanAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5iwlanAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5iwlanAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nr", + "printedName": "nr", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV2nrAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV2nrAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV2nrAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV2nrAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nrnsa", + "printedName": "nrnsa", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5nrnsaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5nrnsaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5nrnsaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5nrnsaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lteCa", + "printedName": "lteCa", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5lteCaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5lteCaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5lteCaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5lteCaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RpcSystemValues", + "printedName": "RpcSystemValues", + "children": [ + { + "kind": "Var", + "name": "grpc", + "printedName": "grpc", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV4grpcAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV4grpcAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV4grpcAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV4grpcAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "javaRmi", + "printedName": "javaRmi", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV7javaRmiAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV7javaRmiAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV7javaRmiAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV7javaRmiAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dotnetWcf", + "printedName": "dotnetWcf", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV9dotnetWcfAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV9dotnetWcfAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV9dotnetWcfAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV9dotnetWcfAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "apacheDubbo", + "printedName": "apacheDubbo", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11apacheDubboAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11apacheDubboAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11apacheDubboAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11apacheDubboAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectRpc", + "printedName": "connectRpc", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV07connectE0AEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV07connectE0AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV07connectE0AEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV07connectE0AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GraphqlOperationTypeValues", + "printedName": "GraphqlOperationTypeValues", + "children": [ + { + "kind": "Var", + "name": "query", + "printedName": "query", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphqlOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphqlOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO5queryyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO5queryyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "mutation", + "printedName": "mutation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphqlOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphqlOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8mutationyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8mutationyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "subscription", + "printedName": "subscription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphqlOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphqlOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO12subscriptionyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO12subscriptionyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphqlOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "MessagingRocketmqMessageTypeValues", + "children": [ + { + "kind": "Var", + "name": "normal", + "printedName": "normal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO6normalyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO6normalyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fifo", + "printedName": "fifo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO4fifoyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO4fifoyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "delay", + "printedName": "delay", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO5delayyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO5delayyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "transaction", + "printedName": "transaction", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO11transactionyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO11transactionyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MessagingRocketmqConsumptionModelValues", + "printedName": "MessagingRocketmqConsumptionModelValues", + "children": [ + { + "kind": "Var", + "name": "clustering", + "printedName": "clustering", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues.Type) -> VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqConsumptionModelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqConsumptionModelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO10clusteringyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO10clusteringyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "broadcasting", + "printedName": "broadcasting", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues.Type) -> VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqConsumptionModelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqConsumptionModelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO12broadcastingyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO12broadcastingyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqConsumptionModelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RpcGrpcStatusCodeValues", + "printedName": "RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "Var", + "name": "ok", + "printedName": "ok", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO2okyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO2okyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO9cancelledyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO9cancelledyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO7unknownyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "invalid_argument", + "printedName": "invalid_argument", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO16invalid_argumentyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO16invalid_argumentyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "deadline_exceeded", + "printedName": "deadline_exceeded", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO17deadline_exceededyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO17deadline_exceededyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "not_found", + "printedName": "not_found", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO9not_foundyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO9not_foundyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "already_exists", + "printedName": "already_exists", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO14already_existsyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO14already_existsyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "permission_denied", + "printedName": "permission_denied", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO17permission_deniedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO17permission_deniedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "resource_exhausted", + "printedName": "resource_exhausted", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO18resource_exhaustedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO18resource_exhaustedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "failed_precondition", + "printedName": "failed_precondition", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO19failed_preconditionyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO19failed_preconditionyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "aborted", + "printedName": "aborted", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO7abortedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO7abortedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "out_of_range", + "printedName": "out_of_range", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO12out_of_rangeyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO12out_of_rangeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unimplemented", + "printedName": "unimplemented", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO13unimplementedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO13unimplementedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "internal", + "printedName": "internal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8internalyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8internalyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unavailable", + "printedName": "unavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO11unavailableyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO11unavailableyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "data_loss", + "printedName": "data_loss", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO9data_lossyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO9data_lossyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unauthenticated", + "printedName": "unauthenticated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO15unauthenticatedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO15unauthenticatedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MessageTypeValues", + "printedName": "MessageTypeValues", + "children": [ + { + "kind": "Var", + "name": "sent", + "printedName": "sent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessageTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.MessageTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO4sentyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO4sentyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "received", + "printedName": "received", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessageTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.MessageTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8receivedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8receivedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO9cancelledyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO9cancelledyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO7unknownyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "invalid_argument", + "printedName": "invalid_argument", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO16invalid_argumentyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO16invalid_argumentyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "deadline_exceeded", + "printedName": "deadline_exceeded", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO17deadline_exceededyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO17deadline_exceededyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "not_found", + "printedName": "not_found", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO9not_foundyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO9not_foundyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "already_exists", + "printedName": "already_exists", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO14already_existsyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO14already_existsyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "permission_denied", + "printedName": "permission_denied", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO17permission_deniedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO17permission_deniedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "resource_exhausted", + "printedName": "resource_exhausted", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO18resource_exhaustedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO18resource_exhaustedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "failed_precondition", + "printedName": "failed_precondition", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO19failed_preconditionyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO19failed_preconditionyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "aborted", + "printedName": "aborted", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO7abortedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO7abortedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "out_of_range", + "printedName": "out_of_range", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO12out_of_rangeyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO12out_of_rangeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unimplemented", + "printedName": "unimplemented", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO13unimplementedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO13unimplementedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "internal", + "printedName": "internal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8internalyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8internalyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unavailable", + "printedName": "unavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO11unavailableyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO11unavailableyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "data_loss", + "printedName": "data_loss", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO9data_lossyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO9data_lossyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unauthenticated", + "printedName": "unauthenticated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO15unauthenticatedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO15unauthenticatedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes?", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Severity", + "printedName": "Severity", + "children": [ + { + "kind": "Var", + "name": "trace", + "printedName": "trace", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5traceyA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5traceyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "trace2", + "printedName": "trace2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6trace2yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6trace2yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "trace3", + "printedName": "trace3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6trace3yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6trace3yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "trace4", + "printedName": "trace4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6trace4yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6trace4yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5debugyA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5debugyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "debug2", + "printedName": "debug2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6debug2yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6debug2yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "debug3", + "printedName": "debug3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6debug3yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6debug3yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "debug4", + "printedName": "debug4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6debug4yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6debug4yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "info", + "printedName": "info", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO4infoyA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO4infoyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "info2", + "printedName": "info2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5info2yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5info2yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "info3", + "printedName": "info3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5info3yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5info3yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "info4", + "printedName": "info4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5info4yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5info4yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "warn", + "printedName": "warn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO4warnyA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO4warnyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "warn2", + "printedName": "warn2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5warn2yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5warn2yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "warn3", + "printedName": "warn3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5warn3yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5warn3yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "warn4", + "printedName": "warn4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5warn4yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5warn4yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5erroryA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5erroryA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "error2", + "printedName": "error2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6error2yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6error2yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "error3", + "printedName": "error3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6error3yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6error3yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "error4", + "printedName": "error4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6error4yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6error4yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "fatal", + "printedName": "fatal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5fatalyA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5fatalyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "fatal2", + "printedName": "fatal2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6fatal2yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6fatal2yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "fatal3", + "printedName": "fatal3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6fatal3yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6fatal3yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "fatal4", + "printedName": "fatal4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6fatal4yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6fatal4yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SeverityO11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC8SeverityO11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SeverityO11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC8SeverityO11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SeverityO1loiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC8SeverityO1loiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SeverityO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC8SeverityO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SeverityO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC8SeverityO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Severity?", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SeverityO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC8SeverityO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC8SeverityO", + "mangledName": "$s11VideoSDKRTC8SeverityO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SimpleExtensionMap", + "printedName": "SimpleExtensionMap", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleExtensionMap", + "printedName": "VideoSDKRTC.SimpleExtensionMap", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapVACycfc", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(arrayLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleExtensionMap", + "printedName": "VideoSDKRTC.SimpleExtensionMap", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.AnyMessageExtension]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV12arrayLiteralAcA010AnyMessageD0_pd_tcfc", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapV12arrayLiteralAcA010AnyMessageD0_pd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleExtensionMap", + "printedName": "VideoSDKRTC.SimpleExtensionMap", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SimpleExtensionMap]", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleExtensionMap", + "printedName": "VideoSDKRTC.SimpleExtensionMap", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapVyA2Cd_tcfc", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapVyA2Cd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyMessageExtension?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Subscript", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapVyAA010AnyMessageD0_pSgAA0G0_pXp_Sitcip", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapVyAA010AnyMessageD0_pSgAA0G0_pXp_Sitcip", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyMessageExtension?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapVyAA010AnyMessageD0_pSgAA0G0_pXp_Sitcig", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapVyAA010AnyMessageD0_pSgAA0G0_pXp_Sitcig", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "fieldNumberForProto", + "printedName": "fieldNumberForProto(messageType:protoFieldName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV19fieldNumberForProto11messageType14protoFieldNameSiSgAA7Message_pXp_SStF", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapV19fieldNumberForProto11messageType14protoFieldNameSiSgAA7Message_pXp_SStF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "insert", + "printedName": "insert(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV6insertyyAA010AnyMessageD0_pF", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapV6insertyyAA010AnyMessageD0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "insert", + "printedName": "insert(contentsOf:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.AnyMessageExtension]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV6insert10contentsOfySayAA010AnyMessageD0_pG_tF", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapV6insert10contentsOfySayAA010AnyMessageD0_pG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "formUnion", + "printedName": "formUnion(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SimpleExtensionMap", + "printedName": "VideoSDKRTC.SimpleExtensionMap", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV9formUnionyyACF", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapV9formUnionyyACF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "union", + "printedName": "union(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleExtensionMap", + "printedName": "VideoSDKRTC.SimpleExtensionMap", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV" + }, + { + "kind": "TypeNominal", + "name": "SimpleExtensionMap", + "printedName": "VideoSDKRTC.SimpleExtensionMap", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV5unionyA2CF", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapV5unionyA2CF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionMap", + "printedName": "ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP", + "mangledName": "$s11VideoSDKRTC12ExtensionMapP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByArrayLiteral", + "printedName": "ExpressibleByArrayLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ] + } + ], + "usr": "s:s25ExpressibleByArrayLiteralP", + "mangledName": "$ss25ExpressibleByArrayLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SimpleLogRecordProcessor", + "printedName": "SimpleLogRecordProcessor", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(logRecordExporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleLogRecordProcessor", + "printedName": "VideoSDKRTC.SimpleLogRecordProcessor", + "usr": "s:11VideoSDKRTC24SimpleLogRecordProcessorC" + }, + { + "kind": "TypeNominal", + "name": "LogRecordExporter", + "printedName": "VideoSDKRTC.LogRecordExporter", + "usr": "s:11VideoSDKRTC17LogRecordExporterP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24SimpleLogRecordProcessorC03logE8ExporterAcA0deH0_p_tcfc", + "mangledName": "$s11VideoSDKRTC24SimpleLogRecordProcessorC03logE8ExporterAcA0deH0_p_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "onEmit", + "printedName": "onEmit(logRecord:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24SimpleLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", + "mangledName": "$s11VideoSDKRTC24SimpleLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24SimpleLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC24SimpleLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24SimpleLogRecordProcessorC8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC24SimpleLogRecordProcessorC8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC24SimpleLogRecordProcessorC", + "mangledName": "$s11VideoSDKRTC24SimpleLogRecordProcessorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordProcessor", + "printedName": "LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SimpleSpanProcessor", + "printedName": "SimpleSpanProcessor", + "children": [ + { + "kind": "Var", + "name": "isStartRequired", + "printedName": "isStartRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV15isStartRequiredSbvp", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV15isStartRequiredSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV15isStartRequiredSbvg", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV15isStartRequiredSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isEndRequired", + "printedName": "isEndRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV13isEndRequiredSbvp", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV13isEndRequiredSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV13isEndRequiredSbvg", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV13isEndRequiredSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "onStart", + "printedName": "onStart(parentContext:span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV7onStart13parentContext4spanyAA0dI0VSg_AA08ReadableD0_ptF", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV7onStart13parentContext4spanyAA0dI0VSg_AA08ReadableD0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onEnd", + "printedName": "onEnd(span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV5onEnd4spanyAA08ReadableD0_p_tF", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV5onEnd4spanyAA08ReadableD0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV8shutdownyyF", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush(timeout:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV10forceFlush7timeoutySdSg_tF", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV10forceFlush7timeoutySdSg_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(spanExporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleSpanProcessor", + "printedName": "VideoSDKRTC.SimpleSpanProcessor", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV" + }, + { + "kind": "TypeNominal", + "name": "SpanExporter", + "printedName": "VideoSDKRTC.SpanExporter", + "usr": "s:11VideoSDKRTC12SpanExporterP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV12spanExporterAcA0dG0_p_tcfc", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV12spanExporterAcA0dG0_p_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "reportingOnlySampled", + "printedName": "reportingOnlySampled(sampled:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleSpanProcessor", + "printedName": "VideoSDKRTC.SimpleSpanProcessor", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV20reportingOnlySampled7sampledACSb_tF", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV20reportingOnlySampled7sampledACSb_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SpanProcessor", + "printedName": "SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "VideosdkWebSocket", + "printedName": "VideosdkWebSocket", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_SourceContext", + "printedName": "Google_Protobuf_SourceContext", + "children": [ + { + "kind": "Var", + "name": "fileName", + "printedName": "fileName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextVACycfc", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Span", + "printedName": "Span", + "children": [ + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC4SpanP4kindAA0C4KindOvp", + "mangledName": "$s11VideoSDKRTC4SpanP4kindAA0C4KindOvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP4kindAA0C4KindOvg", + "mangledName": "$s11VideoSDKRTC4SpanP4kindAA0C4KindOvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "context", + "printedName": "context", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC4SpanP7contextAA0C7ContextVvp", + "mangledName": "$s11VideoSDKRTC4SpanP7contextAA0C7ContextVvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP7contextAA0C7ContextVvg", + "mangledName": "$s11VideoSDKRTC4SpanP7contextAA0C7ContextVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isRecording", + "printedName": "isRecording", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC4SpanP11isRecordingSbvp", + "mangledName": "$s11VideoSDKRTC4SpanP11isRecordingSbvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP11isRecordingSbvg", + "mangledName": "$s11VideoSDKRTC4SpanP11isRecordingSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC4SpanP6statusAA6StatusOvp", + "mangledName": "$s11VideoSDKRTC4SpanP6statusAA6StatusOvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP6statusAA6StatusOvg", + "mangledName": "$s11VideoSDKRTC4SpanP6statusAA6StatusOvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP6statusAA6StatusOvs", + "mangledName": "$s11VideoSDKRTC4SpanP6statusAA6StatusOvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP6statusAA6StatusOvM", + "mangledName": "$s11VideoSDKRTC4SpanP6statusAA6StatusOvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC4SpanP4nameSSvp", + "mangledName": "$s11VideoSDKRTC4SpanP4nameSSvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP4nameSSvg", + "mangledName": "$s11VideoSDKRTC4SpanP4nameSSvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP4nameSSvs", + "mangledName": "$s11VideoSDKRTC4SpanP4nameSSvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP4nameSSvM", + "mangledName": "$s11VideoSDKRTC4SpanP4nameSSvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanP12setAttribute3key5valueySS_AA0E5ValueOSgtF", + "mangledName": "$s11VideoSDKRTC4SpanP12setAttribute3key5valueySS_AA0E5ValueOSgtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanP8addEvent4nameySS_tF", + "mangledName": "$s11VideoSDKRTC4SpanP8addEvent4nameySS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:timestamp:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanP8addEvent4name9timestampySS_10Foundation4DateVtF", + "mangledName": "$s11VideoSDKRTC4SpanP8addEvent4name9timestampySS_10Foundation4DateVtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanP8addEvent4name10attributesySS_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC4SpanP8addEvent4name10attributesySS_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:attributes:timestamp:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanP8addEvent4name10attributes9timestampySS_SDySSAA14AttributeValueOG10Foundation4DateVtF", + "mangledName": "$s11VideoSDKRTC4SpanP8addEvent4name10attributes9timestampySS_SDySSAA14AttributeValueOG10Foundation4DateVtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "end", + "printedName": "end()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanP3endyyF", + "mangledName": "$s11VideoSDKRTC4SpanP3endyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "end", + "printedName": "end(time:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanP3end4timey10Foundation4DateV_tF", + "mangledName": "$s11VideoSDKRTC4SpanP3end4timey10Foundation4DateV_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + }, + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE2eeoiySbAaB_p_AaB_ptFZ", + "mangledName": "$s11VideoSDKRTC4SpanPAAE2eeoiySbAaB_p_AaB_ptFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SStF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SStF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SitF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SitF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SdtF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SdtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SbtF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SStF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SStF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SitF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SitF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SdtF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SdtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SbtF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "putHttpHostAttribute", + "printedName": "putHttpHostAttribute(string:int:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE20putHttpHostAttribute6string3intySS_SitF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE20putHttpHostAttribute6string3intySS_SitF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "putHttpStatusCode", + "printedName": "putHttpStatusCode(statusCode:reasonPhrase:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE17putHttpStatusCode06statusG012reasonPhraseySi_SStF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE17putHttpStatusCode06statusG012reasonPhraseySi_SStF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC4SpanP", + "mangledName": "$s11VideoSDKRTC4SpanP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject, τ_0_0 : Swift.CustomStringConvertible>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanAdapter", + "printedName": "SpanAdapter", + "children": [ + { + "kind": "Function", + "name": "toProtoResourceSpans", + "printedName": "toProtoResourceSpans(spanDataList:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanAdapterV20toProtoResourceSpans12spanDataListSayAA014Opentelemetry_f10_Trace_V1_gH0VGSayAA0cJ0VG_tFZ", + "mangledName": "$s11VideoSDKRTC11SpanAdapterV20toProtoResourceSpans12spanDataListSayAA014Opentelemetry_f10_Trace_V1_gH0VGSayAA0cJ0VG_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toProtoSpan", + "printedName": "toProtoSpan(spanData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV" + }, + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanAdapterV07toProtoC08spanDataAA014Opentelemetry_f10_Trace_V1_C0VAA0cH0V_tFZ", + "mangledName": "$s11VideoSDKRTC11SpanAdapterV07toProtoC08spanDataAA014Opentelemetry_f10_Trace_V1_C0VAA0cH0V_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC11SpanAdapterV", + "mangledName": "$s11VideoSDKRTC11SpanAdapterV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanBuilder", + "printedName": "SpanBuilder", + "children": [ + { + "kind": "Function", + "name": "setParent", + "printedName": "setParent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP9setParentyxAA0C0_pF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP9setParentyxAA0C0_pF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setParent", + "printedName": "setParent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP9setParentyxAA0C7ContextVF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP9setParentyxAA0C7ContextVF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setNoParent", + "printedName": "setNoParent()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP11setNoParentxyF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP11setNoParentxyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addLink", + "printedName": "addLink(spanContext:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP7addLink11spanContextxAA0cH0V_tF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP7addLink11spanContextxAA0cH0V_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addLink", + "printedName": "addLink(spanContext:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP7addLink11spanContext10attributesxAA0cH0V_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP7addLink11spanContext10attributesxAA0cH0V_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SStF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SStF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SitF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SitF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SdtF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SdtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SbtF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_AA0F5ValueOtF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_AA0F5ValueOtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSpanKind", + "printedName": "setSpanKind(spanKind:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP03setC4Kind04spanF0xAA0cF0O_tF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP03setC4Kind04spanF0xAA0cF0O_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setStartTime", + "printedName": "setStartTime(time:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP12setStartTime4timex10Foundation4DateV_tF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP12setStartTime4timex10Foundation4DateV_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setActive", + "printedName": "setActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP9setActiveyxSbF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP9setActiveyxSbF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startSpan", + "printedName": "startSpan()", + "children": [ + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP05startC0AA0C0_pyF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP05startC0AA0C0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SStF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SStF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "declAttributes": [ + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SitF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SitF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "declAttributes": [ + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SdtF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SdtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "declAttributes": [ + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SbtF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "declAttributes": [ + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC11SpanBuilderP", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanContext", + "printedName": "SpanContext", + "children": [ + { + "kind": "Var", + "name": "traceId", + "printedName": "traceId", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV7traceIdAA05TraceF0Vvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV7traceIdAA05TraceF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV7traceIdAA05TraceF0Vvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV7traceIdAA05TraceF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanId", + "printedName": "spanId", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV6spanIdAA0cF0Vvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV6spanIdAA0cF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV6spanIdAA0cF0Vvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV6spanIdAA0cF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "traceFlags", + "printedName": "traceFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV10traceFlagsAA05TraceF0Vvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV10traceFlagsAA05TraceF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV10traceFlagsAA05TraceF0Vvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV10traceFlagsAA05TraceF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "traceState", + "printedName": "traceState", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0Vvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0Vvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0Vvs", + "mangledName": "$s11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0VvM", + "mangledName": "$s11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isRemote", + "printedName": "isRemote", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV8isRemoteSbvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV8isRemoteSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV8isRemoteSbvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV8isRemoteSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "create", + "printedName": "create(traceId:spanId:traceFlags:traceState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + }, + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanContextV6create7traceId04spanG00F5Flags0F5StateAcA05TraceG0V_AA0cG0VAA0kI0VAA0kJ0VtFZ", + "mangledName": "$s11VideoSDKRTC11SpanContextV6create7traceId04spanG00F5Flags0F5StateAcA05TraceG0V_AA0cG0VAA0kI0VAA0kJ0VtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromRemoteParent", + "printedName": "createFromRemoteParent(traceId:spanId:traceFlags:traceState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + }, + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanContextV22createFromRemoteParent7traceId04spanJ00I5Flags0I5StateAcA05TraceJ0V_AA0cJ0VAA0nL0VAA0nM0VtFZ", + "mangledName": "$s11VideoSDKRTC11SpanContextV22createFromRemoteParent7traceId04spanJ00I5Flags0I5StateAcA05TraceJ0V_AA0cJ0VAA0nL0VAA0nM0VtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isValid", + "printedName": "isValid", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV7isValidSbvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV7isValidSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV7isValidSbvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV7isValidSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSampled", + "printedName": "isSampled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV9isSampledSbvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV9isSampledSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV9isSampledSbvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV9isSampledSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanContextV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC11SpanContextV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanContextV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC11SpanContextV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC11SpanContextV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC11SpanContextV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC11SpanContextV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC11SpanContextV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanContextV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC11SpanContextV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC11SpanContextV", + "mangledName": "$s11VideoSDKRTC11SpanContextV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanData", + "printedName": "SpanData", + "children": [ + { + "kind": "Var", + "name": "traceId", + "printedName": "traceId", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV7traceIdAA05TraceF0Vvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV7traceIdAA05TraceF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV7traceIdAA05TraceF0Vvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV7traceIdAA05TraceF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanId", + "printedName": "spanId", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV6spanIdAA0cF0Vvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV6spanIdAA0cF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV6spanIdAA0cF0Vvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV6spanIdAA0cF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "traceFlags", + "printedName": "traceFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV10traceFlagsAA05TraceF0Vvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV10traceFlagsAA05TraceF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV10traceFlagsAA05TraceF0Vvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV10traceFlagsAA05TraceF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "traceState", + "printedName": "traceState", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV10traceStateAA05TraceF0Vvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV10traceStateAA05TraceF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV10traceStateAA05TraceF0Vvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV10traceStateAA05TraceF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "parentSpanId", + "printedName": "parentSpanId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanId?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV06parentC2IdAA0cF0VSgvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV06parentC2IdAA0cF0VSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanId?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV06parentC2IdAA0cF0VSgvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV06parentC2IdAA0cF0VSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instrumentationScope", + "printedName": "instrumentationScope", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV20instrumentationScopeAA015InstrumentationF4InfoVvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV20instrumentationScopeAA015InstrumentationF4InfoVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV20instrumentationScopeAA015InstrumentationF4InfoVvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV20instrumentationScopeAA015InstrumentationF4InfoVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV4nameSSvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV4nameSSvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV4kindAA0C4KindOvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV4kindAA0C4KindOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV4kindAA0C4KindOvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV4kindAA0C4KindOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "startTime", + "printedName": "startTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV9startTime10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV9startTime10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV9startTime10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV9startTime10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "events", + "printedName": "events", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Event]", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV6eventsSayAC5EventVGvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV6eventsSayAC5EventVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Event]", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV6eventsSayAC5EventVGvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV6eventsSayAC5EventVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "links", + "printedName": "links", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV5linksSayAC4LinkVGvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV5linksSayAC4LinkVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV5linksSayAC4LinkVGvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV5linksSayAC4LinkVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV6statusAA6StatusOvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV6statusAA6StatusOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV6statusAA6StatusOvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV6statusAA6StatusOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endTime", + "printedName": "endTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV7endTime10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV7endTime10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV7endTime10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV7endTime10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasRemoteParent", + "printedName": "hasRemoteParent", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV15hasRemoteParentSbvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV15hasRemoteParentSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV15hasRemoteParentSbvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV15hasRemoteParentSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasEnded", + "printedName": "hasEnded", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV8hasEndedSbvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV8hasEndedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV8hasEndedSbvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV8hasEndedSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalRecordedEvents", + "printedName": "totalRecordedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV19totalRecordedEventsSivp", + "mangledName": "$s11VideoSDKRTC8SpanDataV19totalRecordedEventsSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV19totalRecordedEventsSivg", + "mangledName": "$s11VideoSDKRTC8SpanDataV19totalRecordedEventsSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalRecordedLinks", + "printedName": "totalRecordedLinks", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV18totalRecordedLinksSivp", + "mangledName": "$s11VideoSDKRTC8SpanDataV18totalRecordedLinksSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV18totalRecordedLinksSivg", + "mangledName": "$s11VideoSDKRTC8SpanDataV18totalRecordedLinksSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalAttributeCount", + "printedName": "totalAttributeCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV19totalAttributeCountSivp", + "mangledName": "$s11VideoSDKRTC8SpanDataV19totalAttributeCountSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV19totalAttributeCountSivg", + "mangledName": "$s11VideoSDKRTC8SpanDataV19totalAttributeCountSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC8SpanDataV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "settingName", + "printedName": "settingName(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV11settingNameyACSSF", + "mangledName": "$s11VideoSDKRTC8SpanDataV11settingNameyACSSF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingTraceId", + "printedName": "settingTraceId(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV14settingTraceIdyAcA0fG0VF", + "mangledName": "$s11VideoSDKRTC8SpanDataV14settingTraceIdyAcA0fG0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingSpanId", + "printedName": "settingSpanId(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV07settingC2IdyAcA0cF0VF", + "mangledName": "$s11VideoSDKRTC8SpanDataV07settingC2IdyAcA0cF0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingTraceFlags", + "printedName": "settingTraceFlags(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV17settingTraceFlagsyAcA0fG0VF", + "mangledName": "$s11VideoSDKRTC8SpanDataV17settingTraceFlagsyAcA0fG0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingTraceState", + "printedName": "settingTraceState(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV17settingTraceStateyAcA0fG0VF", + "mangledName": "$s11VideoSDKRTC8SpanDataV17settingTraceStateyAcA0fG0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingAttributes", + "printedName": "settingAttributes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV17settingAttributesyACSDySSAA14AttributeValueOGF", + "mangledName": "$s11VideoSDKRTC8SpanDataV17settingAttributesyACSDySSAA14AttributeValueOGF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingStartTime", + "printedName": "settingStartTime(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV16settingStartTimeyAC10Foundation4DateVF", + "mangledName": "$s11VideoSDKRTC8SpanDataV16settingStartTimeyAC10Foundation4DateVF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingEndTime", + "printedName": "settingEndTime(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV14settingEndTimeyAC10Foundation4DateVF", + "mangledName": "$s11VideoSDKRTC8SpanDataV14settingEndTimeyAC10Foundation4DateVF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingKind", + "printedName": "settingKind(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV11settingKindyAcA0cF0OF", + "mangledName": "$s11VideoSDKRTC8SpanDataV11settingKindyAcA0cF0OF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingLinks", + "printedName": "settingLinks(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV12settingLinksyACSayAC4LinkVGF", + "mangledName": "$s11VideoSDKRTC8SpanDataV12settingLinksyACSayAC4LinkVGF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingParentSpanId", + "printedName": "settingParentSpanId(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV013settingParentC2IdyAcA0cG0VF", + "mangledName": "$s11VideoSDKRTC8SpanDataV013settingParentC2IdyAcA0cG0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingResource", + "printedName": "settingResource(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV15settingResourceyAcA0F0VF", + "mangledName": "$s11VideoSDKRTC8SpanDataV15settingResourceyAcA0F0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingStatus", + "printedName": "settingStatus(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV13settingStatusyAcA0F0OF", + "mangledName": "$s11VideoSDKRTC8SpanDataV13settingStatusyAcA0F0OF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingEvents", + "printedName": "settingEvents(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Event]", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV13settingEventsyACSayAC5EventVGF", + "mangledName": "$s11VideoSDKRTC8SpanDataV13settingEventsyACSayAC5EventVGF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingHasRemoteParent", + "printedName": "settingHasRemoteParent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV22settingHasRemoteParentyACSbF", + "mangledName": "$s11VideoSDKRTC8SpanDataV22settingHasRemoteParentyACSbF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingHasEnded", + "printedName": "settingHasEnded(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV15settingHasEndedyACSbF", + "mangledName": "$s11VideoSDKRTC8SpanDataV15settingHasEndedyACSbF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingTotalRecordedEvents", + "printedName": "settingTotalRecordedEvents(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV26settingTotalRecordedEventsyACSiF", + "mangledName": "$s11VideoSDKRTC8SpanDataV26settingTotalRecordedEventsyACSiF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingTotalRecordedLinks", + "printedName": "settingTotalRecordedLinks(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV25settingTotalRecordedLinksyACSiF", + "mangledName": "$s11VideoSDKRTC8SpanDataV25settingTotalRecordedLinksyACSiF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingTotalAttributeCount", + "printedName": "settingTotalAttributeCount(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV26settingTotalAttributeCountyACSiF", + "mangledName": "$s11VideoSDKRTC8SpanDataV26settingTotalAttributeCountyACSiF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SpanDataV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC8SpanDataV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC8SpanDataV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Event", + "printedName": "Event", + "children": [ + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV9timestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV9timestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV9timestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV9timestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV4nameSSvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV4nameSSvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:timestamp:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV4name9timestamp10attributesAESS_10Foundation4DateVSDySSAA14AttributeValueOGSgtcfc", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV4name9timestamp10attributesAESS_10Foundation4DateVSDySSAA14AttributeValueOGSgtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(timestamp:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV9timestamp5eventAE10Foundation4DateV_AEtcfc", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV9timestamp5eventAE10Foundation4DateV_AEtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV4fromAEs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Link", + "printedName": "Link", + "children": [ + { + "kind": "Var", + "name": "context", + "printedName": "context", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV7contextAA0C7ContextVvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV7contextAA0C7ContextVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV7contextAA0C7ContextVvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV7contextAA0C7ContextVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(context:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV7context10attributesAeA0C7ContextV_SDySSAA14AttributeValueOGtcfc", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV7context10attributesAeA0C7ContextV_SDySSAA14AttributeValueOGtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV4fromAEs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC8SpanDataV", + "mangledName": "$s11VideoSDKRTC8SpanDataV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + }, + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC2eeoiySbAA8SpanDataV4LinkV_AFtF", + "mangledName": "$s11VideoSDKRTC2eeoiySbAA8SpanDataV4LinkV_AFtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC2eeoiySbSayAA8SpanDataV4LinkVG_AGtF", + "mangledName": "$s11VideoSDKRTC2eeoiySbSayAA8SpanDataV4LinkVG_AGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanExporter", + "printedName": "SpanExporter", + "children": [ + { + "kind": "Function", + "name": "export", + "printedName": "export(spans:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12SpanExporterP6export5spansAA0cD10ResultCodeOSayAA0C4DataVG_tF", + "mangledName": "$s11VideoSDKRTC12SpanExporterP6export5spansAA0cD10ResultCodeOSayAA0C4DataVG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12SpanExporterP5flushAA0cD10ResultCodeOyF", + "mangledName": "$s11VideoSDKRTC12SpanExporterP5flushAA0cD10ResultCodeOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12SpanExporterP8shutdownyyF", + "mangledName": "$s11VideoSDKRTC12SpanExporterP8shutdownyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC12SpanExporterP", + "mangledName": "$s11VideoSDKRTC12SpanExporterP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanExporterResultCode", + "printedName": "SpanExporterResultCode", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SpanExporterResultCode.Type) -> VideoSDKRTC.SpanExporterResultCode", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SpanExporterResultCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO7successyA2CmF", + "mangledName": "$s11VideoSDKRTC22SpanExporterResultCodeO7successyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "failure", + "printedName": "failure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SpanExporterResultCode.Type) -> VideoSDKRTC.SpanExporterResultCode", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SpanExporterResultCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO7failureyA2CmF", + "mangledName": "$s11VideoSDKRTC22SpanExporterResultCodeO7failureyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC22SpanExporterResultCodeO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC22SpanExporterResultCodeO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC22SpanExporterResultCodeO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC22SpanExporterResultCodeO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO", + "mangledName": "$s11VideoSDKRTC22SpanExporterResultCodeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanId", + "printedName": "SpanId", + "children": [ + { + "kind": "Var", + "name": "size", + "printedName": "size", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV4sizeSivpZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV4sizeSivpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV4sizeSivgZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV4sizeSivgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "invalidId", + "printedName": "invalidId", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV07invalidD0s6UInt64VvpZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV07invalidD0s6UInt64VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV07invalidD0s6UInt64VvgZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV07invalidD0s6UInt64VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "invalid", + "printedName": "invalid", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV7invalidACvpZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV7invalidACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV7invalidACvgZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV7invalidACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getSize", + "printedName": "getSize()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV7getSizeSiyFZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV7getSizeSiyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(id:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6SpanIdV2idACs6UInt64V_tcfc", + "mangledName": "$s11VideoSDKRTC6SpanIdV2idACs6UInt64V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6SpanIdVACycfc", + "mangledName": "$s11VideoSDKRTC6SpanIdVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "random", + "printedName": "random()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV6randomACyFZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV6randomACyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromBytes:withOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6SpanIdV9fromBytes10withOffsetACSays5UInt8VG_Sitcfc", + "mangledName": "$s11VideoSDKRTC6SpanIdV9fromBytes10withOffsetACSays5UInt8VG_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromBytes:withOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:s10ArraySliceV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6SpanIdV9fromBytes10withOffsetACs10ArraySliceVys5UInt8VG_Sitcfc", + "mangledName": "$s11VideoSDKRTC6SpanIdV9fromBytes10withOffsetACs10ArraySliceVys5UInt8VG_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromBytes:withOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ], + "usr": "s:s10ArraySliceV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6SpanIdV9fromBytes10withOffsetACs10ArraySliceVySJG_Sitcfc", + "mangledName": "$s11VideoSDKRTC6SpanIdV9fromBytes10withOffsetACs10ArraySliceVySJG_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "copyBytesTo", + "printedName": "copyBytesTo(dest:destOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "paramValueOwnership": "InOut", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV11copyBytesTo4dest0H6Offsety10Foundation4DataVz_SitF", + "mangledName": "$s11VideoSDKRTC6SpanIdV11copyBytesTo4dest0H6Offsety10Foundation4DataVz_SitF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyBytesTo", + "printedName": "copyBytesTo(dest:destOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV11copyBytesTo4dest0H6OffsetySays5UInt8VGz_SitF", + "mangledName": "$s11VideoSDKRTC6SpanIdV11copyBytesTo4dest0H6OffsetySays5UInt8VGz_SitF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyBytesTo", + "printedName": "copyBytesTo(dest:destOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:s10ArraySliceV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV11copyBytesTo4dest0H6Offsetys10ArraySliceVys5UInt8VGz_SitF", + "mangledName": "$s11VideoSDKRTC6SpanIdV11copyBytesTo4dest0H6Offsetys10ArraySliceVys5UInt8VGz_SitF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromHexString:withOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6SpanIdV13fromHexString10withOffsetACSS_Sitcfc", + "mangledName": "$s11VideoSDKRTC6SpanIdV13fromHexString10withOffsetACSS_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "hexString", + "printedName": "hexString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV9hexStringSSvp", + "mangledName": "$s11VideoSDKRTC6SpanIdV9hexStringSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV9hexStringSSvg", + "mangledName": "$s11VideoSDKRTC6SpanIdV9hexStringSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV8rawValues6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC6SpanIdV8rawValues6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV8rawValues6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC6SpanIdV8rawValues6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isValid", + "printedName": "isValid", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV7isValidSbvp", + "mangledName": "$s11VideoSDKRTC6SpanIdV7isValidSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV7isValidSbvg", + "mangledName": "$s11VideoSDKRTC6SpanIdV7isValidSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC6SpanIdV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC6SpanIdV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV1loiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV1loiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6SpanIdV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC6SpanIdV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC6SpanIdV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC6SpanIdV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC6SpanIdV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC6SpanIdV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC6SpanIdV", + "mangledName": "$s11VideoSDKRTC6SpanIdV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanKind", + "printedName": "SpanKind", + "children": [ + { + "kind": "Var", + "name": "internal", + "printedName": "internal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SpanKind.Type) -> VideoSDKRTC.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SpanKindO8internalyA2CmF", + "mangledName": "$s11VideoSDKRTC8SpanKindO8internalyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "server", + "printedName": "server", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SpanKind.Type) -> VideoSDKRTC.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SpanKindO6serveryA2CmF", + "mangledName": "$s11VideoSDKRTC8SpanKindO6serveryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "client", + "printedName": "client", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SpanKind.Type) -> VideoSDKRTC.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SpanKindO6clientyA2CmF", + "mangledName": "$s11VideoSDKRTC8SpanKindO6clientyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "producer", + "printedName": "producer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SpanKind.Type) -> VideoSDKRTC.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SpanKindO8produceryA2CmF", + "mangledName": "$s11VideoSDKRTC8SpanKindO8produceryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "consumer", + "printedName": "consumer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SpanKind.Type) -> VideoSDKRTC.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SpanKindO8consumeryA2CmF", + "mangledName": "$s11VideoSDKRTC8SpanKindO8consumeryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanKind?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SpanKindO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC8SpanKindO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanKindO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC8SpanKindO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanKindO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC8SpanKindO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC8SpanKindO", + "mangledName": "$s11VideoSDKRTC8SpanKindO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanLimits", + "printedName": "SpanLimits", + "children": [ + { + "kind": "Var", + "name": "attributeCountLimit", + "printedName": "attributeCountLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10SpanLimitsV19attributeCountLimitSivp", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV19attributeCountLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10SpanLimitsV19attributeCountLimitSivg", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV19attributeCountLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventCountLimit", + "printedName": "eventCountLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10SpanLimitsV15eventCountLimitSivp", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV15eventCountLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10SpanLimitsV15eventCountLimitSivg", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV15eventCountLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "linkCountLimit", + "printedName": "linkCountLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10SpanLimitsV14linkCountLimitSivp", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV14linkCountLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10SpanLimitsV14linkCountLimitSivg", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV14linkCountLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributePerEventCountLimit", + "printedName": "attributePerEventCountLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10SpanLimitsV27attributePerEventCountLimitSivp", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV27attributePerEventCountLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10SpanLimitsV27attributePerEventCountLimitSivg", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV27attributePerEventCountLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributePerLinkCountLimit", + "printedName": "attributePerLinkCountLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10SpanLimitsV26attributePerLinkCountLimitSivp", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV26attributePerLinkCountLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10SpanLimitsV26attributePerLinkCountLimitSivg", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV26attributePerLinkCountLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10SpanLimitsVACycfc", + "mangledName": "$s11VideoSDKRTC10SpanLimitsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "settingAttributeCountLimit", + "printedName": "settingAttributeCountLimit(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SpanLimitsV26settingAttributeCountLimityACSuF", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV26settingAttributeCountLimityACSuF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "settingEventCountLimit", + "printedName": "settingEventCountLimit(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SpanLimitsV22settingEventCountLimityACSuF", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV22settingEventCountLimityACSuF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "settingLinkCountLimit", + "printedName": "settingLinkCountLimit(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SpanLimitsV21settingLinkCountLimityACSuF", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV21settingLinkCountLimityACSuF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "settingAttributePerEventCountLimit", + "printedName": "settingAttributePerEventCountLimit(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SpanLimitsV34settingAttributePerEventCountLimityACSuF", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV34settingAttributePerEventCountLimityACSuF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "settingAttributePerLinkCountLimit", + "printedName": "settingAttributePerLinkCountLimit(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SpanLimitsV33settingAttributePerLinkCountLimityACSuF", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV33settingAttributePerLinkCountLimityACSuF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SpanLimitsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC10SpanLimitsV", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanProcessor", + "printedName": "SpanProcessor", + "children": [ + { + "kind": "Var", + "name": "isStartRequired", + "printedName": "isStartRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13SpanProcessorP15isStartRequiredSbvp", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP15isStartRequiredSbvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP15isStartRequiredSbvg", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP15isStartRequiredSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isEndRequired", + "printedName": "isEndRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13SpanProcessorP13isEndRequiredSbvp", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP13isEndRequiredSbvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP13isEndRequiredSbvg", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP13isEndRequiredSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "onStart", + "printedName": "onStart(parentContext:span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13SpanProcessorP7onStart13parentContext4spanyAA0cH0VSg_AA08ReadableC0_ptF", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP7onStart13parentContext4spanyAA0cH0VSg_AA08ReadableC0_ptF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onEnd", + "printedName": "onEnd(span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13SpanProcessorP5onEnd4spanyAA08ReadableC0_p_tF", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP5onEnd4spanyAA08ReadableC0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13SpanProcessorP8shutdownyyF", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP8shutdownyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush(timeout:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13SpanProcessorP10forceFlush7timeoutySdSg_tF", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP10forceFlush7timeoutySdSg_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13SpanProcessorP", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SPBDecoder", + "printedName": "SPBDecoder", + "children": [ + { + "kind": "Function", + "name": "handleConflictingOneOf", + "printedName": "handleConflictingOneOf()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP22handleConflictingOneOfyyKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP22handleConflictingOneOfyyKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "nextFieldNumber", + "printedName": "nextFieldNumber()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP15nextFieldNumberSiSgyKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP15nextFieldNumberSiSgyKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularFloatField", + "printedName": "decodeSingularFloatField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "paramValueOwnership": "InOut", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularFloatField5valueySfz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularFloatField5valueySfz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularFloatField", + "printedName": "decodeSingularFloatField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Float?", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularFloatField5valueySfSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularFloatField5valueySfSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedFloatField", + "printedName": "decodeRepeatedFloatField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeRepeatedFloatField5valueySaySfGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeRepeatedFloatField5valueySaySfGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularDoubleField", + "printedName": "decodeSingularDoubleField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "paramValueOwnership": "InOut", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularDoubleField5valueySdz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularDoubleField5valueySdz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularDoubleField", + "printedName": "decodeSingularDoubleField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularDoubleField5valueySdSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularDoubleField5valueySdSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedDoubleField", + "printedName": "decodeRepeatedDoubleField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeRepeatedDoubleField5valueySaySdGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeRepeatedDoubleField5valueySaySdGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularInt32Field", + "printedName": "decodeSingularInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "paramValueOwnership": "InOut", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularInt32Field5valueys0F0Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularInt32Field5valueys0F0Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularInt32Field", + "printedName": "decodeSingularInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int32?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularInt32Field5valueys0F0VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularInt32Field5valueys0F0VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedInt32Field", + "printedName": "decodeRepeatedInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeRepeatedInt32Field5valueySays0F0VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeRepeatedInt32Field5valueySays0F0VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularInt64Field", + "printedName": "decodeSingularInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "paramValueOwnership": "InOut", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularInt64Field5valueys0F0Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularInt64Field5valueys0F0Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularInt64Field", + "printedName": "decodeSingularInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularInt64Field5valueys0F0VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularInt64Field5valueys0F0VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedInt64Field", + "printedName": "decodeRepeatedInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeRepeatedInt64Field5valueySays0F0VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeRepeatedInt64Field5valueySays0F0VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularUInt32Field", + "printedName": "decodeSingularUInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "paramValueOwnership": "InOut", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularUInt32Field5valueys0F0Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularUInt32Field5valueys0F0Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularUInt32Field", + "printedName": "decodeSingularUInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularUInt32Field5valueys0F0VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularUInt32Field5valueys0F0VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedUInt32Field", + "printedName": "decodeRepeatedUInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeRepeatedUInt32Field5valueySays0F0VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeRepeatedUInt32Field5valueySays0F0VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularUInt64Field", + "printedName": "decodeSingularUInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "paramValueOwnership": "InOut", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularUInt64Field5valueys0F0Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularUInt64Field5valueys0F0Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularUInt64Field", + "printedName": "decodeSingularUInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt64?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularUInt64Field5valueys0F0VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularUInt64Field5valueys0F0VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedUInt64Field", + "printedName": "decodeRepeatedUInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeRepeatedUInt64Field5valueySays0F0VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeRepeatedUInt64Field5valueySays0F0VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSInt32Field", + "printedName": "decodeSingularSInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "paramValueOwnership": "InOut", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularSInt32Field5valueys5Int32Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularSInt32Field5valueys5Int32Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSInt32Field", + "printedName": "decodeSingularSInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int32?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularSInt32Field5valueys5Int32VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularSInt32Field5valueys5Int32VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedSInt32Field", + "printedName": "decodeRepeatedSInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeRepeatedSInt32Field5valueySays5Int32VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeRepeatedSInt32Field5valueySays5Int32VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSInt64Field", + "printedName": "decodeSingularSInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "paramValueOwnership": "InOut", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularSInt64Field5valueys5Int64Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularSInt64Field5valueys5Int64Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSInt64Field", + "printedName": "decodeSingularSInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularSInt64Field5valueys5Int64VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularSInt64Field5valueys5Int64VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedSInt64Field", + "printedName": "decodeRepeatedSInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeRepeatedSInt64Field5valueySays5Int64VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeRepeatedSInt64Field5valueySays5Int64VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularFixed32Field", + "printedName": "decodeSingularFixed32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "paramValueOwnership": "InOut", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeSingularFixed32Field5valueys6UInt32Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeSingularFixed32Field5valueys6UInt32Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularFixed32Field", + "printedName": "decodeSingularFixed32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeSingularFixed32Field5valueys6UInt32VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeSingularFixed32Field5valueys6UInt32VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedFixed32Field", + "printedName": "decodeRepeatedFixed32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeRepeatedFixed32Field5valueySays6UInt32VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeRepeatedFixed32Field5valueySays6UInt32VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularFixed64Field", + "printedName": "decodeSingularFixed64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "paramValueOwnership": "InOut", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeSingularFixed64Field5valueys6UInt64Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeSingularFixed64Field5valueys6UInt64Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularFixed64Field", + "printedName": "decodeSingularFixed64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt64?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeSingularFixed64Field5valueys6UInt64VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeSingularFixed64Field5valueys6UInt64VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedFixed64Field", + "printedName": "decodeRepeatedFixed64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeRepeatedFixed64Field5valueySays6UInt64VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeRepeatedFixed64Field5valueySays6UInt64VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSFixed32Field", + "printedName": "decodeSingularSFixed32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "paramValueOwnership": "InOut", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed32Field5valueys5Int32Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed32Field5valueys5Int32Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSFixed32Field", + "printedName": "decodeSingularSFixed32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int32?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed32Field5valueys5Int32VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed32Field5valueys5Int32VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedSFixed32Field", + "printedName": "decodeRepeatedSFixed32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP27decodeRepeatedSFixed32Field5valueySays5Int32VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP27decodeRepeatedSFixed32Field5valueySays5Int32VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSFixed64Field", + "printedName": "decodeSingularSFixed64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "paramValueOwnership": "InOut", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed64Field5valueys5Int64Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed64Field5valueys5Int64Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSFixed64Field", + "printedName": "decodeSingularSFixed64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed64Field5valueys5Int64VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed64Field5valueys5Int64VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedSFixed64Field", + "printedName": "decodeRepeatedSFixed64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP27decodeRepeatedSFixed64Field5valueySays5Int64VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP27decodeRepeatedSFixed64Field5valueySays5Int64VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularBoolField", + "printedName": "decodeSingularBoolField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "paramValueOwnership": "InOut", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP23decodeSingularBoolField5valueySbz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP23decodeSingularBoolField5valueySbz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularBoolField", + "printedName": "decodeSingularBoolField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP23decodeSingularBoolField5valueySbSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP23decodeSingularBoolField5valueySbSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedBoolField", + "printedName": "decodeRepeatedBoolField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP23decodeRepeatedBoolField5valueySaySbGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP23decodeRepeatedBoolField5valueySaySbGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularStringField", + "printedName": "decodeSingularStringField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "paramValueOwnership": "InOut", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularStringField5valueySSz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularStringField5valueySSz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularStringField", + "printedName": "decodeSingularStringField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularStringField5valueySSSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularStringField5valueySSSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedStringField", + "printedName": "decodeRepeatedStringField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeRepeatedStringField5valueySaySSGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeRepeatedStringField5valueySaySSGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularBytesField", + "printedName": "decodeSingularBytesField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "paramValueOwnership": "InOut", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularBytesField5valuey10Foundation4DataVz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularBytesField5valuey10Foundation4DataVz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularBytesField", + "printedName": "decodeSingularBytesField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularBytesField5valuey10Foundation4DataVSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularBytesField5valuey10Foundation4DataVSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedBytesField", + "printedName": "decodeRepeatedBytesField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeRepeatedBytesField5valueySay10Foundation4DataVGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeRepeatedBytesField5valueySay10Foundation4DataVGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularEnumField", + "printedName": "decodeSingularEnumField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP23decodeSingularEnumField5valueyqd__z_tKAA0F0Rd__Si8RawValueRtd__lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP23decodeSingularEnumField5valueyqd__z_tKAA0F0Rd__Si8RawValueRtd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.Enum, τ_1_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularEnumField", + "printedName": "decodeSingularEnumField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP23decodeSingularEnumField5valueyqd__Sgz_tKAA0F0Rd__Si8RawValueRtd__lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP23decodeSingularEnumField5valueyqd__Sgz_tKAA0F0Rd__Si8RawValueRtd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.Enum, τ_1_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedEnumField", + "printedName": "decodeRepeatedEnumField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP23decodeRepeatedEnumField5valueySayqd__Gz_tKAA0F0Rd__Si8RawValueRtd__lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP23decodeRepeatedEnumField5valueySayqd__Gz_tKAA0F0Rd__Si8RawValueRtd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.Enum, τ_1_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularMessageField", + "printedName": "decodeSingularMessageField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeSingularMessageField5valueyqd__Sgz_tKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeSingularMessageField5valueyqd__Sgz_tKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedMessageField", + "printedName": "decodeRepeatedMessageField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeRepeatedMessageField5valueySayqd__Gz_tKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeRepeatedMessageField5valueySayqd__Gz_tKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularGroupField", + "printedName": "decodeSingularGroupField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularGroupField5valueyqd__Sgz_tKAA7MessageRd__lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularGroupField5valueyqd__Sgz_tKAA7MessageRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedGroupField", + "printedName": "decodeRepeatedGroupField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeRepeatedGroupField5valueySayqd__Gz_tKAA7MessageRd__lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeRepeatedGroupField5valueySayqd__Gz_tKAA7MessageRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeMapField", + "printedName": "decodeMapField(fieldType:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._ProtobufMap<τ_1_0, τ_1_1>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProtobufMap", + "printedName": "VideoSDKRTC._ProtobufMap<τ_1_0, τ_1_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:11VideoSDKRTC12_ProtobufMapV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_1_0.BaseType : τ_1_1.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_1.BaseType" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP14decodeMapField9fieldType5valueyAA09_ProtobufE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__AJQyd_0_GztKAA0e3KeyH0Rd__AA0e5ValueH0Rd_0_r0_lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP14decodeMapField9fieldType5valueyAA09_ProtobufE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__AJQyd_0_GztKAA0e3KeyH0Rd__AA0e5ValueH0Rd_0_r0_lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0, τ_1_1 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.MapKeyType, τ_1_1 : VideoSDKRTC.MapValueType>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeMapField", + "printedName": "decodeMapField(fieldType:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._ProtobufEnumMap<τ_1_0, τ_1_1>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProtobufEnumMap", + "printedName": "VideoSDKRTC._ProtobufEnumMap<τ_1_0, τ_1_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:11VideoSDKRTC16_ProtobufEnumMapV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_1_0.BaseType : τ_1_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP14decodeMapField9fieldType5valueyAA013_ProtobufEnumE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GztKAA0e3KeyH0Rd__AA0K0Rd_0_Si8RawValueRtd_0_r0_lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP14decodeMapField9fieldType5valueyAA013_ProtobufEnumE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GztKAA0e3KeyH0Rd__AA0K0Rd_0_Si8RawValueRtd_0_r0_lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0, τ_1_1 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.MapKeyType, τ_1_1 : VideoSDKRTC.Enum, τ_1_1.RawValue == Swift.Int>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeMapField", + "printedName": "decodeMapField(fieldType:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._ProtobufMessageMap<τ_1_0, τ_1_1>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProtobufMessageMap", + "printedName": "VideoSDKRTC._ProtobufMessageMap<τ_1_0, τ_1_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:11VideoSDKRTC19_ProtobufMessageMapV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_1_0.BaseType : τ_1_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP14decodeMapField9fieldType5valueyAA016_ProtobufMessageE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GztKAA0e3KeyH0Rd__SHRd_0_AA0K0Rd_0_r0_lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP14decodeMapField9fieldType5valueyAA016_ProtobufMessageE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GztKAA0e3KeyH0Rd__SHRd_0_AA0K0Rd_0_r0_lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0, τ_1_1 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.MapKeyType, τ_1_1 : Swift.Hashable, τ_1_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(values:messageType:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "paramValueOwnership": "InOut", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP20decodeExtensionField6values11messageType11fieldNumberyAA0eF8ValueSetVz_AA7Message_pXpSitKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP20decodeExtensionField6values11messageType11fieldNumberyAA0eF8ValueSetVz_AA7Message_pXpSitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeExtensionFieldsAsMessageSet", + "printedName": "decodeExtensionFieldsAsMessageSet(values:messageType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "paramValueOwnership": "InOut", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP33decodeExtensionFieldsAsMessageSet6values11messageTypeyAA0e10FieldValueI0Vz_AA0H0_pXptKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP33decodeExtensionFieldsAsMessageSet6values11messageTypeyAA0e10FieldValueI0Vz_AA0H0_pXptKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeExtensionFieldsAsMessageSet", + "printedName": "decodeExtensionFieldsAsMessageSet(values:messageType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "paramValueOwnership": "InOut", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderPAAE33decodeExtensionFieldsAsMessageSet6values11messageTypeyAA0e10FieldValueI0Vz_AA0H0_pXptKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderPAAE33decodeExtensionFieldsAsMessageSet6values11messageTypeyAA0e10FieldValueI0Vz_AA0H0_pXptKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC10SPBDecoderP", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableAggregator", + "printedName": "StableAggregator", + "children": [ + { + "kind": "Function", + "name": "diff", + "printedName": "diff(previousCumulative:currentCumulative:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16StableAggregatorP4diff18previousCumulative07currentG0AA9PointDataCAH_AHtKF", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP4diff18previousCumulative07currentG0AA9PointDataCAH_AHtKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableAggregator>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toPoint", + "printedName": "toPoint(measurement:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16StableAggregatorP7toPoint11measurementAA0F4DataCAA11MeasurementV_tKF", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP7toPoint11measurementAA0F4DataCAA11MeasurementV_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableAggregator>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createHandle", + "printedName": "createHandle()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregatorHandle", + "printedName": "VideoSDKRTC.AggregatorHandle", + "usr": "s:11VideoSDKRTC16AggregatorHandleC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16StableAggregatorP12createHandleAA0dF0CyF", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP12createHandleAA0dF0CyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableAggregator>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData(resource:scope:descriptor:points:temporality:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16StableAggregatorP12toMetricData8resource5scope10descriptor6points11temporalityAA0cfG0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0F10DescriptorVSayAA05PointG0CGAA22AggregationTemporalityOtF", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP12toMetricData8resource5scope10descriptor6points11temporalityAA0cfG0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0F10DescriptorVSayAA05PointG0CGAA22AggregationTemporalityOtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableAggregator>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC16StableAggregatorP", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableMeter", + "printedName": "StableMeter", + "children": [ + { + "kind": "Function", + "name": "counterBuilder", + "printedName": "counterBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LongCounterBuilder", + "printedName": "VideoSDKRTC.LongCounterBuilder", + "usr": "s:11VideoSDKRTC18LongCounterBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11StableMeterP14counterBuilder4nameAA011LongCounterF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC11StableMeterP14counterBuilder4nameAA011LongCounterF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMeter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "upDownCounterBuilder", + "printedName": "upDownCounterBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LongUpDownCounterBuilder", + "printedName": "VideoSDKRTC.LongUpDownCounterBuilder", + "usr": "s:11VideoSDKRTC24LongUpDownCounterBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11StableMeterP20upDownCounterBuilder4nameAA06LongUpfgH0_pSS_tF", + "mangledName": "$s11VideoSDKRTC11StableMeterP20upDownCounterBuilder4nameAA06LongUpfgH0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMeter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "histogramBuilder", + "printedName": "histogramBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleHistogramBuilder", + "printedName": "VideoSDKRTC.DoubleHistogramBuilder", + "usr": "s:11VideoSDKRTC22DoubleHistogramBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11StableMeterP16histogramBuilder4nameAA015DoubleHistogramF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC11StableMeterP16histogramBuilder4nameAA015DoubleHistogramF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMeter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "gaugeBuilder", + "printedName": "gaugeBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleGaugeBuilder", + "printedName": "VideoSDKRTC.DoubleGaugeBuilder", + "usr": "s:11VideoSDKRTC18DoubleGaugeBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11StableMeterP12gaugeBuilder4nameAA011DoubleGaugeF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC11StableMeterP12gaugeBuilder4nameAA011DoubleGaugeF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMeter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC11StableMeterP", + "mangledName": "$s11VideoSDKRTC11StableMeterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableMeterProvider", + "printedName": "StableMeterProvider", + "children": [ + { + "kind": "Function", + "name": "get", + "printedName": "get(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeter", + "printedName": "VideoSDKRTC.StableMeter", + "usr": "s:11VideoSDKRTC11StableMeterP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19StableMeterProviderP3get4nameAA0cD0_pSS_tF", + "mangledName": "$s11VideoSDKRTC19StableMeterProviderP3get4nameAA0cD0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMeterProvider>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "meterBuilder", + "printedName": "meterBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterBuilder", + "printedName": "VideoSDKRTC.MeterBuilder", + "usr": "s:11VideoSDKRTC12MeterBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19StableMeterProviderP12meterBuilder4nameAA0dG0_pSS_tF", + "mangledName": "$s11VideoSDKRTC19StableMeterProviderP12meterBuilder4nameAA0dG0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMeterProvider>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC19StableMeterProviderP", + "mangledName": "$s11VideoSDKRTC19StableMeterProviderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableMeterProviderBuilder", + "printedName": "StableMeterProviderBuilder", + "children": [ + { + "kind": "Var", + "name": "clock", + "printedName": "clock", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC5clockAA5Clock_pvp", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC5clockAA5Clock_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC5clockAA5Clock_pvg", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC5clockAA5Clock_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metricReaders", + "printedName": "metricReaders", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.StableMetricReader]", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricReader", + "printedName": "VideoSDKRTC.StableMetricReader", + "usr": "s:11VideoSDKRTC18StableMetricReaderP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC13metricReadersSayAA0C12MetricReader_pGvp", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC13metricReadersSayAA0C12MetricReader_pGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.StableMetricReader]", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricReader", + "printedName": "VideoSDKRTC.StableMetricReader", + "usr": "s:11VideoSDKRTC18StableMetricReaderP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC13metricReadersSayAA0C12MetricReader_pGvg", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC13metricReadersSayAA0C12MetricReader_pGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "registeredViews", + "printedName": "registeredViews", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.RegisteredView]", + "children": [ + { + "kind": "TypeNominal", + "name": "RegisteredView", + "printedName": "VideoSDKRTC.RegisteredView", + "usr": "s:11VideoSDKRTC14RegisteredViewC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC15registeredViewsSayAA14RegisteredViewCGvp", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC15registeredViewsSayAA14RegisteredViewCGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.RegisteredView]", + "children": [ + { + "kind": "TypeNominal", + "name": "RegisteredView", + "printedName": "VideoSDKRTC.RegisteredView", + "usr": "s:11VideoSDKRTC14RegisteredViewC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC15registeredViewsSayAA14RegisteredViewCGvg", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC15registeredViewsSayAA14RegisteredViewCGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "exemplarFilter", + "printedName": "exemplarFilter", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC14exemplarFilterAA08ExemplarH0_pvp", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC14exemplarFilterAA08ExemplarH0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC14exemplarFilterAA08ExemplarH0_pvg", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC14exemplarFilterAA08ExemplarH0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeterProviderBuilder", + "printedName": "VideoSDKRTC.StableMeterProviderBuilder", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderCACycfc", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setClock", + "printedName": "setClock(clock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC8setClock5clockACXDAA0H0_p_tF", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC8setClock5clockACXDAA0H0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setResource", + "printedName": "setResource(resource:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC11setResource8resourceACXDAA0H0V_tF", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC11setResource8resourceACXDAA0H0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerView", + "printedName": "registerView(selector:view:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "InstrumentSelector", + "printedName": "VideoSDKRTC.InstrumentSelector", + "usr": "s:11VideoSDKRTC18InstrumentSelectorC" + }, + { + "kind": "TypeNominal", + "name": "StableView", + "printedName": "VideoSDKRTC.StableView", + "usr": "s:11VideoSDKRTC10StableViewC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC12registerView8selector4viewACXDAA18InstrumentSelectorC_AA0cH0CtF", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC12registerView8selector4viewACXDAA18InstrumentSelectorC_AA0cH0CtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerMetricReader", + "printedName": "registerMetricReader(reader:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "StableMetricReader", + "printedName": "VideoSDKRTC.StableMetricReader", + "usr": "s:11VideoSDKRTC18StableMetricReaderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC20registerMetricReader6readerACXDAA0chI0_p_tF", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC20registerMetricReader6readerACXDAA0chI0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeterProviderSdk", + "printedName": "VideoSDKRTC.StableMeterProviderSdk", + "usr": "s:11VideoSDKRTC22StableMeterProviderSdkC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC5buildAA0cdE3SdkCyF", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC5buildAA0cdE3SdkCyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeterProviderError", + "printedName": "MeterProviderError", + "declKind": "Class", + "usr": "s:11VideoSDKRTC18MeterProviderErrorC", + "mangledName": "$s11VideoSDKRTC18MeterProviderErrorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StableMeterProviderSdk", + "printedName": "StableMeterProviderSdk", + "children": [ + { + "kind": "Function", + "name": "get", + "printedName": "get(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeter", + "printedName": "VideoSDKRTC.StableMeter", + "usr": "s:11VideoSDKRTC11StableMeterP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22StableMeterProviderSdkC3get4nameAA0cD0_pSS_tF", + "mangledName": "$s11VideoSDKRTC22StableMeterProviderSdkC3get4nameAA0cD0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "meterBuilder", + "printedName": "meterBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterBuilder", + "printedName": "VideoSDKRTC.MeterBuilder", + "usr": "s:11VideoSDKRTC12MeterBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22StableMeterProviderSdkC12meterBuilder4nameAA0dH0_pSS_tF", + "mangledName": "$s11VideoSDKRTC22StableMeterProviderSdkC12meterBuilder4nameAA0dH0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "builder", + "printedName": "builder()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeterProviderBuilder", + "printedName": "VideoSDKRTC.StableMeterProviderBuilder", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22StableMeterProviderSdkC7builderAA0cdE7BuilderCyFZ", + "mangledName": "$s11VideoSDKRTC22StableMeterProviderSdkC7builderAA0cdE7BuilderCyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22StableMeterProviderSdkC8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC22StableMeterProviderSdkC8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22StableMeterProviderSdkC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC22StableMeterProviderSdkC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC22StableMeterProviderSdkC", + "mangledName": "$s11VideoSDKRTC22StableMeterProviderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "StableMeterProvider", + "printedName": "StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP", + "mangledName": "$s11VideoSDKRTC19StableMeterProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeterProviderSharedState", + "printedName": "MeterProviderSharedState", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(clock:resource:startEpochNanos:exemplarFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProviderSharedState", + "printedName": "VideoSDKRTC.MeterProviderSharedState", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC5clock8resource15startEpochNanos14exemplarFilterAcA5Clock_p_AA8ResourceVs6UInt64VAA08ExemplarM0_ptcfc", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC5clock8resource15startEpochNanos14exemplarFilterAcA5Clock_p_AA8ResourceVs6UInt64VAA08ExemplarM0_ptcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "clock", + "printedName": "clock", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC5clockAA5Clock_pvp", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC5clockAA5Clock_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC5clockAA5Clock_pvg", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC5clockAA5Clock_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "startEpochNanos", + "printedName": "startEpochNanos", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC15startEpochNanoss6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC15startEpochNanoss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC15startEpochNanoss6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC15startEpochNanoss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "exemplarFilter", + "printedName": "exemplarFilter", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC14exemplarFilterAA08ExemplarH0_pvp", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC14exemplarFilterAA08ExemplarH0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC14exemplarFilterAA08ExemplarH0_pvg", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC14exemplarFilterAA08ExemplarH0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricDataType", + "printedName": "MetricDataType", + "children": [ + { + "kind": "Var", + "name": "LongGauge", + "printedName": "LongGauge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricDataType.Type) -> VideoSDKRTC.MetricDataType", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricDataType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14MetricDataTypeO9LongGaugeyA2CmF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO9LongGaugeyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "DoubleGauge", + "printedName": "DoubleGauge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricDataType.Type) -> VideoSDKRTC.MetricDataType", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricDataType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14MetricDataTypeO11DoubleGaugeyA2CmF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO11DoubleGaugeyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "LongSum", + "printedName": "LongSum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricDataType.Type) -> VideoSDKRTC.MetricDataType", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricDataType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14MetricDataTypeO7LongSumyA2CmF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO7LongSumyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "DoubleSum", + "printedName": "DoubleSum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricDataType.Type) -> VideoSDKRTC.MetricDataType", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricDataType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14MetricDataTypeO9DoubleSumyA2CmF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO9DoubleSumyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "Summary", + "printedName": "Summary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricDataType.Type) -> VideoSDKRTC.MetricDataType", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricDataType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14MetricDataTypeO7SummaryyA2CmF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO7SummaryyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "Histogram", + "printedName": "Histogram", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricDataType.Type) -> VideoSDKRTC.MetricDataType", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricDataType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14MetricDataTypeO9HistogramyA2CmF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO9HistogramyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ExponentialHistogram", + "printedName": "ExponentialHistogram", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricDataType.Type) -> VideoSDKRTC.MetricDataType", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricDataType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14MetricDataTypeO20ExponentialHistogramyA2CmF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO20ExponentialHistogramyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricDataTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14MetricDataTypeO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14MetricDataTypeO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricDataTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC14MetricDataTypeO", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StableMetricData", + "printedName": "StableMetricData", + "children": [ + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instrumentationScopeInfo", + "printedName": "instrumentationScopeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV24instrumentationScopeInfoAA015InstrumentationgH0Vvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV24instrumentationScopeInfoAA015InstrumentationgH0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV24instrumentationScopeInfoAA015InstrumentationgH0Vvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV24instrumentationScopeInfoAA015InstrumentationgH0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV4nameSSvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV4nameSSvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unit", + "printedName": "unit", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV4unitSSvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4unitSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV4unitSSvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4unitSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV4typeAA0dE4TypeOvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4typeAA0dE4TypeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV4typeAA0dE4TypeOvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4typeAA0dE4TypeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "VideoSDKRTC.StableMetricData.Data", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV4dataAC0E0Cvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4dataAC0E0Cvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "VideoSDKRTC.StableMetricData.Data", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV4dataAC0E0Cvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4dataAC0E0Cvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "empty", + "printedName": "empty", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV5emptyACvpZ", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV5emptyACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV5emptyACvgZ", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV5emptyACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Data", + "printedName": "Data", + "children": [ + { + "kind": "Var", + "name": "points", + "printedName": "points", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C6pointsSayAA05PointE0CGvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV0E0C6pointsSayAA05PointE0CGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C6pointsSayAA05PointE0CGvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV0E0C6pointsSayAA05PointE0CGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "VideoSDKRTC.StableMetricData.Data", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "VideoSDKRTC.StableMetricData.Data", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV0E0C2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV0E0C", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16StableMetricDataV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16StableMetricDataV", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StableHistogramData", + "printedName": "StableHistogramData", + "children": [ + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19StableHistogramDataC22aggregationTemporalityAA011AggregationG0Ovp", + "mangledName": "$s11VideoSDKRTC19StableHistogramDataC22aggregationTemporalityAA011AggregationG0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19StableHistogramDataC22aggregationTemporalityAA011AggregationG0Ovg", + "mangledName": "$s11VideoSDKRTC19StableHistogramDataC22aggregationTemporalityAA011AggregationG0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19StableHistogramDataC", + "mangledName": "$s11VideoSDKRTC19StableHistogramDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC16StableMetricDataV0E0C", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.StableMetricData.Data" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StableExponentialHistogramData", + "printedName": "StableExponentialHistogramData", + "children": [ + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30StableExponentialHistogramDataC22aggregationTemporalityAA011AggregationH0Ovp", + "mangledName": "$s11VideoSDKRTC30StableExponentialHistogramDataC22aggregationTemporalityAA011AggregationH0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30StableExponentialHistogramDataC22aggregationTemporalityAA011AggregationH0Ovg", + "mangledName": "$s11VideoSDKRTC30StableExponentialHistogramDataC22aggregationTemporalityAA011AggregationH0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC30StableExponentialHistogramDataC", + "mangledName": "$s11VideoSDKRTC30StableExponentialHistogramDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC16StableMetricDataV0E0C", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.StableMetricData.Data" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StableGaugeData", + "printedName": "StableGaugeData", + "children": [ + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15StableGaugeDataC22aggregationTemporalityAA011AggregationG0Ovp", + "mangledName": "$s11VideoSDKRTC15StableGaugeDataC22aggregationTemporalityAA011AggregationG0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15StableGaugeDataC22aggregationTemporalityAA011AggregationG0Ovg", + "mangledName": "$s11VideoSDKRTC15StableGaugeDataC22aggregationTemporalityAA011AggregationG0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC15StableGaugeDataC", + "mangledName": "$s11VideoSDKRTC15StableGaugeDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC16StableMetricDataV0E0C", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.StableMetricData.Data" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StableSumData", + "printedName": "StableSumData", + "children": [ + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13StableSumDataC22aggregationTemporalityAA011AggregationG0Ovp", + "mangledName": "$s11VideoSDKRTC13StableSumDataC22aggregationTemporalityAA011AggregationG0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13StableSumDataC22aggregationTemporalityAA011AggregationG0Ovg", + "mangledName": "$s11VideoSDKRTC13StableSumDataC22aggregationTemporalityAA011AggregationG0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC13StableSumDataC", + "mangledName": "$s11VideoSDKRTC13StableSumDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC16StableMetricDataV0E0C", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.StableMetricData.Data" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StableSummaryData", + "printedName": "StableSummaryData", + "children": [ + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17StableSummaryDataC22aggregationTemporalityAA011AggregationG0Ovp", + "mangledName": "$s11VideoSDKRTC17StableSummaryDataC22aggregationTemporalityAA011AggregationG0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17StableSummaryDataC22aggregationTemporalityAA011AggregationG0Ovg", + "mangledName": "$s11VideoSDKRTC17StableSummaryDataC22aggregationTemporalityAA011AggregationG0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC17StableSummaryDataC", + "mangledName": "$s11VideoSDKRTC17StableSummaryDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC16StableMetricDataV0E0C", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.StableMetricData.Data" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableMetricExporter", + "printedName": "StableMetricExporter", + "children": [ + { + "kind": "Function", + "name": "export", + "printedName": "export(metrics:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.StableMetricData]", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20StableMetricExporterP6export7metricsAA12ExportResultOSayAA0cD4DataVG_tF", + "mangledName": "$s11VideoSDKRTC20StableMetricExporterP6export7metricsAA12ExportResultOSayAA0cD4DataVG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMetricExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20StableMetricExporterP5flushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC20StableMetricExporterP5flushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMetricExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20StableMetricExporterP8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC20StableMetricExporterP8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMetricExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDefaultAggregation", + "printedName": "getDefaultAggregation(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20StableMetricExporterPAAE21getDefaultAggregation3forAA0H0_pAA14InstrumentTypeO_tF", + "mangledName": "$s11VideoSDKRTC20StableMetricExporterPAAE21getDefaultAggregation3forAA0H0_pAA14InstrumentTypeO_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMetricExporter>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC20StableMetricExporterP", + "mangledName": "$s11VideoSDKRTC20StableMetricExporterP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.AggregationTemporalitySelectorProtocol, τ_0_0 : VideoSDKRTC.DefaultAggregationSelector>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DefaultAggregationSelector", + "printedName": "DefaultAggregationSelector", + "usr": "s:11VideoSDKRTC26DefaultAggregationSelectorP", + "mangledName": "$s11VideoSDKRTC26DefaultAggregationSelectorP" + }, + { + "kind": "Conformance", + "name": "AggregationTemporalitySelectorProtocol", + "printedName": "AggregationTemporalitySelectorProtocol", + "usr": "s:11VideoSDKRTC38AggregationTemporalitySelectorProtocolP", + "mangledName": "$s11VideoSDKRTC38AggregationTemporalitySelectorProtocolP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableMetricReader", + "printedName": "StableMetricReader", + "children": [ + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18StableMetricReaderP10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC18StableMetricReaderP10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMetricReader>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18StableMetricReaderP8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC18StableMetricReaderP8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMetricReader>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(registration:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CollectionRegistration", + "printedName": "VideoSDKRTC.CollectionRegistration", + "usr": "s:11VideoSDKRTC22CollectionRegistrationP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18StableMetricReaderP8register12registrationyAA22CollectionRegistration_p_tF", + "mangledName": "$s11VideoSDKRTC18StableMetricReaderP8register12registrationyAA22CollectionRegistration_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMetricReader>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC18StableMetricReaderP", + "mangledName": "$s11VideoSDKRTC18StableMetricReaderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.AggregationTemporalitySelectorProtocol, τ_0_0 : VideoSDKRTC.DefaultAggregationSelector>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DefaultAggregationSelector", + "printedName": "DefaultAggregationSelector", + "usr": "s:11VideoSDKRTC26DefaultAggregationSelectorP", + "mangledName": "$s11VideoSDKRTC26DefaultAggregationSelectorP" + }, + { + "kind": "Conformance", + "name": "AggregationTemporalitySelectorProtocol", + "printedName": "AggregationTemporalitySelectorProtocol", + "usr": "s:11VideoSDKRTC38AggregationTemporalitySelectorProtocolP", + "mangledName": "$s11VideoSDKRTC38AggregationTemporalitySelectorProtocolP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableObservableMeasurementSdk", + "printedName": "StableObservableMeasurementSdk", + "children": [ + { + "kind": "Var", + "name": "descriptor", + "printedName": "descriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC10descriptorAA20InstrumentDescriptorVvp", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC10descriptorAA20InstrumentDescriptorVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC10descriptorAA20InstrumentDescriptorVvg", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC10descriptorAA20InstrumentDescriptorVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "storages", + "printedName": "storages", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.AsynchronousMetricStorage]", + "children": [ + { + "kind": "TypeNominal", + "name": "AsynchronousMetricStorage", + "printedName": "VideoSDKRTC.AsynchronousMetricStorage", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC8storagesSayAA25AsynchronousMetricStorageCGvp", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC8storagesSayAA25AsynchronousMetricStorageCGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.AsynchronousMetricStorage]", + "children": [ + { + "kind": "TypeNominal", + "name": "AsynchronousMetricStorage", + "printedName": "VideoSDKRTC.AsynchronousMetricStorage", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC8storagesSayAA25AsynchronousMetricStorageCGvg", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC8storagesSayAA25AsynchronousMetricStorageCGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearActiveReader", + "printedName": "clearActiveReader()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC17clearActiveReaderyyF", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC17clearActiveReaderyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC6record5valueySi_tF", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC6record5valueySi_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC6record5valueySd_tF", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC6record5valueySd_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ObservableLongMeasurement", + "printedName": "ObservableLongMeasurement", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP", + "mangledName": "$s11VideoSDKRTC25ObservableLongMeasurementP" + }, + { + "kind": "Conformance", + "name": "ObservableDoubleMeasurement", + "printedName": "ObservableDoubleMeasurement", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP", + "mangledName": "$s11VideoSDKRTC27ObservableDoubleMeasurementP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StablePeriodicMetricReaderBuilder", + "printedName": "StablePeriodicMetricReaderBuilder", + "children": [ + { + "kind": "Var", + "name": "exporter", + "printedName": "exporter", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricExporter", + "printedName": "VideoSDKRTC.StableMetricExporter", + "usr": "s:11VideoSDKRTC20StableMetricExporterP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC8exporterAA0cE8Exporter_pvp", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC8exporterAA0cE8Exporter_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricExporter", + "printedName": "VideoSDKRTC.StableMetricExporter", + "usr": "s:11VideoSDKRTC20StableMetricExporterP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC8exporterAA0cE8Exporter_pvg", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC8exporterAA0cE8Exporter_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "exporterInterval", + "printedName": "exporterInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC16exporterIntervalSdvp", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC16exporterIntervalSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC16exporterIntervalSdvg", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC16exporterIntervalSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(exporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StablePeriodicMetricReaderBuilder", + "printedName": "VideoSDKRTC.StablePeriodicMetricReaderBuilder", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC" + }, + { + "kind": "TypeNominal", + "name": "StableMetricExporter", + "printedName": "VideoSDKRTC.StableMetricExporter", + "usr": "s:11VideoSDKRTC20StableMetricExporterP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC8exporterAcA0cE8Exporter_p_tcfc", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC8exporterAcA0cE8Exporter_p_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setInterval", + "printedName": "setInterval(timeInterval:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC11setInterval04timeI0ACXDSd_tF", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC11setInterval04timeI0ACXDSd_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "StablePeriodicMetricReaderSdk", + "printedName": "VideoSDKRTC.StablePeriodicMetricReaderSdk", + "usr": "s:11VideoSDKRTC29StablePeriodicMetricReaderSdkC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC5buildAA0cdeF3SdkCyF", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC5buildAA0cdeF3SdkCyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StablePeriodicMetricReaderSdk", + "printedName": "StablePeriodicMetricReaderSdk", + "children": [ + { + "kind": "Function", + "name": "register", + "printedName": "register(registration:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CollectionRegistration", + "printedName": "VideoSDKRTC.CollectionRegistration", + "usr": "s:11VideoSDKRTC22CollectionRegistrationP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29StablePeriodicMetricReaderSdkC8register12registrationyAA22CollectionRegistration_p_tF", + "mangledName": "$s11VideoSDKRTC29StablePeriodicMetricReaderSdkC8register12registrationyAA22CollectionRegistration_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29StablePeriodicMetricReaderSdkC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC29StablePeriodicMetricReaderSdkC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29StablePeriodicMetricReaderSdkC8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC29StablePeriodicMetricReaderSdkC8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAggregationTemporality", + "printedName": "getAggregationTemporality(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29StablePeriodicMetricReaderSdkC25getAggregationTemporality3forAA0iJ0OAA14InstrumentTypeO_tF", + "mangledName": "$s11VideoSDKRTC29StablePeriodicMetricReaderSdkC25getAggregationTemporality3forAA0iJ0OAA14InstrumentTypeO_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDefaultAggregation", + "printedName": "getDefaultAggregation(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29StablePeriodicMetricReaderSdkC21getDefaultAggregation3forAA0J0_pAA14InstrumentTypeO_tF", + "mangledName": "$s11VideoSDKRTC29StablePeriodicMetricReaderSdkC21getDefaultAggregation3forAA0J0_pAA14InstrumentTypeO_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC29StablePeriodicMetricReaderSdkC", + "mangledName": "$s11VideoSDKRTC29StablePeriodicMetricReaderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "StableMetricReader", + "printedName": "StableMetricReader", + "usr": "s:11VideoSDKRTC18StableMetricReaderP", + "mangledName": "$s11VideoSDKRTC18StableMetricReaderP" + }, + { + "kind": "Conformance", + "name": "AggregationTemporalitySelectorProtocol", + "printedName": "AggregationTemporalitySelectorProtocol", + "usr": "s:11VideoSDKRTC38AggregationTemporalitySelectorProtocolP", + "mangledName": "$s11VideoSDKRTC38AggregationTemporalitySelectorProtocolP" + }, + { + "kind": "Conformance", + "name": "DefaultAggregationSelector", + "printedName": "DefaultAggregationSelector", + "usr": "s:11VideoSDKRTC26DefaultAggregationSelectorP", + "mangledName": "$s11VideoSDKRTC26DefaultAggregationSelectorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableView", + "printedName": "StableView", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10StableViewC4nameSSSgvp", + "mangledName": "$s11VideoSDKRTC10StableViewC4nameSSSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10StableViewC4nameSSSgvg", + "mangledName": "$s11VideoSDKRTC10StableViewC4nameSSSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10StableViewC11descriptionSSSgvp", + "mangledName": "$s11VideoSDKRTC10StableViewC11descriptionSSSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10StableViewC11descriptionSSSgvg", + "mangledName": "$s11VideoSDKRTC10StableViewC11descriptionSSSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aggregation", + "printedName": "aggregation", + "children": [ + { + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10StableViewC11aggregationAA11Aggregation_pvp", + "mangledName": "$s11VideoSDKRTC10StableViewC11aggregationAA11Aggregation_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10StableViewC11aggregationAA11Aggregation_pvg", + "mangledName": "$s11VideoSDKRTC10StableViewC11aggregationAA11Aggregation_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributeProcessor", + "printedName": "attributeProcessor", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10StableViewC18attributeProcessorAA09AttributeF0Cvp", + "mangledName": "$s11VideoSDKRTC10StableViewC18attributeProcessorAA09AttributeF0Cvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10StableViewC18attributeProcessorAA09AttributeF0Cvg", + "mangledName": "$s11VideoSDKRTC10StableViewC18attributeProcessorAA09AttributeF0Cvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "builder", + "printedName": "builder()", + "children": [ + { + "kind": "TypeNominal", + "name": "ViewBuilder", + "printedName": "VideoSDKRTC.ViewBuilder", + "usr": "s:11VideoSDKRTC11ViewBuilderC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10StableViewC7builderAA0D7BuilderCyFZ", + "mangledName": "$s11VideoSDKRTC10StableViewC7builderAA0D7BuilderCyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC10StableViewC", + "mangledName": "$s11VideoSDKRTC10StableViewC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableViewRegistry", + "printedName": "StableViewRegistry", + "children": [ + { + "kind": "Function", + "name": "findViews", + "printedName": "findViews(descriptor:meterScope:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.RegisteredView]", + "children": [ + { + "kind": "TypeNominal", + "name": "RegisteredView", + "printedName": "VideoSDKRTC.RegisteredView", + "usr": "s:11VideoSDKRTC14RegisteredViewC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18StableViewRegistryC9findViews10descriptor10meterScopeSayAA010RegisteredD0CGAA20InstrumentDescriptorV_AA015InstrumentationJ4InfoVtF", + "mangledName": "$s11VideoSDKRTC18StableViewRegistryC9findViews10descriptor10meterScopeSayAA010RegisteredD0CGAA20InstrumentDescriptorV_AA015InstrumentationJ4InfoVtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18StableViewRegistryC", + "mangledName": "$s11VideoSDKRTC18StableViewRegistryC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Status", + "printedName": "Status", + "children": [ + { + "kind": "Var", + "name": "ok", + "printedName": "ok", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Status.Type) -> VideoSDKRTC.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC6StatusO2okyA2CmF", + "mangledName": "$s11VideoSDKRTC6StatusO2okyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unset", + "printedName": "unset", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Status.Type) -> VideoSDKRTC.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC6StatusO5unsetyA2CmF", + "mangledName": "$s11VideoSDKRTC6StatusO5unsetyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Status.Type) -> (Swift.String) -> VideoSDKRTC.Status", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideoSDKRTC.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(description: Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC6StatusO5erroryACSS_tcACmF", + "mangledName": "$s11VideoSDKRTC6StatusO5erroryACSS_tcACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "isOk", + "printedName": "isOk", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6StatusO4isOkSbvp", + "mangledName": "$s11VideoSDKRTC6StatusO4isOkSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6StatusO4isOkSbvg", + "mangledName": "$s11VideoSDKRTC6StatusO4isOkSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isError", + "printedName": "isError", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6StatusO7isErrorSbvp", + "mangledName": "$s11VideoSDKRTC6StatusO7isErrorSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6StatusO7isErrorSbvg", + "mangledName": "$s11VideoSDKRTC6StatusO7isErrorSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6StatusO4nameSSvp", + "mangledName": "$s11VideoSDKRTC6StatusO4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6StatusO4nameSSvg", + "mangledName": "$s11VideoSDKRTC6StatusO4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6StatusO4codeSivp", + "mangledName": "$s11VideoSDKRTC6StatusO4codeSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6StatusO4codeSivg", + "mangledName": "$s11VideoSDKRTC6StatusO4codeSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6StatusO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC6StatusO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6StatusO11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC6StatusO11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6StatusO11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC6StatusO11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6StatusO4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC6StatusO4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6StatusO6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC6StatusO6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC6StatusO", + "mangledName": "$s11VideoSDKRTC6StatusO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StringUtils", + "printedName": "StringUtils", + "children": [ + { + "kind": "Function", + "name": "isPrintableString", + "printedName": "isPrintableString(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11StringUtilsV011isPrintableC0ySbSSFZ", + "mangledName": "$s11VideoSDKRTC11StringUtilsV011isPrintableC0ySbSSFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isValidMetricName", + "printedName": "isValidMetricName(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11StringUtilsV17isValidMetricNameySbSSFZ", + "mangledName": "$s11VideoSDKRTC11StringUtilsV17isValidMetricNameySbSSFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC11StringUtilsV", + "mangledName": "$s11VideoSDKRTC11StringUtilsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_NullValue", + "printedName": "Google_Protobuf_NullValue", + "children": [ + { + "kind": "Var", + "name": "nullValue", + "printedName": "nullValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_NullValue.Type) -> VideoSDKRTC.Google_Protobuf_NullValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO04nullF0yA2CmF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO04nullF0yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_NullValue.Type) -> (Swift.Int) -> VideoSDKRTC.Google_Protobuf_NullValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Google_Protobuf_NullValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO12UNRECOGNIZEDyACSicACmF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO12UNRECOGNIZEDyACSicACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueOACycfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueOACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO03rawF0ACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO03rawF0ACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO03rawF0Sivp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO03rawF0Sivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO03rawF0Sivg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO03rawF0Sivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_NullValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_NullValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_NullValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Struct", + "printedName": "Google_Protobuf_Struct", + "children": [ + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructVACycfc", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(dictionaryLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.String, VideoSDKRTC.Google_Protobuf_Value)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, VideoSDKRTC.Google_Protobuf_Value)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV17dictionaryLiteralACSS_AA0c1_D6_ValueVtd_tcfc", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV17dictionaryLiteralACSS_AA0c1_D6_ValueVtd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fields:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV6fieldsACSDySSAA0c1_D6_ValueVG_tcfc", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV6fieldsACSDySSAA0c1_D6_ValueVG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Subscript", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSScip", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSScip", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSScig", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSScig", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSScis", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSScis", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSSciM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSSciM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByDictionaryLiteral", + "printedName": "ExpressibleByDictionaryLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "Key", + "printedName": "Key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Value", + "printedName": "Value", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ] + } + ], + "usr": "s:s30ExpressibleByDictionaryLiteralP", + "mangledName": "$ss30ExpressibleByDictionaryLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Value", + "printedName": "Google_Protobuf_Value", + "children": [ + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nullValue", + "printedName": "nullValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0Ovp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0Ovg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0Ovs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0OvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "numberValue", + "printedName": "numberValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06numberE0Sdvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06numberE0Sdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06numberE0Sdvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06numberE0Sdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06numberE0Sdvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06numberE0Sdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06numberE0SdvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06numberE0SdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "boolValue", + "printedName": "boolValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04boolE0Sbvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04boolE0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04boolE0Sbvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04boolE0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04boolE0Sbvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04boolE0Sbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04boolE0SbvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04boolE0SbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "structValue", + "printedName": "structValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "listValue", + "printedName": "listValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0Vvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0Vvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0Vvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0VvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_Kind", + "printedName": "OneOf_Kind", + "children": [ + { + "kind": "Var", + "name": "nullValue", + "printedName": "nullValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type) -> (VideoSDKRTC.Google_Protobuf_NullValue) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_NullValue) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO04nullE0yAeA0c1_d5_NullE0OcAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO04nullE0yAeA0c1_d5_NullE0OcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "numberValue", + "printedName": "numberValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type) -> (Swift.Double) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO06numberE0yAESdcAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO06numberE0yAESdcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type) -> (Swift.String) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO06stringE0yAESScAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO06stringE0yAESScAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "boolValue", + "printedName": "boolValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type) -> (Swift.Bool) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO04boolE0yAESbcAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO04boolE0yAESbcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "structValue", + "printedName": "structValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type) -> (VideoSDKRTC.Google_Protobuf_Struct) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Struct) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO06structE0yAeA0c1_D7_StructVcAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO06structE0yAeA0c1_D7_StructVcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "listValue", + "printedName": "listValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type) -> (VideoSDKRTC.Google_Protobuf_ListValue) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_ListValue) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO04listE0yAeA0c1_d5_ListE0VcAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO04listE0yAeA0c1_d5_ListE0VcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueVACycfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(integerLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV14integerLiteralACs5Int64V_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV14integerLiteralACs5Int64V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(floatLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV12floatLiteralACSd_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV12floatLiteralACSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(booleanLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV14booleanLiteralACSb_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV14booleanLiteralACSb_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV13stringLiteralACSS_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV13stringLiteralACSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(unicodeScalarLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV20unicodeScalarLiteralACSS_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV20unicodeScalarLiteralACSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(extendedGraphemeClusterLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV30extendedGraphemeClusterLiteralACSS_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV30extendedGraphemeClusterLiteralACSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(nilLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10nilLiteralACyt_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10nilLiteralACyt_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(numberValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06numberE0ACSd_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06numberE0ACSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06stringE0ACSS_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06stringE0ACSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(boolValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04boolE0ACSb_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04boolE0ACSb_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(structValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06structE0AcA0c1_D7_StructV_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06structE0AcA0c1_D7_StructV_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(listValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04listE0AcA0c1_d5_ListE0V_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04listE0AcA0c1_d5_ListE0V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04hashE0Sivp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04hashE0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04hashE0Sivg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04hashE0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByBooleanLiteral", + "printedName": "ExpressibleByBooleanLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "BooleanLiteralType", + "printedName": "BooleanLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "usr": "s:s27ExpressibleByBooleanLiteralP", + "mangledName": "$ss27ExpressibleByBooleanLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByNilLiteral", + "printedName": "ExpressibleByNilLiteral", + "usr": "s:s23ExpressibleByNilLiteralP", + "mangledName": "$ss23ExpressibleByNilLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_ListValue", + "printedName": "Google_Protobuf_ListValue", + "children": [ + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueVACycfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(arrayLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV12arrayLiteralAcA0c1_d1_F0Vd_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV12arrayLiteralAcA0c1_d1_F0Vd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(values:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV6valuesACSayAA0c1_d1_F0VG_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV6valuesACSayAA0c1_d1_F0VG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Subscript", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSicip", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSicip", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSicig", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSicig", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSicis", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSicis", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSiciM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSiciM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByArrayLiteral", + "printedName": "ExpressibleByArrayLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ] + } + ], + "usr": "s:s25ExpressibleByArrayLiteralP", + "mangledName": "$ss25ExpressibleByArrayLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SumAggregation", + "printedName": "SumAggregation", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "SumAggregation", + "printedName": "VideoSDKRTC.SumAggregation", + "usr": "s:11VideoSDKRTC14SumAggregationC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14SumAggregationC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC14SumAggregationC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SumAggregation", + "printedName": "VideoSDKRTC.SumAggregation", + "usr": "s:11VideoSDKRTC14SumAggregationC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14SumAggregationC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC14SumAggregationC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "isCompatible", + "printedName": "isCompatible(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14SumAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "mangledName": "$s11VideoSDKRTC14SumAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createAggregator", + "printedName": "createAggregator(descriptor:exemplarFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableAggregator", + "printedName": "VideoSDKRTC.StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14SumAggregationC16createAggregator10descriptor14exemplarFilterAA06StableF0_pAA20InstrumentDescriptorV_AA08ExemplarI0_ptF", + "mangledName": "$s11VideoSDKRTC14SumAggregationC16createAggregator10descriptor14exemplarFilterAA06StableF0_pAA20InstrumentDescriptorV_AA08ExemplarI0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC14SumAggregationC", + "mangledName": "$s11VideoSDKRTC14SumAggregationC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Aggregation", + "printedName": "Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP", + "mangledName": "$s11VideoSDKRTC11AggregationP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SumAggregator", + "printedName": "SumAggregator", + "children": [ + { + "kind": "Var", + "name": "isMonotonic", + "printedName": "isMonotonic", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13SumAggregatorC11isMonotonicSbvp", + "mangledName": "$s11VideoSDKRTC13SumAggregatorC11isMonotonicSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "Final", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13SumAggregatorC11isMonotonicSbvg", + "mangledName": "$s11VideoSDKRTC13SumAggregatorC11isMonotonicSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC13SumAggregatorC", + "mangledName": "$s11VideoSDKRTC13SumAggregatorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SummaryPointData", + "printedName": "SummaryPointData", + "children": [ + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16SummaryPointDataC5counts6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC5counts6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC5counts6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC5counts6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC5counts6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC5counts6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC5counts6UInt64VvM", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC5counts6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16SummaryPointDataC3sumSdvp", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC3sumSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC3sumSdvg", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC3sumSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC3sumSdvs", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC3sumSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC3sumSdvM", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC3sumSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ValueAtQuantile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.ValueAtQuantile", + "usr": "s:11VideoSDKRTC15ValueAtQuantileP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvp", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ValueAtQuantile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.ValueAtQuantile", + "usr": "s:11VideoSDKRTC15ValueAtQuantileP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvg", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ValueAtQuantile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.ValueAtQuantile", + "usr": "s:11VideoSDKRTC15ValueAtQuantileP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvs", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvM", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16SummaryPointDataC", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC9PointDataC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.PointData" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SwiftProtobufContiguousBytes", + "printedName": "SwiftProtobufContiguousBytes", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(repeating:count:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP9repeating5countxs5UInt8V_Sitcfc", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP9repeating5countxs5UInt8V_Sitcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesPyxqd__cSTRd__s5UInt8V7ElementRtd__lufc", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesPyxqd__cSTRd__s5UInt8V7ElementRtd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SwiftProtobufContiguousBytes, τ_1_0 : Swift.Sequence, τ_1_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP5countSivp", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP5countSivp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP5countSivg", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP5countSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "withUnsafeBytes", + "printedName": "withUnsafeBytes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.UnsafeRawBufferPointer) throws -> τ_1_0", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawBufferPointer", + "printedName": "Swift.UnsafeRawBufferPointer", + "usr": "s:SW" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP010withUnsafeF0yqd__qd__SWKXEKlF", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP010withUnsafeF0yqd__qd__SWKXEKlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Rethrows", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "withUnsafeMutableBytes", + "printedName": "withUnsafeMutableBytes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.UnsafeMutableRawBufferPointer) throws -> τ_1_0", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawBufferPointer", + "printedName": "Swift.UnsafeMutableRawBufferPointer", + "usr": "s:Sw" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP017withUnsafeMutableF0yqd__qd__SwKXEKlF", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP017withUnsafeMutableF0yqd__qd__SwKXEKlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Rethrows", + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SynchronousMetricStorage", + "printedName": "SynchronousMetricStorage", + "children": [ + { + "kind": "Var", + "name": "metricDescriptor", + "printedName": "metricDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24SynchronousMetricStorageC16metricDescriptorAA0dG0Vvp", + "mangledName": "$s11VideoSDKRTC24SynchronousMetricStorageC16metricDescriptorAA0dG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24SynchronousMetricStorageC16metricDescriptorAA0dG0Vvg", + "mangledName": "$s11VideoSDKRTC24SynchronousMetricStorageC16metricDescriptorAA0dG0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "collect", + "printedName": "collect(resource:scope:startEpochNanos:epochNanos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24SynchronousMetricStorageC7collect8resource5scope15startEpochNanos05epochK0AA06StableD4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", + "mangledName": "$s11VideoSDKRTC24SynchronousMetricStorageC7collect8resource5scope15startEpochNanos05epochK0AA06StableD4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEmpty", + "printedName": "isEmpty()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24SynchronousMetricStorageC7isEmptySbyF", + "mangledName": "$s11VideoSDKRTC24SynchronousMetricStorageC7isEmptySbyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordLong", + "printedName": "recordLong(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24SynchronousMetricStorageC10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC24SynchronousMetricStorageC10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordDouble", + "printedName": "recordDouble(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24SynchronousMetricStorageC12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC24SynchronousMetricStorageC12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC24SynchronousMetricStorageC", + "mangledName": "$s11VideoSDKRTC24SynchronousMetricStorageC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "MetricStorage", + "printedName": "MetricStorage", + "usr": "s:11VideoSDKRTC13MetricStorageP", + "mangledName": "$s11VideoSDKRTC13MetricStorageP" + }, + { + "kind": "Conformance", + "name": "WritableMetricStorage", + "printedName": "WritableMetricStorage", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP", + "mangledName": "$s11VideoSDKRTC21WritableMetricStorageP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TextFormatDecodingError", + "printedName": "TextFormatDecodingError", + "children": [ + { + "kind": "Var", + "name": "malformedText", + "printedName": "malformedText", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO09malformedC0yA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO09malformedC0yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedNumber", + "printedName": "malformedNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO15malformedNumberyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO15malformedNumberyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "trailingGarbage", + "printedName": "trailingGarbage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO15trailingGarbageyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO15trailingGarbageyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "truncated", + "printedName": "truncated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO9truncatedyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO9truncatedyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "invalidUTF8", + "printedName": "invalidUTF8", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO11invalidUTF8yA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO11invalidUTF8yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "schemaMismatch", + "printedName": "schemaMismatch", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO14schemaMismatchyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO14schemaMismatchyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "missingFieldNames", + "printedName": "missingFieldNames", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO17missingFieldNamesyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO17missingFieldNamesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unknownField", + "printedName": "unknownField", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO12unknownFieldyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO12unknownFieldyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unrecognizedEnumValue", + "printedName": "unrecognizedEnumValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO21unrecognizedEnumValueyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO21unrecognizedEnumValueyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "conflictingOneOf", + "printedName": "conflictingOneOf", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO16conflictingOneOfyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO16conflictingOneOfyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "internalExtensionError", + "printedName": "internalExtensionError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO017internalExtensionF0yA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO017internalExtensionF0yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messageDepthLimit", + "printedName": "messageDepthLimit", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO17messageDepthLimityA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO17messageDepthLimityA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TextFormatDecodingOptions", + "printedName": "TextFormatDecodingOptions", + "children": [ + { + "kind": "Var", + "name": "messageDepthLimit", + "printedName": "messageDepthLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivp", + "mangledName": "$s11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivg", + "mangledName": "$s11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivs", + "mangledName": "$s11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivM", + "mangledName": "$s11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingOptions", + "printedName": "VideoSDKRTC.TextFormatDecodingOptions", + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC25TextFormatDecodingOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV", + "mangledName": "$s11VideoSDKRTC25TextFormatDecodingOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TextFormatEncodingOptions", + "printedName": "TextFormatEncodingOptions", + "children": [ + { + "kind": "Var", + "name": "printUnknownFields", + "printedName": "printUnknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvp", + "mangledName": "$s11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvg", + "mangledName": "$s11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvs", + "mangledName": "$s11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvM", + "mangledName": "$s11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatEncodingOptions", + "printedName": "VideoSDKRTC.TextFormatEncodingOptions", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC25TextFormatEncodingOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsV", + "mangledName": "$s11VideoSDKRTC25TextFormatEncodingOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TextMapBaggagePropagator", + "printedName": "TextMapBaggagePropagator", + "children": [ + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP6fieldsShySSGvp", + "mangledName": "$s11VideoSDKRTC24TextMapBaggagePropagatorP6fieldsShySSGvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP6fieldsShySSGvg", + "mangledName": "$s11VideoSDKRTC24TextMapBaggagePropagatorP6fieldsShySSGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.TextMapBaggagePropagator>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "inject", + "printedName": "inject(baggage:carrier:setter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP6inject7baggage7carrier6setteryAA0E0_p_SDyS2SGzqd__tAA6SetterRd__lF", + "mangledName": "$s11VideoSDKRTC24TextMapBaggagePropagatorP6inject7baggage7carrier6setteryAA0E0_p_SDyS2SGzqd__tAA6SetterRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.TextMapBaggagePropagator, τ_1_0 : VideoSDKRTC.Setter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "extract", + "printedName": "extract(carrier:getter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Baggage?", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP7extract7carrier6getterAA0E0_pSgSDyS2SG_qd__tAA6GetterRd__lF", + "mangledName": "$s11VideoSDKRTC24TextMapBaggagePropagatorP7extract7carrier6getterAA0E0_pSgSDyS2SG_qd__tAA6GetterRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.TextMapBaggagePropagator, τ_1_0 : VideoSDKRTC.Getter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP", + "mangledName": "$s11VideoSDKRTC24TextMapBaggagePropagatorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TextMapPropagator", + "printedName": "TextMapPropagator", + "children": [ + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP6fieldsShySSGvp", + "mangledName": "$s11VideoSDKRTC17TextMapPropagatorP6fieldsShySSGvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP6fieldsShySSGvg", + "mangledName": "$s11VideoSDKRTC17TextMapPropagatorP6fieldsShySSGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.TextMapPropagator>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "inject", + "printedName": "inject(spanContext:carrier:setter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP6inject11spanContext7carrier6setteryAA04SpanH0V_SDyS2SGzqd__tAA6SetterRd__lF", + "mangledName": "$s11VideoSDKRTC17TextMapPropagatorP6inject11spanContext7carrier6setteryAA04SpanH0V_SDyS2SGzqd__tAA6SetterRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.TextMapPropagator, τ_1_0 : VideoSDKRTC.Setter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "extract", + "printedName": "extract(carrier:getter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP7extract7carrier6getterAA11SpanContextVSgSDyS2SG_qd__tAA6GetterRd__lF", + "mangledName": "$s11VideoSDKRTC17TextMapPropagatorP7extract7carrier6getterAA11SpanContextVSgSDyS2SG_qd__tAA6GetterRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.TextMapPropagator, τ_1_0 : VideoSDKRTC.Getter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP", + "mangledName": "$s11VideoSDKRTC17TextMapPropagatorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Setter", + "printedName": "Setter", + "children": [ + { + "kind": "Function", + "name": "set", + "printedName": "set(carrier:key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SetterP3set7carrier3key5valueySDyS2SGz_S2StF", + "mangledName": "$s11VideoSDKRTC6SetterP3set7carrier3key5valueySDyS2SGz_S2StF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Setter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC6SetterP", + "mangledName": "$s11VideoSDKRTC6SetterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Getter", + "printedName": "Getter", + "children": [ + { + "kind": "Function", + "name": "get", + "printedName": "get(carrier:key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6GetterP3get7carrier3keySaySSGSgSDyS2SG_SStF", + "mangledName": "$s11VideoSDKRTC6GetterP3get7carrier3keySaySSGSgSDyS2SG_SStF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Getter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC6GetterP", + "mangledName": "$s11VideoSDKRTC6GetterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Timestamp", + "printedName": "Google_Protobuf_Timestamp", + "children": [ + { + "kind": "Var", + "name": "seconds", + "printedName": "seconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64Vvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64Vvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64Vvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64VvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nanos", + "printedName": "nanos", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32Vvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32Vvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32Vvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32VvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampVACycfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(seconds:nanos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "hasDefaultArg": true, + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "hasDefaultArg": true, + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV7seconds5nanosACs5Int64V_s5Int32Vtcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV7seconds5nanosACs5Int64V_s5Int32Vtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(timeIntervalSince1970:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV21timeIntervalSince1970ACSd_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV21timeIntervalSince1970ACSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(timeIntervalSinceReferenceDate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV30timeIntervalSinceReferenceDateACSd_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV30timeIntervalSinceReferenceDateACSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(date:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV4dateAC10Foundation4DateV_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV4dateAC10Foundation4DateV_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "timeIntervalSince1970", + "printedName": "timeIntervalSince1970", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV21timeIntervalSince1970Sdvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV21timeIntervalSince1970Sdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV21timeIntervalSince1970Sdvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV21timeIntervalSince1970Sdvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeIntervalSinceReferenceDate", + "printedName": "timeIntervalSinceReferenceDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV30timeIntervalSinceReferenceDateSdvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV30timeIntervalSinceReferenceDateSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV30timeIntervalSinceReferenceDateSdvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV30timeIntervalSinceReferenceDateSdvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "date", + "printedName": "date", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV4date10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV4date10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV4date10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV4date10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Trace_V1_TracesData", + "printedName": "Opentelemetry_Proto_Trace_V1_TracesData", + "children": [ + { + "kind": "Var", + "name": "resourceSpans", + "printedName": "resourceSpans", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_TracesData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataVACycfc", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_TracesData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_TracesData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "children": [ + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0Vvp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0Vvg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0Vvs", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0VvM", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasResource", + "printedName": "hasResource", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV03hasG0Sbvp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV03hasG0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV03hasG0Sbvg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV03hasG0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearResource", + "printedName": "clearResource()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05clearG0yyF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05clearG0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "scopeSpans", + "printedName": "scopeSpans", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvs", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvM", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "schemaURL", + "printedName": "schemaURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvs", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvM", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansVACycfc", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "printedName": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "children": [ + { + "kind": "Var", + "name": "scope", + "printedName": "scope", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0VvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasScope", + "printedName": "hasScope", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV03hasG0Sbvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV03hasG0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV03hasG0Sbvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV03hasG0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearScope", + "printedName": "clearScope()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV05clearG0yyF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV05clearG0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "spans", + "printedName": "spans", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "schemaURL", + "printedName": "schemaURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansVACycfc", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "Opentelemetry_Proto_Trace_V1_Span", + "children": [ + { + "kind": "Var", + "name": "traceID", + "printedName": "traceID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "spanID", + "printedName": "spanID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "traceState", + "printedName": "traceState", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "parentSpanID", + "printedName": "parentSpanID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "startTimeUnixNano", + "printedName": "startTimeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "endTimeUnixNano", + "printedName": "endTimeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedAttributesCount", + "printedName": "droppedAttributesCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "events", + "printedName": "events", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event]", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event]", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event]", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedEventsCount", + "printedName": "droppedEventsCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "links", + "printedName": "links", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedLinksCount", + "printedName": "droppedLinksCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Status", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Status", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Status", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasStatus", + "printedName": "hasStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hasStatusSbvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hasStatusSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hasStatusSbvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hasStatusSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearStatus", + "printedName": "clearStatus()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV11clearStatusyyF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV11clearStatusyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SpanKind", + "printedName": "SpanKind", + "children": [ + { + "kind": "Var", + "name": "unspecified", + "printedName": "unspecified", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO11unspecifiedyA2EmF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO11unspecifiedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "internal", + "printedName": "internal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8internalyA2EmF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8internalyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "server", + "printedName": "server", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO6serveryA2EmF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO6serveryA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "client", + "printedName": "client", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO6clientyA2EmF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO6clientyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "producer", + "printedName": "producer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8produceryA2EmF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8produceryA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "consumer", + "printedName": "consumer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8consumeryA2EmF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8consumeryA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type) -> (Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO12UNRECOGNIZEDyAESicAEmF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO12UNRECOGNIZEDyAESicAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindOAEycfc", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvsZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvMZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Event", + "printedName": "Event", + "children": [ + { + "kind": "Var", + "name": "timeUnixNano", + "printedName": "timeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedAttributesCount", + "printedName": "droppedAttributesCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventVAEycfc", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Link", + "printedName": "Link", + "children": [ + { + "kind": "Var", + "name": "traceID", + "printedName": "traceID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "spanID", + "printedName": "spanID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "traceState", + "printedName": "traceState", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedAttributesCount", + "printedName": "droppedAttributesCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkVAEycfc", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV" + }, + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanVACycfc", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Trace_V1_Status", + "printedName": "Opentelemetry_Proto_Trace_V1_Status", + "children": [ + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvp", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvg", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvs", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvM", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvp", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvg", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvs", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvM", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StatusCode", + "printedName": "StatusCode", + "children": [ + { + "kind": "Var", + "name": "unset", + "printedName": "unset", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO5unsetyA2EmF", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO5unsetyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "ok", + "printedName": "ok", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO2okyA2EmF", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO2okyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO5erroryA2EmF", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO5erroryA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type) -> (Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO12UNRECOGNIZEDyAESicAEmF", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO12UNRECOGNIZEDyAESicAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeOAEycfc", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode]", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode]", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode]", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvsZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvMZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode]", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Status", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusVACycfc", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Status", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Status", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "printedName": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "children": [ + { + "kind": "Var", + "name": "resourceSpans", + "printedName": "resourceSpans", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvs", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvM", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestVACycfc", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "printedName": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "children": [ + { + "kind": "Var", + "name": "partialSuccess", + "printedName": "partialSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvs", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0VvM", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPartialSuccess", + "printedName": "hasPartialSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPartialSuccess", + "printedName": "clearPartialSuccess()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV19clearPartialSuccessyyF", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV19clearPartialSuccessyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseVACycfc", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "printedName": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "children": [ + { + "kind": "Var", + "name": "rejectedSpans", + "printedName": "rejectedSpans", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64Vvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64Vvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64Vvs", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64VvM", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorMessage", + "printedName": "errorMessage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvs", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvM", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessVACycfc", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TraceFlags", + "printedName": "TraceFlags", + "children": [ + { + "kind": "Var", + "name": "byte", + "printedName": "byte", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10TraceFlagsV4bytes5UInt8Vvp", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV4bytes5UInt8Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10TraceFlagsV4bytes5UInt8Vvg", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV4bytes5UInt8Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hexString", + "printedName": "hexString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10TraceFlagsV9hexStringSSvp", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV9hexStringSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10TraceFlagsV9hexStringSSvg", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV9hexStringSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceFlagsVACycfc", + "mangledName": "$s11VideoSDKRTC10TraceFlagsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromByte:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceFlagsV8fromByteACs5UInt8V_tcfc", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV8fromByteACs5UInt8V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromHexString:withOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceFlagsV13fromHexString10withOffsetACSS_Sitcfc", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV13fromHexString10withOffsetACSS_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "sampled", + "printedName": "sampled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10TraceFlagsV7sampledSbvp", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV7sampledSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10TraceFlagsV7sampledSbvg", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV7sampledSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setIsSampled", + "printedName": "setIsSampled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceFlagsV12setIsSampledyySbF", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV12setIsSampledyySbF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingIsSampled", + "printedName": "settingIsSampled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceFlagsV16settingIsSampledyACSbF", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV16settingIsSampledyACSbF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10TraceFlagsV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10TraceFlagsV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceFlagsV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + }, + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceFlagsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceFlagsV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC10TraceFlagsV", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TraceId", + "printedName": "TraceId", + "children": [ + { + "kind": "Var", + "name": "size", + "printedName": "size", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV4sizeSivpZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV4sizeSivpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV4sizeSivgZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV4sizeSivgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "invalidId", + "printedName": "invalidId", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV07invalidD0s6UInt64VvpZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV07invalidD0s6UInt64VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV07invalidD0s6UInt64VvgZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV07invalidD0s6UInt64VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "invalid", + "printedName": "invalid", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV7invalidACvpZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV7invalidACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV7invalidACvgZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV7invalidACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "idHi", + "printedName": "idHi", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV4idHis6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC7TraceIdV4idHis6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV4idHis6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC7TraceIdV4idHis6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "idLo", + "printedName": "idLo", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV4idLos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC7TraceIdV4idLos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV4idLos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC7TraceIdV4idLos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(idHi:idLo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdV4idHi0E2LoACs6UInt64V_AGtcfc", + "mangledName": "$s11VideoSDKRTC7TraceIdV4idHi0E2LoACs6UInt64V_AGtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdVACycfc", + "mangledName": "$s11VideoSDKRTC7TraceIdVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "random", + "printedName": "random()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV6randomACyFZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV6randomACyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdV8fromDataAC10Foundation0F0V_tcfc", + "mangledName": "$s11VideoSDKRTC7TraceIdV8fromDataAC10Foundation0F0V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromBytes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdV9fromBytesACSays5UInt8VG_tcfc", + "mangledName": "$s11VideoSDKRTC7TraceIdV9fromBytesACSays5UInt8VG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromBytes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:s10ArraySliceV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdV9fromBytesACs10ArraySliceVys5UInt8VG_tcfc", + "mangledName": "$s11VideoSDKRTC7TraceIdV9fromBytesACs10ArraySliceVys5UInt8VG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromBytes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ], + "usr": "s:s10ArraySliceV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdV9fromBytesACs10ArraySliceVySJG_tcfc", + "mangledName": "$s11VideoSDKRTC7TraceIdV9fromBytesACs10ArraySliceVySJG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "copyBytesTo", + "printedName": "copyBytesTo(dest:destOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "paramValueOwnership": "InOut", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV11copyBytesTo4dest0H6Offsety10Foundation4DataVz_SitF", + "mangledName": "$s11VideoSDKRTC7TraceIdV11copyBytesTo4dest0H6Offsety10Foundation4DataVz_SitF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyBytesTo", + "printedName": "copyBytesTo(dest:destOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV11copyBytesTo4dest0H6OffsetySays5UInt8VGz_SitF", + "mangledName": "$s11VideoSDKRTC7TraceIdV11copyBytesTo4dest0H6OffsetySays5UInt8VGz_SitF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyBytesTo", + "printedName": "copyBytesTo(dest:destOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:s10ArraySliceV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV11copyBytesTo4dest0H6Offsetys10ArraySliceVys5UInt8VGz_SitF", + "mangledName": "$s11VideoSDKRTC7TraceIdV11copyBytesTo4dest0H6Offsetys10ArraySliceVys5UInt8VGz_SitF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromHexString:withOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdV13fromHexString10withOffsetACSS_Sitcfc", + "mangledName": "$s11VideoSDKRTC7TraceIdV13fromHexString10withOffsetACSS_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "isValid", + "printedName": "isValid", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV7isValidSbvp", + "mangledName": "$s11VideoSDKRTC7TraceIdV7isValidSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV7isValidSbvg", + "mangledName": "$s11VideoSDKRTC7TraceIdV7isValidSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hexString", + "printedName": "hexString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV9hexStringSSvp", + "mangledName": "$s11VideoSDKRTC7TraceIdV9hexStringSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV9hexStringSSvg", + "mangledName": "$s11VideoSDKRTC7TraceIdV9hexStringSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rawHigherLong", + "printedName": "rawHigherLong", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV13rawHigherLongs6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC7TraceIdV13rawHigherLongs6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV13rawHigherLongs6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC7TraceIdV13rawHigherLongs6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rawLowerLong", + "printedName": "rawLowerLong", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV12rawLowerLongs6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC7TraceIdV12rawLowerLongs6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV12rawLowerLongs6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC7TraceIdV12rawLowerLongs6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC7TraceIdV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC7TraceIdV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV1loiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV1loiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC7TraceIdV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC7TraceIdV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC7TraceIdV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC7TraceIdV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC7TraceIdV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC7TraceIdV", + "mangledName": "$s11VideoSDKRTC7TraceIdV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Tracer", + "printedName": "Tracer", + "children": [ + { + "kind": "Function", + "name": "spanBuilder", + "printedName": "spanBuilder(spanName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanBuilder", + "printedName": "VideoSDKRTC.SpanBuilder", + "usr": "s:11VideoSDKRTC11SpanBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6TracerP11spanBuilder0D4NameAA04SpanE0_pSS_tF", + "mangledName": "$s11VideoSDKRTC6TracerP11spanBuilder0D4NameAA04SpanE0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Tracer>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC6TracerP", + "mangledName": "$s11VideoSDKRTC6TracerP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TracerProvider", + "printedName": "TracerProvider", + "children": [ + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationName:instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Tracer", + "printedName": "VideoSDKRTC.Tracer", + "usr": "s:11VideoSDKRTC6TracerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14TracerProviderP3get19instrumentationName0F7VersionAA0C0_pSS_SSSgtF", + "mangledName": "$s11VideoSDKRTC14TracerProviderP3get19instrumentationName0F7VersionAA0C0_pSS_SSSgtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.TracerProvider>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14TracerProviderP", + "mangledName": "$s11VideoSDKRTC14TracerProviderP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TracerProviderBuilder", + "printedName": "TracerProviderBuilder", + "children": [ + { + "kind": "Var", + "name": "clock", + "printedName": "clock", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC5clockAA5Clock_pvp", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC5clockAA5Clock_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC5clockAA5Clock_pvg", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC5clockAA5Clock_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "idGenerator", + "printedName": "idGenerator", + "children": [ + { + "kind": "TypeNominal", + "name": "IdGenerator", + "printedName": "VideoSDKRTC.IdGenerator", + "usr": "s:11VideoSDKRTC11IdGeneratorP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC11idGeneratorAA02IdG0_pvp", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC11idGeneratorAA02IdG0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "IdGenerator", + "printedName": "VideoSDKRTC.IdGenerator", + "usr": "s:11VideoSDKRTC11IdGeneratorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC11idGeneratorAA02IdG0_pvg", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC11idGeneratorAA02IdG0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanLimits", + "printedName": "spanLimits", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC10spanLimitsAA04SpanG0Vvp", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC10spanLimitsAA04SpanG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC10spanLimitsAA04SpanG0Vvg", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC10spanLimitsAA04SpanG0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sampler", + "printedName": "sampler", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC7samplerAA7Sampler_pvp", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC7samplerAA7Sampler_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC7samplerAA7Sampler_pvg", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC7samplerAA7Sampler_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanProcessors", + "printedName": "spanProcessors", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC14spanProcessorsSayAA13SpanProcessor_pGvp", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC14spanProcessorsSayAA13SpanProcessor_pGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC14spanProcessorsSayAA13SpanProcessor_pGvg", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC14spanProcessorsSayAA13SpanProcessor_pGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TracerProviderBuilder", + "printedName": "VideoSDKRTC.TracerProviderBuilder", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderCACycfc", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(clock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC4with5clockACXDAA5Clock_p_tF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC4with5clockACXDAA5Clock_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(idGenerator:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "IdGenerator", + "printedName": "VideoSDKRTC.IdGenerator", + "usr": "s:11VideoSDKRTC11IdGeneratorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC4with11idGeneratorACXDAA02IdH0_p_tF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC4with11idGeneratorACXDAA02IdH0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(resource:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC4with8resourceACXDAA8ResourceV_tF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC4with8resourceACXDAA8ResourceV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(spanLimits:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC4with10spanLimitsACXDAA04SpanH0V_tF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC4with10spanLimitsACXDAA04SpanH0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(sampler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC4with7samplerACXDAA7Sampler_p_tF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC4with7samplerACXDAA7Sampler_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(spanProcessor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC3add13spanProcessorACXDAA04SpanH0_p_tF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC3add13spanProcessorACXDAA04SpanH0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(spanProcessors:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC3add14spanProcessorsACXDSayAA13SpanProcessor_pG_tF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC3add14spanProcessorsACXDSayAA13SpanProcessor_pG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "TracerProviderSdk", + "printedName": "VideoSDKRTC.TracerProviderSdk", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC5buildAA0cD3SdkCyF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC5buildAA0cD3SdkCyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TracerProviderSdk", + "printedName": "TracerProviderSdk", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(clock:idGenerator:resource:spanLimits:sampler:spanProcessors:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TracerProviderSdk", + "printedName": "VideoSDKRTC.TracerProviderSdk", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC5ClockP" + }, + { + "kind": "TypeNominal", + "name": "IdGenerator", + "printedName": "VideoSDKRTC.IdGenerator", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC11IdGeneratorP" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC7SamplerP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC5clock11idGenerator8resource10spanLimits7sampler0J10ProcessorsAcA5Clock_p_AA02IdH0_pAA8ResourceVAA04SpanK0VAA7Sampler_pSayAA0Q9Processor_pGtcfc", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC5clock11idGenerator8resource10spanLimits7sampler0J10ProcessorsAcA5Clock_p_AA02IdH0_pAA8ResourceVAA04SpanK0VAA7Sampler_pSayAA0Q9Processor_pGtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationName:instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Tracer", + "printedName": "VideoSDKRTC.Tracer", + "usr": "s:11VideoSDKRTC6TracerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC3get19instrumentationName0G7VersionAA0C0_pSS_SSSgtF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC3get19instrumentationName0G7VersionAA0C0_pSS_SSSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveClock", + "printedName": "getActiveClock()", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC14getActiveClockAA0H0_pyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC14getActiveClockAA0H0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateActiveClock", + "printedName": "updateActiveClock(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC17updateActiveClockyyAA0H0_pF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC17updateActiveClockyyAA0H0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveIdGenerator", + "printedName": "getActiveIdGenerator()", + "children": [ + { + "kind": "TypeNominal", + "name": "IdGenerator", + "printedName": "VideoSDKRTC.IdGenerator", + "usr": "s:11VideoSDKRTC11IdGeneratorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC20getActiveIdGeneratorAA0hI0_pyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC20getActiveIdGeneratorAA0hI0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateActiveIdGenerator", + "printedName": "updateActiveIdGenerator(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IdGenerator", + "printedName": "VideoSDKRTC.IdGenerator", + "usr": "s:11VideoSDKRTC11IdGeneratorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC23updateActiveIdGeneratoryyAA0hI0_pF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC23updateActiveIdGeneratoryyAA0hI0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveResource", + "printedName": "getActiveResource()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC17getActiveResourceAA0H0VyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC17getActiveResourceAA0H0VyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateActiveResource", + "printedName": "updateActiveResource(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC20updateActiveResourceyyAA0H0VF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC20updateActiveResourceyyAA0H0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveSpanLimits", + "printedName": "getActiveSpanLimits()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC19getActiveSpanLimitsAA0hI0VyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC19getActiveSpanLimitsAA0hI0VyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateActiveSpanLimits", + "printedName": "updateActiveSpanLimits(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC22updateActiveSpanLimitsyyAA0hI0VF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC22updateActiveSpanLimitsyyAA0hI0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveSampler", + "printedName": "getActiveSampler()", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC16getActiveSamplerAA0H0_pyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC16getActiveSamplerAA0H0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateActiveSampler", + "printedName": "updateActiveSampler(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC19updateActiveSampleryyAA0H0_pF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC19updateActiveSampleryyAA0H0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveSpanProcessors", + "printedName": "getActiveSpanProcessors()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC23getActiveSpanProcessorsSayAA0H9Processor_pGyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC23getActiveSpanProcessorsSayAA0H9Processor_pGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addSpanProcessor", + "printedName": "addSpanProcessor(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC16addSpanProcessoryyAA0gH0_pF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC16addSpanProcessoryyAA0gH0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resetSpanProcessors", + "printedName": "resetSpanProcessors()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC19resetSpanProcessorsyyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC19resetSpanProcessorsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC8shutdownyyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush(timeout:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC10forceFlush7timeoutySdSg_tF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC10forceFlush7timeoutySdSg_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "TracerProvider", + "printedName": "TracerProvider", + "usr": "s:11VideoSDKRTC14TracerProviderP", + "mangledName": "$s11VideoSDKRTC14TracerProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TracerSdk", + "printedName": "TracerSdk", + "children": [ + { + "kind": "Var", + "name": "instrumentationScopeInfo", + "printedName": "instrumentationScopeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9TracerSdkC24instrumentationScopeInfoAA015InstrumentationfG0Vvp", + "mangledName": "$s11VideoSDKRTC9TracerSdkC24instrumentationScopeInfoAA015InstrumentationfG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9TracerSdkC24instrumentationScopeInfoAA015InstrumentationfG0Vvg", + "mangledName": "$s11VideoSDKRTC9TracerSdkC24instrumentationScopeInfoAA015InstrumentationfG0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "spanBuilder", + "printedName": "spanBuilder(spanName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanBuilder", + "printedName": "VideoSDKRTC.SpanBuilder", + "usr": "s:11VideoSDKRTC11SpanBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9TracerSdkC11spanBuilder0E4NameAA04SpanF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC9TracerSdkC11spanBuilder0E4NameAA04SpanF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC9TracerSdkC", + "mangledName": "$s11VideoSDKRTC9TracerSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Tracer", + "printedName": "Tracer", + "usr": "s:11VideoSDKRTC6TracerP", + "mangledName": "$s11VideoSDKRTC6TracerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TraceState", + "printedName": "TraceState", + "children": [ + { + "kind": "Var", + "name": "entries", + "printedName": "entries", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.TraceState.Entry]", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.TraceState.Entry", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10TraceStateV7entriesSayAC5EntryVGvp", + "mangledName": "$s11VideoSDKRTC10TraceStateV7entriesSayAC5EntryVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.TraceState.Entry]", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.TraceState.Entry", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10TraceStateV7entriesSayAC5EntryVGvg", + "mangledName": "$s11VideoSDKRTC10TraceStateV7entriesSayAC5EntryVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceStateVACycfc", + "mangledName": "$s11VideoSDKRTC10TraceStateVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(entries:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.TraceState?", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.TraceState.Entry]", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.TraceState.Entry", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceStateV7entriesACSgSayAC5EntryVG_tcfc", + "mangledName": "$s11VideoSDKRTC10TraceStateV7entriesACSgSayAC5EntryVG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceStateV3get3keySSSgSS_tF", + "mangledName": "$s11VideoSDKRTC10TraceStateV3get3keySSSgSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setting", + "printedName": "setting(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceStateV7setting3key5valueACSS_SStF", + "mangledName": "$s11VideoSDKRTC10TraceStateV7setting3key5valueACSS_SStF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removing", + "printedName": "removing(key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceStateV8removing3keyACSS_tF", + "mangledName": "$s11VideoSDKRTC10TraceStateV8removing3keyACSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Entry", + "printedName": "Entry", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV3keySSvp", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV3keySSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV3keySSvg", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV3keySSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV5valueSSvp", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV5valueSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV5valueSSvg", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV5valueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.TraceState.Entry?", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.TraceState.Entry", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV3key5valueAESgSS_SStcfc", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV3key5valueAESgSS_SStcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.TraceState.Entry", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV4fromAEs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.TraceState.Entry", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV" + }, + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.TraceState.Entry", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceStateV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC10TraceStateV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + }, + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceStateV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC10TraceStateV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceStateV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC10TraceStateV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC10TraceStateV", + "mangledName": "$s11VideoSDKRTC10TraceStateV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Syntax", + "printedName": "Google_Protobuf_Syntax", + "children": [ + { + "kind": "Var", + "name": "proto2", + "printedName": "proto2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Syntax.Type) -> VideoSDKRTC.Google_Protobuf_Syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO6proto2yA2CmF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO6proto2yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "proto3", + "printedName": "proto3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Syntax.Type) -> VideoSDKRTC.Google_Protobuf_Syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO6proto3yA2CmF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO6proto3yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "editions", + "printedName": "editions", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Syntax.Type) -> VideoSDKRTC.Google_Protobuf_Syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO8editionsyA2CmF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO8editionsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Syntax.Type) -> (Swift.Int) -> VideoSDKRTC.Google_Protobuf_Syntax", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Google_Protobuf_Syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO12UNRECOGNIZEDyACSicACmF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO12UNRECOGNIZEDyACSicACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxOACycfc", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxOACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax?", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Syntax]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Syntax]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Syntax]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Type", + "printedName": "Google_Protobuf_Type", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Field", + "printedName": "VideoSDKRTC.Google_Protobuf_Field", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Field", + "printedName": "VideoSDKRTC.Google_Protobuf_Field", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Field", + "printedName": "VideoSDKRTC.Google_Protobuf_Field", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "oneofs", + "printedName": "oneofs", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sourceContext", + "printedName": "sourceContext", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0Vvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0Vvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0Vvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0VvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSourceContext", + "printedName": "hasSourceContext", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV16hasSourceContextSbvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV16hasSourceContextSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV16hasSourceContextSbvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV16hasSourceContextSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSourceContext", + "printedName": "clearSourceContext()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV18clearSourceContextyyF", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV18clearSourceContextyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "syntax", + "printedName": "syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "edition", + "printedName": "edition", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Type", + "printedName": "VideoSDKRTC.Google_Protobuf_Type", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeVACycfc", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Type", + "printedName": "VideoSDKRTC.Google_Protobuf_Type", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Type", + "printedName": "VideoSDKRTC.Google_Protobuf_Type", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Field", + "printedName": "Google_Protobuf_Field", + "children": [ + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "cardinality", + "printedName": "cardinality", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "number", + "printedName": "number", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32Vvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32Vvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32Vvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32VvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "typeURL", + "printedName": "typeURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "oneofIndex", + "printedName": "oneofIndex", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32Vvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32Vvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32Vvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32VvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "packed", + "printedName": "packed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "jsonName", + "printedName": "jsonName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultValue", + "printedName": "defaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Kind", + "printedName": "Kind", + "children": [ + { + "kind": "Var", + "name": "typeUnknown", + "printedName": "typeUnknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeUnknownyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeUnknownyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeDouble", + "printedName": "typeDouble", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeDoubleyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeDoubleyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeFloat", + "printedName": "typeFloat", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeFloatyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeFloatyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeInt64", + "printedName": "typeInt64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeInt64yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeInt64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeUint64", + "printedName": "typeUint64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeUint64yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeUint64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeInt32", + "printedName": "typeInt32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeInt32yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeInt32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeFixed64", + "printedName": "typeFixed64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeFixed64yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeFixed64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeFixed32", + "printedName": "typeFixed32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeFixed32yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeFixed32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeBool", + "printedName": "typeBool", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO8typeBoolyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO8typeBoolyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeString", + "printedName": "typeString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeStringyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeStringyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeGroup", + "printedName": "typeGroup", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeGroupyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeGroupyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeMessage", + "printedName": "typeMessage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeMessageyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeMessageyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeBytes", + "printedName": "typeBytes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeBytesyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeBytesyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeUint32", + "printedName": "typeUint32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeUint32yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeUint32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeEnum", + "printedName": "typeEnum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO8typeEnumyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO8typeEnumyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeSfixed32", + "printedName": "typeSfixed32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO12typeSfixed32yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO12typeSfixed32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeSfixed64", + "printedName": "typeSfixed64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO12typeSfixed64yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO12typeSfixed64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeSint32", + "printedName": "typeSint32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeSint32yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeSint32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeSint64", + "printedName": "typeSint64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeSint64yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeSint64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> (Swift.Int) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO12UNRECOGNIZEDyAESicAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO12UNRECOGNIZEDyAESicAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindOAEycfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind?", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field.Kind]", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field.Kind]", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field.Kind]", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Cardinality", + "printedName": "Cardinality", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type) -> VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO7unknownyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "optional", + "printedName": "optional", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type) -> VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8optionalyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8optionalyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "required", + "printedName": "required", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type) -> VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8requiredyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8requiredyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "repeated", + "printedName": "repeated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type) -> VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8repeatedyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8repeatedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type) -> (Swift.Int) -> VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO12UNRECOGNIZEDyAESicAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO12UNRECOGNIZEDyAESicAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityOAEycfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality?", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field.Cardinality]", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field.Cardinality]", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field.Cardinality]", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Field", + "printedName": "VideoSDKRTC.Google_Protobuf_Field", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldVACycfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Field", + "printedName": "VideoSDKRTC.Google_Protobuf_Field", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Field", + "printedName": "VideoSDKRTC.Google_Protobuf_Field", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Enum", + "printedName": "Google_Protobuf_Enum", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enumvalue", + "printedName": "enumvalue", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValue", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValue", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValue", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sourceContext", + "printedName": "sourceContext", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0Vvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0Vvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0Vvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0VvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSourceContext", + "printedName": "hasSourceContext", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV16hasSourceContextSbvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV16hasSourceContextSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV16hasSourceContextSbvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV16hasSourceContextSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSourceContext", + "printedName": "clearSourceContext()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV18clearSourceContextyyF", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV18clearSourceContextyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "syntax", + "printedName": "syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "edition", + "printedName": "edition", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Enum", + "printedName": "VideoSDKRTC.Google_Protobuf_Enum", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumVACycfc", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Enum", + "printedName": "VideoSDKRTC.Google_Protobuf_Enum", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Enum", + "printedName": "VideoSDKRTC.Google_Protobuf_Enum", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_EnumValue", + "printedName": "Google_Protobuf_EnumValue", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "number", + "printedName": "number", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32Vvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32Vvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32Vvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32VvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValue", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueVACycfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValue", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValue", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Option", + "printedName": "Google_Protobuf_Option", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasValue", + "printedName": "hasValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV8hasValueSbvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV8hasValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV8hasValueSbvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV8hasValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearValue", + "printedName": "clearValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV10clearValueyyF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV10clearValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionVACycfc", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "UngroupedBatcher", + "printedName": "UngroupedBatcher", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "UngroupedBatcher", + "printedName": "VideoSDKRTC.UngroupedBatcher", + "usr": "s:11VideoSDKRTC16UngroupedBatcherC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16UngroupedBatcherCACycfc", + "mangledName": "$s11VideoSDKRTC16UngroupedBatcherCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "finishCollectionCycle", + "printedName": "finishCollectionCycle()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16UngroupedBatcherC21finishCollectionCycleSayAA6MetricVGyF", + "mangledName": "$s11VideoSDKRTC16UngroupedBatcherC21finishCollectionCycleSayAA6MetricVGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "process", + "printedName": "process(metric:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16UngroupedBatcherC7process6metricyAA6MetricV_tF", + "mangledName": "$s11VideoSDKRTC16UngroupedBatcherC7process6metricyAA6MetricV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16UngroupedBatcherC", + "mangledName": "$s11VideoSDKRTC16UngroupedBatcherC", + "moduleName": "VideoSDKRTC", + "deprecated": true, + "declAttributes": [ + "AccessControl", + "Available", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricProcessor", + "printedName": "MetricProcessor", + "usr": "s:11VideoSDKRTC15MetricProcessorP", + "mangledName": "$s11VideoSDKRTC15MetricProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "UnknownStorage", + "printedName": "UnknownStorage", + "children": [ + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14UnknownStorageV4data10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC14UnknownStorageV4data10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14UnknownStorageV4data10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC14UnknownStorageV4data10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14UnknownStorageVACycfc", + "mangledName": "$s11VideoSDKRTC14UnknownStorageVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14UnknownStorageV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC14UnknownStorageV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14UnknownStorageV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC14UnknownStorageV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14UnknownStorageV", + "mangledName": "$s11VideoSDKRTC14UnknownStorageV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ValueAtQuantile", + "printedName": "ValueAtQuantile", + "children": [ + { + "kind": "Function", + "name": "quantile", + "printedName": "quantile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ValueAtQuantileP8quantileSdyF", + "mangledName": "$s11VideoSDKRTC15ValueAtQuantileP8quantileSdyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ValueAtQuantile>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ValueAtQuantileP5valueSdyF", + "mangledName": "$s11VideoSDKRTC15ValueAtQuantileP5valueSdyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ValueAtQuantile>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC15ValueAtQuantileP", + "mangledName": "$s11VideoSDKRTC15ValueAtQuantileP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Version", + "printedName": "Version", + "children": [ + { + "kind": "Var", + "name": "major", + "printedName": "major", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7VersionV5majorSivpZ", + "mangledName": "$s11VideoSDKRTC7VersionV5majorSivpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7VersionV5majorSivgZ", + "mangledName": "$s11VideoSDKRTC7VersionV5majorSivgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "minor", + "printedName": "minor", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7VersionV5minorSivpZ", + "mangledName": "$s11VideoSDKRTC7VersionV5minorSivpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7VersionV5minorSivgZ", + "mangledName": "$s11VideoSDKRTC7VersionV5minorSivgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "revision", + "printedName": "revision", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7VersionV8revisionSivpZ", + "mangledName": "$s11VideoSDKRTC7VersionV8revisionSivpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7VersionV8revisionSivgZ", + "mangledName": "$s11VideoSDKRTC7VersionV8revisionSivgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "versionString", + "printedName": "versionString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7VersionV13versionStringSSvpZ", + "mangledName": "$s11VideoSDKRTC7VersionV13versionStringSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7VersionV13versionStringSSvgZ", + "mangledName": "$s11VideoSDKRTC7VersionV13versionStringSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC7VersionV", + "mangledName": "$s11VideoSDKRTC7VersionV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "VideoQuality", + "printedName": "VideoQuality", + "children": [ + { + "kind": "Var", + "name": "high", + "printedName": "high", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoQuality.Type) -> VideoSDKRTC.VideoQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A7QualityO4highyA2CmF", + "mangledName": "$s11VideoSDKRTC0A7QualityO4highyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "medium", + "printedName": "medium", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoQuality.Type) -> VideoSDKRTC.VideoQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A7QualityO6mediumyA2CmF", + "mangledName": "$s11VideoSDKRTC0A7QualityO6mediumyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "low", + "printedName": "low", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoQuality.Type) -> VideoSDKRTC.VideoQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A7QualityO3lowyA2CmF", + "mangledName": "$s11VideoSDKRTC0A7QualityO3lowyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC0A7QualityO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC0A7QualityO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC0A7QualityO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC0A7QualityO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.VideoQuality?", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC0A7QualityO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC0A7QualityO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.VideoQuality]", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC0A7QualityO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC0A7QualityO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.VideoQuality]", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC0A7QualityO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC0A7QualityO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC0A7QualityO", + "mangledName": "$s11VideoSDKRTC0A7QualityO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.VideoQuality]", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "VideoSDK", + "printedName": "VideoSDK", + "children": [ + { + "kind": "Function", + "name": "config", + "printedName": "config(token:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC6config5tokenySS_tFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC6config5tokenySS_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initMeeting", + "printedName": "initMeeting(meetingId:participantId:participantName:micEnabled:webcamEnabled:customCameraVideoStream:mode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Meeting", + "printedName": "VideoSDKRTC.Meeting", + "usr": "s:11VideoSDKRTC7MeetingC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomRTCMediaStream", + "printedName": "VideoSDKRTC.CustomRTCMediaStream", + "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Mode?", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC11initMeeting9meetingId011participantG00H4Name10micEnabled06webcamK0012customCameraA6Stream4modeAA0E0CSS_S2SS2bAA014CustomRTCMediaO0CSgAA4ModeOSgtFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC11initMeeting9meetingId011participantG00H4Name10micEnabled06webcamK0012customCameraA6Stream4modeAA0E0CSS_S2SS2bAA014CustomRTCMediaO0CSgAA4ModeOSgtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createCameraVideoTrack", + "printedName": "createCameraVideoTrack(encoderConfig:facingMode:multiStream:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomRTCMediaStream", + "printedName": "VideoSDKRTC.CustomRTCMediaStream", + "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AVFoundation.AVCaptureDevice.Position?", + "children": [ + { + "kind": "TypeNominal", + "name": "Position", + "printedName": "AVFoundation.AVCaptureDevice.Position", + "usr": "c:@E@AVCaptureDevicePosition" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC012createCameraA5Track13encoderConfig10facingMode11multiStreamAA014CustomRTCMediaL0CSgAA0mafH0OSg_So23AVCaptureDevicePositionVSgSbSgtKFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC012createCameraA5Track13encoderConfig10facingMode11multiStreamAA014CustomRTCMediaL0CSgAA0mafH0OSg_So23AVCaptureDevicePositionVSgSbSgtKFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAudioPermissionStatus", + "printedName": "getAudioPermissionStatus()", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC24getAudioPermissionStatusAA013authorisationG0OyFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC24getAudioPermissionStatusAA013authorisationG0OyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getVideoPermissionStatus", + "printedName": "getVideoPermissionStatus()", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC03getA16PermissionStatusAA013authorisationF0OyFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC03getA16PermissionStatusAA013authorisationF0OyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAudioPermission", + "printedName": "getAudioPermission()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC18getAudioPermissionyyFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC18getAudioPermissionyyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getVideoPermission", + "printedName": "getVideoPermission()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC03getA10PermissionyyFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC03getA10PermissionyyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCameras", + "printedName": "getCameras()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC10getCamerasSaySSGyFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC10getCamerasSaySSGyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAudioDevices", + "printedName": "getAudioDevices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC15getAudioDevicesSaySSGyFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC15getAudioDevicesSaySSGyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC0A3SDKC", + "mangledName": "$s11VideoSDKRTC0A3SDKC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "Final" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ViewBuilder", + "printedName": "ViewBuilder", + "children": [ + { + "kind": "Function", + "name": "withName", + "printedName": "withName(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ViewBuilderC8withName4nameACXDSS_tF", + "mangledName": "$s11VideoSDKRTC11ViewBuilderC8withName4nameACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "withDescription", + "printedName": "withDescription(description:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ViewBuilderC15withDescription11descriptionACXDSS_tF", + "mangledName": "$s11VideoSDKRTC11ViewBuilderC15withDescription11descriptionACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "withAggregation", + "printedName": "withAggregation(aggregation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ViewBuilderC15withAggregation11aggregationACXDAA0F0_p_tF", + "mangledName": "$s11VideoSDKRTC11ViewBuilderC15withAggregation11aggregationACXDAA0F0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addAttributeFilter", + "printedName": "addAttributeFilter(keyFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ViewBuilderC18addAttributeFilter03keyG0ACXDSbSSc_tF", + "mangledName": "$s11VideoSDKRTC11ViewBuilderC18addAttributeFilter03keyG0ACXDSbSSc_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addAttributeProcessor", + "printedName": "addAttributeProcessor(processor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ViewBuilderC21addAttributeProcessor9processorACXDAA0fG0C_tF", + "mangledName": "$s11VideoSDKRTC11ViewBuilderC21addAttributeProcessor9processorACXDAA0fG0C_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableView", + "printedName": "VideoSDKRTC.StableView", + "usr": "s:11VideoSDKRTC10StableViewC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ViewBuilderC5buildAA06StableC0CyF", + "mangledName": "$s11VideoSDKRTC11ViewBuilderC5buildAA06StableC0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC11ViewBuilderC", + "mangledName": "$s11VideoSDKRTC11ViewBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Visitor", + "printedName": "Visitor", + "children": [ + { + "kind": "Function", + "name": "visitSingularFloatField", + "printedName": "visitSingularFloatField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitSingularFloatField5value11fieldNumberySf_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitSingularFloatField5value11fieldNumberySf_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularDoubleField", + "printedName": "visitSingularDoubleField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitSingularDoubleField5value11fieldNumberySd_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitSingularDoubleField5value11fieldNumberySd_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularInt32Field", + "printedName": "visitSingularInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitSingularInt32Field5value11fieldNumberys0F0V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitSingularInt32Field5value11fieldNumberys0F0V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularInt64Field", + "printedName": "visitSingularInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitSingularInt64Field5value11fieldNumberys0F0V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitSingularInt64Field5value11fieldNumberys0F0V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularUInt32Field", + "printedName": "visitSingularUInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitSingularUInt32Field5value11fieldNumberys0F0V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitSingularUInt32Field5value11fieldNumberys0F0V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularUInt64Field", + "printedName": "visitSingularUInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitSingularUInt64Field5value11fieldNumberys0F0V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitSingularUInt64Field5value11fieldNumberys0F0V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSInt32Field", + "printedName": "visitSingularSInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitSingularSInt32Field5value11fieldNumberys5Int32V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitSingularSInt32Field5value11fieldNumberys5Int32V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSInt64Field", + "printedName": "visitSingularSInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitSingularSInt64Field5value11fieldNumberys5Int64V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitSingularSInt64Field5value11fieldNumberys5Int64V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularFixed32Field", + "printedName": "visitSingularFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP25visitSingularFixed32Field5value11fieldNumberys6UInt32V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP25visitSingularFixed32Field5value11fieldNumberys6UInt32V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularFixed64Field", + "printedName": "visitSingularFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP25visitSingularFixed64Field5value11fieldNumberys6UInt64V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP25visitSingularFixed64Field5value11fieldNumberys6UInt64V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSFixed32Field", + "printedName": "visitSingularSFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP26visitSingularSFixed32Field5value11fieldNumberys5Int32V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP26visitSingularSFixed32Field5value11fieldNumberys5Int32V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSFixed64Field", + "printedName": "visitSingularSFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP26visitSingularSFixed64Field5value11fieldNumberys5Int64V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP26visitSingularSFixed64Field5value11fieldNumberys5Int64V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularBoolField", + "printedName": "visitSingularBoolField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitSingularBoolField5value11fieldNumberySb_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitSingularBoolField5value11fieldNumberySb_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularStringField", + "printedName": "visitSingularStringField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitSingularStringField5value11fieldNumberySS_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitSingularStringField5value11fieldNumberySS_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularBytesField", + "printedName": "visitSingularBytesField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitSingularBytesField5value11fieldNumbery10Foundation4DataV_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitSingularBytesField5value11fieldNumbery10Foundation4DataV_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularEnumField", + "printedName": "visitSingularEnumField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitSingularEnumField5value11fieldNumberyqd___SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitSingularEnumField5value11fieldNumberyqd___SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularMessageField", + "printedName": "visitSingularMessageField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP25visitSingularMessageField5value11fieldNumberyqd___SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorP25visitSingularMessageField5value11fieldNumberyqd___SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularGroupField", + "printedName": "visitSingularGroupField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitSingularGroupField5value11fieldNumberyqd___SitKAA7MessageRd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitSingularGroupField5value11fieldNumberyqd___SitKAA7MessageRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedFloatField", + "printedName": "visitRepeatedFloatField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitRepeatedFloatField5value11fieldNumberySaySfG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitRepeatedFloatField5value11fieldNumberySaySfG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedDoubleField", + "printedName": "visitRepeatedDoubleField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitRepeatedDoubleField5value11fieldNumberySaySdG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitRepeatedDoubleField5value11fieldNumberySaySdG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedInt32Field", + "printedName": "visitRepeatedInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitRepeatedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitRepeatedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedInt64Field", + "printedName": "visitRepeatedInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitRepeatedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitRepeatedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedUInt32Field", + "printedName": "visitRepeatedUInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitRepeatedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitRepeatedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedUInt64Field", + "printedName": "visitRepeatedUInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitRepeatedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitRepeatedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSInt32Field", + "printedName": "visitRepeatedSInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitRepeatedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitRepeatedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSInt64Field", + "printedName": "visitRepeatedSInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitRepeatedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitRepeatedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedFixed32Field", + "printedName": "visitRepeatedFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP25visitRepeatedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP25visitRepeatedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedFixed64Field", + "printedName": "visitRepeatedFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP25visitRepeatedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP25visitRepeatedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSFixed32Field", + "printedName": "visitRepeatedSFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP26visitRepeatedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP26visitRepeatedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSFixed64Field", + "printedName": "visitRepeatedSFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP26visitRepeatedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP26visitRepeatedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedBoolField", + "printedName": "visitRepeatedBoolField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitRepeatedBoolField5value11fieldNumberySaySbG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitRepeatedBoolField5value11fieldNumberySaySbG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedStringField", + "printedName": "visitRepeatedStringField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitRepeatedStringField5value11fieldNumberySaySSG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitRepeatedStringField5value11fieldNumberySaySSG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedBytesField", + "printedName": "visitRepeatedBytesField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitRepeatedBytesField5value11fieldNumberySay10Foundation4DataVG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitRepeatedBytesField5value11fieldNumberySay10Foundation4DataVG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedEnumField", + "printedName": "visitRepeatedEnumField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitRepeatedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitRepeatedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedMessageField", + "printedName": "visitRepeatedMessageField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP25visitRepeatedMessageField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorP25visitRepeatedMessageField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedGroupField", + "printedName": "visitRepeatedGroupField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitRepeatedGroupField5value11fieldNumberySayqd__G_SitKAA7MessageRd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitRepeatedGroupField5value11fieldNumberySayqd__G_SitKAA7MessageRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedFloatField", + "printedName": "visitPackedFloatField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP21visitPackedFloatField5value11fieldNumberySaySfG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP21visitPackedFloatField5value11fieldNumberySaySfG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedDoubleField", + "printedName": "visitPackedDoubleField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitPackedDoubleField5value11fieldNumberySaySdG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitPackedDoubleField5value11fieldNumberySaySdG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedInt32Field", + "printedName": "visitPackedInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP21visitPackedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP21visitPackedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedInt64Field", + "printedName": "visitPackedInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP21visitPackedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP21visitPackedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedUInt32Field", + "printedName": "visitPackedUInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitPackedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitPackedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedUInt64Field", + "printedName": "visitPackedUInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitPackedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitPackedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSInt32Field", + "printedName": "visitPackedSInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitPackedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitPackedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSInt64Field", + "printedName": "visitPackedSInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitPackedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitPackedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedFixed32Field", + "printedName": "visitPackedFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitPackedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitPackedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedFixed64Field", + "printedName": "visitPackedFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitPackedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitPackedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSFixed32Field", + "printedName": "visitPackedSFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitPackedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitPackedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSFixed64Field", + "printedName": "visitPackedSFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitPackedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitPackedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedBoolField", + "printedName": "visitPackedBoolField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP20visitPackedBoolField5value11fieldNumberySaySbG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP20visitPackedBoolField5value11fieldNumberySaySbG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedEnumField", + "printedName": "visitPackedEnumField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP20visitPackedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorP20visitPackedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitMapField", + "printedName": "visitMapField(fieldType:value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._ProtobufMap<τ_1_0, τ_1_1>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProtobufMap", + "printedName": "VideoSDKRTC._ProtobufMap<τ_1_0, τ_1_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:11VideoSDKRTC12_ProtobufMapV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_1_0.BaseType : τ_1_1.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_1.BaseType" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP13visitMapField9fieldType5value0G6NumberyAA09_ProtobufE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__AKQyd_0_GSitKAA0e3KeyH0Rd__AA0e5ValueH0Rd_0_r0_lF", + "mangledName": "$s11VideoSDKRTC7VisitorP13visitMapField9fieldType5value0G6NumberyAA09_ProtobufE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__AKQyd_0_GSitKAA0e3KeyH0Rd__AA0e5ValueH0Rd_0_r0_lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0, τ_1_1 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.MapKeyType, τ_1_1 : VideoSDKRTC.MapValueType>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitMapField", + "printedName": "visitMapField(fieldType:value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._ProtobufEnumMap<τ_1_0, τ_1_1>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProtobufEnumMap", + "printedName": "VideoSDKRTC._ProtobufEnumMap<τ_1_0, τ_1_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:11VideoSDKRTC16_ProtobufEnumMapV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_1_0.BaseType : τ_1_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP13visitMapField9fieldType5value0G6NumberyAA013_ProtobufEnumE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GSitKAA0e3KeyH0Rd__AA0L0Rd_0_Si8RawValueRtd_0_r0_lF", + "mangledName": "$s11VideoSDKRTC7VisitorP13visitMapField9fieldType5value0G6NumberyAA013_ProtobufEnumE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GSitKAA0e3KeyH0Rd__AA0L0Rd_0_Si8RawValueRtd_0_r0_lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0, τ_1_1 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.MapKeyType, τ_1_1 : VideoSDKRTC.Enum, τ_1_1.RawValue == Swift.Int>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitMapField", + "printedName": "visitMapField(fieldType:value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._ProtobufMessageMap<τ_1_0, τ_1_1>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProtobufMessageMap", + "printedName": "VideoSDKRTC._ProtobufMessageMap<τ_1_0, τ_1_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:11VideoSDKRTC19_ProtobufMessageMapV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_1_0.BaseType : τ_1_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP13visitMapField9fieldType5value0G6NumberyAA016_ProtobufMessageE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GSitKAA0e3KeyH0Rd__SHRd_0_AA0L0Rd_0_r0_lF", + "mangledName": "$s11VideoSDKRTC7VisitorP13visitMapField9fieldType5value0G6NumberyAA016_ProtobufMessageE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GSitKAA0e3KeyH0Rd__SHRd_0_AA0L0Rd_0_r0_lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0, τ_1_1 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.MapKeyType, τ_1_1 : Swift.Hashable, τ_1_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitExtensionFields", + "printedName": "visitExtensionFields(fields:start:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP20visitExtensionFields6fields5start3endyAA0E13FieldValueSetV_S2itKF", + "mangledName": "$s11VideoSDKRTC7VisitorP20visitExtensionFields6fields5start3endyAA0E13FieldValueSetV_S2itKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitExtensionFieldsAsMessageSet", + "printedName": "visitExtensionFieldsAsMessageSet(fields:start:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP32visitExtensionFieldsAsMessageSet6fields5start3endyAA0e10FieldValueI0V_S2itKF", + "mangledName": "$s11VideoSDKRTC7VisitorP32visitExtensionFieldsAsMessageSet6fields5start3endyAA0e10FieldValueI0V_S2itKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitUnknown", + "printedName": "visitUnknown(bytes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP12visitUnknown5bytesy10Foundation4DataV_tKF", + "mangledName": "$s11VideoSDKRTC7VisitorP12visitUnknown5bytesy10Foundation4DataV_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularFloatField", + "printedName": "visitSingularFloatField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitSingularFloatField5value11fieldNumberySf_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitSingularFloatField5value11fieldNumberySf_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularInt32Field", + "printedName": "visitSingularInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitSingularInt32Field5value11fieldNumberys0F0V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitSingularInt32Field5value11fieldNumberys0F0V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularUInt32Field", + "printedName": "visitSingularUInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitSingularUInt32Field5value11fieldNumberys0F0V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitSingularUInt32Field5value11fieldNumberys0F0V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSInt32Field", + "printedName": "visitSingularSInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitSingularSInt32Field5value11fieldNumberys5Int32V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitSingularSInt32Field5value11fieldNumberys5Int32V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSInt64Field", + "printedName": "visitSingularSInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitSingularSInt64Field5value11fieldNumberys5Int64V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitSingularSInt64Field5value11fieldNumberys5Int64V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularFixed32Field", + "printedName": "visitSingularFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE25visitSingularFixed32Field5value11fieldNumberys6UInt32V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE25visitSingularFixed32Field5value11fieldNumberys6UInt32V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularFixed64Field", + "printedName": "visitSingularFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE25visitSingularFixed64Field5value11fieldNumberys6UInt64V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE25visitSingularFixed64Field5value11fieldNumberys6UInt64V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSFixed32Field", + "printedName": "visitSingularSFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE26visitSingularSFixed32Field5value11fieldNumberys5Int32V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE26visitSingularSFixed32Field5value11fieldNumberys5Int32V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSFixed64Field", + "printedName": "visitSingularSFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE26visitSingularSFixed64Field5value11fieldNumberys5Int64V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE26visitSingularSFixed64Field5value11fieldNumberys5Int64V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedFloatField", + "printedName": "visitRepeatedFloatField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitRepeatedFloatField5value11fieldNumberySaySfG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitRepeatedFloatField5value11fieldNumberySaySfG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedDoubleField", + "printedName": "visitRepeatedDoubleField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitRepeatedDoubleField5value11fieldNumberySaySdG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitRepeatedDoubleField5value11fieldNumberySaySdG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedInt32Field", + "printedName": "visitRepeatedInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitRepeatedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitRepeatedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedInt64Field", + "printedName": "visitRepeatedInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitRepeatedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitRepeatedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedUInt32Field", + "printedName": "visitRepeatedUInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitRepeatedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitRepeatedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedUInt64Field", + "printedName": "visitRepeatedUInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitRepeatedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitRepeatedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSInt32Field", + "printedName": "visitRepeatedSInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitRepeatedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitRepeatedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSInt64Field", + "printedName": "visitRepeatedSInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitRepeatedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitRepeatedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedFixed32Field", + "printedName": "visitRepeatedFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE25visitRepeatedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE25visitRepeatedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedFixed64Field", + "printedName": "visitRepeatedFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE25visitRepeatedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE25visitRepeatedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSFixed32Field", + "printedName": "visitRepeatedSFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE26visitRepeatedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE26visitRepeatedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSFixed64Field", + "printedName": "visitRepeatedSFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE26visitRepeatedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE26visitRepeatedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedBoolField", + "printedName": "visitRepeatedBoolField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE22visitRepeatedBoolField5value11fieldNumberySaySbG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE22visitRepeatedBoolField5value11fieldNumberySaySbG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedStringField", + "printedName": "visitRepeatedStringField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitRepeatedStringField5value11fieldNumberySaySSG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitRepeatedStringField5value11fieldNumberySaySSG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedBytesField", + "printedName": "visitRepeatedBytesField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitRepeatedBytesField5value11fieldNumberySay10Foundation4DataVG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitRepeatedBytesField5value11fieldNumberySay10Foundation4DataVG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedEnumField", + "printedName": "visitRepeatedEnumField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE22visitRepeatedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE22visitRepeatedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedMessageField", + "printedName": "visitRepeatedMessageField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE25visitRepeatedMessageField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE25visitRepeatedMessageField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedGroupField", + "printedName": "visitRepeatedGroupField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitRepeatedGroupField5value11fieldNumberySayqd__G_SitKAA7MessageRd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitRepeatedGroupField5value11fieldNumberySayqd__G_SitKAA7MessageRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedFloatField", + "printedName": "visitPackedFloatField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE21visitPackedFloatField5value11fieldNumberySaySfG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE21visitPackedFloatField5value11fieldNumberySaySfG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedDoubleField", + "printedName": "visitPackedDoubleField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE22visitPackedDoubleField5value11fieldNumberySaySdG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE22visitPackedDoubleField5value11fieldNumberySaySdG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedInt32Field", + "printedName": "visitPackedInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE21visitPackedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE21visitPackedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedInt64Field", + "printedName": "visitPackedInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE21visitPackedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE21visitPackedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedUInt32Field", + "printedName": "visitPackedUInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE22visitPackedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE22visitPackedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedUInt64Field", + "printedName": "visitPackedUInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE22visitPackedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE22visitPackedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSInt32Field", + "printedName": "visitPackedSInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE22visitPackedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE22visitPackedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSInt64Field", + "printedName": "visitPackedSInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE22visitPackedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE22visitPackedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedFixed32Field", + "printedName": "visitPackedFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitPackedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitPackedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedFixed64Field", + "printedName": "visitPackedFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitPackedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitPackedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSFixed32Field", + "printedName": "visitPackedSFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitPackedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitPackedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSFixed64Field", + "printedName": "visitPackedSFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitPackedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitPackedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedBoolField", + "printedName": "visitPackedBoolField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE20visitPackedBoolField5value11fieldNumberySaySbG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE20visitPackedBoolField5value11fieldNumberySaySbG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedEnumField", + "printedName": "visitPackedEnumField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE20visitPackedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE20visitPackedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularGroupField", + "printedName": "visitSingularGroupField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitSingularGroupField5value11fieldNumberyqd___SitKAA7MessageRd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitSingularGroupField5value11fieldNumberyqd___SitKAA7MessageRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitExtensionFieldsAsMessageSet", + "printedName": "visitExtensionFieldsAsMessageSet(fields:start:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE32visitExtensionFieldsAsMessageSet6fields5start3endyAA0e10FieldValueI0V_S2itKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE32visitExtensionFieldsAsMessageSet6fields5start3endyAA0e10FieldValueI0V_S2itKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitExtensionFields", + "printedName": "visitExtensionFields(fields:start:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE20visitExtensionFields6fields5start3endyAA0E13FieldValueSetV_S2itKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE20visitExtensionFields6fields5start3endyAA0E13FieldValueSetV_S2itKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC7VisitorP", + "mangledName": "$s11VideoSDKRTC7VisitorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "W3CBaggagePropagator", + "printedName": "W3CBaggagePropagator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "W3CBaggagePropagator", + "printedName": "VideoSDKRTC.W3CBaggagePropagator", + "usr": "s:11VideoSDKRTC20W3CBaggagePropagatorV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20W3CBaggagePropagatorVACycfc", + "mangledName": "$s11VideoSDKRTC20W3CBaggagePropagatorVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20W3CBaggagePropagatorV6fieldsShySSGvp", + "mangledName": "$s11VideoSDKRTC20W3CBaggagePropagatorV6fieldsShySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20W3CBaggagePropagatorV6fieldsShySSGvg", + "mangledName": "$s11VideoSDKRTC20W3CBaggagePropagatorV6fieldsShySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "inject", + "printedName": "inject(baggage:carrier:setter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20W3CBaggagePropagatorV6inject7baggage7carrier6setteryAA7Baggage_p_SDyS2SGzxtAA6SetterRzlF", + "mangledName": "$s11VideoSDKRTC20W3CBaggagePropagatorV6inject7baggage7carrier6setteryAA7Baggage_p_SDyS2SGzxtAA6SetterRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Setter>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "extract", + "printedName": "extract(carrier:getter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Baggage?", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20W3CBaggagePropagatorV7extract7carrier6getterAA7Baggage_pSgSDyS2SG_xtAA6GetterRzlF", + "mangledName": "$s11VideoSDKRTC20W3CBaggagePropagatorV7extract7carrier6getterAA7Baggage_pSgSDyS2SG_xtAA6GetterRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Getter>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20W3CBaggagePropagatorV", + "mangledName": "$s11VideoSDKRTC20W3CBaggagePropagatorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "TextMapBaggagePropagator", + "printedName": "TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP", + "mangledName": "$s11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "W3CTraceContextPropagator", + "printedName": "W3CTraceContextPropagator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "W3CTraceContextPropagator", + "printedName": "VideoSDKRTC.W3CTraceContextPropagator", + "usr": "s:11VideoSDKRTC25W3CTraceContextPropagatorV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25W3CTraceContextPropagatorVACycfc", + "mangledName": "$s11VideoSDKRTC25W3CTraceContextPropagatorVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25W3CTraceContextPropagatorV6fieldsShySSGvp", + "mangledName": "$s11VideoSDKRTC25W3CTraceContextPropagatorV6fieldsShySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25W3CTraceContextPropagatorV6fieldsShySSGvg", + "mangledName": "$s11VideoSDKRTC25W3CTraceContextPropagatorV6fieldsShySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "inject", + "printedName": "inject(spanContext:carrier:setter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25W3CTraceContextPropagatorV6inject04spanE07carrier6setteryAA04SpanE0V_SDyS2SGzxtAA6SetterRzlF", + "mangledName": "$s11VideoSDKRTC25W3CTraceContextPropagatorV6inject04spanE07carrier6setteryAA04SpanE0V_SDyS2SGzxtAA6SetterRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Setter>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "extract", + "printedName": "extract(carrier:getter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25W3CTraceContextPropagatorV7extract7carrier6getterAA04SpanE0VSgSDyS2SG_xtAA6GetterRzlF", + "mangledName": "$s11VideoSDKRTC25W3CTraceContextPropagatorV7extract7carrier6getterAA04SpanE0VSgSDyS2SG_xtAA6GetterRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Getter>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25W3CTraceContextPropagatorV", + "mangledName": "$s11VideoSDKRTC25W3CTraceContextPropagatorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "TextMapPropagator", + "printedName": "TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP", + "mangledName": "$s11VideoSDKRTC17TextMapPropagatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_DoubleValue", + "printedName": "Google_Protobuf_DoubleValue", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DoubleValue", + "printedName": "VideoSDKRTC.Google_Protobuf_DoubleValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueVACycfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DoubleValue", + "printedName": "VideoSDKRTC.Google_Protobuf_DoubleValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueVyACSdcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueVyACSdcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(floatLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DoubleValue", + "printedName": "VideoSDKRTC.Google_Protobuf_DoubleValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV12floatLiteralACSd_tcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV12floatLiteralACSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DoubleValue", + "printedName": "VideoSDKRTC.Google_Protobuf_DoubleValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DoubleValue", + "printedName": "VideoSDKRTC.Google_Protobuf_DoubleValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FloatValue", + "printedName": "Google_Protobuf_FloatValue", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FloatValue", + "printedName": "VideoSDKRTC.Google_Protobuf_FloatValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueVACycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FloatValue", + "printedName": "VideoSDKRTC.Google_Protobuf_FloatValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueVyACSfcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueVyACSfcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(floatLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FloatValue", + "printedName": "VideoSDKRTC.Google_Protobuf_FloatValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV12floatLiteralACSf_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV12floatLiteralACSf_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FloatValue", + "printedName": "VideoSDKRTC.Google_Protobuf_FloatValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FloatValue", + "printedName": "VideoSDKRTC.Google_Protobuf_FloatValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Int64Value", + "printedName": "Google_Protobuf_Int64Value", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0Vvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0Vvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0Vvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0VvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int64Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueVACycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int64Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueVyACs0E0Vcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueVyACs0E0Vcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(integerLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int64Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV14integerLiteralACs0E0V_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV14integerLiteralACs0E0V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int64Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int64Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_UInt64Value", + "printedName": "Google_Protobuf_UInt64Value", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0Vvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0Vvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0Vvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0VvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt64Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueVACycfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt64Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueVyACs0E0Vcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueVyACs0E0Vcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(integerLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt64Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV14integerLiteralACs0E0V_tcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV14integerLiteralACs0E0V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt64Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt64Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Int32Value", + "printedName": "Google_Protobuf_Int32Value", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0Vvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0Vvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0Vvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0VvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int32Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueVACycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int32Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueVyACs0E0Vcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueVyACs0E0Vcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(integerLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int32Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV14integerLiteralACs0E0V_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV14integerLiteralACs0E0V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int32Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int32Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_UInt32Value", + "printedName": "Google_Protobuf_UInt32Value", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0Vvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0Vvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0Vvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0VvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt32Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueVACycfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt32Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueVyACs0E0Vcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueVyACs0E0Vcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(integerLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt32Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV14integerLiteralACs0E0V_tcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV14integerLiteralACs0E0V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt32Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt32Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_BoolValue", + "printedName": "Google_Protobuf_BoolValue", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BoolValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BoolValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueVACycfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BoolValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BoolValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueVyACSbcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueVyACSbcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(booleanLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BoolValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BoolValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV14booleanLiteralACSb_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV14booleanLiteralACSb_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BoolValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BoolValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BoolValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BoolValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByBooleanLiteral", + "printedName": "ExpressibleByBooleanLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "BooleanLiteralType", + "printedName": "BooleanLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "usr": "s:s27ExpressibleByBooleanLiteralP", + "mangledName": "$ss27ExpressibleByBooleanLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_StringValue", + "printedName": "Google_Protobuf_StringValue", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_StringValue", + "printedName": "VideoSDKRTC.Google_Protobuf_StringValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueVACycfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_StringValue", + "printedName": "VideoSDKRTC.Google_Protobuf_StringValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueVyACSScfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueVyACSScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_StringValue", + "printedName": "VideoSDKRTC.Google_Protobuf_StringValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV13stringLiteralACSS_tcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV13stringLiteralACSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(extendedGraphemeClusterLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_StringValue", + "printedName": "VideoSDKRTC.Google_Protobuf_StringValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV30extendedGraphemeClusterLiteralACSS_tcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV30extendedGraphemeClusterLiteralACSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(unicodeScalarLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_StringValue", + "printedName": "VideoSDKRTC.Google_Protobuf_StringValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV20unicodeScalarLiteralACSS_tcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV20unicodeScalarLiteralACSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_StringValue", + "printedName": "VideoSDKRTC.Google_Protobuf_StringValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_StringValue", + "printedName": "VideoSDKRTC.Google_Protobuf_StringValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_BytesValue", + "printedName": "Google_Protobuf_BytesValue", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BytesValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BytesValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueVACycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BytesValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BytesValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueVyAC10Foundation4DataVcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueVyAC10Foundation4DataVcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BytesValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BytesValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BytesValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BytesValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AsyncSequence", + "printedName": "AsyncSequence", + "children": [ + { + "kind": "Function", + "name": "binaryProtobufDelimitedMessages", + "printedName": "binaryProtobufDelimitedMessages(of:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AsyncMessageSequence", + "printedName": "VideoSDKRTC.AsyncMessageSequence<τ_0_0, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_1_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:Sci11VideoSDKRTCs5UInt8V7ElementRtzrlE31binaryProtobufDelimitedMessages2of10extensions7partial7optionsAA20AsyncMessageSequenceVyxqd__Gqd__m_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtAA0N0Rd__lF", + "mangledName": "$sSci11VideoSDKRTCs5UInt8V7ElementRtzrlE31binaryProtobufDelimitedMessages2of10extensions7partial7optionsAA20AsyncMessageSequenceVyxqd__Gqd__m_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtAA0N0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : _Concurrency.AsyncSequence, τ_1_0 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "Inlinable", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:Sci", + "mangledName": "$sSci", + "moduleName": "_Concurrency", + "genericSig": "<τ_0_0.AsyncIterator : _Concurrency.AsyncIteratorProtocol, τ_0_0.Element == τ_0_0.AsyncIterator.Element>", + "sugared_genericSig": "", + "intro_Macosx": "10.15", + "intro_iOS": "13.0", + "intro_tvOS": "13.0", + "intro_watchOS": "6.0", + "declAttributes": [ + "AtRethrows", + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": true + }, + { + "kind": "TypeDecl", + "name": "Data", + "printedName": "Data", + "children": [ + { + "kind": "Function", + "name": "toJSONString", + "printedName": "toJSONString()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV11VideoSDKRTCE12toJSONStringSSyF", + "mangledName": "$s10Foundation4DataV11VideoSDKRTCE12toJSONStringSSyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toJSON", + "printedName": "toJSON()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV11VideoSDKRTCE6toJSONSDySSypGyF", + "mangledName": "$s10Foundation4DataV11VideoSDKRTCE6toJSONSDySSypGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toJSONArray", + "printedName": "toJSONArray()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV11VideoSDKRTCE11toJSONArraySayypGyF", + "mangledName": "$s10Foundation4DataV11VideoSDKRTCE11toJSONArraySayypGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:10Foundation4DataV", + "mangledName": "$s10Foundation4DataV", + "moduleName": "Foundation", + "intro_Macosx": "10.10", + "intro_iOS": "8.0", + "intro_tvOS": "9.0", + "intro_watchOS": "2.0", + "declAttributes": [ + "Frozen", + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RandomAccessCollection", + "printedName": "RandomAccessCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sk", + "mangledName": "$sSk" + }, + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MutableDataProtocol", + "printedName": "MutableDataProtocol", + "usr": "s:10Foundation19MutableDataProtocolP", + "mangledName": "$s10Foundation19MutableDataProtocolP" + }, + { + "kind": "Conformance", + "name": "ContiguousBytes", + "printedName": "ContiguousBytes", + "usr": "s:10Foundation15ContiguousBytesP", + "mangledName": "$s10Foundation15ContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "DataProtocol", + "printedName": "DataProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "Regions", + "printedName": "Regions", + "children": [ + { + "kind": "TypeNominal", + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:s15CollectionOfOneV" + } + ] + } + ], + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "SwiftProtobufContiguousBytes", + "printedName": "SwiftProtobufContiguousBytes", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "ReferenceConvertible", + "printedName": "ReferenceConvertible", + "children": [ + { + "kind": "TypeWitness", + "name": "ReferenceType", + "printedName": "ReferenceType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ] + } + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Transferable", + "printedName": "Transferable", + "children": [ + { + "kind": "TypeWitness", + "name": "Representation", + "printedName": "Representation", + "children": [ + { + "kind": "TypeNominal", + "name": "OpaqueTypeArchetype", + "printedName": "some CoreTransferable.TransferRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "TransferRepresentation", + "printedName": "CoreTransferable.TransferRepresentation", + "usr": "s:16CoreTransferable22TransferRepresentationP" + }, + { + "kind": "TypeNominal", + "name": "Sendable", + "printedName": "Swift.Sendable", + "usr": "s:s8SendableP" + } + ] + } + ] + } + ], + "usr": "s:16CoreTransferable0B0P", + "mangledName": "$s16CoreTransferable0B0P" + } + ] + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "children": [ + { + "kind": "Function", + "name": "toJSON", + "printedName": "toJSON()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:SS11VideoSDKRTCE6toJSONSDySSypGyF", + "mangledName": "$sSS11VideoSDKRTCE6toJSONSDySSypGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinStringLiteral", + "printedName": "_ExpressibleByBuiltinStringLiteral", + "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", + "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "UTF8View", + "printedName": "UTF8View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UTF16View", + "printedName": "UTF16View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", + "children": [ + { + "kind": "TypeNominal", + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sy", + "mangledName": "$sSy" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", + "children": [ + { + "kind": "TypeWitness", + "name": "StringInterpolation", + "printedName": "StringInterpolation", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" + } + ] + } + ], + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Transferable", + "printedName": "Transferable", + "children": [ + { + "kind": "TypeWitness", + "name": "Representation", + "printedName": "Representation", + "children": [ + { + "kind": "TypeNominal", + "name": "OpaqueTypeArchetype", + "printedName": "some CoreTransferable.TransferRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "TransferRepresentation", + "printedName": "CoreTransferable.TransferRepresentation", + "usr": "s:16CoreTransferable22TransferRepresentationP" + }, + { + "kind": "TypeNominal", + "name": "Sendable", + "printedName": "Swift.Sendable", + "usr": "s:s8SendableP" + } + ] + } + ] + } + ], + "usr": "s:16CoreTransferable0B0P", + "mangledName": "$s16CoreTransferable0B0P" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Dictionary", + "printedName": "Dictionary", + "children": [ + { + "kind": "Function", + "name": "toJSONString", + "printedName": "toJSONString()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:SD11VideoSDKRTCE12toJSONStringSSyF", + "mangledName": "$sSD11VideoSDKRTCE12toJSONStringSSyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:SD", + "mangledName": "$sSD", + "moduleName": "Swift", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", + "sugared_genericSig": "", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(key: τ_0_0, value: τ_0_1)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", + "usr": "s:SD8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(key: τ_0_0, value: τ_0_1)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Index", + "usr": "s:SD5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", + "usr": "s:SD8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Slice", + "printedName": "Swift.Slice<[τ_0_0 : τ_0_1]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:s5SliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices<[τ_0_0 : τ_0_1]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "ExpressibleByDictionaryLiteral", + "printedName": "ExpressibleByDictionaryLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "Key", + "printedName": "Key", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Value", + "printedName": "Value", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ] + } + ], + "usr": "s:s30ExpressibleByDictionaryLiteralP", + "mangledName": "$ss30ExpressibleByDictionaryLiteralP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Array", + "printedName": "Array", + "children": [ + { + "kind": "Function", + "name": "toJSONString", + "printedName": "toJSONString()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:Sa11VideoSDKRTCE12toJSONStringSSyF", + "mangledName": "$sSa11VideoSDKRTCE12toJSONStringSSyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:Sa", + "mangledName": "$sSa", + "moduleName": "Swift", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_DestructorSafeContainer", + "printedName": "_DestructorSafeContainer", + "usr": "s:s24_DestructorSafeContainerP", + "mangledName": "$ss24_DestructorSafeContainerP" + }, + { + "kind": "Conformance", + "name": "SwiftProtobufContiguousBytes", + "printedName": "SwiftProtobufContiguousBytes", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_ArrayProtocol", + "printedName": "_ArrayProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "_Buffer", + "printedName": "_Buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "_ArrayBuffer", + "printedName": "Swift._ArrayBuffer<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s12_ArrayBufferV" + } + ] + } + ], + "usr": "s:s14_ArrayProtocolP", + "mangledName": "$ss14_ArrayProtocolP" + }, + { + "kind": "Conformance", + "name": "RandomAccessCollection", + "printedName": "RandomAccessCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sk", + "mangledName": "$sSk" + }, + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "ExpressibleByArrayLiteral", + "printedName": "ExpressibleByArrayLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:s25ExpressibleByArrayLiteralP", + "mangledName": "$ss25ExpressibleByArrayLiteralP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSArray", + "printedName": "Foundation.NSArray", + "usr": "c:objc(cs)NSArray" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "ContiguousBytes", + "printedName": "ContiguousBytes", + "usr": "s:10Foundation15ContiguousBytesP", + "mangledName": "$s10Foundation15ContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "EncodableWithConfiguration", + "printedName": "EncodableWithConfiguration", + "children": [ + { + "kind": "TypeWitness", + "name": "EncodingConfiguration", + "printedName": "EncodingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.EncodingConfiguration" + } + ] + } + ], + "usr": "s:10Foundation26EncodableWithConfigurationP", + "mangledName": "$s10Foundation26EncodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "DecodableWithConfiguration", + "printedName": "DecodableWithConfiguration", + "children": [ + { + "kind": "TypeWitness", + "name": "DecodingConfiguration", + "printedName": "DecodingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.DecodingConfiguration" + } + ] + } + ], + "usr": "s:10Foundation26DecodableWithConfigurationP", + "mangledName": "$s10Foundation26DecodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "DataProtocol", + "printedName": "DataProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "Regions", + "printedName": "Regions", + "children": [ + { + "kind": "TypeNominal", + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s15CollectionOfOneV" + } + ] + } + ], + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" + }, + { + "kind": "Conformance", + "name": "MutableDataProtocol", + "printedName": "MutableDataProtocol", + "usr": "s:10Foundation19MutableDataProtocolP", + "mangledName": "$s10Foundation19MutableDataProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Encodable", + "printedName": "Encodable", + "children": [ + { + "kind": "Function", + "name": "toJSON", + "printedName": "toJSON()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:SE11VideoSDKRTCE6toJSONSDySSypGyF", + "mangledName": "$sSE11VideoSDKRTCE6toJSONSDySSypGyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toJSONArray", + "printedName": "toJSONArray()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:SE11VideoSDKRTCE11toJSONArraySayypGyF", + "mangledName": "$sSE11VideoSDKRTCE11toJSONArraySayypGyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:SE", + "mangledName": "$sSE", + "moduleName": "Swift", + "isExternal": true + }, + { + "kind": "TypeDecl", + "name": "Double", + "printedName": "Double", + "children": [ + { + "kind": "Var", + "name": "toMilliseconds", + "printedName": "toMilliseconds", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:Sd11VideoSDKRTCE14toMillisecondss6UInt64Vvp", + "mangledName": "$sSd11VideoSDKRTCE14toMillisecondss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:Sd11VideoSDKRTCE14toMillisecondss6UInt64Vvg", + "mangledName": "$sSd11VideoSDKRTCE14toMillisecondss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "toMicroseconds", + "printedName": "toMicroseconds", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:Sd11VideoSDKRTCE14toMicrosecondss6UInt64Vvp", + "mangledName": "$sSd11VideoSDKRTCE14toMicrosecondss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:Sd11VideoSDKRTCE14toMicrosecondss6UInt64Vvg", + "mangledName": "$sSd11VideoSDKRTCE14toMicrosecondss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "toNanoseconds", + "printedName": "toNanoseconds", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:Sd11VideoSDKRTCE13toNanosecondss6UInt64Vvp", + "mangledName": "$sSd11VideoSDKRTCE13toNanosecondss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:Sd11VideoSDKRTCE13toNanosecondss6UInt64Vvg", + "mangledName": "$sSd11VideoSDKRTCE13toNanosecondss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "fromMilliseconds", + "printedName": "fromMilliseconds(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:Sd11VideoSDKRTCE16fromMillisecondsySds5Int64VFZ", + "mangledName": "$sSd11VideoSDKRTCE16fromMillisecondsySds5Int64VFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fromMicroseconds", + "printedName": "fromMicroseconds(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:Sd11VideoSDKRTCE16fromMicrosecondsySds5Int64VFZ", + "mangledName": "$sSd11VideoSDKRTCE16fromMicrosecondsySds5Int64VFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fromNanoseconds", + "printedName": "fromNanoseconds(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:Sd11VideoSDKRTCE15fromNanosecondsySds5Int64VFZ", + "mangledName": "$sSd11VideoSDKRTCE15fromNanosecondsySds5Int64VFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:Sd", + "mangledName": "$sSd", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_CVarArgPassedAsDouble", + "printedName": "_CVarArgPassedAsDouble", + "usr": "s:s22_CVarArgPassedAsDoubleP", + "mangledName": "$ss22_CVarArgPassedAsDoubleP" + }, + { + "kind": "Conformance", + "name": "_CVarArgAligned", + "printedName": "_CVarArgAligned", + "usr": "s:s15_CVarArgAlignedP", + "mangledName": "$ss15_CVarArgAlignedP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "BinaryFloatingPoint", + "printedName": "BinaryFloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "RawSignificand", + "printedName": "RawSignificand", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "RawExponent", + "printedName": "RawExponent", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + } + ], + "usr": "s:SB", + "mangledName": "$sSB" + }, + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "FloatingPoint", + "printedName": "FloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "Exponent", + "printedName": "Exponent", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SF", + "mangledName": "$sSF" + }, + { + "kind": "Conformance", + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinFloatLiteral", + "printedName": "_ExpressibleByBuiltinFloatLiteral", + "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", + "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ + { + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.Double.SIMD2Storage", + "usr": "s:Sd12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.Double.SIMD4Storage", + "usr": "s:Sd12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.Double.SIMD8Storage", + "usr": "s:Sd12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.Double.SIMD16Storage", + "usr": "s:Sd13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.Double.SIMD32Storage", + "usr": "s:Sd13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.Double.SIMD64Storage", + "usr": "s:Sd13SIMD64StorageV" + } + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "VectorArithmetic", + "printedName": "VectorArithmetic", + "usr": "s:7SwiftUI16VectorArithmeticP", + "mangledName": "$s7SwiftUI16VectorArithmeticP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:7SwiftUI18_FormatSpecifiableP", + "mangledName": "$s7SwiftUI18_FormatSpecifiableP" + }, + { + "kind": "Conformance", + "name": "Animatable", + "printedName": "Animatable", + "children": [ + { + "kind": "TypeWitness", + "name": "AnimatableData", + "printedName": "AnimatableData", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:7SwiftUI10AnimatableP", + "mangledName": "$s7SwiftUI10AnimatableP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/ActionEvent.swift", + "kind": "StringLiteral", + "offset": 1339, + "length": 26, + "value": "\"participant-mode-changed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/ActionEvent.swift", + "kind": "StringLiteral", + "offset": 1339, + "length": 26, + "value": "\"participant-mode-changed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Context\/ActivityContextManager.swift", + "kind": "IntegerLiteral", + "offset": 290, + "length": 2, + "value": "-2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Context\/ActivityContextManager.swift", + "kind": "StringLiteral", + "offset": 295, + "length": 22, + "value": "\"_os_activity_current\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Context\/ActivityContextManager.swift", + "kind": "IntegerLiteral", + "offset": 1419, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Context\/ActivityContextManager.swift", + "kind": "IntegerLiteral", + "offset": 1954, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Context\/ActivityContextManager.swift", + "kind": "StringLiteral", + "offset": 2706, + "length": 17, + "value": "\"ActivityContext\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Context\/ActivityContextManager.swift", + "kind": "BooleanLiteral", + "offset": 3309, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "StringLiteral", + "offset": 7502, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "StringLiteral", + "offset": 7678, + "length": 6, + "value": "\".Any\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "IntegerLiteral", + "offset": 7741, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "StringLiteral", + "offset": 7761, + "length": 10, + "value": "\"type_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "IntegerLiteral", + "offset": 7778, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "StringLiteral", + "offset": 7794, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "IntegerLiteral", + "offset": 8561, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "IntegerLiteral", + "offset": 8652, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "IntegerLiteral", + "offset": 9066, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "IntegerLiteral", + "offset": 9194, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "BooleanLiteral", + "offset": 9505, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "BooleanLiteral", + "offset": 9572, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "BooleanLiteral", + "offset": 9590, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 912, + "length": 7, + "value": "\"@type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 1077, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 1645, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 1694, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "IntegerLiteral", + "offset": 2405, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 2776, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 3850, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 4362, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 5432, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 6007, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 6290, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 6376, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 9690, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "IntegerLiteral", + "offset": 10003, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "IntegerLiteral", + "offset": 10120, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "IntegerLiteral", + "offset": 10965, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 12595, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 14083, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 14523, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 14899, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 15710, + "length": 4, + "value": "\"{}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 15805, + "length": 7, + "value": "\"@type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 16517, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 17069, + "length": 7, + "value": "\"@type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 17199, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 18192, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 18316, + "length": 7, + "value": "\"@type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "Array", + "offset": 3517, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "Array", + "offset": 3616, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "Array", + "offset": 5417, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 6188, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 6366, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "Array", + "offset": 6465, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10262, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10438, + "length": 6, + "value": "\".Api\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 10501, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10517, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 10530, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10546, + "length": 9, + "value": "\"methods\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 10562, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10578, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 10594, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10610, + "length": 9, + "value": "\"version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 10626, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10646, + "length": 16, + "value": "\"source_context\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 10669, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10685, + "length": 8, + "value": "\"mixins\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 10700, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10716, + "length": 8, + "value": "\"syntax\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 11139, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 11220, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 11305, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 11390, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 11474, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 11566, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 11650, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 12220, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 12338, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 12456, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 12573, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 12692, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 12812, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 12927, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13113, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13162, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13211, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13260, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13323, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13370, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13417, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13478, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13496, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13668, + "length": 9, + "value": "\".Method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 13734, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13750, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 13763, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13783, + "length": 18, + "value": "\"request_type_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 13808, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13828, + "length": 19, + "value": "\"request_streaming\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 13854, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13874, + "length": 19, + "value": "\"response_type_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 13900, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13920, + "length": 20, + "value": "\"response_streaming\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 13947, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13963, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 13979, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13995, + "length": 8, + "value": "\"syntax\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 14418, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 14499, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 14590, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 14681, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 14773, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 14865, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 14950, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 15224, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 15355, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 15396, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 15488, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 15621, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 15663, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 15756, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 15874, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 15989, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16181, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16244, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16311, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16376, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16445, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16494, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16541, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16602, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16620, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 16791, + "length": 8, + "value": "\".Mixin\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 16856, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 16872, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 16885, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 16901, + "length": 6, + "value": "\"root\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 17322, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 17403, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 17677, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 17788, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 17978, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 18021, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 18082, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 18100, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "BooleanLiteral", + "offset": 1998, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "BooleanLiteral", + "offset": 3941, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 4918, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 4946, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5038, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5077, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5099, + "length": 2, + "value": "35" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5212, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5220, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5290, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5921, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5926, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5933, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5975, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 6047, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 6079, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 6489, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 6568, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 7159, + "length": 10, + "value": "0x7fffffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 7276, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "Array", + "offset": 7329, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/AttributeProcessor.swift", + "kind": "StringLiteral", + "offset": 1465, + "length": 24, + "value": "\"VideoSDKRTC.SimpleAttributeProcessor\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/AttributeProcessor.swift", + "kind": "StringLiteral", + "offset": 1948, + "length": 24, + "value": "\"VideoSDKRTC.JoinedAttributeProcessor\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/AttributesDictionary.swift", + "kind": "IntegerLiteral", + "offset": 633, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/AttributesDictionary.swift", + "kind": "IntegerLiteral", + "offset": 1873, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/AttributesDictionary.swift", + "kind": "Array", + "offset": 2813, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/AttributesDictionary.swift", + "kind": "IntegerLiteral", + "offset": 3653, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/AttributesDictionary.swift", + "kind": "IntegerLiteral", + "offset": 3814, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/AttributesDictionary.swift", + "kind": "IntegerLiteral", + "offset": 3907, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Common\/AttributeValue.swift", + "kind": "StringLiteral", + "offset": 609, + "length": 6, + "value": "\"true\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Common\/AttributeValue.swift", + "kind": "StringLiteral", + "offset": 618, + "length": 7, + "value": "\"false\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Common\/AttributeValue.swift", + "kind": "StringLiteral", + "offset": 2566, + "length": 4, + "value": "\"_0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Common\/AttributeValue.swift", + "kind": "StringLiteral", + "offset": 2566, + "length": 4, + "value": "\"_0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Common\/AttributeValue.swift", + "kind": "IntegerLiteral", + "offset": 2824, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Common\/AttributeValue.swift", + "kind": "StringLiteral", + "offset": 2944, + "length": 45, + "value": "\"Invalid number of keys found, expected one.\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "BooleanLiteral", + "offset": 546, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 609, + "length": 43, + "value": "\"error setting the default audio: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 651, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "Array", + "offset": 793, + "length": 24, + "value": "[(\"Speaker\", \"Speaker\")]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 981, + "length": 19, + "value": "\"iPhone Microphone\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 1004, + "length": 10, + "value": "\"Receiver\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "BooleanLiteral", + "offset": 1272, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "IntegerLiteral", + "offset": 1347, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 1503, + "length": 17, + "value": "\"microphonewired\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 1561, + "length": 12, + "value": "\"Headphones\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 1612, + "length": 12, + "value": "\"Headphones\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 2536, + "length": 66, + "value": "\"error changing to bluetooth device \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 2601, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 3158, + "length": 65, + "value": "\"error changing to built-in device \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 3222, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 3785, + "length": 60, + "value": "\"error changing to headphones \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 3844, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 4392, + "length": 60, + "value": "\"error changing to headphones \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 4451, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 4898, + "length": 57, + "value": "\"error changing to speaker \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 4954, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 5145, + "length": 12, + "value": "\"headphones\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 5486, + "length": 57, + "value": "\"error changing to speaker \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 5542, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 5717, + "length": 9, + "value": "\"speaker\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 5967, + "length": 57, + "value": "\"error changing to speaker \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 6023, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 6126, + "length": 24, + "value": "\"Device was not changed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "BooleanLiteral", + "offset": 6940, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 7027, + "length": 56, + "value": "\"error adding new device: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 7082, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "BooleanLiteral", + "offset": 7369, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 7456, + "length": 65, + "value": "\"error setting back to old device: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 7520, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Baggage.swift", + "kind": "BooleanLiteral", + "offset": 914, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 300, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 333, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 357, + "length": 4, + "value": "2048" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 389, + "length": 3, + "value": "512" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 2229, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "StringLiteral", + "offset": 2285, + "length": 19, + "value": "\"BatchWorker Queue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 2349, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "BooleanLiteral", + "offset": 3432, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 4511, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 4772, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "StringLiteral", + "offset": 1221, + "length": 11, + "value": "\"VideoSDKRTC.BatchWorker\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 907, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 940, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 980, + "length": 4, + "value": "2048" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 1012, + "length": 3, + "value": "512" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 1513, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 1550, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 3005, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "StringLiteral", + "offset": 3167, + "length": 19, + "value": "\"BatchWorker Queue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 3231, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 4369, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 5439, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 5685, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "StringLiteral", + "offset": 2223, + "length": 11, + "value": "\"VideoSDKRTC.BatchWorker\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 1134, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 1316, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 1988, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 2824, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 2855, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 3013, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "StringLiteral", + "offset": 3241, + "length": 61, + "value": "\"Somehow BinaryDecoding unwound more objects than it started\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 3791, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 4665, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 4833, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 4890, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5036, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5045, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5066, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5093, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5132, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5186, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5195, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5224, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5329, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5353, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5362, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5387, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5418, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5462, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5525, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5534, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5567, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5684, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5727, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5736, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5764, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5773, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5802, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5837, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5899, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6028, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6075, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6084, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6116, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6125, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6158, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6197, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6267, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6408, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6443, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6594, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6603, + "length": 2, + "value": "25" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6635, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6674, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6766, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 6793, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 7625, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 7860, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 8110, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 8230, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 8394, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 8610, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 8733, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 9016, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 9254, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 9507, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 9627, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 9792, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 10008, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 10162, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 10497, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 10787, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 11074, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 11145, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 11603, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 11920, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 12202, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 12481, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 12552, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13002, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13340, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13633, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13923, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 13994, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 14443, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 14725, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 14962, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15224, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 15295, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15716, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 16087, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 16413, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 16740, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 16811, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17312, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17637, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17917, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18194, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 18265, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18712, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 18966, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 19071, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 19280, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 19385, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 19577, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 19700, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 19771, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 20016, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 20207, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 20461, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 20567, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 20776, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 20882, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 21074, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 21198, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 21269, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 21514, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 21706, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 21959, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 22063, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 22271, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 22375, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 22566, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 22688, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 22759, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 23002, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 23192, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 23445, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 23550, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 23758, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 23863, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 24054, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 24177, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 24248, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 24491, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 24682, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 24944, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 24965, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 25182, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 25203, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 25440, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 25466, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 25537, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 25923, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 25963, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 26221, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 26371, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 26661, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 26811, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 27084, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 27256, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 27600, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 27711, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 27921, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 28032, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 28225, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 28354, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 28769, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 29147, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 29525, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 29610, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "Array", + "offset": 30280, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 30555, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 30937, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 31368, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 31639, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 31918, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 32144, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 32423, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 33120, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 33386, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 33594, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 34281, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 34980, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 35372, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 35778, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 35871, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 36647, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 37056, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 37462, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 37579, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 38630, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 39013, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 39419, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 39536, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 40118, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 42556, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 42930, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 44274, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 44394, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 44771, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 44932, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 45268, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 46079, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 47389, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 47831, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 47992, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 48783, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 48870, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 48897, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 49246, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 50158, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 50245, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 50272, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51198, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51356, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51392, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51412, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51429, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51437, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51564, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51597, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 51614, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51645, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51658, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51780, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51820, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51844, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51878, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51912, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51920, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 52049, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 52636, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 53583, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 53763, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 53801, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 54038, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 54218, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 54256, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 54364, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 54525, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 54742, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 54906, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 55841, + "length": 10, + "value": "0x7fffffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecodingOptions.swift", + "kind": "IntegerLiteral", + "offset": 899, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecodingOptions.swift", + "kind": "BooleanLiteral", + "offset": 1717, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "BooleanLiteral", + "offset": 3202, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 3515, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 3670, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 3826, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 3948, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 4350, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "BooleanLiteral", + "offset": 5972, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "BooleanLiteral", + "offset": 7845, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8001, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8117, + "length": 10, + "value": "0x7fffffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8574, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8579, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8586, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8626, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8714, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8797, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8937, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 9118, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 9296, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 9448, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10092, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10224, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10259, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10286, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10298, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10363, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10535, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10559, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "BooleanLiteral", + "offset": 10569, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10634, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10773, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10799, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10807, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10849, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10866, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 993, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 1225, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 1629, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 2338, + "length": 3, + "value": "127" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 2373, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 2380, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 2405, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 2840, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 2844, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4548, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 944, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 3950, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 5557, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 5884, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6213, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6542, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6870, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 7214, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 8731, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 8991, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 9393, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 10519, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 10887, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11256, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11641, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 12027, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 12397, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 14990, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 15435, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 16377, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 16912, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 17268, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 17822, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 17898, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 18579, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 18660, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 19301, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 19385, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 20096, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 3351, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 3355, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 5684, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6060, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6430, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6829, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 7222, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 7601, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 9395, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 9399, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 9638, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 10253, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 10327, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 10484, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 10557, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11024, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11103, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11246, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11318, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11746, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11828, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11971, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 12046, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/BoundCounterMetricSdkBase.swift", + "kind": "StringLiteral", + "offset": 111, + "length": 25, + "value": "\"VideoSDKRTC.BoundCounterMetricSdkBase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/BoundRawCounterMetricSdkBase.swift", + "kind": "StringLiteral", + "offset": 112, + "length": 28, + "value": "\"VideoSDKRTC.BoundRawCounterMetricSdkBase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/BoundRawHistogramMetricSdkBase.swift", + "kind": "StringLiteral", + "offset": 112, + "length": 30, + "value": "\"VideoSDKRTC.BoundRawHistogramMetricSdkBase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "kind": "IntegerLiteral", + "offset": 244, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "kind": "IntegerLiteral", + "offset": 244, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "kind": "IntegerLiteral", + "offset": 244, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Array", + "offset": 289, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1170, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1200, + "length": 8, + "value": "\"roomId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1234, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1268, + "length": 7, + "value": "\"count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1319, + "length": 7, + "value": "\"count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 1338, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 1342, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 1412, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1540, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1593, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1745, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1868, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1913, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 2002, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Dictionary", + "offset": 2100, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 2105, + "length": 9, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 2113, + "length": 20, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 2361, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 2426, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 2530, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Dictionary", + "offset": 3087, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3130, + "length": 9, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3138, + "length": 15, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Dictionary", + "offset": 3342, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3658, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Dictionary", + "offset": 3822, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3839, + "length": 8, + "value": "\"roomId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3858, + "length": 8, + "value": "\"roomId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3881, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3900, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3923, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3940, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3961, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Array", + "offset": 3972, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3988, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Array", + "offset": 3999, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4046, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Array", + "offset": 4126, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Dictionary", + "offset": 4229, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4265, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4314, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4355, + "length": 16, + "value": "\"infrastructure\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 4384, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4428, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 4478, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4599, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4695, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4717, + "length": 10, + "value": "\"codec_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4759, + "length": 11, + "value": "\"mime_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4786, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4829, + "length": 8, + "value": "\"jitter\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4851, + "length": 20, + "value": "\"delta_jitter_ms_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4913, + "length": 9, + "value": "\"bitrate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4936, + "length": 14, + "value": "\"delta_kbs_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4992, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5019, + "length": 23, + "value": "\"delta_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5084, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5101, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5139, + "length": 27, + "value": "\"delta_rtt_connectivity_ms\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 5171, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5213, + "length": 14, + "value": "\"totalPackets\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5241, + "length": 18, + "value": "\"delta_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5301, + "length": 19, + "value": "\"concealmentEvents\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5334, + "length": 26, + "value": "\"delta_concealment_events\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5402, + "length": 30, + "value": "\"removedSampleForAccelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5446, + "length": 40, + "value": "\"delta_removed_samples_for_accelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5528, + "length": 32, + "value": "\"insertedSamplesForDecelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5574, + "length": 41, + "value": "\"delta_inserted_samples_for_decelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5657, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5680, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5735, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5832, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5854, + "length": 11, + "value": "\"codec_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5897, + "length": 11, + "value": "\"mime_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5924, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5967, + "length": 8, + "value": "\"jitter\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5989, + "length": 21, + "value": "\"delta_jitter_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6052, + "length": 9, + "value": "\"bitrate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6075, + "length": 15, + "value": "\"delta_kbs_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6132, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6159, + "length": 24, + "value": "\"delta_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6225, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6242, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6280, + "length": 27, + "value": "\"delta_rtt_connectivity_ms\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 6312, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6354, + "length": 14, + "value": "\"totalPackets\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6382, + "length": 19, + "value": "\"delta_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6443, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6466, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6604, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6700, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Array", + "offset": 6781, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6859, + "length": 6, + "value": "\"1234\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Dictionary", + "offset": 6967, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7002, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7051, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7092, + "length": 16, + "value": "\"infrastructure\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 7121, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7164, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 7214, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7335, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7430, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7452, + "length": 10, + "value": "\"codec_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7494, + "length": 11, + "value": "\"mime_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7521, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7563, + "length": 8, + "value": "\"jitter\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7585, + "length": 20, + "value": "\"delta_jitter_ms_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7646, + "length": 9, + "value": "\"bitrate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7669, + "length": 14, + "value": "\"delta_kbs_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7724, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7751, + "length": 23, + "value": "\"delta_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7815, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7832, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7870, + "length": 27, + "value": "\"delta_rtt_connectivity_ms\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 7902, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7943, + "length": 14, + "value": "\"totalPackets\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7971, + "length": 18, + "value": "\"delta_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8030, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8053, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8107, + "length": 6, + "value": "\"size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8127, + "length": 9, + "value": "\"size_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8178, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8274, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8296, + "length": 11, + "value": "\"codec_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8339, + "length": 11, + "value": "\"mime_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8366, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8408, + "length": 8, + "value": "\"jitter\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8430, + "length": 21, + "value": "\"delta_jitter_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8492, + "length": 9, + "value": "\"bitrate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8515, + "length": 15, + "value": "\"delta_kbs_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8571, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8598, + "length": 24, + "value": "\"delta_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8663, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8680, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8718, + "length": 27, + "value": "\"delta_rtt_connectivity_ms\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 8750, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8791, + "length": 14, + "value": "\"totalPackets\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8819, + "length": 19, + "value": "\"delta_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8879, + "length": 12, + "value": "\"limitation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8905, + "length": 16, + "value": "\"limitation_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8962, + "length": 6, + "value": "\"size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8982, + "length": 10, + "value": "\"size_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 9033, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 9056, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 9211, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 2389, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 2550, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 2713, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 5654, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "Array", + "offset": 6215, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "Array", + "offset": 7193, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "Array", + "offset": 8991, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 9041, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 9783, + "length": 31, + "value": "\"opentelemetry.proto.common.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 9992, + "length": 11, + "value": "\".AnyValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10060, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 10080, + "length": 14, + "value": "\"string_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10101, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 10121, + "length": 12, + "value": "\"bool_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10140, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 10160, + "length": 11, + "value": "\"int_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10178, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 10198, + "length": 14, + "value": "\"double_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10219, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 10239, + "length": 13, + "value": "\"array_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10259, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 10279, + "length": 14, + "value": "\"kvlist_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10300, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 10320, + "length": 13, + "value": "\"bytes_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10748, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 11000, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 11246, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 11493, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 11745, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 11839, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 11909, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 12195, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 12291, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 12361, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 12649, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 13486, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 13669, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 13851, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 14040, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 14228, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 14418, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 14604, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 14858, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 14919, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 14937, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 15128, + "length": 13, + "value": "\".ArrayValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 15199, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 15215, + "length": 8, + "value": "\"values\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 15638, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 15921, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 16153, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 16214, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 16232, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 16424, + "length": 15, + "value": "\".KeyValueList\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 16497, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 16513, + "length": 8, + "value": "\"values\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 16936, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 17219, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 17455, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 17516, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 17534, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 17722, + "length": 11, + "value": "\".KeyValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 17791, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 17807, + "length": 5, + "value": "\"key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 17819, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 17835, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 18257, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 18337, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 18909, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 19020, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 19246, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 19293, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 19354, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 19372, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 19575, + "length": 23, + "value": "\".InstrumentationScope\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 19656, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 19672, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 19685, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 19701, + "length": 9, + "value": "\"version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 19717, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 19733, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 19752, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 19772, + "length": 26, + "value": "\"dropped_attributes_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 20213, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 20294, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 20378, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 20466, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 20759, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 20876, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 21000, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 21047, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 21143, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 21391, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 21440, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 21495, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 21574, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 21635, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 21653, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/CounterMetricSdk.swift", + "kind": "BooleanLiteral", + "offset": 346, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/CounterMetricSdk.swift", + "kind": "BooleanLiteral", + "offset": 503, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/CounterMetricSdkBase.swift", + "kind": "BooleanLiteral", + "offset": 627, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/CounterMetricSdkBase.swift", + "kind": "BooleanLiteral", + "offset": 778, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/CounterSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 265, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/CounterSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 291, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/CounterSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 584, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 622, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 631, + "length": 3, + "value": "160" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 640, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 2, + "value": "90" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 658, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 669, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 674, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 684, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 697, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 705, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 720, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 760, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 769, + "length": 3, + "value": "320" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 788, + "length": 3, + "value": "180" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 797, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 808, + "length": 3, + "value": "120" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 814, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 824, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 837, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 845, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 860, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 900, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 909, + "length": 3, + "value": "384" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 918, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 928, + "length": 3, + "value": "216" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 937, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 948, + "length": 3, + "value": "180" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 954, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 964, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 977, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 985, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1000, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1040, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1049, + "length": 3, + "value": "640" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1058, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1068, + "length": 3, + "value": "360" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1077, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1088, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1094, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1104, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1117, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1125, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1140, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1180, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1189, + "length": 3, + "value": "960" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1198, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1208, + "length": 3, + "value": "540" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1217, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1228, + "length": 3, + "value": "600" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1234, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1244, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1257, + "length": 2, + "value": "25" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1265, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1280, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1321, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1330, + "length": 4, + "value": "1280" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1340, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1350, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1359, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1370, + "length": 4, + "value": "2000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1377, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1387, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1400, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1408, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1423, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1465, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1474, + "length": 4, + "value": "1920" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1484, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1494, + "length": 4, + "value": "1080" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1515, + "length": 4, + "value": "3000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1522, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1532, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1545, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1553, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1568, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1610, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1619, + "length": 4, + "value": "2560" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1629, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1639, + "length": 4, + "value": "1440" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1649, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1660, + "length": 4, + "value": "5000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1667, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1677, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1690, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1698, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1713, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1755, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1764, + "length": 4, + "value": "3840" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1774, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1784, + "length": 4, + "value": "2160" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1794, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1805, + "length": 4, + "value": "8000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1812, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1822, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1835, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1843, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1858, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1898, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1907, + "length": 3, + "value": "160" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1916, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1926, + "length": 3, + "value": "120" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1935, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1946, + "length": 2, + "value": "80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1951, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1961, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1974, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1982, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1997, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2036, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2045, + "length": 3, + "value": "240" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2054, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2064, + "length": 3, + "value": "180" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2073, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2084, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2090, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2100, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2113, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2121, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2136, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2175, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2184, + "length": 3, + "value": "320" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2193, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2203, + "length": 3, + "value": "240" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2212, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2223, + "length": 3, + "value": "150" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2229, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2239, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2252, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2260, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2275, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2314, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2323, + "length": 3, + "value": "480" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2332, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2342, + "length": 3, + "value": "360" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2351, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2362, + "length": 3, + "value": "225" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2368, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2378, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2391, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2399, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2414, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2453, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2462, + "length": 3, + "value": "640" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2471, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2481, + "length": 3, + "value": "480" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2490, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2501, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2507, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2517, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2530, + "length": 2, + "value": "25" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2538, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2553, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2592, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2601, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2620, + "length": 3, + "value": "540" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2629, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2640, + "length": 3, + "value": "450" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2646, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2656, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2669, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2677, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2692, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2731, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2740, + "length": 3, + "value": "960" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2749, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2759, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2768, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2779, + "length": 4, + "value": "1500" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2786, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2796, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2809, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2817, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2832, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2873, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2882, + "length": 4, + "value": "1440" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2892, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2902, + "length": 4, + "value": "1080" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2912, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2923, + "length": 4, + "value": "2500" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2930, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2940, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2953, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2961, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2976, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3017, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3026, + "length": 4, + "value": "1920" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3036, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3046, + "length": 4, + "value": "1440" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3056, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3067, + "length": 4, + "value": "3500" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3074, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3084, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3097, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3105, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3120, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3387, + "length": 12, + "value": "\"sampleRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3401, + "length": 5, + "value": "16000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3412, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3423, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 12, + "value": "\"sampleSize\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3445, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3453, + "length": 8, + "value": "\"stereo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3463, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3474, + "length": 5, + "value": "\"dtx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3481, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3491, + "length": 5, + "value": "\"fec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3498, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3508, + "length": 17, + "value": "\"maxPlaybackRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3527, + "length": 5, + "value": "16000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3538, + "length": 12, + "value": "\"packetTime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3552, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3560, + "length": 17, + "value": "\"autoGainControl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3579, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3589, + "length": 18, + "value": "\"echoCancellation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3609, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3619, + "length": 18, + "value": "\"noiseSuppression\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3639, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3649, + "length": 14, + "value": "\"channelCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3665, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3698, + "length": 12, + "value": "\"sampleRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3712, + "length": 5, + "value": "32000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3723, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3734, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3742, + "length": 12, + "value": "\"sampleSize\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3756, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3764, + "length": 8, + "value": "\"stereo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3774, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3785, + "length": 5, + "value": "\"dtx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3792, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3802, + "length": 5, + "value": "\"fec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3809, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3819, + "length": 17, + "value": "\"maxPlaybackRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3838, + "length": 5, + "value": "32000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3849, + "length": 12, + "value": "\"packetTime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3863, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3871, + "length": 17, + "value": "\"autoGainControl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3890, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3900, + "length": 18, + "value": "\"echoCancellation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3920, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3930, + "length": 18, + "value": "\"noiseSuppression\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3950, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3960, + "length": 14, + "value": "\"channelCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3976, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4008, + "length": 12, + "value": "\"sampleRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4022, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4033, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4044, + "length": 2, + "value": "40" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4052, + "length": 12, + "value": "\"sampleSize\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4066, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4074, + "length": 8, + "value": "\"stereo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4084, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4095, + "length": 5, + "value": "\"dtx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4102, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4113, + "length": 5, + "value": "\"fec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4120, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4130, + "length": 17, + "value": "\"maxPlaybackRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4149, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4160, + "length": 12, + "value": "\"packetTime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4174, + "length": 2, + "value": "40" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4182, + "length": 17, + "value": "\"autoGainControl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4201, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4212, + "length": 18, + "value": "\"echoCancellation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4232, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4243, + "length": 18, + "value": "\"noiseSuppression\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4263, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4274, + "length": 14, + "value": "\"channelCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4290, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4323, + "length": 12, + "value": "\"sampleRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4337, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4348, + "length": 12, + "value": "\"sampleSize\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4362, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4370, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4381, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4389, + "length": 8, + "value": "\"stereo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4399, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4409, + "length": 5, + "value": "\"dtx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4416, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4427, + "length": 5, + "value": "\"fec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4434, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4444, + "length": 17, + "value": "\"maxPlaybackRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4463, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4474, + "length": 12, + "value": "\"packetTime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4488, + "length": 2, + "value": "40" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4496, + "length": 17, + "value": "\"autoGainControl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4515, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4526, + "length": 18, + "value": "\"echoCancellation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4546, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4557, + "length": 18, + "value": "\"noiseSuppression\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4577, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4588, + "length": 14, + "value": "\"channelCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4604, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4634, + "length": 12, + "value": "\"sampleRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4648, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4659, + "length": 12, + "value": "\"sampleSize\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4673, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4681, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4692, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4701, + "length": 8, + "value": "\"stereo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4711, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4722, + "length": 5, + "value": "\"dtx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4729, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4740, + "length": 5, + "value": "\"fec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4747, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4757, + "length": 17, + "value": "\"maxPlaybackRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4776, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4787, + "length": 12, + "value": "\"packetTime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4801, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4809, + "length": 17, + "value": "\"autoGainControl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4828, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4839, + "length": 18, + "value": "\"echoCancellation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4859, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4870, + "length": 18, + "value": "\"noiseSuppression\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4890, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4901, + "length": 14, + "value": "\"channelCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4917, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4954, + "length": 12, + "value": "\"sampleRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4968, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4979, + "length": 12, + "value": "\"sampleSize\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4993, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5001, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5012, + "length": 3, + "value": "192" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5021, + "length": 8, + "value": "\"stereo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 5031, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5041, + "length": 5, + "value": "\"dtx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 5048, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5059, + "length": 5, + "value": "\"fec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 5066, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5076, + "length": 17, + "value": "\"maxPlaybackRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5095, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5106, + "length": 12, + "value": "\"packetTime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5120, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5128, + "length": 17, + "value": "\"autoGainControl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 5147, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5158, + "length": 18, + "value": "\"echoCancellation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 5178, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5189, + "length": 18, + "value": "\"noiseSuppression\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 5209, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5220, + "length": 14, + "value": "\"channelCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5236, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5463, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5472, + "length": 3, + "value": "640" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5481, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5491, + "length": 3, + "value": "360" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5500, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5511, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5517, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5527, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5540, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5568, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5577, + "length": 4, + "value": "1280" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5587, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5597, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5606, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5617, + "length": 3, + "value": "400" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5623, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5633, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5646, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5675, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5684, + "length": 4, + "value": "1280" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5694, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5704, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5713, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5724, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5731, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5741, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5754, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5785, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5794, + "length": 4, + "value": "1920" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5804, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5814, + "length": 4, + "value": "1080" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5824, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5835, + "length": 4, + "value": "1500" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5842, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5852, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5865, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5896, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5905, + "length": 4, + "value": "1920" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5915, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5925, + "length": 4, + "value": "1080" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5935, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5946, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5953, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5963, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5976, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 864, + "length": 10, + "value": "\"protocol\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 864, + "length": 10, + "value": "\"protocol\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 1565, + "length": 11, + "value": "\"succeeded\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 1565, + "length": 11, + "value": "\"succeeded\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 1917, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 1939, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 1963, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 1981, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 2005, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 2099, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 2123, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 2141, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 2165, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 2187, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 2404, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2465, + "length": 16, + "value": "\"candidate-pair\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2499, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2529, + "length": 13, + "value": "\"inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2569, + "length": 17, + "value": "\"local-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 14, + "value": "\"media-source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2648, + "length": 14, + "value": "\"outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2690, + "length": 18, + "value": "\"remote-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2737, + "length": 20, + "value": "\"remote-inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2787, + "length": 21, + "value": "\"remote-outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2826, + "length": 7, + "value": "\"track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2465, + "length": 16, + "value": "\"candidate-pair\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2499, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2529, + "length": 13, + "value": "\"inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2569, + "length": 17, + "value": "\"local-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 14, + "value": "\"media-source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2648, + "length": 14, + "value": "\"outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2690, + "length": 18, + "value": "\"remote-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2737, + "length": 20, + "value": "\"remote-inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2787, + "length": 21, + "value": "\"remote-outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2826, + "length": 7, + "value": "\"track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2913, + "length": 16, + "value": "\"candidate-pair\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2955, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2980, + "length": 13, + "value": "\"inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3016, + "length": 17, + "value": "\"local-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3060, + "length": 14, + "value": "\"media-source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3098, + "length": 14, + "value": "\"outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3136, + "length": 18, + "value": "\"remote-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3182, + "length": 20, + "value": "\"remote-inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3231, + "length": 21, + "value": "\"remote-outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3282, + "length": 7, + "value": "\"track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3376, + "length": 16, + "value": "\"candidate-pair\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3410, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3440, + "length": 13, + "value": "\"inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3480, + "length": 17, + "value": "\"local-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3521, + "length": 14, + "value": "\"media-source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3559, + "length": 14, + "value": "\"outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3601, + "length": 18, + "value": "\"remote-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3648, + "length": 20, + "value": "\"remote-inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3698, + "length": 21, + "value": "\"remote-outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3737, + "length": 7, + "value": "\"track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3919, + "length": 7, + "value": "\"track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4008, + "length": 13, + "value": "\"codec_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4023, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4035, + "length": 10, + "value": "\"codec_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 4047, + "length": 105, + "value": "[(\"mime_type\", nil), (\"clock_rate\", nil), (\"sdp_fmtp_line\", nil)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4162, + "length": 20, + "value": "\"delta_jitter_ms_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4184, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4195, + "length": 18, + "value": "\"delta_rtt_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 4215, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4228, + "length": 25, + "value": "\"percent_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4255, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4266, + "length": 18, + "value": "\"delta_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4286, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4297, + "length": 23, + "value": "\"delta_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4322, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4333, + "length": 18, + "value": "\"total_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4353, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4364, + "length": 23, + "value": "\"total_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4389, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4400, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4419, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4430, + "length": 17, + "value": "\"delta_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4449, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4460, + "length": 14, + "value": "\"delta_kbs_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4476, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4487, + "length": 14, + "value": "\"timestamp_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 4503, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4516, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4524, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4536, + "length": 26, + "value": "\"total_concealment_events\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4564, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4575, + "length": 26, + "value": "\"delta_concealment_events\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4603, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4614, + "length": 41, + "value": "\"total_inserted_samples_for_decelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4657, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4668, + "length": 41, + "value": "\"delta_inserted_samples_for_decelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4711, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4722, + "length": 40, + "value": "\"total_removed_samples_for_accelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4764, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4775, + "length": 40, + "value": "\"delta_removed_samples_for_accelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4817, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4828, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4877, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4889, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4901, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4916, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5002, + "length": 14, + "value": "\"codec_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5018, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5030, + "length": 11, + "value": "\"codec_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 5043, + "length": 105, + "value": "[(\"mime_type\", nil), (\"clock_rate\", nil), (\"sdp_fmtp_line\", nil)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5158, + "length": 21, + "value": "\"delta_jitter_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5181, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5192, + "length": 18, + "value": "\"delta_rtt_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 5212, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5225, + "length": 26, + "value": "\"percent_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5253, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5264, + "length": 19, + "value": "\"delta_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5285, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5296, + "length": 24, + "value": "\"delta_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5322, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5333, + "length": 19, + "value": "\"total_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5354, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5365, + "length": 24, + "value": "\"total_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5391, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5402, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5422, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5433, + "length": 18, + "value": "\"delta_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5453, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5464, + "length": 15, + "value": "\"delta_kbs_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5481, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5492, + "length": 15, + "value": "\"timestamp_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 5509, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5522, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5530, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5542, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5592, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5605, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5617, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5633, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5711, + "length": 13, + "value": "\"codec_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5726, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5734, + "length": 9, + "value": "\"size_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 5745, + "length": 77, + "value": "[(\"width\", nil), (\"height\", nil), (\"framerate\", nil)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5828, + "length": 10, + "value": "\"codec_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 5840, + "length": 59, + "value": "[(\"mime_type\", nil), (\"clock_rate\", nil)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5905, + "length": 20, + "value": "\"delta_jitter_ms_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5927, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5934, + "length": 25, + "value": "\"percent_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5961, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5968, + "length": 18, + "value": "\"delta_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5988, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5995, + "length": 23, + "value": "\"delta_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6020, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6027, + "length": 18, + "value": "\"total_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6047, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6054, + "length": 23, + "value": "\"total_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6079, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6086, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6105, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6112, + "length": 17, + "value": "\"delta_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6131, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6138, + "length": 14, + "value": "\"delta_kbs_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6154, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6161, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6169, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6177, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6222, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6234, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6242, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6257, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6341, + "length": 14, + "value": "\"codec_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6357, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6369, + "length": 10, + "value": "\"size_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 6381, + "length": 93, + "value": "[(\"width\", nil), (\"height\", nil), (\"framerate\", nil)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6484, + "length": 11, + "value": "\"codec_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 6497, + "length": 71, + "value": "[(\"mime_type\", nil), (\"clock_rate\", nil)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6578, + "length": 21, + "value": "\"delta_jitter_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6601, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6612, + "length": 18, + "value": "\"delta_rtt_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 6632, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6645, + "length": 26, + "value": "\"percent_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6673, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6684, + "length": 19, + "value": "\"delta_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6705, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6716, + "length": 24, + "value": "\"delta_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6742, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6753, + "length": 19, + "value": "\"total_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6774, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6785, + "length": 24, + "value": "\"total_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6811, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6822, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6842, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6853, + "length": 18, + "value": "\"delta_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6873, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6884, + "length": 15, + "value": "\"delta_kbs_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6901, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6912, + "length": 16, + "value": "\"limitation_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7001, + "length": 19, + "value": "\"resolutionChanges\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 7022, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7043, + "length": 15, + "value": "\"timestamp_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7060, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7073, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7081, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7093, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7143, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7156, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7168, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7184, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7320, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7328, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7340, + "length": 8, + "value": "\"roomId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7350, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7362, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7372, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7384, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 7397, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7408, + "length": 7, + "value": "\"count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 7417, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7428, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7437, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7450, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7459, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7472, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7483, + "length": 43, + "value": "[(\"infrastructure\", 3)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7536, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7544, + "length": 181, + "value": "[(\"delta_kbs_bandwidth_in\", 0), (\"delta_kbs_bandwidth_out\", 0), (\"delta_rtt_connectivity_ms\", 0), (\"total_rtt_connectivity_ms\", 0)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7832, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7843, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7863, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7874, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7894, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7918, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7947, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7967, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7994, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 8026, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 8081, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 8164, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 8322, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 8407, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 8490, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 8648, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/DefaultBaggageBuilder.swift", + "kind": "BooleanLiteral", + "offset": 216, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/DefaultBaggageBuilder.swift", + "kind": "BooleanLiteral", + "offset": 534, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/DefaultLogger.swift", + "kind": "BooleanLiteral", + "offset": 199, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/DefaultLogger.swift", + "kind": "BooleanLiteral", + "offset": 259, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/DefaultLoggerProvider.swift", + "kind": "BooleanLiteral", + "offset": 301, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/DefaultLoggerProvider.swift", + "kind": "BooleanLiteral", + "offset": 374, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/DefaultMeterProvider.swift", + "kind": "BooleanLiteral", + "offset": 298, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/DefaultMeterProvider.swift", + "kind": "StringLiteral", + "offset": 560, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/DefaultMeterProvider.swift", + "kind": "BooleanLiteral", + "offset": 616, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/DefaultMeterProvider.swift", + "kind": "BooleanLiteral", + "offset": 1138, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 3224, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 4470, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 4588, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 4750, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 4862, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 4929, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 4998, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 5069, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 8253, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 8324, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 8389, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 8456, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 8540, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 8609, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 9113, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 9282, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 9648, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 10027, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 11486, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 11865, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 12857, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 13118, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 14635, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 14669, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 14815, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 14848, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 15231, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 16864, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 17394, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 19014, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 22594, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 25469, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27200, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27229, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27257, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27285, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27314, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27342, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27372, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27402, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27429, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27458, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27487, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27518, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27547, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27577, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27605, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27637, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27669, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27699, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27837, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27865, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27893, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27922, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27950, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27980, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28010, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28037, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28066, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28094, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28125, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28154, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28184, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28212, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28244, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28276, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28306, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28336, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28656, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28687, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28718, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28859, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28890, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28921, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 30929, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 31605, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 31751, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 32436, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 32815, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 34085, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 35718, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 38448, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 38949, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 42056, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 42605, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 43539, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 45967, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 46472, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 46987, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 47490, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 48232, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 48801, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 55072, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 55100, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 55131, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 55272, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 55303, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 55337, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 56663, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 57400, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 58165, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 59447, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 60402, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 61522, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 63469, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 66852, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 67389, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 68050, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 68488, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 68990, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 69841, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 69923, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 70546, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71306, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71335, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71362, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71504, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71531, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71565, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71944, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71975, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72006, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72147, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72178, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72209, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72726, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72765, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72804, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72960, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72999, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 73037, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 73905, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 73945, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 73982, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74029, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74069, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74107, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74145, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74182, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74224, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74264, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74422, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74459, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74506, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74546, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74584, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74622, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74659, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74701, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74741, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74780, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 77495, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 78120, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 78750, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 79550, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 80670, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 81613, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 82660, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 83144, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 84485, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 84962, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 85780, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 87238, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 87899, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 87940, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 87976, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 88129, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 88165, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 88198, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 89228, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 89906, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 90353, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 90791, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 93056, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98518, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98548, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98579, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98610, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98756, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98787, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98818, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98855, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99133, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99163, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99190, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99328, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99355, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99384, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99677, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99707, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99736, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99876, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99905, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99936, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100249, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100279, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100311, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100338, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100474, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100506, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100533, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100560, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100856, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100886, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100923, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101064, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101101, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101133, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101422, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101452, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101480, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101628, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101656, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101695, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 104673, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 106036, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 106427, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 109300, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 110178, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 110635, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 111301, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 111884, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 113200, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 113229, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 113257, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 113403, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 113431, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 113461, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 116085, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 116275, + "length": 20, + "value": "\".FileDescriptorSet\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 116352, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 116368, + "length": 6, + "value": "\"file\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 116471, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 116489, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 116906, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117182, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 117396, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 117457, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 117475, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117660, + "length": 22, + "value": "\".FileDescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117739, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117755, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117768, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117784, + "length": 9, + "value": "\"package\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117800, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117816, + "length": 12, + "value": "\"dependency\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117835, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117856, + "length": 19, + "value": "\"public_dependency\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117882, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117903, + "length": 17, + "value": "\"weak_dependency\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117927, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117947, + "length": 14, + "value": "\"message_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117968, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117988, + "length": 11, + "value": "\"enum_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 118006, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 118022, + "length": 9, + "value": "\"service\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 118038, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 118054, + "length": 11, + "value": "\"extension\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 118072, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 118088, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 118104, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 118124, + "length": 18, + "value": "\"source_code_info\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 118149, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 118166, + "length": 8, + "value": "\"syntax\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 118181, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 118198, + "length": 9, + "value": "\"edition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 118311, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 118376, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 118440, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 118508, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 118570, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 118588, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119005, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119087, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119172, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119259, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119348, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119434, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119519, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119608, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119694, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119787, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119880, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119971, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 120056, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 120629, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 120745, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 120872, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 120998, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121118, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121236, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121362, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121475, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121599, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121737, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121868, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121980, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 122097, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122322, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122373, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122428, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122495, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122558, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122615, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122666, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122715, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122772, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122823, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122888, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122937, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122988, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 123049, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 123067, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123248, + "length": 18, + "value": "\".DescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123323, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123339, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123352, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123368, + "length": 7, + "value": "\"field\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123382, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123398, + "length": 11, + "value": "\"extension\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123416, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123436, + "length": 13, + "value": "\"nested_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123456, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123476, + "length": 11, + "value": "\"enum_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123494, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123514, + "length": 17, + "value": "\"extension_range\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123538, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123558, + "length": 12, + "value": "\"oneof_decl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123577, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123593, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123609, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123629, + "length": 16, + "value": "\"reserved_range\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123652, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123673, + "length": 15, + "value": "\"reserved_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 123786, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 123854, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 123921, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 123986, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 124057, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 124123, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 124185, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 124203, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 124620, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 124702, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 124785, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 124873, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 124959, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 125051, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 125140, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 125226, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 125313, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 125404, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 125981, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126099, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126223, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126343, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126475, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126601, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126714, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126840, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126970, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 127097, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127310, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127355, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127412, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127467, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127518, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127581, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127634, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127685, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127746, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127805, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127866, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127884, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 128111, + "length": 17, + "value": "\".ExtensionRange\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 128185, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 128201, + "length": 7, + "value": "\"start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 128215, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 128231, + "length": 5, + "value": "\"end\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 128243, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 128259, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 128366, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 128384, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 128801, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 128883, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 128963, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 129536, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 129647, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 129764, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 130012, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 130055, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 130106, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 130167, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 130185, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 130411, + "length": 16, + "value": "\".ReservedRange\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 130484, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 130500, + "length": 7, + "value": "\"start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 130514, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 130530, + "length": 5, + "value": "\"end\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 130950, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 131032, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 131599, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 131710, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 131956, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 131999, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 132060, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 132078, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 132265, + "length": 24, + "value": "\".ExtensionRangeOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 132346, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 132368, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 132397, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 132413, + "length": 13, + "value": "\"declaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 132433, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 132450, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 132467, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 132483, + "length": 14, + "value": "\"verification\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 132601, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 132677, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 132740, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 132758, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 133175, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 133264, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 133352, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 133440, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 133539, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 133546, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 134247, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 134362, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 134480, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 134627, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 134722, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 134733, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 134987, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 135044, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 135097, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 135158, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 135219, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 135314, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 135332, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 135489, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 135505, + "length": 13, + "value": "\"DECLARATION\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 135525, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 135541, + "length": 12, + "value": "\"UNVERIFIED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 135787, + "length": 14, + "value": "\".Declaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 135858, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 135874, + "length": 8, + "value": "\"number\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 135889, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 135909, + "length": 11, + "value": "\"full_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 135927, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 135943, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 135956, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 135972, + "length": 10, + "value": "\"reserved\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 135989, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 136005, + "length": 10, + "value": "\"repeated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 136430, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 136513, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 136599, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 136681, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 136765, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 137337, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 137454, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 137567, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 137682, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 137797, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 138053, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 138106, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 138151, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 138204, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 138257, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 138318, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 138336, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138522, + "length": 23, + "value": "\".FieldDescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138602, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138618, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138631, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138647, + "length": 8, + "value": "\"number\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138662, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138678, + "length": 7, + "value": "\"label\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138692, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138708, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138721, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138741, + "length": 11, + "value": "\"type_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138759, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138775, + "length": 10, + "value": "\"extendee\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138792, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138812, + "length": 15, + "value": "\"default_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138834, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138854, + "length": 13, + "value": "\"oneof_index\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138874, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138895, + "length": 11, + "value": "\"json_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138913, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138929, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138945, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138966, + "length": 17, + "value": "\"proto3_optional\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 140350, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 140370, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 140900, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 140988, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141080, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141169, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141256, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141342, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141434, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141530, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141622, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141715, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141808, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 142488, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 142615, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 142739, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 142861, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 142982, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 143109, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 143240, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 143367, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 143495, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 143622, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 143754, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144241, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144307, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144371, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144433, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144503, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144573, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144651, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144725, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144795, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144863, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144945, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144967, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 145015, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 145082, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 145100, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145247, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145263, + "length": 13, + "value": "\"TYPE_DOUBLE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145283, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145299, + "length": 12, + "value": "\"TYPE_FLOAT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145318, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145334, + "length": 12, + "value": "\"TYPE_INT64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145353, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145369, + "length": 13, + "value": "\"TYPE_UINT64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145389, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145405, + "length": 12, + "value": "\"TYPE_INT32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145424, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145440, + "length": 14, + "value": "\"TYPE_FIXED64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145461, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145477, + "length": 14, + "value": "\"TYPE_FIXED32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145498, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145514, + "length": 11, + "value": "\"TYPE_BOOL\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145532, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145548, + "length": 13, + "value": "\"TYPE_STRING\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145568, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145585, + "length": 12, + "value": "\"TYPE_GROUP\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145604, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145621, + "length": 14, + "value": "\"TYPE_MESSAGE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145642, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145659, + "length": 12, + "value": "\"TYPE_BYTES\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145678, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145695, + "length": 13, + "value": "\"TYPE_UINT32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145715, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145732, + "length": 11, + "value": "\"TYPE_ENUM\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145750, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145767, + "length": 15, + "value": "\"TYPE_SFIXED32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145789, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145806, + "length": 15, + "value": "\"TYPE_SFIXED64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145828, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145845, + "length": 13, + "value": "\"TYPE_SINT32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145865, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145882, + "length": 13, + "value": "\"TYPE_SINT64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 146037, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 146053, + "length": 16, + "value": "\"LABEL_OPTIONAL\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 146076, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 146092, + "length": 16, + "value": "\"LABEL_REQUIRED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 146115, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 146131, + "length": 16, + "value": "\"LABEL_REPEATED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 146331, + "length": 23, + "value": "\".OneofDescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 146411, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 146427, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 146440, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 146456, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 146563, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 146581, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 146998, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 147080, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 147653, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 147770, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 147996, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 148047, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 148108, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 148126, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 148311, + "length": 22, + "value": "\".EnumDescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 148390, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 148406, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 148419, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 148435, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 148449, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 148465, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 148481, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 148501, + "length": 16, + "value": "\"reserved_range\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 148524, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 148544, + "length": 15, + "value": "\"reserved_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 148657, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 148719, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 148737, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 149154, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 149236, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 149319, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 149405, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 149496, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 150072, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 150190, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 150303, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 150437, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 150564, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 150784, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 150829, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 150880, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 150941, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 151000, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 151061, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 151079, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 151317, + "length": 20, + "value": "\".EnumReservedRange\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 151394, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 151410, + "length": 7, + "value": "\"start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 151424, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 151440, + "length": 5, + "value": "\"end\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 151860, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 151942, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 152509, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 152620, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 152882, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 152925, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 152986, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 153004, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 153194, + "length": 27, + "value": "\".EnumValueDescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 153278, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 153294, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 153307, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 153323, + "length": 8, + "value": "\"number\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 153338, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 153354, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 153461, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 153479, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 153896, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 153978, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 154061, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 154634, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 154748, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 154865, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155099, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155148, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155199, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155260, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155278, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 155466, + "length": 25, + "value": "\".ServiceDescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 155548, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 155564, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 155577, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 155593, + "length": 8, + "value": "\"method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 155608, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 155624, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155732, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155794, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155812, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 156229, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 156311, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 156395, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 156968, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 157088, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 157201, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 157431, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 157478, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 157529, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 157590, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 157608, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 157795, + "length": 24, + "value": "\".MethodDescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 157876, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 157892, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 157905, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 157925, + "length": 12, + "value": "\"input_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 157944, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 157964, + "length": 13, + "value": "\"output_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 157984, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 158000, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 158016, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 158036, + "length": 18, + "value": "\"client_streaming\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 158061, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 158081, + "length": 18, + "value": "\"server_streaming\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 158197, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 158215, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 158632, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 158714, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 158801, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 158889, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 158975, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 159066, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 159644, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 159762, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 159881, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 159998, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 160120, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 160242, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160470, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160525, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160582, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160633, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160700, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160767, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160828, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160846, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161023, + "length": 14, + "value": "\".FileOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161094, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161114, + "length": 14, + "value": "\"java_package\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161135, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161155, + "length": 22, + "value": "\"java_outer_classname\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161184, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161205, + "length": 21, + "value": "\"java_multiple_files\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161233, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161254, + "length": 31, + "value": "\"java_generate_equals_and_hash\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161292, + "length": 2, + "value": "27" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161313, + "length": 24, + "value": "\"java_string_check_utf8\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161344, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161364, + "length": 14, + "value": "\"optimize_for\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161385, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161406, + "length": 12, + "value": "\"go_package\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161425, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161446, + "length": 21, + "value": "\"cc_generic_services\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161474, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161495, + "length": 23, + "value": "\"java_generic_services\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161525, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161546, + "length": 21, + "value": "\"py_generic_services\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161574, + "length": 2, + "value": "42" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161595, + "length": 22, + "value": "\"php_generic_services\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161624, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161641, + "length": 12, + "value": "\"deprecated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161660, + "length": 2, + "value": "31" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161681, + "length": 18, + "value": "\"cc_enable_arenas\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161706, + "length": 2, + "value": "36" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161727, + "length": 19, + "value": "\"objc_class_prefix\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161753, + "length": 2, + "value": "37" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161774, + "length": 18, + "value": "\"csharp_namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161799, + "length": 2, + "value": "39" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161820, + "length": 14, + "value": "\"swift_prefix\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161841, + "length": 2, + "value": "40" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161862, + "length": 18, + "value": "\"php_class_prefix\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161887, + "length": 2, + "value": "41" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161908, + "length": 15, + "value": "\"php_namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161930, + "length": 2, + "value": "44" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161951, + "length": 24, + "value": "\"php_metadata_namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161982, + "length": 2, + "value": "45" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 162003, + "length": 14, + "value": "\"ruby_package\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 162024, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 162041, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 162058, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 162080, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 163088, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 164584, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 164726, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 164809, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 164829, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 165359, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 165454, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 165556, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 165649, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 165749, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 165843, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 165943, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166045, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166145, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166253, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166346, + "length": 2, + "value": "27" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166448, + "length": 2, + "value": "31" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166545, + "length": 2, + "value": "36" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166645, + "length": 2, + "value": "37" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166745, + "length": 2, + "value": "39" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166841, + "length": 2, + "value": "40" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166940, + "length": 2, + "value": "41" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 167037, + "length": 2, + "value": "42" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 167138, + "length": 2, + "value": "44" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 167243, + "length": 2, + "value": "45" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 167339, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 167433, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 167539, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 167546, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 168327, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 168464, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 168592, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 168726, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 168855, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 168990, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 169127, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 169262, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 169405, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 169533, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 169670, + "length": 2, + "value": "27" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 169802, + "length": 2, + "value": "31" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 169937, + "length": 2, + "value": "36" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 170072, + "length": 2, + "value": "37" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 170203, + "length": 2, + "value": "39" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 170337, + "length": 2, + "value": "40" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 170469, + "length": 2, + "value": "41" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 170605, + "length": 2, + "value": "42" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 170745, + "length": 2, + "value": "44" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 170876, + "length": 2, + "value": "45" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 171005, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 171168, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 171267, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 171278, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 171756, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 171846, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 171934, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172038, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172130, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172206, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172278, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172366, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172458, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172546, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172636, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172710, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172792, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172876, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172960, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173036, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173118, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173196, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173290, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173366, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173436, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173528, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173550, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173598, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173665, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173760, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173778, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 173920, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 173936, + "length": 7, + "value": "\"SPEED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 173950, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 173966, + "length": 11, + "value": "\"CODE_SIZE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 173984, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174000, + "length": 14, + "value": "\"LITE_RUNTIME\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174192, + "length": 17, + "value": "\".MessageOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 174266, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174286, + "length": 25, + "value": "\"message_set_wire_format\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 174318, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174338, + "length": 33, + "value": "\"no_standard_descriptor_accessor\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 174378, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174394, + "length": 12, + "value": "\"deprecated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 174413, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174433, + "length": 11, + "value": "\"map_entry\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 174451, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174472, + "length": 40, + "value": "\"deprecated_legacy_json_field_conflicts\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 174519, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174536, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 174553, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174575, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 174701, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 174764, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 174840, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 174858, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175275, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175371, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175475, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175561, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175645, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175756, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175844, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175943, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175950, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 176641, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 176776, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 176893, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 177008, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 177149, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 177268, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 177415, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 177510, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 177521, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 177765, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 177858, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 177915, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 177968, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 178073, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 178126, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 178199, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 178260, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 178355, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 178373, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178551, + "length": 15, + "value": "\".FieldOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178623, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178639, + "length": 7, + "value": "\"ctype\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178653, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178669, + "length": 8, + "value": "\"packed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178684, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178700, + "length": 8, + "value": "\"jstype\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178715, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178731, + "length": 6, + "value": "\"lazy\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178744, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178765, + "length": 17, + "value": "\"unverified_lazy\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178789, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178805, + "length": 12, + "value": "\"deprecated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178824, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178841, + "length": 6, + "value": "\"weak\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178854, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178875, + "length": 14, + "value": "\"debug_redact\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178896, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178913, + "length": 11, + "value": "\"retention\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178931, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178948, + "length": 9, + "value": "\"targets\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178964, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178985, + "length": 18, + "value": "\"edition_defaults\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 179010, + "length": 2, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 179027, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 179044, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 179066, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 179192, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 179255, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 179331, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 179349, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 179766, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 179847, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 179929, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180015, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180095, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180177, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180258, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180349, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180437, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180523, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180606, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180700, + "length": 2, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180788, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180887, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180894, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 181568, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 181681, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 181798, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 181909, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182022, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182133, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182255, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182374, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182491, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182611, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182746, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182861, + "length": 2, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 183008, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 183103, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 183114, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183324, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183373, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183422, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183467, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183532, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183589, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183634, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183693, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183748, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183797, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183862, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183915, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183988, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 184049, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 184144, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 184162, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184298, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184314, + "length": 8, + "value": "\"STRING\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184329, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184345, + "length": 6, + "value": "\"CORD\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184358, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184374, + "length": 14, + "value": "\"STRING_PIECE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184523, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184539, + "length": 11, + "value": "\"JS_NORMAL\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184557, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184573, + "length": 11, + "value": "\"JS_STRING\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184591, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184607, + "length": 11, + "value": "\"JS_NUMBER\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184762, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184778, + "length": 19, + "value": "\"RETENTION_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184804, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184820, + "length": 19, + "value": "\"RETENTION_RUNTIME\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184846, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184862, + "length": 18, + "value": "\"RETENTION_SOURCE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185025, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185041, + "length": 21, + "value": "\"TARGET_TYPE_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185069, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185085, + "length": 18, + "value": "\"TARGET_TYPE_FILE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185110, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185126, + "length": 29, + "value": "\"TARGET_TYPE_EXTENSION_RANGE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185162, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185178, + "length": 21, + "value": "\"TARGET_TYPE_MESSAGE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185206, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185222, + "length": 19, + "value": "\"TARGET_TYPE_FIELD\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185248, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185264, + "length": 19, + "value": "\"TARGET_TYPE_ONEOF\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185290, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185306, + "length": 18, + "value": "\"TARGET_TYPE_ENUM\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185331, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185347, + "length": 24, + "value": "\"TARGET_TYPE_ENUM_ENTRY\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185378, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185394, + "length": 21, + "value": "\"TARGET_TYPE_SERVICE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185422, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185438, + "length": 20, + "value": "\"TARGET_TYPE_METHOD\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185677, + "length": 17, + "value": "\".EditionDefault\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185751, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185767, + "length": 9, + "value": "\"edition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185783, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185799, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 186221, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 186306, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 186879, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 186993, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187239, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187286, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187347, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187365, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 187543, + "length": 15, + "value": "\".OneofOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 187615, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 187631, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 187648, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 187670, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187796, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187859, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187935, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187953, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 188370, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 188457, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 188556, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 188563, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 189243, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 189389, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 189484, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 189495, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 189711, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 189784, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 189845, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 189940, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 189958, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 190135, + "length": 14, + "value": "\".EnumOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 190206, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 190226, + "length": 13, + "value": "\"allow_alias\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 190246, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 190262, + "length": 12, + "value": "\"deprecated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 190281, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 190301, + "length": 40, + "value": "\"deprecated_legacy_json_field_conflicts\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 190348, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 190364, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 190381, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 190403, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 190529, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 190592, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 190668, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 190686, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 191103, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 191189, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 191275, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 191385, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 191472, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 191571, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 191578, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 192256, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 192373, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 192514, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 192632, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 192778, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 192873, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 192884, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193102, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193159, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193264, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193317, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193390, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193451, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193546, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193564, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 193746, + "length": 19, + "value": "\".EnumValueOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 193822, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 193838, + "length": 12, + "value": "\"deprecated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 193857, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 193873, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 193890, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 193910, + "length": 14, + "value": "\"debug_redact\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 193931, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 193953, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 194079, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 194142, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 194218, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 194236, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 194653, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 194739, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 194826, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 194913, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 195012, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 195019, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 195702, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 195820, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 195938, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 196084, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 196179, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 196190, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 196418, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 196471, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 196530, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 196603, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 196664, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 196759, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 196777, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 196957, + "length": 17, + "value": "\".ServiceOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 197031, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 197048, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 197065, + "length": 2, + "value": "33" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 197082, + "length": 12, + "value": "\"deprecated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 197101, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 197123, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 197249, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 197312, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 197388, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 197406, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 197823, + "length": 2, + "value": "33" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 197910, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 197998, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 198097, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 198104, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 198785, + "length": 2, + "value": "33" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 198904, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 199051, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 199146, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 199157, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 199377, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 199434, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 199507, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 199568, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 199663, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 199681, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 199860, + "length": 16, + "value": "\".MethodOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 199933, + "length": 2, + "value": "33" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 199950, + "length": 12, + "value": "\"deprecated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 199969, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 199990, + "length": 19, + "value": "\"idempotency_level\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 200016, + "length": 2, + "value": "35" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 200033, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 200050, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 200072, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 200198, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 200261, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 200337, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 200355, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 200772, + "length": 2, + "value": "33" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 200859, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 200952, + "length": 2, + "value": "35" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 201040, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 201139, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 201146, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 201826, + "length": 2, + "value": "33" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 201950, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 202069, + "length": 2, + "value": "35" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 202216, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 202311, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 202322, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 202544, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 202613, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 202666, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 202739, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 202800, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 202895, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 202913, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203061, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203077, + "length": 21, + "value": "\"IDEMPOTENCY_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203105, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203121, + "length": 17, + "value": "\"NO_SIDE_EFFECTS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203145, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203161, + "length": 12, + "value": "\"IDEMPOTENT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203356, + "length": 22, + "value": "\".UninterpretedOption\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203435, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203451, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203464, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203484, + "length": 18, + "value": "\"identifier_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203509, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203529, + "length": 20, + "value": "\"positive_int_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203556, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203576, + "length": 20, + "value": "\"negative_int_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203603, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203623, + "length": 14, + "value": "\"double_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203644, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203664, + "length": 14, + "value": "\"string_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203685, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203705, + "length": 17, + "value": "\"aggregate_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 203819, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 203837, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 204254, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 204336, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 204429, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 204523, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 204616, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 204705, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 204793, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 205375, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 205495, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 205620, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 205744, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 205864, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 205983, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 206106, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206328, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206395, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206464, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206533, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206592, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206651, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206716, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206777, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206795, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 207024, + "length": 11, + "value": "\".NamePart\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 207092, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 207112, + "length": 11, + "value": "\"name_part\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 207130, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 207150, + "length": 14, + "value": "\"is_extension\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 207244, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 207291, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 207309, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 207726, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 207812, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 208390, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 208508, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 208758, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 208817, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 208878, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 208896, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209072, + "length": 13, + "value": "\".FeatureSet\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 209142, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209162, + "length": 16, + "value": "\"field_presence\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 209185, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209205, + "length": 11, + "value": "\"enum_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 209223, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209243, + "length": 25, + "value": "\"repeated_field_encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 209275, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209295, + "length": 25, + "value": "\"string_field_validation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 209327, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209347, + "length": 18, + "value": "\"message_encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 209372, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209392, + "length": 13, + "value": "\"json_format\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 209412, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209434, + "length": 14, + "value": "\"raw_features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 210746, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 210891, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 210911, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 211441, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 211536, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 211626, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 211729, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 211832, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 211929, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 212021, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 212119, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 212126, + "length": 4, + "value": "1002" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 212132, + "length": 4, + "value": "9995" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 212139, + "length": 5, + "value": "10000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 212915, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213040, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213178, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213316, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213448, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213575, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213706, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213809, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213820, + "length": 5, + "value": "10000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214296, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214366, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214462, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214558, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214642, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214716, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214792, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214814, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214862, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214929, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 215024, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 215042, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215184, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215200, + "length": 24, + "value": "\"FIELD_PRESENCE_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215231, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215247, + "length": 10, + "value": "\"EXPLICIT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215264, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215280, + "length": 10, + "value": "\"IMPLICIT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215297, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215313, + "length": 17, + "value": "\"LEGACY_REQUIRED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215465, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215481, + "length": 19, + "value": "\"ENUM_TYPE_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215507, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215523, + "length": 6, + "value": "\"OPEN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215536, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215552, + "length": 8, + "value": "\"CLOSED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215708, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215724, + "length": 33, + "value": "\"REPEATED_FIELD_ENCODING_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215764, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215780, + "length": 8, + "value": "\"PACKED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215795, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215811, + "length": 10, + "value": "\"EXPANDED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215969, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215985, + "length": 33, + "value": "\"STRING_FIELD_VALIDATION_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216025, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216041, + "length": 11, + "value": "\"MANDATORY\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216059, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216075, + "length": 6, + "value": "\"HINT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216088, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216104, + "length": 6, + "value": "\"NONE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216252, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216268, + "length": 26, + "value": "\"MESSAGE_ENCODING_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216301, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216317, + "length": 17, + "value": "\"LENGTH_PREFIXED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216341, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216357, + "length": 11, + "value": "\"DELIMITED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216505, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216521, + "length": 21, + "value": "\"JSON_FORMAT_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216549, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216565, + "length": 7, + "value": "\"ALLOW\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216579, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216595, + "length": 20, + "value": "\"LEGACY_BEST_EFFORT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216793, + "length": 17, + "value": "\".SourceCodeInfo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216867, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216883, + "length": 10, + "value": "\"location\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 217308, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 217596, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 217812, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 217873, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 217891, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 218110, + "length": 11, + "value": "\".Location\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218178, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 218194, + "length": 6, + "value": "\"path\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218207, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 218223, + "length": 6, + "value": "\"span\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218236, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 218256, + "length": 18, + "value": "\"leading_comments\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218281, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 218301, + "length": 19, + "value": "\"trailing_comments\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218327, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 218347, + "length": 27, + "value": "\"leading_detached_comments\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218789, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218869, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218949, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 219042, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 219136, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 219722, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 219830, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 219950, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 220075, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 220228, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 220454, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 220497, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 220564, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 220633, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 220714, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 220775, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 220793, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 220976, + "length": 20, + "value": "\".GeneratedCodeInfo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 221053, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 221069, + "length": 12, + "value": "\"annotation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 221496, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 221790, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 222016, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 222077, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 222095, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 222322, + "length": 13, + "value": "\".Annotation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 222392, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 222408, + "length": 6, + "value": "\"path\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 222421, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 222441, + "length": 13, + "value": "\"source_file\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 222461, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 222477, + "length": 7, + "value": "\"begin\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 222491, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 222507, + "length": 5, + "value": "\"end\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 222519, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 222535, + "length": 10, + "value": "\"semantic\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 222960, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 223040, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 223128, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 223210, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 223290, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 223860, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 223975, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 224088, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 224199, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 224314, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 224554, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 224611, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 224658, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 224701, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 224754, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 224815, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 224833, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 224988, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 225004, + "length": 6, + "value": "\"NONE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 225017, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 225033, + "length": 5, + "value": "\"SET\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 225045, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 225061, + "length": 7, + "value": "\"ALIAS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 214, + "length": 28, + "value": "\"CFBundleShortVersionString\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 456, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 593, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 696, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 743, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 943, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1049, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1071, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1337, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "IntegerLiteral", + "offset": 1429, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1653, + "length": 9, + "value": "\"sdkType\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1664, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1683, + "length": 12, + "value": "\"sdkVersion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1722, + "length": 10, + "value": "\"platform\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1734, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1753, + "length": 17, + "value": "\"deviceUserAgent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1790, + "length": 7, + "value": "\"model\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1799, + "length": 25, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1823, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1876, + "length": 11, + "value": "\"osVersion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 497, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 576, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 649, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 678, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1511, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1530, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1591, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1668, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1695, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1739, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1768, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 2127, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 2358, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 2563, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 2600, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "StringLiteral", + "offset": 274, + "length": 6, + "value": "\"VideoSDKRTC.Handle\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "StringLiteral", + "offset": 3082, + "length": 40, + "value": "\"This aggregator does not support diff.\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "StringLiteral", + "offset": 3267, + "length": 43, + "value": "\"This aggregator does not support toPoint.\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/DoubleGaugeBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 442, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/DoubleGaugeBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 473, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/DoubleHistogramMeterBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 822, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/DoubleHistogramMeterBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 845, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleLastValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1455, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleLastValueAggregator.swift", + "kind": "FloatLiteral", + "offset": 1708, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleLastValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1835, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/DoubleParser.swift", + "kind": "IntegerLiteral", + "offset": 1062, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/DoubleParser.swift", + "kind": "IntegerLiteral", + "offset": 1569, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/DoubleParser.swift", + "kind": "IntegerLiteral", + "offset": 1703, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/Internal\/DoublePointData.swift", + "kind": "StringLiteral", + "offset": 117, + "length": 15, + "value": "\"VideoSDKRTC.DoublePointData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1614, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleSumAggregator.swift", + "kind": "FloatLiteral", + "offset": 1865, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1989, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleSumAggregator.swift", + "kind": "StringLiteral", + "offset": 117, + "length": 19, + "value": "\"VideoSDKRTC.DoubleSumAggregator\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DropAggregation.swift", + "kind": "BooleanLiteral", + "offset": 463, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DropAggregator.swift", + "kind": "IntegerLiteral", + "offset": 228, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DropAggregator.swift", + "kind": "IntegerLiteral", + "offset": 246, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 5180, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 5614, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "StringLiteral", + "offset": 5947, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "StringLiteral", + "offset": 6128, + "length": 11, + "value": "\".Duration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 6196, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "StringLiteral", + "offset": 6212, + "length": 9, + "value": "\"seconds\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 6228, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "StringLiteral", + "offset": 6244, + "length": 7, + "value": "\"nanos\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 6666, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 6749, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 6944, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 7024, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 7054, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 7132, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "BooleanLiteral", + "offset": 7334, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "BooleanLiteral", + "offset": 7379, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "BooleanLiteral", + "offset": 7440, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "BooleanLiteral", + "offset": 7458, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/empty.pb.swift", + "kind": "StringLiteral", + "offset": 3336, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/empty.pb.swift", + "kind": "StringLiteral", + "offset": 3514, + "length": 8, + "value": "\".Empty\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/empty.pb.swift", + "kind": "BooleanLiteral", + "offset": 3976, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/empty.pb.swift", + "kind": "BooleanLiteral", + "offset": 3994, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/EmptyMetricStorage.swift", + "kind": "StringLiteral", + "offset": 496, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/EmptyMetricStorage.swift", + "kind": "StringLiteral", + "offset": 513, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/EmptyMetricStorage.swift", + "kind": "StringLiteral", + "offset": 523, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/EmptyMetricStorage.swift", + "kind": "BooleanLiteral", + "offset": 762, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/EntryKey.swift", + "kind": "IntegerLiteral", + "offset": 566, + "length": 3, + "value": "255" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/EntryKey.swift", + "kind": "StringLiteral", + "offset": 642, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/EntryKey.swift", + "kind": "IntegerLiteral", + "offset": 1342, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/EntryMetadata.swift", + "kind": "IntegerLiteral", + "offset": 348, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/EntryValue.swift", + "kind": "IntegerLiteral", + "offset": 380, + "length": 3, + "value": "255" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/EntryValue.swift", + "kind": "StringLiteral", + "offset": 464, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Propagation\/EnvironmentContextPropagator.swift", + "kind": "StringLiteral", + "offset": 305, + "length": 13, + "value": "\"TRACEPARENT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Propagation\/EnvironmentContextPropagator.swift", + "kind": "StringLiteral", + "offset": 347, + "length": 12, + "value": "\"TRACESTATE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Propagation\/EnvironmentContextPropagator.swift", + "kind": "StringLiteral", + "offset": 821, + "length": 13, + "value": "\"traceparent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Propagation\/EnvironmentContextPropagator.swift", + "kind": "StringLiteral", + "offset": 906, + "length": 12, + "value": "\"tracestate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Propagation\/EnvironmentContextPropagator.swift", + "kind": "StringLiteral", + "offset": 1089, + "length": 13, + "value": "\"traceparent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Propagation\/EnvironmentContextPropagator.swift", + "kind": "StringLiteral", + "offset": 1175, + "length": 12, + "value": "\"tracestate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "StringLiteral", + "offset": 281, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "StringLiteral", + "offset": 343, + "length": 3, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "StringLiteral", + "offset": 621, + "length": 28, + "value": "\"OTEL_EXPORTER_OTLP_HEADERS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "StringLiteral", + "offset": 868, + "length": 54, + "value": "\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "StringLiteral", + "offset": 971, + "length": 12, + "value": "\"0123456789\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "StringLiteral", + "offset": 1034, + "length": 17, + "value": "\"!#$%&'*+-.^_`|~\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "IntegerLiteral", + "offset": 1308, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "IntegerLiteral", + "offset": 1329, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "StringLiteral", + "offset": 1385, + "length": 9, + "value": "\"^\"|\"$\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "IntegerLiteral", + "offset": 2164, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "IntegerLiteral", + "offset": 2234, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "IntegerLiteral", + "offset": 2357, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "IntegerLiteral", + "offset": 2535, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/EnvVarResource.swift", + "kind": "StringLiteral", + "offset": 302, + "length": 26, + "value": "\"OTEL_RESOURCE_ATTRIBUTES\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/EnvVarResource.swift", + "kind": "StringLiteral", + "offset": 382, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/EnvVarResource.swift", + "kind": "StringLiteral", + "offset": 444, + "length": 3, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/EnvVarResource.swift", + "kind": "IntegerLiteral", + "offset": 2116, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/EnvVarResource.swift", + "kind": "IntegerLiteral", + "offset": 2185, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/EnvVarResource.swift", + "kind": "IntegerLiteral", + "offset": 2277, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/EnvVarResource.swift", + "kind": "StringLiteral", + "offset": 2330, + "length": 9, + "value": "\"^\"|\"$\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/ExemplarData.swift", + "kind": "StringLiteral", + "offset": 936, + "length": 18, + "value": "\"VideoSDKRTC.DoubleExemplarData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/ExemplarData.swift", + "kind": "StringLiteral", + "offset": 1489, + "length": 16, + "value": "\"VideoSDKRTC.LongExemplarData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarFilter.swift", + "kind": "BooleanLiteral", + "offset": 493, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarFilter.swift", + "kind": "BooleanLiteral", + "offset": 625, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarFilter.swift", + "kind": "BooleanLiteral", + "offset": 823, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarFilter.swift", + "kind": "BooleanLiteral", + "offset": 952, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "BooleanLiteral", + "offset": 1422, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 1770, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 2110, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "BooleanLiteral", + "offset": 2232, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 2515, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "BooleanLiteral", + "offset": 2639, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "BooleanLiteral", + "offset": 3089, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "StringLiteral", + "offset": 1177, + "length": 27, + "value": "\"VideoSDKRTC.FixedSizedExemplarReservoir\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 4141, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 4567, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 4692, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 4754, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 4766, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 4798, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 4899, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "StringLiteral", + "offset": 3140, + "length": 33, + "value": "\"VideoSDKRTC.RandomFixedSizedExemplarReservoir\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/ExplicitBucketHistogramAggregation.swift", + "kind": "Array", + "offset": 233, + "length": 70, + "value": "[0, 5, 10, 25, 50, 75, 100, 250, 500, 750, 1000, 2500, 5000, 7500]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/ExplicitBucketHistogramAggregation.swift", + "kind": "BooleanLiteral", + "offset": 1155, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/ExplicitBucketHistogramAggregation.swift", + "kind": "BooleanLiteral", + "offset": 1196, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "BooleanLiteral", + "offset": 1753, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "Array", + "offset": 4799, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "IntegerLiteral", + "offset": 5004, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "Array", + "offset": 6496, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "IntegerLiteral", + "offset": 6701, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "Array", + "offset": 9764, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "IntegerLiteral", + "offset": 9968, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "Array", + "offset": 11507, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "IntegerLiteral", + "offset": 11711, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "Array", + "offset": 14910, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "IntegerLiteral", + "offset": 15117, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "Array", + "offset": 18488, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "IntegerLiteral", + "offset": 18693, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "BooleanLiteral", + "offset": 1099, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "BooleanLiteral", + "offset": 1240, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "BooleanLiteral", + "offset": 1307, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "BooleanLiteral", + "offset": 1353, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "BooleanLiteral", + "offset": 1384, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "IntegerLiteral", + "offset": 1731, + "length": 8, + "value": "16777619" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "BooleanLiteral", + "offset": 2814, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "BooleanLiteral", + "offset": 2845, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 279, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 365, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 370, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 476, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 525, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 629, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 679, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 708, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 811, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 872, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 906, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 951, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "FloatLiteral", + "offset": 973, + "length": 5, + "value": "0.008" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 981, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 1007, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 1072, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "FloatLiteral", + "offset": 1090, + "length": 5, + "value": "0.008" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 1098, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 1124, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1152, + "length": 23, + "value": "\"total_KBytes_received\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 19, + "value": "\"total_KBytes_sent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1252, + "length": 23, + "value": "\"delta_KBytes_received\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1301, + "length": 19, + "value": "\"delta_KBytes_sent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1342, + "length": 20, + "value": "\"kbs_speed_received\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1390, + "length": 16, + "value": "\"kbs_speed_sent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 1688, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1822, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1829, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1845, + "length": 10, + "value": "\"totalRTT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1875, + "length": 27, + "value": "\"total_rtt_connectivity_ms\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 1915, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1930, + "length": 22, + "value": "\"totalRTTMeasurements\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1972, + "length": 32, + "value": "\"total_rtt_connectivity_measure\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 2017, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 2061, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 2140, + "length": 27, + "value": "\"total_rtt_connectivity_ms\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 2180, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 2250, + "length": 32, + "value": "\"total_rtt_connectivity_measure\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 2295, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 2300, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 2462, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 2707, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 2734, + "length": 10, + "value": "\"totalRTT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 2771, + "length": 22, + "value": "\"totalRTTMeasurements\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 2995, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 3033, + "length": 7, + "value": "\"relay\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 3058, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 3132, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 3306, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 3311, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 3412, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 3417, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 3444, + "length": 24, + "value": "\"kbs_incoming_bandwidth\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 3500, + "length": 24, + "value": "\"kbs_outgoing_bandwidth\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 3755, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 3833, + "length": 9, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 3841, + "length": 9, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 3847, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 3890, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 3903, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 4157, + "length": 9, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 4165, + "length": 9, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 4171, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 4214, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 4227, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 4626, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 4836, + "length": 20, + "value": "\"percentPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 4876, + "length": 25, + "value": "\"percent_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 4906, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 4921, + "length": 17, + "value": "\"packetsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 4958, + "length": 18, + "value": "\"total_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 4981, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 4996, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 5029, + "length": 23, + "value": "\"total_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5057, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 5072, + "length": 15, + "value": "\"bytesReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 5107, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5129, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5230, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5302, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 5364, + "length": 23, + "value": "\"total_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5400, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 5471, + "length": 18, + "value": "\"total_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5502, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 5572, + "length": 18, + "value": "\"total_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5603, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5644, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "FloatLiteral", + "offset": 5719, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5802, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5807, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 5878, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5911, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 6015, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6064, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 6189, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 6223, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "FloatLiteral", + "offset": 6258, + "length": 5, + "value": "0.008" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 6266, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 6330, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6358, + "length": 20, + "value": "\"percentPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6408, + "length": 17, + "value": "\"packetsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6452, + "length": 22, + "value": "\"deltaPacketsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6506, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6542, + "length": 18, + "value": "\"deltaPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6588, + "length": 16, + "value": "\"KBytesReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6630, + "length": 21, + "value": "\"deltaKBytesReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6682, + "length": 13, + "value": "\"kbsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 6918, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 6972, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 7162, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 7253, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 7332, + "length": 26, + "value": "\"total_concealment_events\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 7371, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 7488, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 7593, + "length": 41, + "value": "\"total_inserted_samples_for_deceleration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 7647, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 7762, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 7865, + "length": 40, + "value": "\"total_removed_samples_for_acceleration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 7918, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 7943, + "length": 24, + "value": "\"totalConcealmentEvents\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8001, + "length": 24, + "value": "\"deltaConcealmentEvents\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8059, + "length": 37, + "value": "\"totalInsertedSamplesForDeceleration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8143, + "length": 37, + "value": "\"deltaInsertedSamplesForDeceleration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8227, + "length": 36, + "value": "\"totalRemovedSamplesForAcceleration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8309, + "length": 36, + "value": "\"deltaRemovedSamplesForAcceleration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 8577, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8779, + "length": 23, + "value": "\"delta_ms_decode_frame\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8827, + "length": 26, + "value": "\"delta_ms_decode_frame_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 8858, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8873, + "length": 16, + "value": "\"frames_decoded\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8914, + "length": 25, + "value": "\"total_frames_decoded_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 8944, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8959, + "length": 19, + "value": "\"total_decode_time\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9003, + "length": 23, + "value": "\"total_time_decoded_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 9031, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9107, + "length": 23, + "value": "\"total_time_decoded_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 9146, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9203, + "length": 25, + "value": "\"total_frames_decoded_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 9241, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 9414, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 9437, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 9466, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9490, + "length": 23, + "value": "\"delta_ms_decode_frame\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9543, + "length": 16, + "value": "\"frames_decoded\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9584, + "length": 19, + "value": "\"total_decode_time\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9715, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9776, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9839, + "length": 11, + "value": "\"framerate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10200, + "length": 10, + "value": "\"pliCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10228, + "length": 19, + "value": "\"total_pli_sent_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 10252, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10267, + "length": 11, + "value": "\"nackCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10296, + "length": 20, + "value": "\"total_nack_sent_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 10321, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10336, + "length": 15, + "value": "\"deltaPliCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 10353, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10368, + "length": 16, + "value": "\"deltaNackCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 10386, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 10497, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10551, + "length": 19, + "value": "\"total_pli_sent_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 10583, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10636, + "length": 20, + "value": "\"total_nack_sent_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 10669, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10801, + "length": 10, + "value": "\"pliCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10831, + "length": 11, + "value": "\"nackCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10863, + "length": 15, + "value": "\"deltaPliCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10903, + "length": 16, + "value": "\"deltaNackCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 11134, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11317, + "length": 13, + "value": "\"packetsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11350, + "length": 19, + "value": "\"total_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 11374, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11389, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11422, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 11440, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11481, + "length": 11, + "value": "\"bytesSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11512, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 11535, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11602, + "length": 19, + "value": "\"total_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 11634, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 11731, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11783, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 11814, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 11976, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12025, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 12130, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 12160, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "FloatLiteral", + "offset": 12191, + "length": 5, + "value": "0.008" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 12199, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 12225, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12249, + "length": 13, + "value": "\"packetsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12285, + "length": 18, + "value": "\"deltaPacketsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12331, + "length": 12, + "value": "\"KBytesSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12365, + "length": 17, + "value": "\"deltaKBytesSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12409, + "length": 9, + "value": "\"kbsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 12626, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12670, + "length": 24, + "value": "\"total_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 12707, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 12736, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "FloatLiteral", + "offset": 12761, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12942, + "length": 24, + "value": "\"total_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 12979, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 13094, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 13146, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 13182, + "length": 18, + "value": "\"deltaPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 13228, + "length": 14, + "value": "\"fractionLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 14031, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 14066, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14166, + "length": 8, + "value": "\"reason\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14193, + "length": 11, + "value": "\"durations\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14226, + "length": 19, + "value": "\"resolutionChanges\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14361, + "length": 10, + "value": "\"channels\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 14410, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14421, + "length": 12, + "value": "\"clock_rate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 14473, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14484, + "length": 11, + "value": "\"mime_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14534, + "length": 12, + "value": "\"audio\/opus\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14556, + "length": 15, + "value": "\"sdp_fmtp_line\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14613, + "length": 9, + "value": "\"apt=100\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14718, + "length": 12, + "value": "\"clock_rate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 14770, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14781, + "length": 11, + "value": "\"mime_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14831, + "length": 11, + "value": "\"video\/rtx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 15035, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 15079, + "length": 18, + "value": "\"total_rtt_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 15110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 15158, + "length": 23, + "value": "\"total_rtt_measure_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 15194, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 15256, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 15263, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 15275, + "length": 10, + "value": "\"totalRTT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 15308, + "length": 22, + "value": "\"totalRTTMeasurements\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 15428, + "length": 15, + "value": "\"timestamp_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 15802, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 15964, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 16099, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 16268, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 16378, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 16405, + "length": 10, + "value": "\"totalRTT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 16442, + "length": 22, + "value": "\"totalRTTMeasurements\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 16662, + "length": 16, + "value": "\"candidate-pair\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "BooleanLiteral", + "offset": 16707, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "BooleanLiteral", + "offset": 16853, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "BooleanLiteral", + "offset": 17053, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17372, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17482, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17534, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17569, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17606, + "length": 23, + "value": "\"total_KBytes_received\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17710, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17762, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17797, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17835, + "length": 19, + "value": "\"total_KBytes_sent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17935, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17987, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18022, + "length": 17, + "value": "\"delta_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18059, + "length": 23, + "value": "\"delta_KBytes_received\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18163, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18215, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18250, + "length": 18, + "value": "\"delta_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18288, + "length": 19, + "value": "\"delta_KBytes_sent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18388, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18440, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18475, + "length": 14, + "value": "\"delta_kbs_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18509, + "length": 20, + "value": "\"kbs_speed_received\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18610, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18662, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18697, + "length": 15, + "value": "\"delta_kbs_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18732, + "length": 16, + "value": "\"kbs_speed_sent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18829, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18881, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18916, + "length": 27, + "value": "\"delta_rtt_connectivity_ms\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18961, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19050, + "length": 17, + "value": "\"local-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19160, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19235, + "length": 20, + "value": "\"local_candidate_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19392, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19450, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19488, + "length": 16, + "value": "\"infrastructure\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19546, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19640, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19698, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19733, + "length": 26, + "value": "\"local_candidate_protocol\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19801, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19895, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19953, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19988, + "length": 32, + "value": "\"local_candidate_relay_protocol\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 20155, + "length": 13, + "value": "\"inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Array", + "offset": 20398, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 20505, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 20534, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 20994, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21206, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21242, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21297, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21307, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21411, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21447, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21502, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21512, + "length": 13, + "value": "\"codec_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21609, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21645, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21700, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21710, + "length": 18, + "value": "\"total_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21735, + "length": 17, + "value": "\"packetsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21818, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21854, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21909, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21919, + "length": 18, + "value": "\"delta_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21944, + "length": 22, + "value": "\"deltaPacketsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22033, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22069, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22124, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22134, + "length": 23, + "value": "\"total_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22164, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22244, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22280, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22335, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22345, + "length": 23, + "value": "\"delta_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22375, + "length": 18, + "value": "\"deltaPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22460, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22496, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22551, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22561, + "length": 25, + "value": "\"percent_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22593, + "length": 20, + "value": "\"percentPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22680, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22716, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22771, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22781, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22805, + "length": 16, + "value": "\"KBytesReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22888, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22924, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22979, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22989, + "length": 17, + "value": "\"delta_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23013, + "length": 21, + "value": "\"deltaKBytesReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23099, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23133, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23186, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23196, + "length": 14, + "value": "\"delta_kbs_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23217, + "length": 13, + "value": "\"kbsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23295, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23329, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23382, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23392, + "length": 20, + "value": "\"delta_jitter_ms_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23484, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23518, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23571, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23604, + "length": 26, + "value": "\"total_concealment_events\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23642, + "length": 24, + "value": "\"totalConcealmentEvents\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23753, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23787, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23840, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23873, + "length": 26, + "value": "\"delta_concealment_events\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23911, + "length": 24, + "value": "\"deltaConcealmentEvents\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24022, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24056, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24109, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24142, + "length": 41, + "value": "\"total_inserted_samples_for_decelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24221, + "length": 37, + "value": "\"totalInsertedSamplesForDecelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24345, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24379, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24432, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24465, + "length": 41, + "value": "\"delta_inserted_samples_for_decelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24544, + "length": 37, + "value": "\"deltaInsertedSamplesForDecelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24668, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24702, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24755, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24788, + "length": 40, + "value": "\"total_removed_samples_for_accelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24866, + "length": 36, + "value": "\"totalRemovedSamplesForAccelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24989, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25023, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25076, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25109, + "length": 40, + "value": "\"delta_removed_samples_for_accelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25187, + "length": 35, + "value": "\"deltaRemovedSampleForAccelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25309, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25343, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25396, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25406, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25514, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25548, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25601, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25636, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25776, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25810, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25863, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25898, + "length": 17, + "value": "\"media_source_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26470, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26615, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26651, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26706, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26716, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26820, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26856, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26911, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26921, + "length": 13, + "value": "\"codec_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27018, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27054, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27109, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27119, + "length": 18, + "value": "\"total_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27151, + "length": 17, + "value": "\"packetsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27234, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27270, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27325, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27362, + "length": 18, + "value": "\"delta_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27394, + "length": 22, + "value": "\"deltaPacketsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27502, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27536, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27589, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27599, + "length": 23, + "value": "\"total_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27636, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27714, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27748, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27801, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27834, + "length": 23, + "value": "\"delta_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27871, + "length": 18, + "value": "\"deltaPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27975, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28009, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28062, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28095, + "length": 25, + "value": "\"percent_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28134, + "length": 20, + "value": "\"percentPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28240, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28274, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28327, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28337, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28368, + "length": 16, + "value": "\"KBytesReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28449, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28483, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28536, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28546, + "length": 17, + "value": "\"delta_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28577, + "length": 21, + "value": "\"deltaKBytesReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28663, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28697, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28750, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28760, + "length": 14, + "value": "\"delta_kbs_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28788, + "length": 13, + "value": "\"kbsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28866, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28900, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28953, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28963, + "length": 20, + "value": "\"delta_jitter_ms_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29055, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29089, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29142, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29152, + "length": 9, + "value": "\"size_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29237, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29271, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29324, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29334, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29442, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29476, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29529, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29539, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29658, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29692, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29745, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29755, + "length": 17, + "value": "\"media_source_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29882, + "length": 14, + "value": "\"outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 30251, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 30281, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 30297, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 30715, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 30802, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 30839, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 30895, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 30905, + "length": 14, + "value": "\"codec_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31007, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31044, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31100, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31110, + "length": 19, + "value": "\"total_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31136, + "length": 13, + "value": "\"packetsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31216, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31251, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31305, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31315, + "length": 19, + "value": "\"delta_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31341, + "length": 18, + "value": "\"deltaPacketsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31427, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31462, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31516, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31526, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31551, + "length": 12, + "value": "\"KBytesSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31631, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31666, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31720, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31730, + "length": 18, + "value": "\"delta_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31755, + "length": 17, + "value": "\"deltaKBytesSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31840, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31875, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31929, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31939, + "length": 15, + "value": "\"delta_kbs_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31961, + "length": 9, + "value": "\"kbsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32038, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32073, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32127, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32137, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32249, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32284, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32338, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32348, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32471, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32506, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32560, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32570, + "length": 17, + "value": "\"media_source_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33089, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33418, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33455, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33511, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33521, + "length": 14, + "value": "\"codec_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33623, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33660, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33716, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33726, + "length": 19, + "value": "\"total_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33756, + "length": 13, + "value": "\"packetsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33836, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33871, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33925, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33935, + "length": 19, + "value": "\"delta_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33965, + "length": 18, + "value": "\"deltaPacketsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34051, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34086, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34140, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34150, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34179, + "length": 12, + "value": "\"KBytesSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34259, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34294, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34348, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34358, + "length": 18, + "value": "\"delta_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34387, + "length": 17, + "value": "\"deltaKBytesSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34472, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34507, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34561, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34571, + "length": 15, + "value": "\"delta_kbs_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34597, + "length": 9, + "value": "\"kbsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34674, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34709, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34763, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34773, + "length": 10, + "value": "\"size_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34863, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34898, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34952, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34962, + "length": 16, + "value": "\"limitation_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35060, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35095, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35149, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35159, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35271, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35306, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35360, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35370, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35493, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35528, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35582, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35592, + "length": 17, + "value": "\"media_source_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35722, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Array", + "offset": 35769, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36093, + "length": 13, + "value": "\"codec_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36175, + "length": 14, + "value": "\"codec_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36400, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36423, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36434, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36470, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36535, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36545, + "length": 10, + "value": "\"codec_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36743, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36766, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36777, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36813, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36878, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36888, + "length": 11, + "value": "\"codec_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37340, + "length": 13, + "value": "\"codec_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37422, + "length": 14, + "value": "\"codec_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37647, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37670, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37681, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37717, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37782, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37792, + "length": 10, + "value": "\"codec_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37990, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 38013, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 38024, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 38060, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 38125, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 38135, + "length": 11, + "value": "\"codec_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 38323, + "length": 20, + "value": "\"remote-inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 38445, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 38638, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39237, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39271, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39324, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39334, + "length": 18, + "value": "\"delta_rtt_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39359, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39424, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39458, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39511, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39521, + "length": 21, + "value": "\"delta_jitter_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39609, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39643, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39696, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39706, + "length": 15, + "value": "\"timestamp_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39816, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39850, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39903, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39913, + "length": 24, + "value": "\"total_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39947, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40020, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40054, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40107, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40117, + "length": 24, + "value": "\"delta_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40151, + "length": 18, + "value": "\"deltaPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40229, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40263, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40316, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40326, + "length": 26, + "value": "\"percent_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40362, + "length": 14, + "value": "\"fractionLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40486, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41085, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41119, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41172, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41182, + "length": 18, + "value": "\"delta_rtt_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41207, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41272, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41306, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41359, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41369, + "length": 21, + "value": "\"delta_jitter_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41457, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41491, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41544, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41554, + "length": 15, + "value": "\"timestamp_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41664, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41698, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41751, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41761, + "length": 24, + "value": "\"total_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41795, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41868, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41902, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41955, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41965, + "length": 24, + "value": "\"delta_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41999, + "length": 18, + "value": "\"deltaPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42080, + "length": 21, + "value": "\"remote-outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 42203, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42397, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42665, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42699, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42752, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42762, + "length": 17, + "value": "\"delta_rtt_ms_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42786, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42851, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42885, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42938, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42948, + "length": 14, + "value": "\"timestamp_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43065, + "length": 14, + "value": "\"media-source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Array", + "offset": 43119, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 43319, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 43402, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43436, + "length": 17, + "value": "\"media_source_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43598, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43621, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43643, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43667, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43720, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43730, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 44005, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 44088, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44135, + "length": 17, + "value": "\"media_source_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44297, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44320, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44342, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44366, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44419, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44429, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44539, + "length": 7, + "value": "\"track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Array", + "offset": 44586, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 44787, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 44870, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44917, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44964, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45081, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45124, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45209, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45232, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45251, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45279, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45336, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45346, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45440, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45526, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45549, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45568, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45596, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45653, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45663, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 45973, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 46056, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46103, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46150, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46267, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46310, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46395, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46418, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46437, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46465, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46522, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46532, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46626, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46712, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46735, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46754, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46782, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46839, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46849, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Array", + "offset": 47026, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "Array", + "offset": 9025, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "StringLiteral", + "offset": 9360, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "StringLiteral", + "offset": 9542, + "length": 12, + "value": "\".FieldMask\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "IntegerLiteral", + "offset": 9611, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "StringLiteral", + "offset": 9627, + "length": 7, + "value": "\"paths\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "IntegerLiteral", + "offset": 10049, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "IntegerLiteral", + "offset": 10326, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "BooleanLiteral", + "offset": 10526, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "BooleanLiteral", + "offset": 10587, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "BooleanLiteral", + "offset": 10605, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTag.swift", + "kind": "IntegerLiteral", + "offset": 1267, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTag.swift", + "kind": "IntegerLiteral", + "offset": 1660, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTag.swift", + "kind": "IntegerLiteral", + "offset": 2198, + "length": 4, + "value": "0x07" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTag.swift", + "kind": "IntegerLiteral", + "offset": 2206, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTag.swift", + "kind": "IntegerLiteral", + "offset": 2261, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTag.swift", + "kind": "IntegerLiteral", + "offset": 2520, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "FloatLiteral", + "offset": 3383, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "FloatLiteral", + "offset": 4531, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 5692, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 6847, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 8005, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 9169, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 10330, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 11492, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 12657, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 13827, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 14997, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 16172, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "BooleanLiteral", + "offset": 17337, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "BooleanLiteral", + "offset": 18506, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "BooleanLiteral", + "offset": 19614, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "BooleanLiteral", + "offset": 20699, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/FilteredExemplarReservoir.swift", + "kind": "StringLiteral", + "offset": 118, + "length": 25, + "value": "\"VideoSDKRTC.FilteredExemplarReservoir\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Extensions.swift", + "kind": "StringLiteral", + "offset": 749, + "length": 21, + "value": "\"type.googleapis.com\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Extensions.swift", + "kind": "BooleanLiteral", + "offset": 1788, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3036, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Extensions.swift", + "kind": "StringLiteral", + "offset": 5272, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 743, + "length": 33, + "value": "\"org.swift.protobuf.typeRegistry\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 1107, + "length": 3, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 1140, + "length": 3, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 1526, + "length": 3, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 1763, + "length": 21, + "value": "\"google.protobuf.Any\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 1814, + "length": 27, + "value": "\"google.protobuf.BoolValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 1877, + "length": 28, + "value": "\"google.protobuf.BytesValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 1942, + "length": 29, + "value": "\"google.protobuf.DoubleValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2009, + "length": 26, + "value": "\"google.protobuf.Duration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2070, + "length": 23, + "value": "\"google.protobuf.Empty\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2125, + "length": 27, + "value": "\"google.protobuf.FieldMask\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2188, + "length": 28, + "value": "\"google.protobuf.FloatValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2253, + "length": 28, + "value": "\"google.protobuf.Int32Value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2318, + "length": 28, + "value": "\"google.protobuf.Int64Value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2383, + "length": 27, + "value": "\"google.protobuf.ListValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2446, + "length": 29, + "value": "\"google.protobuf.StringValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2513, + "length": 24, + "value": "\"google.protobuf.Struct\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2570, + "length": 27, + "value": "\"google.protobuf.Timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2633, + "length": 29, + "value": "\"google.protobuf.UInt32Value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2700, + "length": 29, + "value": "\"google.protobuf.UInt64Value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2767, + "length": 23, + "value": "\"google.protobuf.Value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "BooleanLiteral", + "offset": 4291, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "BooleanLiteral", + "offset": 4764, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 771, + "length": 12, + "value": "315576000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 901, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 917, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 996, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "BooleanLiteral", + "offset": 1017, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1078, + "length": 3, + "value": "\"-\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1149, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "BooleanLiteral", + "offset": 1253, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1267, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1277, + "length": 3, + "value": "\"2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1282, + "length": 3, + "value": "\"3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1287, + "length": 3, + "value": "\"4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1292, + "length": 3, + "value": "\"5\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 3, + "value": "\"6\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1302, + "length": 3, + "value": "\"7\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1307, + "length": 3, + "value": "\"8\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1312, + "length": 3, + "value": "\"9\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1360, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1371, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1735, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1746, + "length": 3, + "value": "\"s\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1857, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1896, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1926, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1965, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2023, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2900, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3297, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3310, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 3325, + "length": 19, + "value": "\"-0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 3342, + "length": 1, + "value": "\"s\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 3358, + "length": 27, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 3369, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 3383, + "length": 1, + "value": "\"s\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3672, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3690, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 4158, + "length": 18, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 4173, + "length": 1, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5958, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5967, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 6004, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 6022, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 6031, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 6068, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1154, + "length": 4, + "value": "0x20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1167, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "BooleanLiteral", + "offset": 1187, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "BooleanLiteral", + "offset": 1212, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1438, + "length": 3, + "value": "\"_\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1519, + "length": 3, + "value": "\"a\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1525, + "length": 3, + "value": "\"z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1685, + "length": 3, + "value": "\"A\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1691, + "length": 3, + "value": "\"Z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1722, + "length": 3, + "value": "\"a\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1728, + "length": 3, + "value": "\"z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1732, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1738, + "length": 3, + "value": "\"9\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1742, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1746, + "length": 3, + "value": "\"(\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1750, + "length": 3, + "value": "\")\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2125, + "length": 3, + "value": "\"_\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2156, + "length": 3, + "value": "\"A\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2162, + "length": 3, + "value": "\"Z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2195, + "length": 3, + "value": "\"_\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2252, + "length": 3, + "value": "\"a\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2258, + "length": 3, + "value": "\"z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2262, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2268, + "length": 3, + "value": "\"9\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2272, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2276, + "length": 3, + "value": "\"(\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2280, + "length": 3, + "value": "\")\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "Array", + "offset": 2633, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2661, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2758, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2790, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2995, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3060, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3095, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 5655, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 5690, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 5697, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_ListValue+Extensions.swift", + "kind": "StringLiteral", + "offset": 1283, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_ListValue+Extensions.swift", + "kind": "StringLiteral", + "offset": 1322, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_ListValue+Extensions.swift", + "kind": "StringLiteral", + "offset": 1480, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_ListValue+Extensions.swift", + "kind": "StringLiteral", + "offset": 1519, + "length": 3, + "value": "\"]\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_ListValue+Extensions.swift", + "kind": "BooleanLiteral", + "offset": 2036, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_NullValue+Extensions.swift", + "kind": "StringLiteral", + "offset": 766, + "length": 6, + "value": "\"null\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Struct+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1458, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Struct+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1531, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Struct+Extensions.swift", + "kind": "BooleanLiteral", + "offset": 1829, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 697, + "length": 12, + "value": "-62135596800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 776, + "length": 12, + "value": "253402300799" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1308, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1465, + "length": 2, + "value": "48" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1486, + "length": 2, + "value": "57" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1507, + "length": 2, + "value": "45" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1529, + "length": 2, + "value": "58" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1550, + "length": 2, + "value": "43" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1574, + "length": 2, + "value": "84" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1598, + "length": 2, + "value": "90" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1621, + "length": 2, + "value": "46" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1839, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1853, + "length": 3, + "value": "528" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2213, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2229, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2244, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2258, + "length": 5, + "value": "53328" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2339, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2349, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2359, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2369, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2384, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2409, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2426, + "length": 4, + "value": "9999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2558, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2568, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2583, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2609, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2627, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2754, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2764, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2779, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2808, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2825, + "length": 2, + "value": "31" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2953, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2964, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2980, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3007, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3139, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3150, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3166, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3195, + "length": 2, + "value": "59" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3345, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3356, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3379, + "length": 2, + "value": "61" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "Array", + "offset": 3769, + "length": 55, + "value": "[0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3862, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3889, + "length": 3, + "value": "400" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3896, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3911, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3918, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3932, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3937, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3965, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3982, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4011, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4122, + "length": 3, + "value": "365" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4142, + "length": 6, + "value": "719527" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4184, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4189, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4226, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4231, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4270, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4275, + "length": 3, + "value": "400" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4343, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4384, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4481, + "length": 5, + "value": "86400" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4558, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4583, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4657, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4680, + "length": 9, + "value": "100000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4839, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4855, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4891, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5080, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5201, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5217, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5271, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5287, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5315, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5341, + "length": 2, + "value": "59" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5360, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5529, + "length": 4, + "value": "3600" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5581, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5642, + "length": 4, + "value": "3600" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5694, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5867, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5957, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6540, + "length": 50, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6557, + "length": 1, + "value": "\"-\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6573, + "length": 1, + "value": "\"-\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6589, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6610, + "length": 49, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6626, + "length": 1, + "value": "\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6642, + "length": 1, + "value": "\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6658, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6752, + "length": 44, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6766, + "length": 1, + "value": "\"T\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6780, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6794, + "length": 1, + "value": "\"Z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 7085, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 7103, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 7572, + "length": 18, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 7587, + "length": 1, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Value+Extensions.swift", + "kind": "StringLiteral", + "offset": 2826, + "length": 3, + "value": "\"n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Value+Extensions.swift", + "kind": "StringLiteral", + "offset": 2971, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Value+Extensions.swift", + "kind": "StringLiteral", + "offset": 3093, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Value+Extensions.swift", + "kind": "StringLiteral", + "offset": 3214, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Value+Extensions.swift", + "kind": "StringLiteral", + "offset": 3219, + "length": 3, + "value": "\"f\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Value+Extensions.swift", + "kind": "StringLiteral", + "offset": 3305, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Wrappers+Extensions.swift", + "kind": "StringLiteral", + "offset": 3726, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Wrappers+Extensions.swift", + "kind": "StringLiteral", + "offset": 3743, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Wrappers+Extensions.swift", + "kind": "StringLiteral", + "offset": 4344, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Wrappers+Extensions.swift", + "kind": "StringLiteral", + "offset": 4361, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Wrappers+Extensions.swift", + "kind": "StringLiteral", + "offset": 5858, + "length": 6, + "value": "\"true\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Wrappers+Extensions.swift", + "kind": "StringLiteral", + "offset": 5867, + "length": 7, + "value": "\"false\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/HashVisitor.swift", + "kind": "IntegerLiteral", + "offset": 660, + "length": 10, + "value": "2166136261" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/HashVisitor.swift", + "kind": "IntegerLiteral", + "offset": 701, + "length": 8, + "value": "16777619" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/Headers.swift", + "kind": "StringLiteral", + "offset": 512, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/Headers.swift", + "kind": "IntegerLiteral", + "offset": 566, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/Headers.swift", + "kind": "StringLiteral", + "offset": 604, + "length": 37, + "value": "\"OTel-OTLP-Exporter-Swift\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/Headers.swift", + "kind": "StringLiteral", + "offset": 640, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 305, + "length": 3, + "value": "180" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 329, + "length": 3, + "value": "180" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 346, + "length": 3, + "value": "180" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 352, + "length": 3, + "value": "360" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 376, + "length": 3, + "value": "360" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 393, + "length": 3, + "value": "360" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 399, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 423, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 440, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 446, + "length": 4, + "value": "1080" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 471, + "length": 4, + "value": "1080" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 489, + "length": 4, + "value": "1080" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 496, + "length": 4, + "value": "1440" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 521, + "length": 4, + "value": "1440" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 560, + "length": 4, + "value": "1440" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 585, + "length": 4, + "value": "2160" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 626, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "BooleanLiteral", + "offset": 793, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 1207, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "StringLiteral", + "offset": 1268, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "StringLiteral", + "offset": 1290, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "StringLiteral", + "offset": 1296, + "length": 7, + "value": "\"track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "StringLiteral", + "offset": 1350, + "length": 13, + "value": "\"frameHeight\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 1376, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "StringLiteral", + "offset": 1420, + "length": 12, + "value": "\"frameWidth\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 1445, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "Array", + "offset": 488, + "length": 119, + "value": "[5, 10, 25, 50, 75, 100, 250, 500, 750, 1000, 2500, 5000, 7500, 10000]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 758, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1310, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1386, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1518, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1701, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "StringLiteral", + "offset": 209, + "length": 19, + "value": "\"VideoSDKRTC.HistogramAggregator\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 3385, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 3403, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 3498, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 3527, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/HistogramExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 283, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/HistogramExemplarReservoir.swift", + "kind": "StringLiteral", + "offset": 118, + "length": 26, + "value": "\"VideoSDKRTC.HistogramExemplarReservoir\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/Internal\/HistogramPointData.swift", + "kind": "StringLiteral", + "offset": 117, + "length": 18, + "value": "\"VideoSDKRTC.HistogramPointData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 749, + "length": 8, + "value": "\"layout\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 788, + "length": 7, + "value": "\"theme\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 825, + "length": 6, + "value": "\"mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 860, + "length": 9, + "value": "\"quality\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 901, + "length": 13, + "value": "\"orientation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1602, + "length": 8, + "value": "\"layout\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1641, + "length": 7, + "value": "\"theme\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 6, + "value": "\"mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1713, + "length": 9, + "value": "\"quality\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1754, + "length": 13, + "value": "\"orientation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1875, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1918, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1960, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2123, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2174, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2223, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2310, + "length": 15, + "value": "\"downstreamUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2359, + "length": 16, + "value": "\"playbackHlsUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2410, + "length": 15, + "value": "\"livestreamUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "IntegerLiteral", + "offset": 2633, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2904, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2939, + "length": 10, + "value": "\"priority\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2982, + "length": 10, + "value": "\"gridSize\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3084, + "length": 9, + "value": "\"SPEAKER\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3101, + "length": 5, + "value": "\"PIN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3084, + "length": 9, + "value": "\"SPEAKER\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3101, + "length": 5, + "value": "\"PIN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3165, + "length": 6, + "value": "\"GRID\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3185, + "length": 11, + "value": "\"SPOTLIGHT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3208, + "length": 9, + "value": "\"SIDEBAR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3165, + "length": 6, + "value": "\"GRID\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3185, + "length": 11, + "value": "\"SPOTLIGHT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3208, + "length": 9, + "value": "\"SIDEBAR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3274, + "length": 9, + "value": "\"DEFAULT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3293, + "length": 7, + "value": "\"LIGHT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3309, + "length": 6, + "value": "\"DARK\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3274, + "length": 9, + "value": "\"DEFAULT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3293, + "length": 7, + "value": "\"LIGHT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3309, + "length": 6, + "value": "\"DARK\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3379, + "length": 17, + "value": "\"video-and-audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3406, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3379, + "length": 17, + "value": "\"video-and-audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3406, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3469, + "length": 6, + "value": "\"high\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3469, + "length": 6, + "value": "\"high\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3550, + "length": 11, + "value": "\"landscape\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3550, + "length": 11, + "value": "\"landscape\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Export\/InMemoryLogRecordExporter.swift", + "kind": "BooleanLiteral", + "offset": 253, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Export\/InMemoryLogRecordExporter.swift", + "kind": "BooleanLiteral", + "offset": 689, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Common\/InstrumentationLibraryInfo.swift", + "kind": "StringLiteral", + "offset": 353, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/InstrumentSelectorBuilder.swift", + "kind": "StringLiteral", + "offset": 221, + "length": 4, + "value": "\".*\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Internal.swift", + "kind": "BooleanLiteral", + "offset": 1493, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Internal.swift", + "kind": "BooleanLiteral", + "offset": 1524, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Internal.swift", + "kind": "BooleanLiteral", + "offset": 1855, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Internal.swift", + "kind": "BooleanLiteral", + "offset": 1886, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSBroadcastScreenCapturer.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 10, + "value": "\"rtc_SSFD\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSBroadcastScreenCapturer.swift", + "kind": "StringLiteral", + "offset": 408, + "length": 23, + "value": "\"RTCAppGroupIdentifier\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSBroadcastScreenCapturer.swift", + "kind": "StringLiteral", + "offset": 476, + "length": 27, + "value": "\"RTCScreenSharingExtension\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSBroadcastScreenCapturer.swift", + "kind": "BooleanLiteral", + "offset": 774, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSBroadcastScreenCapturer.swift", + "kind": "BooleanLiteral", + "offset": 1705, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSBroadcastScreenCapturer.swift", + "kind": "BooleanLiteral", + "offset": 1869, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 610, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 805, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 839, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 866, + "length": 31, + "value": "\"DEBUG::failure: create socket\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 979, + "length": 31, + "value": "\"DEBUG::open socket connection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 1045, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 1075, + "length": 34, + "value": "\"DEBUG::failed setting up address\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 1131, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 1178, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 1209, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 1314, + "length": 37, + "value": "\"DEBUG::failure: socket file missing\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 1372, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 1430, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 1437, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 1464, + "length": 52, + "value": "\"DEBUG::failure: socket failed listening connection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 1537, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 1795, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 1826, + "length": 52, + "value": "\"DEBUG::failure: socket failed accepting connection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 2071, + "length": 21, + "value": "\"DEBUG::streams open\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 2200, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 2462, + "length": 30, + "value": "\"DEBUG::closing server socket\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 2713, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 2942, + "length": 37, + "value": "\"DEBUG::failure: fd path is too long\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 3000, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 3301, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 3411, + "length": 29, + "value": "\"DEBUG::failure: no address?\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 3461, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 3600, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 3774, + "length": 27, + "value": "\"DEBUG::failure: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 3800, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 3822, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 3854, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 4636, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 4918, + "length": 26, + "value": "\"DEBUG::streams scheduled\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 4974, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 5057, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 5175, + "length": 24, + "value": "\"DEBUG::streams stopped\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 5271, + "length": 26, + "value": "\"DEBUG::unscheduleStreams\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 5527, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 25, + "value": "\"VideoSDKRTC.BroadcastSocketConnection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "BooleanLiteral", + "offset": 805, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 901, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 1057, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 1157, + "length": 16, + "value": "\"Content-Length\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 1326, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 1550, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 1981, + "length": 14, + "value": "\"Buffer-Width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 2110, + "length": 15, + "value": "\"Buffer-Height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 2250, + "length": 20, + "value": "\"Buffer-Orientation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "BooleanLiteral", + "offset": 2430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 2895, + "length": 37, + "value": "\"Warning::CVPixelBufferCreate failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "BooleanLiteral", + "offset": 2953, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "BooleanLiteral", + "offset": 3046, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "Array", + "offset": 3221, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "Array", + "offset": 3531, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 3648, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 3653, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 3687, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 5285, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 5414, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 5436, + "length": 40, + "value": "\"DEBUG::error reading bytes from stream\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 5613, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 3560, + "length": 27, + "value": "\"VideoSDKRTC.SocketConnectionFrameReader\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 6720, + "length": 37, + "value": "\"DEBUG::server stream open completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 6893, + "length": 38, + "value": "\"DEBUG::server stream end encountered\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 7006, + "length": 92, + "value": "\"DEBUG::server stream error encountered: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 7094, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 7097, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "StringLiteral", + "offset": 345, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Array", + "offset": 539, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Dictionary", + "offset": 586, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Array", + "offset": 767, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Array", + "offset": 805, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Dictionary", + "offset": 1012, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Array", + "offset": 1270, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "StringLiteral", + "offset": 1313, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Array", + "offset": 1529, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "StringLiteral", + "offset": 1572, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Dictionary", + "offset": 1805, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Array", + "offset": 2025, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 686, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 713, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 1567, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 1822, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 1995, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 2479, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 2782, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 3272, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 3574, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 4342, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 4777, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 5259, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5561, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 6291, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6707, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 7193, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 9771, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 10417, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 11228, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 12032, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13409, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15423, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15491, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15712, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 16875, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "StringLiteral", + "offset": 17044, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17123, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17247, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18070, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "StringLiteral", + "offset": 18239, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18318, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18547, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 19451, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "StringLiteral", + "offset": 19620, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 19699, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 19823, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecodingOptions.swift", + "kind": "IntegerLiteral", + "offset": 888, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecodingOptions.swift", + "kind": "BooleanLiteral", + "offset": 1166, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 576, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 617, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 658, + "length": 3, + "value": "\"2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 701, + "length": 3, + "value": "\"3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 743, + "length": 3, + "value": "\"4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 785, + "length": 3, + "value": "\"5\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 826, + "length": 3, + "value": "\"6\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 869, + "length": 3, + "value": "\"7\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 912, + "length": 3, + "value": "\"8\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 954, + "length": 3, + "value": "\"9\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 997, + "length": 3, + "value": "\"-\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1039, + "length": 3, + "value": "\"+\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1083, + "length": 3, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1126, + "length": 3, + "value": "\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1169, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1218, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1266, + "length": 4, + "value": "\"\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1317, + "length": 3, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1372, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1428, + "length": 3, + "value": "\"]\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1482, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1537, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1581, + "length": 3, + "value": "\"A\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1625, + "length": 3, + "value": "\"B\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1669, + "length": 3, + "value": "\"C\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1713, + "length": 3, + "value": "\"D\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1757, + "length": 3, + "value": "\"E\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1801, + "length": 3, + "value": "\"F\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1845, + "length": 3, + "value": "\"Z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1889, + "length": 3, + "value": "\"a\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1933, + "length": 3, + "value": "\"z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 4809, + "length": 5, + "value": "\"\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 5048, + "length": 5, + "value": "\"\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 5125, + "length": 6, + "value": "\"]\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 6403, + "length": 6, + "value": "\"null\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 6665, + "length": 9, + "value": "\"\"NaN\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6735, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 6774, + "length": 15, + "value": "\"\"-Infinity\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 6847, + "length": 14, + "value": "\"\"Infinity\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 7226, + "length": 9, + "value": "\"\"NaN\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7296, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 7335, + "length": 15, + "value": "\"\"-Infinity\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 7408, + "length": 14, + "value": "\"\"Infinity\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7668, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7711, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7771, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7911, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8136, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10365, + "length": 6, + "value": "\"true\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10421, + "length": 7, + "value": "\"false\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 10739, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10761, + "length": 5, + "value": "\"\\b\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 10785, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10807, + "length": 5, + "value": "\"\\t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 10831, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10854, + "length": 5, + "value": "\"\\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 10878, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10901, + "length": 5, + "value": "\"\\f\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 10925, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10948, + "length": 5, + "value": "\"\\r\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 10972, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10995, + "length": 6, + "value": "\"\\\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11020, + "length": 2, + "value": "92" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 11043, + "length": 6, + "value": "\"\\\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11068, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11072, + "length": 2, + "value": "31" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11076, + "length": 3, + "value": "127" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11082, + "length": 3, + "value": "159" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 11155, + "length": 7, + "value": "\"\\u00\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11216, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11274, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11297, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11302, + "length": 3, + "value": "126" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11388, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11395, + "length": 5, + "value": "0x7ff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11430, + "length": 4, + "value": "0xc0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11474, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11506, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11549, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11573, + "length": 5, + "value": "0x800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11581, + "length": 6, + "value": "0xffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11617, + "length": 4, + "value": "0xe0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11661, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11694, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11739, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11744, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11779, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11822, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11878, + "length": 4, + "value": "0xf0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11922, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11955, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12000, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12006, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12041, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12086, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12091, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12126, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12169, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12469, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12599, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12632, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12674, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12701, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12757, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12816, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12822, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12882, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12888, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12948, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12953, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13011, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13044, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13085, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13139, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13190, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13269, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13323, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13329, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13385, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13391, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13447, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13452, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13506, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13532, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13561, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13614, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13620, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13676, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13682, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13738, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13743, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13814, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13843, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13897, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13903, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13959, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13965, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingOptions.swift", + "kind": "BooleanLiteral", + "offset": 854, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingOptions.swift", + "kind": "BooleanLiteral", + "offset": 979, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingOptions.swift", + "kind": "BooleanLiteral", + "offset": 1143, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4654, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4771, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 10995, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 11172, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 12470, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 12646, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 12727, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 12834, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 13124, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 13299, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 13388, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 13476, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 13739, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 13915, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 14009, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 14097, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 1416, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 1505, + "length": 3, + "value": "\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 1683, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 1922, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 2097, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 2375, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 2755, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 3037, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 4392, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 4680, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 4957, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 5189, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 5589, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 570, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 608, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 640, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 676, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 717, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 755, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 799, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 840, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 881, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 924, + "length": 3, + "value": "\"7\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 966, + "length": 3, + "value": "\"9\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1009, + "length": 3, + "value": "\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1053, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1095, + "length": 3, + "value": "\"+\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1138, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1185, + "length": 3, + "value": "\";\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1234, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1284, + "length": 4, + "value": "\"'\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1332, + "length": 4, + "value": "\"\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1383, + "length": 3, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1425, + "length": 3, + "value": "\"#\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1472, + "length": 3, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1520, + "length": 3, + "value": "\"_\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1570, + "length": 3, + "value": "\"?\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1613, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1668, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1724, + "length": 3, + "value": "\"]\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1778, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1833, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 3, + "value": "\"<\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1942, + "length": 3, + "value": "\">\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1985, + "length": 3, + "value": "\"-\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2029, + "length": 3, + "value": "\"a\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2073, + "length": 3, + "value": "\"A\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2117, + "length": 3, + "value": "\"b\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2161, + "length": 3, + "value": "\"e\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2205, + "length": 3, + "value": "\"E\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2249, + "length": 3, + "value": "\"f\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2293, + "length": 3, + "value": "\"I\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2337, + "length": 3, + "value": "\"l\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2381, + "length": 3, + "value": "\"n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2425, + "length": 3, + "value": "\"N\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2469, + "length": 3, + "value": "\"r\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2513, + "length": 3, + "value": "\"s\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2557, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2601, + "length": 3, + "value": "\"u\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2645, + "length": 3, + "value": "\"z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2689, + "length": 3, + "value": "\"Z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2782, + "length": 2, + "value": "48" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2793, + "length": 2, + "value": "57" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2820, + "length": 2, + "value": "48" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2848, + "length": 2, + "value": "65" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2852, + "length": 2, + "value": "97" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2863, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2873, + "length": 2, + "value": "66" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2877, + "length": 2, + "value": "98" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2888, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2898, + "length": 2, + "value": "67" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2902, + "length": 2, + "value": "99" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2913, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2923, + "length": 2, + "value": "68" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2927, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2939, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2949, + "length": 2, + "value": "69" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2953, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2965, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2975, + "length": 2, + "value": "70" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2979, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2991, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "Array", + "offset": 3319, + "length": 1203, + "value": "[-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, 62, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -1, -1, -1, -1, 0, 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, -1, -1, -1, -1, 63, -1, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 5611, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 5645, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 5683, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 6695, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 6804, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 6876, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 6904, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 7333, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 7337, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 7779, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 7799, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 7821, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 7873, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 7920, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 8029, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 8856, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9102, + "length": 2, + "value": "61" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9145, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9524, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9566, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9592, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9614, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9650, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9672, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9708, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9729, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9784, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9810, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9832, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9938, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9955, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9991, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10009, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10045, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10074, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10090, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10144, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10161, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10197, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10226, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10242, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10296, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10325, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 11396, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 11407, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 11418, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 11548, + "length": 6, + "value": "0xD800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 11571, + "length": 6, + "value": "0xE000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 11685, + "length": 6, + "value": "0xDC00" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 11984, + "length": 4, + "value": "\"\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 12006, + "length": 3, + "value": "\"u\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12541, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12552, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12563, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12593, + "length": 6, + "value": "0xDC00" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12626, + "length": 6, + "value": "0xE000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12799, + "length": 6, + "value": "0xD800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12843, + "length": 6, + "value": "0xDC00" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12881, + "length": 7, + "value": "0x10000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12899, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 13426, + "length": 8, + "value": "\"\b\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 13497, + "length": 8, + "value": "\"\f\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 13568, + "length": 8, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 13639, + "length": 8, + "value": "\"\r\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 13710, + "length": 8, + "value": "\"\t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 15463, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 15490, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 15629, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 15839, + "length": 59, + "value": "\"Somehow JSONDecoding unwound more objects than it started\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 19179, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 19212, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 19268, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 19485, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 19495, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 19639, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 21544, + "length": 18, + "value": "0x8000000000000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "FloatLiteral", + "offset": 24047, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 27511, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 28095, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 29619, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 31665, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 33499, + "length": 5, + "value": "\"NaN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 33536, + "length": 5, + "value": "\"Inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 33578, + "length": 6, + "value": "\"-Inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 33622, + "length": 10, + "value": "\"Infinity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 33669, + "length": 11, + "value": "\"-Infinity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 33907, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 35893, + "length": 5, + "value": "\"NaN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 35931, + "length": 5, + "value": "\"Inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 35974, + "length": 6, + "value": "\"-Inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 36019, + "length": 10, + "value": "\"Infinity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 36067, + "length": 11, + "value": "\"-Infinity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 36307, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 39077, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 39172, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 39395, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 39426, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 39770, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 40285, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 40449, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 41013, + "length": 7, + "value": "\"false\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 41029, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 41046, + "length": 6, + "value": "\"true\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 41061, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 42533, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 43354, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 43422, + "length": 3, + "value": "\"]\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 46421, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 46443, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 48192, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 48204, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 48236, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 48305, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 48696, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 48846, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 48906, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 49814, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 49875, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 49916, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 50219, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/LabelSetSdk.swift", + "kind": "StringLiteral", + "offset": 469, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/LabelSetSdk.swift", + "kind": "BooleanLiteral", + "offset": 499, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/LabelSetSdk.swift", + "kind": "StringLiteral", + "offset": 526, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/LabelSetSdk.swift", + "kind": "StringLiteral", + "offset": 532, + "length": 1, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/LabelSetSdk.swift", + "kind": "StringLiteral", + "offset": 538, + "length": 22, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/LabelSetSdk.swift", + "kind": "StringLiteral", + "offset": 618, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/LabelSetSdk.swift", + "kind": "BooleanLiteral", + "offset": 688, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LastValueAggregation.swift", + "kind": "IntegerLiteral", + "offset": 621, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LastValueAggregation.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/LastValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 246, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/LastValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 272, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 1592, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 1725, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 1728, + "length": 45, + "value": "\"pthread_mutex_init failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 1772, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 1875, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 1878, + "length": 48, + "value": "\"pthread_mutex_destroy failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 1925, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 2228, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 2231, + "length": 45, + "value": "\"pthread_mutex_lock failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 2275, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 2548, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 2551, + "length": 47, + "value": "\"pthread_mutex_unlock failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 2597, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 3779, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 3914, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 3917, + "length": 46, + "value": "\"pthread_rwlock_init failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 3962, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 4067, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 4070, + "length": 49, + "value": "\"pthread_rwlock_destroy failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 4118, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 4435, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 4438, + "length": 48, + "value": "\"pthread_rwlock_rdlock failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 4485, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 4770, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 4773, + "length": 48, + "value": "\"pthread_rwlock_wrlock failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 4820, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 5095, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 5098, + "length": 48, + "value": "\"pthread_rwlock_unlock failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 5145, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerBuilderSdk.swift", + "kind": "BooleanLiteral", + "offset": 425, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerProviderBuilder.swift", + "kind": "Array", + "offset": 393, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerProviderSdk.swift", + "kind": "Array", + "offset": 481, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "BooleanLiteral", + "offset": 478, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 817, + "length": 140, + "value": "\"Events cannot be emitted from Logger without an event domain. Use `LoggerBuilder.setEventDomain(_ domain: String) when obtaining a Logger.\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1049, + "length": 8, + "value": "\"unused\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1074, + "length": 8, + "value": "\"unused\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1099, + "length": 14, + "value": "\"event.domain\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1137, + "length": 8, + "value": "\"unused\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1148, + "length": 12, + "value": "\"event.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1219, + "length": 8, + "value": "\"unused\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "BooleanLiteral", + "offset": 1364, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1385, + "length": 14, + "value": "\"event.domain\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1583, + "length": 12, + "value": "\"event.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "BooleanLiteral", + "offset": 1820, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "BooleanLiteral", + "offset": 2341, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSharedState.swift", + "kind": "BooleanLiteral", + "offset": 291, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 587, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 790, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 849, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 1208, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 1413, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSharedState.swift", + "kind": "BooleanLiteral", + "offset": 1587, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LogLimits.swift", + "kind": "IntegerLiteral", + "offset": 180, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LogRecordBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 1809, + "length": 12, + "value": "\"event.data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2287, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2319, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2345, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2372, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2399, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2426, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2452, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2479, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2506, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2533, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2558, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2585, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2612, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2639, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2665, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2692, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2719, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2746, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2773, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2801, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2829, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2857, + "length": 2, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2884, + "length": 2, + "value": "22" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2912, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2940, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3091, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3117, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3144, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3171, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3198, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3224, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3251, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3278, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3305, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3330, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3356, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3383, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3410, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3436, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3463, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3490, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3517, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3544, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3572, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3600, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3628, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3655, + "length": 2, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3683, + "length": 2, + "value": "22" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3711, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3739, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 5136, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 5165, + "length": 3, + "value": "255" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 5322, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 5357, + "length": 3, + "value": "255" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "Array", + "offset": 6816, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "Array", + "offset": 7866, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "Array", + "offset": 9260, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 10147, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 11198, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "Array", + "offset": 12516, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 12566, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 12991, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15008, + "length": 29, + "value": "\"opentelemetry.proto.logs.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15173, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15189, + "length": 29, + "value": "\"SEVERITY_NUMBER_UNSPECIFIED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15225, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15241, + "length": 23, + "value": "\"SEVERITY_NUMBER_TRACE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15271, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15287, + "length": 24, + "value": "\"SEVERITY_NUMBER_TRACE2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15318, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15334, + "length": 24, + "value": "\"SEVERITY_NUMBER_TRACE3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15365, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15381, + "length": 24, + "value": "\"SEVERITY_NUMBER_TRACE4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15412, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15428, + "length": 23, + "value": "\"SEVERITY_NUMBER_DEBUG\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15458, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15474, + "length": 24, + "value": "\"SEVERITY_NUMBER_DEBUG2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15505, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15521, + "length": 24, + "value": "\"SEVERITY_NUMBER_DEBUG3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15552, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15568, + "length": 24, + "value": "\"SEVERITY_NUMBER_DEBUG4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15599, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15615, + "length": 22, + "value": "\"SEVERITY_NUMBER_INFO\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15644, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15661, + "length": 23, + "value": "\"SEVERITY_NUMBER_INFO2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15691, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15708, + "length": 23, + "value": "\"SEVERITY_NUMBER_INFO3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15738, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15755, + "length": 23, + "value": "\"SEVERITY_NUMBER_INFO4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15785, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15802, + "length": 22, + "value": "\"SEVERITY_NUMBER_WARN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15831, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15848, + "length": 23, + "value": "\"SEVERITY_NUMBER_WARN2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15878, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15895, + "length": 23, + "value": "\"SEVERITY_NUMBER_WARN3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15925, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15942, + "length": 23, + "value": "\"SEVERITY_NUMBER_WARN4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15972, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15989, + "length": 23, + "value": "\"SEVERITY_NUMBER_ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16019, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16036, + "length": 24, + "value": "\"SEVERITY_NUMBER_ERROR2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16067, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16084, + "length": 24, + "value": "\"SEVERITY_NUMBER_ERROR3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16115, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16132, + "length": 24, + "value": "\"SEVERITY_NUMBER_ERROR4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16163, + "length": 2, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16180, + "length": 23, + "value": "\"SEVERITY_NUMBER_FATAL\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16210, + "length": 2, + "value": "22" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16227, + "length": 24, + "value": "\"SEVERITY_NUMBER_FATAL2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16258, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16275, + "length": 24, + "value": "\"SEVERITY_NUMBER_FATAL3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16306, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16323, + "length": 24, + "value": "\"SEVERITY_NUMBER_FATAL4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16491, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16507, + "length": 29, + "value": "\"LOG_RECORD_FLAGS_DO_NOT_USE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16543, + "length": 3, + "value": "255" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16561, + "length": 35, + "value": "\"LOG_RECORD_FLAGS_TRACE_FLAGS_MASK\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16783, + "length": 11, + "value": "\".LogsData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16852, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16872, + "length": 15, + "value": "\"resource_logs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 17303, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 17604, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 17840, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 17901, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 17919, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 18112, + "length": 15, + "value": "\".ResourceLogs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 18185, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 18201, + "length": 10, + "value": "\"resource\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 18218, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 18238, + "length": 12, + "value": "\"scope_logs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 18257, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 18277, + "length": 12, + "value": "\"schema_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 18705, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 18792, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 18879, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 19458, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 19584, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 19705, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 19943, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 19996, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 20049, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 20110, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 20128, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 20315, + "length": 12, + "value": "\".ScopeLogs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 20385, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 20401, + "length": 7, + "value": "\"scope\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 20415, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 20435, + "length": 13, + "value": "\"log_records\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 20455, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 20475, + "length": 12, + "value": "\"schema_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 20902, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 20986, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 21074, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 21650, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 21778, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 21899, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 22125, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 22180, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 22233, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 22294, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 22312, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22499, + "length": 12, + "value": "\".LogRecord\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22569, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22589, + "length": 16, + "value": "\"time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22612, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22633, + "length": 25, + "value": "\"observed_time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22665, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22685, + "length": 17, + "value": "\"severity_number\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22709, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22729, + "length": 15, + "value": "\"severity_text\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22751, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22767, + "length": 6, + "value": "\"body\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22780, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22796, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22815, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22835, + "length": 26, + "value": "\"dropped_attributes_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22868, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22884, + "length": 7, + "value": "\"flags\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22898, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22918, + "length": 10, + "value": "\"trace_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22935, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22956, + "length": 9, + "value": "\"span_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 23380, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 23470, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 23559, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 23648, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 23731, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 23819, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 23918, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 24001, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 24084, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 24167, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 24682, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 24769, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 24905, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25032, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25142, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25270, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25317, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25413, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25443, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25523, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25639, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25753, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25799, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25894, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26133, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26208, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26271, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26330, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26375, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26509, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26554, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26603, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26650, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26711, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26729, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "Array", + "offset": 2101, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 4474, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 5522, + "length": 39, + "value": "\"opentelemetry.proto.collector.logs.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 5766, + "length": 27, + "value": "\".ExportLogsServiceRequest\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 5851, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 5871, + "length": 15, + "value": "\"resource_logs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 6302, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 6603, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 6891, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 6952, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 6970, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 7186, + "length": 28, + "value": "\".ExportLogsServiceResponse\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 7272, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 7292, + "length": 17, + "value": "\"partial_success\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 7725, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 8317, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8617, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8678, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8696, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 8911, + "length": 27, + "value": "\".ExportLogsPartialSuccess\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 8996, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 9016, + "length": 22, + "value": "\"rejected_log_records\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9045, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 9065, + "length": 15, + "value": "\"error_message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9496, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9590, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9805, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9896, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 10023, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10323, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10382, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10443, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10461, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongCounterMeterBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 418, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongCounterMeterBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 449, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongCounterSdk.swift", + "kind": "IntegerLiteral", + "offset": 646, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongCounterSdk.swift", + "kind": "IntegerLiteral", + "offset": 1352, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongGaugeBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 436, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongGaugeBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 467, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongHistogramMeterSdk.swift", + "kind": "IntegerLiteral", + "offset": 661, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LongLastValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1440, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LongLastValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1693, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LongLastValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1818, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/Internal\/LongPointData.swift", + "kind": "StringLiteral", + "offset": 117, + "length": 13, + "value": "\"VideoSDKRTC.LongPointData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LongSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1588, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LongSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1839, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LongSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1961, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LongSumAggregator.swift", + "kind": "StringLiteral", + "offset": 117, + "length": 17, + "value": "\"VideoSDKRTC.LongSumAggregator\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongUpDownCounterBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 490, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongUpDownCounterBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/MathUtils.swift", + "kind": "IntegerLiteral", + "offset": 999, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/MathUtils.swift", + "kind": "IntegerLiteral", + "offset": 1036, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/MathUtils.swift", + "kind": "IntegerLiteral", + "offset": 1474, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/MathUtils.swift", + "kind": "IntegerLiteral", + "offset": 1493, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/MathUtils.swift", + "kind": "IntegerLiteral", + "offset": 1510, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/MathUtils.swift", + "kind": "IntegerLiteral", + "offset": 1519, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MaxValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 204, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MaxValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 230, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MaxValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 603, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Measurement.swift", + "kind": "BooleanLiteral", + "offset": 1205, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Measurement.swift", + "kind": "FloatLiteral", + "offset": 1242, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Measurement.swift", + "kind": "BooleanLiteral", + "offset": 1263, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Measurement.swift", + "kind": "BooleanLiteral", + "offset": 1550, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Measurement.swift", + "kind": "IntegerLiteral", + "offset": 1568, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Measurement.swift", + "kind": "BooleanLiteral", + "offset": 1607, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MeasureMinMaxSumCountAggregator.swift", + "kind": "IntegerLiteral", + "offset": 500, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MeasureMinMaxSumCountAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1255, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MeasureMinMaxSumCountAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1311, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MeasureMinMaxSumCountAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1673, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MeasureMinMaxSumCountAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1691, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 260, + "length": 8, + "value": "\"ARDAMS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 291, + "length": 10, + "value": "\"ARDAMSv0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 324, + "length": 10, + "value": "\"ARDAMSa0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 10, + "value": "\"ARDAMSb0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 260, + "length": 8, + "value": "\"ARDAMS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 291, + "length": 10, + "value": "\"ARDAMSv0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 324, + "length": 10, + "value": "\"ARDAMSa0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 10, + "value": "\"ARDAMSb0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 1125, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "IntegerLiteral", + "offset": 2552, + "length": 10, + "value": "1000000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 3064, + "length": 9, + "value": "\"started\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 3304, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 3323, + "length": 147, + "value": "\"trackId: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 3358, + "length": 2, + "value": "\" || kind: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 3390, + "length": 2, + "value": "\" || source: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 3426, + "length": 2, + "value": "\" || isEnabled: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 3469, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 3963, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 5757, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 6003, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "IntegerLiteral", + "offset": 6443, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 6618, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "IntegerLiteral", + "offset": 7131, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 7549, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 7755, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 7939, + "length": 59, + "value": "\"Error in PeerConnectionUtils :: stopCapture() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 7997, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 8010, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 9181, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "IntegerLiteral", + "offset": 9201, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 9291, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "IntegerLiteral", + "offset": 9312, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 9405, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "IntegerLiteral", + "offset": 9429, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "IntegerLiteral", + "offset": 9716, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 9891, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 11045, + "length": 12, + "value": "\"authorised\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 12309, + "length": 12, + "value": "\"authorised\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "Array", + "offset": 13053, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "IntegerLiteral", + "offset": 1179, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "StringLiteral", + "offset": 1190, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "BooleanLiteral", + "offset": 1211, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "BooleanLiteral", + "offset": 1221, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "StringLiteral", + "offset": 1492, + "length": 43, + "value": "\"Error in Stream() :: producer \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "StringLiteral", + "offset": 1534, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "StringLiteral", + "offset": 1547, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "BooleanLiteral", + "offset": 1622, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "StringLiteral", + "offset": 2118, + "length": 43, + "value": "\"Error in Stream() :: consumer \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "StringLiteral", + "offset": 2160, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "StringLiteral", + "offset": 2173, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "Dictionary", + "offset": 600, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "Dictionary", + "offset": 753, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 1578, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 1764, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 1800, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 2314, + "length": 7, + "value": "\"Guest\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 2408, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 2526, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 2564, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 2607, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "IntegerLiteral", + "offset": 7728, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "IntegerLiteral", + "offset": 7734, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "IntegerLiteral", + "offset": 7744, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "IntegerLiteral", + "offset": 7755, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 7887, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 7964, + "length": 27, + "value": "\"RTCScreenSharingExtension\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 8362, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 8513, + "length": 35, + "value": "\"videosdk.flutter.startScreenShare\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 8600, + "length": 34, + "value": "\"videosdk.flutter.stopScreenShare\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 10429, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 11162, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "Dictionary", + "offset": 14314, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 14378, + "length": 13, + "value": "\"multiStream\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 14428, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 14457, + "length": 13, + "value": "\"customTrack\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 14543, + "length": 13, + "value": "\"customTrack\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 14560, + "length": 26, + "value": "\"Not Specify Custom Track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 14706, + "length": 46, + "value": "\"startVideo() Calling With Custom Video Track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 14755, + "length": 49, + "value": "\"startVideo() Calling Without Custom Video Track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 15834, + "length": 26, + "value": "\"Enable Webcam Successful\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 22445, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 22477, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 22588, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 22620, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 22824, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 22865, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 23174, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 23212, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 23299, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 203, + "length": 12, + "value": "\"CONNECTING\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 203, + "length": 12, + "value": "\"CONNECTING\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 336, + "length": 12, + "value": "\"CONFERENCE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 336, + "length": 12, + "value": "\"CONFERENCE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 470, + "length": 4, + "value": "4000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 502, + "length": 4, + "value": "4001" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 4, + "value": "4002" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 567, + "length": 4, + "value": "4003" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 606, + "length": 4, + "value": "4004" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 644, + "length": 4, + "value": "4005" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 680, + "length": 4, + "value": "4006" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 717, + "length": 4, + "value": "4007" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 753, + "length": 4, + "value": "4008" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 792, + "length": 4, + "value": "4009" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 4, + "value": "4010" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 867, + "length": 4, + "value": "4011" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 905, + "length": 4, + "value": "4012" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 945, + "length": 4, + "value": "4013" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 984, + "length": 4, + "value": "4014" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1026, + "length": 4, + "value": "4015" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1059, + "length": 4, + "value": "4016" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1091, + "length": 4, + "value": "4017" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1155, + "length": 4, + "value": "5001" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1189, + "length": 4, + "value": "5002" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1216, + "length": 4, + "value": "5003" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1273, + "length": 4, + "value": "3011" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1311, + "length": 4, + "value": "3012" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1351, + "length": 4, + "value": "3013" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1407, + "length": 4, + "value": "3014" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1463, + "length": 4, + "value": "3015" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1521, + "length": 4, + "value": "3016" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 470, + "length": 4, + "value": "4000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 502, + "length": 4, + "value": "4001" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 4, + "value": "4002" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 567, + "length": 4, + "value": "4003" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 606, + "length": 4, + "value": "4004" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 644, + "length": 4, + "value": "4005" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 680, + "length": 4, + "value": "4006" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 717, + "length": 4, + "value": "4007" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 753, + "length": 4, + "value": "4008" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 792, + "length": 4, + "value": "4009" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 4, + "value": "4010" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 867, + "length": 4, + "value": "4011" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 905, + "length": 4, + "value": "4012" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 945, + "length": 4, + "value": "4013" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 984, + "length": 4, + "value": "4014" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1026, + "length": 4, + "value": "4015" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1059, + "length": 4, + "value": "4016" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1091, + "length": 4, + "value": "4017" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1155, + "length": 4, + "value": "5001" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1189, + "length": 4, + "value": "5002" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1216, + "length": 4, + "value": "5003" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1273, + "length": 4, + "value": "3011" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1311, + "length": 4, + "value": "3012" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1351, + "length": 4, + "value": "3013" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1407, + "length": 4, + "value": "3014" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1463, + "length": 4, + "value": "3015" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1521, + "length": 4, + "value": "3016" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 470, + "length": 4, + "value": "4000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 502, + "length": 4, + "value": "4001" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 4, + "value": "4002" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 567, + "length": 4, + "value": "4003" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 606, + "length": 4, + "value": "4004" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 644, + "length": 4, + "value": "4005" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 680, + "length": 4, + "value": "4006" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 717, + "length": 4, + "value": "4007" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 753, + "length": 4, + "value": "4008" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 792, + "length": 4, + "value": "4009" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 4, + "value": "4010" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 867, + "length": 4, + "value": "4011" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 905, + "length": 4, + "value": "4012" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 945, + "length": 4, + "value": "4013" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 984, + "length": 4, + "value": "4014" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1026, + "length": 4, + "value": "4015" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1059, + "length": 4, + "value": "4016" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1091, + "length": 4, + "value": "4017" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1155, + "length": 4, + "value": "5001" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1189, + "length": 4, + "value": "5002" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1216, + "length": 4, + "value": "5003" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1273, + "length": 4, + "value": "3011" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1311, + "length": 4, + "value": "3012" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1351, + "length": 4, + "value": "3013" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1407, + "length": 4, + "value": "3014" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1463, + "length": 4, + "value": "3015" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1521, + "length": 4, + "value": "3016" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 1610, + "length": 13, + "value": "\"HLS_STARTED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 1610, + "length": 13, + "value": "\"HLS_STARTED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 1780, + "length": 19, + "value": "\"RECORDING_STARTED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 1780, + "length": 19, + "value": "\"RECORDING_STARTED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 1963, + "length": 20, + "value": "\"LIVESTREAM_STARTED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 1963, + "length": 20, + "value": "\"LIVESTREAM_STARTED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message.swift", + "kind": "BooleanLiteral", + "offset": 5374, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message.swift", + "kind": "BooleanLiteral", + "offset": 7865, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions.swift", + "kind": "BooleanLiteral", + "offset": 1359, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions.swift", + "kind": "IntegerLiteral", + "offset": 1964, + "length": 10, + "value": "0x7fffffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions.swift", + "kind": "IntegerLiteral", + "offset": 2062, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions.swift", + "kind": "IntegerLiteral", + "offset": 2223, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions.swift", + "kind": "BooleanLiteral", + "offset": 4172, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions.swift", + "kind": "BooleanLiteral", + "offset": 5547, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions.swift", + "kind": "IntegerLiteral", + "offset": 6368, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions_Data.swift", + "kind": "BooleanLiteral", + "offset": 1579, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions_Data.swift", + "kind": "BooleanLiteral", + "offset": 2888, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions_Data.swift", + "kind": "BooleanLiteral", + "offset": 3669, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+JSONAdditions.swift", + "kind": "IntegerLiteral", + "offset": 5136, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+JSONArrayAdditions.swift", + "kind": "IntegerLiteral", + "offset": 5679, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+TextFormatAdditions.swift", + "kind": "IntegerLiteral", + "offset": 3106, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/Meter.swift", + "kind": "BooleanLiteral", + "offset": 5781, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/Meter.swift", + "kind": "BooleanLiteral", + "offset": 5967, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/Meter.swift", + "kind": "BooleanLiteral", + "offset": 6143, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/Meter.swift", + "kind": "BooleanLiteral", + "offset": 6328, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/Meter.swift", + "kind": "BooleanLiteral", + "offset": 6551, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/Meter.swift", + "kind": "BooleanLiteral", + "offset": 6806, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/MeterProviderSdk.swift", + "kind": "IntegerLiteral", + "offset": 314, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/MeterProviderSdk.swift", + "kind": "BooleanLiteral", + "offset": 1365, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/MeterProviderSdk.swift", + "kind": "StringLiteral", + "offset": 3164, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/MeterProviderSdk.swift", + "kind": "StringLiteral", + "offset": 3227, + "length": 9, + "value": "\"version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "BooleanLiteral", + "offset": 1070, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "BooleanLiteral", + "offset": 2582, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 5541, + "length": 102, + "value": "\"Expected [SumData] type for doubleGauge aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 5642, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 6077, + "length": 96, + "value": "\"Expected [SumData] type for intGauge aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 6172, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 6609, + "length": 100, + "value": "\"Expected [SumData] type for doubleSum aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 6708, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 7155, + "length": 108, + "value": "\"Expected [SummaryData] type for doubleSummary aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 7262, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 7695, + "length": 94, + "value": "\"Expected [SumData] type for intSum aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 7788, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 8229, + "length": 102, + "value": "\"Expected [SummaryData] type for intSummary aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 8330, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 8785, + "length": 112, + "value": "\"Expected [HistogramData] type for doubleHistogram aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 8896, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 9345, + "length": 106, + "value": "\"Expected [HistogramData] type for intHistogram aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 9450, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 5449, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 5481, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 5507, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 5661, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 5687, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 5718, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 7157, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 7186, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 7346, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 7386, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 8880, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 9948, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 11396, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 20583, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 21098, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 21449, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 21996, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 22856, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 23999, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 24778, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 25030, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 25237, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 25568, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 25718, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 25941, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 26095, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 28415, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 28667, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 28874, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 29092, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 29672, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 30316, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 31009, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 31188, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 31342, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 31456, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 31847, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 33241, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 33493, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 33700, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 33953, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 34533, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 35511, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 35998, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 37309, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 37487, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 37602, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 37993, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 38682, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 39235, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 39767, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 40903, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 41155, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 41362, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 41471, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 42025, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 42287, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 42441, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 43238, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 43385, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 44279, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 44486, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 44849, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 44999, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 48542, + "length": 32, + "value": "\"opentelemetry.proto.metrics.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 48719, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 48735, + "length": 37, + "value": "\"AGGREGATION_TEMPORALITY_UNSPECIFIED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 48779, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 48795, + "length": 31, + "value": "\"AGGREGATION_TEMPORALITY_DELTA\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 48833, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 48849, + "length": 36, + "value": "\"AGGREGATION_TEMPORALITY_CUMULATIVE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 49030, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 49046, + "length": 29, + "value": "\"DATA_POINT_FLAGS_DO_NOT_USE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 49082, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 49098, + "length": 41, + "value": "\"DATA_POINT_FLAGS_NO_RECORDED_VALUE_MASK\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 49329, + "length": 14, + "value": "\".MetricsData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 49400, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 49420, + "length": 18, + "value": "\"resource_metrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 49853, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 50162, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 50416, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 50477, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 50495, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 50691, + "length": 18, + "value": "\".ResourceMetrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 50766, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 50782, + "length": 10, + "value": "\"resource\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 50799, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 50819, + "length": 15, + "value": "\"scope_metrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 50841, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 50861, + "length": 12, + "value": "\"schema_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 51288, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 51375, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 51465, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 52043, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 52175, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 52296, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 52546, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 52605, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 52658, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 52719, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 52737, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 52930, + "length": 15, + "value": "\".ScopeMetrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 53002, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 53018, + "length": 7, + "value": "\"scope\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 53032, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 53048, + "length": 9, + "value": "\"metrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 53064, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 53084, + "length": 12, + "value": "\"schema_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 53511, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 53595, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 53680, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 54255, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 54377, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 54498, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 54736, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 54785, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 54838, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 54899, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 54917, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55104, + "length": 9, + "value": "\".Metric\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55170, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55186, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55199, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55215, + "length": 13, + "value": "\"description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55235, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55251, + "length": 6, + "value": "\"unit\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55264, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55280, + "length": 7, + "value": "\"gauge\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55294, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55310, + "length": 5, + "value": "\"sum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55322, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55338, + "length": 11, + "value": "\"histogram\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55356, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55377, + "length": 23, + "value": "\"exponential_histogram\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55407, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55424, + "length": 9, + "value": "\"summary\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55848, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55929, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 56019, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 56100, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 56190, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 56259, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 56534, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 56622, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 56691, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 56962, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 57056, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 57125, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 57408, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 57514, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 57583, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 57888, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 57981, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 58050, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 58818, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 58947, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 59058, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 59256, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 59429, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 59614, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 59821, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 60003, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 60254, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 60315, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 60358, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 60401, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 60462, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 60480, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 60666, + "length": 8, + "value": "\".Gauge\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 60731, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 60751, + "length": 13, + "value": "\"data_points\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 61179, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 61473, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 61705, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 61766, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 61784, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 61968, + "length": 6, + "value": "\".Sum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 62031, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 62051, + "length": 13, + "value": "\"data_points\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 62071, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 62091, + "length": 25, + "value": "\"aggregation_temporality\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 62123, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 62143, + "length": 14, + "value": "\"is_monotonic\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 62572, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 62660, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 62757, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 63049, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 63201, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 63237, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 63324, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 63552, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 63631, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 63688, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 63749, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 63767, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 63957, + "length": 12, + "value": "\".Histogram\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 64026, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 64046, + "length": 13, + "value": "\"data_points\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 64066, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 64086, + "length": 25, + "value": "\"aggregation_temporality\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 64526, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 64614, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 64917, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 65069, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 65309, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 65388, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 65449, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 65467, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 65668, + "length": 23, + "value": "\".ExponentialHistogram\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 65748, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 65768, + "length": 13, + "value": "\"data_points\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 65788, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 65808, + "length": 25, + "value": "\"aggregation_temporality\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 66248, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 66336, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 66639, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 66791, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 67053, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 67132, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 67193, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 67211, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 67399, + "length": 10, + "value": "\".Summary\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 67466, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 67486, + "length": 13, + "value": "\"data_points\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 67914, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 68208, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 68444, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 68505, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 68523, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 68719, + "length": 18, + "value": "\".NumberDataPoint\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 68794, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 68810, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 68829, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 68849, + "length": 22, + "value": "\"start_time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 68878, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 68898, + "length": 16, + "value": "\"time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 68921, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 68941, + "length": 11, + "value": "\"as_double\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 68959, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 68979, + "length": 8, + "value": "\"as_int\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 68994, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 69010, + "length": 11, + "value": "\"exemplars\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 69028, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 69044, + "length": 7, + "value": "\"flags\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 69466, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 69561, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 69651, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 69900, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 69987, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 70234, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 70322, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 70824, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 70916, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 70953, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 71040, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 71166, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 71292, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 71417, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 71545, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 71575, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 71654, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 71906, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 71975, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 72034, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 72079, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 72132, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 72177, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 72238, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 72256, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72455, + "length": 21, + "value": "\".HistogramDataPoint\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72533, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72549, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72568, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72588, + "length": 22, + "value": "\"start_time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72617, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72637, + "length": 16, + "value": "\"time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72660, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72676, + "length": 7, + "value": "\"count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72690, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72706, + "length": 5, + "value": "\"sum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72718, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72738, + "length": 15, + "value": "\"bucket_counts\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72760, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72780, + "length": 17, + "value": "\"explicit_bounds\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72804, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72820, + "length": 11, + "value": "\"exemplars\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72838, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72855, + "length": 7, + "value": "\"flags\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72869, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72886, + "length": 5, + "value": "\"min\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72898, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72915, + "length": 5, + "value": "\"max\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73335, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73430, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73520, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73603, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73684, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73774, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73865, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73952, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74040, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74123, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74205, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74707, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74799, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74836, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74923, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74953, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75033, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75141, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75271, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75400, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75522, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75646, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75676, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75755, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75864, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75977, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76240, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76309, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76368, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76413, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76456, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76515, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76578, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76631, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76676, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76719, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76762, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76823, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76841, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77051, + "length": 32, + "value": "\".ExponentialHistogramDataPoint\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77140, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77156, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77175, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77195, + "length": 22, + "value": "\"start_time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77224, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77244, + "length": 16, + "value": "\"time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77267, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77283, + "length": 7, + "value": "\"count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77297, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77313, + "length": 5, + "value": "\"sum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77325, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77341, + "length": 7, + "value": "\"scale\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77355, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77375, + "length": 12, + "value": "\"zero_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77394, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77410, + "length": 10, + "value": "\"positive\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77427, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77443, + "length": 10, + "value": "\"negative\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77460, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77477, + "length": 7, + "value": "\"flags\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77491, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77508, + "length": 11, + "value": "\"exemplars\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77526, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77543, + "length": 5, + "value": "\"min\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77555, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77572, + "length": 5, + "value": "\"max\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77584, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77605, + "length": 16, + "value": "\"zero_threshold\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78036, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78124, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78219, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78309, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78392, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78473, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78555, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78642, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78729, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78816, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78899, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78987, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 79069, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 79151, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 79744, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 79786, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 79878, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 79915, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80002, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80032, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80112, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80220, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80254, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80333, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80367, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80451, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80565, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80683, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80717, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80796, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80919, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 81028, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 81141, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 81184, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 81271, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81552, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81621, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81680, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81725, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81768, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81813, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81866, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81919, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81972, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 82017, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 82070, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 82113, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 82156, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 82217, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 82278, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 82296, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 82574, + "length": 10, + "value": "\".Buckets\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 82641, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 82657, + "length": 8, + "value": "\"offset\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 82672, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 82692, + "length": 15, + "value": "\"bucket_counts\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 83122, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 83205, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 83407, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 83487, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 83612, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 83900, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 83959, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 84020, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 84038, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84235, + "length": 19, + "value": "\".SummaryDataPoint\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84311, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84327, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84346, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84366, + "length": 22, + "value": "\"start_time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84395, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84415, + "length": 16, + "value": "\"time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84438, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84454, + "length": 7, + "value": "\"count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84468, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84484, + "length": 5, + "value": "\"sum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84496, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84516, + "length": 17, + "value": "\"quantile_values\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84540, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84556, + "length": 7, + "value": "\"flags\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84978, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85073, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85163, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85246, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85326, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85418, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85506, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85712, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85804, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85841, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85928, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85958, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 86038, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 86066, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 86143, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 86275, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 86399, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 86429, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 86508, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 86762, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 86831, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 86890, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 86935, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 86976, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 87039, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 87084, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 87145, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 87163, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 87423, + "length": 18, + "value": "\".ValueAtQuantile\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 87498, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 87514, + "length": 10, + "value": "\"quantile\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 87531, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 87547, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 87969, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 88054, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 88251, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 88333, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 88363, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 88442, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 88724, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 88769, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 88830, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 88848, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 89037, + "length": 11, + "value": "\".Exemplar\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89105, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 89125, + "length": 21, + "value": "\"filtered_attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89153, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 89173, + "length": 16, + "value": "\"time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89196, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 89216, + "length": 11, + "value": "\"as_double\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89234, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 89254, + "length": 8, + "value": "\"as_int\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89269, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 89289, + "length": 9, + "value": "\"span_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89305, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 89325, + "length": 10, + "value": "\"trace_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89750, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89840, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 90089, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 90171, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 90254, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 90501, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 91012, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 91099, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 91225, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 91343, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 91459, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 91584, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 91728, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 91982, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 92041, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 92086, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 92133, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 92182, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 92243, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 92261, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "Array", + "offset": 2124, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 4525, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 5591, + "length": 42, + "value": "\"opentelemetry.proto.collector.metrics.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 5841, + "length": 30, + "value": "\".ExportMetricsServiceRequest\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 5928, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 5948, + "length": 18, + "value": "\"resource_metrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 6381, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 6690, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 6996, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 7057, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 7075, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 7294, + "length": 31, + "value": "\".ExportMetricsServiceResponse\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 7382, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 7402, + "length": 17, + "value": "\"partial_success\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 7834, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 8425, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8737, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8798, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8816, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 9034, + "length": 30, + "value": "\".ExportMetricsPartialSuccess\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9121, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 9141, + "length": 22, + "value": "\"rejected_data_points\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9170, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 9190, + "length": 15, + "value": "\"error_message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9620, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9714, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9928, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 10019, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 10146, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10458, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10517, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10578, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10596, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/metric\/MetricsAdapter.swift", + "kind": "StringLiteral", + "offset": 10456, + "length": 6, + "value": "\"unit\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/MetricStorage.swift", + "kind": "IntegerLiteral", + "offset": 177, + "length": 5, + "value": "2000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/MonitoringObject.swift", + "kind": "Array", + "offset": 591, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/MonitoringObject.swift", + "kind": "Array", + "offset": 717, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/MonitoringObject.swift", + "kind": "Array", + "offset": 745, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/MultiSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 829, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/MultiSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 916, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "BooleanLiteral", + "offset": 1131, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "StringLiteral", + "offset": 1170, + "length": 3, + "value": "\"_\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "BooleanLiteral", + "offset": 1205, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "BooleanLiteral", + "offset": 1324, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "StringLiteral", + "offset": 4754, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "BooleanLiteral", + "offset": 5430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "Dictionary", + "offset": 6716, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "Dictionary", + "offset": 6835, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "Dictionary", + "offset": 7065, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/NoopSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 188, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/NoopSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 218, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/metric\/OltpHTTPMetricExporter.swift", + "kind": "StringLiteral", + "offset": 174, + "length": 34, + "value": "\"http:\/\/localhost:4318\/v1\/metrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/metric\/OltpHTTPMetricExporter.swift", + "kind": "Array", + "offset": 325, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/metric\/OltpHTTPMetricExporter.swift", + "kind": "Array", + "offset": 781, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/metric\/OltpHTTPMetricExporter.swift", + "kind": "IntegerLiteral", + "offset": 1874, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/OpenTelemetry.swift", + "kind": "StringLiteral", + "offset": 374, + "length": 9, + "value": "\"v1.20.0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/OtlpConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 214, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/OtlpHttpExporterBase.swift", + "kind": "StringLiteral", + "offset": 773, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/OtlpHttpExporterBase.swift", + "kind": "StringLiteral", + "offset": 975, + "length": 24, + "value": "\"application\/x-protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/OtlpHttpExporterBase.swift", + "kind": "StringLiteral", + "offset": 1021, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/OtlpHttpExporterBase.swift", + "kind": "StringLiteral", + "offset": 1097, + "length": 15, + "value": "\"Authorization\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/OtlpHttpExporterBase.swift", + "kind": "StringLiteral", + "offset": 1150, + "length": 34, + "value": "\"Error serializing body: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/OtlpHttpExporterBase.swift", + "kind": "StringLiteral", + "offset": 1183, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/logs\/OtlpHttpLogExporter.swift", + "kind": "StringLiteral", + "offset": 175, + "length": 31, + "value": "\"http:\/\/localhost:4318\/v1\/logs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/logs\/OtlpHttpLogExporter.swift", + "kind": "Array", + "offset": 338, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/logs\/OtlpHttpLogExporter.swift", + "kind": "Array", + "offset": 782, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/logs\/OtlpHttpLogExporter.swift", + "kind": "IntegerLiteral", + "offset": 1977, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/trace\/OtlpHttpTraceExporter.swift", + "kind": "StringLiteral", + "offset": 173, + "length": 33, + "value": "\"http:\/\/localhost:4318\/v1\/traces\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/trace\/OtlpHttpTraceExporter.swift", + "kind": "Array", + "offset": 320, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/trace\/OtlpHttpTraceExporter.swift", + "kind": "Array", + "offset": 726, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/trace\/OtlpHttpTraceExporter.swift", + "kind": "IntegerLiteral", + "offset": 1743, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/OTPCConstants.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 12, + "value": "\"User-Agent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "Dictionary", + "offset": 1227, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 1744, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3229, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3268, + "length": 10, + "value": "\"ARDAMSa0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "Dictionary", + "offset": 3372, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3453, + "length": 26, + "value": "\"Error in getAudioStats()\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3490, + "length": 7, + "value": "\"DEBUG\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3703, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3742, + "length": 10, + "value": "\"ARDAMSv0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "Dictionary", + "offset": 3846, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3927, + "length": 26, + "value": "\"Error in getVideoStats()\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3964, + "length": 7, + "value": "\"DEBUG\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 5740, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 5861, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 5874, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 5996, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6009, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6097, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6111, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6197, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6210, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 6291, + "length": 48, + "value": "\"error in pin() \n Unknown pin type \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 6337, + "length": 1, + "value": "\")\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 6351, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6602, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6616, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6739, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6753, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6844, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6931, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 7012, + "length": 50, + "value": "\"error in pin() \n Unknown unpin type \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 7060, + "length": 1, + "value": "\")\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 7074, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 7245, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 7302, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 7350, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 7696, + "length": 36, + "value": "\"Error in setPinState() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 7731, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 7744, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "IntegerLiteral", + "offset": 8117, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "IntegerLiteral", + "offset": 8512, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "IntegerLiteral", + "offset": 8786, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "IntegerLiteral", + "offset": 8790, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/ParticipantPinState.swift", + "kind": "BooleanLiteral", + "offset": 298, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/ParticipantPinState.swift", + "kind": "BooleanLiteral", + "offset": 319, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/Peer.swift", + "kind": "StringLiteral", + "offset": 513, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/Peer.swift", + "kind": "StringLiteral", + "offset": 533, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/Peer.swift", + "kind": "StringLiteral", + "offset": 563, + "length": 13, + "value": "\"displayName\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/Peer.swift", + "kind": "StringLiteral", + "offset": 592, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/Peer.swift", + "kind": "StringLiteral", + "offset": 617, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/Peer.swift", + "kind": "StringLiteral", + "offset": 641, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Probe.swift", + "kind": "IntegerLiteral", + "offset": 1002, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Probe.swift", + "kind": "IntegerLiteral", + "offset": 1356, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Probe.swift", + "kind": "BooleanLiteral", + "offset": 1651, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/PropagatedSpan.swift", + "kind": "StringLiteral", + "offset": 901, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/PropagatedSpan.swift", + "kind": "StringLiteral", + "offset": 1130, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/PropagatedSpan.swift", + "kind": "StringLiteral", + "offset": 1426, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/PropagatedSpan.swift", + "kind": "BooleanLiteral", + "offset": 2130, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/PropagatedSpan.swift", + "kind": "StringLiteral", + "offset": 2288, + "length": 16, + "value": "\"PropagatedSpan\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/PropagatedSpanBuilder.swift", + "kind": "BooleanLiteral", + "offset": 258, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/PropagatedSpanBuilder.swift", + "kind": "BooleanLiteral", + "offset": 1450, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "Dictionary", + "offset": 307, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "Dictionary", + "offset": 387, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "Dictionary", + "offset": 800, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "StringLiteral", + "offset": 1207, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "StringLiteral", + "offset": 1253, + "length": 10, + "value": "\"messages\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "StringLiteral", + "offset": 1472, + "length": 37, + "value": "\"Error in subscribe() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "StringLiteral", + "offset": 1508, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "StringLiteral", + "offset": 1521, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "IntegerLiteral", + "offset": 2123, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "Array", + "offset": 2532, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "Array", + "offset": 2810, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 592, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 636, + "length": 7, + "value": "\"topic\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 659, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 685, + "length": 9, + "value": "\"message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 710, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 737, + "length": 10, + "value": "\"senderId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 763, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 792, + "length": 12, + "value": "\"senderName\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 820, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 848, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 875, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 124, + "length": 13, + "value": "\"VideoSDKRTC.PubSubMessage\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/PushMetricController.swift", + "kind": "StringLiteral", + "offset": 270, + "length": 56, + "value": "\"org.opentelemetry.PushMetricController.pushMetricQueue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/PushMetricController.swift", + "kind": "BooleanLiteral", + "offset": 975, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawCounterMetricSdk.swift", + "kind": "BooleanLiteral", + "offset": 436, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawCounterMetricSdk.swift", + "kind": "BooleanLiteral", + "offset": 644, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawCounterMetricSdkBase.swift", + "kind": "BooleanLiteral", + "offset": 708, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawCounterMetricSdkBase.swift", + "kind": "BooleanLiteral", + "offset": 2110, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawHistogramMetricSdk.swift", + "kind": "BooleanLiteral", + "offset": 503, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawHistogramMetricSdk.swift", + "kind": "BooleanLiteral", + "offset": 840, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawHistogramMetricSdkBase.swift", + "kind": "BooleanLiteral", + "offset": 844, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawHistogramMetricSdkBase.swift", + "kind": "BooleanLiteral", + "offset": 998, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "BooleanLiteral", + "offset": 253, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "StringLiteral", + "offset": 322, + "length": 64, + "value": "\"org.opentelemetry.RecordEventsReadableSpan.internalStatusQueue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "StringLiteral", + "offset": 570, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "IntegerLiteral", + "offset": 2686, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "IntegerLiteral", + "offset": 2773, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "BooleanLiteral", + "offset": 3659, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "BooleanLiteral", + "offset": 3717, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "IntegerLiteral", + "offset": 10458, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "IntegerLiteral", + "offset": 10550, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "IntegerLiteral", + "offset": 11947, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "BooleanLiteral", + "offset": 12197, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "BooleanLiteral", + "offset": 12243, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "BooleanLiteral", + "offset": 12267, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "BooleanLiteral", + "offset": 12454, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "StringLiteral", + "offset": 12680, + "length": 28, + "value": "\"RecordEventsReadableSpan{}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/RegisteredReader.swift", + "kind": "IntegerLiteral", + "offset": 208, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/RegisteredReader.swift", + "kind": "IntegerLiteral", + "offset": 374, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/RegisteredReader.swift", + "kind": "BooleanLiteral", + "offset": 798, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "IntegerLiteral", + "offset": 265, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "IntegerLiteral", + "offset": 302, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "IntegerLiteral", + "offset": 329, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "IntegerLiteral", + "offset": 1745, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "IntegerLiteral", + "offset": 1769, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "IntegerLiteral", + "offset": 1818, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "BooleanLiteral", + "offset": 2137, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "BooleanLiteral", + "offset": 2176, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "IntegerLiteral", + "offset": 342, + "length": 3, + "value": "255" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "StringLiteral", + "offset": 675, + "length": 35, + "value": "\"unknown_service:\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "StringLiteral", + "offset": 709, + "length": 3, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "StringLiteral", + "offset": 812, + "length": 15, + "value": "\"opentelemetry\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "StringLiteral", + "offset": 933, + "length": 7, + "value": "\"swift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "StringLiteral", + "offset": 1045, + "length": 7, + "value": "\"1.0.0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "BooleanLiteral", + "offset": 2521, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "BooleanLiteral", + "offset": 2566, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "Array", + "offset": 1908, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 2084, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "StringLiteral", + "offset": 2433, + "length": 33, + "value": "\"opentelemetry.proto.resource.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "StringLiteral", + "offset": 2646, + "length": 11, + "value": "\".Resource\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 2714, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "StringLiteral", + "offset": 2730, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 2749, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "StringLiteral", + "offset": 2769, + "length": 26, + "value": "\"dropped_attributes_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 3210, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 3298, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 3603, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 3650, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 3746, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "BooleanLiteral", + "offset": 3986, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "BooleanLiteral", + "offset": 4065, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "BooleanLiteral", + "offset": 4126, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "BooleanLiteral", + "offset": 4144, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 655, + "length": 16, + "value": "\"browser.brands\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 1719, + "length": 18, + "value": "\"browser.platform\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 2114, + "length": 16, + "value": "\"browser.mobile\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 2565, + "length": 18, + "value": "\"browser.language\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 21, + "value": "\"user_agent.original\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 3411, + "length": 16, + "value": "\"cloud.provider\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 3701, + "length": 18, + "value": "\"cloud.account.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 4464, + "length": 14, + "value": "\"cloud.region\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 6720, + "length": 19, + "value": "\"cloud.resource_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 7175, + "length": 25, + "value": "\"cloud.availability_zone\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 7504, + "length": 16, + "value": "\"cloud.platform\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 7914, + "length": 23, + "value": "\"aws.ecs.container.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 8260, + "length": 21, + "value": "\"aws.ecs.cluster.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 8590, + "length": 20, + "value": "\"aws.ecs.launchtype\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 8966, + "length": 18, + "value": "\"aws.ecs.task.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 9234, + "length": 21, + "value": "\"aws.ecs.task.family\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 9508, + "length": 23, + "value": "\"aws.ecs.task.revision\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 9777, + "length": 21, + "value": "\"aws.eks.cluster.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 10287, + "length": 21, + "value": "\"aws.log.group.names\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 10756, + "length": 20, + "value": "\"aws.log.group.arns\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 11052, + "length": 22, + "value": "\"aws.log.stream.names\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 11676, + "length": 21, + "value": "\"aws.log.stream.arns\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 11950, + "length": 35, + "value": "\"heroku.release.creation_timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 12231, + "length": 23, + "value": "\"heroku.release.commit\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 12485, + "length": 15, + "value": "\"heroku.app.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 12724, + "length": 16, + "value": "\"container.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13094, + "length": 14, + "value": "\"container.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13418, + "length": 19, + "value": "\"container.runtime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13682, + "length": 22, + "value": "\"container.image.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13896, + "length": 21, + "value": "\"container.image.tag\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 14268, + "length": 24, + "value": "\"deployment.environment\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 15345, + "length": 11, + "value": "\"device.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 15797, + "length": 25, + "value": "\"device.model.identifier\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 16237, + "length": 19, + "value": "\"device.model.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 16692, + "length": 21, + "value": "\"device.manufacturer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 18004, + "length": 11, + "value": "\"faas.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 18942, + "length": 14, + "value": "\"faas.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 19364, + "length": 15, + "value": "\"faas.instance\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 19905, + "length": 17, + "value": "\"faas.max_memory\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 20352, + "length": 9, + "value": "\"host.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 20686, + "length": 11, + "value": "\"host.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 20916, + "length": 11, + "value": "\"host.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 21150, + "length": 11, + "value": "\"host.arch\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 21480, + "length": 17, + "value": "\"host.image.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 21731, + "length": 15, + "value": "\"host.image.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22016, + "length": 20, + "value": "\"host.image.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22244, + "length": 18, + "value": "\"k8s.cluster.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22446, + "length": 15, + "value": "\"k8s.node.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22672, + "length": 14, + "value": "\"k8s.node.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22913, + "length": 20, + "value": "\"k8s.namespace.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 23141, + "length": 13, + "value": "\"k8s.pod.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 23355, + "length": 14, + "value": "\"k8s.pod.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 23701, + "length": 20, + "value": "\"k8s.container.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24088, + "length": 29, + "value": "\"k8s.container.restart_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24346, + "length": 20, + "value": "\"k8s.replicaset.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24575, + "length": 21, + "value": "\"k8s.replicaset.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24825, + "length": 20, + "value": "\"k8s.deployment.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25054, + "length": 21, + "value": "\"k8s.deployment.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25307, + "length": 21, + "value": "\"k8s.statefulset.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25540, + "length": 22, + "value": "\"k8s.statefulset.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25788, + "length": 19, + "value": "\"k8s.daemonset.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26013, + "length": 20, + "value": "\"k8s.daemonset.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26241, + "length": 13, + "value": "\"k8s.job.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26442, + "length": 14, + "value": "\"k8s.job.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26676, + "length": 17, + "value": "\"k8s.cronjob.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26893, + "length": 18, + "value": "\"k8s.cronjob.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 27103, + "length": 9, + "value": "\"os.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 27493, + "length": 16, + "value": "\"os.description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 27767, + "length": 9, + "value": "\"os.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28118, + "length": 12, + "value": "\"os.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28304, + "length": 13, + "value": "\"process.pid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28509, + "length": 20, + "value": "\"process.parent_pid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28892, + "length": 25, + "value": "\"process.executable.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 29292, + "length": 25, + "value": "\"process.executable.path\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 29715, + "length": 17, + "value": "\"process.command\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 30206, + "length": 22, + "value": "\"process.command_line\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 30805, + "length": 22, + "value": "\"process.command_args\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 31037, + "length": 15, + "value": "\"process.owner\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 31361, + "length": 22, + "value": "\"process.runtime.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 31658, + "length": 25, + "value": "\"process.runtime.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 32045, + "length": 29, + "value": "\"process.runtime.description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 32612, + "length": 14, + "value": "\"service.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 33347, + "length": 19, + "value": "\"service.namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 34518, + "length": 21, + "value": "\"service.instance.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 34763, + "length": 17, + "value": "\"service.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35007, + "length": 20, + "value": "\"telemetry.sdk.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35269, + "length": 24, + "value": "\"telemetry.sdk.language\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35511, + "length": 23, + "value": "\"telemetry.sdk.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35776, + "length": 24, + "value": "\"telemetry.auto.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35995, + "length": 16, + "value": "\"webengine.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 36214, + "length": 19, + "value": "\"webengine.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 36564, + "length": 23, + "value": "\"webengine.description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 36858, + "length": 17, + "value": "\"otel.scope.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 37131, + "length": 20, + "value": "\"otel.scope.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 37396, + "length": 19, + "value": "\"otel.library.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 37642, + "length": 22, + "value": "\"otel.library.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 37928, + "length": 15, + "value": "\"alibaba_cloud\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 38049, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 38158, + "length": 7, + "value": "\"azure\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 38273, + "length": 5, + "value": "\"gcp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 38396, + "length": 8, + "value": "\"heroku\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 38505, + "length": 11, + "value": "\"ibm_cloud\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 38625, + "length": 15, + "value": "\"tencent_cloud\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 39143, + "length": 19, + "value": "\"alibaba_cloud_ecs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 39290, + "length": 18, + "value": "\"alibaba_cloud_fc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 39447, + "length": 25, + "value": "\"alibaba_cloud_openshift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 39587, + "length": 9, + "value": "\"aws_ec2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 39715, + "length": 9, + "value": "\"aws_ecs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 39844, + "length": 9, + "value": "\"aws_eks\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 39956, + "length": 12, + "value": "\"aws_lambda\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 40092, + "length": 23, + "value": "\"aws_elastic_beanstalk\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 40225, + "length": 16, + "value": "\"aws_app_runner\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 40368, + "length": 15, + "value": "\"aws_openshift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 40496, + "length": 10, + "value": "\"azure_vm\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 40638, + "length": 27, + "value": "\"azure_container_instances\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 40781, + "length": 11, + "value": "\"azure_aks\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 40905, + "length": 17, + "value": "\"azure_functions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 41038, + "length": 19, + "value": "\"azure_app_service\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 41178, + "length": 17, + "value": "\"azure_openshift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 41328, + "length": 20, + "value": "\"gcp_compute_engine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 41459, + "length": 15, + "value": "\"gcp_cloud_run\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 41613, + "length": 23, + "value": "\"gcp_kubernetes_engine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 41765, + "length": 21, + "value": "\"gcp_cloud_functions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 41911, + "length": 16, + "value": "\"gcp_app_engine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 42056, + "length": 15, + "value": "\"gcp_openshift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 42202, + "length": 21, + "value": "\"ibm_cloud_openshift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 42363, + "length": 19, + "value": "\"tencent_cloud_cvm\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 42527, + "length": 19, + "value": "\"tencent_cloud_eks\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 42690, + "length": 19, + "value": "\"tencent_cloud_scf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43207, + "length": 5, + "value": "\"ec2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43276, + "length": 9, + "value": "\"fargate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43207, + "length": 5, + "value": "\"ec2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43276, + "length": 9, + "value": "\"fargate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43549, + "length": 7, + "value": "\"amd64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43645, + "length": 7, + "value": "\"arm32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43741, + "length": 7, + "value": "\"arm64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43838, + "length": 6, + "value": "\"ia64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43942, + "length": 7, + "value": "\"ppc32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 44047, + "length": 7, + "value": "\"ppc64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 44156, + "length": 7, + "value": "\"s390x\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 44255, + "length": 5, + "value": "\"x86\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 44714, + "length": 9, + "value": "\"windows\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 44810, + "length": 7, + "value": "\"linux\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 44912, + "length": 8, + "value": "\"darwin\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45011, + "length": 9, + "value": "\"freebsd\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45109, + "length": 8, + "value": "\"netbsd\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45208, + "length": 9, + "value": "\"openbsd\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45319, + "length": 14, + "value": "\"dragonflybsd\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45442, + "length": 6, + "value": "\"hpux\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45564, + "length": 5, + "value": "\"aix\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45674, + "length": 9, + "value": "\"solaris\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45771, + "length": 6, + "value": "\"z_os\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 46263, + "length": 5, + "value": "\"cpp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 46371, + "length": 8, + "value": "\"dotnet\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 46482, + "length": 8, + "value": "\"erlang\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 46585, + "length": 4, + "value": "\"go\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 46688, + "length": 6, + "value": "\"java\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 46797, + "length": 8, + "value": "\"nodejs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 46902, + "length": 5, + "value": "\"php\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 47010, + "length": 8, + "value": "\"python\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 47117, + "length": 6, + "value": "\"ruby\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 47224, + "length": 7, + "value": "\"webjs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 47332, + "length": 7, + "value": "\"swift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 655, + "length": 16, + "value": "\"browser.brands\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 1719, + "length": 18, + "value": "\"browser.platform\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 2114, + "length": 16, + "value": "\"browser.mobile\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 2565, + "length": 18, + "value": "\"browser.language\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 21, + "value": "\"user_agent.original\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 3411, + "length": 16, + "value": "\"cloud.provider\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 3701, + "length": 18, + "value": "\"cloud.account.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 4464, + "length": 14, + "value": "\"cloud.region\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 6720, + "length": 19, + "value": "\"cloud.resource_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 7175, + "length": 25, + "value": "\"cloud.availability_zone\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 7504, + "length": 16, + "value": "\"cloud.platform\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 7914, + "length": 23, + "value": "\"aws.ecs.container.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 8260, + "length": 21, + "value": "\"aws.ecs.cluster.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 8590, + "length": 20, + "value": "\"aws.ecs.launchtype\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 8966, + "length": 18, + "value": "\"aws.ecs.task.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 9234, + "length": 21, + "value": "\"aws.ecs.task.family\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 9508, + "length": 23, + "value": "\"aws.ecs.task.revision\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 9777, + "length": 21, + "value": "\"aws.eks.cluster.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 10287, + "length": 21, + "value": "\"aws.log.group.names\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 10756, + "length": 20, + "value": "\"aws.log.group.arns\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 11052, + "length": 22, + "value": "\"aws.log.stream.names\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 11676, + "length": 21, + "value": "\"aws.log.stream.arns\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 11950, + "length": 35, + "value": "\"heroku.release.creation_timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 12231, + "length": 23, + "value": "\"heroku.release.commit\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 12485, + "length": 15, + "value": "\"heroku.app.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 12724, + "length": 16, + "value": "\"container.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13094, + "length": 14, + "value": "\"container.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13418, + "length": 19, + "value": "\"container.runtime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13682, + "length": 22, + "value": "\"container.image.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13896, + "length": 21, + "value": "\"container.image.tag\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 14268, + "length": 24, + "value": "\"deployment.environment\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 15345, + "length": 11, + "value": "\"device.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 15797, + "length": 25, + "value": "\"device.model.identifier\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 16237, + "length": 19, + "value": "\"device.model.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 16692, + "length": 21, + "value": "\"device.manufacturer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 18004, + "length": 11, + "value": "\"faas.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 18942, + "length": 14, + "value": "\"faas.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 19364, + "length": 15, + "value": "\"faas.instance\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 19905, + "length": 17, + "value": "\"faas.max_memory\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 20352, + "length": 9, + "value": "\"host.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 20686, + "length": 11, + "value": "\"host.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 20916, + "length": 11, + "value": "\"host.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 21150, + "length": 11, + "value": "\"host.arch\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 21480, + "length": 17, + "value": "\"host.image.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 21731, + "length": 15, + "value": "\"host.image.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22016, + "length": 20, + "value": "\"host.image.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22244, + "length": 18, + "value": "\"k8s.cluster.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22446, + "length": 15, + "value": "\"k8s.node.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22672, + "length": 14, + "value": "\"k8s.node.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22913, + "length": 20, + "value": "\"k8s.namespace.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 23141, + "length": 13, + "value": "\"k8s.pod.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 23355, + "length": 14, + "value": "\"k8s.pod.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 23701, + "length": 20, + "value": "\"k8s.container.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24088, + "length": 29, + "value": "\"k8s.container.restart_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24346, + "length": 20, + "value": "\"k8s.replicaset.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24575, + "length": 21, + "value": "\"k8s.replicaset.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24825, + "length": 20, + "value": "\"k8s.deployment.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25054, + "length": 21, + "value": "\"k8s.deployment.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25307, + "length": 21, + "value": "\"k8s.statefulset.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25540, + "length": 22, + "value": "\"k8s.statefulset.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25788, + "length": 19, + "value": "\"k8s.daemonset.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26013, + "length": 20, + "value": "\"k8s.daemonset.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26241, + "length": 13, + "value": "\"k8s.job.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26442, + "length": 14, + "value": "\"k8s.job.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26676, + "length": 17, + "value": "\"k8s.cronjob.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26893, + "length": 18, + "value": "\"k8s.cronjob.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 27103, + "length": 9, + "value": "\"os.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 27493, + "length": 16, + "value": "\"os.description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 27767, + "length": 9, + "value": "\"os.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28118, + "length": 12, + "value": "\"os.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28304, + "length": 13, + "value": "\"process.pid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28509, + "length": 20, + "value": "\"process.parent_pid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28892, + "length": 25, + "value": "\"process.executable.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 29292, + "length": 25, + "value": "\"process.executable.path\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 29715, + "length": 17, + "value": "\"process.command\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 30206, + "length": 22, + "value": "\"process.command_line\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 30805, + "length": 22, + "value": "\"process.command_args\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 31037, + "length": 15, + "value": "\"process.owner\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 31361, + "length": 22, + "value": "\"process.runtime.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 31658, + "length": 25, + "value": "\"process.runtime.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 32045, + "length": 29, + "value": "\"process.runtime.description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 32612, + "length": 14, + "value": "\"service.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 33347, + "length": 19, + "value": "\"service.namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 34518, + "length": 21, + "value": "\"service.instance.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 34763, + "length": 17, + "value": "\"service.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35007, + "length": 20, + "value": "\"telemetry.sdk.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35269, + "length": 24, + "value": "\"telemetry.sdk.language\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35511, + "length": 23, + "value": "\"telemetry.sdk.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35776, + "length": 24, + "value": "\"telemetry.auto.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35995, + "length": 16, + "value": "\"webengine.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 36214, + "length": 19, + "value": "\"webengine.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 36564, + "length": 23, + "value": "\"webengine.description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 36858, + "length": 17, + "value": "\"otel.scope.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 37131, + "length": 20, + "value": "\"otel.scope.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 37396, + "length": 19, + "value": "\"otel.library.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 37642, + "length": 22, + "value": "\"otel.library.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 942, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 1689, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 1733, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 1920, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 1958, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 2042, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 2083, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 2115, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 2148, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 2619, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 2651, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 2846, + "length": 13, + "value": "\"RoomMetrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 773, + "length": 10, + "value": "\"VideoSDKRTC.RoomClient\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3087, + "length": 15, + "value": "\"consumerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 3125, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3168, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3290, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3417, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3491, + "length": 18, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3508, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3576, + "length": 15, + "value": "\"consumerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3640, + "length": 15, + "value": "\"consumerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 3659, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 3843, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 3989, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 4118, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 4216, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 4336, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 4461, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 4466, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 4851, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 4967, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 5094, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 5168, + "length": 18, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 5185, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 5253, + "length": 15, + "value": "\"consumerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 5317, + "length": 15, + "value": "\"consumerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 5336, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 5549, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 5724, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 5853, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 5951, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 6060, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 6196, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 6201, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 6583, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 6621, + "length": 38, + "value": "\"ERR :: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 6658, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 6789, + "length": 15, + "value": "\"producerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 6842, + "length": 15, + "value": "\"producerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 6861, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 6917, + "length": 15, + "value": "\"producerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 6955, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 6988, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7036, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 7047, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7164, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 7170, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7225, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7397, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 7538, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 7543, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7589, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7703, + "length": 15, + "value": "\"producerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7790, + "length": 15, + "value": "\"producerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7840, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7888, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 7899, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7966, + "length": 15, + "value": "\"producerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8016, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8064, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 8075, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8203, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 8209, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8264, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8436, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 8632, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 8637, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8834, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8874, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8911, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 8959, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8990, + "length": 7, + "value": "\"stats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 9111, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9149, + "length": 38, + "value": "\"ERR :: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9186, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9549, + "length": 31, + "value": "\"Meeting is in CONNECTED State\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9834, + "length": 9, + "value": "\"baseUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9859, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9911, + "length": 15, + "value": "\"observability\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 9949, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9954, + "length": 5, + "value": "\"jwt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9975, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 10032, + "length": 15, + "value": "\"observability\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 10070, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 10075, + "length": 8, + "value": "\"traces\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 10106, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 10162, + "length": 15, + "value": "\"observability\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 10200, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 10205, + "length": 6, + "value": "\"logs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 10234, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 10294, + "length": 15, + "value": "\"observability\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 10332, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 10337, + "length": 10, + "value": "\"metaData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 10370, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 10992, + "length": 12, + "value": "\"iOS(2.1.0)\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11247, + "length": 32, + "value": "\"Meeting is in CONNECTING State\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 11293, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 11384, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11419, + "length": 11, + "value": "\"modelName\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11486, + "length": 7, + "value": "\"brand\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11497, + "length": 7, + "value": "\"Apple\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11536, + "length": 11, + "value": "\"osVersion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 11634, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11669, + "length": 9, + "value": "\"sdkType\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11682, + "length": 5, + "value": "\"iOS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11719, + "length": 12, + "value": "\"sdkVersion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11778, + "length": 10, + "value": "\"platform\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11792, + "length": 5, + "value": "\"iOS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11829, + "length": 17, + "value": "\"deviceUserAgent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11876, + "length": 7, + "value": "\"model\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11885, + "length": 25, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11909, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11978, + "length": 11, + "value": "\"osVersion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 12075, + "length": 12, + "value": "\"deviceInfo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 12133, + "length": 13, + "value": "\"displayName\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 12274, + "length": 24, + "value": "\"customCameraVideoTrack\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 12377, + "length": 13, + "value": "\"multiStream\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 12438, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 12497, + "length": 6, + "value": "\"mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 12616, + "length": 16, + "value": "\"Join() Calling\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 12978, + "length": 28, + "value": "\"Meeting is in FAILED State\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 13036, + "length": 26, + "value": "\"Protoo Connection Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 13402, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 13932, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14095, + "length": 29, + "value": "\"Loading Router Capabilities\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14139, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14331, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 14360, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14410, + "length": 18, + "value": "\"headerExtensions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14503, + "length": 5, + "value": "\"uri\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14524, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14531, + "length": 28, + "value": "\"urn:3gpp:video-orientation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14586, + "length": 18, + "value": "\"headerExtensions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14653, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14757, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 15093, + "length": 47, + "value": "\"Router Capabilities Loaded \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 15139, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 15493, + "length": 42, + "value": "\"setupDeviceAndTransports Error: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 15534, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 15696, + "length": 23, + "value": "\"Create Send Transport\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 16760, + "length": 15, + "value": "\"sendTransport\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 16972, + "length": 37, + "value": "\"Send Transport Created Successfully\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 17061, + "length": 38, + "value": "\"createSendTransport Error : \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 17098, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 17213, + "length": 46, + "value": "\"error while creating sendTransport: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 17258, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 17271, + "length": 46, + "value": "\"error while creating sendTransport: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 17316, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 17481, + "length": 26, + "value": "\"Create Receive Transport\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18452, + "length": 11, + "value": "\"transport\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18643, + "length": 40, + "value": "\"Receive Transport Created Successfully\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18733, + "length": 40, + "value": "\"createReceiveTransport Error: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18772, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18887, + "length": 46, + "value": "\"error while creating recvTransport: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18932, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18945, + "length": 46, + "value": "\"error while creating recvTransport: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18990, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 19736, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 19803, + "length": 33, + "value": "\"Error in joinRoom() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 19835, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 19848, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 19875, + "length": 22, + "value": "\"join Error: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 19896, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 20017, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 20043, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20262, + "length": 15, + "value": "\"Changing Mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20309, + "length": 18, + "value": "\"peer.currentMode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20383, + "length": 20, + "value": "\"peer.requestedMode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20559, + "length": 46, + "value": "\"error in changeMode() \n You are already in \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20624, + "length": 7, + "value": "\" mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20643, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20759, + "length": 38, + "value": "\"Already in the \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20791, + "length": 4, + "value": "\" mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20809, + "length": 38, + "value": "\"Already in the \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20841, + "length": 4, + "value": "\" mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21037, + "length": 36, + "value": "\"Starting mode change to CONFERENCE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 21106, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 21142, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 21220, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21391, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 21408, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 21414, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21470, + "length": 60, + "value": "\"Error in changeMode() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21529, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21541, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21656, + "length": 57, + "value": "\"Change Mode Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21712, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21866, + "length": 32, + "value": "\"Starting mode change to VIEWER\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22053, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 22070, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 22076, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22132, + "length": 60, + "value": "\"Error in changeMode() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22191, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22203, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22318, + "length": 57, + "value": "\"Change Mode Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22374, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 22443, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 22480, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22725, + "length": 52, + "value": "\"Error in changeMode() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22758, + "length": 2, + "value": "\" is not valid mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22789, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22899, + "length": 58, + "value": "\"Change Mode Failed \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22938, + "length": 2, + "value": "\" is not valid mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23018, + "length": 31, + "value": "\"Error Changing Mode: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23048, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23293, + "length": 24, + "value": "\"startRecording() Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23400, + "length": 12, + "value": "\"webhookUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23435, + "length": 24, + "value": "\"webhookUrl Not Specify\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23555, + "length": 12, + "value": "\"awsDirPath\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23583, + "length": 26, + "value": "\"awsDirPath not specified\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23692, + "length": 8, + "value": "\"config\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23722, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23955, + "length": 64, + "value": "\"startRecordScreenResp: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24018, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24055, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 24072, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 24078, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24126, + "length": 68, + "value": "\"Error in startRecording() ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24193, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24205, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24321, + "length": 69, + "value": "\"startRecording() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24389, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24402, + "length": 69, + "value": "\"startRecording() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24470, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24580, + "length": 22, + "value": "\"startRecording() End\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24718, + "length": 23, + "value": "\"stopRecording() Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 24755, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24876, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 24893, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 24899, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24947, + "length": 67, + "value": "\"Error in stopRecording() ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25013, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25025, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25140, + "length": 64, + "value": "\"stopRecording() Failed ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25203, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25216, + "length": 67, + "value": "\"stopRecording() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25282, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25391, + "length": 21, + "value": "\"stopRecording() End\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25590, + "length": 25, + "value": "\"startLivestream() Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 25629, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25766, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 25783, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 25789, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25837, + "length": 70, + "value": "\"Error in startLivestream() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25906, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25918, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26035, + "length": 68, + "value": "\"startLivestream() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26102, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26115, + "length": 68, + "value": "\"startLivestream() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26182, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26293, + "length": 23, + "value": "\"startLivestream() End\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26434, + "length": 24, + "value": "\"stopLivestream() Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 26472, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26590, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 26607, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 26613, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26661, + "length": 68, + "value": "\"Error in stopLivestream() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26728, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26741, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26857, + "length": 66, + "value": "\"stopLivestream() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26922, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26935, + "length": 66, + "value": "\"stopLivestream() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27000, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27110, + "length": 22, + "value": "\"stopLivestream() End\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27303, + "length": 16, + "value": "\"close() called\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 27333, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27436, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 27453, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 27459, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27507, + "length": 58, + "value": "\"Error in closeRoom() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27564, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27577, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27688, + "length": 15, + "value": "\"Already close\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27769, + "length": 34, + "value": "\"Meeting is in DISCONNECTED State\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27975, + "length": 18, + "value": "\"startHls() Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28008, + "length": 8, + "value": "\"config\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28153, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 28170, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 28176, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28224, + "length": 56, + "value": "\"Error in startHls() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28279, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28292, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28402, + "length": 54, + "value": "\"startHls() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28455, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28468, + "length": 54, + "value": "\"startHls() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28521, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28625, + "length": 16, + "value": "\"startHls() End\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28750, + "length": 17, + "value": "\"stopHls() Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 28781, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28878, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 28895, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 28901, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28949, + "length": 54, + "value": "\"Error in stopHls() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29002, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29015, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29124, + "length": 53, + "value": "\"stopHls() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29176, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29189, + "length": 52, + "value": "\"stopHls() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29240, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29343, + "length": 15, + "value": "\"stopHls() End\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 29479, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29615, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 29632, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 29638, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29686, + "length": 38, + "value": "\"error in publish() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29723, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29736, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29917, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 29934, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 29940, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29988, + "length": 42, + "value": "\"error in subscribe() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 30029, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 30042, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 30244, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 30261, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 30267, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 30315, + "length": 46, + "value": "\"error in unsubscribe() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 30360, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 30373, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 30769, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 31041, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 32299, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 32641, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 32867, + "length": 15, + "value": "[(\"share\", true)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 33019, + "length": 8, + "value": "\"peerid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 33260, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 33900, + "length": 29, + "value": "\"SendTransport doesn't ready\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 33941, + "length": 29, + "value": "\"SendTransport doesn't ready\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 34145, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 34253, + "length": 39, + "value": "\"MediaSoup device cannot produce video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 34304, + "length": 39, + "value": "\"MediaSoup device cannot produce video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 34599, + "length": 16, + "value": "\"Creating Track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 34629, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 34978, + "length": 30, + "value": "\"WebCam Track Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 35020, + "length": 30, + "value": "\"WebCam Track Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 35159, + "length": 24, + "value": "\"WebCam Track Generated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 35265, + "length": 35, + "value": "\"Generating Producer Configuration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 35314, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 35383, + "length": 25, + "value": "\"videoGoogleStartBitrate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 35410, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 35675, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 35695, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 35787, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 35808, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 35939, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 35986, + "length": 11, + "value": "\"simulcast\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 36033, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 36139, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36186, + "length": 11, + "value": "\"simulcast\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 36199, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36307, + "length": 34, + "value": "\"Producer Configuration Generated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36399, + "length": 61, + "value": "\" with multiStream \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 36454, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36459, + "length": 5, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36463, + "length": 61, + "value": "\" with multiStream \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 36518, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36523, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36589, + "length": 76, + "value": "\"Track Generated with height \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36627, + "length": 3, + "value": "\" and width \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36646, + "length": 1, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36664, + "length": 53, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 36679, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36831, + "length": 26, + "value": "\"Creating Webcam Producer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 36871, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 36932, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 37326, + "length": 33, + "value": "\"WebCam Producer Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 37371, + "length": 33, + "value": "\"WebCam Producer Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 37512, + "length": 22, + "value": "\"Enable WebCam Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 37546, + "length": 22, + "value": "\"Enable WebCam Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 37856, + "length": 25, + "value": "\"Webcam Producer Created\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 38052, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 38832, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 38849, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 38855, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 38911, + "length": 45, + "value": "\"Error in restartIce \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 38955, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 38968, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39139, + "length": 47, + "value": "\"Error in restartICE() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39185, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39198, + "length": 47, + "value": "\"Error in restartICE() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39244, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39590, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 39607, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 39613, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39669, + "length": 45, + "value": "\"Error in restartIce \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39713, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39726, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39897, + "length": 47, + "value": "\"Error in restartICE() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39943, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39956, + "length": 47, + "value": "\"Error in restartICE() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40002, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40121, + "length": 35, + "value": "\"Error in restartIce() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40155, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40167, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40194, + "length": 30, + "value": "\"error in iceRestart \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40223, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40366, + "length": 19, + "value": "\"Transport::closed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40565, + "length": 11, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40575, + "length": 26, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 40598, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40732, + "length": 37, + "value": "\"Enable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40762, + "length": 5, + "value": "\" Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 40783, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40896, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 40913, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 40919, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40967, + "length": 62, + "value": "\"Error in enablePeerMic() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41028, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41041, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41156, + "length": 74, + "value": "\"Enable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41186, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41229, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41242, + "length": 74, + "value": "\"Enable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41272, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41315, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41424, + "length": 41, + "value": "\"Enable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41454, + "length": 9, + "value": "\" Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41599, + "length": 38, + "value": "\"Disable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41630, + "length": 5, + "value": "\" Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 41651, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41767, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 41784, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 41790, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41838, + "length": 64, + "value": "\"Error in disablePeerMic() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41901, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41914, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42030, + "length": 75, + "value": "\"Enable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42060, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42104, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42117, + "length": 76, + "value": "\"Disable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42148, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42192, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42302, + "length": 42, + "value": "\"Disable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42333, + "length": 9, + "value": "\" Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42482, + "length": 40, + "value": "\"Enable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42515, + "length": 5, + "value": "\" Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 42536, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42658, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 42675, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 42681, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42729, + "length": 68, + "value": "\"Error in enablePeerWebcam() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42796, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42809, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42927, + "length": 80, + "value": "\"Enable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42960, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43006, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43019, + "length": 80, + "value": "\"Enable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43052, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43098, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43210, + "length": 44, + "value": "\"Enable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43243, + "length": 9, + "value": "\" Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43394, + "length": 41, + "value": "\"Disable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43428, + "length": 5, + "value": "\" Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 43449, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43574, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 43591, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 43597, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43645, + "length": 70, + "value": "\"Error in disablePeerWebcam() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43714, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43727, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43846, + "length": 82, + "value": "\"Disable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43880, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43927, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43940, + "length": 82, + "value": "\"Disable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43974, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44021, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44134, + "length": 45, + "value": "\"Disable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44168, + "length": 9, + "value": "\" Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44305, + "length": 29, + "value": "\"Remove \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44322, + "length": 4, + "value": "\" Peer Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44432, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 44449, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 44455, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44503, + "length": 60, + "value": "\"Error in removePeer() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44562, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44575, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44687, + "length": 67, + "value": "\"Remove \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44704, + "length": 4, + "value": "\" Peer Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44753, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44766, + "length": 67, + "value": "\"Remove \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44783, + "length": 4, + "value": "\" Peer Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44832, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44938, + "length": 33, + "value": "\"Remove \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44955, + "length": 4, + "value": "\" Peer Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45148, + "length": 29, + "value": "\"Protoo REQ: pinStateChanged\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45205, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45223, + "length": 7, + "value": "\"state\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45383, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 45400, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 45406, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45454, + "length": 55, + "value": "\"error in onPinStateChanged() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45508, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45521, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45637, + "length": 56, + "value": "\"PinStateChange Request Failed \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45692, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45705, + "length": 56, + "value": "\"PinStateChange Request Failed \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45760, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45837, + "length": 33, + "value": "\"Emitted `pinStateChanged` Event\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46008, + "length": 34, + "value": "\"PinStateChange Request Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46415, + "length": 31, + "value": "\"Sending PauseConsumer Request\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46565, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 46582, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 46588, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46636, + "length": 66, + "value": "\"error in pauseConsumer() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46701, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46714, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46829, + "length": 61, + "value": "\"Error while pausing consumer \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46868, + "length": 1, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46889, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46902, + "length": 61, + "value": "\"Error while pausing consumer \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46941, + "length": 1, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46962, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47071, + "length": 41, + "value": "\"PauseConsumer Request Sent Successfully\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47246, + "length": 32, + "value": "\"Sending ResumeConsumer Request\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47400, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 47417, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 47423, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47471, + "length": 68, + "value": "\"error in resumeConsumer() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47538, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47551, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47667, + "length": 63, + "value": "\"Error while resuming consumer \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47707, + "length": 1, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47729, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47742, + "length": 63, + "value": "\"Error while resuming consumer \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47782, + "length": 1, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47804, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47914, + "length": 42, + "value": "\"ResumeConsumer Request Sent Successfully\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48087, + "length": 4, + "value": "\"hd\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48171, + "length": 3, + "value": "\"s\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 48179, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48260, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 48268, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48499, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 48516, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 48522, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48570, + "length": 72, + "value": "\"Error in setConsumerPreferredLayers() ProtooException: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48641, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48654, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48737, + "length": 55, + "value": "\"Setting \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48765, + "length": 7, + "value": "\" Quality for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48791, + "length": 15, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48995, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 49043, + "length": 6, + "value": "\"kind\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 49099, + "length": 12, + "value": "\"producerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 49164, + "length": 15, + "value": "\"rtpParameters\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 49233, + "length": 9, + "value": "\"appData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 49414, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 49493, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 50691, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 50755, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 50821, + "length": 15, + "value": "\"iceParameters\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 50905, + "length": 15, + "value": "\"iceCandidates\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 50992, + "length": 16, + "value": "\"dtlsParameters\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 51362, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 51420, + "length": 7, + "value": "\"peers\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 51483, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 51639, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 51780, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 51901, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 1760, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "Dictionary", + "offset": 1788, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 1818, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2127, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2220, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2270, + "length": 9, + "value": "\"appData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2301, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "BooleanLiteral", + "offset": 2322, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2410, + "length": 25, + "value": "\"Protoo REQ: newConsumer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2583, + "length": 19, + "value": "\"Creating Consumer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2838, + "length": 18, + "value": "\"Consumer Created\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2972, + "length": 35, + "value": "\"New Consumer Created Successfully\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3189, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3286, + "length": 42, + "value": "\"error in onNewConsumer :: onStatsChanged\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3340, + "length": 7, + "value": "\"DEBUG\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3459, + "length": 26, + "value": "\"Consumer Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3497, + "length": 26, + "value": "\"Consumer Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3644, + "length": 30, + "value": "\"New Consumer Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3686, + "length": 30, + "value": "\"New Consumer Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3885, + "length": 24, + "value": "\"Do not want to consume\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 4041, + "length": 12, + "value": "\"consumerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 4850, + "length": 23, + "value": "\"Protoo REQ: enableMic\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 5051, + "length": 29, + "value": "\"EnableMic Request Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 5160, + "length": 40, + "value": "\"error in enableMic request \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 5199, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 5211, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 5486, + "length": 26, + "value": "\"Protoo REQ: enableWebcam\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 5712, + "length": 32, + "value": "\"EnableWebCam Request Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6206, + "length": 6, + "value": "\"code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "IntegerLiteral", + "offset": 6225, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6397, + "length": 8, + "value": "\"status\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6421, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6610, + "length": 15, + "value": "\"downstreamUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6641, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6694, + "length": 16, + "value": "\"playbackHlsUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6726, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6778, + "length": 15, + "value": "\"livestreamUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6809, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6996, + "length": 12, + "value": "\"isPlayable\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "BooleanLiteral", + "offset": 7022, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7159, + "length": 15, + "value": "\"downstreamUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7190, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7214, + "length": 16, + "value": "\"playbackHlsUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7246, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7270, + "length": 15, + "value": "\"livestreamUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7301, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7450, + "length": 8, + "value": "\"status\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7474, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7697, + "length": 8, + "value": "\"status\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7721, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7924, + "length": 7, + "value": "\"state\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "Dictionary", + "offset": 7954, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8045, + "length": 5, + "value": "\"cam\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "BooleanLiteral", + "offset": 8064, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8084, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "BooleanLiteral", + "offset": 8105, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8183, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8222, + "length": 10, + "value": "\"pinnedBy\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8248, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8328, + "length": 38, + "value": "\"Pin state Change for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8362, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8365, + "length": 17, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8381, + "length": 7, + "value": "\"state\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8507, + "length": 40, + "value": "\"error in pinStateChanged() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8546, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8559, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8685, + "length": 6, + "value": "\"mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8707, + "length": 12, + "value": "\"CONFERENCE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8810, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8908, + "length": 13, + "value": "\"transportId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8937, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8981, + "length": 15, + "value": "\"iceParameters\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "Dictionary", + "offset": 9019, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9104, + "length": 58, + "value": "\"Protoo Noti: restartIce for transportId : \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9161, + "length": 17, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9177, + "length": 15, + "value": "\"iceParameters\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9416, + "length": 82, + "value": "\"handleNotificationError \n data: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9457, + "length": 1, + "value": "\" & peerId: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9497, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9509, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9891, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9919, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9929, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 10186, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 10241, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 10367, + "length": 85, + "value": "\"transport `connect` Event : Transport is about to establish the ICE+DTLS connection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 10978, + "length": 85, + "value": "\"transport `connect` Event : Transport is about to establish the ICE+DTLS connection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 11370, + "length": 59, + "value": "\"Transport Event connectionStateChange: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 11428, + "length": 15, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "BooleanLiteral", + "offset": 1821, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "BooleanLiteral", + "offset": 1897, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 2328, + "length": 17, + "value": "\"AlwaysOnSampler\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 2778, + "length": 18, + "value": "\"AlwaysOffSampler\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "FloatLiteral", + "offset": 3415, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "FloatLiteral", + "offset": 3484, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "BooleanLiteral", + "offset": 4026, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 5210, + "length": 25, + "value": "\"TraceIdRatioBased{%.6f}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 7970, + "length": 215, + "value": "\"ParentBasedSampler{root:\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 8002, + "length": 1, + "value": "\", remoteParentSampled:\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 8046, + "length": 22, + "value": "\" remoteParentNotSampled:\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 8095, + "length": 18, + "value": "\" localParentSampled:\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 8136, + "length": 21, + "value": "\" localParentNotSampled:\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 8183, + "length": 1, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "Array", + "offset": 180, + "length": 15, + "value": "[\"q\", \"h\", \"f\"]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "Array", + "offset": 331, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 373, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 464, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 500, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 523, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 589, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 613, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "BooleanLiteral", + "offset": 745, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "BooleanLiteral", + "offset": 919, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 970, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 1008, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "FloatLiteral", + "offset": 1075, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 1177, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 1243, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 1275, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 1703, + "length": 11, + "value": "\"simulcast\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 2048, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 2076, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 2106, + "length": 10, + "value": "\"encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 2374, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 2377, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 2409, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 2445, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 2525, + "length": 3, + "value": "960" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "Array", + "offset": 2606, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 2860, + "length": 3, + "value": "480" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "Array", + "offset": 3249, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 3278, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 3541, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 3566, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 3732, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 3762, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 3823, + "length": 10, + "value": "\"encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 3915, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "BooleanLiteral", + "offset": 3950, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 4191, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 4219, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 4255, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 4291, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 4328, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 4365, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "FloatLiteral", + "offset": 4412, + "length": 4, + "value": "16.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 4419, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "FloatLiteral", + "offset": 4442, + "length": 3, + "value": "4.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 4448, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 5129, + "length": 10, + "value": "\"encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 5278, + "length": 10, + "value": "\"encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 5348, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 5368, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "FloatLiteral", + "offset": 5827, + "length": 4, + "value": "16.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "FloatLiteral", + "offset": 5832, + "length": 3, + "value": "9.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "FloatLiteral", + "offset": 5857, + "length": 3, + "value": "4.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "FloatLiteral", + "offset": 5861, + "length": 3, + "value": "3.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "Dictionary", + "offset": 6090, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6196, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6225, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6409, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 6438, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6506, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 6533, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6605, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6637, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 6658, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6681, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6712, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 6732, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6755, + "length": 10, + "value": "\"encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "Dictionary", + "offset": 6994, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7084, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7113, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7296, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 7325, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7393, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 7420, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7492, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7524, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 7545, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7568, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7599, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 7619, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7642, + "length": 10, + "value": "\"encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SDKConstants.swift", + "kind": "StringLiteral", + "offset": 216, + "length": 31, + "value": "\"wss:\/\/call-api.videosdk.live\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 1227, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 1342, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 1455, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 1568, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 1683, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 1798, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 1912, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2026, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2142, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2258, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2374, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2490, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2601, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2716, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2828, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2945, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3068, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3189, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3304, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3421, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3536, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3651, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3768, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3885, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4001, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4117, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4235, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4353, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4471, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4589, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4702, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4819, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4933, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5052, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5177, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5300, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5413, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5528, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5641, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5754, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5869, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5984, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6098, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6212, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6328, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6444, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6560, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6676, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6787, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6904, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7140, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7405, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7644, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7776, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7936, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 8019, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 611, + "length": 16, + "value": "\"exception.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 915, + "length": 19, + "value": "\"exception.message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 1515, + "length": 22, + "value": "\"exception.stacktrace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 1789, + "length": 13, + "value": "\"http.method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 2033, + "length": 18, + "value": "\"http.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 2339, + "length": 19, + "value": "\"net.protocol.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 2941, + "length": 22, + "value": "\"net.protocol.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 3596, + "length": 15, + "value": "\"net.peer.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 4160, + "length": 15, + "value": "\"net.peer.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 4417, + "length": 13, + "value": "\"http.scheme\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 5079, + "length": 12, + "value": "\"http.route\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 5873, + "length": 15, + "value": "\"net.host.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 6520, + "length": 15, + "value": "\"net.host.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 6764, + "length": 12, + "value": "\"event.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 7119, + "length": 14, + "value": "\"event.domain\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 7738, + "length": 16, + "value": "\"log.record.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 7969, + "length": 18, + "value": "\"feature_flag.key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 8247, + "length": 28, + "value": "\"feature_flag.provider_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 9171, + "length": 22, + "value": "\"feature_flag.variant\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 9675, + "length": 24, + "value": "\"aws.lambda.invoked_arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 10068, + "length": 22, + "value": "\"cloudevents.event_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 10566, + "length": 26, + "value": "\"cloudevents.event_source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 10933, + "length": 32, + "value": "\"cloudevents.event_spec_version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 11417, + "length": 24, + "value": "\"cloudevents.event_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 11799, + "length": 27, + "value": "\"cloudevents.event_subject\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 12133, + "length": 22, + "value": "\"opentracing.ref_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 12450, + "length": 11, + "value": "\"db.system\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 12784, + "length": 22, + "value": "\"db.connection_string\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 13045, + "length": 9, + "value": "\"db.user\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 13499, + "length": 26, + "value": "\"db.jdbc.driver_classname\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 14192, + "length": 9, + "value": "\"db.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 14476, + "length": 14, + "value": "\"db.statement\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 15284, + "length": 14, + "value": "\"db.operation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 15689, + "length": 20, + "value": "\"net.sock.peer.addr\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 15893, + "length": 20, + "value": "\"net.sock.peer.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 16340, + "length": 17, + "value": "\"net.sock.family\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 16563, + "length": 20, + "value": "\"net.sock.peer.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 16807, + "length": 15, + "value": "\"net.transport\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 17354, + "length": 24, + "value": "\"db.mssql.instance_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 17621, + "length": 24, + "value": "\"db.cassandra.page_size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 18037, + "length": 32, + "value": "\"db.cassandra.consistency_level\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 18727, + "length": 20, + "value": "\"db.cassandra.table\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 18885, + "length": 26, + "value": "\"db.cassandra.idempotence\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 19277, + "length": 42, + "value": "\"db.cassandra.speculative_execution_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 19582, + "length": 29, + "value": "\"db.cassandra.coordinator.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 19856, + "length": 29, + "value": "\"db.cassandra.coordinator.dc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 20314, + "length": 25, + "value": "\"db.redis.database_index\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 20641, + "length": 23, + "value": "\"db.mongodb.collection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 21275, + "length": 14, + "value": "\"db.sql.table\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 21529, + "length": 23, + "value": "\"db.cosmosdb.client_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 21793, + "length": 28, + "value": "\"db.cosmosdb.operation_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 22963, + "length": 21, + "value": "\"user_agent.original\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23234, + "length": 29, + "value": "\"db.cosmosdb.connection_mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23470, + "length": 23, + "value": "\"db.cosmosdb.container\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23629, + "length": 36, + "value": "\"db.cosmosdb.request_content_length\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23894, + "length": 25, + "value": "\"db.cosmosdb.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 24163, + "length": 29, + "value": "\"db.cosmosdb.sub_status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 24444, + "length": 28, + "value": "\"db.cosmosdb.request_charge\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 24748, + "length": 18, + "value": "\"otel.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 25024, + "length": 25, + "value": "\"otel.status_description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 25799, + "length": 14, + "value": "\"faas.trigger\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 26069, + "length": 20, + "value": "\"faas.invocation_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 28331, + "length": 19, + "value": "\"cloud.resource_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 28772, + "length": 26, + "value": "\"faas.document.collection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 29076, + "length": 25, + "value": "\"faas.document.operation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 29481, + "length": 20, + "value": "\"faas.document.time\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 29873, + "length": 20, + "value": "\"faas.document.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 30139, + "length": 13, + "value": "\"http.target\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 31188, + "length": 16, + "value": "\"http.client_ip\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 31436, + "length": 20, + "value": "\"net.sock.host.addr\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 31641, + "length": 20, + "value": "\"net.sock.host.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 32058, + "length": 18, + "value": "\"messaging.system\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 32470, + "length": 21, + "value": "\"messaging.operation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 33192, + "length": 31, + "value": "\"messaging.batch.message_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 33521, + "length": 22, + "value": "\"messaging.message.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 33910, + "length": 35, + "value": "\"messaging.message.conversation_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 34300, + "length": 38, + "value": "\"messaging.message.payload_size_bytes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 34603, + "length": 49, + "value": "\"messaging.message.payload_compressed_size_bytes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35009, + "length": 11, + "value": "\"faas.time\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35324, + "length": 11, + "value": "\"faas.cron\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35523, + "length": 16, + "value": "\"faas.coldstart\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35840, + "length": 19, + "value": "\"faas.invoked_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 36204, + "length": 23, + "value": "\"faas.invoked_provider\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 36544, + "length": 21, + "value": "\"faas.invoked_region\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 36919, + "length": 26, + "value": "\"net.host.connection.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 37425, + "length": 29, + "value": "\"net.host.connection.subtype\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 37662, + "length": 23, + "value": "\"net.host.carrier.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 37889, + "length": 22, + "value": "\"net.host.carrier.mcc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 38115, + "length": 22, + "value": "\"net.host.carrier.mnc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 38399, + "length": 22, + "value": "\"net.host.carrier.icc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 38784, + "length": 14, + "value": "\"peer.service\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 39135, + "length": 12, + "value": "\"enduser.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 39421, + "length": 14, + "value": "\"enduser.role\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 39994, + "length": 15, + "value": "\"enduser.scope\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 40209, + "length": 11, + "value": "\"thread.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 40399, + "length": 13, + "value": "\"thread.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 40675, + "length": 15, + "value": "\"code.function\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 41082, + "length": 16, + "value": "\"code.namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 41423, + "length": 15, + "value": "\"code.filepath\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 41715, + "length": 13, + "value": "\"code.lineno\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 42007, + "length": 13, + "value": "\"code.column\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 42512, + "length": 29, + "value": "\"http.request_content_length\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 43036, + "length": 30, + "value": "\"http.response_content_length\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 43649, + "length": 10, + "value": "\"http.url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 44149, + "length": 19, + "value": "\"http.resend_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 44435, + "length": 12, + "value": "\"rpc.system\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 45113, + "length": 13, + "value": "\"rpc.service\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 45738, + "length": 12, + "value": "\"rpc.method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 46091, + "length": 16, + "value": "\"aws.request_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 46369, + "length": 26, + "value": "\"aws.dynamodb.table_names\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 47122, + "length": 32, + "value": "\"aws.dynamodb.consumed_capacity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 47759, + "length": 38, + "value": "\"aws.dynamodb.item_collection_metrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 48126, + "length": 40, + "value": "\"aws.dynamodb.provisioned_read_capacity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 48499, + "length": 41, + "value": "\"aws.dynamodb.provisioned_write_capacity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 48694, + "length": 30, + "value": "\"aws.dynamodb.consistent_read\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49119, + "length": 25, + "value": "\"aws.dynamodb.projection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49346, + "length": 20, + "value": "\"aws.dynamodb.limit\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49650, + "length": 32, + "value": "\"aws.dynamodb.attributes_to_get\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49917, + "length": 25, + "value": "\"aws.dynamodb.index_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 50214, + "length": 21, + "value": "\"aws.dynamodb.select\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 50778, + "length": 39, + "value": "\"aws.dynamodb.global_secondary_indexes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 51338, + "length": 38, + "value": "\"aws.dynamodb.local_secondary_indexes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 51699, + "length": 36, + "value": "\"aws.dynamodb.exclusive_start_table\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 51967, + "length": 26, + "value": "\"aws.dynamodb.table_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52146, + "length": 27, + "value": "\"aws.dynamodb.scan_forward\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52381, + "length": 22, + "value": "\"aws.dynamodb.segment\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52630, + "length": 29, + "value": "\"aws.dynamodb.total_segments\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52862, + "length": 20, + "value": "\"aws.dynamodb.count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 53106, + "length": 28, + "value": "\"aws.dynamodb.scanned_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 53465, + "length": 36, + "value": "\"aws.dynamodb.attribute_definitions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 54075, + "length": 45, + "value": "\"aws.dynamodb.global_secondary_index_updates\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 54695, + "length": 15, + "value": "\"aws.s3.bucket\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 56595, + "length": 12, + "value": "\"aws.s3.key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 57367, + "length": 20, + "value": "\"aws.s3.copy_source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 58469, + "length": 18, + "value": "\"aws.s3.upload_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 59165, + "length": 15, + "value": "\"aws.s3.delete\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 59944, + "length": 20, + "value": "\"aws.s3.part_number\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 60192, + "length": 24, + "value": "\"graphql.operation.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 60652, + "length": 24, + "value": "\"graphql.operation.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 60998, + "length": 18, + "value": "\"graphql.document\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 61508, + "length": 28, + "value": "\"messaging.destination.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 61999, + "length": 23, + "value": "\"messaging.source.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 62616, + "length": 32, + "value": "\"messaging.destination.template\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 62874, + "length": 33, + "value": "\"messaging.destination.temporary\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 63123, + "length": 33, + "value": "\"messaging.destination.anonymous\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 63720, + "length": 27, + "value": "\"messaging.source.template\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 63963, + "length": 28, + "value": "\"messaging.source.temporary\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 64197, + "length": 28, + "value": "\"messaging.source.anonymous\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 64724, + "length": 23, + "value": "\"messaging.consumer.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 64992, + "length": 44, + "value": "\"messaging.rabbitmq.destination.routing_key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 65642, + "length": 29, + "value": "\"messaging.kafka.message.key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 65972, + "length": 32, + "value": "\"messaging.kafka.consumer.group\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 66259, + "length": 27, + "value": "\"messaging.kafka.client_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 66513, + "length": 39, + "value": "\"messaging.kafka.destination.partition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 66775, + "length": 34, + "value": "\"messaging.kafka.source.partition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67050, + "length": 32, + "value": "\"messaging.kafka.message.offset\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67242, + "length": 35, + "value": "\"messaging.kafka.message.tombstone\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67557, + "length": 30, + "value": "\"messaging.rocketmq.namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67914, + "length": 33, + "value": "\"messaging.rocketmq.client_group\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 68189, + "length": 30, + "value": "\"messaging.rocketmq.client_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 68532, + "length": 47, + "value": "\"messaging.rocketmq.message.delivery_timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 68861, + "length": 45, + "value": "\"messaging.rocketmq.message.delay_time_level\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 69257, + "length": 34, + "value": "\"messaging.rocketmq.message.group\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 69539, + "length": 33, + "value": "\"messaging.rocketmq.message.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 69815, + "length": 32, + "value": "\"messaging.rocketmq.message.tag\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 70151, + "length": 33, + "value": "\"messaging.rocketmq.message.keys\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 70497, + "length": 38, + "value": "\"messaging.rocketmq.consumption_model\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 70839, + "length": 22, + "value": "\"rpc.grpc.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 71206, + "length": 21, + "value": "\"rpc.jsonrpc.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 71753, + "length": 24, + "value": "\"rpc.jsonrpc.request_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72045, + "length": 24, + "value": "\"rpc.jsonrpc.error_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72387, + "length": 27, + "value": "\"rpc.jsonrpc.error_message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72638, + "length": 14, + "value": "\"message.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72956, + "length": 12, + "value": "\"message.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 73105, + "length": 25, + "value": "\"message.compressed_size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 73271, + "length": 27, + "value": "\"message.uncompressed_size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 73641, + "length": 28, + "value": "\"rpc.connect_rpc.error_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 74924, + "length": 19, + "value": "\"exception.escaped\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 75370, + "length": 11, + "value": "\"exception\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 75677, + "length": 9, + "value": "\"browser\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 75797, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 75912, + "length": 5, + "value": "\"k8s\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 76394, + "length": 10, + "value": "\"child_of\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 76540, + "length": 14, + "value": "\"follows_from\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 76394, + "length": 10, + "value": "\"child_of\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 76540, + "length": 14, + "value": "\"follows_from\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 76937, + "length": 11, + "value": "\"other_sql\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77052, + "length": 7, + "value": "\"mssql\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77178, + "length": 14, + "value": "\"mssqlcompact\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77281, + "length": 7, + "value": "\"mysql\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77388, + "length": 8, + "value": "\"oracle\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77485, + "length": 5, + "value": "\"db2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77589, + "length": 12, + "value": "\"postgresql\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77703, + "length": 10, + "value": "\"redshift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77807, + "length": 6, + "value": "\"hive\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77912, + "length": 12, + "value": "\"cloudscape\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78026, + "length": 8, + "value": "\"hsqldb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78138, + "length": 10, + "value": "\"progress\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78241, + "length": 7, + "value": "\"maxdb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78341, + "length": 8, + "value": "\"hanadb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78440, + "length": 8, + "value": "\"ingres\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78543, + "length": 10, + "value": "\"firstsql\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78647, + "length": 5, + "value": "\"edb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78755, + "length": 7, + "value": "\"cache\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78881, + "length": 8, + "value": "\"adabas\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78984, + "length": 10, + "value": "\"firebird\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79090, + "length": 7, + "value": "\"derby\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79194, + "length": 11, + "value": "\"filemaker\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79300, + "length": 10, + "value": "\"informix\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79407, + "length": 11, + "value": "\"instantdb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79515, + "length": 11, + "value": "\"interbase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79619, + "length": 9, + "value": "\"mariadb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79721, + "length": 9, + "value": "\"netezza\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79832, + "length": 11, + "value": "\"pervasive\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79940, + "length": 11, + "value": "\"pointbase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80042, + "length": 8, + "value": "\"sqlite\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80141, + "length": 8, + "value": "\"sybase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80244, + "length": 10, + "value": "\"teradata\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80347, + "length": 9, + "value": "\"vertica\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80439, + "length": 4, + "value": "\"h2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80546, + "length": 12, + "value": "\"coldfusion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80662, + "length": 11, + "value": "\"cassandra\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80769, + "length": 7, + "value": "\"hbase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80869, + "length": 9, + "value": "\"mongodb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80967, + "length": 7, + "value": "\"redis\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81071, + "length": 11, + "value": "\"couchbase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81175, + "length": 9, + "value": "\"couchdb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81296, + "length": 10, + "value": "\"cosmosdb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81408, + "length": 10, + "value": "\"dynamodb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81507, + "length": 7, + "value": "\"neo4j\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81610, + "length": 7, + "value": "\"geode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81722, + "length": 15, + "value": "\"elasticsearch\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81834, + "length": 11, + "value": "\"memcached\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81946, + "length": 13, + "value": "\"cockroachdb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 82058, + "length": 12, + "value": "\"opensearch\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 82169, + "length": 12, + "value": "\"clickhouse\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 82280, + "length": 9, + "value": "\"spanner\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 82378, + "length": 7, + "value": "\"trino\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 82947, + "length": 6, + "value": "\"inet\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 83054, + "length": 7, + "value": "\"inet6\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 83172, + "length": 6, + "value": "\"unix\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 83651, + "length": 8, + "value": "\"ip_tcp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 83753, + "length": 8, + "value": "\"ip_udp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 83887, + "length": 6, + "value": "\"pipe\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84006, + "length": 8, + "value": "\"inproc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84131, + "length": 7, + "value": "\"other\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84708, + "length": 5, + "value": "\"all\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84785, + "length": 13, + "value": "\"each_quorum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84860, + "length": 8, + "value": "\"quorum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84942, + "length": 14, + "value": "\"local_quorum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85012, + "length": 5, + "value": "\"one\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85073, + "length": 5, + "value": "\"two\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85138, + "length": 7, + "value": "\"three\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85213, + "length": 11, + "value": "\"local_one\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85280, + "length": 5, + "value": "\"any\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85347, + "length": 8, + "value": "\"serial\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85429, + "length": 14, + "value": "\"local_serial\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84708, + "length": 5, + "value": "\"all\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84785, + "length": 13, + "value": "\"each_quorum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84860, + "length": 8, + "value": "\"quorum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84942, + "length": 14, + "value": "\"local_quorum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85012, + "length": 5, + "value": "\"one\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85073, + "length": 5, + "value": "\"two\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85138, + "length": 7, + "value": "\"three\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85213, + "length": 11, + "value": "\"local_one\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85280, + "length": 5, + "value": "\"any\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85347, + "length": 8, + "value": "\"serial\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85429, + "length": 14, + "value": "\"local_serial\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85729, + "length": 9, + "value": "\"Invalid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85844, + "length": 8, + "value": "\"Create\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85956, + "length": 7, + "value": "\"Patch\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86065, + "length": 6, + "value": "\"Read\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86182, + "length": 10, + "value": "\"ReadFeed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86298, + "length": 8, + "value": "\"Delete\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86414, + "length": 9, + "value": "\"Replace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86531, + "length": 9, + "value": "\"Execute\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86644, + "length": 7, + "value": "\"Query\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86753, + "length": 6, + "value": "\"Head\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86870, + "length": 10, + "value": "\"HeadFeed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86986, + "length": 8, + "value": "\"Upsert\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 87098, + "length": 7, + "value": "\"Batch\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 87218, + "length": 11, + "value": "\"QueryPlan\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 87358, + "length": 19, + "value": "\"ExecuteJavaScript\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 87840, + "length": 9, + "value": "\"gateway\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 87922, + "length": 8, + "value": "\"direct\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 87840, + "length": 9, + "value": "\"gateway\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 87922, + "length": 8, + "value": "\"direct\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88289, + "length": 4, + "value": "\"OK\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88379, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88289, + "length": 4, + "value": "\"OK\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88379, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88700, + "length": 12, + "value": "\"datasource\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88813, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88952, + "length": 8, + "value": "\"pubsub\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 89063, + "length": 7, + "value": "\"timer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 89152, + "length": 7, + "value": "\"other\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88700, + "length": 12, + "value": "\"datasource\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88813, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88952, + "length": 8, + "value": "\"pubsub\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 89063, + "length": 7, + "value": "\"timer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 89152, + "length": 7, + "value": "\"other\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 89502, + "length": 8, + "value": "\"insert\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 89632, + "length": 6, + "value": "\"edit\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 89761, + "length": 8, + "value": "\"delete\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 90344, + "length": 9, + "value": "\"publish\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 90456, + "length": 9, + "value": "\"receive\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 90568, + "length": 9, + "value": "\"process\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 91088, + "length": 15, + "value": "\"alibaba_cloud\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 91215, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 91330, + "length": 7, + "value": "\"azure\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 91451, + "length": 5, + "value": "\"gcp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 91571, + "length": 15, + "value": "\"tencent_cloud\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 92105, + "length": 6, + "value": "\"wifi\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 92213, + "length": 7, + "value": "\"wired\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 92320, + "length": 6, + "value": "\"cell\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 92440, + "length": 13, + "value": "\"unavailable\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 92559, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 93211, + "length": 6, + "value": "\"gprs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 93320, + "length": 6, + "value": "\"edge\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 93429, + "length": 6, + "value": "\"umts\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 93538, + "length": 6, + "value": "\"cdma\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 93655, + "length": 8, + "value": "\"evdo_0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 93774, + "length": 8, + "value": "\"evdo_a\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 93904, + "length": 16, + "value": "\"cdma2000_1xrtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94025, + "length": 7, + "value": "\"hsdpa\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94137, + "length": 7, + "value": "\"hsupa\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94247, + "length": 6, + "value": "\"hspa\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94356, + "length": 6, + "value": "\"iden\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94473, + "length": 8, + "value": "\"evdo_b\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94582, + "length": 5, + "value": "\"lte\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94692, + "length": 7, + "value": "\"ehrpd\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94804, + "length": 7, + "value": "\"hspap\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94912, + "length": 5, + "value": "\"gsm\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 95027, + "length": 10, + "value": "\"td_scdma\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 95142, + "length": 7, + "value": "\"iwlan\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 95263, + "length": 4, + "value": "\"nr\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 95402, + "length": 7, + "value": "\"nrnsa\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 95515, + "length": 8, + "value": "\"lte_ca\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 95964, + "length": 6, + "value": "\"grpc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96065, + "length": 10, + "value": "\"java_rmi\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96172, + "length": 12, + "value": "\"dotnet_wcf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96287, + "length": 14, + "value": "\"apache_dubbo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96402, + "length": 13, + "value": "\"connect_rpc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96861, + "length": 7, + "value": "\"query\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96942, + "length": 10, + "value": "\"mutation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97034, + "length": 14, + "value": "\"subscription\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96861, + "length": 7, + "value": "\"query\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96942, + "length": 10, + "value": "\"mutation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97034, + "length": 14, + "value": "\"subscription\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97280, + "length": 8, + "value": "\"normal\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97354, + "length": 6, + "value": "\"fifo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97428, + "length": 7, + "value": "\"delay\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97515, + "length": 13, + "value": "\"transaction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97280, + "length": 8, + "value": "\"normal\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97354, + "length": 6, + "value": "\"fifo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97428, + "length": 7, + "value": "\"delay\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97515, + "length": 13, + "value": "\"transaction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97838, + "length": 12, + "value": "\"clustering\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97942, + "length": 14, + "value": "\"broadcasting\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97838, + "length": 12, + "value": "\"clustering\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97942, + "length": 14, + "value": "\"broadcasting\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98239, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98308, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98373, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98456, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98541, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98610, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98689, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98774, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98861, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98950, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99015, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99091, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99169, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99239, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99313, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99383, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99465, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98239, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98308, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98373, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98456, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98541, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98610, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98689, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98774, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98861, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98950, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99015, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99091, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99169, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99239, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99313, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99383, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99465, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98239, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98308, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98373, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98456, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98541, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98610, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98689, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98774, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98861, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98950, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99015, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99091, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99169, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99239, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99313, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99383, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99465, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 99680, + "length": 6, + "value": "\"SENT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 99752, + "length": 10, + "value": "\"RECEIVED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 99680, + "length": 6, + "value": "\"SENT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 99752, + "length": 10, + "value": "\"RECEIVED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100093, + "length": 11, + "value": "\"cancelled\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100168, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100259, + "length": 18, + "value": "\"invalid_argument\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100361, + "length": 19, + "value": "\"deadline_exceeded\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100448, + "length": 11, + "value": "\"not_found\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100537, + "length": 16, + "value": "\"already_exists\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100637, + "length": 19, + "value": "\"permission_denied\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100742, + "length": 20, + "value": "\"resource_exhausted\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100850, + "length": 21, + "value": "\"failed_precondition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100935, + "length": 9, + "value": "\"aborted\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101018, + "length": 14, + "value": "\"out_of_range\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101108, + "length": 15, + "value": "\"unimplemented\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101191, + "length": 10, + "value": "\"internal\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101273, + "length": 13, + "value": "\"unavailable\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101354, + "length": 11, + "value": "\"data_loss\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101445, + "length": 17, + "value": "\"unauthenticated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100093, + "length": 11, + "value": "\"cancelled\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100168, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100259, + "length": 18, + "value": "\"invalid_argument\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100361, + "length": 19, + "value": "\"deadline_exceeded\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100448, + "length": 11, + "value": "\"not_found\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100537, + "length": 16, + "value": "\"already_exists\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100637, + "length": 19, + "value": "\"permission_denied\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100742, + "length": 20, + "value": "\"resource_exhausted\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100850, + "length": 21, + "value": "\"failed_precondition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100935, + "length": 9, + "value": "\"aborted\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101018, + "length": 14, + "value": "\"out_of_range\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101108, + "length": 15, + "value": "\"unimplemented\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101191, + "length": 10, + "value": "\"internal\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101273, + "length": 13, + "value": "\"unavailable\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101354, + "length": 11, + "value": "\"data_loss\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101445, + "length": 17, + "value": "\"unauthenticated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 611, + "length": 16, + "value": "\"exception.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 915, + "length": 19, + "value": "\"exception.message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 1515, + "length": 22, + "value": "\"exception.stacktrace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 1789, + "length": 13, + "value": "\"http.method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 2033, + "length": 18, + "value": "\"http.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 2339, + "length": 19, + "value": "\"net.protocol.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 2941, + "length": 22, + "value": "\"net.protocol.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 3596, + "length": 15, + "value": "\"net.peer.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 4160, + "length": 15, + "value": "\"net.peer.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 4417, + "length": 13, + "value": "\"http.scheme\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 5079, + "length": 12, + "value": "\"http.route\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 5873, + "length": 15, + "value": "\"net.host.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 6520, + "length": 15, + "value": "\"net.host.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 6764, + "length": 12, + "value": "\"event.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 7119, + "length": 14, + "value": "\"event.domain\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 7738, + "length": 16, + "value": "\"log.record.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 7969, + "length": 18, + "value": "\"feature_flag.key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 8247, + "length": 28, + "value": "\"feature_flag.provider_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 9171, + "length": 22, + "value": "\"feature_flag.variant\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 9675, + "length": 24, + "value": "\"aws.lambda.invoked_arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 10068, + "length": 22, + "value": "\"cloudevents.event_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 10566, + "length": 26, + "value": "\"cloudevents.event_source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 10933, + "length": 32, + "value": "\"cloudevents.event_spec_version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 11417, + "length": 24, + "value": "\"cloudevents.event_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 11799, + "length": 27, + "value": "\"cloudevents.event_subject\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 12133, + "length": 22, + "value": "\"opentracing.ref_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 12450, + "length": 11, + "value": "\"db.system\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 12784, + "length": 22, + "value": "\"db.connection_string\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 13045, + "length": 9, + "value": "\"db.user\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 13499, + "length": 26, + "value": "\"db.jdbc.driver_classname\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 14192, + "length": 9, + "value": "\"db.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 14476, + "length": 14, + "value": "\"db.statement\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 15284, + "length": 14, + "value": "\"db.operation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 15689, + "length": 20, + "value": "\"net.sock.peer.addr\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 15893, + "length": 20, + "value": "\"net.sock.peer.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 16340, + "length": 17, + "value": "\"net.sock.family\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 16563, + "length": 20, + "value": "\"net.sock.peer.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 16807, + "length": 15, + "value": "\"net.transport\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 17354, + "length": 24, + "value": "\"db.mssql.instance_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 17621, + "length": 24, + "value": "\"db.cassandra.page_size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 18037, + "length": 32, + "value": "\"db.cassandra.consistency_level\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 18727, + "length": 20, + "value": "\"db.cassandra.table\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 18885, + "length": 26, + "value": "\"db.cassandra.idempotence\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 19277, + "length": 42, + "value": "\"db.cassandra.speculative_execution_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 19582, + "length": 29, + "value": "\"db.cassandra.coordinator.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 19856, + "length": 29, + "value": "\"db.cassandra.coordinator.dc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 20314, + "length": 25, + "value": "\"db.redis.database_index\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 20641, + "length": 23, + "value": "\"db.mongodb.collection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 21275, + "length": 14, + "value": "\"db.sql.table\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 21529, + "length": 23, + "value": "\"db.cosmosdb.client_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 21793, + "length": 28, + "value": "\"db.cosmosdb.operation_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 22963, + "length": 21, + "value": "\"user_agent.original\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23234, + "length": 29, + "value": "\"db.cosmosdb.connection_mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23470, + "length": 23, + "value": "\"db.cosmosdb.container\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23629, + "length": 36, + "value": "\"db.cosmosdb.request_content_length\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23894, + "length": 25, + "value": "\"db.cosmosdb.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 24163, + "length": 29, + "value": "\"db.cosmosdb.sub_status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 24444, + "length": 28, + "value": "\"db.cosmosdb.request_charge\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 24748, + "length": 18, + "value": "\"otel.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 25024, + "length": 25, + "value": "\"otel.status_description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 25799, + "length": 14, + "value": "\"faas.trigger\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 26069, + "length": 20, + "value": "\"faas.invocation_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 28331, + "length": 19, + "value": "\"cloud.resource_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 28772, + "length": 26, + "value": "\"faas.document.collection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 29076, + "length": 25, + "value": "\"faas.document.operation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 29481, + "length": 20, + "value": "\"faas.document.time\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 29873, + "length": 20, + "value": "\"faas.document.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 30139, + "length": 13, + "value": "\"http.target\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 31188, + "length": 16, + "value": "\"http.client_ip\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 31436, + "length": 20, + "value": "\"net.sock.host.addr\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 31641, + "length": 20, + "value": "\"net.sock.host.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 32058, + "length": 18, + "value": "\"messaging.system\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 32470, + "length": 21, + "value": "\"messaging.operation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 33192, + "length": 31, + "value": "\"messaging.batch.message_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 33521, + "length": 22, + "value": "\"messaging.message.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 33910, + "length": 35, + "value": "\"messaging.message.conversation_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 34300, + "length": 38, + "value": "\"messaging.message.payload_size_bytes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 34603, + "length": 49, + "value": "\"messaging.message.payload_compressed_size_bytes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35009, + "length": 11, + "value": "\"faas.time\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35324, + "length": 11, + "value": "\"faas.cron\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35523, + "length": 16, + "value": "\"faas.coldstart\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35840, + "length": 19, + "value": "\"faas.invoked_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 36204, + "length": 23, + "value": "\"faas.invoked_provider\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 36544, + "length": 21, + "value": "\"faas.invoked_region\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 36919, + "length": 26, + "value": "\"net.host.connection.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 37425, + "length": 29, + "value": "\"net.host.connection.subtype\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 37662, + "length": 23, + "value": "\"net.host.carrier.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 37889, + "length": 22, + "value": "\"net.host.carrier.mcc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 38115, + "length": 22, + "value": "\"net.host.carrier.mnc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 38399, + "length": 22, + "value": "\"net.host.carrier.icc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 38784, + "length": 14, + "value": "\"peer.service\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 39135, + "length": 12, + "value": "\"enduser.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 39421, + "length": 14, + "value": "\"enduser.role\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 39994, + "length": 15, + "value": "\"enduser.scope\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 40209, + "length": 11, + "value": "\"thread.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 40399, + "length": 13, + "value": "\"thread.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 40675, + "length": 15, + "value": "\"code.function\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 41082, + "length": 16, + "value": "\"code.namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 41423, + "length": 15, + "value": "\"code.filepath\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 41715, + "length": 13, + "value": "\"code.lineno\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 42007, + "length": 13, + "value": "\"code.column\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 42512, + "length": 29, + "value": "\"http.request_content_length\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 43036, + "length": 30, + "value": "\"http.response_content_length\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 43649, + "length": 10, + "value": "\"http.url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 44149, + "length": 19, + "value": "\"http.resend_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 44435, + "length": 12, + "value": "\"rpc.system\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 45113, + "length": 13, + "value": "\"rpc.service\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 45738, + "length": 12, + "value": "\"rpc.method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 46091, + "length": 16, + "value": "\"aws.request_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 46369, + "length": 26, + "value": "\"aws.dynamodb.table_names\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 47122, + "length": 32, + "value": "\"aws.dynamodb.consumed_capacity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 47759, + "length": 38, + "value": "\"aws.dynamodb.item_collection_metrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 48126, + "length": 40, + "value": "\"aws.dynamodb.provisioned_read_capacity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 48499, + "length": 41, + "value": "\"aws.dynamodb.provisioned_write_capacity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 48694, + "length": 30, + "value": "\"aws.dynamodb.consistent_read\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49119, + "length": 25, + "value": "\"aws.dynamodb.projection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49346, + "length": 20, + "value": "\"aws.dynamodb.limit\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49650, + "length": 32, + "value": "\"aws.dynamodb.attributes_to_get\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49917, + "length": 25, + "value": "\"aws.dynamodb.index_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 50214, + "length": 21, + "value": "\"aws.dynamodb.select\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 50778, + "length": 39, + "value": "\"aws.dynamodb.global_secondary_indexes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 51338, + "length": 38, + "value": "\"aws.dynamodb.local_secondary_indexes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 51699, + "length": 36, + "value": "\"aws.dynamodb.exclusive_start_table\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 51967, + "length": 26, + "value": "\"aws.dynamodb.table_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52146, + "length": 27, + "value": "\"aws.dynamodb.scan_forward\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52381, + "length": 22, + "value": "\"aws.dynamodb.segment\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52630, + "length": 29, + "value": "\"aws.dynamodb.total_segments\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52862, + "length": 20, + "value": "\"aws.dynamodb.count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 53106, + "length": 28, + "value": "\"aws.dynamodb.scanned_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 53465, + "length": 36, + "value": "\"aws.dynamodb.attribute_definitions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 54075, + "length": 45, + "value": "\"aws.dynamodb.global_secondary_index_updates\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 54695, + "length": 15, + "value": "\"aws.s3.bucket\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 56595, + "length": 12, + "value": "\"aws.s3.key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 57367, + "length": 20, + "value": "\"aws.s3.copy_source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 58469, + "length": 18, + "value": "\"aws.s3.upload_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 59165, + "length": 15, + "value": "\"aws.s3.delete\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 59944, + "length": 20, + "value": "\"aws.s3.part_number\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 60192, + "length": 24, + "value": "\"graphql.operation.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 60652, + "length": 24, + "value": "\"graphql.operation.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 60998, + "length": 18, + "value": "\"graphql.document\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 61508, + "length": 28, + "value": "\"messaging.destination.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 61999, + "length": 23, + "value": "\"messaging.source.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 62616, + "length": 32, + "value": "\"messaging.destination.template\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 62874, + "length": 33, + "value": "\"messaging.destination.temporary\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 63123, + "length": 33, + "value": "\"messaging.destination.anonymous\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 63720, + "length": 27, + "value": "\"messaging.source.template\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 63963, + "length": 28, + "value": "\"messaging.source.temporary\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 64197, + "length": 28, + "value": "\"messaging.source.anonymous\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 64724, + "length": 23, + "value": "\"messaging.consumer.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 64992, + "length": 44, + "value": "\"messaging.rabbitmq.destination.routing_key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 65642, + "length": 29, + "value": "\"messaging.kafka.message.key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 65972, + "length": 32, + "value": "\"messaging.kafka.consumer.group\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 66259, + "length": 27, + "value": "\"messaging.kafka.client_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 66513, + "length": 39, + "value": "\"messaging.kafka.destination.partition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 66775, + "length": 34, + "value": "\"messaging.kafka.source.partition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67050, + "length": 32, + "value": "\"messaging.kafka.message.offset\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67242, + "length": 35, + "value": "\"messaging.kafka.message.tombstone\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67557, + "length": 30, + "value": "\"messaging.rocketmq.namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67914, + "length": 33, + "value": "\"messaging.rocketmq.client_group\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 68189, + "length": 30, + "value": "\"messaging.rocketmq.client_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 68532, + "length": 47, + "value": "\"messaging.rocketmq.message.delivery_timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 68861, + "length": 45, + "value": "\"messaging.rocketmq.message.delay_time_level\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 69257, + "length": 34, + "value": "\"messaging.rocketmq.message.group\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 69539, + "length": 33, + "value": "\"messaging.rocketmq.message.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 69815, + "length": 32, + "value": "\"messaging.rocketmq.message.tag\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 70151, + "length": 33, + "value": "\"messaging.rocketmq.message.keys\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 70497, + "length": 38, + "value": "\"messaging.rocketmq.consumption_model\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 70839, + "length": 22, + "value": "\"rpc.grpc.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 71206, + "length": 21, + "value": "\"rpc.jsonrpc.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 71753, + "length": 24, + "value": "\"rpc.jsonrpc.request_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72045, + "length": 24, + "value": "\"rpc.jsonrpc.error_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72387, + "length": 27, + "value": "\"rpc.jsonrpc.error_message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72638, + "length": 14, + "value": "\"message.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72956, + "length": 12, + "value": "\"message.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 73105, + "length": 25, + "value": "\"message.compressed_size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 73271, + "length": 27, + "value": "\"message.uncompressed_size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 73641, + "length": 28, + "value": "\"rpc.connect_rpc.error_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 74924, + "length": 19, + "value": "\"exception.escaped\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 75370, + "length": 11, + "value": "\"exception\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 197, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 209, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 226, + "length": 6, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 243, + "length": 6, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 260, + "length": 5, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 276, + "length": 6, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 293, + "length": 6, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 6, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 327, + "length": 4, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 342, + "length": 5, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 358, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 374, + "length": 5, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 390, + "length": 4, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 405, + "length": 5, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 5, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 437, + "length": 5, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 453, + "length": 5, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 6, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 486, + "length": 6, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 503, + "length": 6, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 520, + "length": 5, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 536, + "length": 6, + "value": "22" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 553, + "length": 6, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 570, + "length": 6, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 685, + "length": 7, + "value": "\"TRACE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 742, + "length": 8, + "value": "\"TRACE2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 800, + "length": 8, + "value": "\"TRACE3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 858, + "length": 8, + "value": "\"TRACE4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 915, + "length": 7, + "value": "\"DEBUG\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 972, + "length": 8, + "value": "\"DEBUG2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1030, + "length": 8, + "value": "\"DEBUG3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1088, + "length": 8, + "value": "\"DEBUG4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1144, + "length": 6, + "value": "\"INFO\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1199, + "length": 7, + "value": "\"INFO2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1255, + "length": 7, + "value": "\"INFO3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1311, + "length": 7, + "value": "\"INFO4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 6, + "value": "\"WARN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1421, + "length": 7, + "value": "\"WARN2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1477, + "length": 7, + "value": "\"WARN3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1533, + "length": 7, + "value": "\"WARN4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1589, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1646, + "length": 8, + "value": "\"ERROR2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1704, + "length": 8, + "value": "\"ERROR3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1762, + "length": 8, + "value": "\"ERROR4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1819, + "length": 7, + "value": "\"FATAL\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1876, + "length": 8, + "value": "\"FATAL2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1934, + "length": 8, + "value": "\"FATAL3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1992, + "length": 8, + "value": "\"FATAL4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 197, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 209, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 226, + "length": 6, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 243, + "length": 6, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 260, + "length": 5, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 276, + "length": 6, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 293, + "length": 6, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 6, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 327, + "length": 4, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 342, + "length": 5, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 358, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 374, + "length": 5, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 390, + "length": 4, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 405, + "length": 5, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 5, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 437, + "length": 5, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 453, + "length": 5, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 6, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 486, + "length": 6, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 503, + "length": 6, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 520, + "length": 5, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 536, + "length": 6, + "value": "22" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 553, + "length": 6, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 570, + "length": 6, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 197, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 209, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 226, + "length": 6, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 243, + "length": 6, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 260, + "length": 5, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 276, + "length": 6, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 293, + "length": 6, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 6, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 327, + "length": 4, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 342, + "length": 5, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 358, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 374, + "length": 5, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 390, + "length": 4, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 405, + "length": 5, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 5, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 437, + "length": 5, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 453, + "length": 5, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 6, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 486, + "length": 6, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 503, + "length": 6, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 520, + "length": 5, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 536, + "length": 6, + "value": "22" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 553, + "length": 6, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 570, + "length": 6, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SimpleExtensionMap.swift", + "kind": "BooleanLiteral", + "offset": 2728, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SimpleExtensionMap.swift", + "kind": "BooleanLiteral", + "offset": 2785, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/SimpleSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 457, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/SimpleSpanProcessor.swift", + "kind": "StringLiteral", + "offset": 516, + "length": 38, + "value": "\"io.opentelemetry.simplespanprocessor\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/SimpleSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 590, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/SimpleSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 627, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 997, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "Dictionary", + "offset": 1095, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1226, + "length": 31, + "value": "\"wss:\/\/call-api.videosdk.live\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1260, + "length": 10, + "value": "\"?roomId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1286, + "length": 10, + "value": "\"&peerId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1328, + "length": 10, + "value": "\"&secret=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1449, + "length": 8, + "value": "\"protoo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1479, + "length": 24, + "value": "\"Sec-WebSocket-Protocol\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1774, + "length": 8, + "value": "\"wss:\/\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1791, + "length": 11, + "value": "\"\/?roomId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1818, + "length": 10, + "value": "\"&peerId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1860, + "length": 10, + "value": "\"&secret=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1895, + "length": 8, + "value": "\"&mode=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2014, + "length": 8, + "value": "\"protoo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2044, + "length": 24, + "value": "\"Sec-WebSocket-Protocol\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2772, + "length": 13, + "value": "\"displayName\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2829, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2839, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2858, + "length": 8, + "value": "\"secret\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2901, + "length": 17, + "value": "\"rtpCapabilities\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2958, + "length": 12, + "value": "\"deviceInfo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2990, + "length": 9, + "value": "\"sdkType\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3001, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3024, + "length": 12, + "value": "\"sdkVersion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3067, + "length": 10, + "value": "\"platform\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3079, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3102, + "length": 17, + "value": "\"deviceUserAgent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3143, + "length": 7, + "value": "\"model\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3152, + "length": 25, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3237, + "length": 11, + "value": "\"osVersion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 3551, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 3558, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3610, + "length": 10, + "value": "\"forceTcp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 3622, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3641, + "length": 11, + "value": "\"producing\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3677, + "length": 11, + "value": "\"consuming\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3950, + "length": 13, + "value": "\"transportId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3990, + "length": 16, + "value": "\"dtlsParameters\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 4340, + "length": 13, + "value": "\"transportId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 4380, + "length": 6, + "value": "\"kind\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 4406, + "length": 15, + "value": "\"rtpParameters\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 4459, + "length": 9, + "value": "\"appData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 4682, + "length": 12, + "value": "\"producerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "Dictionary", + "offset": 4983, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 5000, + "length": 12, + "value": "\"webhookUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 5075, + "length": 12, + "value": "\"awsDirPath\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 5156, + "length": 8, + "value": "\"config\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 5518, + "length": 9, + "value": "\"outputs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "Dictionary", + "offset": 5914, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 5987, + "length": 8, + "value": "\"config\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 6217, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 6405, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 6596, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 6790, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 6978, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 7245, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 7263, + "length": 7, + "value": "\"state\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "Dictionary", + "offset": 7637, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 7708, + "length": 7, + "value": "\"topic\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 7736, + "length": 9, + "value": "\"message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 7768, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 7959, + "length": 7, + "value": "\"topic\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 8141, + "length": 7, + "value": "\"topic\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 8469, + "length": 12, + "value": "\"consumerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 8667, + "length": 12, + "value": "\"consumerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 8930, + "length": 12, + "value": "\"consumerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 8968, + "length": 14, + "value": "\"spatialLayer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 9010, + "length": 15, + "value": "\"temporalLayer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 9294, + "length": 6, + "value": "\"mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 9535, + "length": 15, + "value": "\"participantId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 9568, + "length": 6, + "value": "\"mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 9808, + "length": 13, + "value": "\"transportId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "Dictionary", + "offset": 10101, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 10233, + "length": 8, + "value": "\"method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 10271, + "length": 8, + "value": "\"roomId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 10305, + "length": 9, + "value": "\"request\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 10316, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 10334, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 10363, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "Dictionary", + "offset": 10432, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "IntegerLiteral", + "offset": 10490, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "Dictionary", + "offset": 11070, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11129, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11158, + "length": 10, + "value": "\"response\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 11170, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11188, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 11194, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11212, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11583, + "length": 36, + "value": "\"websocket is connected: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11618, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 11647, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11813, + "length": 57, + "value": "\"websocket is disconnected: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11850, + "length": 4, + "value": "\" with code: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11869, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 11942, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12095, + "length": 10, + "value": "\"response\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12150, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12274, + "length": 8, + "value": "\"method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12482, + "length": 42, + "value": "\"unknown protoo request.method \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12523, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12535, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 12623, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 12747, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12818, + "length": 46, + "value": "\"websocket encountered an error: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12863, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12897, + "length": 41, + "value": "\"Meeting failed to connect. \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12937, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 13000, + "length": 59, + "value": "\"websocket encountered an error: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 13058, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 13092, + "length": 54, + "value": "\"Meeting failed to connect. \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 13145, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 13191, + "length": 32, + "value": "\"websocket encountered an error\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 13256, + "length": 28, + "value": "\"Meeting failed to connect.\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "StringLiteral", + "offset": 3364, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "StringLiteral", + "offset": 3550, + "length": 16, + "value": "\".SourceContext\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "IntegerLiteral", + "offset": 3623, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "StringLiteral", + "offset": 3643, + "length": 11, + "value": "\"file_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "IntegerLiteral", + "offset": 4069, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "IntegerLiteral", + "offset": 4355, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "BooleanLiteral", + "offset": 4569, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "BooleanLiteral", + "offset": 4630, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "BooleanLiteral", + "offset": 4648, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Span.swift", + "kind": "IntegerLiteral", + "offset": 4850, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Span.swift", + "kind": "IntegerLiteral", + "offset": 4858, + "length": 3, + "value": "400" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Span.swift", + "kind": "IntegerLiteral", + "offset": 4904, + "length": 3, + "value": "400" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Span.swift", + "kind": "IntegerLiteral", + "offset": 4912, + "length": 3, + "value": "600" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanBuilderSdk.swift", + "kind": "BooleanLiteral", + "offset": 411, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanBuilderSdk.swift", + "kind": "BooleanLiteral", + "offset": 487, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanBuilderSdk.swift", + "kind": "IntegerLiteral", + "offset": 944, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanBuilderSdk.swift", + "kind": "BooleanLiteral", + "offset": 1039, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanBuilderSdk.swift", + "kind": "IntegerLiteral", + "offset": 2514, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanBuilderSdk.swift", + "kind": "BooleanLiteral", + "offset": 3522, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanBuilderSdk.swift", + "kind": "BooleanLiteral", + "offset": 5380, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanContext.swift", + "kind": "BooleanLiteral", + "offset": 2021, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanContext.swift", + "kind": "BooleanLiteral", + "offset": 2940, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanContext.swift", + "kind": "StringLiteral", + "offset": 3447, + "length": 99, + "value": "\"SpanContext{traceId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanContext.swift", + "kind": "StringLiteral", + "offset": 3478, + "length": 1, + "value": "\", spanId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanContext.swift", + "kind": "StringLiteral", + "offset": 3496, + "length": 1, + "value": "\", traceFlags=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanContext.swift", + "kind": "StringLiteral", + "offset": 3522, + "length": 1, + "value": "\"}, isRemote=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanContext.swift", + "kind": "StringLiteral", + "offset": 3545, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Data\/SpanData.swift", + "kind": "BooleanLiteral", + "offset": 1806, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Data\/SpanData.swift", + "kind": "BooleanLiteral", + "offset": 1921, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Data\/SpanData.swift", + "kind": "IntegerLiteral", + "offset": 2279, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Data\/SpanData.swift", + "kind": "IntegerLiteral", + "offset": 2611, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Data\/SpanData.swift", + "kind": "IntegerLiteral", + "offset": 2958, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 352, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 396, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 1796, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 1826, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 2391, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 2838, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 3296, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 5065, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 5197, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 5229, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 5310, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "StringLiteral", + "offset": 5525, + "length": 9, + "value": "\"%016llx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "StringLiteral", + "offset": 5982, + "length": 29, + "value": "\"SpanId{spanId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "StringLiteral", + "offset": 6009, + "length": 1, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 545, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 664, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 795, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 923, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1156, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1174, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1369, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1387, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1580, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1598, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1817, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1835, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 2052, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 2070, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "IntegerLiteral", + "offset": 1200, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "StringLiteral", + "offset": 1308, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "IntegerLiteral", + "offset": 1459, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "IntegerLiteral", + "offset": 1561, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "IntegerLiteral", + "offset": 1662, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "IntegerLiteral", + "offset": 1762, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "IntegerLiteral", + "offset": 1863, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "IntegerLiteral", + "offset": 2771, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "BooleanLiteral", + "offset": 3039, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/StableMeterProviderSdk.swift", + "kind": "StringLiteral", + "offset": 249, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/StableMeterSharedState.swift", + "kind": "IntegerLiteral", + "offset": 2320, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/StableMeterSharedState.swift", + "kind": "IntegerLiteral", + "offset": 2362, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 800, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 817, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 827, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 4738, + "length": 19, + "value": "\"VideoSDKRTC.StableHistogramData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 5065, + "length": 30, + "value": "\"VideoSDKRTC.StableExponentialHistogramData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 5394, + "length": 15, + "value": "\"VideoSDKRTC.StableGaugeData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 5708, + "length": 13, + "value": "\"VideoSDKRTC.StableSumData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 6020, + "length": 17, + "value": "\"VideoSDKRTC.StableSummaryData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/StableObservableMeasurement.swift", + "kind": "IntegerLiteral", + "offset": 485, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/StableObservableMeasurement.swift", + "kind": "IntegerLiteral", + "offset": 517, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exporter\/StablePeriodicMeterReaderBuilder.swift", + "kind": "FloatLiteral", + "offset": 277, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exporter\/StablePeriodicMetricReaderSdk.swift", + "kind": "StringLiteral", + "offset": 300, + "length": 63, + "value": "\"org.opentelemetry.StablePeriodicMetricReaderSdk.scheduleQueue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exporter\/StablePeriodicMetricReaderSdk.swift", + "kind": "FloatLiteral", + "offset": 550, + "length": 4, + "value": "60.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/StableViewRegistry.swift", + "kind": "StringLiteral", + "offset": 545, + "length": 4, + "value": "\".*\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/StableViewRegistry.swift", + "kind": "BooleanLiteral", + "offset": 1085, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/StableViewRegistry.swift", + "kind": "BooleanLiteral", + "offset": 1275, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/StableViewRegistry.swift", + "kind": "BooleanLiteral", + "offset": 1405, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/StableViewRegistry.swift", + "kind": "BooleanLiteral", + "offset": 1548, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/StableViewRegistry.swift", + "kind": "BooleanLiteral", + "offset": 1693, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/StableViewRegistry.swift", + "kind": "BooleanLiteral", + "offset": 1733, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "BooleanLiteral", + "offset": 767, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "BooleanLiteral", + "offset": 797, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 907, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 960, + "length": 7, + "value": "\"unset\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 1032, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "IntegerLiteral", + "offset": 1151, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "IntegerLiteral", + "offset": 1201, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "IntegerLiteral", + "offset": 1267, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 1443, + "length": 56, + "value": "\"Status{statusCode=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 1469, + "length": 1, + "value": "\", description=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 1, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 1536, + "length": 28, + "value": "\"Status{statusCode=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 1562, + "length": 1, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "IntegerLiteral", + "offset": 2126, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 2268, + "length": 45, + "value": "\"Invalid number of keys found, expected one.\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/StringUtils.swift", + "kind": "BooleanLiteral", + "offset": 536, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/StringUtils.swift", + "kind": "BooleanLiteral", + "offset": 581, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/StringUtils.swift", + "kind": "StringLiteral", + "offset": 704, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/StringUtils.swift", + "kind": "StringLiteral", + "offset": 734, + "length": 3, + "value": "\"~\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/StringUtils.swift", + "kind": "StringLiteral", + "offset": 984, + "length": 25, + "value": "\"[aA-zZ][aA-zZ0-9_\\-.]*\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/StringUtils.swift", + "kind": "BooleanLiteral", + "offset": 1093, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/StringUtils.swift", + "kind": "BooleanLiteral", + "offset": 1123, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 2874, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 3025, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "Dictionary", + "offset": 4032, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 5118, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 5514, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "Array", + "offset": 7089, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 7604, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 7738, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 7754, + "length": 12, + "value": "\"NULL_VALUE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 7936, + "length": 9, + "value": "\".Struct\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 8002, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 8018, + "length": 8, + "value": "\"fields\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 8441, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 8849, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 9045, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 9106, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 9124, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 9295, + "length": 8, + "value": "\".Value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 9360, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 9380, + "length": 12, + "value": "\"null_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 9399, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 9419, + "length": 14, + "value": "\"number_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 9440, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 9460, + "length": 14, + "value": "\"string_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 9481, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 9501, + "length": 12, + "value": "\"bool_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 9520, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 9540, + "length": 14, + "value": "\"struct_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 9561, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 9581, + "length": 12, + "value": "\"list_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 10008, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 10273, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 10523, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 10773, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 11017, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 11093, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 11162, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 11449, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 11528, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 11597, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 12461, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 12649, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 12837, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 13019, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 13208, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 13393, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 13611, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 13672, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 13690, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 13865, + "length": 12, + "value": "\".ListValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 13934, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 13950, + "length": 8, + "value": "\"values\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 14373, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 14655, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 14857, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 14918, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 14936, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/SumAggregation.swift", + "kind": "BooleanLiteral", + "offset": 438, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/SumAggregation.swift", + "kind": "BooleanLiteral", + "offset": 479, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/SumAggregation.swift", + "kind": "IntegerLiteral", + "offset": 959, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/SumAggregation.swift", + "kind": "IntegerLiteral", + "offset": 1288, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/Internal\/SummaryPointData.swift", + "kind": "StringLiteral", + "offset": 117, + "length": 16, + "value": "\"VideoSDKRTC.SummaryPointData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/SwiftExtensions.swift", + "kind": "IntegerLiteral", + "offset": 281, + "length": 5, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/SwiftExtensions.swift", + "kind": "IntegerLiteral", + "offset": 428, + "length": 9, + "value": "1000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/SwiftExtensions.swift", + "kind": "IntegerLiteral", + "offset": 653, + "length": 13, + "value": "1000000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/SwiftExtensions.swift", + "kind": "IntegerLiteral", + "offset": 840, + "length": 5, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/SwiftExtensions.swift", + "kind": "IntegerLiteral", + "offset": 953, + "length": 9, + "value": "1000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/SwiftExtensions.swift", + "kind": "IntegerLiteral", + "offset": 1067, + "length": 13, + "value": "1000000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "IntegerLiteral", + "offset": 2664, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "BooleanLiteral", + "offset": 3913, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4232, + "length": 157, + "value": "\"max cardinality (\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4291, + "length": 1, + "value": "\") reached for metric store. Discarding recorded value \"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4355, + "length": 1, + "value": "\"\" with attributes: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4388, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4773, + "length": 157, + "value": "\"max cardinality (\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4832, + "length": 1, + "value": "\") reached for metric store. Discarding recorded value \"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4896, + "length": 1, + "value": "\"\" with attributes: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4929, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "IntegerLiteral", + "offset": 895, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "IntegerLiteral", + "offset": 2462, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "IntegerLiteral", + "offset": 2799, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "IntegerLiteral", + "offset": 3044, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 3730, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 3753, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 3920, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 4733, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 4756, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 4923, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 6070, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 6093, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 6260, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 7403, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 7426, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 7593, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 8700, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 8723, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 8890, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 9997, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 10020, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 10187, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13388, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13411, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13578, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 14399, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 14422, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 14589, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15413, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15436, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15603, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17269, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17292, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17459, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "IntegerLiteral", + "offset": 18420, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18704, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18727, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18894, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "IntegerLiteral", + "offset": 19648, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "IntegerLiteral", + "offset": 20371, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 21097, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 21533, + "length": 5, + "value": "\"key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 21540, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 21644, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 21653, + "length": 3, + "value": "\"2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 22302, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 22325, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 22492, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 23135, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 23571, + "length": 5, + "value": "\"key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 23578, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 23682, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 23691, + "length": 3, + "value": "\"2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 24352, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 24375, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 24542, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 25159, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 25595, + "length": 5, + "value": "\"key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 25602, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 25706, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 25715, + "length": 3, + "value": "\"2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 26353, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 26376, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 26543, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecodingOptions.swift", + "kind": "IntegerLiteral", + "offset": 920, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 597, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 640, + "length": 3, + "value": "\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 683, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 726, + "length": 3, + "value": "\"-\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 773, + "length": 4, + "value": "\"\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 823, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 866, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 920, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 975, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 1030, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 1086, + "length": 3, + "value": "\"]\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 1131, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 1176, + "length": 3, + "value": "\"A\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 1204, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "Array", + "offset": 1426, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 2998, + "length": 4, + "value": "\": \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 6, + "value": "\" {\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 3484, + "length": 5, + "value": "\"}\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 3646, + "length": 4, + "value": "\", \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 4072, + "length": 5, + "value": "\"nan\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4138, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 6, + "value": "\"-inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 4241, + "length": 5, + "value": "\"inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 4467, + "length": 5, + "value": "\"nan\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4533, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 4572, + "length": 6, + "value": "\"-inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 4636, + "length": 5, + "value": "\"inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4830, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4875, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4911, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4968, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4975, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5010, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5066, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5072, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5133, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5215, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5440, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5813, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 5848, + "length": 4, + "value": "\"0x\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5913, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5933, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5990, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6022, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6061, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6283, + "length": 6, + "value": "\"true\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6292, + "length": 7, + "value": "\"false\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6522, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6560, + "length": 5, + "value": "\"\\b\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6584, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6622, + "length": 5, + "value": "\"\\t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6646, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6685, + "length": 5, + "value": "\"\\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6709, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6748, + "length": 5, + "value": "\"\\v\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6772, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6811, + "length": 5, + "value": "\"\\f\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6835, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6874, + "length": 5, + "value": "\"\\r\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6898, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6937, + "length": 6, + "value": "\"\\\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6962, + "length": 2, + "value": "92" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 7001, + "length": 6, + "value": "\"\\\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7026, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7030, + "length": 2, + "value": "31" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7034, + "length": 3, + "value": "127" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7174, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7235, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7239, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7299, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7320, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7324, + "length": 3, + "value": "127" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7420, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7427, + "length": 5, + "value": "0x7ff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7462, + "length": 4, + "value": "0xc0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7485, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7518, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7541, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7563, + "length": 5, + "value": "0x800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7571, + "length": 6, + "value": "0xffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7607, + "length": 4, + "value": "0xe0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7651, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7684, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7729, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7734, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7769, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7812, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7868, + "length": 4, + "value": "0xf0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7912, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7945, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7990, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7996, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8031, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8076, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8081, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8116, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8159, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8438, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8463, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8593, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 8631, + "length": 5, + "value": "\"\\b\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8657, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 8695, + "length": 5, + "value": "\"\\t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8721, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 8760, + "length": 5, + "value": "\"\\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8786, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 8825, + "length": 5, + "value": "\"\\v\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8851, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 8890, + "length": 5, + "value": "\"\\f\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8916, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 8955, + "length": 5, + "value": "\"\\r\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8981, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 9020, + "length": 6, + "value": "\"\\\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 9047, + "length": 2, + "value": "92" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 9086, + "length": 6, + "value": "\"\\\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 9113, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 9118, + "length": 3, + "value": "126" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 9329, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 9384, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 9388, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 9442, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingOptions.swift", + "kind": "BooleanLiteral", + "offset": 734, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "Dictionary", + "offset": 617, + "length": 22, + "value": "[(1, \"key\"), (2, \"value\")]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "Dictionary", + "offset": 1572, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 2707, + "length": 3, + "value": "\"]\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 3597, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3946, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 4936, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "Array", + "offset": 5431, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 5635, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 5954, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6123, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6510, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6604, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7206, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 7670, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7811, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7917, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 8836, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 9013, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "Dictionary", + "offset": 11847, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "Dictionary", + "offset": 13001, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 13688, + "length": 9, + "value": "\"#json: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 13774, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "Dictionary", + "offset": 19363, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 20959, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 21143, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 25670, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 25754, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 26257, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 26348, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 26809, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 26903, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 576, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 614, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 646, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 682, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 723, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 761, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 805, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 846, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 887, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 3, + "value": "\"3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 973, + "length": 3, + "value": "\"7\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1015, + "length": 3, + "value": "\"9\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1058, + "length": 3, + "value": "\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1102, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1144, + "length": 3, + "value": "\"+\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1187, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1234, + "length": 3, + "value": "\";\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1283, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1333, + "length": 4, + "value": "\"'\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1381, + "length": 4, + "value": "\"\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1432, + "length": 3, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1474, + "length": 3, + "value": "\"#\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1522, + "length": 3, + "value": "\"_\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1572, + "length": 3, + "value": "\"?\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1615, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1670, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1726, + "length": 3, + "value": "\"]\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1780, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1889, + "length": 3, + "value": "\"<\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1944, + "length": 3, + "value": "\">\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1987, + "length": 3, + "value": "\"-\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2031, + "length": 3, + "value": "\"a\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2075, + "length": 3, + "value": "\"A\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2119, + "length": 3, + "value": "\"b\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2163, + "length": 3, + "value": "\"e\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2207, + "length": 3, + "value": "\"E\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2251, + "length": 3, + "value": "\"f\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2295, + "length": 3, + "value": "\"F\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2339, + "length": 3, + "value": "\"i\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2383, + "length": 3, + "value": "\"l\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2427, + "length": 3, + "value": "\"n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2471, + "length": 3, + "value": "\"r\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2515, + "length": 3, + "value": "\"s\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2559, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2603, + "length": 3, + "value": "\"T\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2647, + "length": 3, + "value": "\"u\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2691, + "length": 3, + "value": "\"U\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2735, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2779, + "length": 3, + "value": "\"x\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2823, + "length": 3, + "value": "\"y\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2867, + "length": 3, + "value": "\"z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2911, + "length": 3, + "value": "\"Z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 3117, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 3206, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 4077, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 4090, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 4102, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 5221, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 5242, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 5344, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 5914, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 5983, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 5987, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6100, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6107, + "length": 5, + "value": "0x7ff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6168, + "length": 4, + "value": "0xC0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6214, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6241, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6286, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6308, + "length": 5, + "value": "0x800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6316, + "length": 6, + "value": "0xffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6378, + "length": 4, + "value": "0xE0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6424, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6452, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6499, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6504, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6534, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6579, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6601, + "length": 7, + "value": "0x10000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6611, + "length": 8, + "value": "0x10FFFF" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6675, + "length": 4, + "value": "0xF0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6721, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6749, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6796, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6802, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6832, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6879, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6884, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6914, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6959, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 7352, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 9627, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 9749, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 9780, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 9942, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 10170, + "length": 65, + "value": "\"Somehow TextFormatDecoding unwound more objects than it started\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 10370, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 10564, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 10628, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 10739, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 10767, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 11298, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 11507, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 12396, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 12502, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 12601, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 12876, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 13354, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 13397, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 13447, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 13463, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 13804, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 13861, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 13881, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14061, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14080, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14122, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14157, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14176, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14447, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14512, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14647, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14651, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14859, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14886, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15008, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15257, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15261, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15331, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15354, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15361, + "length": 5, + "value": "0x7ff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15432, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15455, + "length": 6, + "value": "0xD800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15464, + "length": 6, + "value": "0xDFFF" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15648, + "length": 5, + "value": "0x800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15656, + "length": 6, + "value": "0xffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15728, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15751, + "length": 7, + "value": "0x10000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15761, + "length": 8, + "value": "0x10FFFF" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15835, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 16081, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 16117, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 16167, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 16205, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 16398, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 16872, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 17042, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 17646, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 17668, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 17712, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 17732, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 17832, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 17854, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18090, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18179, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18269, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18362, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18445, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18465, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18484, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18527, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18580, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18599, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18642, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18711, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18753, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18877, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18881, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18923, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18950, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19010, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19146, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19150, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19215, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19282, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19305, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19312, + "length": 5, + "value": "0x7ff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19378, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19383, + "length": 4, + "value": "0xC0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19429, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19454, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19459, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19504, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19535, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19558, + "length": 5, + "value": "0x800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19566, + "length": 6, + "value": "0xffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19633, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19638, + "length": 4, + "value": "0xE0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19684, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19710, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19715, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19762, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19767, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19795, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19800, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19845, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19876, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19899, + "length": 7, + "value": "0x10000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19909, + "length": 8, + "value": "0x10FFFF" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19978, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19983, + "length": 4, + "value": "0xF0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20029, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20055, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20060, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20107, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20113, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20141, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20146, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20193, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20198, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20226, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20231, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20276, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20307, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20604, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20630, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20678, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20711, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20746, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20786, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20816, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20886, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20924, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20984, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21027, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21087, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21129, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21189, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21230, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21290, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21338, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21398, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21435, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21495, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21540, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21585, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21621, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21678, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21709, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21752, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 21987, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 22040, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 22166, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 22392, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 22547, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 22573, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 22995, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23011, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23195, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23228, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23283, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23317, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23386, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23693, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23808, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23895, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 24136, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 24258, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 24288, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 24435, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 24504, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 24598, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 24972, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25093, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25123, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25383, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25469, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25802, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25812, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25941, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25967, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 26275, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 26329, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 26508, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 26710, + "length": 18, + "value": "0x8000000000000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 27540, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 27682, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 27860, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 27959, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 28087, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 28795, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 28937, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 28966, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 29269, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 29417, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 29545, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 29673, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 29706, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30068, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30386, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30435, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30511, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30643, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30703, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30913, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30989, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 31285, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 31543, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 31816, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 32296, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 32386, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 32723, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 32765, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 33062, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 33099, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 33152, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 33185, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 33337, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 33393, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 33893, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 33973, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 33995, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 34036, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 35345, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 35361, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 35452, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 35502, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 35739, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 35962, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 36125, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 36790, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 37906, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 37959, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 38039, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 38200, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 38893, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 39763, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 40266, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 40321, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 40415, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 40527, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 41241, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 41268, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 41702, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 41729, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 41779, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 41809, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 42505, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 42607, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 42929, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 42949, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 6934, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 7199, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "StringLiteral", + "offset": 7533, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "StringLiteral", + "offset": 7715, + "length": 12, + "value": "\".Timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 7784, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "StringLiteral", + "offset": 7800, + "length": 9, + "value": "\"seconds\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 7816, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "StringLiteral", + "offset": 7832, + "length": 7, + "value": "\"nanos\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 8254, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 8337, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 8532, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 8612, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 8642, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 8720, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "BooleanLiteral", + "offset": 8924, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "BooleanLiteral", + "offset": 8969, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "BooleanLiteral", + "offset": 9030, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "BooleanLiteral", + "offset": 9048, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 592, + "length": 4, + "value": "1440" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 625, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 655, + "length": 5, + "value": "86400" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 689, + "length": 4, + "value": "3600" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 724, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 755, + "length": 10, + "value": "1000000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1390, + "length": 7, + "value": "2440588" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1853, + "length": 4, + "value": "1401" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1868, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1877, + "length": 6, + "value": "274277" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1885, + "length": 6, + "value": "146097" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1895, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1898, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1903, + "length": 2, + "value": "38" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1918, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1926, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1957, + "length": 4, + "value": "1461" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1964, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1980, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1988, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2014, + "length": 3, + "value": "153" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2020, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2025, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2051, + "length": 3, + "value": "153" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2058, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2061, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2067, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2089, + "length": 4, + "value": "1461" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2097, + "length": 4, + "value": "4716" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2108, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2113, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2121, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2254, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "StringLiteral", + "offset": 2269, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2292, + "length": 7, + "value": "1000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2303, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "StringLiteral", + "offset": 2318, + "length": 38, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2346, + "length": 7, + "value": "1000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "StringLiteral", + "offset": 2355, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2377, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2385, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "StringLiteral", + "offset": 2400, + "length": 33, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2426, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "StringLiteral", + "offset": 2432, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "StringLiteral", + "offset": 2456, + "length": 27, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "StringLiteral", + "offset": 2482, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 2509, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 3566, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 5009, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 8247, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 8717, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 9547, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 9844, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 9957, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 10117, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 10305, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 10498, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 12740, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 12774, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 12805, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 12834, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 12863, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 12894, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 13058, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 13089, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 13118, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 13147, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 13178, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 13209, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 13707, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 14117, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 14299, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 15525, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 15707, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 17480, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 17508, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 17533, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 17688, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 17713, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 17741, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 19007, + "length": 30, + "value": "\"opentelemetry.proto.trace.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 19216, + "length": 13, + "value": "\".TracesData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 19286, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 19306, + "length": 16, + "value": "\"resource_spans\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 19737, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 20040, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 20284, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 20345, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 20363, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 20555, + "length": 16, + "value": "\".ResourceSpans\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 20628, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 20644, + "length": 10, + "value": "\"resource\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 20661, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 20681, + "length": 13, + "value": "\"scope_spans\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 20701, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 20721, + "length": 12, + "value": "\"schema_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 21148, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 21235, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 21323, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 21901, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 22029, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 22150, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 22392, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 22447, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 22500, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 22561, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 22579, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 22768, + "length": 13, + "value": "\".ScopeSpans\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 22838, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 22854, + "length": 7, + "value": "\"scope\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 22868, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 22884, + "length": 7, + "value": "\"spans\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 22898, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 22918, + "length": 12, + "value": "\"schema_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 23345, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 23429, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 23512, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 24087, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 24205, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 24326, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 24556, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 24601, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 24654, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 24715, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 24733, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 24916, + "length": 7, + "value": "\".Span\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 24980, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25000, + "length": 10, + "value": "\"trace_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25017, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25037, + "length": 9, + "value": "\"span_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25053, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25073, + "length": 13, + "value": "\"trace_state\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25093, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25113, + "length": 16, + "value": "\"parent_span_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25136, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25152, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25165, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25181, + "length": 6, + "value": "\"kind\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25194, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25214, + "length": 22, + "value": "\"start_time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25243, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25263, + "length": 20, + "value": "\"end_time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25290, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25306, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25325, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25346, + "length": 26, + "value": "\"dropped_attributes_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25379, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25396, + "length": 8, + "value": "\"events\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25411, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25432, + "length": 22, + "value": "\"dropped_events_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25461, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25478, + "length": 7, + "value": "\"links\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25492, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25513, + "length": 21, + "value": "\"dropped_links_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25541, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25558, + "length": 8, + "value": "\"status\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25981, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26064, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26146, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26233, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26321, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26402, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26481, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26576, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26669, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26757, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26857, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26942, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 27038, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 27122, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 27217, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 27797, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 27911, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28034, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28160, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28271, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28387, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28429, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28521, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28561, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28651, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28775, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28822, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28918, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 29035, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 29079, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 29171, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 29286, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 29329, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 29420, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 29533, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 29758, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 29805, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 29860, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 29919, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 29962, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30005, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30074, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30139, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30194, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30273, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30320, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30391, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30436, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30505, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30554, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30615, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30633, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 30777, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 30793, + "length": 23, + "value": "\"SPAN_KIND_UNSPECIFIED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 30823, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 30839, + "length": 20, + "value": "\"SPAN_KIND_INTERNAL\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 30866, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 30882, + "length": 18, + "value": "\"SPAN_KIND_SERVER\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 30907, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 30923, + "length": 18, + "value": "\"SPAN_KIND_CLIENT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 30948, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 30964, + "length": 20, + "value": "\"SPAN_KIND_PRODUCER\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 30991, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 31007, + "length": 20, + "value": "\"SPAN_KIND_CONSUMER\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 31247, + "length": 8, + "value": "\".Event\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 31312, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 31332, + "length": 16, + "value": "\"time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 31355, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 31371, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 31384, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 31400, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 31419, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 31439, + "length": 26, + "value": "\"dropped_attributes_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 31880, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 31970, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32051, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32139, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32357, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32444, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32555, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32679, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32726, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32822, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 33064, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 33107, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 33162, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 33241, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 33302, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 33320, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 33541, + "length": 7, + "value": "\".Link\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 33605, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 33625, + "length": 10, + "value": "\"trace_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 33642, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 33662, + "length": 9, + "value": "\"span_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 33678, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 33698, + "length": 13, + "value": "\"trace_state\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 33718, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 33734, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 33753, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 33773, + "length": 26, + "value": "\"dropped_attributes_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 34214, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 34297, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 34379, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 34466, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 34554, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 34851, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 34965, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 35088, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 35212, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 35259, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 35355, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 35585, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 35632, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 35687, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 35742, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 35821, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 35882, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 35900, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 36085, + "length": 9, + "value": "\".Status\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 36151, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 36167, + "length": 9, + "value": "\"message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 36183, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 36199, + "length": 6, + "value": "\"code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 36620, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 36704, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 36982, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 37092, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 37316, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 37359, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 37420, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 37438, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 37586, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 37602, + "length": 19, + "value": "\"STATUS_CODE_UNSET\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 37628, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 37644, + "length": 16, + "value": "\"STATUS_CODE_OK\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 37667, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 37683, + "length": 19, + "value": "\"STATUS_CODE_ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "Array", + "offset": 2107, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 4477, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 5531, + "length": 40, + "value": "\"opentelemetry.proto.collector.trace.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 5775, + "length": 28, + "value": "\".ExportTraceServiceRequest\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 5860, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 5880, + "length": 16, + "value": "\"resource_spans\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 6311, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 6614, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 6908, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 6969, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 6987, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 7202, + "length": 29, + "value": "\".ExportTraceServiceResponse\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 7288, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 7308, + "length": 17, + "value": "\"partial_success\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 7740, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 8331, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8635, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8696, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8714, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 8928, + "length": 28, + "value": "\".ExportTracePartialSuccess\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9013, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 9033, + "length": 16, + "value": "\"rejected_spans\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9056, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 9076, + "length": 15, + "value": "\"error_message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9506, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9595, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9804, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9890, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 10017, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10311, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10370, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10431, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10449, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 468, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 570, + "length": 3, + "value": "0x1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 642, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 681, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 799, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "StringLiteral", + "offset": 1054, + "length": 6, + "value": "\"%02x\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 1651, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 1783, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 1813, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 1894, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 2213, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "StringLiteral", + "offset": 3006, + "length": 32, + "value": "\"TraceFlags{sampled=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "StringLiteral", + "offset": 3036, + "length": 1, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 355, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 400, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 1988, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 2017, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 3853, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 4543, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 5243, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 5648, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 5677, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 5826, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 5892, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 5969, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 6048, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 6172, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 6321, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 6398, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 6436, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "StringLiteral", + "offset": 6892, + "length": 16, + "value": "\"%016llx%016llx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "StringLiteral", + "offset": 7394, + "length": 31, + "value": "\"TraceId{traceId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "StringLiteral", + "offset": 7423, + "length": 1, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "BooleanLiteral", + "offset": 7549, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "BooleanLiteral", + "offset": 7635, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "BooleanLiteral", + "offset": 7676, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/trace\/utils\/TraceProtoUtils.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/trace\/utils\/TraceProtoUtils.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerProviderBuilder.swift", + "kind": "Array", + "offset": 561, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerProviderSdk.swift", + "kind": "StringLiteral", + "offset": 359, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerProviderSdk.swift", + "kind": "Array", + "offset": 812, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerProviderSdk.swift", + "kind": "StringLiteral", + "offset": 1668, + "length": 48, + "value": "\"Tracer requested without instrumentation name.\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerProviderSdk.swift", + "kind": "StringLiteral", + "offset": 1916, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerProviderSdk.swift", + "kind": "IntegerLiteral", + "offset": 1970, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerProviderSdk.swift", + "kind": "IntegerLiteral", + "offset": 2358, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "BooleanLiteral", + "offset": 439, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 949, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 1139, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 1197, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 1979, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 2154, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "BooleanLiteral", + "offset": 2400, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 2748, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 2841, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceState.swift", + "kind": "IntegerLiteral", + "offset": 819, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 166, + "length": 3, + "value": "256" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 208, + "length": 3, + "value": "256" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 259, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 683, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 825, + "length": 4, + "value": "\" ,\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 1014, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 1284, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 1425, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 1702, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 1866, + "length": 30, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 1879, + "length": 1, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 1894, + "length": 1, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 2368, + "length": 43, + "value": "\"abcdefghijklmnopqrstuvwxyz0123456789_-*\/@\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 2572, + "length": 3, + "value": "\"z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 2597, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 2710, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 2757, + "length": 3, + "value": "\"@\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 2783, + "length": 3, + "value": "\"@\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 2809, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 2841, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 3127, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 3152, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 3244, + "length": 4, + "value": "0x20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 3267, + "length": 4, + "value": "0x7E" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 3285, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 3302, + "length": 3, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 3331, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 3377, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 3524, + "length": 3, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 3557, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 3622, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 3638, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 2857, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 2884, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 2911, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 3058, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 3085, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 3114, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "Array", + "offset": 3769, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "Array", + "offset": 3876, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "Array", + "offset": 3964, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 5319, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 5762, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 5854, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "Array", + "offset": 5945, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7516, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7550, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7583, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7615, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7647, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7680, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7712, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7746, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7780, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7811, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7844, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7877, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7912, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7945, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7979, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8011, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8047, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8083, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8117, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8284, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8317, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8349, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8381, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8414, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8446, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8480, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8514, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8545, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8578, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8610, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8645, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8678, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8712, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8744, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8780, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8816, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8850, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8884, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 9987, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 10017, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 10048, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 10079, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 10239, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 10270, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 10301, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 10332, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "Array", + "offset": 11043, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "Array", + "offset": 11127, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 12352, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "Array", + "offset": 12435, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14419, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 14550, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14566, + "length": 15, + "value": "\"SYNTAX_PROTO2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 14588, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14604, + "length": 15, + "value": "\"SYNTAX_PROTO3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 14626, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14642, + "length": 17, + "value": "\"SYNTAX_EDITIONS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14827, + "length": 7, + "value": "\".Type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 14891, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14907, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 14920, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14936, + "length": 8, + "value": "\"fields\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 14951, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14967, + "length": 8, + "value": "\"oneofs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 14982, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14998, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 15014, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 15034, + "length": 16, + "value": "\"source_context\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 15057, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 15073, + "length": 8, + "value": "\"syntax\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 15088, + "length": 1, + "value": "7" + }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 15104, + "length": 9, + "value": "\"edition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 244, + "offset": 15528, "length": 1, "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 263, + "offset": 15609, "length": 1, "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 244, + "offset": 15693, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 15776, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 15861, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 15953, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 16034, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 16607, "length": 1, "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 263, + "offset": 16723, "length": 1, "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 244, + "offset": 16838, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 16956, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 17075, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 17194, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 17311, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17499, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17546, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17593, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17642, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17705, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17752, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17801, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17862, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17880, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 18051, + "length": 8, + "value": "\".Field\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 18116, "length": 1, "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 18132, + "length": 6, + "value": "\"kind\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 263, + "offset": 18145, "length": 1, "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Constants.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 213, - "length": 31, - "value": "\"wss:\/\/call-api.videosdk.live\/\"" + "offset": 18161, + "length": 13, + "value": "\"cardinality\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 18181, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 214, - "length": 28, - "value": "\"CFBundleShortVersionString\"" + "offset": 18197, + "length": 8, + "value": "\"number\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 18212, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 696, - "length": 5, - "value": "\"ios\"" + "offset": 18228, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 18241, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 743, - "length": 9, - "value": "\"unknown\"" + "offset": 18261, + "length": 10, + "value": "\"type_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 18278, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 622, - "length": 7, - "value": "\"width\"" + "offset": 18298, + "length": 13, + "value": "\"oneof_index\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 631, - "length": 3, - "value": "160" + "offset": 18318, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 640, + "offset": 18334, "length": 8, - "value": "\"height\"" + "value": "\"packed\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 650, - "length": 2, - "value": "90" + "offset": 18349, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 658, + "offset": 18365, "length": 9, - "value": "\"bitRate\"" + "value": "\"options\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 669, + "offset": 18381, "length": 2, - "value": "60" + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 18402, + "length": 11, + "value": "\"json_name\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 674, - "length": 4, - "value": "1000" + "offset": 18420, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 684, - "length": 11, - "value": "\"frameRate\"" + "offset": 18441, + "length": 15, + "value": "\"default_value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 697, + "offset": 18871, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 18950, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19036, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19118, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19199, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19283, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19369, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19450, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19535, "length": 2, - "value": "15" + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19621, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19909, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20035, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20066, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20145, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20256, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20373, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20408, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20491, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 20522, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20604, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20722, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20841, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20969, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21160, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21217, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21264, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21307, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21356, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21411, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21458, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21507, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21558, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21617, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21678, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21696, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 21824, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 705, + "offset": 21840, + "length": 14, + "value": "\"TYPE_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 21861, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 21877, "length": 13, - "value": "\"aspectRatio\"" + "value": "\"TYPE_DOUBLE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 21897, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 720, + "offset": 21913, "length": 12, - "value": "\"oneSixNine\"" + "value": "\"TYPE_FLOAT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 21932, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 760, - "length": 7, - "value": "\"width\"" + "offset": 21948, + "length": 12, + "value": "\"TYPE_INT64\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 769, - "length": 3, - "value": "320" + "offset": 21967, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 778, - "length": 8, - "value": "\"height\"" + "offset": 21983, + "length": 13, + "value": "\"TYPE_UINT64\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 788, - "length": 3, - "value": "180" + "offset": 22003, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 797, - "length": 9, - "value": "\"bitRate\"" + "offset": 22019, + "length": 12, + "value": "\"TYPE_INT32\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 808, - "length": 3, - "value": "120" + "offset": 22038, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 22054, + "length": 14, + "value": "\"TYPE_FIXED64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 814, - "length": 4, - "value": "1000" + "offset": 22075, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 824, + "offset": 22091, + "length": 14, + "value": "\"TYPE_FIXED32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 22112, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 22128, "length": 11, - "value": "\"frameRate\"" + "value": "\"TYPE_BOOL\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 837, - "length": 2, - "value": "15" + "offset": 22146, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 845, + "offset": 22162, "length": 13, - "value": "\"aspectRatio\"" + "value": "\"TYPE_STRING\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 860, - "length": 12, - "value": "\"oneSixNine\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 22182, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 900, - "length": 7, - "value": "\"width\"" + "offset": 22199, + "length": 12, + "value": "\"TYPE_GROUP\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 909, - "length": 3, - "value": "384" + "offset": 22218, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 918, - "length": 8, - "value": "\"height\"" + "offset": 22235, + "length": 14, + "value": "\"TYPE_MESSAGE\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 928, - "length": 3, - "value": "216" + "offset": 22256, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 937, - "length": 9, - "value": "\"bitRate\"" + "offset": 22273, + "length": 12, + "value": "\"TYPE_BYTES\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 948, - "length": 3, - "value": "180" + "offset": 22292, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 22309, + "length": 13, + "value": "\"TYPE_UINT32\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 954, - "length": 4, - "value": "1000" + "offset": 22329, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 964, + "offset": 22346, "length": 11, - "value": "\"frameRate\"" + "value": "\"TYPE_ENUM\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 977, + "offset": 22364, "length": 2, "value": "15" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 985, + "offset": 22381, + "length": 15, + "value": "\"TYPE_SFIXED32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 22403, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 22420, + "length": 15, + "value": "\"TYPE_SFIXED64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 22442, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 22459, "length": 13, - "value": "\"aspectRatio\"" + "value": "\"TYPE_SINT32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 22479, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1000, - "length": 12, - "value": "\"oneSixNine\"" + "offset": 22496, + "length": 13, + "value": "\"TYPE_SINT64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 22642, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1040, - "length": 7, - "value": "\"width\"" + "offset": 22658, + "length": 21, + "value": "\"CARDINALITY_UNKNOWN\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1049, - "length": 3, - "value": "640" + "offset": 22686, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1058, - "length": 8, - "value": "\"height\"" + "offset": 22702, + "length": 22, + "value": "\"CARDINALITY_OPTIONAL\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1068, - "length": 3, - "value": "360" + "offset": 22731, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1077, - "length": 9, - "value": "\"bitRate\"" + "offset": 22747, + "length": 22, + "value": "\"CARDINALITY_REQUIRED\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1088, - "length": 3, - "value": "300" + "offset": 22776, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 22792, + "length": 22, + "value": "\"CARDINALITY_REPEATED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 22982, + "length": 7, + "value": "\".Enum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1094, - "length": 4, - "value": "1000" + "offset": 23046, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 23062, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 23075, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1104, + "offset": 23091, "length": 11, - "value": "\"frameRate\"" + "value": "\"enumvalue\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1117, - "length": 2, - "value": "20" + "offset": 23109, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1125, - "length": 13, - "value": "\"aspectRatio\"" + "offset": 23125, + "length": 9, + "value": "\"options\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1140, - "length": 12, - "value": "\"oneSixNine\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 23141, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1180, - "length": 7, - "value": "\"width\"" + "offset": 23161, + "length": 16, + "value": "\"source_context\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1189, - "length": 3, - "value": "960" + "offset": 23184, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1198, + "offset": 23200, "length": 8, - "value": "\"height\"" + "value": "\"syntax\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1208, - "length": 3, - "value": "540" + "offset": 23215, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1217, + "offset": 23231, "length": 9, - "value": "\"bitRate\"" + "value": "\"edition\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1228, - "length": 3, - "value": "600" + "offset": 23655, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1234, - "length": 4, - "value": "1000" + "offset": 23736, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1244, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 23823, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1257, - "length": 2, - "value": "25" + "offset": 23908, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1265, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 24000, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1280, - "length": 12, - "value": "\"oneSixNine\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 24081, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1321, - "length": 7, - "value": "\"width\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 24654, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1330, - "length": 4, - "value": "1280" + "offset": 24776, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1340, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 24894, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1350, - "length": 3, - "value": "720" + "offset": 25013, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1359, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 25132, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1370, - "length": 4, - "value": "2000" + "offset": 25249, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1377, - "length": 4, - "value": "1000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25437, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1387, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25490, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1400, - "length": 2, - "value": "30" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25539, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1408, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25602, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25649, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25698, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25759, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25777, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1423, + "offset": 25952, "length": 12, - "value": "\"oneSixNine\"" + "value": "\".EnumValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 26021, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1465, - "length": 7, - "value": "\"width\"" + "offset": 26037, + "length": 6, + "value": "\"name\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1474, - "length": 4, - "value": "1920" + "offset": 26050, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1484, + "offset": 26066, "length": 8, - "value": "\"height\"" + "value": "\"number\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1494, - "length": 4, - "value": "1080" + "offset": 26081, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1504, + "offset": 26097, "length": 9, - "value": "\"bitRate\"" + "value": "\"options\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1515, - "length": 4, - "value": "3000" + "offset": 26521, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1522, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1532, - "length": 11, - "value": "\"frameRate\"" + "offset": 26602, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1545, - "length": 2, - "value": "30" + "offset": 26684, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1553, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 26962, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1568, - "length": 12, - "value": "\"oneSixNine\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 26993, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1610, - "length": 7, - "value": "\"width\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 27072, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1619, - "length": 4, - "value": "2560" + "offset": 27190, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1629, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 27388, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1639, - "length": 4, - "value": "1440" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 27435, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1649, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 27484, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1660, - "length": 4, - "value": "5000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 27545, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1667, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 27563, "length": 4, - "value": "1000" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1677, - "length": 11, - "value": "\"frameRate\"" + "offset": 27735, + "length": 9, + "value": "\".Option\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1690, - "length": 2, - "value": "30" + "offset": 27801, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1698, - "length": 13, - "value": "\"aspectRatio\"" + "offset": 27817, + "length": 6, + "value": "\"name\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1713, - "length": 12, - "value": "\"oneSixNine\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 27830, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1755, + "offset": 27846, "length": 7, - "value": "\"width\"" + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1764, - "length": 4, - "value": "3840" + "offset": 28268, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1774, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 28349, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1784, - "length": 4, - "value": "2160" + "offset": 28922, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1794, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 29033, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1805, - "length": 4, - "value": "8000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 29229, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1812, - "length": 4, - "value": "1000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 29276, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1822, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 29337, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1835, - "length": 2, - "value": "30" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 29355, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 1843, - "length": 13, - "value": "\"aspectRatio\"" + "offset": 309, + "length": 57, + "value": "\"https:\/\/api.videosdk.live\/infra\/v1\/meetings\/init-config\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 1858, - "length": 12, - "value": "\"oneSixNine\"" + "offset": 423, + "length": 15, + "value": "\"Authorization\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 1898, - "length": 7, - "value": "\"width\"" + "offset": 465, + "length": 18, + "value": "\"application\/json\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1907, - "length": 3, - "value": "160" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", + "kind": "StringLiteral", + "offset": 505, + "length": 14, + "value": "\"Content-Type\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 1916, + "offset": 593, "length": 8, - "value": "\"height\"" + "value": "\"roomId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1926, - "length": 3, - "value": "120" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", + "kind": "Array", + "offset": 621, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 1935, - "length": 9, - "value": "\"bitRate\"" + "offset": 654, + "length": 6, + "value": "\"POST\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1946, - "length": 2, - "value": "80" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", + "kind": "StringLiteral", + "offset": 959, + "length": 20, + "value": "\"YourAppErrorDomain\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "IntegerLiteral", - "offset": 1951, - "length": 4, - "value": "1000" + "offset": 987, + "length": 2, + "value": "-1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 1961, - "length": 11, - "value": "\"frameRate\"" + "offset": 1029, + "length": 35, + "value": "\"No data received from the server.\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1974, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", + "kind": "Array", + "offset": 1253, "length": 2, - "value": "15" + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 1982, - "length": 13, - "value": "\"aspectRatio\"" + "offset": 1365, + "length": 6, + "value": "\"data\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1997, - "length": 11, - "value": "\"fourThree\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", + "kind": "Dictionary", + "offset": 1394, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 2036, - "length": 7, - "value": "\"width\"" + "offset": 1480, + "length": 20, + "value": "\"YourAppErrorDomain\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "IntegerLiteral", - "offset": 2045, - "length": 3, - "value": "240" + "offset": 1508, + "length": 2, + "value": "-2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 2054, - "length": 8, - "value": "\"height\"" + "offset": 1550, + "length": 32, + "value": "\"Failed to parse JSON response.\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "IntegerLiteral", - "offset": 2064, - "length": 3, - "value": "180" + "offset": 273, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", + "kind": "IntegerLiteral", + "offset": 280, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "StringLiteral", - "offset": 2073, - "length": 9, - "value": "\"bitRate\"" + "offset": 360, + "length": 64, + "value": "\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "IntegerLiteral", - "offset": 2084, - "length": 3, - "value": "100" + "offset": 448, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "IntegerLiteral", - "offset": 2090, - "length": 4, - "value": "1000" + "offset": 452, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2100, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", + "kind": "IntegerLiteral", + "offset": 580, + "length": 2, + "value": "89" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "IntegerLiteral", - "offset": 2113, - "length": 2, - "value": "15" + "offset": 585, + "length": 3, + "value": "122" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2121, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", + "kind": "IntegerLiteral", + "offset": 651, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2136, - "length": 11, - "value": "\"fourThree\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", + "kind": "IntegerLiteral", + "offset": 864, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "StringLiteral", - "offset": 2175, - "length": 7, - "value": "\"width\"" + "offset": 899, + "length": 26, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "IntegerLiteral", - "offset": 2184, - "length": 3, - "value": "320" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2193, - "length": 8, - "value": "\"height\"" + "offset": 917, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "IntegerLiteral", - "offset": 2203, - "length": 3, - "value": "240" + "offset": 921, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "StringLiteral", - "offset": 2212, - "length": 9, - "value": "\"bitRate\"" + "offset": 924, + "length": 1, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2223, - "length": 3, - "value": "150" + "offset": 939, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2229, - "length": 4, - "value": "1000" + "offset": 944, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2239, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 951, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2252, - "length": 2, - "value": "15" + "offset": 968, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2260, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 994, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2275, - "length": 11, - "value": "\"fourThree\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 999, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2314, - "length": 7, - "value": "\"width\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 1007, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2323, - "length": 3, - "value": "480" + "offset": 1024, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2332, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 1050, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 1055, + "length": 2, + "value": "21" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2342, - "length": 3, - "value": "360" + "offset": 1063, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2351, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 1080, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2362, - "length": 3, - "value": "225" + "offset": 1106, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2368, - "length": 4, - "value": "1000" + "offset": 1111, + "length": 2, + "value": "28" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2378, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 1119, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2391, - "length": 2, - "value": "20" + "offset": 1136, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2399, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 1155, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2414, - "length": 11, - "value": "\"fourThree\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 1535, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2453, - "length": 7, - "value": "\"width\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2031, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2462, - "length": 3, - "value": "640" + "offset": 2036, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2471, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2043, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2481, - "length": 3, - "value": "480" + "offset": 2060, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2490, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2083, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2501, - "length": 3, - "value": "300" + "offset": 2100, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2507, - "length": 4, - "value": "1000" + "offset": 2197, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2517, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2218, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2530, + "offset": 2223, "length": 2, - "value": "25" + "value": "35" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2538, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2231, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2553, - "length": 11, - "value": "\"fourThree\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2246, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2592, - "length": 7, - "value": "\"width\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2264, + "length": 2, + "value": "28" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2601, - "length": 3, - "value": "720" + "offset": 2291, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2610, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2296, + "length": 2, + "value": "21" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2620, - "length": 3, - "value": "540" + "offset": 2304, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2629, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2319, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2640, - "length": 3, - "value": "450" + "offset": 2337, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2646, - "length": 4, - "value": "1000" + "offset": 2364, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2656, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2369, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2669, - "length": 2, - "value": "30" + "offset": 2377, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2677, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2392, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2692, - "length": 11, - "value": "\"fourThree\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 3183, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2731, - "length": 7, - "value": "\"width\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 3200, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2740, + "offset": 3281, "length": 3, - "value": "960" + "value": "128" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2749, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 3303, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2759, - "length": 3, - "value": "720" + "offset": 3324, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2768, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Version.swift", + "kind": "IntegerLiteral", + "offset": 682, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Version.swift", "kind": "IntegerLiteral", - "offset": 2779, - "length": 4, - "value": "1500" + "offset": 733, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Version.swift", "kind": "IntegerLiteral", - "offset": 2786, - "length": 4, - "value": "1000" + "offset": 789, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Version.swift", "kind": "StringLiteral", - "offset": 2796, - "length": 11, - "value": "\"frameRate\"" + "offset": 869, + "length": 31, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 2809, - "length": 2, - "value": "30" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Version.swift", + "kind": "StringLiteral", + "offset": 878, + "length": 1, + "value": "\".\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Version.swift", "kind": "StringLiteral", - "offset": 2817, - "length": 13, - "value": "\"aspectRatio\"" + "offset": 887, + "length": 1, + "value": "\".\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Version.swift", "kind": "StringLiteral", - "offset": 2832, - "length": 11, - "value": "\"fourThree\"" + "offset": 899, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/VideoQuality.swift", + "kind": "Dictionary", + "offset": 294, + "length": 961, + "value": "[(\"sd\", [(\"low\", [(\"s\", 0), (\"t\", 2)]), (\"medium\", [(\"s\", 0), (\"t\", 2)]), (\"high\", [(\"s\", 1), (\"t\", 2)]), (\"s0t0\", [(\"s\", 0), (\"t\", 0)]), (\"s0t1\", [(\"s\", 0), (\"t\", 1)]), (\"s0t2\", [(\"s\", 0), (\"t\", 2)]), (\"s1t0\", [(\"s\", 1), (\"t\", 0)]), (\"s1t1\", [(\"s\", 1), (\"t\", 1)]), (\"s1t2\", [(\"s\", 1), (\"t\", 2)]), (\"s2t0\", [(\"s\", 2), (\"t\", 0)]), (\"s2t1\", [(\"s\", 2), (\"t\", 1)]), (\"s2t2\", [(\"s\", 2), (\"t\", 2)])]), (\"hd\", [(\"low\", [(\"s\", 0), (\"t\", 2)]), (\"medium\", [(\"s\", 1), (\"t\", 2)]), (\"high\", [(\"s\", 2), (\"t\", 2)]), (\"s0t0\", [(\"s\", 0), (\"t\", 0)]), (\"s0t1\", [(\"s\", 0), (\"t\", 1)]), (\"s0t2\", [(\"s\", 0), (\"t\", 2)]), (\"s1t0\", [(\"s\", 1), (\"t\", 0)]), (\"s1t1\", [(\"s\", 1), (\"t\", 1)]), (\"s1t2\", [(\"s\", 1), (\"t\", 2)]), (\"s2t0\", [(\"s\", 2), (\"t\", 0)]), (\"s2t1\", [(\"s\", 2), (\"t\", 1)]), (\"s2t2\", [(\"s\", 2), (\"t\", 2)])])]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", "kind": "StringLiteral", - "offset": 2873, + "offset": 1045, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", + "kind": "StringLiteral", + "offset": 1083, "length": 7, - "value": "\"width\"" + "value": "\"Guest\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 2882, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", + "kind": "BooleanLiteral", + "offset": 1119, "length": 4, - "value": "1440" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", + "kind": "BooleanLiteral", + "offset": 1155, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 2902, - "length": 4, - "value": "1080" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", + "kind": "StringLiteral", + "offset": 1369, + "length": 34, + "value": "\"JWT server token is not provided\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", "kind": "StringLiteral", - "offset": 2912, - "length": 9, - "value": "\"bitRate\"" + "offset": 1478, + "length": 27, + "value": "\"meetingId is not provided\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 2923, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", + "kind": "BooleanLiteral", + "offset": 2093, "length": 4, - "value": "2500" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 2930, - "length": 4, - "value": "1000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", + "kind": "Array", + "offset": 3290, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2940, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "Dictionary", + "offset": 404, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 2953, - "length": 2, - "value": "30" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "Dictionary", + "offset": 446, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 2961, - "length": 13, - "value": "\"aspectRatio\"" + "offset": 689, + "length": 9, + "value": "\"enabled\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "BooleanLiteral", + "offset": 712, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 2976, - "length": 11, - "value": "\"fourThree\"" + "offset": 817, + "length": 10, + "value": "\"endPoint\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3017, - "length": 7, - "value": "\"width\"" + "offset": 863, + "length": 5, + "value": "\"SDK\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3026, - "length": 4, - "value": "1920" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 872, + "length": 5, + "value": "\"iOS\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3036, + "offset": 900, "length": 8, - "value": "\"height\"" + "value": "\"roomId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3046, - "length": 4, - "value": "1440" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 944, + "length": 12, + "value": "\"customerId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3056, + "offset": 1179, "length": 9, - "value": "\"bitRate\"" + "value": "\"logText\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3067, - "length": 4, - "value": "3500" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 1221, + "length": 10, + "value": "\"logLevel\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3074, - "length": 4, - "value": "1000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 1265, + "length": 12, + "value": "\"attributes\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3084, - "length": 11, - "value": "\"frameRate\"" + "offset": 1389, + "length": 66, + "value": "\"Error in VideoSDKLogs :: createLog \"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3097, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 1454, "length": 2, - "value": "30" + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3105, - "length": 13, - "value": "\"aspectRatio\"" + "offset": 1645, + "length": 6, + "value": "\"POST\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3120, - "length": 11, - "value": "\"fourThree\"" + "offset": 1680, + "length": 18, + "value": "\"application\/json\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3387, - "length": 12, - "value": "\"sampleRate\"" + "offset": 1720, + "length": 14, + "value": "\"Content-Type\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3401, - "length": 5, - "value": "16000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 1774, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3412, - "length": 9, - "value": "\"bitRate\"" + "offset": 1798, + "length": 15, + "value": "\"Authorization\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3423, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "Array", + "offset": 1935, "length": 2, - "value": "24" + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3431, - "length": 12, - "value": "\"sampleSize\"" + "offset": 2024, + "length": 55, + "value": "\"pushLog: response error \"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3445, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 2078, "length": 2, - "value": "16" + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3453, - "length": 8, - "value": "\"stereo\"" + "offset": 2282, + "length": 55, + "value": "\"pushLog: response error \"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3463, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 2336, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/VideoSDKMetrics.swift", + "kind": "IntegerLiteral", + "offset": 548, + "length": 4, + "value": "2000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/VideoSDKMetrics.swift", + "kind": "IntegerLiteral", + "offset": 581, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/VideoSDKMetrics.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 2, + "value": "-1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/VideoSDKMetrics.swift", "kind": "StringLiteral", - "offset": 3474, - "length": 5, - "value": "\"dtx\"" + "offset": 640, + "length": 8, + "value": "\"peerId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3481, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/VideoSDKMetrics.swift", + "kind": "StringLiteral", + "offset": 676, + "length": 8, + "value": "\"roomId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/VideoSDKMetrics.swift", "kind": "StringLiteral", - "offset": 3491, - "length": 5, - "value": "\"fec\"" + "offset": 710, + "length": 6, + "value": "\"name\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3498, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/VideoSDKMetrics.swift", + "kind": "Dictionary", + "offset": 1044, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3508, - "length": 17, - "value": "\"maxPlaybackRate\"" + "offset": 778, + "length": 9, + "value": "\"enabled\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3527, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "BooleanLiteral", + "offset": 801, "length": 5, - "value": "16000" + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3538, + "offset": 843, "length": 12, - "value": "\"packetTime\"" + "value": "\"pbEndPoint\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3552, - "length": 2, - "value": "20" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 1043, + "length": 14, + "value": "\"service-name\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3560, - "length": 17, - "value": "\"autoGainControl\"" + "offset": 1075, + "length": 15, + "value": "\"videosdk-otel\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3579, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 1093, + "length": 13, + "value": "\"sdk-version\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3589, - "length": 18, - "value": "\"echoCancellation\"" + "offset": 1123, + "length": 7, + "value": "\"2.1.0\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 1977, + "length": 46, + "value": "\"room_\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3619, - "length": 18, - "value": "\"noiseSuppression\"" + "offset": 1992, + "length": 6, + "value": "\"_peer_\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3639, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 2007, + "length": 5, + "value": "\"_sdk_\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3649, + "offset": 2022, "length": 14, - "value": "\"channelCount\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3665, - "length": 1, - "value": "1" + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3698, - "length": 12, - "value": "\"sampleRate\"" + "offset": 2076, + "length": 8, + "value": "\"roomId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3712, - "length": 5, - "value": "32000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 2140, + "length": 8, + "value": "\"peerId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3723, + "offset": 2204, "length": 9, - "value": "\"bitRate\"" + "value": "\"sdkName\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3734, - "length": 2, - "value": "24" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 2270, + "length": 8, + "value": "\"userId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3742, - "length": 12, - "value": "\"sampleSize\"" + "offset": 2311, + "length": 8, + "value": "\"userId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3756, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 2335, "length": 2, - "value": "24" + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3764, - "length": 8, - "value": "\"stereo\"" + "offset": 2379, + "length": 7, + "value": "\"email\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3774, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 2419, + "length": 7, + "value": "\"email\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 2442, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3785, - "length": 5, - "value": "\"dtx\"" + "offset": 2586, + "length": 41, + "value": "\"Error in VideoSDKTelemetry \n \"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3792, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 2626, + "length": 14, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3802, - "length": 5, - "value": "\"fec\"" + "offset": 2639, + "length": 7, + "value": "\"DEBUG\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3809, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "Dictionary", + "offset": 2730, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3819, - "length": 17, - "value": "\"maxPlaybackRate\"" + "offset": 3370, + "length": 51, + "value": "\"Error in VideoSDKTelemetry :: trace() \n \"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3838, - "length": 5, - "value": "32000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 3420, + "length": 14, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3849, - "length": 12, - "value": "\"packetTime\"" + "offset": 3433, + "length": 7, + "value": "\"DEBUG\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3863, - "length": 2, - "value": "30" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "Dictionary", + "offset": 3536, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3871, - "length": 17, - "value": "\"autoGainControl\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3890, - "length": 4, - "value": "true" + "offset": 4173, + "length": 63, + "value": "\"Error in VideoSDKTelemetry :: traceAutoComplete() \n \"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3900, - "length": 18, - "value": "\"echoCancellation\"" + "offset": 4235, + "length": 14, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3920, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 4248, + "length": 7, + "value": "\"DEBUG\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3930, - "length": 18, - "value": "\"noiseSuppression\"" + "offset": 4460, + "length": 9, + "value": "\"message\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3950, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "StringLiteral", + "offset": 201, "length": 4, - "value": "true" + "value": "\"00\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "StringLiteral", - "offset": 3960, - "length": 14, - "value": "\"channelCount\"" + "offset": 252, + "length": 3, + "value": "\"-\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "IntegerLiteral", - "offset": 3976, + "offset": 295, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4008, - "length": 12, - "value": "\"sampleRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "IntegerLiteral", + "offset": 338, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "IntegerLiteral", - "offset": 4022, - "length": 5, - "value": "48000" + "offset": 458, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4033, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "IntegerLiteral", - "offset": 4044, - "length": 2, - "value": "40" + "offset": 798, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "StringLiteral", - "offset": 4052, - "length": 12, - "value": "\"sampleSize\"" + "offset": 926, + "length": 9, + "value": "\"baggage\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 4066, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "StringLiteral", + "offset": 1147, "length": 2, - "value": "32" + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "StringLiteral", - "offset": 4074, - "length": 8, - "value": "\"stereo\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4084, - "length": 5, - "value": "false" + "offset": 1232, + "length": 3, + "value": "\"=\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "StringLiteral", - "offset": 4095, - "length": 5, - "value": "\"dtx\"" + "offset": 1331, + "length": 3, + "value": "\";\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4102, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "StringLiteral", + "offset": 1398, + "length": 3, + "value": "\",\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "StringLiteral", - "offset": 4113, - "length": 5, - "value": "\"fec\"" + "offset": 2140, + "length": 3, + "value": "\",\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4120, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "StringLiteral", + "offset": 2179, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "StringLiteral", - "offset": 4130, - "length": 17, - "value": "\"maxPlaybackRate\"" + "offset": 2209, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 4149, - "length": 5, - "value": "48000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "StringLiteral", + "offset": 2261, + "length": 3, + "value": "\";\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "StringLiteral", - "offset": 4160, - "length": 12, - "value": "\"packetTime\"" + "offset": 2522, + "length": 3, + "value": "\"=\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "IntegerLiteral", - "offset": 4174, - "length": 2, - "value": "40" + "offset": 2560, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4182, - "length": 17, - "value": "\"autoGainControl\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "IntegerLiteral", + "offset": 2657, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4201, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "IntegerLiteral", + "offset": 2726, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "StringLiteral", - "offset": 4212, - "length": 18, - "value": "\"echoCancellation\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4232, - "length": 5, - "value": "false" + "offset": 311, + "length": 4, + "value": "\"00\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "StringLiteral", - "offset": 4243, - "length": 18, - "value": "\"noiseSuppression\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4263, - "length": 5, - "value": "false" + "offset": 362, + "length": 3, + "value": "\"-\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4274, - "length": 14, - "value": "\"channelCount\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 405, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4290, + "offset": 448, "length": 1, "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4323, - "length": 12, - "value": "\"sampleRate\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4337, - "length": 5, - "value": "48000" + "offset": 568, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4348, - "length": 12, - "value": "\"sampleSize\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 738, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4362, - "length": 2, - "value": "32" + "offset": 909, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "StringLiteral", - "offset": 4370, - "length": 9, - "value": "\"bitRate\"" + "offset": 1035, + "length": 13, + "value": "\"traceparent\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 4381, - "length": 2, - "value": "64" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "StringLiteral", + "offset": 1077, + "length": 12, + "value": "\"tracestate\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "StringLiteral", - "offset": 4389, - "length": 8, - "value": "\"stereo\"" + "offset": 1719, + "length": 4, + "value": "\"01\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4399, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "StringLiteral", + "offset": 1726, "length": 4, - "value": "true" + "value": "\"00\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4409, - "length": 5, - "value": "\"dtx\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 2396, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "BooleanLiteral", - "offset": 4416, + "offset": 3503, "length": 5, "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4427, - "length": 5, - "value": "\"fec\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4434, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 3888, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4444, - "length": 17, - "value": "\"maxPlaybackRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 4019, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4463, - "length": 5, - "value": "48000" + "offset": 4031, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4474, - "length": 12, - "value": "\"packetTime\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 4089, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4488, + "offset": 4101, "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4496, - "length": 17, - "value": "\"autoGainControl\"" + "value": "16" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4515, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 4130, + "length": 3, + "value": "0xF" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4526, - "length": 18, - "value": "\"echoCancellation\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 4149, + "length": 3, + "value": "0xF" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4546, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 4211, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4557, - "length": 18, - "value": "\"noiseSuppression\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 4227, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "BooleanLiteral", - "offset": 4577, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4588, - "length": 14, - "value": "\"channelCount\"" + "offset": 4380, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4604, + "offset": 4476, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4634, - "length": 12, - "value": "\"sampleRate\"" + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4648, - "length": 5, - "value": "48000" + "offset": 4919, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4659, - "length": 12, - "value": "\"sampleSize\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 5517, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4673, + "offset": 5529, "length": 2, - "value": "32" + "value": "16" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4681, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 5597, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4692, - "length": 3, - "value": "128" + "offset": 5603, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4701, - "length": 8, - "value": "\"stereo\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "BooleanLiteral", + "offset": 5645, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4711, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 677, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4722, - "length": 5, - "value": "\"dtx\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4729, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 723, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4740, - "length": 5, - "value": "\"fec\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 745, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4747, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 765, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4757, - "length": 17, - "value": "\"maxPlaybackRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 784, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", "kind": "IntegerLiteral", - "offset": 4776, - "length": 5, - "value": "48000" + "offset": 677, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4787, - "length": 12, - "value": "\"packetTime\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", "kind": "IntegerLiteral", - "offset": 4801, - "length": 2, - "value": "60" + "offset": 723, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4809, - "length": 17, - "value": "\"autoGainControl\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 745, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4828, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 765, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4839, - "length": 18, - "value": "\"echoCancellation\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 784, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4859, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 677, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4870, - "length": 18, - "value": "\"noiseSuppression\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4890, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 723, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4901, - "length": 14, - "value": "\"channelCount\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 745, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", "kind": "IntegerLiteral", - "offset": 4917, + "offset": 765, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4954, - "length": 12, - "value": "\"sampleRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 784, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", "kind": "IntegerLiteral", - "offset": 4968, - "length": 5, - "value": "48000" + "offset": 2209, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4979, - "length": 12, - "value": "\"sampleSize\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 2238, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", "kind": "IntegerLiteral", - "offset": 4993, - "length": 2, - "value": "32" + "offset": 2268, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5001, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 3393, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5012, - "length": 3, - "value": "192" + "offset": 3856, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5021, - "length": 8, - "value": "\"stereo\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 4319, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 5031, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 4787, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5041, - "length": 5, - "value": "\"dtx\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 5250, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 5718, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 5048, + "offset": 6188, "length": 5, "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5059, - "length": 5, - "value": "\"fec\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 5066, - "length": 4, - "value": "true" + "offset": 7960, + "length": 17, + "value": "\"google.protobuf\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5076, - "length": 17, - "value": "\"maxPlaybackRate\"" + "offset": 8144, + "length": 14, + "value": "\".DoubleValue\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5095, - "length": 5, - "value": "48000" + "offset": 8215, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5106, - "length": 12, - "value": "\"packetTime\"" + "offset": 8231, + "length": 7, + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5120, - "length": 2, - "value": "60" + "offset": 8653, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5128, - "length": 17, - "value": "\"autoGainControl\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 8847, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 8926, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 5147, + "offset": 9130, "length": 5, "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5158, - "length": 18, - "value": "\"echoCancellation\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 5178, + "offset": 9191, "length": 5, "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5189, - "length": 18, - "value": "\"noiseSuppression\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 5209, - "length": 5, - "value": "false" + "offset": 9209, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5220, - "length": 14, - "value": "\"channelCount\"" + "offset": 9385, + "length": 13, + "value": "\".FloatValue\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5236, + "offset": 9455, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5463, + "offset": 9471, "length": 7, - "value": "\"width\"" + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5472, - "length": 3, - "value": "640" + "offset": 9893, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5481, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 10086, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5491, - "length": 3, - "value": "360" + "offset": 10164, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5500, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 10366, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5511, - "length": 3, - "value": "200" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 10427, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5517, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 10445, "length": 4, - "value": "1000" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5527, - "length": 11, - "value": "\"frameRate\"" + "offset": 10621, + "length": 13, + "value": "\".Int64Value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5540, + "offset": 10691, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5568, + "offset": 10707, "length": 7, - "value": "\"width\"" + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5577, - "length": 4, - "value": "1280" + "offset": 11129, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5587, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 11322, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5597, - "length": 3, - "value": "720" + "offset": 11400, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5606, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 11602, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5617, - "length": 3, - "value": "400" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 11663, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5623, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 11681, "length": 4, - "value": "1000" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5633, - "length": 11, - "value": "\"frameRate\"" + "offset": 11858, + "length": 14, + "value": "\".UInt64Value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5646, + "offset": 11929, "length": 1, - "value": "5" + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5675, + "offset": 11945, "length": 7, - "value": "\"width\"" + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5684, - "length": 4, - "value": "1280" + "offset": 12367, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5694, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 12561, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5704, - "length": 3, - "value": "720" + "offset": 12640, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5713, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 12844, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5724, - "length": 4, - "value": "1000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 12905, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5731, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 12923, "length": 4, - "value": "1000" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5741, - "length": 11, - "value": "\"frameRate\"" + "offset": 13099, + "length": 13, + "value": "\".Int32Value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5754, - "length": 2, - "value": "15" + "offset": 13169, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5785, + "offset": 13185, "length": 7, - "value": "\"width\"" + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5794, - "length": 4, - "value": "1920" + "offset": 13607, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5804, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 13800, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5814, - "length": 4, - "value": "1080" + "offset": 13878, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5824, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 14080, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5835, - "length": 4, - "value": "1500" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 14141, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5842, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 14159, "length": 4, - "value": "1000" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5852, - "length": 11, - "value": "\"frameRate\"" + "offset": 14336, + "length": 14, + "value": "\".UInt32Value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5865, - "length": 2, - "value": "15" + "offset": 14407, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5896, + "offset": 14423, "length": 7, - "value": "\"width\"" + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5905, - "length": 4, - "value": "1920" + "offset": 14845, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5915, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 15039, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5925, - "length": 4, - "value": "1080" + "offset": 15118, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5935, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 15322, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5946, - "length": 4, - "value": "1000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 15383, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5953, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 15401, "length": 4, - "value": "1000" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5963, - "length": 11, - "value": "\"frameRate\"" + "offset": 15576, + "length": 12, + "value": "\".BoolValue\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5976, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", - "kind": "StringLiteral", - "offset": 260, - "length": 8, - "value": "\"ARDAMS\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", - "kind": "StringLiteral", - "offset": 291, - "length": 10, - "value": "\"ARDAMSv0\"" + "offset": 15645, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 324, - "length": 10, - "value": "\"ARDAMSa0\"" + "offset": 15661, + "length": 7, + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", - "kind": "StringLiteral", - "offset": 260, - "length": 8, - "value": "\"ARDAMS\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 16083, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", - "kind": "StringLiteral", - "offset": 291, - "length": 10, - "value": "\"ARDAMSv0\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 16275, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", - "kind": "StringLiteral", - "offset": 324, - "length": 10, - "value": "\"ARDAMSa0\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 16356, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 1256, + "offset": 16556, "length": 5, "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", - "kind": "Dictionary", - "offset": 570, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 951, - "length": 4, - "value": "true" + "offset": 16617, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 987, + "offset": 16635, "length": 4, "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 1597, - "length": 2, - "value": "\"\"" + "offset": 16812, + "length": 14, + "value": "\".StringValue\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", - "kind": "BooleanLiteral", - "offset": 1635, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 16883, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", - "kind": "BooleanLiteral", - "offset": 1678, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "StringLiteral", + "offset": 16899, + "length": 7, + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", - "kind": "Array", - "offset": 180, - "length": 15, - "value": "[\"q\", \"h\", \"f\"]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 17321, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", - "kind": "Dictionary", - "offset": 1025, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 17598, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", - "kind": "Dictionary", - "offset": 307, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 17802, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", - "kind": "Dictionary", - "offset": 387, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 17863, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", - "kind": "Dictionary", - "offset": 800, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 17881, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 124, + "offset": 18057, "length": 13, - "value": "\"VideoSDKRTC.PubSubMessage\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", - "kind": "BooleanLiteral", - "offset": 935, - "length": 5, - "value": "false" + "value": "\".BytesValue\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", - "kind": "Dictionary", - "offset": 1591, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 18127, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", - "kind": "Dictionary", - "offset": 1635, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "StringLiteral", + "offset": 18143, + "length": 7, + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", - "kind": "StringLiteral", - "offset": 766, - "length": 10, - "value": "\"VideoSDKRTC.RoomClient\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 18565, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", - "kind": "Dictionary", - "offset": 6809, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 18840, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 830, + "offset": 19042, "length": 5, "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", - "kind": "Dictionary", - "offset": 928, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 19103, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", - "kind": "Dictionary", - "offset": 6323, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 19121, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", - "kind": "Dictionary", - "offset": 8007, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 1186, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", - "kind": "Dictionary", - "offset": 8976, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 1201, + "length": 2, + "value": "31" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/VideoQuality.swift", - "kind": "Dictionary", - "offset": 294, - "length": 961, - "value": "[(\"sd\", [(\"low\", [(\"s\", 0), (\"t\", 2)]), (\"medium\", [(\"s\", 0), (\"t\", 2)]), (\"high\", [(\"s\", 1), (\"t\", 2)]), (\"s0t0\", [(\"s\", 0), (\"t\", 0)]), (\"s0t1\", [(\"s\", 0), (\"t\", 1)]), (\"s0t2\", [(\"s\", 0), (\"t\", 2)]), (\"s1t0\", [(\"s\", 1), (\"t\", 0)]), (\"s1t1\", [(\"s\", 1), (\"t\", 1)]), (\"s1t2\", [(\"s\", 1), (\"t\", 2)]), (\"s2t0\", [(\"s\", 2), (\"t\", 0)]), (\"s2t1\", [(\"s\", 2), (\"t\", 1)]), (\"s2t2\", [(\"s\", 2), (\"t\", 2)])]), (\"hd\", [(\"low\", [(\"s\", 0), (\"t\", 2)]), (\"medium\", [(\"s\", 1), (\"t\", 2)]), (\"high\", [(\"s\", 2), (\"t\", 2)]), (\"s0t0\", [(\"s\", 0), (\"t\", 0)]), (\"s0t1\", [(\"s\", 0), (\"t\", 1)]), (\"s0t2\", [(\"s\", 0), (\"t\", 2)]), (\"s1t0\", [(\"s\", 1), (\"t\", 0)]), (\"s1t1\", [(\"s\", 1), (\"t\", 1)]), (\"s1t2\", [(\"s\", 1), (\"t\", 2)]), (\"s2t0\", [(\"s\", 2), (\"t\", 0)]), (\"s2t1\", [(\"s\", 2), (\"t\", 1)]), (\"s2t2\", [(\"s\", 2), (\"t\", 2)])])]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 1740, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", - "kind": "StringLiteral", - "offset": 1044, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 1755, "length": 2, - "value": "\"\"" + "value": "63" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", - "kind": "StringLiteral", - "offset": 1082, - "length": 7, - "value": "\"Guest\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 2265, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", - "kind": "BooleanLiteral", - "offset": 1118, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 2285, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", - "kind": "BooleanLiteral", - "offset": 1154, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 2793, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", - "kind": "BooleanLiteral", - "offset": 1909, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 2813, + "length": 1, + "value": "1" } ] } \ No newline at end of file diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios.private.swiftinterface b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios.private.swiftinterface index 1642267..d9f40b5 100644 --- a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios.private.swiftinterface +++ b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -1,16 +1,554 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) +// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) // swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name VideoSDKRTC // swift-module-flags-ignorable: -enable-bare-slash-regex import AVFoundation +import AVKit +import CoreMedia +import Darwin +import Dispatch import Foundation import Mediasoup +import ReplayKit import Swift +import UIKit @_exported import VideoSDKRTC import VideosdkWebSocket import WebRTC import _Concurrency import _StringProcessing +import _SwiftConcurrencyShims +import os.activity +import os.log +import os +public enum Aggregations { + public static func drop() -> any VideoSDKRTC.Aggregation + public static func defaultAggregation() -> any VideoSDKRTC.Aggregation + public static func sum() -> any VideoSDKRTC.Aggregation + public static func lastValue() -> any VideoSDKRTC.Aggregation + public static func explicitBucketHistogram() -> any VideoSDKRTC.Aggregation + public static func explicitBucketHistogram(buckets: [Swift.Double]) -> any VideoSDKRTC.Aggregation +} +public typealias AggregationResolver = (VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +public protocol DefaultAggregationSelector { + func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +} +@_hasMissingDesignatedInitializers public class AggregationSelector : VideoSDKRTC.DefaultAggregationSelector { + public static let instance: VideoSDKRTC.AggregationSelector + final public let selector: VideoSDKRTC.AggregationResolver + public func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation + public static func defaultSelector() -> VideoSDKRTC.AggregationResolver + public func with(instrumentType: VideoSDKRTC.InstrumentType, aggregation: any VideoSDKRTC.Aggregation) -> VideoSDKRTC.AggregationResolver + @objc deinit +} +public protocol AggregationTemporalitySelectorProtocol { + func getAggregationTemporality(for instrument: VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality +} +@_hasMissingDesignatedInitializers public class AggregationTemporalitySelector : VideoSDKRTC.AggregationTemporalitySelectorProtocol { + public func getAggregationTemporality(for instrument: VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality + public var aggregationTemporalitySelector: (VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality + @objc deinit +} +public enum AggregationTemporality { + case delta + case cumulative + public static func alwaysCumulative() -> VideoSDKRTC.AggregationTemporalitySelector + public static func deltaPreferred() -> VideoSDKRTC.AggregationTemporalitySelector + public static func == (a: VideoSDKRTC.AggregationTemporality, b: VideoSDKRTC.AggregationTemporality) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public enum AggregationType : Swift.String, Swift.Codable { + case intGauge + case doubleGauge + case doubleSum + case intSum + case doubleSummary + case intSummary + case doubleHistogram + case intHistogram + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +@_hasMissingDesignatedInitializers public class Aggregator { + public func update(value: T) + public func checkpoint() + public func toMetricData() -> any VideoSDKRTC.MetricData + public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public protocol Aggregation : AnyObject { + func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class AggregatorHandle { + public func aggregateThenMaybeReset(startEpochNano: Swift.UInt64, endEpochNano: Swift.UInt64, attributes: [Swift.String : VideoSDKRTC.AttributeValue], reset: Swift.Bool) -> VideoSDKRTC.PointData + public func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordLong(value: Swift.Int) + public func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordDouble(value: Swift.Double) + @objc deinit +} +public struct Google_Protobuf_Any { + public var typeURL: Swift.String { + get + set + } + public var value: Foundation.Data { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Any : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Any : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Any, rhs: VideoSDKRTC.Google_Protobuf_Any) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public enum AnyUnpackError : Swift.Error { + case typeMismatch + case malformedWellKnownTypeJSON + case malformedAnyField + public static func == (a: VideoSDKRTC.AnyUnpackError, b: VideoSDKRTC.AnyUnpackError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct Google_Protobuf_Api { + public var name: Swift.String + public var methods: [VideoSDKRTC.Google_Protobuf_Method] + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var version: Swift.String + public var sourceContext: VideoSDKRTC.Google_Protobuf_SourceContext { + get + set + } + public var hasSourceContext: Swift.Bool { + get + } + public mutating func clearSourceContext() + public var mixins: [VideoSDKRTC.Google_Protobuf_Mixin] + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Method { + public var name: Swift.String + public var requestTypeURL: Swift.String + public var requestStreaming: Swift.Bool + public var responseTypeURL: Swift.String + public var responseStreaming: Swift.Bool + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Mixin { + public var name: Swift.String + public var root: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Api : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Method : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Mixin : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Api : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Api, rhs: VideoSDKRTC.Google_Protobuf_Api) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Method : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Method, rhs: VideoSDKRTC.Google_Protobuf_Method) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Mixin : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Mixin, rhs: VideoSDKRTC.Google_Protobuf_Mixin) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol APIDoubleObserverMetricHandle { + func observe(value: Swift.Double) +} +public protocol APIIntObserverMetricHandle { + func observe(value: Swift.Int) +} +public struct ArrayWithCapacity { + public let capacity: Swift.Int + public init(capacity: Swift.Int) + public mutating func append(_ item: T) +} +extension VideoSDKRTC.ArrayWithCapacity : Swift.MutableCollection { + public var startIndex: Swift.Int { + get + } + public var endIndex: Swift.Int { + get + } + public subscript(index: Swift.Int) -> T { + get + set + } + public func index(after i: Swift.Int) -> Swift.Int + public typealias Element = T + public typealias Index = Swift.Int + public typealias Indices = Swift.DefaultIndices> + public typealias Iterator = Swift.IndexingIterator> + public typealias SubSequence = Swift.Slice> +} +@_hasMissingDesignatedInitializers public class AsynchronousMetricStorage : VideoSDKRTC.MetricStorage { + public var registeredReader: VideoSDKRTC.RegisteredReader { + get + } + public var metricDescriptor: VideoSDKRTC.MetricDescriptor { + get + } + public func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + public func isEmpty() -> Swift.Bool + @objc deinit +} +#if compiler(>=5.3) && $RethrowsProtocol +@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +extension _Concurrency.AsyncSequence where Self.Element == Swift.UInt8 { + @inlinable public func binaryProtobufDelimitedMessages(of messageType: M.Type = M.self, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) -> VideoSDKRTC.AsyncMessageSequence where M : VideoSDKRTC.Message { + AsyncMessageSequence( + base: self, + extensions: extensions, + partial: partial, + options: options + ) + } +} +#endif +#if compiler(>=5.3) && $RethrowsProtocol +@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +public struct AsyncMessageSequence : _Concurrency.AsyncSequence where Base : _Concurrency.AsyncSequence, M : VideoSDKRTC.Message, Base.Element == Swift.UInt8 { + public typealias Element = M + public init(base: Base, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) + public struct AsyncIterator : _Concurrency.AsyncIteratorProtocol { + @usableFromInline + internal var iterator: Base.AsyncIterator? + @usableFromInline + internal let extensions: (any VideoSDKRTC.ExtensionMap)? + @usableFromInline + internal let partial: Swift.Bool + @usableFromInline + internal let options: VideoSDKRTC.BinaryDecodingOptions + #if compiler(>=5.3) && $AsyncAwait + @inlinable internal mutating func nextVarInt() async throws -> Swift.UInt64? { + var messageSize: UInt64 = 0 + var shift: UInt64 = 0 + + while let byte = try await iterator?.next() { + messageSize |= UInt64(byte & 0x7f) << shift + shift += UInt64(7) + if shift > 35 { + iterator = nil + throw BinaryDelimited.Error.malformedLength + } + if (byte & 0x80 == 0) { + return messageSize + } + } + if (shift > 0) { + // The stream has ended inside a varint. + iterator = nil + throw BinaryDelimited.Error.truncated + } + return nil // End of stream reached. + } + #endif + #if compiler(>=5.3) && $AsyncAwait + @usableFromInline + internal mutating func readBytes(_ size: Swift.Int) async throws -> [Swift.UInt8] + #endif + #if compiler(>=5.3) && $AsyncAwait + @inlinable public mutating func next() async throws -> M? { + guard let messageSize = try await nextVarInt() else { + iterator = nil + return nil + } + guard messageSize <= UInt64(0x7fffffff) else { + iterator = nil + throw BinaryDecodingError.tooLarge + } + if messageSize == 0 { + return try M( + serializedBytes: [], + extensions: extensions, + partial: partial, + options: options + ) + } + let buffer = try await readBytes(Int(messageSize)) + return try M( + serializedBytes: buffer, + extensions: extensions, + partial: partial, + options: options + ) + } + #endif + public typealias Element = M + } + public func makeAsyncIterator() -> VideoSDKRTC.AsyncMessageSequence.AsyncIterator +} +#endif +#if compiler(>=5.3) && $RethrowsProtocol +@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +extension VideoSDKRTC.AsyncMessageSequence : Swift.Sendable where Base : Swift.Sendable { +} +#endif +#if compiler(>=5.3) && $RethrowsProtocol +@available(*, unavailable) +extension VideoSDKRTC.AsyncMessageSequence.AsyncIterator : Swift.Sendable { +} +#endif +public protocol AttributeProcessorProtocol { + func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] +} +@_hasMissingDesignatedInitializers public class AttributeProcessor : VideoSDKRTC.AttributeProcessorProtocol { + public func then(other: VideoSDKRTC.AttributeProcessor) -> VideoSDKRTC.AttributeProcessor + public func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] + public static func filterByKeyName(nameFilter: @escaping (Swift.String) -> Swift.Bool) -> VideoSDKRTC.AttributeProcessor + public static func append(attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.AttributeProcessor + @objc deinit +} +@_hasMissingDesignatedInitializers public class JoinedAttributeProcessor : VideoSDKRTC.AttributeProcessor { + override public func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] + override public func then(other: VideoSDKRTC.AttributeProcessor) -> VideoSDKRTC.AttributeProcessor + public func prepend(processor: VideoSDKRTC.AttributeProcessor) -> VideoSDKRTC.AttributeProcessor + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class NoopAttributeProcessor : VideoSDKRTC.AttributeProcessor { + override public func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] + @objc deinit +} +public struct AttributesDictionary { + public init(capacity: Swift.Int, valueLengthLimit: Swift.Int = Int.max) + public subscript(key: Swift.String) -> VideoSDKRTC.AttributeValue? { + get + set + } + @discardableResult + public mutating func updateValue(value: VideoSDKRTC.AttributeValue, forKey key: Swift.String) -> VideoSDKRTC.AttributeValue? + public mutating func updateValues(attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public mutating func updateValues(attributes: VideoSDKRTC.AttributesDictionary) + public mutating func removeValueForKey(key: Swift.String) -> VideoSDKRTC.AttributeValue? + public mutating func removeAll(keepCapacity: Swift.Int) + public var count: Swift.Int { + get + } + public var numberOfDroppedAttributes: Swift.Int { + get + } + public var values: [VideoSDKRTC.AttributeValue] { + get + } +} +extension VideoSDKRTC.AttributesDictionary : Swift.Sequence { + public func makeIterator() -> VideoSDKRTC.AttributesWithCapacityIterator + public typealias Element = (Swift.String, VideoSDKRTC.AttributeValue) + public typealias Iterator = VideoSDKRTC.AttributesWithCapacityIterator +} +public struct AttributesWithCapacityIterator : Swift.IteratorProtocol { + public mutating func next() -> (Swift.String, VideoSDKRTC.AttributeValue)? + public typealias Element = (Swift.String, VideoSDKRTC.AttributeValue) +} +@_hasMissingDesignatedInitializers open class AttributeSet : Swift.Hashable, Swift.Codable { + public var labels: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public static var empty: VideoSDKRTC.AttributeSet + required public init(labels: [Swift.String : VideoSDKRTC.AttributeValue]) + public static func == (lhs: VideoSDKRTC.AttributeSet, rhs: VideoSDKRTC.AttributeSet) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + @objc deinit + open func encode(to encoder: any Swift.Encoder) throws + open var hashValue: Swift.Int { + get + } + required public init(from decoder: any Swift.Decoder) throws +} +public enum AttributeValue : Swift.Equatable, Swift.CustomStringConvertible, Swift.Hashable { + case string(Swift.String) + case bool(Swift.Bool) + case int(Swift.Int) + case double(Swift.Double) + case stringArray([Swift.String]) + case boolArray([Swift.Bool]) + case intArray([Swift.Int]) + case doubleArray([Swift.Double]) + case set(VideoSDKRTC.AttributeSet) + public var description: Swift.String { + get + } + public init?(_ value: Any) + public static func == (a: VideoSDKRTC.AttributeValue, b: VideoSDKRTC.AttributeValue) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.AttributeValue { + public init(_ value: Swift.String) + public init(_ value: Swift.Bool) + public init(_ value: Swift.Int) + public init(_ value: Swift.Double) + public init(_ value: [Swift.String]) + public init(_ value: [Swift.Int]) + public init(_ value: [Swift.Double]) + public init(_ value: VideoSDKRTC.AttributeSet) +} +extension VideoSDKRTC.AttributeValue : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public protocol Baggage : AnyObject { + static func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder + func getEntries() -> [VideoSDKRTC.Entry] + func getEntryValue(key: VideoSDKRTC.EntryKey) -> VideoSDKRTC.EntryValue? +} +public func == (lhs: any VideoSDKRTC.Baggage, rhs: any VideoSDKRTC.Baggage) -> Swift.Bool +public protocol BaggageBuilder : AnyObject { + @discardableResult + func setParent(_ parent: (any VideoSDKRTC.Baggage)?) -> Self + @discardableResult + func setNoParent() -> Self + @discardableResult + func put(key: VideoSDKRTC.EntryKey, value: VideoSDKRTC.EntryValue, metadata: VideoSDKRTC.EntryMetadata?) -> Self + @discardableResult + func remove(key: VideoSDKRTC.EntryKey) -> Self + func build() -> any VideoSDKRTC.Baggage +} +public protocol BaggageManager : AnyObject { + func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder +} +public class BatchLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public init(logRecordExporter: any VideoSDKRTC.LogRecordExporter, scheduleDelay: Foundation.TimeInterval = 5, exportTimeout: Foundation.TimeInterval = 30, maxQueueSize: Swift.Int = 2048, maxExportBatchSize: Swift.Int = 512, willExportCallback: ((inout [VideoSDKRTC.ReadableLogRecord]) -> Swift.Void)? = nil) + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func forceFlush(timeout: Foundation.TimeInterval?) + public func shutdown() -> VideoSDKRTC.ExportResult + @objc deinit +} +public struct BatchSpanProcessor : VideoSDKRTC.SpanProcessor { + public init(spanExporter: any VideoSDKRTC.SpanExporter, scheduleDelay: Foundation.TimeInterval = 5, exportTimeout: Foundation.TimeInterval = 30, maxQueueSize: Swift.Int = 2048, maxExportBatchSize: Swift.Int = 512, willExportCallback: ((inout [VideoSDKRTC.SpanData]) -> Swift.Void)? = nil) + public let isStartRequired: Swift.Bool + public let isEndRequired: Swift.Bool + public func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + public func onEnd(span: any VideoSDKRTC.ReadableSpan) + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) +} +public enum BinaryDecodingError : Swift.Error { + case trailingGarbage + case truncated + case invalidUTF8 + case malformedProtobuf + case missingRequiredFields + case internalExtensionError + case messageDepthLimit + case tooLarge + public static func == (a: VideoSDKRTC.BinaryDecodingError, b: VideoSDKRTC.BinaryDecodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct BinaryDecodingOptions : Swift.Sendable { + public var messageDepthLimit: Swift.Int + public var discardUnknownFields: Swift.Bool + public init() +} +public enum BinaryDelimited { + public enum Error : Swift.Error { + case unknownStreamError + case truncated + case tooLarge + case malformedLength + case noBytesAvailable + public static func == (a: VideoSDKRTC.BinaryDelimited.Error, b: VideoSDKRTC.BinaryDelimited.Error) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } + public static func serialize(message: any VideoSDKRTC.Message, to stream: Foundation.OutputStream, partial: Swift.Bool = false) throws + public static func parse(messageType: M.Type, from stream: Foundation.InputStream, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws -> M where M : VideoSDKRTC.Message + public static func merge(into message: inout M, from stream: Foundation.InputStream, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws where M : VideoSDKRTC.Message +} +public enum BinaryEncodingError : Swift.Error { + case anyTranscodeFailure + case missingRequiredFields + case tooLarge + public static func == (a: VideoSDKRTC.BinaryEncodingError, b: VideoSDKRTC.BinaryEncodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +open class BoundCounterMetric { + public init() + open func add(value: T) + @objc deinit +} +open class BoundHistogramMetric { + public init(explicitBoundaries: Swift.Array? = nil) + open func record(value: T) + @objc deinit +} +open class BoundMeasureMetric { + public init() + open func record(value: T) + @objc deinit +} +open class BoundRawCounterMetric { + public init() + open func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date) + @objc deinit +} +open class BoundRawHistogramMetric { + public init() + open func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T) + @objc deinit +} +@_hasMissingDesignatedInitializers public class CallbackRegistration { + public func execute(reader: VideoSDKRTC.RegisteredReader, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) + @objc deinit +} public enum CameraPosition : Swift.Int { case back case front @@ -21,6 +559,197 @@ public enum CameraPosition : Swift.Int { get } } +public protocol Clock : AnyObject { + var now: Foundation.Date { get } +} +extension VideoSDKRTC.Clock { + public var nanoTime: Swift.UInt64 { + get + } +} +public func == (lhs: any VideoSDKRTC.Clock, rhs: any VideoSDKRTC.Clock) -> Swift.Bool +public protocol CollectionRegistration { +} +public struct Opentelemetry_Proto_Common_V1_AnyValue { + public var value: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value? + public var stringValue: Swift.String { + get + set + } + public var boolValue: Swift.Bool { + get + set + } + public var intValue: Swift.Int64 { + get + set + } + public var doubleValue: Swift.Double { + get + set + } + public var arrayValue: VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue { + get + set + } + public var kvlistValue: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList { + get + set + } + public var bytesValue: Foundation.Data { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Value : Swift.Equatable { + case stringValue(Swift.String) + case boolValue(Swift.Bool) + case intValue(Swift.Int64) + case doubleValue(Swift.Double) + case arrayValue(VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue) + case kvlistValue(VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList) + case bytesValue(Foundation.Data) + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value) -> Swift.Bool + } + public init() +} +public struct Opentelemetry_Proto_Common_V1_ArrayValue { + public var values: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Common_V1_KeyValueList { + public var values: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Common_V1_KeyValue { + public var key: Swift.String + public var value: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue { + get + set + } + public var hasValue: Swift.Bool { + get + } + public mutating func clearValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Common_V1_InstrumentationScope { + public var name: Swift.String + public var version: Swift.String + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct CommonAdapter { + public static func toProtoAttribute(key: Swift.String, attributeValue: VideoSDKRTC.AttributeValue) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue + public static func toProtoInstrumentationScope(instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope +} +public protocol ContextManager : AnyObject { + func getCurrentContextValue(forKey: VideoSDKRTC.OpenTelemetryContextKeys) -> Swift.AnyObject? + func setCurrentContextValue(forKey: VideoSDKRTC.OpenTelemetryContextKeys, value: Swift.AnyObject) + func removeContextValue(forKey: VideoSDKRTC.OpenTelemetryContextKeys, value: Swift.AnyObject) +} +public protocol ContextPropagators { + var textMapPropagator: any VideoSDKRTC.TextMapPropagator { get } + var textMapBaggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator { get } +} +public protocol CounterMetric { + associatedtype T + func add(value: Self.T, labelset: VideoSDKRTC.LabelSet) + func add(value: Self.T, labels: [Swift.String : Swift.String]) + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundCounterMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundCounterMetric +} +public struct AnyCounterMetric : VideoSDKRTC.CounterMetric { + public init(_ countable: U) where T == U.T, U : VideoSDKRTC.CounterMetric + public func add(value: T, labelset: VideoSDKRTC.LabelSet) + public func add(value: T, labels: [Swift.String : Swift.String]) + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundCounterMetric +} +public struct NoopCounterMetric : VideoSDKRTC.CounterMetric { + public init() + public func add(value: T, labelset: VideoSDKRTC.LabelSet) + public func add(value: T, labels: [Swift.String : Swift.String]) + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundCounterMetric +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class CounterSumAggregator : VideoSDKRTC.Aggregator where T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +@_hasMissingDesignatedInitializers public class CustomRTCMediaStream { + @objc deinit +} public enum CustomVideoTrackConfig { case h90p_w160p, h180p_w320p, h216p_w384p, h360p_w640p, h540p_w960p, h720p_w1280p, h1080p_w1920p, h1440p_w2560p, h2160p_w3840p, h120p_w160p, h180p_w240p, h240p_w320p, h360p_w480p, h480p_w640p, h540p_w720p, h720p_w960p, h1080p_w1440p, h1440p_w1920p public static func == (a: VideoSDKRTC.CustomVideoTrackConfig, b: VideoSDKRTC.CustomVideoTrackConfig) -> Swift.Bool @@ -29,196 +758,7653 @@ public enum CustomVideoTrackConfig { get } } -@_hasMissingDesignatedInitializers public class CustomRTCMediaStream { - @objc deinit -} -extension Foundation.Data { - public func toJSONString() -> Swift.String - public func toJSON() -> [Swift.String : Any] - public func toJSONArray() -> [Any] +@_hasMissingDesignatedInitializers public class DefaultAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.DefaultAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +final public class DefaultBaggage : VideoSDKRTC.Baggage, Swift.Equatable { + public init(entries: [VideoSDKRTC.EntryKey : VideoSDKRTC.Entry?]) + public static func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder + final public func getEntries() -> [VideoSDKRTC.Entry] + final public func getEntryValue(key: VideoSDKRTC.EntryKey) -> VideoSDKRTC.EntryValue? + public static func == (lhs: VideoSDKRTC.DefaultBaggage, rhs: VideoSDKRTC.DefaultBaggage) -> Swift.Bool + @objc deinit +} +public class DefaultBaggageBuilder : VideoSDKRTC.BaggageBuilder { + public init() + @discardableResult + public func setParent(_ parent: (any VideoSDKRTC.Baggage)?) -> Self + @discardableResult + public func setNoParent() -> Self + @discardableResult + public func put(key: VideoSDKRTC.EntryKey, value: VideoSDKRTC.EntryValue, metadata: VideoSDKRTC.EntryMetadata?) -> Self + @discardableResult + public func put(key: Swift.String, value: Swift.String, metadata: Swift.String? = nil) -> Self + @discardableResult + public func remove(key: VideoSDKRTC.EntryKey) -> Self + public func build() -> any VideoSDKRTC.Baggage + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultBaggageManager : VideoSDKRTC.BaggageManager { + public static var instance: VideoSDKRTC.DefaultBaggageManager + public func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder + public func getCurrentBaggage() -> (any VideoSDKRTC.Baggage)? + @objc deinit +} +public struct DefaultContextPropagators : VideoSDKRTC.ContextPropagators { + public var textMapPropagator: any VideoSDKRTC.TextMapPropagator + public var textMapBaggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator + public init() + public init(textPropagators: [any VideoSDKRTC.TextMapPropagator], baggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator) + public mutating func addTextMapPropagator(textFormat: any VideoSDKRTC.TextMapPropagator) +} +@_hasMissingDesignatedInitializers public class DefaultLogger : VideoSDKRTC.Logger { + public func eventBuilder(name: Swift.String) -> any VideoSDKRTC.EventBuilder + public func logRecordBuilder() -> any VideoSDKRTC.LogRecordBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultLoggerProvider : VideoSDKRTC.LoggerProvider { + public static let instance: any VideoSDKRTC.LoggerProvider + public func get(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.Logger + public func loggerBuilder(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.LoggerBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultMeterProvider : VideoSDKRTC.MeterProvider { + public static var instance: any VideoSDKRTC.MeterProvider + public static func setDefault(meterFactory: any VideoSDKRTC.MeterProvider) + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Meter + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultStableMeter : VideoSDKRTC.StableMeter { + public func counterBuilder(name: Swift.String) -> any VideoSDKRTC.LongCounterBuilder + public func upDownCounterBuilder(name: Swift.String) -> any VideoSDKRTC.LongUpDownCounterBuilder + public func histogramBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleHistogramBuilder + public func gaugeBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleGaugeBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultStableMeterProvider : VideoSDKRTC.StableMeterProvider { + public static func noop() -> any VideoSDKRTC.MeterBuilder + public func get(name: Swift.String) -> any VideoSDKRTC.StableMeter + public func meterBuilder(name: Swift.String) -> any VideoSDKRTC.MeterBuilder + public static var instance: any VideoSDKRTC.StableMeterProvider + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultTracer : VideoSDKRTC.Tracer { + public static var instance: VideoSDKRTC.DefaultTracer + public func spanBuilder(spanName: Swift.String) -> any VideoSDKRTC.SpanBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultTracerProvider : VideoSDKRTC.TracerProvider { + public static let instance: VideoSDKRTC.DefaultTracerProvider + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Tracer + @objc deinit +} +public struct Google_Protobuf_FileDescriptorSet { + public var file: [VideoSDKRTC.Google_Protobuf_FileDescriptorProto] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_FileDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var package: Swift.String { + get + set + } + public var hasPackage: Swift.Bool { + get + } + public mutating func clearPackage() + public var dependency: [Swift.String] + public var publicDependency: [Swift.Int32] + public var weakDependency: [Swift.Int32] + public var messageType: [VideoSDKRTC.Google_Protobuf_DescriptorProto] + public var enumType: [VideoSDKRTC.Google_Protobuf_EnumDescriptorProto] + public var service: [VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto] + public var `extension`: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_FileOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var sourceCodeInfo: VideoSDKRTC.Google_Protobuf_SourceCodeInfo { + get + set + } + public var hasSourceCodeInfo: Swift.Bool { + get + } + public mutating func clearSourceCodeInfo() + public var syntax: Swift.String { + get + set + } + public var hasSyntax: Swift.Bool { + get + } + public mutating func clearSyntax() + public var edition: Swift.String { + get + set + } + public var hasEdition: Swift.Bool { + get + } + public mutating func clearEdition() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_DescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var field: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto] + public var `extension`: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto] + public var nestedType: [VideoSDKRTC.Google_Protobuf_DescriptorProto] + public var enumType: [VideoSDKRTC.Google_Protobuf_EnumDescriptorProto] + public var extensionRange: [VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange] + public var oneofDecl: [VideoSDKRTC.Google_Protobuf_OneofDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_MessageOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var reservedRange: [VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange] + public var reservedName: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct ExtensionRange { + public var start: Swift.Int32 { + get + set + } + public var hasStart: Swift.Bool { + get + } + public mutating func clearStart() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var options: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public struct ReservedRange { + public var start: Swift.Int32 { + get + set + } + public var hasStart: Swift.Bool { + get + } + public mutating func clearStart() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_ExtensionRangeOptions : VideoSDKRTC.ExtensibleMessage { + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var declaration: [VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration] + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var verification: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState { + get + set + } + public var hasVerification: Swift.Bool { + get + } + public mutating func clearVerification() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum VerificationState : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case declaration + case unverified + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState] + public static var allCases: [VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState] { + get + } + } + public struct Declaration { + public var number: Swift.Int32 { + get + set + } + public var hasNumber: Swift.Bool { + get + } + public mutating func clearNumber() + public var fullName: Swift.String { + get + set + } + public var hasFullName: Swift.Bool { + get + } + public mutating func clearFullName() + public var type: Swift.String { + get + set + } + public var hasType: Swift.Bool { + get + } + public mutating func clearType() + public var reserved: Swift.Bool { + get + set + } + public var hasReserved: Swift.Bool { + get + } + public mutating func clearReserved() + public var repeated: Swift.Bool { + get + set + } + public var hasRepeated: Swift.Bool { + get + } + public mutating func clearRepeated() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_FieldDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var number: Swift.Int32 { + get + set + } + public var hasNumber: Swift.Bool { + get + } + public mutating func clearNumber() + public var label: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label { + get + set + } + public var hasLabel: Swift.Bool { + get + } + public mutating func clearLabel() + public var type: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum { + get + set + } + public var hasType: Swift.Bool { + get + } + public mutating func clearType() + public var typeName: Swift.String { + get + set + } + public var hasTypeName: Swift.Bool { + get + } + public mutating func clearTypeName() + public var extendee: Swift.String { + get + set + } + public var hasExtendee: Swift.Bool { + get + } + public mutating func clearExtendee() + public var defaultValue: Swift.String { + get + set + } + public var hasDefaultValue: Swift.Bool { + get + } + public mutating func clearDefaultValue() + public var oneofIndex: Swift.Int32 { + get + set + } + public var hasOneofIndex: Swift.Bool { + get + } + public mutating func clearOneofIndex() + public var jsonName: Swift.String { + get + set + } + public var hasJsonName: Swift.Bool { + get + } + public mutating func clearJsonName() + public var options: VideoSDKRTC.Google_Protobuf_FieldOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var proto3Optional: Swift.Bool { + get + set + } + public var hasProto3Optional: Swift.Bool { + get + } + public mutating func clearProto3Optional() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum TypeEnum : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case double + case float + case int64 + case uint64 + case int32 + case fixed64 + case fixed32 + case bool + case string + case group + case message + case bytes + case uint32 + case `enum` + case sfixed32 + case sfixed64 + case sint32 + case sint64 + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum] { + get + } + } + public enum Label : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case optional + case required + case repeated + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label] { + get + } + } + public init() +} +public struct Google_Protobuf_OneofDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var options: VideoSDKRTC.Google_Protobuf_OneofOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_EnumDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var value: [VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_EnumOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var reservedRange: [VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange] + public var reservedName: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct EnumReservedRange { + public var start: Swift.Int32 { + get + set + } + public var hasStart: Swift.Bool { + get + } + public mutating func clearStart() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_EnumValueDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var number: Swift.Int32 { + get + set + } + public var hasNumber: Swift.Bool { + get + } + public mutating func clearNumber() + public var options: VideoSDKRTC.Google_Protobuf_EnumValueOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_ServiceDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var method: [VideoSDKRTC.Google_Protobuf_MethodDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_ServiceOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_MethodDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var inputType: Swift.String { + get + set + } + public var hasInputType: Swift.Bool { + get + } + public mutating func clearInputType() + public var outputType: Swift.String { + get + set + } + public var hasOutputType: Swift.Bool { + get + } + public mutating func clearOutputType() + public var options: VideoSDKRTC.Google_Protobuf_MethodOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var clientStreaming: Swift.Bool { + get + set + } + public var hasClientStreaming: Swift.Bool { + get + } + public mutating func clearClientStreaming() + public var serverStreaming: Swift.Bool { + get + set + } + public var hasServerStreaming: Swift.Bool { + get + } + public mutating func clearServerStreaming() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_FileOptions : VideoSDKRTC.ExtensibleMessage { + public var javaPackage: Swift.String { + get + set + } + public var hasJavaPackage: Swift.Bool { + get + } + public mutating func clearJavaPackage() + public var javaOuterClassname: Swift.String { + get + set + } + public var hasJavaOuterClassname: Swift.Bool { + get + } + public mutating func clearJavaOuterClassname() + public var javaMultipleFiles: Swift.Bool { + get + set + } + public var hasJavaMultipleFiles: Swift.Bool { + get + } + public mutating func clearJavaMultipleFiles() + public var javaGenerateEqualsAndHash: Swift.Bool { + get + set + } + public var hasJavaGenerateEqualsAndHash: Swift.Bool { + get + } + public mutating func clearJavaGenerateEqualsAndHash() + public var javaStringCheckUtf8: Swift.Bool { + get + set + } + public var hasJavaStringCheckUtf8: Swift.Bool { + get + } + public mutating func clearJavaStringCheckUtf8() + public var optimizeFor: VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode { + get + set + } + public var hasOptimizeFor: Swift.Bool { + get + } + public mutating func clearOptimizeFor() + public var goPackage: Swift.String { + get + set + } + public var hasGoPackage: Swift.Bool { + get + } + public mutating func clearGoPackage() + public var ccGenericServices: Swift.Bool { + get + set + } + public var hasCcGenericServices: Swift.Bool { + get + } + public mutating func clearCcGenericServices() + public var javaGenericServices: Swift.Bool { + get + set + } + public var hasJavaGenericServices: Swift.Bool { + get + } + public mutating func clearJavaGenericServices() + public var pyGenericServices: Swift.Bool { + get + set + } + public var hasPyGenericServices: Swift.Bool { + get + } + public mutating func clearPyGenericServices() + public var phpGenericServices: Swift.Bool { + get + set + } + public var hasPhpGenericServices: Swift.Bool { + get + } + public mutating func clearPhpGenericServices() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var ccEnableArenas: Swift.Bool { + get + set + } + public var hasCcEnableArenas: Swift.Bool { + get + } + public mutating func clearCcEnableArenas() + public var objcClassPrefix: Swift.String { + get + set + } + public var hasObjcClassPrefix: Swift.Bool { + get + } + public mutating func clearObjcClassPrefix() + public var csharpNamespace: Swift.String { + get + set + } + public var hasCsharpNamespace: Swift.Bool { + get + } + public mutating func clearCsharpNamespace() + public var swiftPrefix: Swift.String { + get + set + } + public var hasSwiftPrefix: Swift.Bool { + get + } + public mutating func clearSwiftPrefix() + public var phpClassPrefix: Swift.String { + get + set + } + public var hasPhpClassPrefix: Swift.Bool { + get + } + public mutating func clearPhpClassPrefix() + public var phpNamespace: Swift.String { + get + set + } + public var hasPhpNamespace: Swift.Bool { + get + } + public mutating func clearPhpNamespace() + public var phpMetadataNamespace: Swift.String { + get + set + } + public var hasPhpMetadataNamespace: Swift.Bool { + get + } + public mutating func clearPhpMetadataNamespace() + public var rubyPackage: Swift.String { + get + set + } + public var hasRubyPackage: Swift.Bool { + get + } + public mutating func clearRubyPackage() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OptimizeMode : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case speed + case codeSize + case liteRuntime + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode] { + get + } + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_MessageOptions : VideoSDKRTC.ExtensibleMessage { + public var messageSetWireFormat: Swift.Bool { + get + set + } + public var hasMessageSetWireFormat: Swift.Bool { + get + } + public mutating func clearMessageSetWireFormat() + public var noStandardDescriptorAccessor: Swift.Bool { + get + set + } + public var hasNoStandardDescriptorAccessor: Swift.Bool { + get + } + public mutating func clearNoStandardDescriptorAccessor() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var mapEntry: Swift.Bool { + get + set + } + public var hasMapEntry: Swift.Bool { + get + } + public mutating func clearMapEntry() + public var deprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + set + } + public var hasDeprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + } + public mutating func clearDeprecatedLegacyJsonFieldConflicts() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_FieldOptions : VideoSDKRTC.ExtensibleMessage { + public var ctype: VideoSDKRTC.Google_Protobuf_FieldOptions.CType { + get + set + } + public var hasCtype: Swift.Bool { + get + } + public mutating func clearCtype() + public var packed: Swift.Bool { + get + set + } + public var hasPacked: Swift.Bool { + get + } + public mutating func clearPacked() + public var jstype: VideoSDKRTC.Google_Protobuf_FieldOptions.JSType { + get + set + } + public var hasJstype: Swift.Bool { + get + } + public mutating func clearJstype() + public var lazy: Swift.Bool { + get + set + } + public var hasLazy: Swift.Bool { + get + } + public mutating func clearLazy() + public var unverifiedLazy: Swift.Bool { + get + set + } + public var hasUnverifiedLazy: Swift.Bool { + get + } + public mutating func clearUnverifiedLazy() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var weak: Swift.Bool { + get + set + } + public var hasWeak: Swift.Bool { + get + } + public mutating func clearWeak() + public var debugRedact: Swift.Bool { + get + set + } + public var hasDebugRedact: Swift.Bool { + get + } + public mutating func clearDebugRedact() + public var retention: VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention { + get + set + } + public var hasRetention: Swift.Bool { + get + } + public mutating func clearRetention() + public var targets: [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType] + public var editionDefaults: [VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault] + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum CType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case string + case cord + case stringPiece + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.CType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.CType] { + get + } + } + public enum JSType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case jsNormal + case jsString + case jsNumber + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.JSType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.JSType] { + get + } + } + public enum OptionRetention : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case retentionUnknown + case retentionRuntime + case retentionSource + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention] { + get + } + } + public enum OptionTargetType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case targetTypeUnknown + case targetTypeFile + case targetTypeExtensionRange + case targetTypeMessage + case targetTypeField + case targetTypeOneof + case targetTypeEnum + case targetTypeEnumEntry + case targetTypeService + case targetTypeMethod + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType] { + get + } + } + public struct EditionDefault { + public var edition: Swift.String { + get + set + } + public var hasEdition: Swift.Bool { + get + } + public mutating func clearEdition() + public var value: Swift.String { + get + set + } + public var hasValue: Swift.Bool { + get + } + public mutating func clearValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_OneofOptions : VideoSDKRTC.ExtensibleMessage { + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_EnumOptions : VideoSDKRTC.ExtensibleMessage { + public var allowAlias: Swift.Bool { + get + set + } + public var hasAllowAlias: Swift.Bool { + get + } + public mutating func clearAllowAlias() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var deprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + set + } + public var hasDeprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + } + public mutating func clearDeprecatedLegacyJsonFieldConflicts() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_EnumValueOptions : VideoSDKRTC.ExtensibleMessage { + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var debugRedact: Swift.Bool { + get + set + } + public var hasDebugRedact: Swift.Bool { + get + } + public mutating func clearDebugRedact() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_ServiceOptions : VideoSDKRTC.ExtensibleMessage { + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_MethodOptions : VideoSDKRTC.ExtensibleMessage { + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var idempotencyLevel: VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel { + get + set + } + public var hasIdempotencyLevel: Swift.Bool { + get + } + public mutating func clearIdempotencyLevel() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum IdempotencyLevel : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case idempotencyUnknown + case noSideEffects + case idempotent + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel] + public static var allCases: [VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel] { + get + } + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_UninterpretedOption { + public var name: [VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart] + public var identifierValue: Swift.String { + get + set + } + public var hasIdentifierValue: Swift.Bool { + get + } + public mutating func clearIdentifierValue() + public var positiveIntValue: Swift.UInt64 { + get + set + } + public var hasPositiveIntValue: Swift.Bool { + get + } + public mutating func clearPositiveIntValue() + public var negativeIntValue: Swift.Int64 { + get + set + } + public var hasNegativeIntValue: Swift.Bool { + get + } + public mutating func clearNegativeIntValue() + public var doubleValue: Swift.Double { + get + set + } + public var hasDoubleValue: Swift.Bool { + get + } + public mutating func clearDoubleValue() + public var stringValue: Foundation.Data { + get + set + } + public var hasStringValue: Swift.Bool { + get + } + public mutating func clearStringValue() + public var aggregateValue: Swift.String { + get + set + } + public var hasAggregateValue: Swift.Bool { + get + } + public mutating func clearAggregateValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct NamePart { + public var namePart: Swift.String { + get + set + } + public var hasNamePart: Swift.Bool { + get + } + public mutating func clearNamePart() + public var isExtension: Swift.Bool { + get + set + } + public var hasIsExtension: Swift.Bool { + get + } + public mutating func clearIsExtension() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_FeatureSet : VideoSDKRTC.ExtensibleMessage { + public var fieldPresence: VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence { + get + set + } + public var hasFieldPresence: Swift.Bool { + get + } + public mutating func clearFieldPresence() + public var enumType: VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType { + get + set + } + public var hasEnumType: Swift.Bool { + get + } + public mutating func clearEnumType() + public var repeatedFieldEncoding: VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding { + get + set + } + public var hasRepeatedFieldEncoding: Swift.Bool { + get + } + public mutating func clearRepeatedFieldEncoding() + public var stringFieldValidation: VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation { + get + set + } + public var hasStringFieldValidation: Swift.Bool { + get + } + public mutating func clearStringFieldValidation() + public var messageEncoding: VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding { + get + set + } + public var hasMessageEncoding: Swift.Bool { + get + } + public mutating func clearMessageEncoding() + public var jsonFormat: VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat { + get + set + } + public var hasJsonFormat: Swift.Bool { + get + } + public mutating func clearJsonFormat() + public var rawFeatures: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasRawFeatures: Swift.Bool { + get + } + public mutating func clearRawFeatures() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum FieldPresence : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case explicit + case implicit + case legacyRequired + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence] { + get + } + } + public enum EnumType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case open + case closed + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType] { + get + } + } + public enum RepeatedFieldEncoding : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case packed + case expanded + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding] { + get + } + } + public enum StringFieldValidation : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case mandatory + case hint + case none + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation] { + get + } + } + public enum MessageEncoding : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case lengthPrefixed + case delimited + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding] { + get + } + } + public enum JsonFormat : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case allow + case legacyBestEffort + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat] { + get + } + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_SourceCodeInfo { + public var location: [VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct Location { + public var path: [Swift.Int32] + public var span: [Swift.Int32] + public var leadingComments: Swift.String { + get + set + } + public var hasLeadingComments: Swift.Bool { + get + } + public mutating func clearLeadingComments() + public var trailingComments: Swift.String { + get + set + } + public var hasTrailingComments: Swift.Bool { + get + } + public mutating func clearTrailingComments() + public var leadingDetachedComments: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_GeneratedCodeInfo { + public var annotation: [VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct Annotation { + public var path: [Swift.Int32] + public var sourceFile: Swift.String { + get + set + } + public var hasSourceFile: Swift.Bool { + get + } + public mutating func clearSourceFile() + public var begin: Swift.Int32 { + get + set + } + public var hasBegin: Swift.Bool { + get + } + public mutating func clearBegin() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var semantic: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic { + get + set + } + public var hasSemantic: Swift.Bool { + get + } + public mutating func clearSemantic() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum Semantic : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case none + case set + case alias + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic] + public static var allCases: [VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic] { + get + } + } + public init() + } + public init() +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorSet : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_OneofDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_MethodDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FileOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_MessageOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_OneofOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumValueOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ServiceOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_MethodOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorSet : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FileDescriptorSet, rhs: VideoSDKRTC.Google_Protobuf_FileDescriptorSet) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FileDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_FileDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_DescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange, rhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange, rhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions, rhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration, rhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_OneofDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_OneofDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_OneofDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange, rhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_MethodDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_MethodDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_MethodDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FileOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FileOptions, rhs: VideoSDKRTC.Google_Protobuf_FileOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_MessageOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_MessageOptions, rhs: VideoSDKRTC.Google_Protobuf_MessageOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldOptions, rhs: VideoSDKRTC.Google_Protobuf_FieldOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.CType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.JSType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault, rhs: VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_OneofOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_OneofOptions, rhs: VideoSDKRTC.Google_Protobuf_OneofOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumOptions, rhs: VideoSDKRTC.Google_Protobuf_EnumOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumValueOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumValueOptions, rhs: VideoSDKRTC.Google_Protobuf_EnumValueOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ServiceOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ServiceOptions, rhs: VideoSDKRTC.Google_Protobuf_ServiceOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_MethodOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_MethodOptions, rhs: VideoSDKRTC.Google_Protobuf_MethodOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption, rhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart, rhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FeatureSet, rhs: VideoSDKRTC.Google_Protobuf_FeatureSet) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo, rhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location, rhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo, rhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation, rhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +public protocol DoubleCounter { + mutating func add(value: Swift.Double) + mutating func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol DoubleCounterBuilder : AnyObject { + func build() -> any VideoSDKRTC.DoubleCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleCounter +} +@_hasMissingDesignatedInitializers public class DoubleCounterMeterBuilderSdk : VideoSDKRTC.DoubleCounterBuilder { + public func build() -> any VideoSDKRTC.DoubleCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleCounter + @objc deinit +} +public enum HistogramAggregatorError : Swift.Error { + case unsupportedOperation(Swift.String) +} +public class DoubleExplicitBucketHistogramAggregator : VideoSDKRTC.StableAggregator { + public init(boundaries: [Swift.Double], reservoirSupplier: @escaping () -> VideoSDKRTC.ExemplarReservoir) + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol DoubleGaugeBuilder : AnyObject { + func ofLongs() -> any VideoSDKRTC.LongGaugeBuilder + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleGauge +} +@_hasMissingDesignatedInitializers public class DoubleGaugeBuilderSdk : VideoSDKRTC.DoubleGaugeBuilder { + public func ofLongs() -> any VideoSDKRTC.LongGaugeBuilder + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleGauge + @objc deinit +} +public protocol DoubleHistogram { + mutating func record(value: Swift.Double) + mutating func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol DoubleHistogramBuilder : AnyObject { + func ofLongs() -> any VideoSDKRTC.LongHistogramBuilder + func build() -> any VideoSDKRTC.DoubleHistogram +} +@_hasMissingDesignatedInitializers public class DoubleHistogramMeterBuilderSdk : VideoSDKRTC.DoubleHistogramBuilder { + public func ofLongs() -> any VideoSDKRTC.LongHistogramBuilder + public func build() -> any VideoSDKRTC.DoubleHistogram + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleHistogramMeterSdk : VideoSDKRTC.DoubleHistogram, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public var storage: any VideoSDKRTC.WritableMetricStorage + public func record(value: Swift.Double) + public func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleLastValueAggregator : VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol DoubleObserverMetric { + func observe(value: Swift.Double, labelset: VideoSDKRTC.LabelSet) + func observe(value: Swift.Double, labels: [Swift.String : Swift.String]) +} +public struct NoopDoubleObserverMetric : VideoSDKRTC.DoubleObserverMetric { + public init() + public func observe(value: Swift.Double, labelset: VideoSDKRTC.LabelSet) + public func observe(value: Swift.Double, labels: [Swift.String : Swift.String]) +} +@_hasMissingDesignatedInitializers public class DoublePointData : VideoSDKRTC.PointData { + public var value: Swift.Double + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleSumAggregator : VideoSDKRTC.SumAggregator, VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol DoubleUpDownCounter { + mutating func add(value: Swift.Double) + mutating func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol DoubleUpDownCounterBuilder : AnyObject { + func build() -> any VideoSDKRTC.DoubleUpDownCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleUpDownCounter +} +@_hasMissingDesignatedInitializers public class DoubleUpDownCounterBuilderSdk : VideoSDKRTC.DoubleUpDownCounterBuilder { + public func build() -> any VideoSDKRTC.DoubleUpDownCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleUpDownCounter + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleUpDownCounterSdk : VideoSDKRTC.DoubleUpDownCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor { + get + } + public func add(value: Swift.Double) + public func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_hasMissingDesignatedInitializers public class DropAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.DropAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +@_hasMissingDesignatedInitializers public class DropAggregator : VideoSDKRTC.StableAggregator { + public static var POINT_DATA: VideoSDKRTC.PointData { + get + } + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) -> VideoSDKRTC.PointData + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public struct Google_Protobuf_Duration { + public var seconds: Swift.Int64 + public var nanos: Swift.Int32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Duration : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Duration : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Google_Protobuf_Empty { + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Empty : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Empty : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Empty, rhs: VideoSDKRTC.Google_Protobuf_Empty) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class EmptyMetricStorage { + public func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public static var instance: VideoSDKRTC.EmptyMetricStorage + public var metricDescriptor: VideoSDKRTC.MetricDescriptor + public func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + public func isEmpty() -> Swift.Bool + @objc deinit +} +public struct Entry : Swift.Equatable, Swift.Comparable { + public var key: VideoSDKRTC.EntryKey { + get + } + public var value: VideoSDKRTC.EntryValue { + get + } + public var metadata: VideoSDKRTC.EntryMetadata? { + get + } + public init(key: VideoSDKRTC.EntryKey, value: VideoSDKRTC.EntryValue, metadata: VideoSDKRTC.EntryMetadata?) + public static func < (lhs: VideoSDKRTC.Entry, rhs: VideoSDKRTC.Entry) -> Swift.Bool + public static func == (a: VideoSDKRTC.Entry, b: VideoSDKRTC.Entry) -> Swift.Bool +} +public struct EntryKey : Swift.Equatable, Swift.Comparable, Swift.Hashable { + public var name: Swift.String { + get + } + public init?(name: Swift.String) + public static func < (lhs: VideoSDKRTC.EntryKey, rhs: VideoSDKRTC.EntryKey) -> Swift.Bool + public static func == (a: VideoSDKRTC.EntryKey, b: VideoSDKRTC.EntryKey) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct EntryMetadata : Swift.Equatable { + public var metadata: Swift.String + public init?(metadata: Swift.String?) + public static func == (a: VideoSDKRTC.EntryMetadata, b: VideoSDKRTC.EntryMetadata) -> Swift.Bool +} +public struct EntryValue : Swift.Equatable { + public var string: Swift.String { + get + } + public init?(string: Swift.String) + public static func == (a: VideoSDKRTC.EntryValue, b: VideoSDKRTC.EntryValue) -> Swift.Bool +} +public protocol Enum : Swift.CaseIterable, Swift.Hashable, Swift.RawRepresentable, Swift.Sendable { + init() + init?(rawValue: Swift.Int) + var rawValue: Swift.Int { get } +} +extension VideoSDKRTC.Enum { + public func hash(into hasher: inout Swift.Hasher) +} +public struct EnvironmentContextPropagator : VideoSDKRTC.TextMapPropagator { + public let fields: Swift.Set + public init() + public func inject(spanContext: VideoSDKRTC.SpanContext, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + public func extract(carrier: [Swift.String : Swift.String], getter: G) -> VideoSDKRTC.SpanContext? where G : VideoSDKRTC.Getter +} +public struct EnvVarHeaders { + public static let attributes: [(Swift.String, Swift.String)]? + public static func attributes(for rawEnvAttributes: Swift.String? = ProcessInfo.processInfo.environment["OTEL_EXPORTER_OTLP_HEADERS"]) -> [(Swift.String, Swift.String)]? +} +public struct EnvVarResource { + public static let resource: VideoSDKRTC.Resource + public static func get(environment: [Swift.String : Swift.String] = ProcessInfo.processInfo.environment) -> VideoSDKRTC.Resource +} +public protocol EventBuilder : VideoSDKRTC.LogRecordBuilder { + func setData(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self +} +@_hasMissingDesignatedInitializers public class ExemplarData : Swift.Equatable { + public var filteredAttributes: [Swift.String : VideoSDKRTC.AttributeValue] + public var epochNanos: Swift.UInt64 + public var spanContext: VideoSDKRTC.SpanContext? + public static func == (lhs: VideoSDKRTC.ExemplarData, rhs: VideoSDKRTC.ExemplarData) -> Swift.Bool + @objc deinit +} +@_hasMissingDesignatedInitializers final public class DoubleExemplarData : VideoSDKRTC.ExemplarData { + final public var value: Swift.Double + @objc deinit +} +@_hasMissingDesignatedInitializers final public class LongExemplarData : VideoSDKRTC.ExemplarData { + final public var value: Swift.Int + @objc deinit +} +public protocol ExemplarFilter { + func shouldSampleMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool + func shouldSampleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool +} +public struct AlwaysOnFilter : VideoSDKRTC.ExemplarFilter { + public func shouldSampleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool + public func shouldSampleMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool +} +public struct AlwaysOffFilter : VideoSDKRTC.ExemplarFilter { + public init() + public func shouldSampleMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool + public func shouldSampleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class ExemplarReservoir { + public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class NoopExemplarReservoir : VideoSDKRTC.ExemplarReservoir { + override public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + @objc deinit +} +public enum ExemplarReservoirCollection { +} +@_hasMissingDesignatedInitializers public class FixedSizedExemplarReservoir : VideoSDKRTC.ExemplarReservoir { + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + @objc deinit +} +@_hasMissingDesignatedInitializers public class RandomFixedSizedExemplarReservoir : VideoSDKRTC.FixedSizedExemplarReservoir { + @objc deinit +} +@_hasMissingDesignatedInitializers public class ExplicitBucketHistogramAggregation : VideoSDKRTC.Aggregation { + public static var DEFAULT_BOUNDARIES: [Swift.Double] { + get + } + public static var instance: VideoSDKRTC.ExplicitBucketHistogramAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +public protocol ExponentialHistogramBuckets { + var scale: Swift.Int { get } + var offset: Swift.Int { get } + var bucketCounts: [Swift.Int] { get } + var totalCount: Swift.Int { get } +} +public enum ExportResult { + case success + case failure + public static func == (a: VideoSDKRTC.ExportResult, b: VideoSDKRTC.ExportResult) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public protocol ExtensibleMessage : VideoSDKRTC.Message { + var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet { get set } +} +extension VideoSDKRTC.ExtensibleMessage { + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, value: F.ValueType) where F : VideoSDKRTC.ExtensionField + public func getExtensionValue(ext: VideoSDKRTC.MessageExtension) -> F.ValueType? where F : VideoSDKRTC.ExtensionField + public func hasExtensionValue(ext: VideoSDKRTC.MessageExtension) -> Swift.Bool where F : VideoSDKRTC.ExtensionField + public mutating func clearExtensionValue(ext: VideoSDKRTC.MessageExtension) where F : VideoSDKRTC.ExtensionField +} +extension VideoSDKRTC.ExtensibleMessage { + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [T.BaseType]) where T : VideoSDKRTC.FieldType + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [T.BaseType]) where T : VideoSDKRTC.FieldType + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [E]) where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [E]) where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [M]) where M : Swift.Equatable, M : VideoSDKRTC.Message + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [M]) where M : Swift.Hashable, M : VideoSDKRTC.Message +} +public protocol AnyExtensionField { + func hash(into hasher: inout Swift.Hasher) + var protobufExtension: any VideoSDKRTC.AnyMessageExtension { get } + func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + mutating func decodeExtensionField(decoder: inout T) throws where T : VideoSDKRTC.SPBDecoder + func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + var isInitialized: Swift.Bool { get } +} +extension VideoSDKRTC.AnyExtensionField { + public var isInitialized: Swift.Bool { + get + } +} +public protocol ExtensionField : Swift.Hashable, VideoSDKRTC.AnyExtensionField { + associatedtype ValueType + var value: Self.ValueType { get set } + init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: Self.ValueType) + init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder +} +public struct OptionalExtensionField : VideoSDKRTC.ExtensionField where T : VideoSDKRTC.FieldType { + public typealias BaseType = T.BaseType + public typealias ValueType = VideoSDKRTC.OptionalExtensionField.BaseType + public var value: VideoSDKRTC.OptionalExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalExtensionField, rhs: VideoSDKRTC.OptionalExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedExtensionField : VideoSDKRTC.ExtensionField where T : VideoSDKRTC.FieldType { + public typealias BaseType = T.BaseType + public typealias ValueType = [VideoSDKRTC.RepeatedExtensionField.BaseType] + public var value: VideoSDKRTC.RepeatedExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedExtensionField, rhs: VideoSDKRTC.RepeatedExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct PackedExtensionField : VideoSDKRTC.ExtensionField where T : VideoSDKRTC.FieldType { + public typealias BaseType = T.BaseType + public typealias ValueType = [VideoSDKRTC.PackedExtensionField.BaseType] + public var value: VideoSDKRTC.PackedExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.PackedExtensionField, rhs: VideoSDKRTC.PackedExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.PackedExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct OptionalEnumExtensionField : VideoSDKRTC.ExtensionField where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int { + public typealias BaseType = E + public typealias ValueType = E + public var value: VideoSDKRTC.OptionalEnumExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalEnumExtensionField, rhs: VideoSDKRTC.OptionalEnumExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalEnumExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedEnumExtensionField : VideoSDKRTC.ExtensionField where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int { + public typealias BaseType = E + public typealias ValueType = [E] + public var value: VideoSDKRTC.RepeatedEnumExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedEnumExtensionField, rhs: VideoSDKRTC.RepeatedEnumExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedEnumExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct PackedEnumExtensionField : VideoSDKRTC.ExtensionField where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int { + public typealias BaseType = E + public typealias ValueType = [E] + public var value: VideoSDKRTC.PackedEnumExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.PackedEnumExtensionField, rhs: VideoSDKRTC.PackedEnumExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.PackedEnumExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct OptionalMessageExtensionField : VideoSDKRTC.ExtensionField where M : Swift.Equatable, M : VideoSDKRTC.Message { + public typealias BaseType = M + public typealias ValueType = VideoSDKRTC.OptionalMessageExtensionField.BaseType + public var value: VideoSDKRTC.OptionalMessageExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalMessageExtensionField, rhs: VideoSDKRTC.OptionalMessageExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalMessageExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedMessageExtensionField : VideoSDKRTC.ExtensionField where M : Swift.Equatable, M : VideoSDKRTC.Message { + public typealias BaseType = M + public typealias ValueType = [VideoSDKRTC.RepeatedMessageExtensionField.BaseType] + public var value: VideoSDKRTC.RepeatedMessageExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedMessageExtensionField, rhs: VideoSDKRTC.RepeatedMessageExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedMessageExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct OptionalGroupExtensionField : VideoSDKRTC.ExtensionField where G : Swift.Hashable, G : VideoSDKRTC.Message { + public typealias BaseType = G + public typealias ValueType = VideoSDKRTC.OptionalGroupExtensionField.BaseType + public var value: G + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalGroupExtensionField, rhs: VideoSDKRTC.OptionalGroupExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalGroupExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedGroupExtensionField : VideoSDKRTC.ExtensionField where G : Swift.Hashable, G : VideoSDKRTC.Message { + public typealias BaseType = G + public typealias ValueType = [VideoSDKRTC.RepeatedGroupExtensionField.BaseType] + public var value: VideoSDKRTC.RepeatedGroupExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedGroupExtensionField, rhs: VideoSDKRTC.RepeatedGroupExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedGroupExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct ExtensionFieldValueSet : Swift.Hashable { + public static func == (lhs: VideoSDKRTC.ExtensionFieldValueSet, rhs: VideoSDKRTC.ExtensionFieldValueSet) -> Swift.Bool + public init() + public func hash(into hasher: inout Swift.Hasher) + public func traverse(visitor: inout V, start: Swift.Int, end: Swift.Int) throws where V : VideoSDKRTC.Visitor + public subscript(index: Swift.Int) -> (any VideoSDKRTC.AnyExtensionField)? { + get + set + } + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public protocol ExtensionMap : Swift.Sendable { + subscript(messageType: any VideoSDKRTC.Message.Type, fieldNumber: Swift.Int) -> (any VideoSDKRTC.AnyMessageExtension)? { get } + func fieldNumberForProto(messageType: any VideoSDKRTC.Message.Type, protoFieldName: Swift.String) -> Swift.Int? +} +public struct Google_Protobuf_FieldMask { + public var paths: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_FieldMask : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldMask : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldMask, rhs: VideoSDKRTC.Google_Protobuf_FieldMask) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol FieldType { + associatedtype BaseType : Swift.Hashable + static var proto3DefaultValue: Self.BaseType { get } + static func decodeSingular(value: inout Self.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + static func decodeRepeated(value: inout [Self.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + static func visitSingular(value: Self.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + static func visitRepeated(value: [Self.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + static func visitPacked(value: [Self.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public protocol MapKeyType : VideoSDKRTC.FieldType { + static func _lessThan(lhs: Self.BaseType, rhs: Self.BaseType) -> Swift.Bool +} +extension VideoSDKRTC.MapKeyType where Self.BaseType : Swift.Comparable { + public static func _lessThan(lhs: Self.BaseType, rhs: Self.BaseType) -> Swift.Bool +} +public protocol MapValueType : VideoSDKRTC.FieldType { +} +public struct ProtobufFloat : VideoSDKRTC.FieldType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Float + public static var proto3DefaultValue: Swift.Float { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufFloat.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufFloat.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufFloat.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufFloat.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufFloat.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufDouble : VideoSDKRTC.FieldType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Double + public static var proto3DefaultValue: Swift.Double { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufDouble.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufDouble.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufDouble.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufDouble.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufDouble.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufInt32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int32 + public static var proto3DefaultValue: Swift.Int32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufInt32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufInt32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufInt32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufInt64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int64 + public static var proto3DefaultValue: Swift.Int64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufInt64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufInt64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufInt64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufUInt32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt32 + public static var proto3DefaultValue: Swift.UInt32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufUInt32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufUInt32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufUInt32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufUInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufUInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufUInt64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt64 + public static var proto3DefaultValue: Swift.UInt64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufUInt64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufUInt64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufUInt64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufUInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufUInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSInt32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int32 + public static var proto3DefaultValue: Swift.Int32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSInt32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSInt32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSInt32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSInt64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int64 + public static var proto3DefaultValue: Swift.Int64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSInt64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSInt64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSInt64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufFixed32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt32 + public static var proto3DefaultValue: Swift.UInt32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufFixed32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufFixed32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufFixed32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufFixed64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt64 + public static var proto3DefaultValue: Swift.UInt64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufFixed64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufFixed64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufFixed64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSFixed32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int32 + public static var proto3DefaultValue: Swift.Int32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSFixed32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSFixed32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSFixed32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSFixed64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int64 + public static var proto3DefaultValue: Swift.Int64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSFixed64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSFixed64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSFixed64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufBool : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Bool + public static var proto3DefaultValue: Swift.Bool { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufBool.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufBool.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufBool.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufBool.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufBool.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func _lessThan(lhs: VideoSDKRTC.ProtobufBool.BaseType, rhs: VideoSDKRTC.ProtobufBool.BaseType) -> Swift.Bool +} +public struct ProtobufString : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.String + public static var proto3DefaultValue: Swift.String { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufString.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufString.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufString.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufString.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufString.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufBytes : VideoSDKRTC.FieldType, VideoSDKRTC.MapValueType { + public typealias BaseType = Foundation.Data + public static var proto3DefaultValue: Foundation.Data { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufBytes.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufBytes.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufBytes.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufBytes.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufBytes.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +@_hasMissingDesignatedInitializers public class FilteredExemplarReservoir : VideoSDKRTC.ExemplarReservoir { + override public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + @objc deinit +} +public let defaultAnyTypeURLPrefix: Swift.String +extension VideoSDKRTC.Google_Protobuf_Any { + public init(message: any VideoSDKRTC.Message, partial: Swift.Bool = false, typePrefix: Swift.String = defaultAnyTypeURLPrefix) throws + public init(textFormatString: Swift.String, options: VideoSDKRTC.TextFormatDecodingOptions = TextFormatDecodingOptions(), extensions: (any VideoSDKRTC.ExtensionMap)? = nil) throws + public func isA(_ type: M.Type) -> Swift.Bool where M : VideoSDKRTC.Message + public func hash(into hasher: inout Swift.Hasher) +} +extension VideoSDKRTC.Google_Protobuf_Any { + @discardableResult + public static func register(messageType: any VideoSDKRTC.Message.Type) -> Swift.Bool + public static func messageType(forTypeURL url: Swift.String) -> (any VideoSDKRTC.Message.Type)? + public static func messageType(forMessageName name: Swift.String) -> (any VideoSDKRTC.Message.Type)? +} +extension VideoSDKRTC.Google_Protobuf_Duration { + public init(seconds: Swift.Int64 = 0, nanos: Swift.Int32 = 0) +} +extension VideoSDKRTC.Google_Protobuf_Duration : Swift.ExpressibleByFloatLiteral { + public typealias FloatLiteralType = Swift.Double + public init(floatLiteral value: Swift.Double) +} +extension VideoSDKRTC.Google_Protobuf_Duration { + public init(timeInterval: Foundation.TimeInterval) + public var timeInterval: Foundation.TimeInterval { + get + } +} +prefix public func - (operand: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Duration +public func + (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Duration +public func - (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Duration +public func - (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Timestamp) -> VideoSDKRTC.Google_Protobuf_Duration +extension VideoSDKRTC.Google_Protobuf_FieldMask { + public init(protoPaths: [Swift.String]) + public init(protoPaths: Swift.String...) + public init?(jsonPaths: Swift.String...) +} +extension VideoSDKRTC.Google_Protobuf_ListValue : Swift.ExpressibleByArrayLiteral { + public typealias Element = VideoSDKRTC.Google_Protobuf_Value + public init(arrayLiteral elements: VideoSDKRTC.Google_Protobuf_ListValue.Element...) + public typealias ArrayLiteralElement = VideoSDKRTC.Google_Protobuf_ListValue.Element +} +extension VideoSDKRTC.Google_Protobuf_ListValue { + public init(values: [VideoSDKRTC.Google_Protobuf_Value]) + public subscript(index: Swift.Int) -> VideoSDKRTC.Google_Protobuf_Value { + get + set(newValue) + } +} +extension VideoSDKRTC.Google_Protobuf_Struct : Swift.ExpressibleByDictionaryLiteral { + public typealias Key = Swift.String + public typealias Value = VideoSDKRTC.Google_Protobuf_Value + public init(dictionaryLiteral: (Swift.String, VideoSDKRTC.Google_Protobuf_Value)...) +} +extension VideoSDKRTC.Google_Protobuf_Struct { + public init(fields: [Swift.String : VideoSDKRTC.Google_Protobuf_Value]) + public subscript(key: Swift.String) -> VideoSDKRTC.Google_Protobuf_Value? { + get + set(newValue) + } +} +extension VideoSDKRTC.Google_Protobuf_Timestamp { + public init(seconds: Swift.Int64 = 0, nanos: Swift.Int32 = 0) +} +extension VideoSDKRTC.Google_Protobuf_Timestamp { + public init(timeIntervalSince1970: Foundation.TimeInterval) + public init(timeIntervalSinceReferenceDate: Foundation.TimeInterval) + public init(date: Foundation.Date) + public var timeIntervalSince1970: Foundation.TimeInterval { + get + } + public var timeIntervalSinceReferenceDate: Foundation.TimeInterval { + get + } + public var date: Foundation.Date { + get + } +} +public func + (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Timestamp +public func + (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Timestamp) -> VideoSDKRTC.Google_Protobuf_Timestamp +public func - (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Timestamp +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByIntegerLiteral { + public typealias IntegerLiteralType = Swift.Int64 + public init(integerLiteral value: Swift.Int64) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByFloatLiteral { + public typealias FloatLiteralType = Swift.Double + public init(floatLiteral value: Swift.Double) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByBooleanLiteral { + public typealias BooleanLiteralType = Swift.Bool + public init(booleanLiteral value: Swift.Bool) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByStringLiteral { + public typealias StringLiteralType = Swift.String + public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias UnicodeScalarLiteralType = Swift.String + public init(stringLiteral value: Swift.String) + public init(unicodeScalarLiteral value: Swift.String) + public init(extendedGraphemeClusterLiteral value: Swift.String) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByNilLiteral { + public init(nilLiteral: ()) +} +extension VideoSDKRTC.Google_Protobuf_Value { + public init(numberValue: Swift.Double) + public init(stringValue: Swift.String) + public init(boolValue: Swift.Bool) + public init(structValue: VideoSDKRTC.Google_Protobuf_Struct) + public init(listValue: VideoSDKRTC.Google_Protobuf_ListValue) +} +extension VideoSDKRTC.Google_Protobuf_DoubleValue : Swift.ExpressibleByFloatLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufDouble + public typealias FloatLiteralType = VideoSDKRTC.Google_Protobuf_DoubleValue.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_DoubleValue.WrappedType.BaseType) + public init(floatLiteral: VideoSDKRTC.Google_Protobuf_DoubleValue.FloatLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_FloatValue : Swift.ExpressibleByFloatLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufFloat + public typealias FloatLiteralType = Swift.Float + public init(_ value: VideoSDKRTC.Google_Protobuf_FloatValue.WrappedType.BaseType) + public init(floatLiteral: VideoSDKRTC.Google_Protobuf_FloatValue.FloatLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_Int64Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufInt64 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_Int64Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_Int64Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_Int64Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_UInt64Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufUInt64 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_UInt64Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_UInt64Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_UInt64Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_Int32Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufInt32 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_Int32Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_Int32Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_Int32Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_UInt32Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufUInt32 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_UInt32Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_UInt32Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_UInt32Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_BoolValue : Swift.ExpressibleByBooleanLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufBool + public typealias BooleanLiteralType = Swift.Bool + public init(_ value: VideoSDKRTC.Google_Protobuf_BoolValue.WrappedType.BaseType) + public init(booleanLiteral: Swift.Bool) +} +extension VideoSDKRTC.Google_Protobuf_StringValue : Swift.ExpressibleByStringLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufString + public typealias StringLiteralType = Swift.String + public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias UnicodeScalarLiteralType = Swift.String + public init(_ value: VideoSDKRTC.Google_Protobuf_StringValue.WrappedType.BaseType) + public init(stringLiteral: Swift.String) + public init(extendedGraphemeClusterLiteral: Swift.String) + public init(unicodeScalarLiteral: Swift.String) +} +extension VideoSDKRTC.Google_Protobuf_BytesValue { + public typealias WrappedType = VideoSDKRTC.ProtobufBytes + public init(_ value: VideoSDKRTC.Google_Protobuf_BytesValue.WrappedType.BaseType) +} +public struct Headers { + public static func getUserAgentHeader() -> Swift.String +} +@_hasMissingDesignatedInitializers public class HistogramAggregator : VideoSDKRTC.Aggregator where T : Swift.Comparable, T : Swift.SignedNumeric { + public init(explicitBoundaries: Swift.Array? = nil) throws + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +@_hasMissingDesignatedInitializers public class HistogramExemplarReservoir : VideoSDKRTC.FixedSizedExemplarReservoir { + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public protocol HistogramMetric { + associatedtype T + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundHistogramMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundHistogramMetric +} +extension VideoSDKRTC.HistogramMetric { + public func record(value: Self.T, labelset: VideoSDKRTC.LabelSet) + public func record(value: Self.T, labels: [Swift.String : Swift.String]) +} +public struct AnyHistogramMetric : VideoSDKRTC.HistogramMetric { + public init(_ histogram: U) where T == U.T, U : VideoSDKRTC.HistogramMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundHistogramMetric +} +public struct NoopHistogramMetric : VideoSDKRTC.HistogramMetric { + public init() + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundHistogramMetric +} +@_hasMissingDesignatedInitializers public class HistogramPointData : VideoSDKRTC.PointData { + public var sum: Swift.Double + public var count: Swift.UInt64 + public var min: Swift.Double + public var max: Swift.Double + public var boundaries: [Swift.Double] + public var counts: [Swift.Int] + public var hasMin: Swift.Bool + public var hasMax: Swift.Bool + @objc deinit +} +public class HLSConfig { + public var layout: VideoSDKRTC.ConfigLayout + public var theme: VideoSDKRTC.ConfigTheme + public var mode: VideoSDKRTC.ConfigMode + public var quality: VideoSDKRTC.ConfigQuality + public var orientation: VideoSDKRTC.ConfigOrientation + public init(layout: VideoSDKRTC.ConfigLayout, theme: VideoSDKRTC.ConfigTheme, mode: VideoSDKRTC.ConfigMode, quality: VideoSDKRTC.ConfigQuality, orientation: VideoSDKRTC.ConfigOrientation) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public class RecordingConfig { + public var layout: VideoSDKRTC.ConfigLayout + public var theme: VideoSDKRTC.ConfigTheme + public var mode: VideoSDKRTC.ConfigMode + public var quality: VideoSDKRTC.ConfigQuality + public var orientation: VideoSDKRTC.ConfigOrientation + public init(layout: VideoSDKRTC.ConfigLayout, theme: VideoSDKRTC.ConfigTheme, mode: VideoSDKRTC.ConfigMode, quality: VideoSDKRTC.ConfigQuality, orientation: VideoSDKRTC.ConfigOrientation) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public class HLSUrl { + public var downstreamUrl: Swift.String + public var playbackHlsUrl: Swift.String + public var livestreamUrl: Swift.String + public init(downstreamUrl: Swift.String? = nil, playbackHlsUrl: Swift.String? = nil, livestreamUrl: Swift.String? = nil) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public class ConfigLayout { + public var type: VideoSDKRTC.ConfigLayoutGrid + public var priority: VideoSDKRTC.ConfigLayoutPriority + public var gridSize: Swift.Int + public init(type: VideoSDKRTC.ConfigLayoutGrid, priority: VideoSDKRTC.ConfigLayoutPriority, gridSize: Swift.Int) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public enum ConfigLayoutPriority : Swift.String { + case SPEAKER, PIN + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigLayoutGrid : Swift.String { + case GRID, SPOTLIGHT, SIDEBAR + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigTheme : Swift.String { + case DEFAULT, LIGHT, DARK + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigMode : Swift.String { + case video_and_audio, audio + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigQuality : Swift.String { + case high, med, low + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigOrientation : Swift.String { + case landscape, portrait + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public protocol IdGenerator { + func generateSpanId() -> VideoSDKRTC.SpanId + func generateTraceId() -> VideoSDKRTC.TraceId +} +@_hasMissingDesignatedInitializers public class InMemoryLogRecordExporter : VideoSDKRTC.LogRecordExporter { + public func getFinishedLogRecords() -> [VideoSDKRTC.ReadableLogRecord] + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func shutdown() + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public protocol Instrument : Swift.Equatable { + var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor { get } +} +extension VideoSDKRTC.Instrument { + public static func == (lhs: Self, rhs: Self) -> Swift.Bool +} +public struct InstrumentationScopeInfo : Swift.Hashable, Swift.Codable, Swift.Equatable { + public var name: Swift.String { + get + } + public var version: Swift.String? { + get + } + public var schemaUrl: Swift.String? { + get + } + public init() + public init(name: Swift.String, version: Swift.String? = nil, schemaUrl: Swift.String? = nil) + public func hash(into hasher: inout Swift.Hasher) + public static func == (a: VideoSDKRTC.InstrumentationScopeInfo, b: VideoSDKRTC.InstrumentationScopeInfo) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public struct InstrumentDescriptor : Swift.Equatable { + public let name: Swift.String + public let description: Swift.String + public let unit: Swift.String + public let type: VideoSDKRTC.InstrumentType + public let valueType: VideoSDKRTC.InstrumentValueType + public init(name: Swift.String, description: Swift.String, unit: Swift.String, type: VideoSDKRTC.InstrumentType, valueType: VideoSDKRTC.InstrumentValueType) + public static func == (lhs: VideoSDKRTC.InstrumentDescriptor, rhs: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class InstrumentSelector { + public static func builder() -> VideoSDKRTC.InstrumentSelectorBuilder + @objc deinit +} +public class InstrumentSelectorBuilder { + public init() + public func setInstrument(type: VideoSDKRTC.InstrumentType) -> Self + public func setInstrument(name: Swift.String) -> Self + public func setMeter(name: Swift.String) -> Self + public func setMeter(version: Swift.String) -> Self + public func setMeter(schemaUrl: Swift.String) -> Self + public func build() -> VideoSDKRTC.InstrumentSelector + @objc deinit +} +public enum InstrumentType : Swift.CaseIterable { + case counter + case upDownCounter + case histogram + case observableCounter + case observableUpDownCounter + case observableGauge + public static func == (a: VideoSDKRTC.InstrumentType, b: VideoSDKRTC.InstrumentType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public typealias AllCases = [VideoSDKRTC.InstrumentType] + public static var allCases: [VideoSDKRTC.InstrumentType] { + get + } + public var hashValue: Swift.Int { + get + } +} +public enum InstrumentValueType { + case long + case double + public static func == (a: VideoSDKRTC.InstrumentValueType, b: VideoSDKRTC.InstrumentValueType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public enum Internal { + public static let emptyData: Foundation.Data + public static func areAllInitialized(_ listOfMessages: [any VideoSDKRTC.Message]) -> Swift.Bool + public static func areAllInitialized(_ mapToMessages: [K : any VideoSDKRTC.Message]) -> Swift.Bool where K : Swift.Hashable +} +public protocol IntObserverMetric { + func observe(value: Swift.Int, labelset: VideoSDKRTC.LabelSet) + func observe(value: Swift.Int, labels: [Swift.String : Swift.String]) +} +public struct NoopIntObserverMetric : VideoSDKRTC.IntObserverMetric { + public init() + public func observe(value: Swift.Int, labelset: VideoSDKRTC.LabelSet) + public func observe(value: Swift.Int, labels: [Swift.String : Swift.String]) +} +extension Foundation.Data { + public func toJSONString() -> Swift.String + public func toJSON() -> [Swift.String : Any] + public func toJSONArray() -> [Any] +} +extension Swift.String { + public func toJSON() -> [Swift.String : Any] +} +extension Swift.Dictionary { + public func toJSONString() -> Swift.String +} +extension Swift.Array { + public func toJSONString() -> Swift.String +} +extension Swift.Encodable { + public func toJSON() -> [Swift.String : Any] + public func toJSONArray() -> [Any] +} +public enum JSONDecodingError : Swift.Error { + case failure + case malformedNumber + case numberRange + case malformedMap + case malformedBool + case malformedString + case invalidUTF8 + case missingFieldNames + case schemaMismatch + case unrecognizedEnumValue + case illegalNull + case unquotedMapKey + case leadingZero + case truncated + case malformedDuration + case malformedTimestamp + case malformedFieldMask + case trailingGarbage + case conflictingOneOf + case messageDepthLimit + case unknownField(Swift.String) +} +public struct JSONDecodingOptions : Swift.Sendable { + public var messageDepthLimit: Swift.Int + public var ignoreUnknownFields: Swift.Bool + public init() +} +public enum JSONEncodingError : Swift.Error { + case anyTranscodeFailure + case timestampRange + case durationRange + case fieldMaskConversion + case missingFieldNames + case missingValue + case valueNumberNotFinite + public static func == (a: VideoSDKRTC.JSONEncodingError, b: VideoSDKRTC.JSONEncodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct JSONEncodingOptions : Swift.Sendable { + public var alwaysPrintInt64sAsNumbers: Swift.Bool + public var alwaysPrintEnumsAsInts: Swift.Bool + public var preserveProtoFieldNames: Swift.Bool + public init() +} +@_hasMissingDesignatedInitializers open class LabelSet : Swift.Hashable { + public var labels: [Swift.String : Swift.String] { + get + } + public static var empty: VideoSDKRTC.LabelSet + required public init(labels: [Swift.String : Swift.String]) + public static func == (lhs: VideoSDKRTC.LabelSet, rhs: VideoSDKRTC.LabelSet) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + @objc deinit + open var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class LastValueAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.LastValueAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class LastValueAggregator : VideoSDKRTC.Aggregator where T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public struct LivestreamOutput : Swift.Codable { + public let url: Swift.String + public let streamKey: Swift.String + public init(url: Swift.String, streamKey: Swift.String) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public protocol Logger { + func eventBuilder(name: Swift.String) -> any VideoSDKRTC.EventBuilder + func logRecordBuilder() -> any VideoSDKRTC.LogRecordBuilder +} +public protocol LoggerBuilder { + func setEventDomain(_ eventDomain: Swift.String) -> Self + func setSchemaUrl(_ schemaUrl: Swift.String) -> Self + func setInstrumentationVersion(_ instrumentationVersion: Swift.String) -> Self + func setIncludeTraceContext(_ includeTraceContext: Swift.Bool) -> Self + func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + func build() -> any VideoSDKRTC.Logger +} +@_hasMissingDesignatedInitializers public class LoggerBuilderSdk : VideoSDKRTC.LoggerBuilder { + public func setEventDomain(_ eventDomain: Swift.String) -> Self + public func setSchemaUrl(_ schemaUrl: Swift.String) -> Self + public func setInstrumentationVersion(_ instrumentationVersion: Swift.String) -> Self + public func setIncludeTraceContext(_ includeTraceContext: Swift.Bool) -> Self + public func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + public func build() -> any VideoSDKRTC.Logger + @objc deinit +} +public protocol LoggerProvider : AnyObject { + func get(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.Logger + func loggerBuilder(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.LoggerBuilder +} +public class LoggerProviderBuilder { + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var logLimits: VideoSDKRTC.LogLimits { + get + } + public var logProcessors: [any VideoSDKRTC.LogRecordProcessor] { + get + } + public init() + public func with(clock: any VideoSDKRTC.Clock) -> Self + public func with(resource: VideoSDKRTC.Resource) -> Self + public func with(logLimits: VideoSDKRTC.LogLimits) -> Self + public func with(processors: [any VideoSDKRTC.LogRecordProcessor]) -> Self + public func build() -> VideoSDKRTC.LoggerProviderSdk + @objc deinit +} +public class LoggerProviderSdk : VideoSDKRTC.LoggerProvider { + public init(clock: any VideoSDKRTC.Clock = MillisClock(), resource: VideoSDKRTC.Resource = EnvVarResource.get(), logLimits: VideoSDKRTC.LogLimits = LogLimits(), logRecordProcessors: [any VideoSDKRTC.LogRecordProcessor] = []) + public func get(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.Logger + public func loggerBuilder(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.LoggerBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class LoggerSdk : VideoSDKRTC.Logger { + public func eventBuilder(name: Swift.String) -> any VideoSDKRTC.EventBuilder + public func logRecordBuilder() -> any VideoSDKRTC.LogRecordBuilder + @objc deinit +} +public struct LogLimits { + public static let defaultMaxAttributeCount: Swift.Int + public static let defaultMaxAtributeLength: Swift.Int + public let maxAttributeCount: Swift.Int + public let maxAttributeLength: Swift.Int + public init(maxAttributeCount: Swift.Int = Self.defaultMaxAttributeCount, maxAttributeLength: Swift.Int = Self.defaultMaxAtributeLength) +} +@_hasMissingDesignatedInitializers public class LogRecordAdapter { + public static func toProtoResourceRecordLog(logRecordList: [VideoSDKRTC.ReadableLogRecord]) -> [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs] + @objc deinit +} +public protocol LogRecordBuilder { + func setTimestamp(_ timestamp: Foundation.Date) -> Self + func setObservedTimestamp(_ observed: Foundation.Date) -> Self + func setSpanContext(_ context: VideoSDKRTC.SpanContext) -> Self + func setSeverity(_ severity: VideoSDKRTC.Severity) -> Self + func setBody(_ body: Swift.String) -> Self + func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + func emit() +} +@_hasMissingDesignatedInitializers public class LogRecordBuilderSdk : VideoSDKRTC.EventBuilder { + public func setTimestamp(_ timestamp: Foundation.Date) -> Self + public func setObservedTimestamp(_ observed: Foundation.Date) -> Self + public func setSpanContext(_ context: VideoSDKRTC.SpanContext) -> Self + public func setSeverity(_ severity: VideoSDKRTC.Severity) -> Self + public func setBody(_ body: Swift.String) -> Self + public func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + public func setData(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + public func emit() + @objc deinit +} +public protocol LogRecordExporter { + func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + func shutdown() + func forceFlush() -> VideoSDKRTC.ExportResult +} +public protocol LogRecordProcessor { + func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + func forceFlush() -> VideoSDKRTC.ExportResult + func shutdown() -> VideoSDKRTC.ExportResult +} +public enum Opentelemetry_Proto_Logs_V1_SeverityNumber : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unspecified + case trace + case trace2 + case trace3 + case trace4 + case debug + case debug2 + case debug3 + case debug4 + case info + case info2 + case info3 + case info4 + case warn + case warn2 + case warn3 + case warn4 + case error + case error2 + case error3 + case error4 + case fatal + case fatal2 + case fatal3 + case fatal4 + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber] +} +public enum Opentelemetry_Proto_Logs_V1_LogRecordFlags : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case doNotUse + case traceFlagsMask + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags] +} +public struct Opentelemetry_Proto_Logs_V1_LogsData { + public var resourceLogs: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Logs_V1_ResourceLogs { + public var resource: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource { + get + set + } + public var hasResource: Swift.Bool { + get + } + public mutating func clearResource() + public var scopeLogs: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Logs_V1_ScopeLogs { + public var scope: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope { + get + set + } + public var hasScope: Swift.Bool { + get + } + public mutating func clearScope() + public var logRecords: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Logs_V1_LogRecord { + public var timeUnixNano: Swift.UInt64 + public var observedTimeUnixNano: Swift.UInt64 + public var severityNumber: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber + public var severityText: Swift.String + public var body: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue { + get + set + } + public var hasBody: Swift.Bool { + get + } + public mutating func clearBody() + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var flags: Swift.UInt32 + public var traceID: Foundation.Data + public var spanID: Foundation.Data + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest { + public var resourceLogs: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse { + public var partialSuccess: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess { + get + set + } + public var hasPartialSuccess: Swift.Bool { + get + } + public mutating func clearPartialSuccess() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess { + public var rejectedLogRecords: Swift.Int64 + public var errorMessage: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol LongCounter { + mutating func add(value: Swift.Int) + mutating func add(value: Swift.Int, attribute: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongCounterBuilder : AnyObject { + func ofDoubles() -> any VideoSDKRTC.DoubleCounterBuilder + func build() -> any VideoSDKRTC.LongCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongCounter +} +@_hasMissingDesignatedInitializers public class LongCounterMeterBuilderSdk : VideoSDKRTC.LongCounterBuilder { + public func ofDoubles() -> any VideoSDKRTC.DoubleCounterBuilder + public func build() -> any VideoSDKRTC.LongCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongCounter + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongCounterSdk : VideoSDKRTC.LongCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public func add(value: Swift.Int) + public func add(value: Swift.Int, attribute: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public struct DoubleCounterSdk : VideoSDKRTC.DoubleCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public mutating func add(value: Swift.Double) + public mutating func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongGaugeBuilder : AnyObject { + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongGauge +} +@_hasMissingDesignatedInitializers public class LongGaugeBuilderSdk : VideoSDKRTC.LongGaugeBuilder { + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongGauge + @objc deinit +} +public protocol LongHistogram { + mutating func record(value: Swift.Int) + mutating func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongHistogramBuilder : AnyObject { + func build() -> any VideoSDKRTC.LongHistogram +} +@_hasMissingDesignatedInitializers public class LongHistogramMeterBuilderSdk : VideoSDKRTC.LongHistogramBuilder { + public func build() -> any VideoSDKRTC.LongHistogram + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongHistogramMeterSdk : VideoSDKRTC.LongHistogram, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public func record(value: Swift.Int) + public func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongLastValueAggregator : VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongPointData : VideoSDKRTC.PointData { + public var value: Swift.Int + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongSumAggregator : VideoSDKRTC.SumAggregator, VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol LongUpDownCounter { + mutating func add(value: Swift.Int) + mutating func add(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongUpDownCounterBuilder : AnyObject { + func ofDoubles() -> any VideoSDKRTC.DoubleUpDownCounterBuilder + func build() -> any VideoSDKRTC.LongUpDownCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongUpDownCounter +} +@_hasMissingDesignatedInitializers public class LongUpDownCounterBuilderSdk : VideoSDKRTC.LongUpDownCounterBuilder { + public func ofDoubles() -> any VideoSDKRTC.DoubleUpDownCounterBuilder + public func build() -> any VideoSDKRTC.LongUpDownCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongUpDownCounter + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongUpDownCounterSdk : VideoSDKRTC.LongUpDownCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor { + get + } + public func add(value: Swift.Int) + public func add(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class MaxValueAggregator : VideoSDKRTC.Aggregator where T : Swift.Comparable, T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public struct Measurement { + public var startEpochNano: Swift.UInt64 { + get + } + public var epochNano: Swift.UInt64 { + get + } + public var hasLongValue: Swift.Bool { + get + } + public var longValue: Swift.Int { + get + } + public var doubleValue: Swift.Double { + get + } + public var hasDoubleValue: Swift.Bool { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public static func longMeasurement(startEpochNano: Swift.UInt64, endEpochNano: Swift.UInt64, value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.Measurement + public static func doubleMeasurement(startEpochNano: Swift.UInt64, endEpochNano: Swift.UInt64, value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.Measurement +} +public protocol MeasureMetric { + associatedtype T + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundMeasureMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundMeasureMetric +} +extension VideoSDKRTC.MeasureMetric { + public func record(value: Self.T, labelset: VideoSDKRTC.LabelSet) + public func record(value: Self.T, labels: [Swift.String : Swift.String]) +} +public struct AnyMeasureMetric : VideoSDKRTC.MeasureMetric { + public init(_ measurable: U) where T == U.T, U : VideoSDKRTC.MeasureMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundMeasureMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundMeasureMetric +} +public struct NoopMeasureMetric : VideoSDKRTC.MeasureMetric { + public init() + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundMeasureMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundMeasureMetric +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class MeasureMinMaxSumCountAggregator : VideoSDKRTC.Aggregator where T : Swift.Comparable, T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public enum authorisationStatus { + case notDetermined + case authorised + case denied + case restricted + public static func == (a: VideoSDKRTC.authorisationStatus, b: VideoSDKRTC.authorisationStatus) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public protocol AuthorisationDelegate : AnyObject { + func handlePermission() +} +@_hasMissingDesignatedInitializers public class MediaStream : Swift.Equatable { + public var id: Swift.String { + get + } + public var kind: VideoSDKRTC.MediaType { + get + } + public var track: WebRTC.RTCMediaStreamTrack { + get + } + public var producer: Mediasoup.Producer? { + get + } + public var consumer: Mediasoup.Consumer? { + get + } + @objc deinit +} +extension VideoSDKRTC.MediaStream { + public func pause() + public func resume() +} +extension VideoSDKRTC.MediaStream { + public static func == (lhs: VideoSDKRTC.MediaStream, rhs: VideoSDKRTC.MediaStream) -> Swift.Bool +} +public enum MediaType : Swift.Equatable { + case share + case state(value: Mediasoup.MediaKind) + public static func == (a: VideoSDKRTC.MediaType, b: VideoSDKRTC.MediaType) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class Meeting : Swift.Equatable { + public var id: Swift.String { + get + } + public var localParticipant: VideoSDKRTC.Participant { + get + } + public var participants: [Swift.String : VideoSDKRTC.Participant] { + get + } + public var pinnedParticipants: [Swift.String : VideoSDKRTC.ParticipantPinState] { + get + } + public var hlsUrls: VideoSDKRTC.HLSUrl? + public var hlsState: VideoSDKRTC.HLSState + public var liveStreamState: VideoSDKRTC.LiveStreamState + public var recordingState: VideoSDKRTC.RecordingState + public var pubsub: VideoSDKRTC.PubSub { + get + } + public var customVideoMediaStream: VideoSDKRTC.CustomRTCMediaStream? { + get + } + public var meetingMode: VideoSDKRTC.Mode? { + get + } + @objc deinit +} +extension VideoSDKRTC.Meeting { + public func join(cameraPosition: AVFoundation.AVCaptureDevice.Position) + public func leave() + public func end() + public func enableWebcam(customVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil) + public func disableWebcam() + public func switchWebcam() + public func muteMic() + public func unmuteMic() + public func startRecording(webhookUrl: Swift.String, awsDirPath: Swift.String? = nil, config: VideoSDKRTC.RecordingConfig? = nil) + public func stopRecording() + public func startLivestream(outputs: [VideoSDKRTC.LivestreamOutput]) + public func stopLivestream() + public func startHLS(config: VideoSDKRTC.HLSConfig? = nil) + public func stopHLS() + public func changeMode(_ mode: VideoSDKRTC.Mode) + #if compiler(>=5.3) && $AsyncAwait + @available(iOS 13.0.0, *) + public func enableScreenShare() async + #endif + #if compiler(>=5.3) && $AsyncAwait + @available(iOS 13.0.0, *) + public func disableScreenShare() async + #endif + public func changeMic(selectedDevice: Swift.String) + public func getMics() -> [(deviceName: Swift.String, deviceType: Swift.String)] + public func removeOberver() +} +extension VideoSDKRTC.Meeting { + public func addEventListener(_ meetingEventListener: any VideoSDKRTC.MeetingEventListener) + public func removeEventListener(_ meetingEventListener: any VideoSDKRTC.MeetingEventListener) +} +extension VideoSDKRTC.Meeting { + public static func == (lhs: VideoSDKRTC.Meeting, rhs: VideoSDKRTC.Meeting) -> Swift.Bool +} +public protocol MeetingEventListener : AnyObject { + func onMeetingJoined() + func onMeetingLeft() + func onParticipantJoined(_ participant: VideoSDKRTC.Participant) + func onParticipantLeft(_ participant: VideoSDKRTC.Participant) + func onRecordingStarted() + func onRecordingStoppped() + func onLivestreamStarted() + func onLivestreamStopped() + func onSpeakerChanged(participantId: Swift.String?) + func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + func onSocketError(message: Swift.String) + func onMeetingStateChanged(meetingState: VideoSDKRTC.MeetingState) + func onError(error: VideoSDKRTC.VideoSDKError) + func onHlsStateChanged(state: VideoSDKRTC.HLSState, hlsUrl: VideoSDKRTC.HLSUrl?) + func onLivestreamStateChanged(state: VideoSDKRTC.LiveStreamState) + func onRecordingStateChanged(state: VideoSDKRTC.RecordingState) + func onPinStateChanged(participantId: Swift.String, pinType: VideoSDKRTC.PinType) + func onParticipantModeChanged(participantId: Swift.String, mode: VideoSDKRTC.Mode) + func onMicChanged(selectedDevice: Swift.String) +} +extension VideoSDKRTC.MeetingEventListener { + public func onMeetingJoined() + public func onMeetingLeft() + public func onParticipantJoined(_ participant: VideoSDKRTC.Participant) + public func onParticipantLeft(_ participant: VideoSDKRTC.Participant) + public func onRecordingStarted() + public func onRecordingStoppped() + public func onLivestreamStarted() + public func onLivestreamStopped() + public func onSpeakerChanged(participantId: Swift.String?) + public func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + public func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + public func onSocketError(message: Swift.String) + public func onMeetingStateChanged(meetingState: VideoSDKRTC.MeetingState) + public func onError(error: VideoSDKRTC.VideoSDKError) + public func onHlsStateChanged(state: VideoSDKRTC.HLSState, hlsUrl: VideoSDKRTC.HLSUrl?) + public func onLivestreamStateChanged(state: VideoSDKRTC.LiveStreamState) + public func onRecordingStateChanged(state: VideoSDKRTC.RecordingState) + public func onPinStateChanged(participantId: Swift.String, pinType: VideoSDKRTC.PinType) + public func onParticipantModeChanged(participantId: Swift.String, mode: VideoSDKRTC.Mode) + public func onMicChanged(selectedDevice: Swift.String) +} +public enum MeetingState : Swift.String { + case CONNECTING, CONNECTED, CLOSING, CLOSED, CANCELLED + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum Mode : Swift.String { + case CONFERENCE, VIEWER + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum VideoSDKError : Swift.Int { + case UNKNOWN_ERROR + case INVALID_API_KEY + case INVALID_TOKEN + case INVALID_MEETING_ID + case INVALID_PARTICIPANT_ID + case DUPLICATE_PARTICIPANT + case ACCOUNT_DEACTIVATED + case ACCOUNT_DISCONTINUED + case INVALID_PERMISSIONS + case MAX_PARTCIPANT_REACHED + case MAX_SPEAKER_REACHED + case START_RECORDING_FAILED + case STOP_RECORDING_FAILED + case START_LIVESTREAM_FAILED + case STOP_LIVESTREAM_FAILED + case INVALID_LIVESTREAM_CONFIG + case START_HLS_FAILED + case STOP_HLS_FAILED + case RECORDING_FAILED + case LIVESTREAM_FAILED + case HLS_FAILED + case ERROR_GET_VIDEO_MEDIA + case ERROR_GET_AUDIO_MEDIA + case ERROR_GET_DISPLAY_MEDIA + case ERROR_GET_VIDEO_MEDIA_PERMISSION_DENIED + case ERROR_GET_AUDIO_MEDIA_PERMISSION_DENIED + case ERROR_GET_DISPLAY_MEDIA_PERMISSION_DENIED + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public enum HLSState : Swift.String { + case HLS_STARTED, HLS_STARTING, HLS_STOPPED, HLS_STOPPING, HLS_PLAYABLE + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum RecordingState : Swift.String { + case RECORDING_STARTED, RECORDING_STARTING, RECORDING_STOPPED, RECORDING_STOPPING + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum LiveStreamState : Swift.String { + case LIVESTREAM_STARTED, LIVESTREAM_STARTING, LIVESTREAM_STOPPED, LIVESTREAM_STOPPING + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public protocol Message : VideoSDKRTC._MessageBase { + init() + static var protoMessageName: Swift.String { get } + var isInitialized: Swift.Bool { get } + var unknownFields: VideoSDKRTC.UnknownStorage { get set } + mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + func hash(into hasher: inout Swift.Hasher) + func isEqualTo(message: any VideoSDKRTC.Message) -> Swift.Bool +} +public protocol _MessageBase : Swift.Sendable { +} +extension VideoSDKRTC.Message { + public var isInitialized: Swift.Bool { + get + } + public func hash(into hasher: inout Swift.Hasher) + public static func with(_ populator: (inout Self) throws -> ()) rethrows -> Self +} +public protocol _MessageImplementationBase : Swift.Hashable, VideoSDKRTC.Message { + func _protobuf_generated_isEqualTo(other: Self) -> Swift.Bool +} +extension VideoSDKRTC._MessageImplementationBase { + public func isEqualTo(message: any VideoSDKRTC.Message) -> Swift.Bool + public static func == (lhs: Self, rhs: Self) -> Swift.Bool + public func _protobuf_generated_isEqualTo(other: Self) -> Swift.Bool +} +extension VideoSDKRTC.Message { + public init(unpackingAny: VideoSDKRTC.Google_Protobuf_Any, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws +} +extension VideoSDKRTC.Message { + public func serializedBytes(partial: Swift.Bool = false) throws -> Bytes where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + @inlinable public init(serializedBytes bytes: Bytes, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes { + self.init() + try merge(serializedBytes: bytes, extensions: extensions, partial: partial, options: options) + } + @inlinable public mutating func merge(serializedBytes bytes: Bytes, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes { + try bytes.withUnsafeBytes { (body: UnsafeRawBufferPointer) in + try _merge(rawBuffer: body, extensions: extensions, partial: partial, options: options) + } + } + @usableFromInline + internal mutating func _merge(rawBuffer body: Swift.UnsafeRawBufferPointer, extensions: (any VideoSDKRTC.ExtensionMap)?, partial: Swift.Bool, options: VideoSDKRTC.BinaryDecodingOptions) throws +} +extension VideoSDKRTC.Message { + @inlinable public init(serializedData data: Foundation.Data, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws { + self.init() + try merge(serializedBytes: data, extensions: extensions, partial: partial, options: options) + } + @inlinable public mutating func merge(serializedData data: Foundation.Data, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws { + try merge(serializedBytes: data, extensions: extensions, partial: partial, options: options) + } + public func serializedData(partial: Swift.Bool = false) throws -> Foundation.Data +} +extension VideoSDKRTC.Message { + public func jsonString(options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Swift.String + public func jsonUTF8Bytes(options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Bytes where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public init(jsonString: Swift.String, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public init(jsonString: Swift.String, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public init(jsonUTF8Bytes: Bytes, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public init(jsonUTF8Bytes: Bytes, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes +} +extension VideoSDKRTC.Message { + public init(jsonUTF8Data: Foundation.Data, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public init(jsonUTF8Data: Foundation.Data, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public func jsonUTF8Data(options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Foundation.Data +} +extension VideoSDKRTC.Message { + public static func jsonString(from collection: C, options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Swift.String where Self == C.Element, C : Swift.Collection + public static func jsonUTF8Bytes(from collection: C, options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Bytes where Self == C.Element, C : Swift.Collection, Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public static func array(fromJSONString jsonString: Swift.String, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func array(fromJSONString jsonString: Swift.String, extensions: any VideoSDKRTC.ExtensionMap = SimpleExtensionMap(), options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func array(fromJSONUTF8Bytes jsonUTF8Bytes: Bytes, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public static func array(fromJSONUTF8Bytes jsonUTF8Bytes: Bytes, extensions: any VideoSDKRTC.ExtensionMap = SimpleExtensionMap(), options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes +} +extension VideoSDKRTC.Message { + public static func array(fromJSONUTF8Data jsonUTF8Data: Foundation.Data, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func array(fromJSONUTF8Data jsonUTF8Data: Foundation.Data, extensions: any VideoSDKRTC.ExtensionMap = SimpleExtensionMap(), options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func jsonUTF8Data(from collection: C, options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Foundation.Data where Self == C.Element, C : Swift.Collection +} +extension VideoSDKRTC.Message { + public func textFormatString() -> Swift.String + public func textFormatString(options: VideoSDKRTC.TextFormatEncodingOptions) -> Swift.String + public init(textFormatString: Swift.String, options: VideoSDKRTC.TextFormatDecodingOptions = TextFormatDecodingOptions(), extensions: (any VideoSDKRTC.ExtensionMap)? = nil) throws +} +public protocol AnyMessageExtension : Swift.Sendable { + var fieldNumber: Swift.Int { get } + var fieldName: Swift.String { get } + var messageType: any VideoSDKRTC.Message.Type { get } + func _protobuf_newField(decoder: inout D) throws -> (any VideoSDKRTC.AnyExtensionField)? where D : VideoSDKRTC.SPBDecoder +} +final public class MessageExtension : VideoSDKRTC.AnyMessageExtension where FieldType : VideoSDKRTC.ExtensionField, MessageType : VideoSDKRTC.Message { + final public let fieldNumber: Swift.Int + final public let fieldName: Swift.String + final public let messageType: any VideoSDKRTC.Message.Type + public init(_protobuf_fieldNumber: Swift.Int, fieldName: Swift.String) + final public func _protobuf_newField(decoder: inout D) throws -> (any VideoSDKRTC.AnyExtensionField)? where D : VideoSDKRTC.SPBDecoder + @objc deinit +} +public protocol Meter { + func createIntCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + func createDoubleCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + func createIntMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + func createDoubleMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + func createIntHistogram(name: Swift.String, explicitBoundaries: Swift.Array?, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + func createDoubleHistogram(name: Swift.String, explicitBoundaries: Swift.Array?, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + func createRawDoubleHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + func createRawIntHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + func createRawDoubleCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + func createRawIntCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + func createIntObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + func createDoubleObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric + func createIntObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + func createDoubleObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric + func getLabelSet(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.LabelSet +} +extension VideoSDKRTC.Meter { + public func createIntCounter(name: Swift.String) -> VideoSDKRTC.AnyCounterMetric + public func createDoubleCounter(name: Swift.String) -> VideoSDKRTC.AnyCounterMetric + public func createIntMeasure(name: Swift.String) -> VideoSDKRTC.AnyMeasureMetric + public func createDoubleMeasure(name: Swift.String) -> VideoSDKRTC.AnyMeasureMetric + public func createIntObserver(name: Swift.String, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + public func createDoubleObserver(name: Swift.String, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric +} +public protocol MeterBuilder : AnyObject { + func setSchemaUrl(schemaUrl: Swift.String) -> Self + func setInstrumentationVersion(instrumentationVersion: Swift.String) -> Self + func build() -> any VideoSDKRTC.StableMeter +} +@_hasMissingDesignatedInitializers public class MeterBuilderSdk : VideoSDKRTC.MeterBuilder { + public func setSchemaUrl(schemaUrl: Swift.String) -> Self + public func setInstrumentationVersion(instrumentationVersion: Swift.String) -> Self + public func build() -> any VideoSDKRTC.StableMeter + @objc deinit +} +public protocol MeterProvider : AnyObject { + func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String?) -> any VideoSDKRTC.Meter +} +public class MeterProviderBuilder { + public var resource: VideoSDKRTC.Resource { + get + } + public var metricExporter: any VideoSDKRTC.MetricExporter { + get + } + public var metricPushInterval: Foundation.TimeInterval { + get + } + public var metricProcessor: any VideoSDKRTC.MetricProcessor { + get + } + public init() + public func with(processor: any VideoSDKRTC.MetricProcessor) -> Self + public func with(exporter: any VideoSDKRTC.MetricExporter) -> Self + public func with(pushInterval: Foundation.TimeInterval) -> Self + public func with(resource: VideoSDKRTC.Resource) -> Self + public func build() -> any VideoSDKRTC.MeterProvider + @objc deinit +} +public class MeterProviderSdk : VideoSDKRTC.MeterProvider { + public static let defaultPushInterval: Swift.Double + convenience public init() + public init(metricProcessor: any VideoSDKRTC.MetricProcessor, metricExporter: any VideoSDKRTC.MetricExporter, metricPushInterval: Foundation.TimeInterval = MeterProviderSdk.defaultPushInterval, resource: VideoSDKRTC.Resource = EnvVarResource.get()) + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Meter + public func setMetricProcessor(_ metricProcessor: any VideoSDKRTC.MetricProcessor) + public func addMetricExporter(_ metricExporter: any VideoSDKRTC.MetricExporter) + public func setMetricPushInterval(_ interval: Foundation.TimeInterval) + public func setResource(_ resource: VideoSDKRTC.Resource) + @objc deinit +} +extension VideoSDKRTC.Meter { + public func addMetric(name _: Swift.String, type _: VideoSDKRTC.AggregationType, data _: [any VideoSDKRTC.MetricData]) +} +public struct Metric { + public var namespace: Swift.String { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var name: Swift.String { + get + } + public var description: Swift.String { + get + } + public var aggregationType: VideoSDKRTC.AggregationType { + get + } + public var data: [any VideoSDKRTC.MetricData] { + get + } +} +extension VideoSDKRTC.Metric : Swift.Equatable { + public static func == (lhs: VideoSDKRTC.Metric, rhs: VideoSDKRTC.Metric) -> Swift.Bool +} +extension VideoSDKRTC.Metric : Swift.Codable { + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public protocol MetricData { + var startTimestamp: Foundation.Date { get set } + var timestamp: Foundation.Date { get set } + var labels: [Swift.String : Swift.String] { get set } +} +public struct NoopMetricData : VideoSDKRTC.MetricData { + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] +} +public struct SumData : VideoSDKRTC.MetricData { + public init(startTimestamp: Foundation.Date, timestamp: Foundation.Date, labels: [Swift.String : Swift.String] = [String: String](), sum: T) + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] + public var sum: T +} +public struct SummaryData : VideoSDKRTC.MetricData { + public init(startTimestamp: Foundation.Date, timestamp: Foundation.Date, labels: [Swift.String : Swift.String] = [String: String](), count: Swift.Int, sum: T, min: T, max: T) + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] + public var count: Swift.Int + public var sum: T + public var min: T + public var max: T +} +public struct HistogramData : VideoSDKRTC.MetricData { + public init(startTimestamp: Foundation.Date, timestamp: Foundation.Date, labels: [Swift.String : Swift.String] = [String: String](), buckets: (boundaries: Swift.Array, counts: Swift.Array), count: Swift.Int, sum: T) + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] + public var buckets: (boundaries: Swift.Array, counts: Swift.Array) + public var count: Swift.Int + public var sum: T +} +extension VideoSDKRTC.NoopMetricData : Swift.Equatable, Swift.Codable { + public static func == (a: VideoSDKRTC.NoopMetricData, b: VideoSDKRTC.NoopMetricData) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.SumData : Swift.Equatable where T : Swift.Equatable { + public static func == (a: VideoSDKRTC.SumData, b: VideoSDKRTC.SumData) -> Swift.Bool +} +extension VideoSDKRTC.SumData : Swift.Codable where T : Swift.Decodable, T : Swift.Encodable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.SummaryData : Swift.Equatable where T : Swift.Equatable { + public static func == (a: VideoSDKRTC.SummaryData, b: VideoSDKRTC.SummaryData) -> Swift.Bool +} +extension VideoSDKRTC.SummaryData : Swift.Codable where T : Swift.Decodable, T : Swift.Encodable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.HistogramData : Swift.Equatable where T : Swift.Equatable { + public static func == (lhs: VideoSDKRTC.HistogramData, rhs: VideoSDKRTC.HistogramData) -> Swift.Bool +} +extension VideoSDKRTC.HistogramData : Swift.Codable where T : Swift.Decodable, T : Swift.Encodable { + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public struct MetricDescriptor : Swift.Hashable { + public var name: Swift.String { + get + } + public var description: Swift.String { + get + } + public var view: VideoSDKRTC.StableView { + get + } + public var instrument: VideoSDKRTC.InstrumentDescriptor { + get + } + public func aggregationName() -> Swift.String + public static func == (lhs: VideoSDKRTC.MetricDescriptor, rhs: VideoSDKRTC.MetricDescriptor) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public enum MetricExporterResultCode { + case success + case failureNotRetryable + case failureRetryable + public static func == (a: VideoSDKRTC.MetricExporterResultCode, b: VideoSDKRTC.MetricExporterResultCode) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public protocol MetricExporter { + func export(metrics: [VideoSDKRTC.Metric], shouldCancel: (() -> Swift.Bool)?) -> VideoSDKRTC.MetricExporterResultCode +} +public protocol MetricProcessor { + func finishCollectionCycle() -> [VideoSDKRTC.Metric] + func process(metric: VideoSDKRTC.Metric) +} +public class MetricProcessorSdk : VideoSDKRTC.MetricProcessor { + public init() + public func finishCollectionCycle() -> [VideoSDKRTC.Metric] + public func process(metric: VideoSDKRTC.Metric) + @objc deinit +} +public protocol MetricProducer : VideoSDKRTC.CollectionRegistration { + func collectAllMetrics() -> [VideoSDKRTC.StableMetricData] +} +public struct NoopMetricProducer : VideoSDKRTC.MetricProducer { + public func collectAllMetrics() -> [VideoSDKRTC.StableMetricData] +} +public enum Opentelemetry_Proto_Metrics_V1_AggregationTemporality : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unspecified + case delta + case cumulative + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality] +} +public enum Opentelemetry_Proto_Metrics_V1_DataPointFlags : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case doNotUse + case noRecordedValueMask + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags] +} +public struct Opentelemetry_Proto_Metrics_V1_MetricsData { + public var resourceMetrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ResourceMetrics { + public var resource: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource { + get + set + } + public var hasResource: Swift.Bool { + get + } + public mutating func clearResource() + public var scopeMetrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ScopeMetrics { + public var scope: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope { + get + set + } + public var hasScope: Swift.Bool { + get + } + public mutating func clearScope() + public var metrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Metric { + public var name: Swift.String + public var description_p: Swift.String + public var unit: Swift.String + public var data: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data? + public var gauge: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge { + get + set + } + public var sum: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum { + get + set + } + public var histogram: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram { + get + set + } + public var exponentialHistogram: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram { + get + set + } + public var summary: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Data : Swift.Equatable { + case gauge(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge) + case sum(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum) + case histogram(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram) + case exponentialHistogram(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram) + case summary(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary) + public static func == (a: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data, b: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data) -> Swift.Bool + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Gauge { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Sum { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint] + public var aggregationTemporality: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality + public var isMonotonic: Swift.Bool + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Histogram { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint] + public var aggregationTemporality: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ExponentialHistogram { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint] + public var aggregationTemporality: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Summary { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_NumberDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var value: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value? + public var asDouble: Swift.Double { + get + set + } + public var asInt: Swift.Int64 { + get + set + } + public var exemplars: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar] + public var flags: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Value : Swift.Equatable { + case asDouble(Swift.Double) + case asInt(Swift.Int64) + public static func == (a: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value, b: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value) -> Swift.Bool + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_HistogramDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var count: Swift.UInt64 + public var sum: Swift.Double { + get + set + } + public var hasSum: Swift.Bool { + get + } + public mutating func clearSum() + public var bucketCounts: [Swift.UInt64] + public var explicitBounds: [Swift.Double] + public var exemplars: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar] + public var flags: Swift.UInt32 + public var min: Swift.Double { + get + set + } + public var hasMin: Swift.Bool { + get + } + public mutating func clearMin() + public var max: Swift.Double { + get + set + } + public var hasMax: Swift.Bool { + get + } + public mutating func clearMax() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var count: Swift.UInt64 + public var sum: Swift.Double { + get + set + } + public var hasSum: Swift.Bool { + get + } + public mutating func clearSum() + public var scale: Swift.Int32 + public var zeroCount: Swift.UInt64 + public var positive: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets { + get + set + } + public var hasPositive: Swift.Bool { + get + } + public mutating func clearPositive() + public var negative: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets { + get + set + } + public var hasNegative: Swift.Bool { + get + } + public mutating func clearNegative() + public var flags: Swift.UInt32 + public var exemplars: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar] + public var min: Swift.Double { + get + set + } + public var hasMin: Swift.Bool { + get + } + public mutating func clearMin() + public var max: Swift.Double { + get + set + } + public var hasMax: Swift.Bool { + get + } + public mutating func clearMax() + public var zeroThreshold: Swift.Double + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct Buckets { + public var offset: Swift.Int32 + public var bucketCounts: [Swift.UInt64] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_SummaryDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var count: Swift.UInt64 + public var sum: Swift.Double + public var quantileValues: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile] + public var flags: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct ValueAtQuantile { + public var quantile: Swift.Double + public var value: Swift.Double + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Exemplar { + public var filteredAttributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var timeUnixNano: Swift.UInt64 + public var value: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value? + public var asDouble: Swift.Double { + get + set + } + public var asInt: Swift.Int64 { + get + set + } + public var spanID: Foundation.Data + public var traceID: Foundation.Data + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Value : Swift.Equatable { + case asDouble(Swift.Double) + case asInt(Swift.Int64) + public static func == (a: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value, b: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value) -> Swift.Bool + } + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest { + public var resourceMetrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse { + public var partialSuccess: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess { + get + set + } + public var hasPartialSuccess: Swift.Bool { + get + } + public mutating func clearPartialSuccess() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess { + public var rejectedDataPoints: Swift.Int64 + public var errorMessage: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public enum MetricsAdapter { + public static func toProtoResourceMetrics(stableMetricData: [VideoSDKRTC.StableMetricData]) -> [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public static func toProtoResourceMetrics(metricDataList: [VideoSDKRTC.Metric]) -> [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public static func toProtoMetric(stableMetric: VideoSDKRTC.StableMetricData) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric? + public static func toProtoMetric(metric: VideoSDKRTC.Metric) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric? +} +public struct MetricStorageConstants { +} +public protocol MetricStorage { + var metricDescriptor: VideoSDKRTC.MetricDescriptor { get } + mutating func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + func isEmpty() -> Swift.Bool +} +public protocol WritableMetricStorage { + mutating func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + mutating func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +@_hasMissingDesignatedInitializers public class MetricStorageRegistry { + @objc deinit +} +public class MillisClock : VideoSDKRTC.Clock { + public init() + public var now: Foundation.Date { + get + } + @objc deinit +} +public class MonotonicClock : VideoSDKRTC.Clock { + public init(clock: any VideoSDKRTC.Clock) + public var now: Foundation.Date { + get + } + @objc deinit +} +public class MultiLogRecordExporter : VideoSDKRTC.LogRecordExporter { + public init(logRecordExporters: [any VideoSDKRTC.LogRecordExporter]) + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func shutdown() + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public class MultiLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + public init(logRecordProcessors: [any VideoSDKRTC.LogRecordProcessor]) + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + @objc deinit +} +public class MultiSpanExporter : VideoSDKRTC.SpanExporter { + public init(spanExporters: [any VideoSDKRTC.SpanExporter]) + public func export(spans: [VideoSDKRTC.SpanData]) -> VideoSDKRTC.SpanExporterResultCode + public func flush() -> VideoSDKRTC.SpanExporterResultCode + public func shutdown() + @objc deinit +} +public struct MultiSpanProcessor : VideoSDKRTC.SpanProcessor { + public init(spanProcessors: [any VideoSDKRTC.SpanProcessor]) + public var isStartRequired: Swift.Bool { + get + } + public var isEndRequired: Swift.Bool { + get + } + public func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + public func onEnd(span: any VideoSDKRTC.ReadableSpan) + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) +} +public struct _NameMap : Swift.ExpressibleByDictionaryLiteral { + public enum NameDescription { + case same(proto: Swift.StaticString) + case standard(proto: Swift.StaticString) + case unique(proto: Swift.StaticString, json: Swift.StaticString) + case aliased(proto: Swift.StaticString, aliases: [Swift.StaticString]) + } + public init() + public init(dictionaryLiteral elements: (Swift.Int, VideoSDKRTC._NameMap.NameDescription)...) + public typealias Key = Swift.Int + public typealias Value = VideoSDKRTC._NameMap.NameDescription +} +@_hasMissingDesignatedInitializers public class NoopLogRecordExporter : VideoSDKRTC.LogRecordExporter { + public static let instance: VideoSDKRTC.NoopLogRecordExporter + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func shutdown() + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +@_hasMissingDesignatedInitializers public class NoopLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public static let noopLogRecordProcessor: VideoSDKRTC.NoopLogRecordProcessor + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + @objc deinit +} +public protocol ObservableDoubleCounter { +} +public protocol ObservableDoubleGauge { +} +public protocol ObservableDoubleMeasurement { + func record(value: Swift.Double) + func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol ObservableDoubleUpDownCounter { +} +public struct ObservableInstrumentSdk : VideoSDKRTC.ObservableDoubleCounter, VideoSDKRTC.ObservableLongCounter, VideoSDKRTC.ObservableLongGauge, VideoSDKRTC.ObservableLongUpDownCounter, VideoSDKRTC.ObservableDoubleGauge, VideoSDKRTC.ObservableDoubleUpDownCounter { +} +public protocol ObservableLongCounter { +} +public protocol ObservableLongGauge { +} +public protocol ObservableLongMeasurement { + func record(value: Swift.Int) + func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol ObservableLongUpDownCounter { +} +public func defaultOltpHTTPMetricsEndpoint() -> Foundation.URL +@_inheritsConvenienceInitializers public class OtlpHttpMetricExporter : VideoSDKRTC.OtlpHttpExporterBase, VideoSDKRTC.MetricExporter { + override public init(endpoint: Foundation.URL = defaultOltpHTTPMetricsEndpoint(), useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func export(metrics: [VideoSDKRTC.Metric], shouldCancel: (() -> Swift.Bool)?) -> VideoSDKRTC.MetricExporterResultCode + public func flush() -> VideoSDKRTC.MetricExporterResultCode + @objc deinit +} +public struct OpenTelemetry { + public static var version: Swift.String + public static var instance: VideoSDKRTC.OpenTelemetry + public var tracerProvider: any VideoSDKRTC.TracerProvider { + get + } + public var meterProvider: any VideoSDKRTC.MeterProvider { + get + } + public var stableMeterProvider: (any VideoSDKRTC.StableMeterProvider)? { + get + } + public var loggerProvider: any VideoSDKRTC.LoggerProvider { + get + } + public var baggageManager: any VideoSDKRTC.BaggageManager { + get + } + public var propagators: any VideoSDKRTC.ContextPropagators { + get + } + public var contextProvider: VideoSDKRTC.OpenTelemetryContextProvider { + get + } + public static func registerStableMeterProvider(meterProvider: any VideoSDKRTC.StableMeterProvider) + public static func registerTracerProvider(tracerProvider: any VideoSDKRTC.TracerProvider) + public static func registerMeterProvider(meterProvider: any VideoSDKRTC.MeterProvider) + public static func registerLoggerProvider(loggerProvider: any VideoSDKRTC.LoggerProvider) + public static func registerBaggageManager(baggageManager: any VideoSDKRTC.BaggageManager) + public static func registerPropagators(textPropagators: [any VideoSDKRTC.TextMapPropagator], baggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator) + public static func registerContextManager(contextManager: any VideoSDKRTC.ContextManager) +} +public enum OpenTelemetryContextKeys : Swift.String { + case span + case baggage + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct OpenTelemetryContextProvider { + public var activeSpan: (any VideoSDKRTC.Span)? { + get + } + public var activeBaggage: (any VideoSDKRTC.Baggage)? { + get + } + public func setActiveSpan(_ span: any VideoSDKRTC.Span) + public func setActiveBaggage(_ baggage: any VideoSDKRTC.Baggage) + public func removeContextForSpan(_ span: any VideoSDKRTC.Span) + public func removeContextForBaggage(_ baggage: any VideoSDKRTC.Baggage) +} +public struct OtlpConfiguration { + public static let DefaultTimeoutInterval: Foundation.TimeInterval + public let headers: [(Swift.String, Swift.String)]? + public let timeout: Foundation.TimeInterval + public init(timeout: Foundation.TimeInterval = OtlpConfiguration.DefaultTimeoutInterval, headers: [(Swift.String, Swift.String)]? = nil) +} +public class OtlpHttpExporterBase { + public init(endpoint: Foundation.URL, useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func createRequest(body: any VideoSDKRTC.Message, endpoint: Foundation.URL, authToken: Swift.String) -> Foundation.URLRequest + public func shutdown() + @objc deinit +} +public func defaultOltpHttpLoggingEndpoint() -> Foundation.URL +@_inheritsConvenienceInitializers public class OtlpHttpLogExporter : VideoSDKRTC.OtlpHttpExporterBase, VideoSDKRTC.LogRecordExporter { + override public init(endpoint: Foundation.URL = defaultOltpHttpLoggingEndpoint(), useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func forceFlush() -> VideoSDKRTC.ExportResult + public func flush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public func defaultOltpHttpTracesEndpoint() -> Foundation.URL +@_inheritsConvenienceInitializers public class OtlpHttpTraceExporter : VideoSDKRTC.OtlpHttpExporterBase, VideoSDKRTC.SpanExporter { + override public init(endpoint: Foundation.URL = defaultOltpHttpTracesEndpoint(), useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func export(spans: [VideoSDKRTC.SpanData]) -> VideoSDKRTC.SpanExporterResultCode + public func flush() -> VideoSDKRTC.SpanExporterResultCode + @objc deinit +} +public struct OtlpSpan : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct Attribute : Swift.Codable { + public struct Value : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public enum OTPCConstants { + public enum HTTP { + public static let userAgent: Swift.String + } +} +@_hasMissingDesignatedInitializers public class Participant : Swift.Equatable { + public var id: Swift.String { + get + } + public var displayName: Swift.String { + get + } + public var videoQuality: VideoSDKRTC.VideoQuality { + get + } + public var isLocal: Swift.Bool { + get + } + public var streams: [Swift.String : VideoSDKRTC.MediaStream] { + get + } + public var pinState: VideoSDKRTC.ParticipantPinState + public var mode: VideoSDKRTC.Mode + @objc deinit +} +extension VideoSDKRTC.Participant { + public func enableMic() + public func disableMic() + public func enableWebcam() + public func disableWebcam() + public func remove() + public func participantPinStateChanged(pinState: VideoSDKRTC.ParticipantPinState) + public func participantModeChanged(mode: VideoSDKRTC.Mode) + public func getAudioStats() -> [Swift.String : Any]? + public func getVideoStats() -> [Swift.String : Any]? +} +extension VideoSDKRTC.Participant { + public func addStream(_ stream: VideoSDKRTC.MediaStream) + @discardableResult + public func removeStream(_ streamId: Swift.String) -> VideoSDKRTC.MediaStream? + public func removeAllStreams() + public func setQuality(_ quality: VideoSDKRTC.VideoQuality) + public func pin(_ peerId: Swift.String = "", _ pinType: VideoSDKRTC.PinType = .SHARE_AND_CAM) + public func unpin(_ pinType: VideoSDKRTC.PinType = .SHARE_AND_CAM) + public func setPinState(pinState: VideoSDKRTC.ParticipantPinState, peerId: Swift.String = "") +} +extension VideoSDKRTC.Participant { + public func addEventListener(_ listener: any VideoSDKRTC.ParticipantEventListener) + public func removeEventListener(_ listener: any VideoSDKRTC.ParticipantEventListener) +} +extension VideoSDKRTC.Participant { + public static func == (lhs: VideoSDKRTC.Participant, rhs: VideoSDKRTC.Participant) -> Swift.Bool +} +public protocol ParticipantEventListener { + func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) + func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +} +extension VideoSDKRTC.ParticipantEventListener { + public func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) + public func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +} +public enum PinType : Swift.String { + case SHARE_AND_CAM, CAM, SHARE + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct ParticipantPinState : Swift.Codable { + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +@_hasMissingDesignatedInitializers public class PointData : Swift.Equatable { + public var startEpochNanos: Swift.UInt64 + public var endEpochNanos: Swift.UInt64 + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] + public var exemplars: [VideoSDKRTC.ExemplarData] + public static func - (left: VideoSDKRTC.PointData, right: VideoSDKRTC.PointData) -> Self + public static func == (lhs: VideoSDKRTC.PointData, rhs: VideoSDKRTC.PointData) -> Swift.Bool + @objc deinit +} +public protocol ProtobufAPIVersion_3 { +} +public protocol ProtobufAPIVersionCheck { + associatedtype Version : VideoSDKRTC.ProtobufAPIVersion_3 +} +public struct _ProtobufMap where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.FieldType { + public typealias Key = KeyType.BaseType + public typealias Value = ValueType.BaseType + public typealias BaseType = Swift.Dictionary.Key, VideoSDKRTC._ProtobufMap.Value> +} +public struct _ProtobufMessageMap where KeyType : VideoSDKRTC.MapKeyType, ValueType : Swift.Hashable, ValueType : VideoSDKRTC.Message { + public typealias Key = KeyType.BaseType + public typealias Value = ValueType + public typealias BaseType = Swift.Dictionary.Key, VideoSDKRTC._ProtobufMessageMap.Value> +} +public struct _ProtobufEnumMap where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.Enum { + public typealias Key = KeyType.BaseType + public typealias Value = ValueType + public typealias BaseType = Swift.Dictionary.Key, VideoSDKRTC._ProtobufEnumMap.Value> +} +public protocol _ProtoNameProviding { + static var _protobuf_nameMap: VideoSDKRTC._NameMap { get } +} +public struct ProxyMeter : VideoSDKRTC.Meter { + public func createRawDoubleCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + public func createRawIntCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + public func createRawDoubleHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + public func createRawIntHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + public func getLabelSet(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.LabelSet + public func createIntCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + public func createDoubleCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + public func createIntMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + public func createDoubleMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + public func createIntHistogram(name: Swift.String, explicitBoundaries: Swift.Array? = nil, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + public func createDoubleHistogram(name: Swift.String, explicitBoundaries: Swift.Array?, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + public func createIntObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + public func createDoubleObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric + public func createIntObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + public func createDoubleObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric +} +@_hasMissingDesignatedInitializers public class PubSub { + @objc deinit +} +extension VideoSDKRTC.PubSub { + public func publish(topic: Swift.String, message: Swift.String, options: [Swift.String : Any] = [:]) + public func subscribe(topic: Swift.String, forListener listener: any VideoSDKRTC.PubSubMessageListener) + public func unsubscribe(topic: Swift.String, forListener listener: any VideoSDKRTC.PubSubMessageListener) + public func getMessagesForTopic(_ topic: Swift.String) -> [VideoSDKRTC.PubSubMessage] +} +@objc @_hasMissingDesignatedInitializers public class PubSubMessage : ObjectiveC.NSObject { + public var id: Swift.String + public var topic: Swift.String + public var message: Swift.String + public var senderId: Swift.String + public var senderName: Swift.String + public var timestamp: Swift.String + @objc deinit +} +public protocol PubSubMessageListener { + func onMessageReceived(_ message: VideoSDKRTC.PubSubMessage) +} +public struct RandomIdGenerator : VideoSDKRTC.IdGenerator { + public init() + public func generateSpanId() -> VideoSDKRTC.SpanId + public func generateTraceId() -> VideoSDKRTC.TraceId +} +public protocol RawCounterMetric { + associatedtype T + func record(sum: Self.T, startDate: Foundation.Date, endDate: Foundation.Date, labels: [Swift.String : Swift.String]) + func record(sum: Self.T, startDate: Foundation.Date, endDate: Foundation.Date, labelset: VideoSDKRTC.LabelSet) + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawCounterMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawCounterMetric +} +public struct AnyRawCounterMetric : VideoSDKRTC.RawCounterMetric { + public init(_ countable: U) where T == U.T, U : VideoSDKRTC.RawCounterMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawCounterMetric + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labelset: VideoSDKRTC.LabelSet) + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labels: [Swift.String : Swift.String]) +} +public struct NoopRawCounterMetric : VideoSDKRTC.RawCounterMetric { + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labels: [Swift.String : Swift.String]) + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labelset: VideoSDKRTC.LabelSet) + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawCounterMetric +} +public protocol RawHistogramMetric { + associatedtype T + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawHistogramMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawHistogramMetric + func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: Self.T, labelset: VideoSDKRTC.LabelSet) + func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: Self.T, labels: [Swift.String : Swift.String]) +} +public struct AnyRawHistogramMetric : VideoSDKRTC.RawHistogramMetric { + public init(_ histogram: U) where T == U.T, U : VideoSDKRTC.RawHistogramMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawHistogramMetric + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labels: [Swift.String : Swift.String]) + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labelset: VideoSDKRTC.LabelSet) +} +public struct NoopRawHistogramMetric : VideoSDKRTC.RawHistogramMetric { + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labelset: VideoSDKRTC.LabelSet) + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labels: [Swift.String : Swift.String]) + public init() + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawHistogramMetric +} +public struct ReadableLogRecord : Swift.Codable { + public init(resource: VideoSDKRTC.Resource, instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo, timestamp: Foundation.Date, observedTimestamp: Foundation.Date? = nil, spanContext: VideoSDKRTC.SpanContext? = nil, severity: VideoSDKRTC.Severity? = nil, body: Swift.String? = nil, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var timestamp: Foundation.Date { + get + } + public var observedTimestamp: Foundation.Date? { + get + } + public var spanContext: VideoSDKRTC.SpanContext? { + get + } + public var severity: VideoSDKRTC.Severity? { + get + } + public var body: Swift.String? { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public protocol ReadableSpan : VideoSDKRTC.Span { + var name: Swift.String { get set } + var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { get } + func toSpanData() -> VideoSDKRTC.SpanData + var hasEnded: Swift.Bool { get } + var latency: Foundation.TimeInterval { get } +} +@_hasMissingDesignatedInitializers public class RecordEventsReadableSpan : VideoSDKRTC.ReadableSpan { + public var isRecording: Swift.Bool + public var name: Swift.String { + get + set + } + public var spanLimits: VideoSDKRTC.SpanLimits { + get + } + public var context: VideoSDKRTC.SpanContext { + get + } + public var parentContext: VideoSDKRTC.SpanContext? { + get + } + public var hasRemoteParent: Swift.Bool { + get + } + public var spanProcessor: any VideoSDKRTC.SpanProcessor { + get + } + public var links: [VideoSDKRTC.SpanData.Link] { + get + } + public var totalRecordedLinks: Swift.Int { + get + } + public var maxNumberOfAttributes: Swift.Int { + get + } + public var maxNumberOfAttributesPerEvent: Swift.Int { + get + } + public var kind: VideoSDKRTC.SpanKind { + get + } + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var startTime: Foundation.Date { + get + } + public var events: VideoSDKRTC.ArrayWithCapacity { + get + } + public var totalAttributeCount: Swift.Int { + get + } + public var totalRecordedEvents: Swift.Int { + get + } + public var status: VideoSDKRTC.Status { + get + set + } + public var latency: Foundation.TimeInterval { + get + } + public var endTime: Foundation.Date? { + get + } + public var hasEnded: Swift.Bool { + get + } + public static func startSpan(context: VideoSDKRTC.SpanContext, name: Swift.String, instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo, kind: VideoSDKRTC.SpanKind, parentContext: VideoSDKRTC.SpanContext?, hasRemoteParent: Swift.Bool, spanLimits: VideoSDKRTC.SpanLimits, spanProcessor: any VideoSDKRTC.SpanProcessor, clock: any VideoSDKRTC.Clock, resource: VideoSDKRTC.Resource, attributes: VideoSDKRTC.AttributesDictionary, links: [VideoSDKRTC.SpanData.Link], totalRecordedLinks: Swift.Int, startTime: Foundation.Date?) -> VideoSDKRTC.RecordEventsReadableSpan + public func toSpanData() -> VideoSDKRTC.SpanData + public func setAttribute(key: Swift.String, value: VideoSDKRTC.AttributeValue?) + public func addEvent(name: Swift.String) + public func addEvent(name: Swift.String, timestamp: Foundation.Date) + public func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue], timestamp: Foundation.Date) + public func end() + public func end(time: Foundation.Date) + public var description: Swift.String { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class RegisteredReader : Swift.Equatable, Swift.Hashable { + final public let id: Swift.Int32 + final public let reader: any VideoSDKRTC.StableMetricReader + final public let registry: VideoSDKRTC.StableViewRegistry + public var lastCollectedEpochNanos: Swift.UInt64 + public func hash(into hasher: inout Swift.Hasher) + public static func == (lhs: VideoSDKRTC.RegisteredReader, rhs: VideoSDKRTC.RegisteredReader) -> Swift.Bool + @objc deinit + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class RegisteredView { + public var selector: VideoSDKRTC.InstrumentSelector { + get + } + public var view: VideoSDKRTC.StableView { + get + } + public var attributeProcessor: VideoSDKRTC.AttributeProcessor { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class ReservoirCell { + @objc deinit +} +public protocol ReservoirCellSelector { + func reservoirCellIndex(for cells: [VideoSDKRTC.ReservoirCell], value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Int + func reservoirCellIndex(for cells: [VideoSDKRTC.ReservoirCell], value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Int + func reset() +} +public struct Resource : Swift.Equatable, Swift.Hashable, Swift.Codable { + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] + public init() + public init(attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public mutating func merge(other: VideoSDKRTC.Resource) + public func merging(other: VideoSDKRTC.Resource) -> VideoSDKRTC.Resource + public static func == (a: VideoSDKRTC.Resource, b: VideoSDKRTC.Resource) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public struct Opentelemetry_Proto_Resource_V1_Resource { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource, rhs: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct ResourceAdapter { + public static func toProtoResource(resource: VideoSDKRTC.Resource) -> VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource +} +public enum ResourceAttributes : Swift.String { + case browserBrands + case browserPlatform + case browserMobile + case browserLanguage + case userAgentOriginal + case cloudProvider + case cloudAccountId + case cloudRegion + case cloudResourceId + case cloudAvailabilityZone + case cloudPlatform + case awsEcsContainerArn + case awsEcsClusterArn + case awsEcsLaunchtype + case awsEcsTaskArn + case awsEcsTaskFamily + case awsEcsTaskRevision + case awsEksClusterArn + case awsLogGroupNames + case awsLogGroupArns + case awsLogStreamNames + case awsLogStreamArns + case herokuReleaseCreationTimestamp + case herokuReleaseCommit + case herokuAppId + case containerName + case containerId + case containerRuntime + case containerImageName + case containerImageTag + case deploymentEnvironment + case deviceId + case deviceModelIdentifier + case deviceModelName + case deviceManufacturer + case faasName + case faasVersion + case faasInstance + case faasMaxMemory + case hostId + case hostName + case hostType + case hostArch + case hostImageName + case hostImageId + case hostImageVersion + case k8sClusterName + case k8sNodeName + case k8sNodeUid + case k8sNamespaceName + case k8sPodUid + case k8sPodName + case k8sContainerName + case k8sContainerRestartCount + case k8sReplicasetUid + case k8sReplicasetName + case k8sDeploymentUid + case k8sDeploymentName + case k8sStatefulsetUid + case k8sStatefulsetName + case k8sDaemonsetUid + case k8sDaemonsetName + case k8sJobUid + case k8sJobName + case k8sCronjobUid + case k8sCronjobName + case osType + case osDescription + case osName + case osVersion + case processPid + case processParentPid + case processExecutableName + case processExecutablePath + case processCommand + case processCommandLine + case processCommandArgs + case processOwner + case processRuntimeName + case processRuntimeVersion + case processRuntimeDescription + case serviceName + case serviceNamespace + case serviceInstanceId + case serviceVersion + case telemetrySdkName + case telemetrySdkLanguage + case telemetrySdkVersion + case telemetryAutoVersion + case webengineName + case webengineVersion + case webengineDescription + case otelScopeName + case otelScopeVersion + case otelLibraryName + case otelLibraryVersion + public struct CloudProviderValues : Swift.CustomStringConvertible { + public static let alibabaCloud: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let aws: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let azure: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let gcp: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let heroku: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let ibmCloud: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let tencentCloud: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct CloudPlatformValues : Swift.CustomStringConvertible { + public static let alibabaCloudEcs: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let alibabaCloudFc: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let alibabaCloudOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsEc2: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsEcs: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsEks: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsLambda: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsElasticBeanstalk: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsAppRunner: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureVm: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureContainerInstances: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureAks: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureFunctions: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureAppService: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpComputeEngine: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpCloudRun: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpKubernetesEngine: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpCloudFunctions: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpAppEngine: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let ibmCloudOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let tencentCloudCvm: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let tencentCloudEks: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let tencentCloudScf: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum AwsEcsLaunchtypeValues : Swift.String { + case ec2 + case fargate + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct HostArchValues : Swift.CustomStringConvertible { + public static let amd64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let arm32: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let arm64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let ia64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let ppc32: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let ppc64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let s390x: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let x86: VideoSDKRTC.ResourceAttributes.HostArchValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct OsTypeValues : Swift.CustomStringConvertible { + public static let windows: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let linux: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let darwin: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let freebsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let netbsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let openbsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let dragonflybsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let hpux: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let aix: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let solaris: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let zOs: VideoSDKRTC.ResourceAttributes.OsTypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct TelemetrySdkLanguageValues : Swift.CustomStringConvertible { + public static let cpp: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let dotnet: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let erlang: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let go: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let java: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let nodejs: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let php: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let python: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let ruby: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let webjs: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let swift: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public func == (left: VideoSDKRTC.ResourceAttributes, right: Swift.String) -> Swift.Bool +public func == (left: Swift.String, right: VideoSDKRTC.ResourceAttributes) -> Swift.Bool +public protocol Sampler : AnyObject, Swift.CustomStringConvertible { + func shouldSample(parentContext: VideoSDKRTC.SpanContext?, traceId: VideoSDKRTC.TraceId, name: Swift.String, kind: VideoSDKRTC.SpanKind, attributes: [Swift.String : VideoSDKRTC.AttributeValue], parentLinks: [VideoSDKRTC.SpanData.Link]) -> any VideoSDKRTC.Decision +} +public protocol Decision { + var isSampled: Swift.Bool { get } + var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { get } +} +public enum Samplers { + public static var alwaysOn: any VideoSDKRTC.Sampler + public static var alwaysOff: any VideoSDKRTC.Sampler + public static func traceIdRatio(ratio: Swift.Double) -> any VideoSDKRTC.Sampler + public static func parentBased(root: any VideoSDKRTC.Sampler, remoteParentSampled: (any VideoSDKRTC.Sampler)? = nil, remoteParentNotSampled: (any VideoSDKRTC.Sampler)? = nil, localParentSampled: (any VideoSDKRTC.Sampler)? = nil, localParentNotSampled: (any VideoSDKRTC.Sampler)? = nil) -> any VideoSDKRTC.Sampler +} +public enum SemanticAttributes : Swift.String { + case exceptionType + case exceptionMessage + case exceptionStacktrace + case httpMethod + case httpStatusCode + case netProtocolName + case netProtocolVersion + case netPeerName + case netPeerPort + case httpScheme + case httpRoute + case netHostName + case netHostPort + case eventName + case eventDomain + case logRecordUid + case featureFlagKey + case featureFlagProviderName + case featureFlagVariant + case awsLambdaInvokedArn + case cloudeventsEventId + case cloudeventsEventSource + case cloudeventsEventSpecVersion + case cloudeventsEventType + case cloudeventsEventSubject + case opentracingRefType + case dbSystem + case dbConnectionString + case dbUser + case dbJdbcDriverClassname + case dbName + case dbStatement + case dbOperation + case netSockPeerAddr + case netSockPeerPort + case netSockFamily + case netSockPeerName + case netTransport + case dbMssqlInstanceName + case dbCassandraPageSize + case dbCassandraConsistencyLevel + case dbCassandraTable + case dbCassandraIdempotence + case dbCassandraSpeculativeExecutionCount + case dbCassandraCoordinatorId + case dbCassandraCoordinatorDc + case dbRedisDatabaseIndex + case dbMongodbCollection + case dbSqlTable + case dbCosmosdbClientId + case dbCosmosdbOperationType + case userAgentOriginal + case dbCosmosdbConnectionMode + case dbCosmosdbContainer + case dbCosmosdbRequestContentLength + case dbCosmosdbStatusCode + case dbCosmosdbSubStatusCode + case dbCosmosdbRequestCharge + case otelStatusCode + case otelStatusDescription + case faasTrigger + case faasInvocationId + case cloudResourceId + case faasDocumentCollection + case faasDocumentOperation + case faasDocumentTime + case faasDocumentName + case httpTarget + case httpClientIp + case netSockHostAddr + case netSockHostPort + case messagingSystem + case messagingOperation + case messagingBatchMessageCount + case messagingMessageId + case messagingMessageConversationId + case messagingMessagePayloadSizeBytes + case messagingMessagePayloadCompressedSizeBytes + case faasTime + case faasCron + case faasColdstart + case faasInvokedName + case faasInvokedProvider + case faasInvokedRegion + case netHostConnectionType + case netHostConnectionSubtype + case netHostCarrierName + case netHostCarrierMcc + case netHostCarrierMnc + case netHostCarrierIcc + case peerService + case enduserId + case enduserRole + case enduserScope + case threadId + case threadName + case codeFunction + case codeNamespace + case codeFilepath + case codeLineno + case codeColumn + case httpRequestContentLength + case httpResponseContentLength + case httpUrl + case httpResendCount + case rpcSystem + case rpcService + case rpcMethod + case awsRequestId + case awsDynamodbTableNames + case awsDynamodbConsumedCapacity + case awsDynamodbItemCollectionMetrics + case awsDynamodbProvisionedReadCapacity + case awsDynamodbProvisionedWriteCapacity + case awsDynamodbConsistentRead + case awsDynamodbProjection + case awsDynamodbLimit + case awsDynamodbAttributesToGet + case awsDynamodbIndexName + case awsDynamodbSelect + case awsDynamodbGlobalSecondaryIndexes + case awsDynamodbLocalSecondaryIndexes + case awsDynamodbExclusiveStartTable + case awsDynamodbTableCount + case awsDynamodbScanForward + case awsDynamodbSegment + case awsDynamodbTotalSegments + case awsDynamodbCount + case awsDynamodbScannedCount + case awsDynamodbAttributeDefinitions + case awsDynamodbGlobalSecondaryIndexUpdates + case awsS3Bucket + case awsS3Key + case awsS3CopySource + case awsS3UploadId + case awsS3Delete + case awsS3PartNumber + case graphqlOperationName + case graphqlOperationType + case graphqlDocument + case messagingDestinationName + case messagingSourceName + case messagingDestinationTemplate + case messagingDestinationTemporary + case messagingDestinationAnonymous + case messagingSourceTemplate + case messagingSourceTemporary + case messagingSourceAnonymous + case messagingConsumerId + case messagingRabbitmqDestinationRoutingKey + case messagingKafkaMessageKey + case messagingKafkaConsumerGroup + case messagingKafkaClientId + case messagingKafkaDestinationPartition + case messagingKafkaSourcePartition + case messagingKafkaMessageOffset + case messagingKafkaMessageTombstone + case messagingRocketmqNamespace + case messagingRocketmqClientGroup + case messagingRocketmqClientId + case messagingRocketmqMessageDeliveryTimestamp + case messagingRocketmqMessageDelayTimeLevel + case messagingRocketmqMessageGroup + case messagingRocketmqMessageType + case messagingRocketmqMessageTag + case messagingRocketmqMessageKeys + case messagingRocketmqConsumptionModel + case rpcGrpcStatusCode + case rpcJsonrpcVersion + case rpcJsonrpcRequestId + case rpcJsonrpcErrorCode + case rpcJsonrpcErrorMessage + case messageType + case messageId + case messageCompressedSize + case messageUncompressedSize + case rpcConnectRpcErrorCode + case exceptionEscaped + case exception + public struct EventDomainValues : Swift.CustomStringConvertible { + public static let browser: VideoSDKRTC.SemanticAttributes.EventDomainValues + public static let device: VideoSDKRTC.SemanticAttributes.EventDomainValues + public static let k8s: VideoSDKRTC.SemanticAttributes.EventDomainValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum OpentracingRefTypeValues : Swift.String { + case child_of + case follows_from + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct DbSystemValues : Swift.CustomStringConvertible { + public static let otherSql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mssql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mssqlcompact: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mysql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let oracle: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let db2: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let postgresql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let redshift: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hive: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cloudscape: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hsqldb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let progress: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let maxdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hanadb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let ingres: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let firstsql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let edb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cache: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let adabas: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let firebird: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let derby: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let filemaker: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let informix: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let instantdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let interbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mariadb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let netezza: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let pervasive: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let pointbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let sqlite: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let sybase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let teradata: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let vertica: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let h2: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let coldfusion: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cassandra: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mongodb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let redis: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let couchbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let couchdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cosmosdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let dynamodb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let neo4j: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let geode: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let elasticsearch: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let memcached: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cockroachdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let opensearch: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let clickhouse: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let spanner: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let trino: VideoSDKRTC.SemanticAttributes.DbSystemValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetSockFamilyValues : Swift.CustomStringConvertible { + public static let inet: VideoSDKRTC.SemanticAttributes.NetSockFamilyValues + public static let inet6: VideoSDKRTC.SemanticAttributes.NetSockFamilyValues + public static let unix: VideoSDKRTC.SemanticAttributes.NetSockFamilyValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetTransportValues : Swift.CustomStringConvertible { + public static let ipTcp: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let ipUdp: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let pipe: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let inproc: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let other: VideoSDKRTC.SemanticAttributes.NetTransportValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum DbCassandraConsistencyLevelValues : Swift.String { + case all + case each_quorum + case quorum + case local_quorum + case one + case two + case three + case local_one + case any + case serial + case local_serial + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct DbCosmosdbOperationTypeValues : Swift.CustomStringConvertible { + public static let invalid: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let create: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let patch: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let read: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let readFeed: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let delete: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let replace: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let execute: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let query: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let head: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let headFeed: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let upsert: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let batch: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let queryPlan: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let executeJavascript: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum DbCosmosdbConnectionModeValues : Swift.String { + case gateway + case direct + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum OtelStatusCodeValues : Swift.String { + case ok + case error + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum FaasTriggerValues : Swift.String { + case datasource + case http + case pubsub + case timer + case other + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct FaasDocumentOperationValues : Swift.CustomStringConvertible { + public static let insert: VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues + public static let edit: VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues + public static let delete: VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct MessagingOperationValues : Swift.CustomStringConvertible { + public static let publish: VideoSDKRTC.SemanticAttributes.MessagingOperationValues + public static let receive: VideoSDKRTC.SemanticAttributes.MessagingOperationValues + public static let process: VideoSDKRTC.SemanticAttributes.MessagingOperationValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct FaasInvokedProviderValues : Swift.CustomStringConvertible { + public static let alibabaCloud: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let aws: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let azure: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let gcp: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let tencentCloud: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetHostConnectionTypeValues : Swift.CustomStringConvertible { + public static let wifi: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let wired: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let cell: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let unavailable: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let unknown: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetHostConnectionSubtypeValues : Swift.CustomStringConvertible { + public static let gprs: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let edge: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let umts: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let cdma: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let evdo0: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let evdoA: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let cdma20001xrtt: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hsdpa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hsupa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hspa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let iden: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let evdoB: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let lte: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let ehrpd: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hspap: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let gsm: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let tdScdma: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let iwlan: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let nr: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let nrnsa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let lteCa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct RpcSystemValues : Swift.CustomStringConvertible { + public static let grpc: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let javaRmi: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let dotnetWcf: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let apacheDubbo: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let connectRpc: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum GraphqlOperationTypeValues : Swift.String { + case query + case mutation + case subscription + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum MessagingRocketmqMessageTypeValues : Swift.String { + case normal + case fifo + case delay + case transaction + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum MessagingRocketmqConsumptionModelValues : Swift.String { + case clustering + case broadcasting + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum RpcGrpcStatusCodeValues : Swift.Int { + case ok + case cancelled + case unknown + case invalid_argument + case deadline_exceeded + case not_found + case already_exists + case permission_denied + case resource_exhausted + case failed_precondition + case aborted + case out_of_range + case unimplemented + case `internal` + case unavailable + case data_loss + case unauthenticated + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } + } + public enum MessageTypeValues : Swift.String { + case sent + case received + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum RpcConnectRpcErrorCodeValues : Swift.String { + case cancelled + case unknown + case invalid_argument + case deadline_exceeded + case not_found + case already_exists + case permission_denied + case resource_exhausted + case failed_precondition + case aborted + case out_of_range + case unimplemented + case `internal` + case unavailable + case data_loss + case unauthenticated + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum Severity : Swift.Int, Swift.Comparable, Swift.CustomStringConvertible, Swift.Codable { + case trace, trace2, trace3, trace4, debug, debug2, debug3, debug4, info, info2, info3, info4, warn, warn2, warn3, warn4, error, error2, error3, error4, fatal, fatal2, fatal3, fatal4 + public var description: Swift.String { + get + } + public static func < (lhs: VideoSDKRTC.Severity, rhs: VideoSDKRTC.Severity) -> Swift.Bool + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public struct SimpleExtensionMap : VideoSDKRTC.ExtensionMap, Swift.ExpressibleByArrayLiteral { + public typealias Element = VideoSDKRTC.AnyMessageExtension + public init() + public init(arrayLiteral: any VideoSDKRTC.AnyMessageExtension...) + public init(_ others: VideoSDKRTC.SimpleExtensionMap...) + public subscript(messageType: any VideoSDKRTC.Message.Type, fieldNumber: Swift.Int) -> (any VideoSDKRTC.AnyMessageExtension)? { + get + } + public func fieldNumberForProto(messageType: any VideoSDKRTC.Message.Type, protoFieldName: Swift.String) -> Swift.Int? + public mutating func insert(_ newValue: any VideoSDKRTC.AnyMessageExtension) + public mutating func insert(contentsOf: [any VideoSDKRTC.AnyMessageExtension]) + public mutating func formUnion(_ other: VideoSDKRTC.SimpleExtensionMap) + public func union(_ other: VideoSDKRTC.SimpleExtensionMap) -> VideoSDKRTC.SimpleExtensionMap + public typealias ArrayLiteralElement = any VideoSDKRTC.AnyMessageExtension +} +public class SimpleLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public init(logRecordExporter: any VideoSDKRTC.LogRecordExporter) + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + @objc deinit +} +public struct SimpleSpanProcessor : VideoSDKRTC.SpanProcessor { + public let isStartRequired: Swift.Bool + public let isEndRequired: Swift.Bool + public func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + public mutating func onEnd(span: any VideoSDKRTC.ReadableSpan) + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) + public init(spanExporter: any VideoSDKRTC.SpanExporter) + public func reportingOnlySampled(sampled: Swift.Bool) -> VideoSDKRTC.SimpleSpanProcessor +} +public struct Google_Protobuf_SourceContext { + public var fileName: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_SourceContext : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_SourceContext : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_SourceContext, rhs: VideoSDKRTC.Google_Protobuf_SourceContext) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol Span : AnyObject, Swift.CustomStringConvertible { + var kind: VideoSDKRTC.SpanKind { get } + var context: VideoSDKRTC.SpanContext { get } + var isRecording: Swift.Bool { get } + var status: VideoSDKRTC.Status { get set } + var name: Swift.String { get set } + func setAttribute(key: Swift.String, value: VideoSDKRTC.AttributeValue?) + func addEvent(name: Swift.String) + func addEvent(name: Swift.String, timestamp: Foundation.Date) + func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue], timestamp: Foundation.Date) + func end() + func end(time: Foundation.Date) +} +extension VideoSDKRTC.Span { + public func hash(into hasher: inout Swift.Hasher) + public static func == (lhs: any VideoSDKRTC.Span, rhs: any VideoSDKRTC.Span) -> Swift.Bool +} +extension VideoSDKRTC.Span { + public func setAttribute(key: Swift.String, value: Swift.String) + public func setAttribute(key: Swift.String, value: Swift.Int) + public func setAttribute(key: Swift.String, value: Swift.Double) + public func setAttribute(key: Swift.String, value: Swift.Bool) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.String) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.Int) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.Double) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.Bool) +} +extension VideoSDKRTC.Span { + public func putHttpHostAttribute(string hostName: Swift.String, int port: Swift.Int) + public func putHttpStatusCode(statusCode: Swift.Int, reasonPhrase: Swift.String) +} +public struct SpanAdapter { + public static func toProtoResourceSpans(spanDataList: [VideoSDKRTC.SpanData]) -> [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans] + public static func toProtoSpan(spanData: VideoSDKRTC.SpanData) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span +} +public protocol SpanBuilder : AnyObject { + @discardableResult + func setParent(_ parent: any VideoSDKRTC.Span) -> Self + @discardableResult + func setParent(_ parent: VideoSDKRTC.SpanContext) -> Self + @discardableResult + func setNoParent() -> Self + @discardableResult + func addLink(spanContext: VideoSDKRTC.SpanContext) -> Self + @discardableResult + func addLink(spanContext: VideoSDKRTC.SpanContext, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.String) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.Int) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.Double) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.Bool) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: VideoSDKRTC.AttributeValue) -> Self + @discardableResult + func setSpanKind(spanKind: VideoSDKRTC.SpanKind) -> Self + @discardableResult + func setStartTime(time: Foundation.Date) -> Self + @discardableResult + func setActive(_ active: Swift.Bool) -> Self + func startSpan() -> any VideoSDKRTC.Span +} +extension VideoSDKRTC.SpanBuilder { + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.String) -> Self + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.Int) -> Self + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.Double) -> Self + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.Bool) -> Self +} +public struct SpanContext : Swift.Equatable, Swift.CustomStringConvertible, Swift.Hashable, Swift.Codable { + public var traceId: VideoSDKRTC.TraceId { + get + } + public var spanId: VideoSDKRTC.SpanId { + get + } + public var traceFlags: VideoSDKRTC.TraceFlags { + get + } + public var traceState: VideoSDKRTC.TraceState + public let isRemote: Swift.Bool + public static func create(traceId: VideoSDKRTC.TraceId, spanId: VideoSDKRTC.SpanId, traceFlags: VideoSDKRTC.TraceFlags, traceState: VideoSDKRTC.TraceState) -> VideoSDKRTC.SpanContext + public static func createFromRemoteParent(traceId: VideoSDKRTC.TraceId, spanId: VideoSDKRTC.SpanId, traceFlags: VideoSDKRTC.TraceFlags, traceState: VideoSDKRTC.TraceState) -> VideoSDKRTC.SpanContext + public var isValid: Swift.Bool { + get + } + public var isSampled: Swift.Bool { + get + } + public static func == (lhs: VideoSDKRTC.SpanContext, rhs: VideoSDKRTC.SpanContext) -> Swift.Bool + public var description: Swift.String { + get + } + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public struct SpanData : Swift.Equatable, Swift.Codable { + public var traceId: VideoSDKRTC.TraceId { + get + } + public var spanId: VideoSDKRTC.SpanId { + get + } + public var traceFlags: VideoSDKRTC.TraceFlags { + get + } + public var traceState: VideoSDKRTC.TraceState { + get + } + public var parentSpanId: VideoSDKRTC.SpanId? { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScope: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var name: Swift.String { + get + } + public var kind: VideoSDKRTC.SpanKind { + get + } + public var startTime: Foundation.Date { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public var events: [VideoSDKRTC.SpanData.Event] { + get + } + public var links: [VideoSDKRTC.SpanData.Link] { + get + } + public var status: VideoSDKRTC.Status { + get + } + public var endTime: Foundation.Date { + get + } + public var hasRemoteParent: Swift.Bool { + get + } + public var hasEnded: Swift.Bool { + get + } + public var totalRecordedEvents: Swift.Int { + get + } + public var totalRecordedLinks: Swift.Int { + get + } + public var totalAttributeCount: Swift.Int { + get + } + public static func == (lhs: VideoSDKRTC.SpanData, rhs: VideoSDKRTC.SpanData) -> Swift.Bool + @discardableResult + public mutating func settingName(_ name: Swift.String) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTraceId(_ traceId: VideoSDKRTC.TraceId) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingSpanId(_ spanId: VideoSDKRTC.SpanId) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTraceFlags(_ traceFlags: VideoSDKRTC.TraceFlags) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTraceState(_ traceState: VideoSDKRTC.TraceState) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingStartTime(_ time: Foundation.Date) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingEndTime(_ time: Foundation.Date) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingKind(_ kind: VideoSDKRTC.SpanKind) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingLinks(_ links: [VideoSDKRTC.SpanData.Link]) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingParentSpanId(_ parentSpanId: VideoSDKRTC.SpanId) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingResource(_ resource: VideoSDKRTC.Resource) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingStatus(_ status: VideoSDKRTC.Status) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingEvents(_ events: [VideoSDKRTC.SpanData.Event]) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingHasRemoteParent(_ hasRemoteParent: Swift.Bool) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingHasEnded(_ hasEnded: Swift.Bool) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTotalRecordedEvents(_ totalRecordedEvents: Swift.Int) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTotalRecordedLinks(_ totalRecordedLinks: Swift.Int) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTotalAttributeCount(_ totalAttributeCount: Swift.Int) -> VideoSDKRTC.SpanData + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.SpanData { + public struct Event : Swift.Equatable, Swift.Codable { + public var timestamp: Foundation.Date { + get + } + public var name: Swift.String { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public init(name: Swift.String, timestamp: Foundation.Date, attributes: [Swift.String : VideoSDKRTC.AttributeValue]? = nil) + public init(timestamp: Foundation.Date, event: VideoSDKRTC.SpanData.Event) + public static func == (a: VideoSDKRTC.SpanData.Event, b: VideoSDKRTC.SpanData.Event) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } +} +extension VideoSDKRTC.SpanData { + public struct Link : Swift.Codable { + public let context: VideoSDKRTC.SpanContext + public let attributes: [Swift.String : VideoSDKRTC.AttributeValue] + public init(context: VideoSDKRTC.SpanContext, attributes: [Swift.String : VideoSDKRTC.AttributeValue] = [String: AttributeValue]()) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } +} +public func == (lhs: VideoSDKRTC.SpanData.Link, rhs: VideoSDKRTC.SpanData.Link) -> Swift.Bool +public func == (lhs: [VideoSDKRTC.SpanData.Link], rhs: [VideoSDKRTC.SpanData.Link]) -> Swift.Bool +public protocol SpanExporter : AnyObject { + @discardableResult + func export(spans: [VideoSDKRTC.SpanData]) -> VideoSDKRTC.SpanExporterResultCode + func flush() -> VideoSDKRTC.SpanExporterResultCode + func shutdown() +} +public enum SpanExporterResultCode { + case success + case failure + public static func == (a: VideoSDKRTC.SpanExporterResultCode, b: VideoSDKRTC.SpanExporterResultCode) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct SpanId : Swift.Equatable, Swift.Comparable, Swift.Hashable, Swift.CustomStringConvertible, Swift.Codable { + public static let size: Swift.Int + public static let invalidId: Swift.UInt64 + public static let invalid: VideoSDKRTC.SpanId + public static func getSize() -> Swift.Int + public init(id: Swift.UInt64) + public init() + public static func random() -> VideoSDKRTC.SpanId + public init(fromBytes bytes: Swift.Array, withOffset offset: Swift.Int = 0) + public init(fromBytes bytes: Swift.ArraySlice, withOffset offset: Swift.Int = 0) + public init(fromBytes bytes: Swift.ArraySlice, withOffset offset: Swift.Int = 0) + public func copyBytesTo(dest: inout Foundation.Data, destOffset: Swift.Int) + public func copyBytesTo(dest: inout Swift.Array, destOffset: Swift.Int) + public func copyBytesTo(dest: inout Swift.ArraySlice, destOffset: Swift.Int) + public init(fromHexString hex: Swift.String, withOffset offset: Swift.Int = 0) + public var hexString: Swift.String { + get + } + public var rawValue: Swift.UInt64 { + get + } + public var isValid: Swift.Bool { + get + } + public var description: Swift.String { + get + } + public static func < (lhs: VideoSDKRTC.SpanId, rhs: VideoSDKRTC.SpanId) -> Swift.Bool + public static func == (lhs: VideoSDKRTC.SpanId, rhs: VideoSDKRTC.SpanId) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public enum SpanKind : Swift.String, Swift.Equatable, Swift.Codable { + case `internal` + case server + case client + case producer + case consumer + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct SpanLimits : Swift.Equatable { + public var attributeCountLimit: Swift.Int { + get + } + public var eventCountLimit: Swift.Int { + get + } + public var linkCountLimit: Swift.Int { + get + } + public var attributePerEventCountLimit: Swift.Int { + get + } + public var attributePerLinkCountLimit: Swift.Int { + get + } + public init() + @discardableResult + public func settingAttributeCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingEventCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingLinkCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingAttributePerEventCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingAttributePerLinkCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + public static func == (lhs: VideoSDKRTC.SpanLimits, rhs: VideoSDKRTC.SpanLimits) -> Swift.Bool +} +public protocol SpanProcessor { + var isStartRequired: Swift.Bool { get } + var isEndRequired: Swift.Bool { get } + func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + mutating func onEnd(span: any VideoSDKRTC.ReadableSpan) + mutating func shutdown() + func forceFlush(timeout: Foundation.TimeInterval?) +} +public protocol SPBDecoder { + mutating func handleConflictingOneOf() throws + mutating func nextFieldNumber() throws -> Swift.Int? + mutating func decodeSingularFloatField(value: inout Swift.Float) throws + mutating func decodeSingularFloatField(value: inout Swift.Float?) throws + mutating func decodeRepeatedFloatField(value: inout [Swift.Float]) throws + mutating func decodeSingularDoubleField(value: inout Swift.Double) throws + mutating func decodeSingularDoubleField(value: inout Swift.Double?) throws + mutating func decodeRepeatedDoubleField(value: inout [Swift.Double]) throws + mutating func decodeSingularInt32Field(value: inout Swift.Int32) throws + mutating func decodeSingularInt32Field(value: inout Swift.Int32?) throws + mutating func decodeRepeatedInt32Field(value: inout [Swift.Int32]) throws + mutating func decodeSingularInt64Field(value: inout Swift.Int64) throws + mutating func decodeSingularInt64Field(value: inout Swift.Int64?) throws + mutating func decodeRepeatedInt64Field(value: inout [Swift.Int64]) throws + mutating func decodeSingularUInt32Field(value: inout Swift.UInt32) throws + mutating func decodeSingularUInt32Field(value: inout Swift.UInt32?) throws + mutating func decodeRepeatedUInt32Field(value: inout [Swift.UInt32]) throws + mutating func decodeSingularUInt64Field(value: inout Swift.UInt64) throws + mutating func decodeSingularUInt64Field(value: inout Swift.UInt64?) throws + mutating func decodeRepeatedUInt64Field(value: inout [Swift.UInt64]) throws + mutating func decodeSingularSInt32Field(value: inout Swift.Int32) throws + mutating func decodeSingularSInt32Field(value: inout Swift.Int32?) throws + mutating func decodeRepeatedSInt32Field(value: inout [Swift.Int32]) throws + mutating func decodeSingularSInt64Field(value: inout Swift.Int64) throws + mutating func decodeSingularSInt64Field(value: inout Swift.Int64?) throws + mutating func decodeRepeatedSInt64Field(value: inout [Swift.Int64]) throws + mutating func decodeSingularFixed32Field(value: inout Swift.UInt32) throws + mutating func decodeSingularFixed32Field(value: inout Swift.UInt32?) throws + mutating func decodeRepeatedFixed32Field(value: inout [Swift.UInt32]) throws + mutating func decodeSingularFixed64Field(value: inout Swift.UInt64) throws + mutating func decodeSingularFixed64Field(value: inout Swift.UInt64?) throws + mutating func decodeRepeatedFixed64Field(value: inout [Swift.UInt64]) throws + mutating func decodeSingularSFixed32Field(value: inout Swift.Int32) throws + mutating func decodeSingularSFixed32Field(value: inout Swift.Int32?) throws + mutating func decodeRepeatedSFixed32Field(value: inout [Swift.Int32]) throws + mutating func decodeSingularSFixed64Field(value: inout Swift.Int64) throws + mutating func decodeSingularSFixed64Field(value: inout Swift.Int64?) throws + mutating func decodeRepeatedSFixed64Field(value: inout [Swift.Int64]) throws + mutating func decodeSingularBoolField(value: inout Swift.Bool) throws + mutating func decodeSingularBoolField(value: inout Swift.Bool?) throws + mutating func decodeRepeatedBoolField(value: inout [Swift.Bool]) throws + mutating func decodeSingularStringField(value: inout Swift.String) throws + mutating func decodeSingularStringField(value: inout Swift.String?) throws + mutating func decodeRepeatedStringField(value: inout [Swift.String]) throws + mutating func decodeSingularBytesField(value: inout Foundation.Data) throws + mutating func decodeSingularBytesField(value: inout Foundation.Data?) throws + mutating func decodeRepeatedBytesField(value: inout [Foundation.Data]) throws + mutating func decodeSingularEnumField(value: inout E) throws where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + mutating func decodeSingularEnumField(value: inout E?) throws where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + mutating func decodeRepeatedEnumField(value: inout [E]) throws where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + mutating func decodeSingularMessageField(value: inout M?) throws where M : VideoSDKRTC.Message + mutating func decodeRepeatedMessageField(value: inout [M]) throws where M : VideoSDKRTC.Message + mutating func decodeSingularGroupField(value: inout G?) throws where G : VideoSDKRTC.Message + mutating func decodeRepeatedGroupField(value: inout [G]) throws where G : VideoSDKRTC.Message + mutating func decodeMapField(fieldType: VideoSDKRTC._ProtobufMap.Type, value: inout VideoSDKRTC._ProtobufMap.BaseType) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.MapValueType + mutating func decodeMapField(fieldType: VideoSDKRTC._ProtobufEnumMap.Type, value: inout VideoSDKRTC._ProtobufEnumMap.BaseType) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.Enum, ValueType.RawValue == Swift.Int + mutating func decodeMapField(fieldType: VideoSDKRTC._ProtobufMessageMap.Type, value: inout VideoSDKRTC._ProtobufMessageMap.BaseType) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : Swift.Hashable, ValueType : VideoSDKRTC.Message + mutating func decodeExtensionField(values: inout VideoSDKRTC.ExtensionFieldValueSet, messageType: any VideoSDKRTC.Message.Type, fieldNumber: Swift.Int) throws + mutating func decodeExtensionFieldsAsMessageSet(values: inout VideoSDKRTC.ExtensionFieldValueSet, messageType: any VideoSDKRTC.Message.Type) throws +} +extension VideoSDKRTC.SPBDecoder { + public mutating func decodeExtensionFieldsAsMessageSet(values: inout VideoSDKRTC.ExtensionFieldValueSet, messageType: any VideoSDKRTC.Message.Type) throws +} +public protocol StableAggregator { + func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + func createHandle() -> VideoSDKRTC.AggregatorHandle + func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData +} +public protocol StableMeter { + func counterBuilder(name: Swift.String) -> any VideoSDKRTC.LongCounterBuilder + func upDownCounterBuilder(name: Swift.String) -> any VideoSDKRTC.LongUpDownCounterBuilder + func histogramBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleHistogramBuilder + func gaugeBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleGaugeBuilder +} +public protocol StableMeterProvider : AnyObject { + func get(name: Swift.String) -> any VideoSDKRTC.StableMeter + func meterBuilder(name: Swift.String) -> any VideoSDKRTC.MeterBuilder +} +public class StableMeterProviderBuilder { + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var metricReaders: [any VideoSDKRTC.StableMetricReader] { + get + } + public var registeredViews: [VideoSDKRTC.RegisteredView] { + get + } + public var exemplarFilter: any VideoSDKRTC.ExemplarFilter { + get + } + public init() + public func setClock(clock: any VideoSDKRTC.Clock) -> Self + public func setResource(resource: VideoSDKRTC.Resource) -> Self + public func registerView(selector: VideoSDKRTC.InstrumentSelector, view: VideoSDKRTC.StableView) -> Self + public func registerMetricReader(reader: any VideoSDKRTC.StableMetricReader) -> Self + public func build() -> VideoSDKRTC.StableMeterProviderSdk + @objc deinit +} +@_hasMissingDesignatedInitializers public class MeterProviderError : Swift.Error { + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableMeterProviderSdk : VideoSDKRTC.StableMeterProvider { + public func get(name: Swift.String) -> any VideoSDKRTC.StableMeter + public func meterBuilder(name: Swift.String) -> any VideoSDKRTC.MeterBuilder + public static func builder() -> VideoSDKRTC.StableMeterProviderBuilder + public func shutdown() -> VideoSDKRTC.ExportResult + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public class MeterProviderSharedState { + public init(clock: any VideoSDKRTC.Clock, resource: VideoSDKRTC.Resource, startEpochNanos: Swift.UInt64, exemplarFilter: any VideoSDKRTC.ExemplarFilter) + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var startEpochNanos: Swift.UInt64 { + get + } + public var exemplarFilter: any VideoSDKRTC.ExemplarFilter { + get + } + @objc deinit +} +public enum MetricDataType { + case LongGauge + case DoubleGauge + case LongSum + case DoubleSum + case Summary + case Histogram + case ExponentialHistogram + public static func == (a: VideoSDKRTC.MetricDataType, b: VideoSDKRTC.MetricDataType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct StableMetricData : Swift.Equatable { + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var name: Swift.String { + get + } + public var description: Swift.String { + get + } + public var unit: Swift.String { + get + } + public var type: VideoSDKRTC.MetricDataType { + get + } + public var data: VideoSDKRTC.StableMetricData.Data { + get + } + public static let empty: VideoSDKRTC.StableMetricData + @_hasMissingDesignatedInitializers public class Data : Swift.Equatable { + public var points: [VideoSDKRTC.PointData] { + get + } + public static func == (lhs: VideoSDKRTC.StableMetricData.Data, rhs: VideoSDKRTC.StableMetricData.Data) -> Swift.Bool + @objc deinit + } + public static func == (lhs: VideoSDKRTC.StableMetricData, rhs: VideoSDKRTC.StableMetricData) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class StableHistogramData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableExponentialHistogramData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableGaugeData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableSumData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableSummaryData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +public protocol StableMetricExporter : VideoSDKRTC.AggregationTemporalitySelectorProtocol, VideoSDKRTC.DefaultAggregationSelector { + func export(metrics: [VideoSDKRTC.StableMetricData]) -> VideoSDKRTC.ExportResult + func flush() -> VideoSDKRTC.ExportResult + func shutdown() -> VideoSDKRTC.ExportResult +} +extension VideoSDKRTC.StableMetricExporter { + public func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +} +public protocol StableMetricReader : VideoSDKRTC.AggregationTemporalitySelectorProtocol, VideoSDKRTC.DefaultAggregationSelector { + func forceFlush() -> VideoSDKRTC.ExportResult + func shutdown() -> VideoSDKRTC.ExportResult + func register(registration: any VideoSDKRTC.CollectionRegistration) +} +@_hasMissingDesignatedInitializers public class StableObservableMeasurementSdk : VideoSDKRTC.ObservableLongMeasurement, VideoSDKRTC.ObservableDoubleMeasurement { + public var descriptor: VideoSDKRTC.InstrumentDescriptor { + get + } + public var storages: [VideoSDKRTC.AsynchronousMetricStorage] { + get + } + public func clearActiveReader() + public func record(value: Swift.Int) + public func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func record(value: Swift.Double) + public func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public class StablePeriodicMetricReaderBuilder { + public var exporter: any VideoSDKRTC.StableMetricExporter { + get + } + public var exporterInterval: Swift.Double { + get + } + public init(exporter: any VideoSDKRTC.StableMetricExporter) + public func setInterval(timeInterval: Foundation.TimeInterval) -> Self + public func build() -> VideoSDKRTC.StablePeriodicMetricReaderSdk + @objc deinit +} +@_hasMissingDesignatedInitializers public class StablePeriodicMetricReaderSdk : VideoSDKRTC.StableMetricReader { + @objc deinit + public func register(registration: any VideoSDKRTC.CollectionRegistration) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + public func getAggregationTemporality(for instrument: VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality + public func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +} +@_hasMissingDesignatedInitializers public class StableView { + public var name: Swift.String? { + get + } + public var description: Swift.String? { + get + } + public var aggregation: any VideoSDKRTC.Aggregation { + get + } + public var attributeProcessor: VideoSDKRTC.AttributeProcessor { + get + } + public static func builder() -> VideoSDKRTC.ViewBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableViewRegistry { + public func findViews(descriptor: VideoSDKRTC.InstrumentDescriptor, meterScope: VideoSDKRTC.InstrumentationScopeInfo) -> [VideoSDKRTC.RegisteredView] + @objc deinit +} +public enum Status : Swift.Equatable { + case ok + case unset + case error(description: Swift.String) + public var isOk: Swift.Bool { + get + } + public var isError: Swift.Bool { + get + } + public var name: Swift.String { + get + } + public var code: Swift.Int { + get + } + public static func == (a: VideoSDKRTC.Status, b: VideoSDKRTC.Status) -> Swift.Bool +} +extension VideoSDKRTC.Status : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} +extension VideoSDKRTC.Status : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct StringUtils { + public static func isPrintableString(_ string: Swift.String) -> Swift.Bool + public static func isValidMetricName(_ metricName: Swift.String) -> Swift.Bool +} +public enum Google_Protobuf_NullValue : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case nullValue + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_NullValue] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_NullValue] +} +public struct Google_Protobuf_Struct { + public var fields: [Swift.String : VideoSDKRTC.Google_Protobuf_Value] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Value { + public var kind: VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind? + public var nullValue: VideoSDKRTC.Google_Protobuf_NullValue { + get + set + } + public var numberValue: Swift.Double { + get + set + } + public var stringValue: Swift.String { + get + set + } + public var boolValue: Swift.Bool { + get + set + } + public var structValue: VideoSDKRTC.Google_Protobuf_Struct { + get + set + } + public var listValue: VideoSDKRTC.Google_Protobuf_ListValue { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Kind : Swift.Equatable { + case nullValue(VideoSDKRTC.Google_Protobuf_NullValue) + case numberValue(Swift.Double) + case stringValue(Swift.String) + case boolValue(Swift.Bool) + case structValue(VideoSDKRTC.Google_Protobuf_Struct) + case listValue(VideoSDKRTC.Google_Protobuf_ListValue) + public static func == (a: VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind, b: VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind) -> Swift.Bool + } + public init() +} +public struct Google_Protobuf_ListValue { + public var values: [VideoSDKRTC.Google_Protobuf_Value] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Struct : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ListValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_NullValue : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_Struct : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Struct, rhs: VideoSDKRTC.Google_Protobuf_Struct) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Value, rhs: VideoSDKRTC.Google_Protobuf_Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ListValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ListValue, rhs: VideoSDKRTC.Google_Protobuf_ListValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class SumAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.SumAggregation { + get + } + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + @objc deinit +} +@_hasMissingDesignatedInitializers public class SumAggregator { + final public let isMonotonic: Swift.Bool + @objc deinit +} +@_hasMissingDesignatedInitializers public class SummaryPointData : VideoSDKRTC.PointData { + public var count: Swift.UInt64 + public var sum: Swift.Double + public var values: [any VideoSDKRTC.ValueAtQuantile] + @objc deinit +} +extension Swift.Double { + public var toMilliseconds: Swift.UInt64 { + get + } + public var toMicroseconds: Swift.UInt64 { + get + } + public var toNanoseconds: Swift.UInt64 { + get + } + public static func fromMilliseconds(_ millis: Swift.Int64) -> Foundation.TimeInterval + public static func fromMicroseconds(_ micros: Swift.Int64) -> Foundation.TimeInterval + public static func fromNanoseconds(_ nanos: Swift.Int64) -> Foundation.TimeInterval +} +public protocol SwiftProtobufContiguousBytes { + init(repeating: Swift.UInt8, count: Swift.Int) + init(_ sequence: S) where S : Swift.Sequence, S.Element == Swift.UInt8 + var count: Swift.Int { get } + func withUnsafeBytes(_ body: (Swift.UnsafeRawBufferPointer) throws -> R) rethrows -> R + mutating func withUnsafeMutableBytes(_ body: (Swift.UnsafeMutableRawBufferPointer) throws -> R) rethrows -> R +} +extension Swift.Array : VideoSDKRTC.SwiftProtobufContiguousBytes where Element == Swift.UInt8 { +} +extension Foundation.Data : VideoSDKRTC.SwiftProtobufContiguousBytes { +} +@_hasMissingDesignatedInitializers public class SynchronousMetricStorage { + public var metricDescriptor: VideoSDKRTC.MetricDescriptor { + get + } + public func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + public func isEmpty() -> Swift.Bool + public func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public enum TextFormatDecodingError : Swift.Error { + case malformedText + case malformedNumber + case trailingGarbage + case truncated + case invalidUTF8 + case schemaMismatch + case missingFieldNames + case unknownField + case unrecognizedEnumValue + case conflictingOneOf + case internalExtensionError + case messageDepthLimit + public static func == (a: VideoSDKRTC.TextFormatDecodingError, b: VideoSDKRTC.TextFormatDecodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct TextFormatDecodingOptions : Swift.Sendable { + public var messageDepthLimit: Swift.Int + public init() +} +public struct TextFormatEncodingOptions : Swift.Sendable { + public var printUnknownFields: Swift.Bool + public init() +} +public protocol TextMapBaggagePropagator { + var fields: Swift.Set { get } + func inject(baggage: any VideoSDKRTC.Baggage, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + @discardableResult + func extract(carrier: [Swift.String : Swift.String], getter: G) -> (any VideoSDKRTC.Baggage)? where G : VideoSDKRTC.Getter +} +public protocol TextMapPropagator { + var fields: Swift.Set { get } + func inject(spanContext: VideoSDKRTC.SpanContext, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + @discardableResult + func extract(carrier: [Swift.String : Swift.String], getter: G) -> VideoSDKRTC.SpanContext? where G : VideoSDKRTC.Getter +} +public protocol Setter { + func set(carrier: inout [Swift.String : Swift.String], key: Swift.String, value: Swift.String) +} +public protocol Getter { + func get(carrier: [Swift.String : Swift.String], key: Swift.String) -> [Swift.String]? +} +public struct Google_Protobuf_Timestamp { + public var seconds: Swift.Int64 + public var nanos: Swift.Int32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Timestamp : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Timestamp : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Timestamp) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Opentelemetry_Proto_Trace_V1_TracesData { + public var resourceSpans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Trace_V1_ResourceSpans { + public var resource: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource { + get + set + } + public var hasResource: Swift.Bool { + get + } + public mutating func clearResource() + public var scopeSpans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Trace_V1_ScopeSpans { + public var scope: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope { + get + set + } + public var hasScope: Swift.Bool { + get + } + public mutating func clearScope() + public var spans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Trace_V1_Span { + public var traceID: Foundation.Data + public var spanID: Foundation.Data + public var traceState: Swift.String + public var parentSpanID: Foundation.Data + public var name: Swift.String + public var kind: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind + public var startTimeUnixNano: Swift.UInt64 + public var endTimeUnixNano: Swift.UInt64 + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var events: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event] + public var droppedEventsCount: Swift.UInt32 + public var links: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link] + public var droppedLinksCount: Swift.UInt32 + public var status: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status { + get + set + } + public var hasStatus: Swift.Bool { + get + } + public mutating func clearStatus() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum SpanKind : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unspecified + case `internal` + case server + case client + case producer + case consumer + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + } + public struct Event { + public var timeUnixNano: Swift.UInt64 + public var name: Swift.String + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public struct Link { + public var traceID: Foundation.Data + public var spanID: Foundation.Data + public var traceState: Swift.String + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind] +} +public struct Opentelemetry_Proto_Trace_V1_Status { + public var message: Swift.String + public var code: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum StatusCode : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unset + case ok + case error + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + } + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode] +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +public struct Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest { + public var resourceSpans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse { + public var partialSuccess: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess { + get + set + } + public var hasPartialSuccess: Swift.Bool { + get + } + public mutating func clearPartialSuccess() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess { + public var rejectedSpans: Swift.Int64 + public var errorMessage: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() } -extension Swift.String { - public func toJSON() -> [Swift.String : Any] +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest : @unchecked Swift.Sendable { } -extension Swift.Dictionary { - public func toJSONString() -> Swift.String +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse : @unchecked Swift.Sendable { } -extension Swift.Array { - public func toJSONString() -> Swift.String +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess : @unchecked Swift.Sendable { } -extension Swift.Encodable { - public func toJSON() -> [Swift.String : Any] - public func toJSONArray() -> [Any] +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -public struct LivestreamOutput : Swift.Codable { - public let url: Swift.String - public let streamKey: Swift.String - public init(url: Swift.String, streamKey: Swift.String) - public func encode(to encoder: Swift.Encoder) throws - public init(from decoder: Swift.Decoder) throws +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -@_hasMissingDesignatedInitializers public class MediaStream : Swift.Equatable { - public var id: Swift.String { +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess) -> Swift.Bool + public var hashValue: Swift.Int { get } - public var kind: VideoSDKRTC.MediaType { +} +public struct TraceFlags : Swift.Equatable, Swift.CustomStringConvertible, Swift.Codable { + public var byte: Swift.UInt8 { get } - public var track: WebRTC.RTCMediaStreamTrack { + public var hexString: Swift.String { get } - public var producer: Mediasoup.Producer? { + public init() + public init(fromByte src: Swift.UInt8) + public init(fromHexString hex: Swift.String, withOffset offset: Swift.Int = 0) + public var sampled: Swift.Bool { get } - public var consumer: Mediasoup.Consumer? { + public mutating func setIsSampled(_ isSampled: Swift.Bool) + public func settingIsSampled(_ isSampled: Swift.Bool) -> VideoSDKRTC.TraceFlags + public var description: Swift.String { get } - @objc deinit + public static func == (a: VideoSDKRTC.TraceFlags, b: VideoSDKRTC.TraceFlags) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -extension VideoSDKRTC.MediaStream { - public func pause() - public func resume() +public struct TraceId : Swift.Comparable, Swift.Hashable, Swift.CustomStringConvertible, Swift.Equatable, Swift.Codable { + public static let size: Swift.Int + public static let invalidId: Swift.UInt64 + public static let invalid: VideoSDKRTC.TraceId + public var idHi: Swift.UInt64 { + get + } + public var idLo: Swift.UInt64 { + get + } + public init(idHi: Swift.UInt64, idLo: Swift.UInt64) + public init() + public static func random() -> VideoSDKRTC.TraceId + public init(fromData data: Foundation.Data) + public init(fromBytes bytes: [Swift.UInt8]) + public init(fromBytes bytes: Swift.ArraySlice) + public init(fromBytes bytes: Swift.ArraySlice) + public func copyBytesTo(dest: inout Foundation.Data, destOffset: Swift.Int) + public func copyBytesTo(dest: inout [Swift.UInt8], destOffset: Swift.Int) + public func copyBytesTo(dest: inout Swift.ArraySlice, destOffset: Swift.Int) + public init(fromHexString hex: Swift.String, withOffset offset: Swift.Int = 0) + public var isValid: Swift.Bool { + get + } + public var hexString: Swift.String { + get + } + public var rawHigherLong: Swift.UInt64 { + get + } + public var rawLowerLong: Swift.UInt64 { + get + } + public var description: Swift.String { + get + } + public static func < (lhs: VideoSDKRTC.TraceId, rhs: VideoSDKRTC.TraceId) -> Swift.Bool + public static func == (lhs: VideoSDKRTC.TraceId, rhs: VideoSDKRTC.TraceId) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws } -extension VideoSDKRTC.MediaStream { - public static func == (lhs: VideoSDKRTC.MediaStream, rhs: VideoSDKRTC.MediaStream) -> Swift.Bool +public protocol Tracer : AnyObject { + func spanBuilder(spanName: Swift.String) -> any VideoSDKRTC.SpanBuilder } -public enum MediaType : Swift.Equatable { - case share - case state(value: Mediasoup.MediaKind) - public static func == (a: VideoSDKRTC.MediaType, b: VideoSDKRTC.MediaType) -> Swift.Bool +public protocol TracerProvider { + func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String?) -> any VideoSDKRTC.Tracer } -@_hasMissingDesignatedInitializers public class Meeting : Swift.Equatable { - public var id: Swift.String { +public class TracerProviderBuilder { + public var clock: any VideoSDKRTC.Clock { get } - public var localParticipant: VideoSDKRTC.Participant { + public var idGenerator: any VideoSDKRTC.IdGenerator { get } - public var participants: [Swift.String : VideoSDKRTC.Participant] { + public var resource: VideoSDKRTC.Resource { get } - public var pubsub: VideoSDKRTC.PubSub { + public var spanLimits: VideoSDKRTC.SpanLimits { get } - public var customVideoMediaStream: VideoSDKRTC.CustomRTCMediaStream? { + public var sampler: any VideoSDKRTC.Sampler { + get + } + public var spanProcessors: [any VideoSDKRTC.SpanProcessor] { get } + public init() + public func with(clock: any VideoSDKRTC.Clock) -> Self + public func with(idGenerator: any VideoSDKRTC.IdGenerator) -> Self + public func with(resource: VideoSDKRTC.Resource) -> Self + public func with(spanLimits: VideoSDKRTC.SpanLimits) -> Self + public func with(sampler: any VideoSDKRTC.Sampler) -> Self + public func add(spanProcessor: any VideoSDKRTC.SpanProcessor) -> Self + public func add(spanProcessors: [any VideoSDKRTC.SpanProcessor]) -> Self + public func build() -> VideoSDKRTC.TracerProviderSdk @objc deinit } -extension VideoSDKRTC.Meeting { - public func join(cameraPosition: AVFoundation.AVCaptureDevice.Position) - public func leave() - public func end() - public func enableWebcam(customVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil) - public func disableWebcam() - public func switchWebcam() - public func muteMic() - public func unmuteMic() - public func startRecording(webhookUrl: Swift.String) - public func stopRecording() - public func startLivestream(outputs: [VideoSDKRTC.LivestreamOutput]) - public func stopLivestream() +public class TracerProviderSdk : VideoSDKRTC.TracerProvider { + public init(clock: any VideoSDKRTC.Clock = MillisClock(), idGenerator: any VideoSDKRTC.IdGenerator = RandomIdGenerator(), resource: VideoSDKRTC.Resource = EnvVarResource.get(), spanLimits: VideoSDKRTC.SpanLimits = SpanLimits(), sampler: any VideoSDKRTC.Sampler = Samplers.parentBased(root: Samplers.alwaysOn), spanProcessors: [any VideoSDKRTC.SpanProcessor] = []) + @objc deinit + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Tracer + public func getActiveClock() -> any VideoSDKRTC.Clock + public func updateActiveClock(_ newClock: any VideoSDKRTC.Clock) + public func getActiveIdGenerator() -> any VideoSDKRTC.IdGenerator + public func updateActiveIdGenerator(_ newGenerator: any VideoSDKRTC.IdGenerator) + public func getActiveResource() -> VideoSDKRTC.Resource + public func updateActiveResource(_ newResource: VideoSDKRTC.Resource) + public func getActiveSpanLimits() -> VideoSDKRTC.SpanLimits + public func updateActiveSpanLimits(_ spanLimits: VideoSDKRTC.SpanLimits) + public func getActiveSampler() -> any VideoSDKRTC.Sampler + public func updateActiveSampler(_ newSampler: any VideoSDKRTC.Sampler) + public func getActiveSpanProcessors() -> [any VideoSDKRTC.SpanProcessor] + public func addSpanProcessor(_ spanProcessor: any VideoSDKRTC.SpanProcessor) + public func resetSpanProcessors() + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) } -extension VideoSDKRTC.Meeting { - public func addEventListener(_ meetingEventListener: VideoSDKRTC.MeetingEventListener) - public func removeEventListener(_ meetingEventListener: VideoSDKRTC.MeetingEventListener) +@_hasMissingDesignatedInitializers public class TracerSdk : VideoSDKRTC.Tracer { + final public let instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo + public func spanBuilder(spanName: Swift.String) -> any VideoSDKRTC.SpanBuilder + @objc deinit } -extension VideoSDKRTC.Meeting { - public static func == (lhs: VideoSDKRTC.Meeting, rhs: VideoSDKRTC.Meeting) -> Swift.Bool +public struct TraceState : Swift.Equatable, Swift.Codable { + public var entries: [VideoSDKRTC.TraceState.Entry] { + get + } + public init() + public init?(entries: [VideoSDKRTC.TraceState.Entry]) + public func get(key: Swift.String) -> Swift.String? + public func setting(key: Swift.String, value: Swift.String) -> VideoSDKRTC.TraceState + public func removing(key: Swift.String) -> VideoSDKRTC.TraceState + public struct Entry : Swift.Equatable, Swift.Codable { + public var key: Swift.String { + get + } + public var value: Swift.String { + get + } + public init?(key: Swift.String, value: Swift.String) + public static func == (a: VideoSDKRTC.TraceState.Entry, b: VideoSDKRTC.TraceState.Entry) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } + public static func == (a: VideoSDKRTC.TraceState, b: VideoSDKRTC.TraceState) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public protocol MeetingEventListener : AnyObject { - func onMeetingJoined() - func onMeetingLeft() - func onParticipantJoined(_ participant: VideoSDKRTC.Participant) - func onParticipantLeft(_ participant: VideoSDKRTC.Participant) - func onRecordingStarted() - func onRecordingStoppped() - func onLivestreamStarted() - func onLivestreamStopped() - func onSpeakerChanged(participantId: Swift.String?) - func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) - func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) +public enum Google_Protobuf_Syntax : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case proto2 + case proto3 + case editions + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_Syntax] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_Syntax] } -extension VideoSDKRTC.MeetingEventListener { - public func onMeetingJoined() - public func onMeetingLeft() - public func onParticipantJoined(_ participant: VideoSDKRTC.Participant) - public func onParticipantLeft(_ participant: VideoSDKRTC.Participant) - public func onRecordingStarted() - public func onRecordingStoppped() - public func onLivestreamStarted() - public func onLivestreamStopped() - public func onSpeakerChanged(participantId: Swift.String?) - public func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) - public func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) +public struct Google_Protobuf_Type { + public var name: Swift.String + public var fields: [VideoSDKRTC.Google_Protobuf_Field] + public var oneofs: [Swift.String] + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var sourceContext: VideoSDKRTC.Google_Protobuf_SourceContext { + get + set + } + public var hasSourceContext: Swift.Bool { + get + } + public mutating func clearSourceContext() + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var edition: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() } -@_hasMissingDesignatedInitializers public class Participant : Swift.Equatable { - public var id: Swift.String { +public struct Google_Protobuf_Field { + public var kind: VideoSDKRTC.Google_Protobuf_Field.Kind + public var cardinality: VideoSDKRTC.Google_Protobuf_Field.Cardinality + public var number: Swift.Int32 + public var name: Swift.String + public var typeURL: Swift.String + public var oneofIndex: Swift.Int32 + public var packed: Swift.Bool + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var jsonName: Swift.String + public var defaultValue: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum Kind : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case typeUnknown + case typeDouble + case typeFloat + case typeInt64 + case typeUint64 + case typeInt32 + case typeFixed64 + case typeFixed32 + case typeBool + case typeString + case typeGroup + case typeMessage + case typeBytes + case typeUint32 + case typeEnum + case typeSfixed32 + case typeSfixed64 + case typeSint32 + case typeSint64 + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_Field.Kind] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_Field.Kind] + } + public enum Cardinality : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case optional + case required + case repeated + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_Field.Cardinality] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_Field.Cardinality] + } + public init() +} +public struct Google_Protobuf_Enum { + public var name: Swift.String + public var enumvalue: [VideoSDKRTC.Google_Protobuf_EnumValue] + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var sourceContext: VideoSDKRTC.Google_Protobuf_SourceContext { get + set } - public var displayName: Swift.String { + public var hasSourceContext: Swift.Bool { get } - public var videoQuality: VideoSDKRTC.VideoQuality { + public mutating func clearSourceContext() + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var edition: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_EnumValue { + public var name: Swift.String + public var number: Swift.Int32 + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Option { + public var name: Swift.String + public var value: VideoSDKRTC.Google_Protobuf_Any { get + set } - public var isLocal: Swift.Bool { + public var hasValue: Swift.Bool { get } - public var streams: [Swift.String : VideoSDKRTC.MediaStream] { + public mutating func clearValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Type : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Field : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Enum : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Option : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Syntax : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_Type : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Type, rhs: VideoSDKRTC.Google_Protobuf_Type) -> Swift.Bool + public var hashValue: Swift.Int { get } - @objc deinit } -extension VideoSDKRTC.Participant { - public func enableMic() - public func disableMic() - public func enableWebcam() - public func disableWebcam() - public func remove() +extension VideoSDKRTC.Google_Protobuf_Field : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Field, rhs: VideoSDKRTC.Google_Protobuf_Field) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -extension VideoSDKRTC.Participant { - public func addStream(_ stream: VideoSDKRTC.MediaStream) - @discardableResult - public func removeStream(_ streamId: Swift.String) -> VideoSDKRTC.MediaStream? - public func removeAllStreams() - public func setQuality(_ quality: VideoSDKRTC.VideoQuality) +extension VideoSDKRTC.Google_Protobuf_Field.Kind : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap } -extension VideoSDKRTC.Participant { - public func addEventListener(_ listener: VideoSDKRTC.ParticipantEventListener) - public func removeEventListener(_ listener: VideoSDKRTC.ParticipantEventListener) +extension VideoSDKRTC.Google_Protobuf_Field.Cardinality : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap } -extension VideoSDKRTC.Participant { - public static func == (lhs: VideoSDKRTC.Participant, rhs: VideoSDKRTC.Participant) -> Swift.Bool +extension VideoSDKRTC.Google_Protobuf_Enum : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Enum, rhs: VideoSDKRTC.Google_Protobuf_Enum) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -public protocol ParticipantEventListener { - func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) - func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +extension VideoSDKRTC.Google_Protobuf_EnumValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumValue, rhs: VideoSDKRTC.Google_Protobuf_EnumValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -extension VideoSDKRTC.ParticipantEventListener { - public func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) - public func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +extension VideoSDKRTC.Google_Protobuf_Option : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Option, rhs: VideoSDKRTC.Google_Protobuf_Option) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -@_hasMissingDesignatedInitializers public class PubSub { +@available(*, deprecated, message: "Use MetricProcessorSdk instead") +public class UngroupedBatcher : VideoSDKRTC.MetricProcessor { + public init() + public func finishCollectionCycle() -> [VideoSDKRTC.Metric] + public func process(metric: VideoSDKRTC.Metric) @objc deinit } -extension VideoSDKRTC.PubSub { - public func publish(topic: Swift.String, message: Swift.String, options: [Swift.String : Any] = [:]) - public func subscribe(topic: Swift.String, forListener listener: VideoSDKRTC.PubSubMessageListener) - public func unsubscribe(topic: Swift.String, forListener listener: VideoSDKRTC.PubSubMessageListener) - public func getMessagesForTopic(_ topic: Swift.String) -> [VideoSDKRTC.PubSubMessage] +public struct UnknownStorage : Swift.Equatable, @unchecked Swift.Sendable { + public var data: Foundation.Data { + get + } + public init() + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (a: VideoSDKRTC.UnknownStorage, b: VideoSDKRTC.UnknownStorage) -> Swift.Bool } -@objc @_hasMissingDesignatedInitializers public class PubSubMessage : ObjectiveC.NSObject { - public var id: Swift.String - public var topic: Swift.String - public var message: Swift.String - public var senderId: Swift.String - public var senderName: Swift.String - public var timestamp: Swift.String - @objc deinit +public protocol ValueAtQuantile { + func quantile() -> Swift.Double + func value() -> Swift.Double } -public protocol PubSubMessageListener { - func onMessageReceived(_ message: VideoSDKRTC.PubSubMessage) +public struct Version { + public static let major: Swift.Int + public static let minor: Swift.Int + public static let revision: Swift.Int + public static let versionString: Swift.String } public enum VideoQuality : Swift.String, Swift.CaseIterable { case high, medium, low @@ -234,15 +8420,424 @@ public enum VideoQuality : Swift.String, Swift.CaseIterable { } @_hasMissingDesignatedInitializers final public class VideoSDK { public static func config(token: Swift.String) - public static func initMeeting(meetingId: Swift.String, participantId: Swift.String = "", participantName: Swift.String = "Guest", micEnabled: Swift.Bool = true, webcamEnabled: Swift.Bool = true, customCameraVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil) -> VideoSDKRTC.Meeting + public static func initMeeting(meetingId: Swift.String, participantId: Swift.String = "", participantName: Swift.String = "Guest", micEnabled: Swift.Bool = true, webcamEnabled: Swift.Bool = true, customCameraVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil, mode: VideoSDKRTC.Mode? = .CONFERENCE) -> VideoSDKRTC.Meeting public static func createCameraVideoTrack(encoderConfig: VideoSDKRTC.CustomVideoTrackConfig? = .h360p_w640p, facingMode: AVFoundation.AVCaptureDevice.Position? = .front, multiStream: Swift.Bool? = true) throws -> VideoSDKRTC.CustomRTCMediaStream? @objc deinit } +extension VideoSDKRTC.VideoSDK { + public static func getAudioPermissionStatus() -> VideoSDKRTC.authorisationStatus + public static func getVideoPermissionStatus() -> VideoSDKRTC.authorisationStatus + public static func getAudioPermission() + public static func getVideoPermission() + public static func getCameras() -> [Swift.String] + public static func getAudioDevices() -> [Swift.String] +} +@_hasMissingDesignatedInitializers public class ViewBuilder { + public func withName(name: Swift.String) -> Self + public func withDescription(description: Swift.String) -> Self + public func withAggregation(aggregation: any VideoSDKRTC.Aggregation) -> Self + public func addAttributeFilter(keyFilter: @escaping (Swift.String) -> Swift.Bool) -> Self + public func addAttributeProcessor(processor: VideoSDKRTC.AttributeProcessor) -> Self + public func build() -> VideoSDKRTC.StableView + @objc deinit +} +public protocol Visitor { + mutating func visitSingularFloatField(value: Swift.Float, fieldNumber: Swift.Int) throws + mutating func visitSingularDoubleField(value: Swift.Double, fieldNumber: Swift.Int) throws + mutating func visitSingularInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + mutating func visitSingularInt64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + mutating func visitSingularUInt32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + mutating func visitSingularUInt64Field(value: Swift.UInt64, fieldNumber: Swift.Int) throws + mutating func visitSingularSInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + mutating func visitSingularSInt64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + mutating func visitSingularFixed32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + mutating func visitSingularFixed64Field(value: Swift.UInt64, fieldNumber: Swift.Int) throws + mutating func visitSingularSFixed32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + mutating func visitSingularSFixed64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + mutating func visitSingularBoolField(value: Swift.Bool, fieldNumber: Swift.Int) throws + mutating func visitSingularStringField(value: Swift.String, fieldNumber: Swift.Int) throws + mutating func visitSingularBytesField(value: Foundation.Data, fieldNumber: Swift.Int) throws + mutating func visitSingularEnumField(value: E, fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + mutating func visitSingularMessageField(value: M, fieldNumber: Swift.Int) throws where M : VideoSDKRTC.Message + mutating func visitSingularGroupField(value: G, fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + mutating func visitRepeatedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + mutating func visitRepeatedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + mutating func visitRepeatedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + mutating func visitRepeatedStringField(value: [Swift.String], fieldNumber: Swift.Int) throws + mutating func visitRepeatedBytesField(value: [Foundation.Data], fieldNumber: Swift.Int) throws + mutating func visitRepeatedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + mutating func visitRepeatedMessageField(value: [M], fieldNumber: Swift.Int) throws where M : VideoSDKRTC.Message + mutating func visitRepeatedGroupField(value: [G], fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + mutating func visitPackedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + mutating func visitPackedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + mutating func visitPackedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitPackedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitPackedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitPackedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitPackedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitPackedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitPackedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitPackedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitPackedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitPackedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitPackedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + mutating func visitPackedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + mutating func visitMapField(fieldType: VideoSDKRTC._ProtobufMap.Type, value: VideoSDKRTC._ProtobufMap.BaseType, fieldNumber: Swift.Int) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.MapValueType + mutating func visitMapField(fieldType: VideoSDKRTC._ProtobufEnumMap.Type, value: VideoSDKRTC._ProtobufEnumMap.BaseType, fieldNumber: Swift.Int) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.Enum, ValueType.RawValue == Swift.Int + mutating func visitMapField(fieldType: VideoSDKRTC._ProtobufMessageMap.Type, value: VideoSDKRTC._ProtobufMessageMap.BaseType, fieldNumber: Swift.Int) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : Swift.Hashable, ValueType : VideoSDKRTC.Message + mutating func visitExtensionFields(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws + mutating func visitExtensionFieldsAsMessageSet(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws + mutating func visitUnknown(bytes: Foundation.Data) throws +} +extension VideoSDKRTC.Visitor { + public mutating func visitSingularFloatField(value: Swift.Float, fieldNumber: Swift.Int) throws + public mutating func visitSingularInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + public mutating func visitSingularUInt32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + public mutating func visitSingularSInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + public mutating func visitSingularSInt64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + public mutating func visitSingularFixed32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + public mutating func visitSingularFixed64Field(value: Swift.UInt64, fieldNumber: Swift.Int) throws + public mutating func visitSingularSFixed32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + public mutating func visitSingularSFixed64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + public mutating func visitRepeatedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedStringField(value: [Swift.String], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedBytesField(value: [Foundation.Data], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + public mutating func visitRepeatedMessageField(value: [M], fieldNumber: Swift.Int) throws where M : VideoSDKRTC.Message + public mutating func visitRepeatedGroupField(value: [G], fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + public mutating func visitPackedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + public mutating func visitPackedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + public mutating func visitPackedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitPackedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitPackedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitPackedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitPackedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitPackedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitPackedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitPackedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitPackedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitPackedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitPackedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + public mutating func visitPackedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + public mutating func visitSingularGroupField(value: G, fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + public mutating func visitExtensionFieldsAsMessageSet(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws + public mutating func visitExtensionFields(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws +} +public struct W3CBaggagePropagator : VideoSDKRTC.TextMapBaggagePropagator { + public init() + public let fields: Swift.Set + public func inject(baggage: any VideoSDKRTC.Baggage, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + public func extract(carrier: [Swift.String : Swift.String], getter: G) -> (any VideoSDKRTC.Baggage)? where G : VideoSDKRTC.Getter +} +public struct W3CTraceContextPropagator : VideoSDKRTC.TextMapPropagator { + public init() + public let fields: Swift.Set + public func inject(spanContext: VideoSDKRTC.SpanContext, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + public func extract(carrier: [Swift.String : Swift.String], getter: G) -> VideoSDKRTC.SpanContext? where G : VideoSDKRTC.Getter +} +public struct Google_Protobuf_DoubleValue { + public var value: Swift.Double + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_FloatValue { + public var value: Swift.Float + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Int64Value { + public var value: Swift.Int64 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_UInt64Value { + public var value: Swift.UInt64 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Int32Value { + public var value: Swift.Int32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_UInt32Value { + public var value: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_BoolValue { + public var value: Swift.Bool + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_StringValue { + public var value: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_BytesValue { + public var value: Foundation.Data + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_DoubleValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FloatValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Int64Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UInt64Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Int32Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UInt32Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_BoolValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_StringValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_BytesValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DoubleValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DoubleValue, rhs: VideoSDKRTC.Google_Protobuf_DoubleValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FloatValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FloatValue, rhs: VideoSDKRTC.Google_Protobuf_FloatValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Int64Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Int64Value, rhs: VideoSDKRTC.Google_Protobuf_Int64Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_UInt64Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UInt64Value, rhs: VideoSDKRTC.Google_Protobuf_UInt64Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Int32Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Int32Value, rhs: VideoSDKRTC.Google_Protobuf_Int32Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_UInt32Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UInt32Value, rhs: VideoSDKRTC.Google_Protobuf_UInt32Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_BoolValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_BoolValue, rhs: VideoSDKRTC.Google_Protobuf_BoolValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_StringValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_StringValue, rhs: VideoSDKRTC.Google_Protobuf_StringValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_BytesValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_BytesValue, rhs: VideoSDKRTC.Google_Protobuf_BytesValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.AggregationTemporality : Swift.Equatable {} +extension VideoSDKRTC.AggregationTemporality : Swift.Hashable {} +extension VideoSDKRTC.AggregationType : Swift.Equatable {} +extension VideoSDKRTC.AggregationType : Swift.Hashable {} +extension VideoSDKRTC.AggregationType : Swift.RawRepresentable {} +extension VideoSDKRTC.AnyUnpackError : Swift.Equatable {} +extension VideoSDKRTC.AnyUnpackError : Swift.Hashable {} +extension VideoSDKRTC.BinaryDecodingError : Swift.Equatable {} +extension VideoSDKRTC.BinaryDecodingError : Swift.Hashable {} +extension VideoSDKRTC.BinaryDelimited.Error : Swift.Equatable {} +extension VideoSDKRTC.BinaryDelimited.Error : Swift.Hashable {} +extension VideoSDKRTC.BinaryEncodingError : Swift.Equatable {} +extension VideoSDKRTC.BinaryEncodingError : Swift.Hashable {} extension VideoSDKRTC.CameraPosition : Swift.Equatable {} extension VideoSDKRTC.CameraPosition : Swift.Hashable {} extension VideoSDKRTC.CameraPosition : Swift.RawRepresentable {} extension VideoSDKRTC.CustomVideoTrackConfig : Swift.Equatable {} extension VideoSDKRTC.CustomVideoTrackConfig : Swift.Hashable {} +extension VideoSDKRTC.EmptyMetricStorage : VideoSDKRTC.MetricStorage {} +extension VideoSDKRTC.EmptyMetricStorage : VideoSDKRTC.WritableMetricStorage {} +extension VideoSDKRTC.ExportResult : Swift.Equatable {} +extension VideoSDKRTC.ExportResult : Swift.Hashable {} +extension VideoSDKRTC.ConfigLayoutPriority : Swift.Equatable {} +extension VideoSDKRTC.ConfigLayoutPriority : Swift.Hashable {} +extension VideoSDKRTC.ConfigLayoutPriority : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigLayoutGrid : Swift.Equatable {} +extension VideoSDKRTC.ConfigLayoutGrid : Swift.Hashable {} +extension VideoSDKRTC.ConfigLayoutGrid : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigTheme : Swift.Equatable {} +extension VideoSDKRTC.ConfigTheme : Swift.Hashable {} +extension VideoSDKRTC.ConfigTheme : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigMode : Swift.Equatable {} +extension VideoSDKRTC.ConfigMode : Swift.Hashable {} +extension VideoSDKRTC.ConfigMode : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigQuality : Swift.Equatable {} +extension VideoSDKRTC.ConfigQuality : Swift.Hashable {} +extension VideoSDKRTC.ConfigQuality : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigOrientation : Swift.Equatable {} +extension VideoSDKRTC.ConfigOrientation : Swift.Hashable {} +extension VideoSDKRTC.ConfigOrientation : Swift.RawRepresentable {} +extension VideoSDKRTC.InstrumentType : Swift.Equatable {} +extension VideoSDKRTC.InstrumentType : Swift.Hashable {} +extension VideoSDKRTC.InstrumentValueType : Swift.Equatable {} +extension VideoSDKRTC.InstrumentValueType : Swift.Hashable {} +extension VideoSDKRTC.JSONEncodingError : Swift.Equatable {} +extension VideoSDKRTC.JSONEncodingError : Swift.Hashable {} +extension VideoSDKRTC.authorisationStatus : Swift.Equatable {} +extension VideoSDKRTC.authorisationStatus : Swift.Hashable {} +extension VideoSDKRTC.MeetingState : Swift.Equatable {} +extension VideoSDKRTC.MeetingState : Swift.Hashable {} +extension VideoSDKRTC.MeetingState : Swift.RawRepresentable {} +extension VideoSDKRTC.Mode : Swift.Equatable {} +extension VideoSDKRTC.Mode : Swift.Hashable {} +extension VideoSDKRTC.Mode : Swift.RawRepresentable {} +extension VideoSDKRTC.VideoSDKError : Swift.Equatable {} +extension VideoSDKRTC.VideoSDKError : Swift.Hashable {} +extension VideoSDKRTC.VideoSDKError : Swift.RawRepresentable {} +extension VideoSDKRTC.HLSState : Swift.Equatable {} +extension VideoSDKRTC.HLSState : Swift.Hashable {} +extension VideoSDKRTC.HLSState : Swift.RawRepresentable {} +extension VideoSDKRTC.RecordingState : Swift.Equatable {} +extension VideoSDKRTC.RecordingState : Swift.Hashable {} +extension VideoSDKRTC.RecordingState : Swift.RawRepresentable {} +extension VideoSDKRTC.LiveStreamState : Swift.Equatable {} +extension VideoSDKRTC.LiveStreamState : Swift.Hashable {} +extension VideoSDKRTC.LiveStreamState : Swift.RawRepresentable {} +extension VideoSDKRTC.MetricExporterResultCode : Swift.Equatable {} +extension VideoSDKRTC.MetricExporterResultCode : Swift.Hashable {} +extension VideoSDKRTC.OpenTelemetryContextKeys : Swift.Equatable {} +extension VideoSDKRTC.OpenTelemetryContextKeys : Swift.Hashable {} +extension VideoSDKRTC.OpenTelemetryContextKeys : Swift.RawRepresentable {} +extension VideoSDKRTC.PinType : Swift.Equatable {} +extension VideoSDKRTC.PinType : Swift.Hashable {} +extension VideoSDKRTC.PinType : Swift.RawRepresentable {} +extension VideoSDKRTC.ResourceAttributes : Swift.Equatable {} +extension VideoSDKRTC.ResourceAttributes : Swift.Hashable {} +extension VideoSDKRTC.ResourceAttributes : Swift.RawRepresentable {} +extension VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues : Swift.Equatable {} +extension VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues : Swift.Hashable {} +extension VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.FaasTriggerValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.FaasTriggerValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.FaasTriggerValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.MessageTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.MessageTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.MessageTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.Severity : Swift.Hashable {} +extension VideoSDKRTC.Severity : Swift.RawRepresentable {} +extension VideoSDKRTC.SpanExporterResultCode : Swift.Equatable {} +extension VideoSDKRTC.SpanExporterResultCode : Swift.Hashable {} +extension VideoSDKRTC.SpanKind : Swift.Hashable {} +extension VideoSDKRTC.SpanKind : Swift.RawRepresentable {} +extension VideoSDKRTC.MetricDataType : Swift.Equatable {} +extension VideoSDKRTC.MetricDataType : Swift.Hashable {} +extension VideoSDKRTC.SynchronousMetricStorage : VideoSDKRTC.MetricStorage {} +extension VideoSDKRTC.SynchronousMetricStorage : VideoSDKRTC.WritableMetricStorage {} +extension VideoSDKRTC.TextFormatDecodingError : Swift.Equatable {} +extension VideoSDKRTC.TextFormatDecodingError : Swift.Hashable {} extension VideoSDKRTC.VideoQuality : Swift.Equatable {} extension VideoSDKRTC.VideoQuality : Swift.Hashable {} extension VideoSDKRTC.VideoQuality : Swift.RawRepresentable {} diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios.swiftdoc b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios.swiftdoc index a01cfdf..8c9e41c 100644 Binary files a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios.swiftdoc and b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios.swiftinterface b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios.swiftinterface index 1642267..d9f40b5 100644 --- a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios.swiftinterface +++ b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,16 +1,554 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) +// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) // swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name VideoSDKRTC // swift-module-flags-ignorable: -enable-bare-slash-regex import AVFoundation +import AVKit +import CoreMedia +import Darwin +import Dispatch import Foundation import Mediasoup +import ReplayKit import Swift +import UIKit @_exported import VideoSDKRTC import VideosdkWebSocket import WebRTC import _Concurrency import _StringProcessing +import _SwiftConcurrencyShims +import os.activity +import os.log +import os +public enum Aggregations { + public static func drop() -> any VideoSDKRTC.Aggregation + public static func defaultAggregation() -> any VideoSDKRTC.Aggregation + public static func sum() -> any VideoSDKRTC.Aggregation + public static func lastValue() -> any VideoSDKRTC.Aggregation + public static func explicitBucketHistogram() -> any VideoSDKRTC.Aggregation + public static func explicitBucketHistogram(buckets: [Swift.Double]) -> any VideoSDKRTC.Aggregation +} +public typealias AggregationResolver = (VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +public protocol DefaultAggregationSelector { + func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +} +@_hasMissingDesignatedInitializers public class AggregationSelector : VideoSDKRTC.DefaultAggregationSelector { + public static let instance: VideoSDKRTC.AggregationSelector + final public let selector: VideoSDKRTC.AggregationResolver + public func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation + public static func defaultSelector() -> VideoSDKRTC.AggregationResolver + public func with(instrumentType: VideoSDKRTC.InstrumentType, aggregation: any VideoSDKRTC.Aggregation) -> VideoSDKRTC.AggregationResolver + @objc deinit +} +public protocol AggregationTemporalitySelectorProtocol { + func getAggregationTemporality(for instrument: VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality +} +@_hasMissingDesignatedInitializers public class AggregationTemporalitySelector : VideoSDKRTC.AggregationTemporalitySelectorProtocol { + public func getAggregationTemporality(for instrument: VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality + public var aggregationTemporalitySelector: (VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality + @objc deinit +} +public enum AggregationTemporality { + case delta + case cumulative + public static func alwaysCumulative() -> VideoSDKRTC.AggregationTemporalitySelector + public static func deltaPreferred() -> VideoSDKRTC.AggregationTemporalitySelector + public static func == (a: VideoSDKRTC.AggregationTemporality, b: VideoSDKRTC.AggregationTemporality) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public enum AggregationType : Swift.String, Swift.Codable { + case intGauge + case doubleGauge + case doubleSum + case intSum + case doubleSummary + case intSummary + case doubleHistogram + case intHistogram + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +@_hasMissingDesignatedInitializers public class Aggregator { + public func update(value: T) + public func checkpoint() + public func toMetricData() -> any VideoSDKRTC.MetricData + public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public protocol Aggregation : AnyObject { + func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class AggregatorHandle { + public func aggregateThenMaybeReset(startEpochNano: Swift.UInt64, endEpochNano: Swift.UInt64, attributes: [Swift.String : VideoSDKRTC.AttributeValue], reset: Swift.Bool) -> VideoSDKRTC.PointData + public func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordLong(value: Swift.Int) + public func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordDouble(value: Swift.Double) + @objc deinit +} +public struct Google_Protobuf_Any { + public var typeURL: Swift.String { + get + set + } + public var value: Foundation.Data { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Any : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Any : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Any, rhs: VideoSDKRTC.Google_Protobuf_Any) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public enum AnyUnpackError : Swift.Error { + case typeMismatch + case malformedWellKnownTypeJSON + case malformedAnyField + public static func == (a: VideoSDKRTC.AnyUnpackError, b: VideoSDKRTC.AnyUnpackError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct Google_Protobuf_Api { + public var name: Swift.String + public var methods: [VideoSDKRTC.Google_Protobuf_Method] + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var version: Swift.String + public var sourceContext: VideoSDKRTC.Google_Protobuf_SourceContext { + get + set + } + public var hasSourceContext: Swift.Bool { + get + } + public mutating func clearSourceContext() + public var mixins: [VideoSDKRTC.Google_Protobuf_Mixin] + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Method { + public var name: Swift.String + public var requestTypeURL: Swift.String + public var requestStreaming: Swift.Bool + public var responseTypeURL: Swift.String + public var responseStreaming: Swift.Bool + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Mixin { + public var name: Swift.String + public var root: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Api : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Method : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Mixin : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Api : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Api, rhs: VideoSDKRTC.Google_Protobuf_Api) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Method : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Method, rhs: VideoSDKRTC.Google_Protobuf_Method) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Mixin : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Mixin, rhs: VideoSDKRTC.Google_Protobuf_Mixin) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol APIDoubleObserverMetricHandle { + func observe(value: Swift.Double) +} +public protocol APIIntObserverMetricHandle { + func observe(value: Swift.Int) +} +public struct ArrayWithCapacity { + public let capacity: Swift.Int + public init(capacity: Swift.Int) + public mutating func append(_ item: T) +} +extension VideoSDKRTC.ArrayWithCapacity : Swift.MutableCollection { + public var startIndex: Swift.Int { + get + } + public var endIndex: Swift.Int { + get + } + public subscript(index: Swift.Int) -> T { + get + set + } + public func index(after i: Swift.Int) -> Swift.Int + public typealias Element = T + public typealias Index = Swift.Int + public typealias Indices = Swift.DefaultIndices> + public typealias Iterator = Swift.IndexingIterator> + public typealias SubSequence = Swift.Slice> +} +@_hasMissingDesignatedInitializers public class AsynchronousMetricStorage : VideoSDKRTC.MetricStorage { + public var registeredReader: VideoSDKRTC.RegisteredReader { + get + } + public var metricDescriptor: VideoSDKRTC.MetricDescriptor { + get + } + public func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + public func isEmpty() -> Swift.Bool + @objc deinit +} +#if compiler(>=5.3) && $RethrowsProtocol +@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +extension _Concurrency.AsyncSequence where Self.Element == Swift.UInt8 { + @inlinable public func binaryProtobufDelimitedMessages(of messageType: M.Type = M.self, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) -> VideoSDKRTC.AsyncMessageSequence where M : VideoSDKRTC.Message { + AsyncMessageSequence( + base: self, + extensions: extensions, + partial: partial, + options: options + ) + } +} +#endif +#if compiler(>=5.3) && $RethrowsProtocol +@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +public struct AsyncMessageSequence : _Concurrency.AsyncSequence where Base : _Concurrency.AsyncSequence, M : VideoSDKRTC.Message, Base.Element == Swift.UInt8 { + public typealias Element = M + public init(base: Base, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) + public struct AsyncIterator : _Concurrency.AsyncIteratorProtocol { + @usableFromInline + internal var iterator: Base.AsyncIterator? + @usableFromInline + internal let extensions: (any VideoSDKRTC.ExtensionMap)? + @usableFromInline + internal let partial: Swift.Bool + @usableFromInline + internal let options: VideoSDKRTC.BinaryDecodingOptions + #if compiler(>=5.3) && $AsyncAwait + @inlinable internal mutating func nextVarInt() async throws -> Swift.UInt64? { + var messageSize: UInt64 = 0 + var shift: UInt64 = 0 + + while let byte = try await iterator?.next() { + messageSize |= UInt64(byte & 0x7f) << shift + shift += UInt64(7) + if shift > 35 { + iterator = nil + throw BinaryDelimited.Error.malformedLength + } + if (byte & 0x80 == 0) { + return messageSize + } + } + if (shift > 0) { + // The stream has ended inside a varint. + iterator = nil + throw BinaryDelimited.Error.truncated + } + return nil // End of stream reached. + } + #endif + #if compiler(>=5.3) && $AsyncAwait + @usableFromInline + internal mutating func readBytes(_ size: Swift.Int) async throws -> [Swift.UInt8] + #endif + #if compiler(>=5.3) && $AsyncAwait + @inlinable public mutating func next() async throws -> M? { + guard let messageSize = try await nextVarInt() else { + iterator = nil + return nil + } + guard messageSize <= UInt64(0x7fffffff) else { + iterator = nil + throw BinaryDecodingError.tooLarge + } + if messageSize == 0 { + return try M( + serializedBytes: [], + extensions: extensions, + partial: partial, + options: options + ) + } + let buffer = try await readBytes(Int(messageSize)) + return try M( + serializedBytes: buffer, + extensions: extensions, + partial: partial, + options: options + ) + } + #endif + public typealias Element = M + } + public func makeAsyncIterator() -> VideoSDKRTC.AsyncMessageSequence.AsyncIterator +} +#endif +#if compiler(>=5.3) && $RethrowsProtocol +@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +extension VideoSDKRTC.AsyncMessageSequence : Swift.Sendable where Base : Swift.Sendable { +} +#endif +#if compiler(>=5.3) && $RethrowsProtocol +@available(*, unavailable) +extension VideoSDKRTC.AsyncMessageSequence.AsyncIterator : Swift.Sendable { +} +#endif +public protocol AttributeProcessorProtocol { + func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] +} +@_hasMissingDesignatedInitializers public class AttributeProcessor : VideoSDKRTC.AttributeProcessorProtocol { + public func then(other: VideoSDKRTC.AttributeProcessor) -> VideoSDKRTC.AttributeProcessor + public func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] + public static func filterByKeyName(nameFilter: @escaping (Swift.String) -> Swift.Bool) -> VideoSDKRTC.AttributeProcessor + public static func append(attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.AttributeProcessor + @objc deinit +} +@_hasMissingDesignatedInitializers public class JoinedAttributeProcessor : VideoSDKRTC.AttributeProcessor { + override public func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] + override public func then(other: VideoSDKRTC.AttributeProcessor) -> VideoSDKRTC.AttributeProcessor + public func prepend(processor: VideoSDKRTC.AttributeProcessor) -> VideoSDKRTC.AttributeProcessor + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class NoopAttributeProcessor : VideoSDKRTC.AttributeProcessor { + override public func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] + @objc deinit +} +public struct AttributesDictionary { + public init(capacity: Swift.Int, valueLengthLimit: Swift.Int = Int.max) + public subscript(key: Swift.String) -> VideoSDKRTC.AttributeValue? { + get + set + } + @discardableResult + public mutating func updateValue(value: VideoSDKRTC.AttributeValue, forKey key: Swift.String) -> VideoSDKRTC.AttributeValue? + public mutating func updateValues(attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public mutating func updateValues(attributes: VideoSDKRTC.AttributesDictionary) + public mutating func removeValueForKey(key: Swift.String) -> VideoSDKRTC.AttributeValue? + public mutating func removeAll(keepCapacity: Swift.Int) + public var count: Swift.Int { + get + } + public var numberOfDroppedAttributes: Swift.Int { + get + } + public var values: [VideoSDKRTC.AttributeValue] { + get + } +} +extension VideoSDKRTC.AttributesDictionary : Swift.Sequence { + public func makeIterator() -> VideoSDKRTC.AttributesWithCapacityIterator + public typealias Element = (Swift.String, VideoSDKRTC.AttributeValue) + public typealias Iterator = VideoSDKRTC.AttributesWithCapacityIterator +} +public struct AttributesWithCapacityIterator : Swift.IteratorProtocol { + public mutating func next() -> (Swift.String, VideoSDKRTC.AttributeValue)? + public typealias Element = (Swift.String, VideoSDKRTC.AttributeValue) +} +@_hasMissingDesignatedInitializers open class AttributeSet : Swift.Hashable, Swift.Codable { + public var labels: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public static var empty: VideoSDKRTC.AttributeSet + required public init(labels: [Swift.String : VideoSDKRTC.AttributeValue]) + public static func == (lhs: VideoSDKRTC.AttributeSet, rhs: VideoSDKRTC.AttributeSet) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + @objc deinit + open func encode(to encoder: any Swift.Encoder) throws + open var hashValue: Swift.Int { + get + } + required public init(from decoder: any Swift.Decoder) throws +} +public enum AttributeValue : Swift.Equatable, Swift.CustomStringConvertible, Swift.Hashable { + case string(Swift.String) + case bool(Swift.Bool) + case int(Swift.Int) + case double(Swift.Double) + case stringArray([Swift.String]) + case boolArray([Swift.Bool]) + case intArray([Swift.Int]) + case doubleArray([Swift.Double]) + case set(VideoSDKRTC.AttributeSet) + public var description: Swift.String { + get + } + public init?(_ value: Any) + public static func == (a: VideoSDKRTC.AttributeValue, b: VideoSDKRTC.AttributeValue) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.AttributeValue { + public init(_ value: Swift.String) + public init(_ value: Swift.Bool) + public init(_ value: Swift.Int) + public init(_ value: Swift.Double) + public init(_ value: [Swift.String]) + public init(_ value: [Swift.Int]) + public init(_ value: [Swift.Double]) + public init(_ value: VideoSDKRTC.AttributeSet) +} +extension VideoSDKRTC.AttributeValue : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public protocol Baggage : AnyObject { + static func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder + func getEntries() -> [VideoSDKRTC.Entry] + func getEntryValue(key: VideoSDKRTC.EntryKey) -> VideoSDKRTC.EntryValue? +} +public func == (lhs: any VideoSDKRTC.Baggage, rhs: any VideoSDKRTC.Baggage) -> Swift.Bool +public protocol BaggageBuilder : AnyObject { + @discardableResult + func setParent(_ parent: (any VideoSDKRTC.Baggage)?) -> Self + @discardableResult + func setNoParent() -> Self + @discardableResult + func put(key: VideoSDKRTC.EntryKey, value: VideoSDKRTC.EntryValue, metadata: VideoSDKRTC.EntryMetadata?) -> Self + @discardableResult + func remove(key: VideoSDKRTC.EntryKey) -> Self + func build() -> any VideoSDKRTC.Baggage +} +public protocol BaggageManager : AnyObject { + func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder +} +public class BatchLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public init(logRecordExporter: any VideoSDKRTC.LogRecordExporter, scheduleDelay: Foundation.TimeInterval = 5, exportTimeout: Foundation.TimeInterval = 30, maxQueueSize: Swift.Int = 2048, maxExportBatchSize: Swift.Int = 512, willExportCallback: ((inout [VideoSDKRTC.ReadableLogRecord]) -> Swift.Void)? = nil) + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func forceFlush(timeout: Foundation.TimeInterval?) + public func shutdown() -> VideoSDKRTC.ExportResult + @objc deinit +} +public struct BatchSpanProcessor : VideoSDKRTC.SpanProcessor { + public init(spanExporter: any VideoSDKRTC.SpanExporter, scheduleDelay: Foundation.TimeInterval = 5, exportTimeout: Foundation.TimeInterval = 30, maxQueueSize: Swift.Int = 2048, maxExportBatchSize: Swift.Int = 512, willExportCallback: ((inout [VideoSDKRTC.SpanData]) -> Swift.Void)? = nil) + public let isStartRequired: Swift.Bool + public let isEndRequired: Swift.Bool + public func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + public func onEnd(span: any VideoSDKRTC.ReadableSpan) + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) +} +public enum BinaryDecodingError : Swift.Error { + case trailingGarbage + case truncated + case invalidUTF8 + case malformedProtobuf + case missingRequiredFields + case internalExtensionError + case messageDepthLimit + case tooLarge + public static func == (a: VideoSDKRTC.BinaryDecodingError, b: VideoSDKRTC.BinaryDecodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct BinaryDecodingOptions : Swift.Sendable { + public var messageDepthLimit: Swift.Int + public var discardUnknownFields: Swift.Bool + public init() +} +public enum BinaryDelimited { + public enum Error : Swift.Error { + case unknownStreamError + case truncated + case tooLarge + case malformedLength + case noBytesAvailable + public static func == (a: VideoSDKRTC.BinaryDelimited.Error, b: VideoSDKRTC.BinaryDelimited.Error) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } + public static func serialize(message: any VideoSDKRTC.Message, to stream: Foundation.OutputStream, partial: Swift.Bool = false) throws + public static func parse(messageType: M.Type, from stream: Foundation.InputStream, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws -> M where M : VideoSDKRTC.Message + public static func merge(into message: inout M, from stream: Foundation.InputStream, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws where M : VideoSDKRTC.Message +} +public enum BinaryEncodingError : Swift.Error { + case anyTranscodeFailure + case missingRequiredFields + case tooLarge + public static func == (a: VideoSDKRTC.BinaryEncodingError, b: VideoSDKRTC.BinaryEncodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +open class BoundCounterMetric { + public init() + open func add(value: T) + @objc deinit +} +open class BoundHistogramMetric { + public init(explicitBoundaries: Swift.Array? = nil) + open func record(value: T) + @objc deinit +} +open class BoundMeasureMetric { + public init() + open func record(value: T) + @objc deinit +} +open class BoundRawCounterMetric { + public init() + open func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date) + @objc deinit +} +open class BoundRawHistogramMetric { + public init() + open func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T) + @objc deinit +} +@_hasMissingDesignatedInitializers public class CallbackRegistration { + public func execute(reader: VideoSDKRTC.RegisteredReader, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) + @objc deinit +} public enum CameraPosition : Swift.Int { case back case front @@ -21,6 +559,197 @@ public enum CameraPosition : Swift.Int { get } } +public protocol Clock : AnyObject { + var now: Foundation.Date { get } +} +extension VideoSDKRTC.Clock { + public var nanoTime: Swift.UInt64 { + get + } +} +public func == (lhs: any VideoSDKRTC.Clock, rhs: any VideoSDKRTC.Clock) -> Swift.Bool +public protocol CollectionRegistration { +} +public struct Opentelemetry_Proto_Common_V1_AnyValue { + public var value: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value? + public var stringValue: Swift.String { + get + set + } + public var boolValue: Swift.Bool { + get + set + } + public var intValue: Swift.Int64 { + get + set + } + public var doubleValue: Swift.Double { + get + set + } + public var arrayValue: VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue { + get + set + } + public var kvlistValue: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList { + get + set + } + public var bytesValue: Foundation.Data { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Value : Swift.Equatable { + case stringValue(Swift.String) + case boolValue(Swift.Bool) + case intValue(Swift.Int64) + case doubleValue(Swift.Double) + case arrayValue(VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue) + case kvlistValue(VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList) + case bytesValue(Foundation.Data) + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value) -> Swift.Bool + } + public init() +} +public struct Opentelemetry_Proto_Common_V1_ArrayValue { + public var values: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Common_V1_KeyValueList { + public var values: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Common_V1_KeyValue { + public var key: Swift.String + public var value: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue { + get + set + } + public var hasValue: Swift.Bool { + get + } + public mutating func clearValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Common_V1_InstrumentationScope { + public var name: Swift.String + public var version: Swift.String + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct CommonAdapter { + public static func toProtoAttribute(key: Swift.String, attributeValue: VideoSDKRTC.AttributeValue) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue + public static func toProtoInstrumentationScope(instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope +} +public protocol ContextManager : AnyObject { + func getCurrentContextValue(forKey: VideoSDKRTC.OpenTelemetryContextKeys) -> Swift.AnyObject? + func setCurrentContextValue(forKey: VideoSDKRTC.OpenTelemetryContextKeys, value: Swift.AnyObject) + func removeContextValue(forKey: VideoSDKRTC.OpenTelemetryContextKeys, value: Swift.AnyObject) +} +public protocol ContextPropagators { + var textMapPropagator: any VideoSDKRTC.TextMapPropagator { get } + var textMapBaggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator { get } +} +public protocol CounterMetric { + associatedtype T + func add(value: Self.T, labelset: VideoSDKRTC.LabelSet) + func add(value: Self.T, labels: [Swift.String : Swift.String]) + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundCounterMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundCounterMetric +} +public struct AnyCounterMetric : VideoSDKRTC.CounterMetric { + public init(_ countable: U) where T == U.T, U : VideoSDKRTC.CounterMetric + public func add(value: T, labelset: VideoSDKRTC.LabelSet) + public func add(value: T, labels: [Swift.String : Swift.String]) + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundCounterMetric +} +public struct NoopCounterMetric : VideoSDKRTC.CounterMetric { + public init() + public func add(value: T, labelset: VideoSDKRTC.LabelSet) + public func add(value: T, labels: [Swift.String : Swift.String]) + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundCounterMetric +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class CounterSumAggregator : VideoSDKRTC.Aggregator where T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +@_hasMissingDesignatedInitializers public class CustomRTCMediaStream { + @objc deinit +} public enum CustomVideoTrackConfig { case h90p_w160p, h180p_w320p, h216p_w384p, h360p_w640p, h540p_w960p, h720p_w1280p, h1080p_w1920p, h1440p_w2560p, h2160p_w3840p, h120p_w160p, h180p_w240p, h240p_w320p, h360p_w480p, h480p_w640p, h540p_w720p, h720p_w960p, h1080p_w1440p, h1440p_w1920p public static func == (a: VideoSDKRTC.CustomVideoTrackConfig, b: VideoSDKRTC.CustomVideoTrackConfig) -> Swift.Bool @@ -29,196 +758,7653 @@ public enum CustomVideoTrackConfig { get } } -@_hasMissingDesignatedInitializers public class CustomRTCMediaStream { - @objc deinit -} -extension Foundation.Data { - public func toJSONString() -> Swift.String - public func toJSON() -> [Swift.String : Any] - public func toJSONArray() -> [Any] +@_hasMissingDesignatedInitializers public class DefaultAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.DefaultAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +final public class DefaultBaggage : VideoSDKRTC.Baggage, Swift.Equatable { + public init(entries: [VideoSDKRTC.EntryKey : VideoSDKRTC.Entry?]) + public static func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder + final public func getEntries() -> [VideoSDKRTC.Entry] + final public func getEntryValue(key: VideoSDKRTC.EntryKey) -> VideoSDKRTC.EntryValue? + public static func == (lhs: VideoSDKRTC.DefaultBaggage, rhs: VideoSDKRTC.DefaultBaggage) -> Swift.Bool + @objc deinit +} +public class DefaultBaggageBuilder : VideoSDKRTC.BaggageBuilder { + public init() + @discardableResult + public func setParent(_ parent: (any VideoSDKRTC.Baggage)?) -> Self + @discardableResult + public func setNoParent() -> Self + @discardableResult + public func put(key: VideoSDKRTC.EntryKey, value: VideoSDKRTC.EntryValue, metadata: VideoSDKRTC.EntryMetadata?) -> Self + @discardableResult + public func put(key: Swift.String, value: Swift.String, metadata: Swift.String? = nil) -> Self + @discardableResult + public func remove(key: VideoSDKRTC.EntryKey) -> Self + public func build() -> any VideoSDKRTC.Baggage + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultBaggageManager : VideoSDKRTC.BaggageManager { + public static var instance: VideoSDKRTC.DefaultBaggageManager + public func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder + public func getCurrentBaggage() -> (any VideoSDKRTC.Baggage)? + @objc deinit +} +public struct DefaultContextPropagators : VideoSDKRTC.ContextPropagators { + public var textMapPropagator: any VideoSDKRTC.TextMapPropagator + public var textMapBaggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator + public init() + public init(textPropagators: [any VideoSDKRTC.TextMapPropagator], baggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator) + public mutating func addTextMapPropagator(textFormat: any VideoSDKRTC.TextMapPropagator) +} +@_hasMissingDesignatedInitializers public class DefaultLogger : VideoSDKRTC.Logger { + public func eventBuilder(name: Swift.String) -> any VideoSDKRTC.EventBuilder + public func logRecordBuilder() -> any VideoSDKRTC.LogRecordBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultLoggerProvider : VideoSDKRTC.LoggerProvider { + public static let instance: any VideoSDKRTC.LoggerProvider + public func get(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.Logger + public func loggerBuilder(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.LoggerBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultMeterProvider : VideoSDKRTC.MeterProvider { + public static var instance: any VideoSDKRTC.MeterProvider + public static func setDefault(meterFactory: any VideoSDKRTC.MeterProvider) + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Meter + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultStableMeter : VideoSDKRTC.StableMeter { + public func counterBuilder(name: Swift.String) -> any VideoSDKRTC.LongCounterBuilder + public func upDownCounterBuilder(name: Swift.String) -> any VideoSDKRTC.LongUpDownCounterBuilder + public func histogramBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleHistogramBuilder + public func gaugeBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleGaugeBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultStableMeterProvider : VideoSDKRTC.StableMeterProvider { + public static func noop() -> any VideoSDKRTC.MeterBuilder + public func get(name: Swift.String) -> any VideoSDKRTC.StableMeter + public func meterBuilder(name: Swift.String) -> any VideoSDKRTC.MeterBuilder + public static var instance: any VideoSDKRTC.StableMeterProvider + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultTracer : VideoSDKRTC.Tracer { + public static var instance: VideoSDKRTC.DefaultTracer + public func spanBuilder(spanName: Swift.String) -> any VideoSDKRTC.SpanBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultTracerProvider : VideoSDKRTC.TracerProvider { + public static let instance: VideoSDKRTC.DefaultTracerProvider + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Tracer + @objc deinit +} +public struct Google_Protobuf_FileDescriptorSet { + public var file: [VideoSDKRTC.Google_Protobuf_FileDescriptorProto] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_FileDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var package: Swift.String { + get + set + } + public var hasPackage: Swift.Bool { + get + } + public mutating func clearPackage() + public var dependency: [Swift.String] + public var publicDependency: [Swift.Int32] + public var weakDependency: [Swift.Int32] + public var messageType: [VideoSDKRTC.Google_Protobuf_DescriptorProto] + public var enumType: [VideoSDKRTC.Google_Protobuf_EnumDescriptorProto] + public var service: [VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto] + public var `extension`: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_FileOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var sourceCodeInfo: VideoSDKRTC.Google_Protobuf_SourceCodeInfo { + get + set + } + public var hasSourceCodeInfo: Swift.Bool { + get + } + public mutating func clearSourceCodeInfo() + public var syntax: Swift.String { + get + set + } + public var hasSyntax: Swift.Bool { + get + } + public mutating func clearSyntax() + public var edition: Swift.String { + get + set + } + public var hasEdition: Swift.Bool { + get + } + public mutating func clearEdition() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_DescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var field: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto] + public var `extension`: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto] + public var nestedType: [VideoSDKRTC.Google_Protobuf_DescriptorProto] + public var enumType: [VideoSDKRTC.Google_Protobuf_EnumDescriptorProto] + public var extensionRange: [VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange] + public var oneofDecl: [VideoSDKRTC.Google_Protobuf_OneofDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_MessageOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var reservedRange: [VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange] + public var reservedName: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct ExtensionRange { + public var start: Swift.Int32 { + get + set + } + public var hasStart: Swift.Bool { + get + } + public mutating func clearStart() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var options: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public struct ReservedRange { + public var start: Swift.Int32 { + get + set + } + public var hasStart: Swift.Bool { + get + } + public mutating func clearStart() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_ExtensionRangeOptions : VideoSDKRTC.ExtensibleMessage { + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var declaration: [VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration] + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var verification: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState { + get + set + } + public var hasVerification: Swift.Bool { + get + } + public mutating func clearVerification() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum VerificationState : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case declaration + case unverified + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState] + public static var allCases: [VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState] { + get + } + } + public struct Declaration { + public var number: Swift.Int32 { + get + set + } + public var hasNumber: Swift.Bool { + get + } + public mutating func clearNumber() + public var fullName: Swift.String { + get + set + } + public var hasFullName: Swift.Bool { + get + } + public mutating func clearFullName() + public var type: Swift.String { + get + set + } + public var hasType: Swift.Bool { + get + } + public mutating func clearType() + public var reserved: Swift.Bool { + get + set + } + public var hasReserved: Swift.Bool { + get + } + public mutating func clearReserved() + public var repeated: Swift.Bool { + get + set + } + public var hasRepeated: Swift.Bool { + get + } + public mutating func clearRepeated() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_FieldDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var number: Swift.Int32 { + get + set + } + public var hasNumber: Swift.Bool { + get + } + public mutating func clearNumber() + public var label: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label { + get + set + } + public var hasLabel: Swift.Bool { + get + } + public mutating func clearLabel() + public var type: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum { + get + set + } + public var hasType: Swift.Bool { + get + } + public mutating func clearType() + public var typeName: Swift.String { + get + set + } + public var hasTypeName: Swift.Bool { + get + } + public mutating func clearTypeName() + public var extendee: Swift.String { + get + set + } + public var hasExtendee: Swift.Bool { + get + } + public mutating func clearExtendee() + public var defaultValue: Swift.String { + get + set + } + public var hasDefaultValue: Swift.Bool { + get + } + public mutating func clearDefaultValue() + public var oneofIndex: Swift.Int32 { + get + set + } + public var hasOneofIndex: Swift.Bool { + get + } + public mutating func clearOneofIndex() + public var jsonName: Swift.String { + get + set + } + public var hasJsonName: Swift.Bool { + get + } + public mutating func clearJsonName() + public var options: VideoSDKRTC.Google_Protobuf_FieldOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var proto3Optional: Swift.Bool { + get + set + } + public var hasProto3Optional: Swift.Bool { + get + } + public mutating func clearProto3Optional() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum TypeEnum : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case double + case float + case int64 + case uint64 + case int32 + case fixed64 + case fixed32 + case bool + case string + case group + case message + case bytes + case uint32 + case `enum` + case sfixed32 + case sfixed64 + case sint32 + case sint64 + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum] { + get + } + } + public enum Label : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case optional + case required + case repeated + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label] { + get + } + } + public init() +} +public struct Google_Protobuf_OneofDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var options: VideoSDKRTC.Google_Protobuf_OneofOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_EnumDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var value: [VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_EnumOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var reservedRange: [VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange] + public var reservedName: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct EnumReservedRange { + public var start: Swift.Int32 { + get + set + } + public var hasStart: Swift.Bool { + get + } + public mutating func clearStart() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_EnumValueDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var number: Swift.Int32 { + get + set + } + public var hasNumber: Swift.Bool { + get + } + public mutating func clearNumber() + public var options: VideoSDKRTC.Google_Protobuf_EnumValueOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_ServiceDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var method: [VideoSDKRTC.Google_Protobuf_MethodDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_ServiceOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_MethodDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var inputType: Swift.String { + get + set + } + public var hasInputType: Swift.Bool { + get + } + public mutating func clearInputType() + public var outputType: Swift.String { + get + set + } + public var hasOutputType: Swift.Bool { + get + } + public mutating func clearOutputType() + public var options: VideoSDKRTC.Google_Protobuf_MethodOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var clientStreaming: Swift.Bool { + get + set + } + public var hasClientStreaming: Swift.Bool { + get + } + public mutating func clearClientStreaming() + public var serverStreaming: Swift.Bool { + get + set + } + public var hasServerStreaming: Swift.Bool { + get + } + public mutating func clearServerStreaming() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_FileOptions : VideoSDKRTC.ExtensibleMessage { + public var javaPackage: Swift.String { + get + set + } + public var hasJavaPackage: Swift.Bool { + get + } + public mutating func clearJavaPackage() + public var javaOuterClassname: Swift.String { + get + set + } + public var hasJavaOuterClassname: Swift.Bool { + get + } + public mutating func clearJavaOuterClassname() + public var javaMultipleFiles: Swift.Bool { + get + set + } + public var hasJavaMultipleFiles: Swift.Bool { + get + } + public mutating func clearJavaMultipleFiles() + public var javaGenerateEqualsAndHash: Swift.Bool { + get + set + } + public var hasJavaGenerateEqualsAndHash: Swift.Bool { + get + } + public mutating func clearJavaGenerateEqualsAndHash() + public var javaStringCheckUtf8: Swift.Bool { + get + set + } + public var hasJavaStringCheckUtf8: Swift.Bool { + get + } + public mutating func clearJavaStringCheckUtf8() + public var optimizeFor: VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode { + get + set + } + public var hasOptimizeFor: Swift.Bool { + get + } + public mutating func clearOptimizeFor() + public var goPackage: Swift.String { + get + set + } + public var hasGoPackage: Swift.Bool { + get + } + public mutating func clearGoPackage() + public var ccGenericServices: Swift.Bool { + get + set + } + public var hasCcGenericServices: Swift.Bool { + get + } + public mutating func clearCcGenericServices() + public var javaGenericServices: Swift.Bool { + get + set + } + public var hasJavaGenericServices: Swift.Bool { + get + } + public mutating func clearJavaGenericServices() + public var pyGenericServices: Swift.Bool { + get + set + } + public var hasPyGenericServices: Swift.Bool { + get + } + public mutating func clearPyGenericServices() + public var phpGenericServices: Swift.Bool { + get + set + } + public var hasPhpGenericServices: Swift.Bool { + get + } + public mutating func clearPhpGenericServices() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var ccEnableArenas: Swift.Bool { + get + set + } + public var hasCcEnableArenas: Swift.Bool { + get + } + public mutating func clearCcEnableArenas() + public var objcClassPrefix: Swift.String { + get + set + } + public var hasObjcClassPrefix: Swift.Bool { + get + } + public mutating func clearObjcClassPrefix() + public var csharpNamespace: Swift.String { + get + set + } + public var hasCsharpNamespace: Swift.Bool { + get + } + public mutating func clearCsharpNamespace() + public var swiftPrefix: Swift.String { + get + set + } + public var hasSwiftPrefix: Swift.Bool { + get + } + public mutating func clearSwiftPrefix() + public var phpClassPrefix: Swift.String { + get + set + } + public var hasPhpClassPrefix: Swift.Bool { + get + } + public mutating func clearPhpClassPrefix() + public var phpNamespace: Swift.String { + get + set + } + public var hasPhpNamespace: Swift.Bool { + get + } + public mutating func clearPhpNamespace() + public var phpMetadataNamespace: Swift.String { + get + set + } + public var hasPhpMetadataNamespace: Swift.Bool { + get + } + public mutating func clearPhpMetadataNamespace() + public var rubyPackage: Swift.String { + get + set + } + public var hasRubyPackage: Swift.Bool { + get + } + public mutating func clearRubyPackage() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OptimizeMode : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case speed + case codeSize + case liteRuntime + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode] { + get + } + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_MessageOptions : VideoSDKRTC.ExtensibleMessage { + public var messageSetWireFormat: Swift.Bool { + get + set + } + public var hasMessageSetWireFormat: Swift.Bool { + get + } + public mutating func clearMessageSetWireFormat() + public var noStandardDescriptorAccessor: Swift.Bool { + get + set + } + public var hasNoStandardDescriptorAccessor: Swift.Bool { + get + } + public mutating func clearNoStandardDescriptorAccessor() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var mapEntry: Swift.Bool { + get + set + } + public var hasMapEntry: Swift.Bool { + get + } + public mutating func clearMapEntry() + public var deprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + set + } + public var hasDeprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + } + public mutating func clearDeprecatedLegacyJsonFieldConflicts() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_FieldOptions : VideoSDKRTC.ExtensibleMessage { + public var ctype: VideoSDKRTC.Google_Protobuf_FieldOptions.CType { + get + set + } + public var hasCtype: Swift.Bool { + get + } + public mutating func clearCtype() + public var packed: Swift.Bool { + get + set + } + public var hasPacked: Swift.Bool { + get + } + public mutating func clearPacked() + public var jstype: VideoSDKRTC.Google_Protobuf_FieldOptions.JSType { + get + set + } + public var hasJstype: Swift.Bool { + get + } + public mutating func clearJstype() + public var lazy: Swift.Bool { + get + set + } + public var hasLazy: Swift.Bool { + get + } + public mutating func clearLazy() + public var unverifiedLazy: Swift.Bool { + get + set + } + public var hasUnverifiedLazy: Swift.Bool { + get + } + public mutating func clearUnverifiedLazy() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var weak: Swift.Bool { + get + set + } + public var hasWeak: Swift.Bool { + get + } + public mutating func clearWeak() + public var debugRedact: Swift.Bool { + get + set + } + public var hasDebugRedact: Swift.Bool { + get + } + public mutating func clearDebugRedact() + public var retention: VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention { + get + set + } + public var hasRetention: Swift.Bool { + get + } + public mutating func clearRetention() + public var targets: [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType] + public var editionDefaults: [VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault] + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum CType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case string + case cord + case stringPiece + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.CType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.CType] { + get + } + } + public enum JSType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case jsNormal + case jsString + case jsNumber + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.JSType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.JSType] { + get + } + } + public enum OptionRetention : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case retentionUnknown + case retentionRuntime + case retentionSource + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention] { + get + } + } + public enum OptionTargetType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case targetTypeUnknown + case targetTypeFile + case targetTypeExtensionRange + case targetTypeMessage + case targetTypeField + case targetTypeOneof + case targetTypeEnum + case targetTypeEnumEntry + case targetTypeService + case targetTypeMethod + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType] { + get + } + } + public struct EditionDefault { + public var edition: Swift.String { + get + set + } + public var hasEdition: Swift.Bool { + get + } + public mutating func clearEdition() + public var value: Swift.String { + get + set + } + public var hasValue: Swift.Bool { + get + } + public mutating func clearValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_OneofOptions : VideoSDKRTC.ExtensibleMessage { + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_EnumOptions : VideoSDKRTC.ExtensibleMessage { + public var allowAlias: Swift.Bool { + get + set + } + public var hasAllowAlias: Swift.Bool { + get + } + public mutating func clearAllowAlias() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var deprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + set + } + public var hasDeprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + } + public mutating func clearDeprecatedLegacyJsonFieldConflicts() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_EnumValueOptions : VideoSDKRTC.ExtensibleMessage { + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var debugRedact: Swift.Bool { + get + set + } + public var hasDebugRedact: Swift.Bool { + get + } + public mutating func clearDebugRedact() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_ServiceOptions : VideoSDKRTC.ExtensibleMessage { + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_MethodOptions : VideoSDKRTC.ExtensibleMessage { + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var idempotencyLevel: VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel { + get + set + } + public var hasIdempotencyLevel: Swift.Bool { + get + } + public mutating func clearIdempotencyLevel() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum IdempotencyLevel : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case idempotencyUnknown + case noSideEffects + case idempotent + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel] + public static var allCases: [VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel] { + get + } + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_UninterpretedOption { + public var name: [VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart] + public var identifierValue: Swift.String { + get + set + } + public var hasIdentifierValue: Swift.Bool { + get + } + public mutating func clearIdentifierValue() + public var positiveIntValue: Swift.UInt64 { + get + set + } + public var hasPositiveIntValue: Swift.Bool { + get + } + public mutating func clearPositiveIntValue() + public var negativeIntValue: Swift.Int64 { + get + set + } + public var hasNegativeIntValue: Swift.Bool { + get + } + public mutating func clearNegativeIntValue() + public var doubleValue: Swift.Double { + get + set + } + public var hasDoubleValue: Swift.Bool { + get + } + public mutating func clearDoubleValue() + public var stringValue: Foundation.Data { + get + set + } + public var hasStringValue: Swift.Bool { + get + } + public mutating func clearStringValue() + public var aggregateValue: Swift.String { + get + set + } + public var hasAggregateValue: Swift.Bool { + get + } + public mutating func clearAggregateValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct NamePart { + public var namePart: Swift.String { + get + set + } + public var hasNamePart: Swift.Bool { + get + } + public mutating func clearNamePart() + public var isExtension: Swift.Bool { + get + set + } + public var hasIsExtension: Swift.Bool { + get + } + public mutating func clearIsExtension() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_FeatureSet : VideoSDKRTC.ExtensibleMessage { + public var fieldPresence: VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence { + get + set + } + public var hasFieldPresence: Swift.Bool { + get + } + public mutating func clearFieldPresence() + public var enumType: VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType { + get + set + } + public var hasEnumType: Swift.Bool { + get + } + public mutating func clearEnumType() + public var repeatedFieldEncoding: VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding { + get + set + } + public var hasRepeatedFieldEncoding: Swift.Bool { + get + } + public mutating func clearRepeatedFieldEncoding() + public var stringFieldValidation: VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation { + get + set + } + public var hasStringFieldValidation: Swift.Bool { + get + } + public mutating func clearStringFieldValidation() + public var messageEncoding: VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding { + get + set + } + public var hasMessageEncoding: Swift.Bool { + get + } + public mutating func clearMessageEncoding() + public var jsonFormat: VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat { + get + set + } + public var hasJsonFormat: Swift.Bool { + get + } + public mutating func clearJsonFormat() + public var rawFeatures: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasRawFeatures: Swift.Bool { + get + } + public mutating func clearRawFeatures() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum FieldPresence : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case explicit + case implicit + case legacyRequired + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence] { + get + } + } + public enum EnumType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case open + case closed + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType] { + get + } + } + public enum RepeatedFieldEncoding : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case packed + case expanded + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding] { + get + } + } + public enum StringFieldValidation : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case mandatory + case hint + case none + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation] { + get + } + } + public enum MessageEncoding : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case lengthPrefixed + case delimited + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding] { + get + } + } + public enum JsonFormat : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case allow + case legacyBestEffort + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat] { + get + } + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_SourceCodeInfo { + public var location: [VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct Location { + public var path: [Swift.Int32] + public var span: [Swift.Int32] + public var leadingComments: Swift.String { + get + set + } + public var hasLeadingComments: Swift.Bool { + get + } + public mutating func clearLeadingComments() + public var trailingComments: Swift.String { + get + set + } + public var hasTrailingComments: Swift.Bool { + get + } + public mutating func clearTrailingComments() + public var leadingDetachedComments: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_GeneratedCodeInfo { + public var annotation: [VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct Annotation { + public var path: [Swift.Int32] + public var sourceFile: Swift.String { + get + set + } + public var hasSourceFile: Swift.Bool { + get + } + public mutating func clearSourceFile() + public var begin: Swift.Int32 { + get + set + } + public var hasBegin: Swift.Bool { + get + } + public mutating func clearBegin() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var semantic: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic { + get + set + } + public var hasSemantic: Swift.Bool { + get + } + public mutating func clearSemantic() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum Semantic : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case none + case set + case alias + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic] + public static var allCases: [VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic] { + get + } + } + public init() + } + public init() +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorSet : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_OneofDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_MethodDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FileOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_MessageOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_OneofOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumValueOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ServiceOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_MethodOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorSet : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FileDescriptorSet, rhs: VideoSDKRTC.Google_Protobuf_FileDescriptorSet) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FileDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_FileDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_DescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange, rhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange, rhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions, rhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration, rhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_OneofDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_OneofDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_OneofDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange, rhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_MethodDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_MethodDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_MethodDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FileOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FileOptions, rhs: VideoSDKRTC.Google_Protobuf_FileOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_MessageOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_MessageOptions, rhs: VideoSDKRTC.Google_Protobuf_MessageOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldOptions, rhs: VideoSDKRTC.Google_Protobuf_FieldOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.CType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.JSType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault, rhs: VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_OneofOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_OneofOptions, rhs: VideoSDKRTC.Google_Protobuf_OneofOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumOptions, rhs: VideoSDKRTC.Google_Protobuf_EnumOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumValueOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumValueOptions, rhs: VideoSDKRTC.Google_Protobuf_EnumValueOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ServiceOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ServiceOptions, rhs: VideoSDKRTC.Google_Protobuf_ServiceOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_MethodOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_MethodOptions, rhs: VideoSDKRTC.Google_Protobuf_MethodOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption, rhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart, rhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FeatureSet, rhs: VideoSDKRTC.Google_Protobuf_FeatureSet) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo, rhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location, rhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo, rhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation, rhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +public protocol DoubleCounter { + mutating func add(value: Swift.Double) + mutating func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol DoubleCounterBuilder : AnyObject { + func build() -> any VideoSDKRTC.DoubleCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleCounter +} +@_hasMissingDesignatedInitializers public class DoubleCounterMeterBuilderSdk : VideoSDKRTC.DoubleCounterBuilder { + public func build() -> any VideoSDKRTC.DoubleCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleCounter + @objc deinit +} +public enum HistogramAggregatorError : Swift.Error { + case unsupportedOperation(Swift.String) +} +public class DoubleExplicitBucketHistogramAggregator : VideoSDKRTC.StableAggregator { + public init(boundaries: [Swift.Double], reservoirSupplier: @escaping () -> VideoSDKRTC.ExemplarReservoir) + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol DoubleGaugeBuilder : AnyObject { + func ofLongs() -> any VideoSDKRTC.LongGaugeBuilder + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleGauge +} +@_hasMissingDesignatedInitializers public class DoubleGaugeBuilderSdk : VideoSDKRTC.DoubleGaugeBuilder { + public func ofLongs() -> any VideoSDKRTC.LongGaugeBuilder + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleGauge + @objc deinit +} +public protocol DoubleHistogram { + mutating func record(value: Swift.Double) + mutating func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol DoubleHistogramBuilder : AnyObject { + func ofLongs() -> any VideoSDKRTC.LongHistogramBuilder + func build() -> any VideoSDKRTC.DoubleHistogram +} +@_hasMissingDesignatedInitializers public class DoubleHistogramMeterBuilderSdk : VideoSDKRTC.DoubleHistogramBuilder { + public func ofLongs() -> any VideoSDKRTC.LongHistogramBuilder + public func build() -> any VideoSDKRTC.DoubleHistogram + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleHistogramMeterSdk : VideoSDKRTC.DoubleHistogram, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public var storage: any VideoSDKRTC.WritableMetricStorage + public func record(value: Swift.Double) + public func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleLastValueAggregator : VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol DoubleObserverMetric { + func observe(value: Swift.Double, labelset: VideoSDKRTC.LabelSet) + func observe(value: Swift.Double, labels: [Swift.String : Swift.String]) +} +public struct NoopDoubleObserverMetric : VideoSDKRTC.DoubleObserverMetric { + public init() + public func observe(value: Swift.Double, labelset: VideoSDKRTC.LabelSet) + public func observe(value: Swift.Double, labels: [Swift.String : Swift.String]) +} +@_hasMissingDesignatedInitializers public class DoublePointData : VideoSDKRTC.PointData { + public var value: Swift.Double + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleSumAggregator : VideoSDKRTC.SumAggregator, VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol DoubleUpDownCounter { + mutating func add(value: Swift.Double) + mutating func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol DoubleUpDownCounterBuilder : AnyObject { + func build() -> any VideoSDKRTC.DoubleUpDownCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleUpDownCounter +} +@_hasMissingDesignatedInitializers public class DoubleUpDownCounterBuilderSdk : VideoSDKRTC.DoubleUpDownCounterBuilder { + public func build() -> any VideoSDKRTC.DoubleUpDownCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleUpDownCounter + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleUpDownCounterSdk : VideoSDKRTC.DoubleUpDownCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor { + get + } + public func add(value: Swift.Double) + public func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_hasMissingDesignatedInitializers public class DropAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.DropAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +@_hasMissingDesignatedInitializers public class DropAggregator : VideoSDKRTC.StableAggregator { + public static var POINT_DATA: VideoSDKRTC.PointData { + get + } + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) -> VideoSDKRTC.PointData + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public struct Google_Protobuf_Duration { + public var seconds: Swift.Int64 + public var nanos: Swift.Int32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Duration : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Duration : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Google_Protobuf_Empty { + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Empty : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Empty : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Empty, rhs: VideoSDKRTC.Google_Protobuf_Empty) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class EmptyMetricStorage { + public func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public static var instance: VideoSDKRTC.EmptyMetricStorage + public var metricDescriptor: VideoSDKRTC.MetricDescriptor + public func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + public func isEmpty() -> Swift.Bool + @objc deinit +} +public struct Entry : Swift.Equatable, Swift.Comparable { + public var key: VideoSDKRTC.EntryKey { + get + } + public var value: VideoSDKRTC.EntryValue { + get + } + public var metadata: VideoSDKRTC.EntryMetadata? { + get + } + public init(key: VideoSDKRTC.EntryKey, value: VideoSDKRTC.EntryValue, metadata: VideoSDKRTC.EntryMetadata?) + public static func < (lhs: VideoSDKRTC.Entry, rhs: VideoSDKRTC.Entry) -> Swift.Bool + public static func == (a: VideoSDKRTC.Entry, b: VideoSDKRTC.Entry) -> Swift.Bool +} +public struct EntryKey : Swift.Equatable, Swift.Comparable, Swift.Hashable { + public var name: Swift.String { + get + } + public init?(name: Swift.String) + public static func < (lhs: VideoSDKRTC.EntryKey, rhs: VideoSDKRTC.EntryKey) -> Swift.Bool + public static func == (a: VideoSDKRTC.EntryKey, b: VideoSDKRTC.EntryKey) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct EntryMetadata : Swift.Equatable { + public var metadata: Swift.String + public init?(metadata: Swift.String?) + public static func == (a: VideoSDKRTC.EntryMetadata, b: VideoSDKRTC.EntryMetadata) -> Swift.Bool +} +public struct EntryValue : Swift.Equatable { + public var string: Swift.String { + get + } + public init?(string: Swift.String) + public static func == (a: VideoSDKRTC.EntryValue, b: VideoSDKRTC.EntryValue) -> Swift.Bool +} +public protocol Enum : Swift.CaseIterable, Swift.Hashable, Swift.RawRepresentable, Swift.Sendable { + init() + init?(rawValue: Swift.Int) + var rawValue: Swift.Int { get } +} +extension VideoSDKRTC.Enum { + public func hash(into hasher: inout Swift.Hasher) +} +public struct EnvironmentContextPropagator : VideoSDKRTC.TextMapPropagator { + public let fields: Swift.Set + public init() + public func inject(spanContext: VideoSDKRTC.SpanContext, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + public func extract(carrier: [Swift.String : Swift.String], getter: G) -> VideoSDKRTC.SpanContext? where G : VideoSDKRTC.Getter +} +public struct EnvVarHeaders { + public static let attributes: [(Swift.String, Swift.String)]? + public static func attributes(for rawEnvAttributes: Swift.String? = ProcessInfo.processInfo.environment["OTEL_EXPORTER_OTLP_HEADERS"]) -> [(Swift.String, Swift.String)]? +} +public struct EnvVarResource { + public static let resource: VideoSDKRTC.Resource + public static func get(environment: [Swift.String : Swift.String] = ProcessInfo.processInfo.environment) -> VideoSDKRTC.Resource +} +public protocol EventBuilder : VideoSDKRTC.LogRecordBuilder { + func setData(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self +} +@_hasMissingDesignatedInitializers public class ExemplarData : Swift.Equatable { + public var filteredAttributes: [Swift.String : VideoSDKRTC.AttributeValue] + public var epochNanos: Swift.UInt64 + public var spanContext: VideoSDKRTC.SpanContext? + public static func == (lhs: VideoSDKRTC.ExemplarData, rhs: VideoSDKRTC.ExemplarData) -> Swift.Bool + @objc deinit +} +@_hasMissingDesignatedInitializers final public class DoubleExemplarData : VideoSDKRTC.ExemplarData { + final public var value: Swift.Double + @objc deinit +} +@_hasMissingDesignatedInitializers final public class LongExemplarData : VideoSDKRTC.ExemplarData { + final public var value: Swift.Int + @objc deinit +} +public protocol ExemplarFilter { + func shouldSampleMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool + func shouldSampleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool +} +public struct AlwaysOnFilter : VideoSDKRTC.ExemplarFilter { + public func shouldSampleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool + public func shouldSampleMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool +} +public struct AlwaysOffFilter : VideoSDKRTC.ExemplarFilter { + public init() + public func shouldSampleMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool + public func shouldSampleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class ExemplarReservoir { + public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class NoopExemplarReservoir : VideoSDKRTC.ExemplarReservoir { + override public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + @objc deinit +} +public enum ExemplarReservoirCollection { +} +@_hasMissingDesignatedInitializers public class FixedSizedExemplarReservoir : VideoSDKRTC.ExemplarReservoir { + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + @objc deinit +} +@_hasMissingDesignatedInitializers public class RandomFixedSizedExemplarReservoir : VideoSDKRTC.FixedSizedExemplarReservoir { + @objc deinit +} +@_hasMissingDesignatedInitializers public class ExplicitBucketHistogramAggregation : VideoSDKRTC.Aggregation { + public static var DEFAULT_BOUNDARIES: [Swift.Double] { + get + } + public static var instance: VideoSDKRTC.ExplicitBucketHistogramAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +public protocol ExponentialHistogramBuckets { + var scale: Swift.Int { get } + var offset: Swift.Int { get } + var bucketCounts: [Swift.Int] { get } + var totalCount: Swift.Int { get } +} +public enum ExportResult { + case success + case failure + public static func == (a: VideoSDKRTC.ExportResult, b: VideoSDKRTC.ExportResult) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public protocol ExtensibleMessage : VideoSDKRTC.Message { + var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet { get set } +} +extension VideoSDKRTC.ExtensibleMessage { + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, value: F.ValueType) where F : VideoSDKRTC.ExtensionField + public func getExtensionValue(ext: VideoSDKRTC.MessageExtension) -> F.ValueType? where F : VideoSDKRTC.ExtensionField + public func hasExtensionValue(ext: VideoSDKRTC.MessageExtension) -> Swift.Bool where F : VideoSDKRTC.ExtensionField + public mutating func clearExtensionValue(ext: VideoSDKRTC.MessageExtension) where F : VideoSDKRTC.ExtensionField +} +extension VideoSDKRTC.ExtensibleMessage { + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [T.BaseType]) where T : VideoSDKRTC.FieldType + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [T.BaseType]) where T : VideoSDKRTC.FieldType + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [E]) where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [E]) where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [M]) where M : Swift.Equatable, M : VideoSDKRTC.Message + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [M]) where M : Swift.Hashable, M : VideoSDKRTC.Message +} +public protocol AnyExtensionField { + func hash(into hasher: inout Swift.Hasher) + var protobufExtension: any VideoSDKRTC.AnyMessageExtension { get } + func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + mutating func decodeExtensionField(decoder: inout T) throws where T : VideoSDKRTC.SPBDecoder + func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + var isInitialized: Swift.Bool { get } +} +extension VideoSDKRTC.AnyExtensionField { + public var isInitialized: Swift.Bool { + get + } +} +public protocol ExtensionField : Swift.Hashable, VideoSDKRTC.AnyExtensionField { + associatedtype ValueType + var value: Self.ValueType { get set } + init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: Self.ValueType) + init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder +} +public struct OptionalExtensionField : VideoSDKRTC.ExtensionField where T : VideoSDKRTC.FieldType { + public typealias BaseType = T.BaseType + public typealias ValueType = VideoSDKRTC.OptionalExtensionField.BaseType + public var value: VideoSDKRTC.OptionalExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalExtensionField, rhs: VideoSDKRTC.OptionalExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedExtensionField : VideoSDKRTC.ExtensionField where T : VideoSDKRTC.FieldType { + public typealias BaseType = T.BaseType + public typealias ValueType = [VideoSDKRTC.RepeatedExtensionField.BaseType] + public var value: VideoSDKRTC.RepeatedExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedExtensionField, rhs: VideoSDKRTC.RepeatedExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct PackedExtensionField : VideoSDKRTC.ExtensionField where T : VideoSDKRTC.FieldType { + public typealias BaseType = T.BaseType + public typealias ValueType = [VideoSDKRTC.PackedExtensionField.BaseType] + public var value: VideoSDKRTC.PackedExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.PackedExtensionField, rhs: VideoSDKRTC.PackedExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.PackedExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct OptionalEnumExtensionField : VideoSDKRTC.ExtensionField where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int { + public typealias BaseType = E + public typealias ValueType = E + public var value: VideoSDKRTC.OptionalEnumExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalEnumExtensionField, rhs: VideoSDKRTC.OptionalEnumExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalEnumExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedEnumExtensionField : VideoSDKRTC.ExtensionField where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int { + public typealias BaseType = E + public typealias ValueType = [E] + public var value: VideoSDKRTC.RepeatedEnumExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedEnumExtensionField, rhs: VideoSDKRTC.RepeatedEnumExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedEnumExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct PackedEnumExtensionField : VideoSDKRTC.ExtensionField where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int { + public typealias BaseType = E + public typealias ValueType = [E] + public var value: VideoSDKRTC.PackedEnumExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.PackedEnumExtensionField, rhs: VideoSDKRTC.PackedEnumExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.PackedEnumExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct OptionalMessageExtensionField : VideoSDKRTC.ExtensionField where M : Swift.Equatable, M : VideoSDKRTC.Message { + public typealias BaseType = M + public typealias ValueType = VideoSDKRTC.OptionalMessageExtensionField.BaseType + public var value: VideoSDKRTC.OptionalMessageExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalMessageExtensionField, rhs: VideoSDKRTC.OptionalMessageExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalMessageExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedMessageExtensionField : VideoSDKRTC.ExtensionField where M : Swift.Equatable, M : VideoSDKRTC.Message { + public typealias BaseType = M + public typealias ValueType = [VideoSDKRTC.RepeatedMessageExtensionField.BaseType] + public var value: VideoSDKRTC.RepeatedMessageExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedMessageExtensionField, rhs: VideoSDKRTC.RepeatedMessageExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedMessageExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct OptionalGroupExtensionField : VideoSDKRTC.ExtensionField where G : Swift.Hashable, G : VideoSDKRTC.Message { + public typealias BaseType = G + public typealias ValueType = VideoSDKRTC.OptionalGroupExtensionField.BaseType + public var value: G + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalGroupExtensionField, rhs: VideoSDKRTC.OptionalGroupExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalGroupExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedGroupExtensionField : VideoSDKRTC.ExtensionField where G : Swift.Hashable, G : VideoSDKRTC.Message { + public typealias BaseType = G + public typealias ValueType = [VideoSDKRTC.RepeatedGroupExtensionField.BaseType] + public var value: VideoSDKRTC.RepeatedGroupExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedGroupExtensionField, rhs: VideoSDKRTC.RepeatedGroupExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedGroupExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct ExtensionFieldValueSet : Swift.Hashable { + public static func == (lhs: VideoSDKRTC.ExtensionFieldValueSet, rhs: VideoSDKRTC.ExtensionFieldValueSet) -> Swift.Bool + public init() + public func hash(into hasher: inout Swift.Hasher) + public func traverse(visitor: inout V, start: Swift.Int, end: Swift.Int) throws where V : VideoSDKRTC.Visitor + public subscript(index: Swift.Int) -> (any VideoSDKRTC.AnyExtensionField)? { + get + set + } + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public protocol ExtensionMap : Swift.Sendable { + subscript(messageType: any VideoSDKRTC.Message.Type, fieldNumber: Swift.Int) -> (any VideoSDKRTC.AnyMessageExtension)? { get } + func fieldNumberForProto(messageType: any VideoSDKRTC.Message.Type, protoFieldName: Swift.String) -> Swift.Int? +} +public struct Google_Protobuf_FieldMask { + public var paths: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_FieldMask : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldMask : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldMask, rhs: VideoSDKRTC.Google_Protobuf_FieldMask) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol FieldType { + associatedtype BaseType : Swift.Hashable + static var proto3DefaultValue: Self.BaseType { get } + static func decodeSingular(value: inout Self.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + static func decodeRepeated(value: inout [Self.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + static func visitSingular(value: Self.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + static func visitRepeated(value: [Self.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + static func visitPacked(value: [Self.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public protocol MapKeyType : VideoSDKRTC.FieldType { + static func _lessThan(lhs: Self.BaseType, rhs: Self.BaseType) -> Swift.Bool +} +extension VideoSDKRTC.MapKeyType where Self.BaseType : Swift.Comparable { + public static func _lessThan(lhs: Self.BaseType, rhs: Self.BaseType) -> Swift.Bool +} +public protocol MapValueType : VideoSDKRTC.FieldType { +} +public struct ProtobufFloat : VideoSDKRTC.FieldType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Float + public static var proto3DefaultValue: Swift.Float { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufFloat.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufFloat.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufFloat.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufFloat.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufFloat.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufDouble : VideoSDKRTC.FieldType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Double + public static var proto3DefaultValue: Swift.Double { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufDouble.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufDouble.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufDouble.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufDouble.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufDouble.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufInt32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int32 + public static var proto3DefaultValue: Swift.Int32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufInt32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufInt32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufInt32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufInt64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int64 + public static var proto3DefaultValue: Swift.Int64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufInt64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufInt64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufInt64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufUInt32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt32 + public static var proto3DefaultValue: Swift.UInt32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufUInt32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufUInt32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufUInt32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufUInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufUInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufUInt64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt64 + public static var proto3DefaultValue: Swift.UInt64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufUInt64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufUInt64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufUInt64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufUInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufUInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSInt32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int32 + public static var proto3DefaultValue: Swift.Int32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSInt32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSInt32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSInt32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSInt64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int64 + public static var proto3DefaultValue: Swift.Int64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSInt64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSInt64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSInt64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufFixed32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt32 + public static var proto3DefaultValue: Swift.UInt32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufFixed32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufFixed32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufFixed32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufFixed64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt64 + public static var proto3DefaultValue: Swift.UInt64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufFixed64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufFixed64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufFixed64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSFixed32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int32 + public static var proto3DefaultValue: Swift.Int32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSFixed32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSFixed32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSFixed32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSFixed64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int64 + public static var proto3DefaultValue: Swift.Int64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSFixed64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSFixed64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSFixed64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufBool : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Bool + public static var proto3DefaultValue: Swift.Bool { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufBool.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufBool.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufBool.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufBool.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufBool.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func _lessThan(lhs: VideoSDKRTC.ProtobufBool.BaseType, rhs: VideoSDKRTC.ProtobufBool.BaseType) -> Swift.Bool +} +public struct ProtobufString : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.String + public static var proto3DefaultValue: Swift.String { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufString.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufString.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufString.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufString.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufString.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufBytes : VideoSDKRTC.FieldType, VideoSDKRTC.MapValueType { + public typealias BaseType = Foundation.Data + public static var proto3DefaultValue: Foundation.Data { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufBytes.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufBytes.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufBytes.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufBytes.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufBytes.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +@_hasMissingDesignatedInitializers public class FilteredExemplarReservoir : VideoSDKRTC.ExemplarReservoir { + override public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + @objc deinit +} +public let defaultAnyTypeURLPrefix: Swift.String +extension VideoSDKRTC.Google_Protobuf_Any { + public init(message: any VideoSDKRTC.Message, partial: Swift.Bool = false, typePrefix: Swift.String = defaultAnyTypeURLPrefix) throws + public init(textFormatString: Swift.String, options: VideoSDKRTC.TextFormatDecodingOptions = TextFormatDecodingOptions(), extensions: (any VideoSDKRTC.ExtensionMap)? = nil) throws + public func isA(_ type: M.Type) -> Swift.Bool where M : VideoSDKRTC.Message + public func hash(into hasher: inout Swift.Hasher) +} +extension VideoSDKRTC.Google_Protobuf_Any { + @discardableResult + public static func register(messageType: any VideoSDKRTC.Message.Type) -> Swift.Bool + public static func messageType(forTypeURL url: Swift.String) -> (any VideoSDKRTC.Message.Type)? + public static func messageType(forMessageName name: Swift.String) -> (any VideoSDKRTC.Message.Type)? +} +extension VideoSDKRTC.Google_Protobuf_Duration { + public init(seconds: Swift.Int64 = 0, nanos: Swift.Int32 = 0) +} +extension VideoSDKRTC.Google_Protobuf_Duration : Swift.ExpressibleByFloatLiteral { + public typealias FloatLiteralType = Swift.Double + public init(floatLiteral value: Swift.Double) +} +extension VideoSDKRTC.Google_Protobuf_Duration { + public init(timeInterval: Foundation.TimeInterval) + public var timeInterval: Foundation.TimeInterval { + get + } +} +prefix public func - (operand: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Duration +public func + (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Duration +public func - (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Duration +public func - (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Timestamp) -> VideoSDKRTC.Google_Protobuf_Duration +extension VideoSDKRTC.Google_Protobuf_FieldMask { + public init(protoPaths: [Swift.String]) + public init(protoPaths: Swift.String...) + public init?(jsonPaths: Swift.String...) +} +extension VideoSDKRTC.Google_Protobuf_ListValue : Swift.ExpressibleByArrayLiteral { + public typealias Element = VideoSDKRTC.Google_Protobuf_Value + public init(arrayLiteral elements: VideoSDKRTC.Google_Protobuf_ListValue.Element...) + public typealias ArrayLiteralElement = VideoSDKRTC.Google_Protobuf_ListValue.Element +} +extension VideoSDKRTC.Google_Protobuf_ListValue { + public init(values: [VideoSDKRTC.Google_Protobuf_Value]) + public subscript(index: Swift.Int) -> VideoSDKRTC.Google_Protobuf_Value { + get + set(newValue) + } +} +extension VideoSDKRTC.Google_Protobuf_Struct : Swift.ExpressibleByDictionaryLiteral { + public typealias Key = Swift.String + public typealias Value = VideoSDKRTC.Google_Protobuf_Value + public init(dictionaryLiteral: (Swift.String, VideoSDKRTC.Google_Protobuf_Value)...) +} +extension VideoSDKRTC.Google_Protobuf_Struct { + public init(fields: [Swift.String : VideoSDKRTC.Google_Protobuf_Value]) + public subscript(key: Swift.String) -> VideoSDKRTC.Google_Protobuf_Value? { + get + set(newValue) + } +} +extension VideoSDKRTC.Google_Protobuf_Timestamp { + public init(seconds: Swift.Int64 = 0, nanos: Swift.Int32 = 0) +} +extension VideoSDKRTC.Google_Protobuf_Timestamp { + public init(timeIntervalSince1970: Foundation.TimeInterval) + public init(timeIntervalSinceReferenceDate: Foundation.TimeInterval) + public init(date: Foundation.Date) + public var timeIntervalSince1970: Foundation.TimeInterval { + get + } + public var timeIntervalSinceReferenceDate: Foundation.TimeInterval { + get + } + public var date: Foundation.Date { + get + } +} +public func + (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Timestamp +public func + (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Timestamp) -> VideoSDKRTC.Google_Protobuf_Timestamp +public func - (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Timestamp +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByIntegerLiteral { + public typealias IntegerLiteralType = Swift.Int64 + public init(integerLiteral value: Swift.Int64) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByFloatLiteral { + public typealias FloatLiteralType = Swift.Double + public init(floatLiteral value: Swift.Double) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByBooleanLiteral { + public typealias BooleanLiteralType = Swift.Bool + public init(booleanLiteral value: Swift.Bool) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByStringLiteral { + public typealias StringLiteralType = Swift.String + public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias UnicodeScalarLiteralType = Swift.String + public init(stringLiteral value: Swift.String) + public init(unicodeScalarLiteral value: Swift.String) + public init(extendedGraphemeClusterLiteral value: Swift.String) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByNilLiteral { + public init(nilLiteral: ()) +} +extension VideoSDKRTC.Google_Protobuf_Value { + public init(numberValue: Swift.Double) + public init(stringValue: Swift.String) + public init(boolValue: Swift.Bool) + public init(structValue: VideoSDKRTC.Google_Protobuf_Struct) + public init(listValue: VideoSDKRTC.Google_Protobuf_ListValue) +} +extension VideoSDKRTC.Google_Protobuf_DoubleValue : Swift.ExpressibleByFloatLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufDouble + public typealias FloatLiteralType = VideoSDKRTC.Google_Protobuf_DoubleValue.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_DoubleValue.WrappedType.BaseType) + public init(floatLiteral: VideoSDKRTC.Google_Protobuf_DoubleValue.FloatLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_FloatValue : Swift.ExpressibleByFloatLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufFloat + public typealias FloatLiteralType = Swift.Float + public init(_ value: VideoSDKRTC.Google_Protobuf_FloatValue.WrappedType.BaseType) + public init(floatLiteral: VideoSDKRTC.Google_Protobuf_FloatValue.FloatLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_Int64Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufInt64 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_Int64Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_Int64Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_Int64Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_UInt64Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufUInt64 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_UInt64Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_UInt64Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_UInt64Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_Int32Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufInt32 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_Int32Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_Int32Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_Int32Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_UInt32Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufUInt32 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_UInt32Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_UInt32Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_UInt32Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_BoolValue : Swift.ExpressibleByBooleanLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufBool + public typealias BooleanLiteralType = Swift.Bool + public init(_ value: VideoSDKRTC.Google_Protobuf_BoolValue.WrappedType.BaseType) + public init(booleanLiteral: Swift.Bool) +} +extension VideoSDKRTC.Google_Protobuf_StringValue : Swift.ExpressibleByStringLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufString + public typealias StringLiteralType = Swift.String + public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias UnicodeScalarLiteralType = Swift.String + public init(_ value: VideoSDKRTC.Google_Protobuf_StringValue.WrappedType.BaseType) + public init(stringLiteral: Swift.String) + public init(extendedGraphemeClusterLiteral: Swift.String) + public init(unicodeScalarLiteral: Swift.String) +} +extension VideoSDKRTC.Google_Protobuf_BytesValue { + public typealias WrappedType = VideoSDKRTC.ProtobufBytes + public init(_ value: VideoSDKRTC.Google_Protobuf_BytesValue.WrappedType.BaseType) +} +public struct Headers { + public static func getUserAgentHeader() -> Swift.String +} +@_hasMissingDesignatedInitializers public class HistogramAggregator : VideoSDKRTC.Aggregator where T : Swift.Comparable, T : Swift.SignedNumeric { + public init(explicitBoundaries: Swift.Array? = nil) throws + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +@_hasMissingDesignatedInitializers public class HistogramExemplarReservoir : VideoSDKRTC.FixedSizedExemplarReservoir { + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public protocol HistogramMetric { + associatedtype T + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundHistogramMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundHistogramMetric +} +extension VideoSDKRTC.HistogramMetric { + public func record(value: Self.T, labelset: VideoSDKRTC.LabelSet) + public func record(value: Self.T, labels: [Swift.String : Swift.String]) +} +public struct AnyHistogramMetric : VideoSDKRTC.HistogramMetric { + public init(_ histogram: U) where T == U.T, U : VideoSDKRTC.HistogramMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundHistogramMetric +} +public struct NoopHistogramMetric : VideoSDKRTC.HistogramMetric { + public init() + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundHistogramMetric +} +@_hasMissingDesignatedInitializers public class HistogramPointData : VideoSDKRTC.PointData { + public var sum: Swift.Double + public var count: Swift.UInt64 + public var min: Swift.Double + public var max: Swift.Double + public var boundaries: [Swift.Double] + public var counts: [Swift.Int] + public var hasMin: Swift.Bool + public var hasMax: Swift.Bool + @objc deinit +} +public class HLSConfig { + public var layout: VideoSDKRTC.ConfigLayout + public var theme: VideoSDKRTC.ConfigTheme + public var mode: VideoSDKRTC.ConfigMode + public var quality: VideoSDKRTC.ConfigQuality + public var orientation: VideoSDKRTC.ConfigOrientation + public init(layout: VideoSDKRTC.ConfigLayout, theme: VideoSDKRTC.ConfigTheme, mode: VideoSDKRTC.ConfigMode, quality: VideoSDKRTC.ConfigQuality, orientation: VideoSDKRTC.ConfigOrientation) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public class RecordingConfig { + public var layout: VideoSDKRTC.ConfigLayout + public var theme: VideoSDKRTC.ConfigTheme + public var mode: VideoSDKRTC.ConfigMode + public var quality: VideoSDKRTC.ConfigQuality + public var orientation: VideoSDKRTC.ConfigOrientation + public init(layout: VideoSDKRTC.ConfigLayout, theme: VideoSDKRTC.ConfigTheme, mode: VideoSDKRTC.ConfigMode, quality: VideoSDKRTC.ConfigQuality, orientation: VideoSDKRTC.ConfigOrientation) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public class HLSUrl { + public var downstreamUrl: Swift.String + public var playbackHlsUrl: Swift.String + public var livestreamUrl: Swift.String + public init(downstreamUrl: Swift.String? = nil, playbackHlsUrl: Swift.String? = nil, livestreamUrl: Swift.String? = nil) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public class ConfigLayout { + public var type: VideoSDKRTC.ConfigLayoutGrid + public var priority: VideoSDKRTC.ConfigLayoutPriority + public var gridSize: Swift.Int + public init(type: VideoSDKRTC.ConfigLayoutGrid, priority: VideoSDKRTC.ConfigLayoutPriority, gridSize: Swift.Int) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public enum ConfigLayoutPriority : Swift.String { + case SPEAKER, PIN + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigLayoutGrid : Swift.String { + case GRID, SPOTLIGHT, SIDEBAR + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigTheme : Swift.String { + case DEFAULT, LIGHT, DARK + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigMode : Swift.String { + case video_and_audio, audio + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigQuality : Swift.String { + case high, med, low + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigOrientation : Swift.String { + case landscape, portrait + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public protocol IdGenerator { + func generateSpanId() -> VideoSDKRTC.SpanId + func generateTraceId() -> VideoSDKRTC.TraceId +} +@_hasMissingDesignatedInitializers public class InMemoryLogRecordExporter : VideoSDKRTC.LogRecordExporter { + public func getFinishedLogRecords() -> [VideoSDKRTC.ReadableLogRecord] + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func shutdown() + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public protocol Instrument : Swift.Equatable { + var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor { get } +} +extension VideoSDKRTC.Instrument { + public static func == (lhs: Self, rhs: Self) -> Swift.Bool +} +public struct InstrumentationScopeInfo : Swift.Hashable, Swift.Codable, Swift.Equatable { + public var name: Swift.String { + get + } + public var version: Swift.String? { + get + } + public var schemaUrl: Swift.String? { + get + } + public init() + public init(name: Swift.String, version: Swift.String? = nil, schemaUrl: Swift.String? = nil) + public func hash(into hasher: inout Swift.Hasher) + public static func == (a: VideoSDKRTC.InstrumentationScopeInfo, b: VideoSDKRTC.InstrumentationScopeInfo) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public struct InstrumentDescriptor : Swift.Equatable { + public let name: Swift.String + public let description: Swift.String + public let unit: Swift.String + public let type: VideoSDKRTC.InstrumentType + public let valueType: VideoSDKRTC.InstrumentValueType + public init(name: Swift.String, description: Swift.String, unit: Swift.String, type: VideoSDKRTC.InstrumentType, valueType: VideoSDKRTC.InstrumentValueType) + public static func == (lhs: VideoSDKRTC.InstrumentDescriptor, rhs: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class InstrumentSelector { + public static func builder() -> VideoSDKRTC.InstrumentSelectorBuilder + @objc deinit +} +public class InstrumentSelectorBuilder { + public init() + public func setInstrument(type: VideoSDKRTC.InstrumentType) -> Self + public func setInstrument(name: Swift.String) -> Self + public func setMeter(name: Swift.String) -> Self + public func setMeter(version: Swift.String) -> Self + public func setMeter(schemaUrl: Swift.String) -> Self + public func build() -> VideoSDKRTC.InstrumentSelector + @objc deinit +} +public enum InstrumentType : Swift.CaseIterable { + case counter + case upDownCounter + case histogram + case observableCounter + case observableUpDownCounter + case observableGauge + public static func == (a: VideoSDKRTC.InstrumentType, b: VideoSDKRTC.InstrumentType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public typealias AllCases = [VideoSDKRTC.InstrumentType] + public static var allCases: [VideoSDKRTC.InstrumentType] { + get + } + public var hashValue: Swift.Int { + get + } +} +public enum InstrumentValueType { + case long + case double + public static func == (a: VideoSDKRTC.InstrumentValueType, b: VideoSDKRTC.InstrumentValueType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public enum Internal { + public static let emptyData: Foundation.Data + public static func areAllInitialized(_ listOfMessages: [any VideoSDKRTC.Message]) -> Swift.Bool + public static func areAllInitialized(_ mapToMessages: [K : any VideoSDKRTC.Message]) -> Swift.Bool where K : Swift.Hashable +} +public protocol IntObserverMetric { + func observe(value: Swift.Int, labelset: VideoSDKRTC.LabelSet) + func observe(value: Swift.Int, labels: [Swift.String : Swift.String]) +} +public struct NoopIntObserverMetric : VideoSDKRTC.IntObserverMetric { + public init() + public func observe(value: Swift.Int, labelset: VideoSDKRTC.LabelSet) + public func observe(value: Swift.Int, labels: [Swift.String : Swift.String]) +} +extension Foundation.Data { + public func toJSONString() -> Swift.String + public func toJSON() -> [Swift.String : Any] + public func toJSONArray() -> [Any] +} +extension Swift.String { + public func toJSON() -> [Swift.String : Any] +} +extension Swift.Dictionary { + public func toJSONString() -> Swift.String +} +extension Swift.Array { + public func toJSONString() -> Swift.String +} +extension Swift.Encodable { + public func toJSON() -> [Swift.String : Any] + public func toJSONArray() -> [Any] +} +public enum JSONDecodingError : Swift.Error { + case failure + case malformedNumber + case numberRange + case malformedMap + case malformedBool + case malformedString + case invalidUTF8 + case missingFieldNames + case schemaMismatch + case unrecognizedEnumValue + case illegalNull + case unquotedMapKey + case leadingZero + case truncated + case malformedDuration + case malformedTimestamp + case malformedFieldMask + case trailingGarbage + case conflictingOneOf + case messageDepthLimit + case unknownField(Swift.String) +} +public struct JSONDecodingOptions : Swift.Sendable { + public var messageDepthLimit: Swift.Int + public var ignoreUnknownFields: Swift.Bool + public init() +} +public enum JSONEncodingError : Swift.Error { + case anyTranscodeFailure + case timestampRange + case durationRange + case fieldMaskConversion + case missingFieldNames + case missingValue + case valueNumberNotFinite + public static func == (a: VideoSDKRTC.JSONEncodingError, b: VideoSDKRTC.JSONEncodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct JSONEncodingOptions : Swift.Sendable { + public var alwaysPrintInt64sAsNumbers: Swift.Bool + public var alwaysPrintEnumsAsInts: Swift.Bool + public var preserveProtoFieldNames: Swift.Bool + public init() +} +@_hasMissingDesignatedInitializers open class LabelSet : Swift.Hashable { + public var labels: [Swift.String : Swift.String] { + get + } + public static var empty: VideoSDKRTC.LabelSet + required public init(labels: [Swift.String : Swift.String]) + public static func == (lhs: VideoSDKRTC.LabelSet, rhs: VideoSDKRTC.LabelSet) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + @objc deinit + open var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class LastValueAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.LastValueAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class LastValueAggregator : VideoSDKRTC.Aggregator where T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public struct LivestreamOutput : Swift.Codable { + public let url: Swift.String + public let streamKey: Swift.String + public init(url: Swift.String, streamKey: Swift.String) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public protocol Logger { + func eventBuilder(name: Swift.String) -> any VideoSDKRTC.EventBuilder + func logRecordBuilder() -> any VideoSDKRTC.LogRecordBuilder +} +public protocol LoggerBuilder { + func setEventDomain(_ eventDomain: Swift.String) -> Self + func setSchemaUrl(_ schemaUrl: Swift.String) -> Self + func setInstrumentationVersion(_ instrumentationVersion: Swift.String) -> Self + func setIncludeTraceContext(_ includeTraceContext: Swift.Bool) -> Self + func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + func build() -> any VideoSDKRTC.Logger +} +@_hasMissingDesignatedInitializers public class LoggerBuilderSdk : VideoSDKRTC.LoggerBuilder { + public func setEventDomain(_ eventDomain: Swift.String) -> Self + public func setSchemaUrl(_ schemaUrl: Swift.String) -> Self + public func setInstrumentationVersion(_ instrumentationVersion: Swift.String) -> Self + public func setIncludeTraceContext(_ includeTraceContext: Swift.Bool) -> Self + public func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + public func build() -> any VideoSDKRTC.Logger + @objc deinit +} +public protocol LoggerProvider : AnyObject { + func get(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.Logger + func loggerBuilder(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.LoggerBuilder +} +public class LoggerProviderBuilder { + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var logLimits: VideoSDKRTC.LogLimits { + get + } + public var logProcessors: [any VideoSDKRTC.LogRecordProcessor] { + get + } + public init() + public func with(clock: any VideoSDKRTC.Clock) -> Self + public func with(resource: VideoSDKRTC.Resource) -> Self + public func with(logLimits: VideoSDKRTC.LogLimits) -> Self + public func with(processors: [any VideoSDKRTC.LogRecordProcessor]) -> Self + public func build() -> VideoSDKRTC.LoggerProviderSdk + @objc deinit +} +public class LoggerProviderSdk : VideoSDKRTC.LoggerProvider { + public init(clock: any VideoSDKRTC.Clock = MillisClock(), resource: VideoSDKRTC.Resource = EnvVarResource.get(), logLimits: VideoSDKRTC.LogLimits = LogLimits(), logRecordProcessors: [any VideoSDKRTC.LogRecordProcessor] = []) + public func get(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.Logger + public func loggerBuilder(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.LoggerBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class LoggerSdk : VideoSDKRTC.Logger { + public func eventBuilder(name: Swift.String) -> any VideoSDKRTC.EventBuilder + public func logRecordBuilder() -> any VideoSDKRTC.LogRecordBuilder + @objc deinit +} +public struct LogLimits { + public static let defaultMaxAttributeCount: Swift.Int + public static let defaultMaxAtributeLength: Swift.Int + public let maxAttributeCount: Swift.Int + public let maxAttributeLength: Swift.Int + public init(maxAttributeCount: Swift.Int = Self.defaultMaxAttributeCount, maxAttributeLength: Swift.Int = Self.defaultMaxAtributeLength) +} +@_hasMissingDesignatedInitializers public class LogRecordAdapter { + public static func toProtoResourceRecordLog(logRecordList: [VideoSDKRTC.ReadableLogRecord]) -> [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs] + @objc deinit +} +public protocol LogRecordBuilder { + func setTimestamp(_ timestamp: Foundation.Date) -> Self + func setObservedTimestamp(_ observed: Foundation.Date) -> Self + func setSpanContext(_ context: VideoSDKRTC.SpanContext) -> Self + func setSeverity(_ severity: VideoSDKRTC.Severity) -> Self + func setBody(_ body: Swift.String) -> Self + func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + func emit() +} +@_hasMissingDesignatedInitializers public class LogRecordBuilderSdk : VideoSDKRTC.EventBuilder { + public func setTimestamp(_ timestamp: Foundation.Date) -> Self + public func setObservedTimestamp(_ observed: Foundation.Date) -> Self + public func setSpanContext(_ context: VideoSDKRTC.SpanContext) -> Self + public func setSeverity(_ severity: VideoSDKRTC.Severity) -> Self + public func setBody(_ body: Swift.String) -> Self + public func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + public func setData(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + public func emit() + @objc deinit +} +public protocol LogRecordExporter { + func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + func shutdown() + func forceFlush() -> VideoSDKRTC.ExportResult +} +public protocol LogRecordProcessor { + func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + func forceFlush() -> VideoSDKRTC.ExportResult + func shutdown() -> VideoSDKRTC.ExportResult +} +public enum Opentelemetry_Proto_Logs_V1_SeverityNumber : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unspecified + case trace + case trace2 + case trace3 + case trace4 + case debug + case debug2 + case debug3 + case debug4 + case info + case info2 + case info3 + case info4 + case warn + case warn2 + case warn3 + case warn4 + case error + case error2 + case error3 + case error4 + case fatal + case fatal2 + case fatal3 + case fatal4 + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber] +} +public enum Opentelemetry_Proto_Logs_V1_LogRecordFlags : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case doNotUse + case traceFlagsMask + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags] +} +public struct Opentelemetry_Proto_Logs_V1_LogsData { + public var resourceLogs: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Logs_V1_ResourceLogs { + public var resource: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource { + get + set + } + public var hasResource: Swift.Bool { + get + } + public mutating func clearResource() + public var scopeLogs: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Logs_V1_ScopeLogs { + public var scope: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope { + get + set + } + public var hasScope: Swift.Bool { + get + } + public mutating func clearScope() + public var logRecords: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Logs_V1_LogRecord { + public var timeUnixNano: Swift.UInt64 + public var observedTimeUnixNano: Swift.UInt64 + public var severityNumber: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber + public var severityText: Swift.String + public var body: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue { + get + set + } + public var hasBody: Swift.Bool { + get + } + public mutating func clearBody() + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var flags: Swift.UInt32 + public var traceID: Foundation.Data + public var spanID: Foundation.Data + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest { + public var resourceLogs: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse { + public var partialSuccess: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess { + get + set + } + public var hasPartialSuccess: Swift.Bool { + get + } + public mutating func clearPartialSuccess() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess { + public var rejectedLogRecords: Swift.Int64 + public var errorMessage: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol LongCounter { + mutating func add(value: Swift.Int) + mutating func add(value: Swift.Int, attribute: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongCounterBuilder : AnyObject { + func ofDoubles() -> any VideoSDKRTC.DoubleCounterBuilder + func build() -> any VideoSDKRTC.LongCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongCounter +} +@_hasMissingDesignatedInitializers public class LongCounterMeterBuilderSdk : VideoSDKRTC.LongCounterBuilder { + public func ofDoubles() -> any VideoSDKRTC.DoubleCounterBuilder + public func build() -> any VideoSDKRTC.LongCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongCounter + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongCounterSdk : VideoSDKRTC.LongCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public func add(value: Swift.Int) + public func add(value: Swift.Int, attribute: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public struct DoubleCounterSdk : VideoSDKRTC.DoubleCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public mutating func add(value: Swift.Double) + public mutating func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongGaugeBuilder : AnyObject { + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongGauge +} +@_hasMissingDesignatedInitializers public class LongGaugeBuilderSdk : VideoSDKRTC.LongGaugeBuilder { + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongGauge + @objc deinit +} +public protocol LongHistogram { + mutating func record(value: Swift.Int) + mutating func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongHistogramBuilder : AnyObject { + func build() -> any VideoSDKRTC.LongHistogram +} +@_hasMissingDesignatedInitializers public class LongHistogramMeterBuilderSdk : VideoSDKRTC.LongHistogramBuilder { + public func build() -> any VideoSDKRTC.LongHistogram + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongHistogramMeterSdk : VideoSDKRTC.LongHistogram, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public func record(value: Swift.Int) + public func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongLastValueAggregator : VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongPointData : VideoSDKRTC.PointData { + public var value: Swift.Int + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongSumAggregator : VideoSDKRTC.SumAggregator, VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol LongUpDownCounter { + mutating func add(value: Swift.Int) + mutating func add(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongUpDownCounterBuilder : AnyObject { + func ofDoubles() -> any VideoSDKRTC.DoubleUpDownCounterBuilder + func build() -> any VideoSDKRTC.LongUpDownCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongUpDownCounter +} +@_hasMissingDesignatedInitializers public class LongUpDownCounterBuilderSdk : VideoSDKRTC.LongUpDownCounterBuilder { + public func ofDoubles() -> any VideoSDKRTC.DoubleUpDownCounterBuilder + public func build() -> any VideoSDKRTC.LongUpDownCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongUpDownCounter + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongUpDownCounterSdk : VideoSDKRTC.LongUpDownCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor { + get + } + public func add(value: Swift.Int) + public func add(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class MaxValueAggregator : VideoSDKRTC.Aggregator where T : Swift.Comparable, T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public struct Measurement { + public var startEpochNano: Swift.UInt64 { + get + } + public var epochNano: Swift.UInt64 { + get + } + public var hasLongValue: Swift.Bool { + get + } + public var longValue: Swift.Int { + get + } + public var doubleValue: Swift.Double { + get + } + public var hasDoubleValue: Swift.Bool { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public static func longMeasurement(startEpochNano: Swift.UInt64, endEpochNano: Swift.UInt64, value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.Measurement + public static func doubleMeasurement(startEpochNano: Swift.UInt64, endEpochNano: Swift.UInt64, value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.Measurement +} +public protocol MeasureMetric { + associatedtype T + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundMeasureMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundMeasureMetric +} +extension VideoSDKRTC.MeasureMetric { + public func record(value: Self.T, labelset: VideoSDKRTC.LabelSet) + public func record(value: Self.T, labels: [Swift.String : Swift.String]) +} +public struct AnyMeasureMetric : VideoSDKRTC.MeasureMetric { + public init(_ measurable: U) where T == U.T, U : VideoSDKRTC.MeasureMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundMeasureMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundMeasureMetric +} +public struct NoopMeasureMetric : VideoSDKRTC.MeasureMetric { + public init() + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundMeasureMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundMeasureMetric +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class MeasureMinMaxSumCountAggregator : VideoSDKRTC.Aggregator where T : Swift.Comparable, T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public enum authorisationStatus { + case notDetermined + case authorised + case denied + case restricted + public static func == (a: VideoSDKRTC.authorisationStatus, b: VideoSDKRTC.authorisationStatus) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public protocol AuthorisationDelegate : AnyObject { + func handlePermission() +} +@_hasMissingDesignatedInitializers public class MediaStream : Swift.Equatable { + public var id: Swift.String { + get + } + public var kind: VideoSDKRTC.MediaType { + get + } + public var track: WebRTC.RTCMediaStreamTrack { + get + } + public var producer: Mediasoup.Producer? { + get + } + public var consumer: Mediasoup.Consumer? { + get + } + @objc deinit +} +extension VideoSDKRTC.MediaStream { + public func pause() + public func resume() +} +extension VideoSDKRTC.MediaStream { + public static func == (lhs: VideoSDKRTC.MediaStream, rhs: VideoSDKRTC.MediaStream) -> Swift.Bool +} +public enum MediaType : Swift.Equatable { + case share + case state(value: Mediasoup.MediaKind) + public static func == (a: VideoSDKRTC.MediaType, b: VideoSDKRTC.MediaType) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class Meeting : Swift.Equatable { + public var id: Swift.String { + get + } + public var localParticipant: VideoSDKRTC.Participant { + get + } + public var participants: [Swift.String : VideoSDKRTC.Participant] { + get + } + public var pinnedParticipants: [Swift.String : VideoSDKRTC.ParticipantPinState] { + get + } + public var hlsUrls: VideoSDKRTC.HLSUrl? + public var hlsState: VideoSDKRTC.HLSState + public var liveStreamState: VideoSDKRTC.LiveStreamState + public var recordingState: VideoSDKRTC.RecordingState + public var pubsub: VideoSDKRTC.PubSub { + get + } + public var customVideoMediaStream: VideoSDKRTC.CustomRTCMediaStream? { + get + } + public var meetingMode: VideoSDKRTC.Mode? { + get + } + @objc deinit +} +extension VideoSDKRTC.Meeting { + public func join(cameraPosition: AVFoundation.AVCaptureDevice.Position) + public func leave() + public func end() + public func enableWebcam(customVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil) + public func disableWebcam() + public func switchWebcam() + public func muteMic() + public func unmuteMic() + public func startRecording(webhookUrl: Swift.String, awsDirPath: Swift.String? = nil, config: VideoSDKRTC.RecordingConfig? = nil) + public func stopRecording() + public func startLivestream(outputs: [VideoSDKRTC.LivestreamOutput]) + public func stopLivestream() + public func startHLS(config: VideoSDKRTC.HLSConfig? = nil) + public func stopHLS() + public func changeMode(_ mode: VideoSDKRTC.Mode) + #if compiler(>=5.3) && $AsyncAwait + @available(iOS 13.0.0, *) + public func enableScreenShare() async + #endif + #if compiler(>=5.3) && $AsyncAwait + @available(iOS 13.0.0, *) + public func disableScreenShare() async + #endif + public func changeMic(selectedDevice: Swift.String) + public func getMics() -> [(deviceName: Swift.String, deviceType: Swift.String)] + public func removeOberver() +} +extension VideoSDKRTC.Meeting { + public func addEventListener(_ meetingEventListener: any VideoSDKRTC.MeetingEventListener) + public func removeEventListener(_ meetingEventListener: any VideoSDKRTC.MeetingEventListener) +} +extension VideoSDKRTC.Meeting { + public static func == (lhs: VideoSDKRTC.Meeting, rhs: VideoSDKRTC.Meeting) -> Swift.Bool +} +public protocol MeetingEventListener : AnyObject { + func onMeetingJoined() + func onMeetingLeft() + func onParticipantJoined(_ participant: VideoSDKRTC.Participant) + func onParticipantLeft(_ participant: VideoSDKRTC.Participant) + func onRecordingStarted() + func onRecordingStoppped() + func onLivestreamStarted() + func onLivestreamStopped() + func onSpeakerChanged(participantId: Swift.String?) + func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + func onSocketError(message: Swift.String) + func onMeetingStateChanged(meetingState: VideoSDKRTC.MeetingState) + func onError(error: VideoSDKRTC.VideoSDKError) + func onHlsStateChanged(state: VideoSDKRTC.HLSState, hlsUrl: VideoSDKRTC.HLSUrl?) + func onLivestreamStateChanged(state: VideoSDKRTC.LiveStreamState) + func onRecordingStateChanged(state: VideoSDKRTC.RecordingState) + func onPinStateChanged(participantId: Swift.String, pinType: VideoSDKRTC.PinType) + func onParticipantModeChanged(participantId: Swift.String, mode: VideoSDKRTC.Mode) + func onMicChanged(selectedDevice: Swift.String) +} +extension VideoSDKRTC.MeetingEventListener { + public func onMeetingJoined() + public func onMeetingLeft() + public func onParticipantJoined(_ participant: VideoSDKRTC.Participant) + public func onParticipantLeft(_ participant: VideoSDKRTC.Participant) + public func onRecordingStarted() + public func onRecordingStoppped() + public func onLivestreamStarted() + public func onLivestreamStopped() + public func onSpeakerChanged(participantId: Swift.String?) + public func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + public func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + public func onSocketError(message: Swift.String) + public func onMeetingStateChanged(meetingState: VideoSDKRTC.MeetingState) + public func onError(error: VideoSDKRTC.VideoSDKError) + public func onHlsStateChanged(state: VideoSDKRTC.HLSState, hlsUrl: VideoSDKRTC.HLSUrl?) + public func onLivestreamStateChanged(state: VideoSDKRTC.LiveStreamState) + public func onRecordingStateChanged(state: VideoSDKRTC.RecordingState) + public func onPinStateChanged(participantId: Swift.String, pinType: VideoSDKRTC.PinType) + public func onParticipantModeChanged(participantId: Swift.String, mode: VideoSDKRTC.Mode) + public func onMicChanged(selectedDevice: Swift.String) +} +public enum MeetingState : Swift.String { + case CONNECTING, CONNECTED, CLOSING, CLOSED, CANCELLED + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum Mode : Swift.String { + case CONFERENCE, VIEWER + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum VideoSDKError : Swift.Int { + case UNKNOWN_ERROR + case INVALID_API_KEY + case INVALID_TOKEN + case INVALID_MEETING_ID + case INVALID_PARTICIPANT_ID + case DUPLICATE_PARTICIPANT + case ACCOUNT_DEACTIVATED + case ACCOUNT_DISCONTINUED + case INVALID_PERMISSIONS + case MAX_PARTCIPANT_REACHED + case MAX_SPEAKER_REACHED + case START_RECORDING_FAILED + case STOP_RECORDING_FAILED + case START_LIVESTREAM_FAILED + case STOP_LIVESTREAM_FAILED + case INVALID_LIVESTREAM_CONFIG + case START_HLS_FAILED + case STOP_HLS_FAILED + case RECORDING_FAILED + case LIVESTREAM_FAILED + case HLS_FAILED + case ERROR_GET_VIDEO_MEDIA + case ERROR_GET_AUDIO_MEDIA + case ERROR_GET_DISPLAY_MEDIA + case ERROR_GET_VIDEO_MEDIA_PERMISSION_DENIED + case ERROR_GET_AUDIO_MEDIA_PERMISSION_DENIED + case ERROR_GET_DISPLAY_MEDIA_PERMISSION_DENIED + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public enum HLSState : Swift.String { + case HLS_STARTED, HLS_STARTING, HLS_STOPPED, HLS_STOPPING, HLS_PLAYABLE + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum RecordingState : Swift.String { + case RECORDING_STARTED, RECORDING_STARTING, RECORDING_STOPPED, RECORDING_STOPPING + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum LiveStreamState : Swift.String { + case LIVESTREAM_STARTED, LIVESTREAM_STARTING, LIVESTREAM_STOPPED, LIVESTREAM_STOPPING + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public protocol Message : VideoSDKRTC._MessageBase { + init() + static var protoMessageName: Swift.String { get } + var isInitialized: Swift.Bool { get } + var unknownFields: VideoSDKRTC.UnknownStorage { get set } + mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + func hash(into hasher: inout Swift.Hasher) + func isEqualTo(message: any VideoSDKRTC.Message) -> Swift.Bool +} +public protocol _MessageBase : Swift.Sendable { +} +extension VideoSDKRTC.Message { + public var isInitialized: Swift.Bool { + get + } + public func hash(into hasher: inout Swift.Hasher) + public static func with(_ populator: (inout Self) throws -> ()) rethrows -> Self +} +public protocol _MessageImplementationBase : Swift.Hashable, VideoSDKRTC.Message { + func _protobuf_generated_isEqualTo(other: Self) -> Swift.Bool +} +extension VideoSDKRTC._MessageImplementationBase { + public func isEqualTo(message: any VideoSDKRTC.Message) -> Swift.Bool + public static func == (lhs: Self, rhs: Self) -> Swift.Bool + public func _protobuf_generated_isEqualTo(other: Self) -> Swift.Bool +} +extension VideoSDKRTC.Message { + public init(unpackingAny: VideoSDKRTC.Google_Protobuf_Any, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws +} +extension VideoSDKRTC.Message { + public func serializedBytes(partial: Swift.Bool = false) throws -> Bytes where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + @inlinable public init(serializedBytes bytes: Bytes, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes { + self.init() + try merge(serializedBytes: bytes, extensions: extensions, partial: partial, options: options) + } + @inlinable public mutating func merge(serializedBytes bytes: Bytes, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes { + try bytes.withUnsafeBytes { (body: UnsafeRawBufferPointer) in + try _merge(rawBuffer: body, extensions: extensions, partial: partial, options: options) + } + } + @usableFromInline + internal mutating func _merge(rawBuffer body: Swift.UnsafeRawBufferPointer, extensions: (any VideoSDKRTC.ExtensionMap)?, partial: Swift.Bool, options: VideoSDKRTC.BinaryDecodingOptions) throws +} +extension VideoSDKRTC.Message { + @inlinable public init(serializedData data: Foundation.Data, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws { + self.init() + try merge(serializedBytes: data, extensions: extensions, partial: partial, options: options) + } + @inlinable public mutating func merge(serializedData data: Foundation.Data, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws { + try merge(serializedBytes: data, extensions: extensions, partial: partial, options: options) + } + public func serializedData(partial: Swift.Bool = false) throws -> Foundation.Data +} +extension VideoSDKRTC.Message { + public func jsonString(options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Swift.String + public func jsonUTF8Bytes(options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Bytes where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public init(jsonString: Swift.String, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public init(jsonString: Swift.String, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public init(jsonUTF8Bytes: Bytes, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public init(jsonUTF8Bytes: Bytes, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes +} +extension VideoSDKRTC.Message { + public init(jsonUTF8Data: Foundation.Data, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public init(jsonUTF8Data: Foundation.Data, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public func jsonUTF8Data(options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Foundation.Data +} +extension VideoSDKRTC.Message { + public static func jsonString(from collection: C, options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Swift.String where Self == C.Element, C : Swift.Collection + public static func jsonUTF8Bytes(from collection: C, options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Bytes where Self == C.Element, C : Swift.Collection, Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public static func array(fromJSONString jsonString: Swift.String, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func array(fromJSONString jsonString: Swift.String, extensions: any VideoSDKRTC.ExtensionMap = SimpleExtensionMap(), options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func array(fromJSONUTF8Bytes jsonUTF8Bytes: Bytes, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public static func array(fromJSONUTF8Bytes jsonUTF8Bytes: Bytes, extensions: any VideoSDKRTC.ExtensionMap = SimpleExtensionMap(), options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes +} +extension VideoSDKRTC.Message { + public static func array(fromJSONUTF8Data jsonUTF8Data: Foundation.Data, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func array(fromJSONUTF8Data jsonUTF8Data: Foundation.Data, extensions: any VideoSDKRTC.ExtensionMap = SimpleExtensionMap(), options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func jsonUTF8Data(from collection: C, options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Foundation.Data where Self == C.Element, C : Swift.Collection +} +extension VideoSDKRTC.Message { + public func textFormatString() -> Swift.String + public func textFormatString(options: VideoSDKRTC.TextFormatEncodingOptions) -> Swift.String + public init(textFormatString: Swift.String, options: VideoSDKRTC.TextFormatDecodingOptions = TextFormatDecodingOptions(), extensions: (any VideoSDKRTC.ExtensionMap)? = nil) throws +} +public protocol AnyMessageExtension : Swift.Sendable { + var fieldNumber: Swift.Int { get } + var fieldName: Swift.String { get } + var messageType: any VideoSDKRTC.Message.Type { get } + func _protobuf_newField(decoder: inout D) throws -> (any VideoSDKRTC.AnyExtensionField)? where D : VideoSDKRTC.SPBDecoder +} +final public class MessageExtension : VideoSDKRTC.AnyMessageExtension where FieldType : VideoSDKRTC.ExtensionField, MessageType : VideoSDKRTC.Message { + final public let fieldNumber: Swift.Int + final public let fieldName: Swift.String + final public let messageType: any VideoSDKRTC.Message.Type + public init(_protobuf_fieldNumber: Swift.Int, fieldName: Swift.String) + final public func _protobuf_newField(decoder: inout D) throws -> (any VideoSDKRTC.AnyExtensionField)? where D : VideoSDKRTC.SPBDecoder + @objc deinit +} +public protocol Meter { + func createIntCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + func createDoubleCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + func createIntMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + func createDoubleMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + func createIntHistogram(name: Swift.String, explicitBoundaries: Swift.Array?, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + func createDoubleHistogram(name: Swift.String, explicitBoundaries: Swift.Array?, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + func createRawDoubleHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + func createRawIntHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + func createRawDoubleCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + func createRawIntCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + func createIntObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + func createDoubleObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric + func createIntObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + func createDoubleObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric + func getLabelSet(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.LabelSet +} +extension VideoSDKRTC.Meter { + public func createIntCounter(name: Swift.String) -> VideoSDKRTC.AnyCounterMetric + public func createDoubleCounter(name: Swift.String) -> VideoSDKRTC.AnyCounterMetric + public func createIntMeasure(name: Swift.String) -> VideoSDKRTC.AnyMeasureMetric + public func createDoubleMeasure(name: Swift.String) -> VideoSDKRTC.AnyMeasureMetric + public func createIntObserver(name: Swift.String, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + public func createDoubleObserver(name: Swift.String, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric +} +public protocol MeterBuilder : AnyObject { + func setSchemaUrl(schemaUrl: Swift.String) -> Self + func setInstrumentationVersion(instrumentationVersion: Swift.String) -> Self + func build() -> any VideoSDKRTC.StableMeter +} +@_hasMissingDesignatedInitializers public class MeterBuilderSdk : VideoSDKRTC.MeterBuilder { + public func setSchemaUrl(schemaUrl: Swift.String) -> Self + public func setInstrumentationVersion(instrumentationVersion: Swift.String) -> Self + public func build() -> any VideoSDKRTC.StableMeter + @objc deinit +} +public protocol MeterProvider : AnyObject { + func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String?) -> any VideoSDKRTC.Meter +} +public class MeterProviderBuilder { + public var resource: VideoSDKRTC.Resource { + get + } + public var metricExporter: any VideoSDKRTC.MetricExporter { + get + } + public var metricPushInterval: Foundation.TimeInterval { + get + } + public var metricProcessor: any VideoSDKRTC.MetricProcessor { + get + } + public init() + public func with(processor: any VideoSDKRTC.MetricProcessor) -> Self + public func with(exporter: any VideoSDKRTC.MetricExporter) -> Self + public func with(pushInterval: Foundation.TimeInterval) -> Self + public func with(resource: VideoSDKRTC.Resource) -> Self + public func build() -> any VideoSDKRTC.MeterProvider + @objc deinit +} +public class MeterProviderSdk : VideoSDKRTC.MeterProvider { + public static let defaultPushInterval: Swift.Double + convenience public init() + public init(metricProcessor: any VideoSDKRTC.MetricProcessor, metricExporter: any VideoSDKRTC.MetricExporter, metricPushInterval: Foundation.TimeInterval = MeterProviderSdk.defaultPushInterval, resource: VideoSDKRTC.Resource = EnvVarResource.get()) + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Meter + public func setMetricProcessor(_ metricProcessor: any VideoSDKRTC.MetricProcessor) + public func addMetricExporter(_ metricExporter: any VideoSDKRTC.MetricExporter) + public func setMetricPushInterval(_ interval: Foundation.TimeInterval) + public func setResource(_ resource: VideoSDKRTC.Resource) + @objc deinit +} +extension VideoSDKRTC.Meter { + public func addMetric(name _: Swift.String, type _: VideoSDKRTC.AggregationType, data _: [any VideoSDKRTC.MetricData]) +} +public struct Metric { + public var namespace: Swift.String { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var name: Swift.String { + get + } + public var description: Swift.String { + get + } + public var aggregationType: VideoSDKRTC.AggregationType { + get + } + public var data: [any VideoSDKRTC.MetricData] { + get + } +} +extension VideoSDKRTC.Metric : Swift.Equatable { + public static func == (lhs: VideoSDKRTC.Metric, rhs: VideoSDKRTC.Metric) -> Swift.Bool +} +extension VideoSDKRTC.Metric : Swift.Codable { + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public protocol MetricData { + var startTimestamp: Foundation.Date { get set } + var timestamp: Foundation.Date { get set } + var labels: [Swift.String : Swift.String] { get set } +} +public struct NoopMetricData : VideoSDKRTC.MetricData { + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] +} +public struct SumData : VideoSDKRTC.MetricData { + public init(startTimestamp: Foundation.Date, timestamp: Foundation.Date, labels: [Swift.String : Swift.String] = [String: String](), sum: T) + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] + public var sum: T +} +public struct SummaryData : VideoSDKRTC.MetricData { + public init(startTimestamp: Foundation.Date, timestamp: Foundation.Date, labels: [Swift.String : Swift.String] = [String: String](), count: Swift.Int, sum: T, min: T, max: T) + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] + public var count: Swift.Int + public var sum: T + public var min: T + public var max: T +} +public struct HistogramData : VideoSDKRTC.MetricData { + public init(startTimestamp: Foundation.Date, timestamp: Foundation.Date, labels: [Swift.String : Swift.String] = [String: String](), buckets: (boundaries: Swift.Array, counts: Swift.Array), count: Swift.Int, sum: T) + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] + public var buckets: (boundaries: Swift.Array, counts: Swift.Array) + public var count: Swift.Int + public var sum: T +} +extension VideoSDKRTC.NoopMetricData : Swift.Equatable, Swift.Codable { + public static func == (a: VideoSDKRTC.NoopMetricData, b: VideoSDKRTC.NoopMetricData) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.SumData : Swift.Equatable where T : Swift.Equatable { + public static func == (a: VideoSDKRTC.SumData, b: VideoSDKRTC.SumData) -> Swift.Bool +} +extension VideoSDKRTC.SumData : Swift.Codable where T : Swift.Decodable, T : Swift.Encodable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.SummaryData : Swift.Equatable where T : Swift.Equatable { + public static func == (a: VideoSDKRTC.SummaryData, b: VideoSDKRTC.SummaryData) -> Swift.Bool +} +extension VideoSDKRTC.SummaryData : Swift.Codable where T : Swift.Decodable, T : Swift.Encodable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.HistogramData : Swift.Equatable where T : Swift.Equatable { + public static func == (lhs: VideoSDKRTC.HistogramData, rhs: VideoSDKRTC.HistogramData) -> Swift.Bool +} +extension VideoSDKRTC.HistogramData : Swift.Codable where T : Swift.Decodable, T : Swift.Encodable { + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public struct MetricDescriptor : Swift.Hashable { + public var name: Swift.String { + get + } + public var description: Swift.String { + get + } + public var view: VideoSDKRTC.StableView { + get + } + public var instrument: VideoSDKRTC.InstrumentDescriptor { + get + } + public func aggregationName() -> Swift.String + public static func == (lhs: VideoSDKRTC.MetricDescriptor, rhs: VideoSDKRTC.MetricDescriptor) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public enum MetricExporterResultCode { + case success + case failureNotRetryable + case failureRetryable + public static func == (a: VideoSDKRTC.MetricExporterResultCode, b: VideoSDKRTC.MetricExporterResultCode) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public protocol MetricExporter { + func export(metrics: [VideoSDKRTC.Metric], shouldCancel: (() -> Swift.Bool)?) -> VideoSDKRTC.MetricExporterResultCode +} +public protocol MetricProcessor { + func finishCollectionCycle() -> [VideoSDKRTC.Metric] + func process(metric: VideoSDKRTC.Metric) +} +public class MetricProcessorSdk : VideoSDKRTC.MetricProcessor { + public init() + public func finishCollectionCycle() -> [VideoSDKRTC.Metric] + public func process(metric: VideoSDKRTC.Metric) + @objc deinit +} +public protocol MetricProducer : VideoSDKRTC.CollectionRegistration { + func collectAllMetrics() -> [VideoSDKRTC.StableMetricData] +} +public struct NoopMetricProducer : VideoSDKRTC.MetricProducer { + public func collectAllMetrics() -> [VideoSDKRTC.StableMetricData] +} +public enum Opentelemetry_Proto_Metrics_V1_AggregationTemporality : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unspecified + case delta + case cumulative + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality] +} +public enum Opentelemetry_Proto_Metrics_V1_DataPointFlags : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case doNotUse + case noRecordedValueMask + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags] +} +public struct Opentelemetry_Proto_Metrics_V1_MetricsData { + public var resourceMetrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ResourceMetrics { + public var resource: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource { + get + set + } + public var hasResource: Swift.Bool { + get + } + public mutating func clearResource() + public var scopeMetrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ScopeMetrics { + public var scope: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope { + get + set + } + public var hasScope: Swift.Bool { + get + } + public mutating func clearScope() + public var metrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Metric { + public var name: Swift.String + public var description_p: Swift.String + public var unit: Swift.String + public var data: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data? + public var gauge: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge { + get + set + } + public var sum: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum { + get + set + } + public var histogram: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram { + get + set + } + public var exponentialHistogram: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram { + get + set + } + public var summary: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Data : Swift.Equatable { + case gauge(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge) + case sum(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum) + case histogram(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram) + case exponentialHistogram(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram) + case summary(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary) + public static func == (a: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data, b: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data) -> Swift.Bool + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Gauge { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Sum { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint] + public var aggregationTemporality: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality + public var isMonotonic: Swift.Bool + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Histogram { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint] + public var aggregationTemporality: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ExponentialHistogram { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint] + public var aggregationTemporality: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Summary { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_NumberDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var value: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value? + public var asDouble: Swift.Double { + get + set + } + public var asInt: Swift.Int64 { + get + set + } + public var exemplars: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar] + public var flags: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Value : Swift.Equatable { + case asDouble(Swift.Double) + case asInt(Swift.Int64) + public static func == (a: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value, b: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value) -> Swift.Bool + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_HistogramDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var count: Swift.UInt64 + public var sum: Swift.Double { + get + set + } + public var hasSum: Swift.Bool { + get + } + public mutating func clearSum() + public var bucketCounts: [Swift.UInt64] + public var explicitBounds: [Swift.Double] + public var exemplars: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar] + public var flags: Swift.UInt32 + public var min: Swift.Double { + get + set + } + public var hasMin: Swift.Bool { + get + } + public mutating func clearMin() + public var max: Swift.Double { + get + set + } + public var hasMax: Swift.Bool { + get + } + public mutating func clearMax() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var count: Swift.UInt64 + public var sum: Swift.Double { + get + set + } + public var hasSum: Swift.Bool { + get + } + public mutating func clearSum() + public var scale: Swift.Int32 + public var zeroCount: Swift.UInt64 + public var positive: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets { + get + set + } + public var hasPositive: Swift.Bool { + get + } + public mutating func clearPositive() + public var negative: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets { + get + set + } + public var hasNegative: Swift.Bool { + get + } + public mutating func clearNegative() + public var flags: Swift.UInt32 + public var exemplars: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar] + public var min: Swift.Double { + get + set + } + public var hasMin: Swift.Bool { + get + } + public mutating func clearMin() + public var max: Swift.Double { + get + set + } + public var hasMax: Swift.Bool { + get + } + public mutating func clearMax() + public var zeroThreshold: Swift.Double + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct Buckets { + public var offset: Swift.Int32 + public var bucketCounts: [Swift.UInt64] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_SummaryDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var count: Swift.UInt64 + public var sum: Swift.Double + public var quantileValues: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile] + public var flags: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct ValueAtQuantile { + public var quantile: Swift.Double + public var value: Swift.Double + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Exemplar { + public var filteredAttributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var timeUnixNano: Swift.UInt64 + public var value: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value? + public var asDouble: Swift.Double { + get + set + } + public var asInt: Swift.Int64 { + get + set + } + public var spanID: Foundation.Data + public var traceID: Foundation.Data + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Value : Swift.Equatable { + case asDouble(Swift.Double) + case asInt(Swift.Int64) + public static func == (a: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value, b: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value) -> Swift.Bool + } + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest { + public var resourceMetrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse { + public var partialSuccess: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess { + get + set + } + public var hasPartialSuccess: Swift.Bool { + get + } + public mutating func clearPartialSuccess() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess { + public var rejectedDataPoints: Swift.Int64 + public var errorMessage: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public enum MetricsAdapter { + public static func toProtoResourceMetrics(stableMetricData: [VideoSDKRTC.StableMetricData]) -> [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public static func toProtoResourceMetrics(metricDataList: [VideoSDKRTC.Metric]) -> [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public static func toProtoMetric(stableMetric: VideoSDKRTC.StableMetricData) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric? + public static func toProtoMetric(metric: VideoSDKRTC.Metric) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric? +} +public struct MetricStorageConstants { +} +public protocol MetricStorage { + var metricDescriptor: VideoSDKRTC.MetricDescriptor { get } + mutating func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + func isEmpty() -> Swift.Bool +} +public protocol WritableMetricStorage { + mutating func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + mutating func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +@_hasMissingDesignatedInitializers public class MetricStorageRegistry { + @objc deinit +} +public class MillisClock : VideoSDKRTC.Clock { + public init() + public var now: Foundation.Date { + get + } + @objc deinit +} +public class MonotonicClock : VideoSDKRTC.Clock { + public init(clock: any VideoSDKRTC.Clock) + public var now: Foundation.Date { + get + } + @objc deinit +} +public class MultiLogRecordExporter : VideoSDKRTC.LogRecordExporter { + public init(logRecordExporters: [any VideoSDKRTC.LogRecordExporter]) + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func shutdown() + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public class MultiLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + public init(logRecordProcessors: [any VideoSDKRTC.LogRecordProcessor]) + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + @objc deinit +} +public class MultiSpanExporter : VideoSDKRTC.SpanExporter { + public init(spanExporters: [any VideoSDKRTC.SpanExporter]) + public func export(spans: [VideoSDKRTC.SpanData]) -> VideoSDKRTC.SpanExporterResultCode + public func flush() -> VideoSDKRTC.SpanExporterResultCode + public func shutdown() + @objc deinit +} +public struct MultiSpanProcessor : VideoSDKRTC.SpanProcessor { + public init(spanProcessors: [any VideoSDKRTC.SpanProcessor]) + public var isStartRequired: Swift.Bool { + get + } + public var isEndRequired: Swift.Bool { + get + } + public func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + public func onEnd(span: any VideoSDKRTC.ReadableSpan) + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) +} +public struct _NameMap : Swift.ExpressibleByDictionaryLiteral { + public enum NameDescription { + case same(proto: Swift.StaticString) + case standard(proto: Swift.StaticString) + case unique(proto: Swift.StaticString, json: Swift.StaticString) + case aliased(proto: Swift.StaticString, aliases: [Swift.StaticString]) + } + public init() + public init(dictionaryLiteral elements: (Swift.Int, VideoSDKRTC._NameMap.NameDescription)...) + public typealias Key = Swift.Int + public typealias Value = VideoSDKRTC._NameMap.NameDescription +} +@_hasMissingDesignatedInitializers public class NoopLogRecordExporter : VideoSDKRTC.LogRecordExporter { + public static let instance: VideoSDKRTC.NoopLogRecordExporter + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func shutdown() + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +@_hasMissingDesignatedInitializers public class NoopLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public static let noopLogRecordProcessor: VideoSDKRTC.NoopLogRecordProcessor + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + @objc deinit +} +public protocol ObservableDoubleCounter { +} +public protocol ObservableDoubleGauge { +} +public protocol ObservableDoubleMeasurement { + func record(value: Swift.Double) + func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol ObservableDoubleUpDownCounter { +} +public struct ObservableInstrumentSdk : VideoSDKRTC.ObservableDoubleCounter, VideoSDKRTC.ObservableLongCounter, VideoSDKRTC.ObservableLongGauge, VideoSDKRTC.ObservableLongUpDownCounter, VideoSDKRTC.ObservableDoubleGauge, VideoSDKRTC.ObservableDoubleUpDownCounter { +} +public protocol ObservableLongCounter { +} +public protocol ObservableLongGauge { +} +public protocol ObservableLongMeasurement { + func record(value: Swift.Int) + func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol ObservableLongUpDownCounter { +} +public func defaultOltpHTTPMetricsEndpoint() -> Foundation.URL +@_inheritsConvenienceInitializers public class OtlpHttpMetricExporter : VideoSDKRTC.OtlpHttpExporterBase, VideoSDKRTC.MetricExporter { + override public init(endpoint: Foundation.URL = defaultOltpHTTPMetricsEndpoint(), useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func export(metrics: [VideoSDKRTC.Metric], shouldCancel: (() -> Swift.Bool)?) -> VideoSDKRTC.MetricExporterResultCode + public func flush() -> VideoSDKRTC.MetricExporterResultCode + @objc deinit +} +public struct OpenTelemetry { + public static var version: Swift.String + public static var instance: VideoSDKRTC.OpenTelemetry + public var tracerProvider: any VideoSDKRTC.TracerProvider { + get + } + public var meterProvider: any VideoSDKRTC.MeterProvider { + get + } + public var stableMeterProvider: (any VideoSDKRTC.StableMeterProvider)? { + get + } + public var loggerProvider: any VideoSDKRTC.LoggerProvider { + get + } + public var baggageManager: any VideoSDKRTC.BaggageManager { + get + } + public var propagators: any VideoSDKRTC.ContextPropagators { + get + } + public var contextProvider: VideoSDKRTC.OpenTelemetryContextProvider { + get + } + public static func registerStableMeterProvider(meterProvider: any VideoSDKRTC.StableMeterProvider) + public static func registerTracerProvider(tracerProvider: any VideoSDKRTC.TracerProvider) + public static func registerMeterProvider(meterProvider: any VideoSDKRTC.MeterProvider) + public static func registerLoggerProvider(loggerProvider: any VideoSDKRTC.LoggerProvider) + public static func registerBaggageManager(baggageManager: any VideoSDKRTC.BaggageManager) + public static func registerPropagators(textPropagators: [any VideoSDKRTC.TextMapPropagator], baggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator) + public static func registerContextManager(contextManager: any VideoSDKRTC.ContextManager) +} +public enum OpenTelemetryContextKeys : Swift.String { + case span + case baggage + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct OpenTelemetryContextProvider { + public var activeSpan: (any VideoSDKRTC.Span)? { + get + } + public var activeBaggage: (any VideoSDKRTC.Baggage)? { + get + } + public func setActiveSpan(_ span: any VideoSDKRTC.Span) + public func setActiveBaggage(_ baggage: any VideoSDKRTC.Baggage) + public func removeContextForSpan(_ span: any VideoSDKRTC.Span) + public func removeContextForBaggage(_ baggage: any VideoSDKRTC.Baggage) +} +public struct OtlpConfiguration { + public static let DefaultTimeoutInterval: Foundation.TimeInterval + public let headers: [(Swift.String, Swift.String)]? + public let timeout: Foundation.TimeInterval + public init(timeout: Foundation.TimeInterval = OtlpConfiguration.DefaultTimeoutInterval, headers: [(Swift.String, Swift.String)]? = nil) +} +public class OtlpHttpExporterBase { + public init(endpoint: Foundation.URL, useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func createRequest(body: any VideoSDKRTC.Message, endpoint: Foundation.URL, authToken: Swift.String) -> Foundation.URLRequest + public func shutdown() + @objc deinit +} +public func defaultOltpHttpLoggingEndpoint() -> Foundation.URL +@_inheritsConvenienceInitializers public class OtlpHttpLogExporter : VideoSDKRTC.OtlpHttpExporterBase, VideoSDKRTC.LogRecordExporter { + override public init(endpoint: Foundation.URL = defaultOltpHttpLoggingEndpoint(), useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func forceFlush() -> VideoSDKRTC.ExportResult + public func flush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public func defaultOltpHttpTracesEndpoint() -> Foundation.URL +@_inheritsConvenienceInitializers public class OtlpHttpTraceExporter : VideoSDKRTC.OtlpHttpExporterBase, VideoSDKRTC.SpanExporter { + override public init(endpoint: Foundation.URL = defaultOltpHttpTracesEndpoint(), useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func export(spans: [VideoSDKRTC.SpanData]) -> VideoSDKRTC.SpanExporterResultCode + public func flush() -> VideoSDKRTC.SpanExporterResultCode + @objc deinit +} +public struct OtlpSpan : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct Attribute : Swift.Codable { + public struct Value : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public enum OTPCConstants { + public enum HTTP { + public static let userAgent: Swift.String + } +} +@_hasMissingDesignatedInitializers public class Participant : Swift.Equatable { + public var id: Swift.String { + get + } + public var displayName: Swift.String { + get + } + public var videoQuality: VideoSDKRTC.VideoQuality { + get + } + public var isLocal: Swift.Bool { + get + } + public var streams: [Swift.String : VideoSDKRTC.MediaStream] { + get + } + public var pinState: VideoSDKRTC.ParticipantPinState + public var mode: VideoSDKRTC.Mode + @objc deinit +} +extension VideoSDKRTC.Participant { + public func enableMic() + public func disableMic() + public func enableWebcam() + public func disableWebcam() + public func remove() + public func participantPinStateChanged(pinState: VideoSDKRTC.ParticipantPinState) + public func participantModeChanged(mode: VideoSDKRTC.Mode) + public func getAudioStats() -> [Swift.String : Any]? + public func getVideoStats() -> [Swift.String : Any]? +} +extension VideoSDKRTC.Participant { + public func addStream(_ stream: VideoSDKRTC.MediaStream) + @discardableResult + public func removeStream(_ streamId: Swift.String) -> VideoSDKRTC.MediaStream? + public func removeAllStreams() + public func setQuality(_ quality: VideoSDKRTC.VideoQuality) + public func pin(_ peerId: Swift.String = "", _ pinType: VideoSDKRTC.PinType = .SHARE_AND_CAM) + public func unpin(_ pinType: VideoSDKRTC.PinType = .SHARE_AND_CAM) + public func setPinState(pinState: VideoSDKRTC.ParticipantPinState, peerId: Swift.String = "") +} +extension VideoSDKRTC.Participant { + public func addEventListener(_ listener: any VideoSDKRTC.ParticipantEventListener) + public func removeEventListener(_ listener: any VideoSDKRTC.ParticipantEventListener) +} +extension VideoSDKRTC.Participant { + public static func == (lhs: VideoSDKRTC.Participant, rhs: VideoSDKRTC.Participant) -> Swift.Bool +} +public protocol ParticipantEventListener { + func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) + func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +} +extension VideoSDKRTC.ParticipantEventListener { + public func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) + public func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +} +public enum PinType : Swift.String { + case SHARE_AND_CAM, CAM, SHARE + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct ParticipantPinState : Swift.Codable { + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +@_hasMissingDesignatedInitializers public class PointData : Swift.Equatable { + public var startEpochNanos: Swift.UInt64 + public var endEpochNanos: Swift.UInt64 + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] + public var exemplars: [VideoSDKRTC.ExemplarData] + public static func - (left: VideoSDKRTC.PointData, right: VideoSDKRTC.PointData) -> Self + public static func == (lhs: VideoSDKRTC.PointData, rhs: VideoSDKRTC.PointData) -> Swift.Bool + @objc deinit +} +public protocol ProtobufAPIVersion_3 { +} +public protocol ProtobufAPIVersionCheck { + associatedtype Version : VideoSDKRTC.ProtobufAPIVersion_3 +} +public struct _ProtobufMap where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.FieldType { + public typealias Key = KeyType.BaseType + public typealias Value = ValueType.BaseType + public typealias BaseType = Swift.Dictionary.Key, VideoSDKRTC._ProtobufMap.Value> +} +public struct _ProtobufMessageMap where KeyType : VideoSDKRTC.MapKeyType, ValueType : Swift.Hashable, ValueType : VideoSDKRTC.Message { + public typealias Key = KeyType.BaseType + public typealias Value = ValueType + public typealias BaseType = Swift.Dictionary.Key, VideoSDKRTC._ProtobufMessageMap.Value> +} +public struct _ProtobufEnumMap where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.Enum { + public typealias Key = KeyType.BaseType + public typealias Value = ValueType + public typealias BaseType = Swift.Dictionary.Key, VideoSDKRTC._ProtobufEnumMap.Value> +} +public protocol _ProtoNameProviding { + static var _protobuf_nameMap: VideoSDKRTC._NameMap { get } +} +public struct ProxyMeter : VideoSDKRTC.Meter { + public func createRawDoubleCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + public func createRawIntCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + public func createRawDoubleHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + public func createRawIntHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + public func getLabelSet(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.LabelSet + public func createIntCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + public func createDoubleCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + public func createIntMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + public func createDoubleMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + public func createIntHistogram(name: Swift.String, explicitBoundaries: Swift.Array? = nil, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + public func createDoubleHistogram(name: Swift.String, explicitBoundaries: Swift.Array?, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + public func createIntObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + public func createDoubleObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric + public func createIntObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + public func createDoubleObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric +} +@_hasMissingDesignatedInitializers public class PubSub { + @objc deinit +} +extension VideoSDKRTC.PubSub { + public func publish(topic: Swift.String, message: Swift.String, options: [Swift.String : Any] = [:]) + public func subscribe(topic: Swift.String, forListener listener: any VideoSDKRTC.PubSubMessageListener) + public func unsubscribe(topic: Swift.String, forListener listener: any VideoSDKRTC.PubSubMessageListener) + public func getMessagesForTopic(_ topic: Swift.String) -> [VideoSDKRTC.PubSubMessage] +} +@objc @_hasMissingDesignatedInitializers public class PubSubMessage : ObjectiveC.NSObject { + public var id: Swift.String + public var topic: Swift.String + public var message: Swift.String + public var senderId: Swift.String + public var senderName: Swift.String + public var timestamp: Swift.String + @objc deinit +} +public protocol PubSubMessageListener { + func onMessageReceived(_ message: VideoSDKRTC.PubSubMessage) +} +public struct RandomIdGenerator : VideoSDKRTC.IdGenerator { + public init() + public func generateSpanId() -> VideoSDKRTC.SpanId + public func generateTraceId() -> VideoSDKRTC.TraceId +} +public protocol RawCounterMetric { + associatedtype T + func record(sum: Self.T, startDate: Foundation.Date, endDate: Foundation.Date, labels: [Swift.String : Swift.String]) + func record(sum: Self.T, startDate: Foundation.Date, endDate: Foundation.Date, labelset: VideoSDKRTC.LabelSet) + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawCounterMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawCounterMetric +} +public struct AnyRawCounterMetric : VideoSDKRTC.RawCounterMetric { + public init(_ countable: U) where T == U.T, U : VideoSDKRTC.RawCounterMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawCounterMetric + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labelset: VideoSDKRTC.LabelSet) + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labels: [Swift.String : Swift.String]) +} +public struct NoopRawCounterMetric : VideoSDKRTC.RawCounterMetric { + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labels: [Swift.String : Swift.String]) + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labelset: VideoSDKRTC.LabelSet) + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawCounterMetric +} +public protocol RawHistogramMetric { + associatedtype T + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawHistogramMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawHistogramMetric + func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: Self.T, labelset: VideoSDKRTC.LabelSet) + func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: Self.T, labels: [Swift.String : Swift.String]) +} +public struct AnyRawHistogramMetric : VideoSDKRTC.RawHistogramMetric { + public init(_ histogram: U) where T == U.T, U : VideoSDKRTC.RawHistogramMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawHistogramMetric + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labels: [Swift.String : Swift.String]) + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labelset: VideoSDKRTC.LabelSet) +} +public struct NoopRawHistogramMetric : VideoSDKRTC.RawHistogramMetric { + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labelset: VideoSDKRTC.LabelSet) + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labels: [Swift.String : Swift.String]) + public init() + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawHistogramMetric +} +public struct ReadableLogRecord : Swift.Codable { + public init(resource: VideoSDKRTC.Resource, instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo, timestamp: Foundation.Date, observedTimestamp: Foundation.Date? = nil, spanContext: VideoSDKRTC.SpanContext? = nil, severity: VideoSDKRTC.Severity? = nil, body: Swift.String? = nil, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var timestamp: Foundation.Date { + get + } + public var observedTimestamp: Foundation.Date? { + get + } + public var spanContext: VideoSDKRTC.SpanContext? { + get + } + public var severity: VideoSDKRTC.Severity? { + get + } + public var body: Swift.String? { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public protocol ReadableSpan : VideoSDKRTC.Span { + var name: Swift.String { get set } + var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { get } + func toSpanData() -> VideoSDKRTC.SpanData + var hasEnded: Swift.Bool { get } + var latency: Foundation.TimeInterval { get } +} +@_hasMissingDesignatedInitializers public class RecordEventsReadableSpan : VideoSDKRTC.ReadableSpan { + public var isRecording: Swift.Bool + public var name: Swift.String { + get + set + } + public var spanLimits: VideoSDKRTC.SpanLimits { + get + } + public var context: VideoSDKRTC.SpanContext { + get + } + public var parentContext: VideoSDKRTC.SpanContext? { + get + } + public var hasRemoteParent: Swift.Bool { + get + } + public var spanProcessor: any VideoSDKRTC.SpanProcessor { + get + } + public var links: [VideoSDKRTC.SpanData.Link] { + get + } + public var totalRecordedLinks: Swift.Int { + get + } + public var maxNumberOfAttributes: Swift.Int { + get + } + public var maxNumberOfAttributesPerEvent: Swift.Int { + get + } + public var kind: VideoSDKRTC.SpanKind { + get + } + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var startTime: Foundation.Date { + get + } + public var events: VideoSDKRTC.ArrayWithCapacity { + get + } + public var totalAttributeCount: Swift.Int { + get + } + public var totalRecordedEvents: Swift.Int { + get + } + public var status: VideoSDKRTC.Status { + get + set + } + public var latency: Foundation.TimeInterval { + get + } + public var endTime: Foundation.Date? { + get + } + public var hasEnded: Swift.Bool { + get + } + public static func startSpan(context: VideoSDKRTC.SpanContext, name: Swift.String, instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo, kind: VideoSDKRTC.SpanKind, parentContext: VideoSDKRTC.SpanContext?, hasRemoteParent: Swift.Bool, spanLimits: VideoSDKRTC.SpanLimits, spanProcessor: any VideoSDKRTC.SpanProcessor, clock: any VideoSDKRTC.Clock, resource: VideoSDKRTC.Resource, attributes: VideoSDKRTC.AttributesDictionary, links: [VideoSDKRTC.SpanData.Link], totalRecordedLinks: Swift.Int, startTime: Foundation.Date?) -> VideoSDKRTC.RecordEventsReadableSpan + public func toSpanData() -> VideoSDKRTC.SpanData + public func setAttribute(key: Swift.String, value: VideoSDKRTC.AttributeValue?) + public func addEvent(name: Swift.String) + public func addEvent(name: Swift.String, timestamp: Foundation.Date) + public func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue], timestamp: Foundation.Date) + public func end() + public func end(time: Foundation.Date) + public var description: Swift.String { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class RegisteredReader : Swift.Equatable, Swift.Hashable { + final public let id: Swift.Int32 + final public let reader: any VideoSDKRTC.StableMetricReader + final public let registry: VideoSDKRTC.StableViewRegistry + public var lastCollectedEpochNanos: Swift.UInt64 + public func hash(into hasher: inout Swift.Hasher) + public static func == (lhs: VideoSDKRTC.RegisteredReader, rhs: VideoSDKRTC.RegisteredReader) -> Swift.Bool + @objc deinit + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class RegisteredView { + public var selector: VideoSDKRTC.InstrumentSelector { + get + } + public var view: VideoSDKRTC.StableView { + get + } + public var attributeProcessor: VideoSDKRTC.AttributeProcessor { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class ReservoirCell { + @objc deinit +} +public protocol ReservoirCellSelector { + func reservoirCellIndex(for cells: [VideoSDKRTC.ReservoirCell], value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Int + func reservoirCellIndex(for cells: [VideoSDKRTC.ReservoirCell], value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Int + func reset() +} +public struct Resource : Swift.Equatable, Swift.Hashable, Swift.Codable { + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] + public init() + public init(attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public mutating func merge(other: VideoSDKRTC.Resource) + public func merging(other: VideoSDKRTC.Resource) -> VideoSDKRTC.Resource + public static func == (a: VideoSDKRTC.Resource, b: VideoSDKRTC.Resource) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public struct Opentelemetry_Proto_Resource_V1_Resource { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource, rhs: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct ResourceAdapter { + public static func toProtoResource(resource: VideoSDKRTC.Resource) -> VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource +} +public enum ResourceAttributes : Swift.String { + case browserBrands + case browserPlatform + case browserMobile + case browserLanguage + case userAgentOriginal + case cloudProvider + case cloudAccountId + case cloudRegion + case cloudResourceId + case cloudAvailabilityZone + case cloudPlatform + case awsEcsContainerArn + case awsEcsClusterArn + case awsEcsLaunchtype + case awsEcsTaskArn + case awsEcsTaskFamily + case awsEcsTaskRevision + case awsEksClusterArn + case awsLogGroupNames + case awsLogGroupArns + case awsLogStreamNames + case awsLogStreamArns + case herokuReleaseCreationTimestamp + case herokuReleaseCommit + case herokuAppId + case containerName + case containerId + case containerRuntime + case containerImageName + case containerImageTag + case deploymentEnvironment + case deviceId + case deviceModelIdentifier + case deviceModelName + case deviceManufacturer + case faasName + case faasVersion + case faasInstance + case faasMaxMemory + case hostId + case hostName + case hostType + case hostArch + case hostImageName + case hostImageId + case hostImageVersion + case k8sClusterName + case k8sNodeName + case k8sNodeUid + case k8sNamespaceName + case k8sPodUid + case k8sPodName + case k8sContainerName + case k8sContainerRestartCount + case k8sReplicasetUid + case k8sReplicasetName + case k8sDeploymentUid + case k8sDeploymentName + case k8sStatefulsetUid + case k8sStatefulsetName + case k8sDaemonsetUid + case k8sDaemonsetName + case k8sJobUid + case k8sJobName + case k8sCronjobUid + case k8sCronjobName + case osType + case osDescription + case osName + case osVersion + case processPid + case processParentPid + case processExecutableName + case processExecutablePath + case processCommand + case processCommandLine + case processCommandArgs + case processOwner + case processRuntimeName + case processRuntimeVersion + case processRuntimeDescription + case serviceName + case serviceNamespace + case serviceInstanceId + case serviceVersion + case telemetrySdkName + case telemetrySdkLanguage + case telemetrySdkVersion + case telemetryAutoVersion + case webengineName + case webengineVersion + case webengineDescription + case otelScopeName + case otelScopeVersion + case otelLibraryName + case otelLibraryVersion + public struct CloudProviderValues : Swift.CustomStringConvertible { + public static let alibabaCloud: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let aws: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let azure: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let gcp: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let heroku: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let ibmCloud: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let tencentCloud: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct CloudPlatformValues : Swift.CustomStringConvertible { + public static let alibabaCloudEcs: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let alibabaCloudFc: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let alibabaCloudOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsEc2: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsEcs: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsEks: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsLambda: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsElasticBeanstalk: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsAppRunner: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureVm: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureContainerInstances: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureAks: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureFunctions: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureAppService: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpComputeEngine: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpCloudRun: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpKubernetesEngine: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpCloudFunctions: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpAppEngine: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let ibmCloudOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let tencentCloudCvm: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let tencentCloudEks: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let tencentCloudScf: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum AwsEcsLaunchtypeValues : Swift.String { + case ec2 + case fargate + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct HostArchValues : Swift.CustomStringConvertible { + public static let amd64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let arm32: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let arm64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let ia64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let ppc32: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let ppc64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let s390x: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let x86: VideoSDKRTC.ResourceAttributes.HostArchValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct OsTypeValues : Swift.CustomStringConvertible { + public static let windows: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let linux: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let darwin: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let freebsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let netbsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let openbsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let dragonflybsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let hpux: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let aix: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let solaris: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let zOs: VideoSDKRTC.ResourceAttributes.OsTypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct TelemetrySdkLanguageValues : Swift.CustomStringConvertible { + public static let cpp: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let dotnet: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let erlang: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let go: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let java: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let nodejs: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let php: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let python: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let ruby: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let webjs: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let swift: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public func == (left: VideoSDKRTC.ResourceAttributes, right: Swift.String) -> Swift.Bool +public func == (left: Swift.String, right: VideoSDKRTC.ResourceAttributes) -> Swift.Bool +public protocol Sampler : AnyObject, Swift.CustomStringConvertible { + func shouldSample(parentContext: VideoSDKRTC.SpanContext?, traceId: VideoSDKRTC.TraceId, name: Swift.String, kind: VideoSDKRTC.SpanKind, attributes: [Swift.String : VideoSDKRTC.AttributeValue], parentLinks: [VideoSDKRTC.SpanData.Link]) -> any VideoSDKRTC.Decision +} +public protocol Decision { + var isSampled: Swift.Bool { get } + var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { get } +} +public enum Samplers { + public static var alwaysOn: any VideoSDKRTC.Sampler + public static var alwaysOff: any VideoSDKRTC.Sampler + public static func traceIdRatio(ratio: Swift.Double) -> any VideoSDKRTC.Sampler + public static func parentBased(root: any VideoSDKRTC.Sampler, remoteParentSampled: (any VideoSDKRTC.Sampler)? = nil, remoteParentNotSampled: (any VideoSDKRTC.Sampler)? = nil, localParentSampled: (any VideoSDKRTC.Sampler)? = nil, localParentNotSampled: (any VideoSDKRTC.Sampler)? = nil) -> any VideoSDKRTC.Sampler +} +public enum SemanticAttributes : Swift.String { + case exceptionType + case exceptionMessage + case exceptionStacktrace + case httpMethod + case httpStatusCode + case netProtocolName + case netProtocolVersion + case netPeerName + case netPeerPort + case httpScheme + case httpRoute + case netHostName + case netHostPort + case eventName + case eventDomain + case logRecordUid + case featureFlagKey + case featureFlagProviderName + case featureFlagVariant + case awsLambdaInvokedArn + case cloudeventsEventId + case cloudeventsEventSource + case cloudeventsEventSpecVersion + case cloudeventsEventType + case cloudeventsEventSubject + case opentracingRefType + case dbSystem + case dbConnectionString + case dbUser + case dbJdbcDriverClassname + case dbName + case dbStatement + case dbOperation + case netSockPeerAddr + case netSockPeerPort + case netSockFamily + case netSockPeerName + case netTransport + case dbMssqlInstanceName + case dbCassandraPageSize + case dbCassandraConsistencyLevel + case dbCassandraTable + case dbCassandraIdempotence + case dbCassandraSpeculativeExecutionCount + case dbCassandraCoordinatorId + case dbCassandraCoordinatorDc + case dbRedisDatabaseIndex + case dbMongodbCollection + case dbSqlTable + case dbCosmosdbClientId + case dbCosmosdbOperationType + case userAgentOriginal + case dbCosmosdbConnectionMode + case dbCosmosdbContainer + case dbCosmosdbRequestContentLength + case dbCosmosdbStatusCode + case dbCosmosdbSubStatusCode + case dbCosmosdbRequestCharge + case otelStatusCode + case otelStatusDescription + case faasTrigger + case faasInvocationId + case cloudResourceId + case faasDocumentCollection + case faasDocumentOperation + case faasDocumentTime + case faasDocumentName + case httpTarget + case httpClientIp + case netSockHostAddr + case netSockHostPort + case messagingSystem + case messagingOperation + case messagingBatchMessageCount + case messagingMessageId + case messagingMessageConversationId + case messagingMessagePayloadSizeBytes + case messagingMessagePayloadCompressedSizeBytes + case faasTime + case faasCron + case faasColdstart + case faasInvokedName + case faasInvokedProvider + case faasInvokedRegion + case netHostConnectionType + case netHostConnectionSubtype + case netHostCarrierName + case netHostCarrierMcc + case netHostCarrierMnc + case netHostCarrierIcc + case peerService + case enduserId + case enduserRole + case enduserScope + case threadId + case threadName + case codeFunction + case codeNamespace + case codeFilepath + case codeLineno + case codeColumn + case httpRequestContentLength + case httpResponseContentLength + case httpUrl + case httpResendCount + case rpcSystem + case rpcService + case rpcMethod + case awsRequestId + case awsDynamodbTableNames + case awsDynamodbConsumedCapacity + case awsDynamodbItemCollectionMetrics + case awsDynamodbProvisionedReadCapacity + case awsDynamodbProvisionedWriteCapacity + case awsDynamodbConsistentRead + case awsDynamodbProjection + case awsDynamodbLimit + case awsDynamodbAttributesToGet + case awsDynamodbIndexName + case awsDynamodbSelect + case awsDynamodbGlobalSecondaryIndexes + case awsDynamodbLocalSecondaryIndexes + case awsDynamodbExclusiveStartTable + case awsDynamodbTableCount + case awsDynamodbScanForward + case awsDynamodbSegment + case awsDynamodbTotalSegments + case awsDynamodbCount + case awsDynamodbScannedCount + case awsDynamodbAttributeDefinitions + case awsDynamodbGlobalSecondaryIndexUpdates + case awsS3Bucket + case awsS3Key + case awsS3CopySource + case awsS3UploadId + case awsS3Delete + case awsS3PartNumber + case graphqlOperationName + case graphqlOperationType + case graphqlDocument + case messagingDestinationName + case messagingSourceName + case messagingDestinationTemplate + case messagingDestinationTemporary + case messagingDestinationAnonymous + case messagingSourceTemplate + case messagingSourceTemporary + case messagingSourceAnonymous + case messagingConsumerId + case messagingRabbitmqDestinationRoutingKey + case messagingKafkaMessageKey + case messagingKafkaConsumerGroup + case messagingKafkaClientId + case messagingKafkaDestinationPartition + case messagingKafkaSourcePartition + case messagingKafkaMessageOffset + case messagingKafkaMessageTombstone + case messagingRocketmqNamespace + case messagingRocketmqClientGroup + case messagingRocketmqClientId + case messagingRocketmqMessageDeliveryTimestamp + case messagingRocketmqMessageDelayTimeLevel + case messagingRocketmqMessageGroup + case messagingRocketmqMessageType + case messagingRocketmqMessageTag + case messagingRocketmqMessageKeys + case messagingRocketmqConsumptionModel + case rpcGrpcStatusCode + case rpcJsonrpcVersion + case rpcJsonrpcRequestId + case rpcJsonrpcErrorCode + case rpcJsonrpcErrorMessage + case messageType + case messageId + case messageCompressedSize + case messageUncompressedSize + case rpcConnectRpcErrorCode + case exceptionEscaped + case exception + public struct EventDomainValues : Swift.CustomStringConvertible { + public static let browser: VideoSDKRTC.SemanticAttributes.EventDomainValues + public static let device: VideoSDKRTC.SemanticAttributes.EventDomainValues + public static let k8s: VideoSDKRTC.SemanticAttributes.EventDomainValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum OpentracingRefTypeValues : Swift.String { + case child_of + case follows_from + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct DbSystemValues : Swift.CustomStringConvertible { + public static let otherSql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mssql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mssqlcompact: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mysql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let oracle: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let db2: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let postgresql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let redshift: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hive: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cloudscape: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hsqldb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let progress: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let maxdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hanadb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let ingres: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let firstsql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let edb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cache: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let adabas: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let firebird: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let derby: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let filemaker: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let informix: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let instantdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let interbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mariadb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let netezza: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let pervasive: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let pointbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let sqlite: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let sybase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let teradata: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let vertica: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let h2: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let coldfusion: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cassandra: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mongodb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let redis: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let couchbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let couchdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cosmosdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let dynamodb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let neo4j: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let geode: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let elasticsearch: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let memcached: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cockroachdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let opensearch: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let clickhouse: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let spanner: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let trino: VideoSDKRTC.SemanticAttributes.DbSystemValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetSockFamilyValues : Swift.CustomStringConvertible { + public static let inet: VideoSDKRTC.SemanticAttributes.NetSockFamilyValues + public static let inet6: VideoSDKRTC.SemanticAttributes.NetSockFamilyValues + public static let unix: VideoSDKRTC.SemanticAttributes.NetSockFamilyValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetTransportValues : Swift.CustomStringConvertible { + public static let ipTcp: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let ipUdp: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let pipe: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let inproc: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let other: VideoSDKRTC.SemanticAttributes.NetTransportValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum DbCassandraConsistencyLevelValues : Swift.String { + case all + case each_quorum + case quorum + case local_quorum + case one + case two + case three + case local_one + case any + case serial + case local_serial + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct DbCosmosdbOperationTypeValues : Swift.CustomStringConvertible { + public static let invalid: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let create: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let patch: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let read: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let readFeed: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let delete: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let replace: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let execute: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let query: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let head: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let headFeed: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let upsert: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let batch: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let queryPlan: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let executeJavascript: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum DbCosmosdbConnectionModeValues : Swift.String { + case gateway + case direct + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum OtelStatusCodeValues : Swift.String { + case ok + case error + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum FaasTriggerValues : Swift.String { + case datasource + case http + case pubsub + case timer + case other + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct FaasDocumentOperationValues : Swift.CustomStringConvertible { + public static let insert: VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues + public static let edit: VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues + public static let delete: VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct MessagingOperationValues : Swift.CustomStringConvertible { + public static let publish: VideoSDKRTC.SemanticAttributes.MessagingOperationValues + public static let receive: VideoSDKRTC.SemanticAttributes.MessagingOperationValues + public static let process: VideoSDKRTC.SemanticAttributes.MessagingOperationValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct FaasInvokedProviderValues : Swift.CustomStringConvertible { + public static let alibabaCloud: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let aws: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let azure: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let gcp: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let tencentCloud: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetHostConnectionTypeValues : Swift.CustomStringConvertible { + public static let wifi: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let wired: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let cell: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let unavailable: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let unknown: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetHostConnectionSubtypeValues : Swift.CustomStringConvertible { + public static let gprs: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let edge: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let umts: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let cdma: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let evdo0: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let evdoA: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let cdma20001xrtt: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hsdpa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hsupa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hspa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let iden: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let evdoB: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let lte: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let ehrpd: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hspap: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let gsm: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let tdScdma: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let iwlan: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let nr: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let nrnsa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let lteCa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct RpcSystemValues : Swift.CustomStringConvertible { + public static let grpc: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let javaRmi: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let dotnetWcf: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let apacheDubbo: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let connectRpc: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum GraphqlOperationTypeValues : Swift.String { + case query + case mutation + case subscription + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum MessagingRocketmqMessageTypeValues : Swift.String { + case normal + case fifo + case delay + case transaction + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum MessagingRocketmqConsumptionModelValues : Swift.String { + case clustering + case broadcasting + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum RpcGrpcStatusCodeValues : Swift.Int { + case ok + case cancelled + case unknown + case invalid_argument + case deadline_exceeded + case not_found + case already_exists + case permission_denied + case resource_exhausted + case failed_precondition + case aborted + case out_of_range + case unimplemented + case `internal` + case unavailable + case data_loss + case unauthenticated + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } + } + public enum MessageTypeValues : Swift.String { + case sent + case received + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum RpcConnectRpcErrorCodeValues : Swift.String { + case cancelled + case unknown + case invalid_argument + case deadline_exceeded + case not_found + case already_exists + case permission_denied + case resource_exhausted + case failed_precondition + case aborted + case out_of_range + case unimplemented + case `internal` + case unavailable + case data_loss + case unauthenticated + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum Severity : Swift.Int, Swift.Comparable, Swift.CustomStringConvertible, Swift.Codable { + case trace, trace2, trace3, trace4, debug, debug2, debug3, debug4, info, info2, info3, info4, warn, warn2, warn3, warn4, error, error2, error3, error4, fatal, fatal2, fatal3, fatal4 + public var description: Swift.String { + get + } + public static func < (lhs: VideoSDKRTC.Severity, rhs: VideoSDKRTC.Severity) -> Swift.Bool + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public struct SimpleExtensionMap : VideoSDKRTC.ExtensionMap, Swift.ExpressibleByArrayLiteral { + public typealias Element = VideoSDKRTC.AnyMessageExtension + public init() + public init(arrayLiteral: any VideoSDKRTC.AnyMessageExtension...) + public init(_ others: VideoSDKRTC.SimpleExtensionMap...) + public subscript(messageType: any VideoSDKRTC.Message.Type, fieldNumber: Swift.Int) -> (any VideoSDKRTC.AnyMessageExtension)? { + get + } + public func fieldNumberForProto(messageType: any VideoSDKRTC.Message.Type, protoFieldName: Swift.String) -> Swift.Int? + public mutating func insert(_ newValue: any VideoSDKRTC.AnyMessageExtension) + public mutating func insert(contentsOf: [any VideoSDKRTC.AnyMessageExtension]) + public mutating func formUnion(_ other: VideoSDKRTC.SimpleExtensionMap) + public func union(_ other: VideoSDKRTC.SimpleExtensionMap) -> VideoSDKRTC.SimpleExtensionMap + public typealias ArrayLiteralElement = any VideoSDKRTC.AnyMessageExtension +} +public class SimpleLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public init(logRecordExporter: any VideoSDKRTC.LogRecordExporter) + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + @objc deinit +} +public struct SimpleSpanProcessor : VideoSDKRTC.SpanProcessor { + public let isStartRequired: Swift.Bool + public let isEndRequired: Swift.Bool + public func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + public mutating func onEnd(span: any VideoSDKRTC.ReadableSpan) + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) + public init(spanExporter: any VideoSDKRTC.SpanExporter) + public func reportingOnlySampled(sampled: Swift.Bool) -> VideoSDKRTC.SimpleSpanProcessor +} +public struct Google_Protobuf_SourceContext { + public var fileName: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_SourceContext : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_SourceContext : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_SourceContext, rhs: VideoSDKRTC.Google_Protobuf_SourceContext) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol Span : AnyObject, Swift.CustomStringConvertible { + var kind: VideoSDKRTC.SpanKind { get } + var context: VideoSDKRTC.SpanContext { get } + var isRecording: Swift.Bool { get } + var status: VideoSDKRTC.Status { get set } + var name: Swift.String { get set } + func setAttribute(key: Swift.String, value: VideoSDKRTC.AttributeValue?) + func addEvent(name: Swift.String) + func addEvent(name: Swift.String, timestamp: Foundation.Date) + func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue], timestamp: Foundation.Date) + func end() + func end(time: Foundation.Date) +} +extension VideoSDKRTC.Span { + public func hash(into hasher: inout Swift.Hasher) + public static func == (lhs: any VideoSDKRTC.Span, rhs: any VideoSDKRTC.Span) -> Swift.Bool +} +extension VideoSDKRTC.Span { + public func setAttribute(key: Swift.String, value: Swift.String) + public func setAttribute(key: Swift.String, value: Swift.Int) + public func setAttribute(key: Swift.String, value: Swift.Double) + public func setAttribute(key: Swift.String, value: Swift.Bool) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.String) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.Int) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.Double) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.Bool) +} +extension VideoSDKRTC.Span { + public func putHttpHostAttribute(string hostName: Swift.String, int port: Swift.Int) + public func putHttpStatusCode(statusCode: Swift.Int, reasonPhrase: Swift.String) +} +public struct SpanAdapter { + public static func toProtoResourceSpans(spanDataList: [VideoSDKRTC.SpanData]) -> [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans] + public static func toProtoSpan(spanData: VideoSDKRTC.SpanData) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span +} +public protocol SpanBuilder : AnyObject { + @discardableResult + func setParent(_ parent: any VideoSDKRTC.Span) -> Self + @discardableResult + func setParent(_ parent: VideoSDKRTC.SpanContext) -> Self + @discardableResult + func setNoParent() -> Self + @discardableResult + func addLink(spanContext: VideoSDKRTC.SpanContext) -> Self + @discardableResult + func addLink(spanContext: VideoSDKRTC.SpanContext, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.String) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.Int) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.Double) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.Bool) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: VideoSDKRTC.AttributeValue) -> Self + @discardableResult + func setSpanKind(spanKind: VideoSDKRTC.SpanKind) -> Self + @discardableResult + func setStartTime(time: Foundation.Date) -> Self + @discardableResult + func setActive(_ active: Swift.Bool) -> Self + func startSpan() -> any VideoSDKRTC.Span +} +extension VideoSDKRTC.SpanBuilder { + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.String) -> Self + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.Int) -> Self + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.Double) -> Self + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.Bool) -> Self +} +public struct SpanContext : Swift.Equatable, Swift.CustomStringConvertible, Swift.Hashable, Swift.Codable { + public var traceId: VideoSDKRTC.TraceId { + get + } + public var spanId: VideoSDKRTC.SpanId { + get + } + public var traceFlags: VideoSDKRTC.TraceFlags { + get + } + public var traceState: VideoSDKRTC.TraceState + public let isRemote: Swift.Bool + public static func create(traceId: VideoSDKRTC.TraceId, spanId: VideoSDKRTC.SpanId, traceFlags: VideoSDKRTC.TraceFlags, traceState: VideoSDKRTC.TraceState) -> VideoSDKRTC.SpanContext + public static func createFromRemoteParent(traceId: VideoSDKRTC.TraceId, spanId: VideoSDKRTC.SpanId, traceFlags: VideoSDKRTC.TraceFlags, traceState: VideoSDKRTC.TraceState) -> VideoSDKRTC.SpanContext + public var isValid: Swift.Bool { + get + } + public var isSampled: Swift.Bool { + get + } + public static func == (lhs: VideoSDKRTC.SpanContext, rhs: VideoSDKRTC.SpanContext) -> Swift.Bool + public var description: Swift.String { + get + } + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public struct SpanData : Swift.Equatable, Swift.Codable { + public var traceId: VideoSDKRTC.TraceId { + get + } + public var spanId: VideoSDKRTC.SpanId { + get + } + public var traceFlags: VideoSDKRTC.TraceFlags { + get + } + public var traceState: VideoSDKRTC.TraceState { + get + } + public var parentSpanId: VideoSDKRTC.SpanId? { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScope: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var name: Swift.String { + get + } + public var kind: VideoSDKRTC.SpanKind { + get + } + public var startTime: Foundation.Date { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public var events: [VideoSDKRTC.SpanData.Event] { + get + } + public var links: [VideoSDKRTC.SpanData.Link] { + get + } + public var status: VideoSDKRTC.Status { + get + } + public var endTime: Foundation.Date { + get + } + public var hasRemoteParent: Swift.Bool { + get + } + public var hasEnded: Swift.Bool { + get + } + public var totalRecordedEvents: Swift.Int { + get + } + public var totalRecordedLinks: Swift.Int { + get + } + public var totalAttributeCount: Swift.Int { + get + } + public static func == (lhs: VideoSDKRTC.SpanData, rhs: VideoSDKRTC.SpanData) -> Swift.Bool + @discardableResult + public mutating func settingName(_ name: Swift.String) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTraceId(_ traceId: VideoSDKRTC.TraceId) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingSpanId(_ spanId: VideoSDKRTC.SpanId) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTraceFlags(_ traceFlags: VideoSDKRTC.TraceFlags) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTraceState(_ traceState: VideoSDKRTC.TraceState) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingStartTime(_ time: Foundation.Date) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingEndTime(_ time: Foundation.Date) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingKind(_ kind: VideoSDKRTC.SpanKind) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingLinks(_ links: [VideoSDKRTC.SpanData.Link]) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingParentSpanId(_ parentSpanId: VideoSDKRTC.SpanId) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingResource(_ resource: VideoSDKRTC.Resource) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingStatus(_ status: VideoSDKRTC.Status) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingEvents(_ events: [VideoSDKRTC.SpanData.Event]) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingHasRemoteParent(_ hasRemoteParent: Swift.Bool) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingHasEnded(_ hasEnded: Swift.Bool) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTotalRecordedEvents(_ totalRecordedEvents: Swift.Int) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTotalRecordedLinks(_ totalRecordedLinks: Swift.Int) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTotalAttributeCount(_ totalAttributeCount: Swift.Int) -> VideoSDKRTC.SpanData + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.SpanData { + public struct Event : Swift.Equatable, Swift.Codable { + public var timestamp: Foundation.Date { + get + } + public var name: Swift.String { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public init(name: Swift.String, timestamp: Foundation.Date, attributes: [Swift.String : VideoSDKRTC.AttributeValue]? = nil) + public init(timestamp: Foundation.Date, event: VideoSDKRTC.SpanData.Event) + public static func == (a: VideoSDKRTC.SpanData.Event, b: VideoSDKRTC.SpanData.Event) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } +} +extension VideoSDKRTC.SpanData { + public struct Link : Swift.Codable { + public let context: VideoSDKRTC.SpanContext + public let attributes: [Swift.String : VideoSDKRTC.AttributeValue] + public init(context: VideoSDKRTC.SpanContext, attributes: [Swift.String : VideoSDKRTC.AttributeValue] = [String: AttributeValue]()) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } +} +public func == (lhs: VideoSDKRTC.SpanData.Link, rhs: VideoSDKRTC.SpanData.Link) -> Swift.Bool +public func == (lhs: [VideoSDKRTC.SpanData.Link], rhs: [VideoSDKRTC.SpanData.Link]) -> Swift.Bool +public protocol SpanExporter : AnyObject { + @discardableResult + func export(spans: [VideoSDKRTC.SpanData]) -> VideoSDKRTC.SpanExporterResultCode + func flush() -> VideoSDKRTC.SpanExporterResultCode + func shutdown() +} +public enum SpanExporterResultCode { + case success + case failure + public static func == (a: VideoSDKRTC.SpanExporterResultCode, b: VideoSDKRTC.SpanExporterResultCode) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct SpanId : Swift.Equatable, Swift.Comparable, Swift.Hashable, Swift.CustomStringConvertible, Swift.Codable { + public static let size: Swift.Int + public static let invalidId: Swift.UInt64 + public static let invalid: VideoSDKRTC.SpanId + public static func getSize() -> Swift.Int + public init(id: Swift.UInt64) + public init() + public static func random() -> VideoSDKRTC.SpanId + public init(fromBytes bytes: Swift.Array, withOffset offset: Swift.Int = 0) + public init(fromBytes bytes: Swift.ArraySlice, withOffset offset: Swift.Int = 0) + public init(fromBytes bytes: Swift.ArraySlice, withOffset offset: Swift.Int = 0) + public func copyBytesTo(dest: inout Foundation.Data, destOffset: Swift.Int) + public func copyBytesTo(dest: inout Swift.Array, destOffset: Swift.Int) + public func copyBytesTo(dest: inout Swift.ArraySlice, destOffset: Swift.Int) + public init(fromHexString hex: Swift.String, withOffset offset: Swift.Int = 0) + public var hexString: Swift.String { + get + } + public var rawValue: Swift.UInt64 { + get + } + public var isValid: Swift.Bool { + get + } + public var description: Swift.String { + get + } + public static func < (lhs: VideoSDKRTC.SpanId, rhs: VideoSDKRTC.SpanId) -> Swift.Bool + public static func == (lhs: VideoSDKRTC.SpanId, rhs: VideoSDKRTC.SpanId) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public enum SpanKind : Swift.String, Swift.Equatable, Swift.Codable { + case `internal` + case server + case client + case producer + case consumer + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct SpanLimits : Swift.Equatable { + public var attributeCountLimit: Swift.Int { + get + } + public var eventCountLimit: Swift.Int { + get + } + public var linkCountLimit: Swift.Int { + get + } + public var attributePerEventCountLimit: Swift.Int { + get + } + public var attributePerLinkCountLimit: Swift.Int { + get + } + public init() + @discardableResult + public func settingAttributeCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingEventCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingLinkCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingAttributePerEventCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingAttributePerLinkCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + public static func == (lhs: VideoSDKRTC.SpanLimits, rhs: VideoSDKRTC.SpanLimits) -> Swift.Bool +} +public protocol SpanProcessor { + var isStartRequired: Swift.Bool { get } + var isEndRequired: Swift.Bool { get } + func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + mutating func onEnd(span: any VideoSDKRTC.ReadableSpan) + mutating func shutdown() + func forceFlush(timeout: Foundation.TimeInterval?) +} +public protocol SPBDecoder { + mutating func handleConflictingOneOf() throws + mutating func nextFieldNumber() throws -> Swift.Int? + mutating func decodeSingularFloatField(value: inout Swift.Float) throws + mutating func decodeSingularFloatField(value: inout Swift.Float?) throws + mutating func decodeRepeatedFloatField(value: inout [Swift.Float]) throws + mutating func decodeSingularDoubleField(value: inout Swift.Double) throws + mutating func decodeSingularDoubleField(value: inout Swift.Double?) throws + mutating func decodeRepeatedDoubleField(value: inout [Swift.Double]) throws + mutating func decodeSingularInt32Field(value: inout Swift.Int32) throws + mutating func decodeSingularInt32Field(value: inout Swift.Int32?) throws + mutating func decodeRepeatedInt32Field(value: inout [Swift.Int32]) throws + mutating func decodeSingularInt64Field(value: inout Swift.Int64) throws + mutating func decodeSingularInt64Field(value: inout Swift.Int64?) throws + mutating func decodeRepeatedInt64Field(value: inout [Swift.Int64]) throws + mutating func decodeSingularUInt32Field(value: inout Swift.UInt32) throws + mutating func decodeSingularUInt32Field(value: inout Swift.UInt32?) throws + mutating func decodeRepeatedUInt32Field(value: inout [Swift.UInt32]) throws + mutating func decodeSingularUInt64Field(value: inout Swift.UInt64) throws + mutating func decodeSingularUInt64Field(value: inout Swift.UInt64?) throws + mutating func decodeRepeatedUInt64Field(value: inout [Swift.UInt64]) throws + mutating func decodeSingularSInt32Field(value: inout Swift.Int32) throws + mutating func decodeSingularSInt32Field(value: inout Swift.Int32?) throws + mutating func decodeRepeatedSInt32Field(value: inout [Swift.Int32]) throws + mutating func decodeSingularSInt64Field(value: inout Swift.Int64) throws + mutating func decodeSingularSInt64Field(value: inout Swift.Int64?) throws + mutating func decodeRepeatedSInt64Field(value: inout [Swift.Int64]) throws + mutating func decodeSingularFixed32Field(value: inout Swift.UInt32) throws + mutating func decodeSingularFixed32Field(value: inout Swift.UInt32?) throws + mutating func decodeRepeatedFixed32Field(value: inout [Swift.UInt32]) throws + mutating func decodeSingularFixed64Field(value: inout Swift.UInt64) throws + mutating func decodeSingularFixed64Field(value: inout Swift.UInt64?) throws + mutating func decodeRepeatedFixed64Field(value: inout [Swift.UInt64]) throws + mutating func decodeSingularSFixed32Field(value: inout Swift.Int32) throws + mutating func decodeSingularSFixed32Field(value: inout Swift.Int32?) throws + mutating func decodeRepeatedSFixed32Field(value: inout [Swift.Int32]) throws + mutating func decodeSingularSFixed64Field(value: inout Swift.Int64) throws + mutating func decodeSingularSFixed64Field(value: inout Swift.Int64?) throws + mutating func decodeRepeatedSFixed64Field(value: inout [Swift.Int64]) throws + mutating func decodeSingularBoolField(value: inout Swift.Bool) throws + mutating func decodeSingularBoolField(value: inout Swift.Bool?) throws + mutating func decodeRepeatedBoolField(value: inout [Swift.Bool]) throws + mutating func decodeSingularStringField(value: inout Swift.String) throws + mutating func decodeSingularStringField(value: inout Swift.String?) throws + mutating func decodeRepeatedStringField(value: inout [Swift.String]) throws + mutating func decodeSingularBytesField(value: inout Foundation.Data) throws + mutating func decodeSingularBytesField(value: inout Foundation.Data?) throws + mutating func decodeRepeatedBytesField(value: inout [Foundation.Data]) throws + mutating func decodeSingularEnumField(value: inout E) throws where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + mutating func decodeSingularEnumField(value: inout E?) throws where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + mutating func decodeRepeatedEnumField(value: inout [E]) throws where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + mutating func decodeSingularMessageField(value: inout M?) throws where M : VideoSDKRTC.Message + mutating func decodeRepeatedMessageField(value: inout [M]) throws where M : VideoSDKRTC.Message + mutating func decodeSingularGroupField(value: inout G?) throws where G : VideoSDKRTC.Message + mutating func decodeRepeatedGroupField(value: inout [G]) throws where G : VideoSDKRTC.Message + mutating func decodeMapField(fieldType: VideoSDKRTC._ProtobufMap.Type, value: inout VideoSDKRTC._ProtobufMap.BaseType) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.MapValueType + mutating func decodeMapField(fieldType: VideoSDKRTC._ProtobufEnumMap.Type, value: inout VideoSDKRTC._ProtobufEnumMap.BaseType) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.Enum, ValueType.RawValue == Swift.Int + mutating func decodeMapField(fieldType: VideoSDKRTC._ProtobufMessageMap.Type, value: inout VideoSDKRTC._ProtobufMessageMap.BaseType) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : Swift.Hashable, ValueType : VideoSDKRTC.Message + mutating func decodeExtensionField(values: inout VideoSDKRTC.ExtensionFieldValueSet, messageType: any VideoSDKRTC.Message.Type, fieldNumber: Swift.Int) throws + mutating func decodeExtensionFieldsAsMessageSet(values: inout VideoSDKRTC.ExtensionFieldValueSet, messageType: any VideoSDKRTC.Message.Type) throws +} +extension VideoSDKRTC.SPBDecoder { + public mutating func decodeExtensionFieldsAsMessageSet(values: inout VideoSDKRTC.ExtensionFieldValueSet, messageType: any VideoSDKRTC.Message.Type) throws +} +public protocol StableAggregator { + func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + func createHandle() -> VideoSDKRTC.AggregatorHandle + func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData +} +public protocol StableMeter { + func counterBuilder(name: Swift.String) -> any VideoSDKRTC.LongCounterBuilder + func upDownCounterBuilder(name: Swift.String) -> any VideoSDKRTC.LongUpDownCounterBuilder + func histogramBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleHistogramBuilder + func gaugeBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleGaugeBuilder +} +public protocol StableMeterProvider : AnyObject { + func get(name: Swift.String) -> any VideoSDKRTC.StableMeter + func meterBuilder(name: Swift.String) -> any VideoSDKRTC.MeterBuilder +} +public class StableMeterProviderBuilder { + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var metricReaders: [any VideoSDKRTC.StableMetricReader] { + get + } + public var registeredViews: [VideoSDKRTC.RegisteredView] { + get + } + public var exemplarFilter: any VideoSDKRTC.ExemplarFilter { + get + } + public init() + public func setClock(clock: any VideoSDKRTC.Clock) -> Self + public func setResource(resource: VideoSDKRTC.Resource) -> Self + public func registerView(selector: VideoSDKRTC.InstrumentSelector, view: VideoSDKRTC.StableView) -> Self + public func registerMetricReader(reader: any VideoSDKRTC.StableMetricReader) -> Self + public func build() -> VideoSDKRTC.StableMeterProviderSdk + @objc deinit +} +@_hasMissingDesignatedInitializers public class MeterProviderError : Swift.Error { + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableMeterProviderSdk : VideoSDKRTC.StableMeterProvider { + public func get(name: Swift.String) -> any VideoSDKRTC.StableMeter + public func meterBuilder(name: Swift.String) -> any VideoSDKRTC.MeterBuilder + public static func builder() -> VideoSDKRTC.StableMeterProviderBuilder + public func shutdown() -> VideoSDKRTC.ExportResult + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public class MeterProviderSharedState { + public init(clock: any VideoSDKRTC.Clock, resource: VideoSDKRTC.Resource, startEpochNanos: Swift.UInt64, exemplarFilter: any VideoSDKRTC.ExemplarFilter) + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var startEpochNanos: Swift.UInt64 { + get + } + public var exemplarFilter: any VideoSDKRTC.ExemplarFilter { + get + } + @objc deinit +} +public enum MetricDataType { + case LongGauge + case DoubleGauge + case LongSum + case DoubleSum + case Summary + case Histogram + case ExponentialHistogram + public static func == (a: VideoSDKRTC.MetricDataType, b: VideoSDKRTC.MetricDataType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct StableMetricData : Swift.Equatable { + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var name: Swift.String { + get + } + public var description: Swift.String { + get + } + public var unit: Swift.String { + get + } + public var type: VideoSDKRTC.MetricDataType { + get + } + public var data: VideoSDKRTC.StableMetricData.Data { + get + } + public static let empty: VideoSDKRTC.StableMetricData + @_hasMissingDesignatedInitializers public class Data : Swift.Equatable { + public var points: [VideoSDKRTC.PointData] { + get + } + public static func == (lhs: VideoSDKRTC.StableMetricData.Data, rhs: VideoSDKRTC.StableMetricData.Data) -> Swift.Bool + @objc deinit + } + public static func == (lhs: VideoSDKRTC.StableMetricData, rhs: VideoSDKRTC.StableMetricData) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class StableHistogramData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableExponentialHistogramData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableGaugeData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableSumData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableSummaryData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +public protocol StableMetricExporter : VideoSDKRTC.AggregationTemporalitySelectorProtocol, VideoSDKRTC.DefaultAggregationSelector { + func export(metrics: [VideoSDKRTC.StableMetricData]) -> VideoSDKRTC.ExportResult + func flush() -> VideoSDKRTC.ExportResult + func shutdown() -> VideoSDKRTC.ExportResult +} +extension VideoSDKRTC.StableMetricExporter { + public func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +} +public protocol StableMetricReader : VideoSDKRTC.AggregationTemporalitySelectorProtocol, VideoSDKRTC.DefaultAggregationSelector { + func forceFlush() -> VideoSDKRTC.ExportResult + func shutdown() -> VideoSDKRTC.ExportResult + func register(registration: any VideoSDKRTC.CollectionRegistration) +} +@_hasMissingDesignatedInitializers public class StableObservableMeasurementSdk : VideoSDKRTC.ObservableLongMeasurement, VideoSDKRTC.ObservableDoubleMeasurement { + public var descriptor: VideoSDKRTC.InstrumentDescriptor { + get + } + public var storages: [VideoSDKRTC.AsynchronousMetricStorage] { + get + } + public func clearActiveReader() + public func record(value: Swift.Int) + public func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func record(value: Swift.Double) + public func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public class StablePeriodicMetricReaderBuilder { + public var exporter: any VideoSDKRTC.StableMetricExporter { + get + } + public var exporterInterval: Swift.Double { + get + } + public init(exporter: any VideoSDKRTC.StableMetricExporter) + public func setInterval(timeInterval: Foundation.TimeInterval) -> Self + public func build() -> VideoSDKRTC.StablePeriodicMetricReaderSdk + @objc deinit +} +@_hasMissingDesignatedInitializers public class StablePeriodicMetricReaderSdk : VideoSDKRTC.StableMetricReader { + @objc deinit + public func register(registration: any VideoSDKRTC.CollectionRegistration) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + public func getAggregationTemporality(for instrument: VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality + public func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +} +@_hasMissingDesignatedInitializers public class StableView { + public var name: Swift.String? { + get + } + public var description: Swift.String? { + get + } + public var aggregation: any VideoSDKRTC.Aggregation { + get + } + public var attributeProcessor: VideoSDKRTC.AttributeProcessor { + get + } + public static func builder() -> VideoSDKRTC.ViewBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableViewRegistry { + public func findViews(descriptor: VideoSDKRTC.InstrumentDescriptor, meterScope: VideoSDKRTC.InstrumentationScopeInfo) -> [VideoSDKRTC.RegisteredView] + @objc deinit +} +public enum Status : Swift.Equatable { + case ok + case unset + case error(description: Swift.String) + public var isOk: Swift.Bool { + get + } + public var isError: Swift.Bool { + get + } + public var name: Swift.String { + get + } + public var code: Swift.Int { + get + } + public static func == (a: VideoSDKRTC.Status, b: VideoSDKRTC.Status) -> Swift.Bool +} +extension VideoSDKRTC.Status : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} +extension VideoSDKRTC.Status : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct StringUtils { + public static func isPrintableString(_ string: Swift.String) -> Swift.Bool + public static func isValidMetricName(_ metricName: Swift.String) -> Swift.Bool +} +public enum Google_Protobuf_NullValue : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case nullValue + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_NullValue] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_NullValue] +} +public struct Google_Protobuf_Struct { + public var fields: [Swift.String : VideoSDKRTC.Google_Protobuf_Value] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Value { + public var kind: VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind? + public var nullValue: VideoSDKRTC.Google_Protobuf_NullValue { + get + set + } + public var numberValue: Swift.Double { + get + set + } + public var stringValue: Swift.String { + get + set + } + public var boolValue: Swift.Bool { + get + set + } + public var structValue: VideoSDKRTC.Google_Protobuf_Struct { + get + set + } + public var listValue: VideoSDKRTC.Google_Protobuf_ListValue { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Kind : Swift.Equatable { + case nullValue(VideoSDKRTC.Google_Protobuf_NullValue) + case numberValue(Swift.Double) + case stringValue(Swift.String) + case boolValue(Swift.Bool) + case structValue(VideoSDKRTC.Google_Protobuf_Struct) + case listValue(VideoSDKRTC.Google_Protobuf_ListValue) + public static func == (a: VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind, b: VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind) -> Swift.Bool + } + public init() +} +public struct Google_Protobuf_ListValue { + public var values: [VideoSDKRTC.Google_Protobuf_Value] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Struct : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ListValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_NullValue : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_Struct : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Struct, rhs: VideoSDKRTC.Google_Protobuf_Struct) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Value, rhs: VideoSDKRTC.Google_Protobuf_Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ListValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ListValue, rhs: VideoSDKRTC.Google_Protobuf_ListValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class SumAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.SumAggregation { + get + } + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + @objc deinit +} +@_hasMissingDesignatedInitializers public class SumAggregator { + final public let isMonotonic: Swift.Bool + @objc deinit +} +@_hasMissingDesignatedInitializers public class SummaryPointData : VideoSDKRTC.PointData { + public var count: Swift.UInt64 + public var sum: Swift.Double + public var values: [any VideoSDKRTC.ValueAtQuantile] + @objc deinit +} +extension Swift.Double { + public var toMilliseconds: Swift.UInt64 { + get + } + public var toMicroseconds: Swift.UInt64 { + get + } + public var toNanoseconds: Swift.UInt64 { + get + } + public static func fromMilliseconds(_ millis: Swift.Int64) -> Foundation.TimeInterval + public static func fromMicroseconds(_ micros: Swift.Int64) -> Foundation.TimeInterval + public static func fromNanoseconds(_ nanos: Swift.Int64) -> Foundation.TimeInterval +} +public protocol SwiftProtobufContiguousBytes { + init(repeating: Swift.UInt8, count: Swift.Int) + init(_ sequence: S) where S : Swift.Sequence, S.Element == Swift.UInt8 + var count: Swift.Int { get } + func withUnsafeBytes(_ body: (Swift.UnsafeRawBufferPointer) throws -> R) rethrows -> R + mutating func withUnsafeMutableBytes(_ body: (Swift.UnsafeMutableRawBufferPointer) throws -> R) rethrows -> R +} +extension Swift.Array : VideoSDKRTC.SwiftProtobufContiguousBytes where Element == Swift.UInt8 { +} +extension Foundation.Data : VideoSDKRTC.SwiftProtobufContiguousBytes { +} +@_hasMissingDesignatedInitializers public class SynchronousMetricStorage { + public var metricDescriptor: VideoSDKRTC.MetricDescriptor { + get + } + public func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + public func isEmpty() -> Swift.Bool + public func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public enum TextFormatDecodingError : Swift.Error { + case malformedText + case malformedNumber + case trailingGarbage + case truncated + case invalidUTF8 + case schemaMismatch + case missingFieldNames + case unknownField + case unrecognizedEnumValue + case conflictingOneOf + case internalExtensionError + case messageDepthLimit + public static func == (a: VideoSDKRTC.TextFormatDecodingError, b: VideoSDKRTC.TextFormatDecodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct TextFormatDecodingOptions : Swift.Sendable { + public var messageDepthLimit: Swift.Int + public init() +} +public struct TextFormatEncodingOptions : Swift.Sendable { + public var printUnknownFields: Swift.Bool + public init() +} +public protocol TextMapBaggagePropagator { + var fields: Swift.Set { get } + func inject(baggage: any VideoSDKRTC.Baggage, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + @discardableResult + func extract(carrier: [Swift.String : Swift.String], getter: G) -> (any VideoSDKRTC.Baggage)? where G : VideoSDKRTC.Getter +} +public protocol TextMapPropagator { + var fields: Swift.Set { get } + func inject(spanContext: VideoSDKRTC.SpanContext, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + @discardableResult + func extract(carrier: [Swift.String : Swift.String], getter: G) -> VideoSDKRTC.SpanContext? where G : VideoSDKRTC.Getter +} +public protocol Setter { + func set(carrier: inout [Swift.String : Swift.String], key: Swift.String, value: Swift.String) +} +public protocol Getter { + func get(carrier: [Swift.String : Swift.String], key: Swift.String) -> [Swift.String]? +} +public struct Google_Protobuf_Timestamp { + public var seconds: Swift.Int64 + public var nanos: Swift.Int32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Timestamp : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Timestamp : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Timestamp) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Opentelemetry_Proto_Trace_V1_TracesData { + public var resourceSpans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Trace_V1_ResourceSpans { + public var resource: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource { + get + set + } + public var hasResource: Swift.Bool { + get + } + public mutating func clearResource() + public var scopeSpans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Trace_V1_ScopeSpans { + public var scope: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope { + get + set + } + public var hasScope: Swift.Bool { + get + } + public mutating func clearScope() + public var spans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Trace_V1_Span { + public var traceID: Foundation.Data + public var spanID: Foundation.Data + public var traceState: Swift.String + public var parentSpanID: Foundation.Data + public var name: Swift.String + public var kind: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind + public var startTimeUnixNano: Swift.UInt64 + public var endTimeUnixNano: Swift.UInt64 + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var events: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event] + public var droppedEventsCount: Swift.UInt32 + public var links: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link] + public var droppedLinksCount: Swift.UInt32 + public var status: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status { + get + set + } + public var hasStatus: Swift.Bool { + get + } + public mutating func clearStatus() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum SpanKind : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unspecified + case `internal` + case server + case client + case producer + case consumer + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + } + public struct Event { + public var timeUnixNano: Swift.UInt64 + public var name: Swift.String + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public struct Link { + public var traceID: Foundation.Data + public var spanID: Foundation.Data + public var traceState: Swift.String + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind] +} +public struct Opentelemetry_Proto_Trace_V1_Status { + public var message: Swift.String + public var code: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum StatusCode : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unset + case ok + case error + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + } + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode] +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +public struct Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest { + public var resourceSpans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse { + public var partialSuccess: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess { + get + set + } + public var hasPartialSuccess: Swift.Bool { + get + } + public mutating func clearPartialSuccess() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess { + public var rejectedSpans: Swift.Int64 + public var errorMessage: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() } -extension Swift.String { - public func toJSON() -> [Swift.String : Any] +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest : @unchecked Swift.Sendable { } -extension Swift.Dictionary { - public func toJSONString() -> Swift.String +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse : @unchecked Swift.Sendable { } -extension Swift.Array { - public func toJSONString() -> Swift.String +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess : @unchecked Swift.Sendable { } -extension Swift.Encodable { - public func toJSON() -> [Swift.String : Any] - public func toJSONArray() -> [Any] +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -public struct LivestreamOutput : Swift.Codable { - public let url: Swift.String - public let streamKey: Swift.String - public init(url: Swift.String, streamKey: Swift.String) - public func encode(to encoder: Swift.Encoder) throws - public init(from decoder: Swift.Decoder) throws +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -@_hasMissingDesignatedInitializers public class MediaStream : Swift.Equatable { - public var id: Swift.String { +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess) -> Swift.Bool + public var hashValue: Swift.Int { get } - public var kind: VideoSDKRTC.MediaType { +} +public struct TraceFlags : Swift.Equatable, Swift.CustomStringConvertible, Swift.Codable { + public var byte: Swift.UInt8 { get } - public var track: WebRTC.RTCMediaStreamTrack { + public var hexString: Swift.String { get } - public var producer: Mediasoup.Producer? { + public init() + public init(fromByte src: Swift.UInt8) + public init(fromHexString hex: Swift.String, withOffset offset: Swift.Int = 0) + public var sampled: Swift.Bool { get } - public var consumer: Mediasoup.Consumer? { + public mutating func setIsSampled(_ isSampled: Swift.Bool) + public func settingIsSampled(_ isSampled: Swift.Bool) -> VideoSDKRTC.TraceFlags + public var description: Swift.String { get } - @objc deinit + public static func == (a: VideoSDKRTC.TraceFlags, b: VideoSDKRTC.TraceFlags) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -extension VideoSDKRTC.MediaStream { - public func pause() - public func resume() +public struct TraceId : Swift.Comparable, Swift.Hashable, Swift.CustomStringConvertible, Swift.Equatable, Swift.Codable { + public static let size: Swift.Int + public static let invalidId: Swift.UInt64 + public static let invalid: VideoSDKRTC.TraceId + public var idHi: Swift.UInt64 { + get + } + public var idLo: Swift.UInt64 { + get + } + public init(idHi: Swift.UInt64, idLo: Swift.UInt64) + public init() + public static func random() -> VideoSDKRTC.TraceId + public init(fromData data: Foundation.Data) + public init(fromBytes bytes: [Swift.UInt8]) + public init(fromBytes bytes: Swift.ArraySlice) + public init(fromBytes bytes: Swift.ArraySlice) + public func copyBytesTo(dest: inout Foundation.Data, destOffset: Swift.Int) + public func copyBytesTo(dest: inout [Swift.UInt8], destOffset: Swift.Int) + public func copyBytesTo(dest: inout Swift.ArraySlice, destOffset: Swift.Int) + public init(fromHexString hex: Swift.String, withOffset offset: Swift.Int = 0) + public var isValid: Swift.Bool { + get + } + public var hexString: Swift.String { + get + } + public var rawHigherLong: Swift.UInt64 { + get + } + public var rawLowerLong: Swift.UInt64 { + get + } + public var description: Swift.String { + get + } + public static func < (lhs: VideoSDKRTC.TraceId, rhs: VideoSDKRTC.TraceId) -> Swift.Bool + public static func == (lhs: VideoSDKRTC.TraceId, rhs: VideoSDKRTC.TraceId) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws } -extension VideoSDKRTC.MediaStream { - public static func == (lhs: VideoSDKRTC.MediaStream, rhs: VideoSDKRTC.MediaStream) -> Swift.Bool +public protocol Tracer : AnyObject { + func spanBuilder(spanName: Swift.String) -> any VideoSDKRTC.SpanBuilder } -public enum MediaType : Swift.Equatable { - case share - case state(value: Mediasoup.MediaKind) - public static func == (a: VideoSDKRTC.MediaType, b: VideoSDKRTC.MediaType) -> Swift.Bool +public protocol TracerProvider { + func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String?) -> any VideoSDKRTC.Tracer } -@_hasMissingDesignatedInitializers public class Meeting : Swift.Equatable { - public var id: Swift.String { +public class TracerProviderBuilder { + public var clock: any VideoSDKRTC.Clock { get } - public var localParticipant: VideoSDKRTC.Participant { + public var idGenerator: any VideoSDKRTC.IdGenerator { get } - public var participants: [Swift.String : VideoSDKRTC.Participant] { + public var resource: VideoSDKRTC.Resource { get } - public var pubsub: VideoSDKRTC.PubSub { + public var spanLimits: VideoSDKRTC.SpanLimits { get } - public var customVideoMediaStream: VideoSDKRTC.CustomRTCMediaStream? { + public var sampler: any VideoSDKRTC.Sampler { + get + } + public var spanProcessors: [any VideoSDKRTC.SpanProcessor] { get } + public init() + public func with(clock: any VideoSDKRTC.Clock) -> Self + public func with(idGenerator: any VideoSDKRTC.IdGenerator) -> Self + public func with(resource: VideoSDKRTC.Resource) -> Self + public func with(spanLimits: VideoSDKRTC.SpanLimits) -> Self + public func with(sampler: any VideoSDKRTC.Sampler) -> Self + public func add(spanProcessor: any VideoSDKRTC.SpanProcessor) -> Self + public func add(spanProcessors: [any VideoSDKRTC.SpanProcessor]) -> Self + public func build() -> VideoSDKRTC.TracerProviderSdk @objc deinit } -extension VideoSDKRTC.Meeting { - public func join(cameraPosition: AVFoundation.AVCaptureDevice.Position) - public func leave() - public func end() - public func enableWebcam(customVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil) - public func disableWebcam() - public func switchWebcam() - public func muteMic() - public func unmuteMic() - public func startRecording(webhookUrl: Swift.String) - public func stopRecording() - public func startLivestream(outputs: [VideoSDKRTC.LivestreamOutput]) - public func stopLivestream() +public class TracerProviderSdk : VideoSDKRTC.TracerProvider { + public init(clock: any VideoSDKRTC.Clock = MillisClock(), idGenerator: any VideoSDKRTC.IdGenerator = RandomIdGenerator(), resource: VideoSDKRTC.Resource = EnvVarResource.get(), spanLimits: VideoSDKRTC.SpanLimits = SpanLimits(), sampler: any VideoSDKRTC.Sampler = Samplers.parentBased(root: Samplers.alwaysOn), spanProcessors: [any VideoSDKRTC.SpanProcessor] = []) + @objc deinit + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Tracer + public func getActiveClock() -> any VideoSDKRTC.Clock + public func updateActiveClock(_ newClock: any VideoSDKRTC.Clock) + public func getActiveIdGenerator() -> any VideoSDKRTC.IdGenerator + public func updateActiveIdGenerator(_ newGenerator: any VideoSDKRTC.IdGenerator) + public func getActiveResource() -> VideoSDKRTC.Resource + public func updateActiveResource(_ newResource: VideoSDKRTC.Resource) + public func getActiveSpanLimits() -> VideoSDKRTC.SpanLimits + public func updateActiveSpanLimits(_ spanLimits: VideoSDKRTC.SpanLimits) + public func getActiveSampler() -> any VideoSDKRTC.Sampler + public func updateActiveSampler(_ newSampler: any VideoSDKRTC.Sampler) + public func getActiveSpanProcessors() -> [any VideoSDKRTC.SpanProcessor] + public func addSpanProcessor(_ spanProcessor: any VideoSDKRTC.SpanProcessor) + public func resetSpanProcessors() + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) } -extension VideoSDKRTC.Meeting { - public func addEventListener(_ meetingEventListener: VideoSDKRTC.MeetingEventListener) - public func removeEventListener(_ meetingEventListener: VideoSDKRTC.MeetingEventListener) +@_hasMissingDesignatedInitializers public class TracerSdk : VideoSDKRTC.Tracer { + final public let instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo + public func spanBuilder(spanName: Swift.String) -> any VideoSDKRTC.SpanBuilder + @objc deinit } -extension VideoSDKRTC.Meeting { - public static func == (lhs: VideoSDKRTC.Meeting, rhs: VideoSDKRTC.Meeting) -> Swift.Bool +public struct TraceState : Swift.Equatable, Swift.Codable { + public var entries: [VideoSDKRTC.TraceState.Entry] { + get + } + public init() + public init?(entries: [VideoSDKRTC.TraceState.Entry]) + public func get(key: Swift.String) -> Swift.String? + public func setting(key: Swift.String, value: Swift.String) -> VideoSDKRTC.TraceState + public func removing(key: Swift.String) -> VideoSDKRTC.TraceState + public struct Entry : Swift.Equatable, Swift.Codable { + public var key: Swift.String { + get + } + public var value: Swift.String { + get + } + public init?(key: Swift.String, value: Swift.String) + public static func == (a: VideoSDKRTC.TraceState.Entry, b: VideoSDKRTC.TraceState.Entry) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } + public static func == (a: VideoSDKRTC.TraceState, b: VideoSDKRTC.TraceState) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public protocol MeetingEventListener : AnyObject { - func onMeetingJoined() - func onMeetingLeft() - func onParticipantJoined(_ participant: VideoSDKRTC.Participant) - func onParticipantLeft(_ participant: VideoSDKRTC.Participant) - func onRecordingStarted() - func onRecordingStoppped() - func onLivestreamStarted() - func onLivestreamStopped() - func onSpeakerChanged(participantId: Swift.String?) - func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) - func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) +public enum Google_Protobuf_Syntax : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case proto2 + case proto3 + case editions + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_Syntax] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_Syntax] } -extension VideoSDKRTC.MeetingEventListener { - public func onMeetingJoined() - public func onMeetingLeft() - public func onParticipantJoined(_ participant: VideoSDKRTC.Participant) - public func onParticipantLeft(_ participant: VideoSDKRTC.Participant) - public func onRecordingStarted() - public func onRecordingStoppped() - public func onLivestreamStarted() - public func onLivestreamStopped() - public func onSpeakerChanged(participantId: Swift.String?) - public func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) - public func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) +public struct Google_Protobuf_Type { + public var name: Swift.String + public var fields: [VideoSDKRTC.Google_Protobuf_Field] + public var oneofs: [Swift.String] + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var sourceContext: VideoSDKRTC.Google_Protobuf_SourceContext { + get + set + } + public var hasSourceContext: Swift.Bool { + get + } + public mutating func clearSourceContext() + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var edition: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() } -@_hasMissingDesignatedInitializers public class Participant : Swift.Equatable { - public var id: Swift.String { +public struct Google_Protobuf_Field { + public var kind: VideoSDKRTC.Google_Protobuf_Field.Kind + public var cardinality: VideoSDKRTC.Google_Protobuf_Field.Cardinality + public var number: Swift.Int32 + public var name: Swift.String + public var typeURL: Swift.String + public var oneofIndex: Swift.Int32 + public var packed: Swift.Bool + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var jsonName: Swift.String + public var defaultValue: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum Kind : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case typeUnknown + case typeDouble + case typeFloat + case typeInt64 + case typeUint64 + case typeInt32 + case typeFixed64 + case typeFixed32 + case typeBool + case typeString + case typeGroup + case typeMessage + case typeBytes + case typeUint32 + case typeEnum + case typeSfixed32 + case typeSfixed64 + case typeSint32 + case typeSint64 + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_Field.Kind] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_Field.Kind] + } + public enum Cardinality : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case optional + case required + case repeated + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_Field.Cardinality] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_Field.Cardinality] + } + public init() +} +public struct Google_Protobuf_Enum { + public var name: Swift.String + public var enumvalue: [VideoSDKRTC.Google_Protobuf_EnumValue] + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var sourceContext: VideoSDKRTC.Google_Protobuf_SourceContext { get + set } - public var displayName: Swift.String { + public var hasSourceContext: Swift.Bool { get } - public var videoQuality: VideoSDKRTC.VideoQuality { + public mutating func clearSourceContext() + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var edition: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_EnumValue { + public var name: Swift.String + public var number: Swift.Int32 + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Option { + public var name: Swift.String + public var value: VideoSDKRTC.Google_Protobuf_Any { get + set } - public var isLocal: Swift.Bool { + public var hasValue: Swift.Bool { get } - public var streams: [Swift.String : VideoSDKRTC.MediaStream] { + public mutating func clearValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Type : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Field : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Enum : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Option : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Syntax : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_Type : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Type, rhs: VideoSDKRTC.Google_Protobuf_Type) -> Swift.Bool + public var hashValue: Swift.Int { get } - @objc deinit } -extension VideoSDKRTC.Participant { - public func enableMic() - public func disableMic() - public func enableWebcam() - public func disableWebcam() - public func remove() +extension VideoSDKRTC.Google_Protobuf_Field : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Field, rhs: VideoSDKRTC.Google_Protobuf_Field) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -extension VideoSDKRTC.Participant { - public func addStream(_ stream: VideoSDKRTC.MediaStream) - @discardableResult - public func removeStream(_ streamId: Swift.String) -> VideoSDKRTC.MediaStream? - public func removeAllStreams() - public func setQuality(_ quality: VideoSDKRTC.VideoQuality) +extension VideoSDKRTC.Google_Protobuf_Field.Kind : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap } -extension VideoSDKRTC.Participant { - public func addEventListener(_ listener: VideoSDKRTC.ParticipantEventListener) - public func removeEventListener(_ listener: VideoSDKRTC.ParticipantEventListener) +extension VideoSDKRTC.Google_Protobuf_Field.Cardinality : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap } -extension VideoSDKRTC.Participant { - public static func == (lhs: VideoSDKRTC.Participant, rhs: VideoSDKRTC.Participant) -> Swift.Bool +extension VideoSDKRTC.Google_Protobuf_Enum : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Enum, rhs: VideoSDKRTC.Google_Protobuf_Enum) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -public protocol ParticipantEventListener { - func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) - func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +extension VideoSDKRTC.Google_Protobuf_EnumValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumValue, rhs: VideoSDKRTC.Google_Protobuf_EnumValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -extension VideoSDKRTC.ParticipantEventListener { - public func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) - public func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +extension VideoSDKRTC.Google_Protobuf_Option : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Option, rhs: VideoSDKRTC.Google_Protobuf_Option) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -@_hasMissingDesignatedInitializers public class PubSub { +@available(*, deprecated, message: "Use MetricProcessorSdk instead") +public class UngroupedBatcher : VideoSDKRTC.MetricProcessor { + public init() + public func finishCollectionCycle() -> [VideoSDKRTC.Metric] + public func process(metric: VideoSDKRTC.Metric) @objc deinit } -extension VideoSDKRTC.PubSub { - public func publish(topic: Swift.String, message: Swift.String, options: [Swift.String : Any] = [:]) - public func subscribe(topic: Swift.String, forListener listener: VideoSDKRTC.PubSubMessageListener) - public func unsubscribe(topic: Swift.String, forListener listener: VideoSDKRTC.PubSubMessageListener) - public func getMessagesForTopic(_ topic: Swift.String) -> [VideoSDKRTC.PubSubMessage] +public struct UnknownStorage : Swift.Equatable, @unchecked Swift.Sendable { + public var data: Foundation.Data { + get + } + public init() + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (a: VideoSDKRTC.UnknownStorage, b: VideoSDKRTC.UnknownStorage) -> Swift.Bool } -@objc @_hasMissingDesignatedInitializers public class PubSubMessage : ObjectiveC.NSObject { - public var id: Swift.String - public var topic: Swift.String - public var message: Swift.String - public var senderId: Swift.String - public var senderName: Swift.String - public var timestamp: Swift.String - @objc deinit +public protocol ValueAtQuantile { + func quantile() -> Swift.Double + func value() -> Swift.Double } -public protocol PubSubMessageListener { - func onMessageReceived(_ message: VideoSDKRTC.PubSubMessage) +public struct Version { + public static let major: Swift.Int + public static let minor: Swift.Int + public static let revision: Swift.Int + public static let versionString: Swift.String } public enum VideoQuality : Swift.String, Swift.CaseIterable { case high, medium, low @@ -234,15 +8420,424 @@ public enum VideoQuality : Swift.String, Swift.CaseIterable { } @_hasMissingDesignatedInitializers final public class VideoSDK { public static func config(token: Swift.String) - public static func initMeeting(meetingId: Swift.String, participantId: Swift.String = "", participantName: Swift.String = "Guest", micEnabled: Swift.Bool = true, webcamEnabled: Swift.Bool = true, customCameraVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil) -> VideoSDKRTC.Meeting + public static func initMeeting(meetingId: Swift.String, participantId: Swift.String = "", participantName: Swift.String = "Guest", micEnabled: Swift.Bool = true, webcamEnabled: Swift.Bool = true, customCameraVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil, mode: VideoSDKRTC.Mode? = .CONFERENCE) -> VideoSDKRTC.Meeting public static func createCameraVideoTrack(encoderConfig: VideoSDKRTC.CustomVideoTrackConfig? = .h360p_w640p, facingMode: AVFoundation.AVCaptureDevice.Position? = .front, multiStream: Swift.Bool? = true) throws -> VideoSDKRTC.CustomRTCMediaStream? @objc deinit } +extension VideoSDKRTC.VideoSDK { + public static func getAudioPermissionStatus() -> VideoSDKRTC.authorisationStatus + public static func getVideoPermissionStatus() -> VideoSDKRTC.authorisationStatus + public static func getAudioPermission() + public static func getVideoPermission() + public static func getCameras() -> [Swift.String] + public static func getAudioDevices() -> [Swift.String] +} +@_hasMissingDesignatedInitializers public class ViewBuilder { + public func withName(name: Swift.String) -> Self + public func withDescription(description: Swift.String) -> Self + public func withAggregation(aggregation: any VideoSDKRTC.Aggregation) -> Self + public func addAttributeFilter(keyFilter: @escaping (Swift.String) -> Swift.Bool) -> Self + public func addAttributeProcessor(processor: VideoSDKRTC.AttributeProcessor) -> Self + public func build() -> VideoSDKRTC.StableView + @objc deinit +} +public protocol Visitor { + mutating func visitSingularFloatField(value: Swift.Float, fieldNumber: Swift.Int) throws + mutating func visitSingularDoubleField(value: Swift.Double, fieldNumber: Swift.Int) throws + mutating func visitSingularInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + mutating func visitSingularInt64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + mutating func visitSingularUInt32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + mutating func visitSingularUInt64Field(value: Swift.UInt64, fieldNumber: Swift.Int) throws + mutating func visitSingularSInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + mutating func visitSingularSInt64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + mutating func visitSingularFixed32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + mutating func visitSingularFixed64Field(value: Swift.UInt64, fieldNumber: Swift.Int) throws + mutating func visitSingularSFixed32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + mutating func visitSingularSFixed64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + mutating func visitSingularBoolField(value: Swift.Bool, fieldNumber: Swift.Int) throws + mutating func visitSingularStringField(value: Swift.String, fieldNumber: Swift.Int) throws + mutating func visitSingularBytesField(value: Foundation.Data, fieldNumber: Swift.Int) throws + mutating func visitSingularEnumField(value: E, fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + mutating func visitSingularMessageField(value: M, fieldNumber: Swift.Int) throws where M : VideoSDKRTC.Message + mutating func visitSingularGroupField(value: G, fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + mutating func visitRepeatedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + mutating func visitRepeatedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + mutating func visitRepeatedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + mutating func visitRepeatedStringField(value: [Swift.String], fieldNumber: Swift.Int) throws + mutating func visitRepeatedBytesField(value: [Foundation.Data], fieldNumber: Swift.Int) throws + mutating func visitRepeatedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + mutating func visitRepeatedMessageField(value: [M], fieldNumber: Swift.Int) throws where M : VideoSDKRTC.Message + mutating func visitRepeatedGroupField(value: [G], fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + mutating func visitPackedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + mutating func visitPackedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + mutating func visitPackedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitPackedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitPackedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitPackedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitPackedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitPackedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitPackedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitPackedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitPackedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitPackedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitPackedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + mutating func visitPackedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + mutating func visitMapField(fieldType: VideoSDKRTC._ProtobufMap.Type, value: VideoSDKRTC._ProtobufMap.BaseType, fieldNumber: Swift.Int) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.MapValueType + mutating func visitMapField(fieldType: VideoSDKRTC._ProtobufEnumMap.Type, value: VideoSDKRTC._ProtobufEnumMap.BaseType, fieldNumber: Swift.Int) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.Enum, ValueType.RawValue == Swift.Int + mutating func visitMapField(fieldType: VideoSDKRTC._ProtobufMessageMap.Type, value: VideoSDKRTC._ProtobufMessageMap.BaseType, fieldNumber: Swift.Int) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : Swift.Hashable, ValueType : VideoSDKRTC.Message + mutating func visitExtensionFields(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws + mutating func visitExtensionFieldsAsMessageSet(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws + mutating func visitUnknown(bytes: Foundation.Data) throws +} +extension VideoSDKRTC.Visitor { + public mutating func visitSingularFloatField(value: Swift.Float, fieldNumber: Swift.Int) throws + public mutating func visitSingularInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + public mutating func visitSingularUInt32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + public mutating func visitSingularSInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + public mutating func visitSingularSInt64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + public mutating func visitSingularFixed32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + public mutating func visitSingularFixed64Field(value: Swift.UInt64, fieldNumber: Swift.Int) throws + public mutating func visitSingularSFixed32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + public mutating func visitSingularSFixed64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + public mutating func visitRepeatedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedStringField(value: [Swift.String], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedBytesField(value: [Foundation.Data], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + public mutating func visitRepeatedMessageField(value: [M], fieldNumber: Swift.Int) throws where M : VideoSDKRTC.Message + public mutating func visitRepeatedGroupField(value: [G], fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + public mutating func visitPackedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + public mutating func visitPackedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + public mutating func visitPackedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitPackedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitPackedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitPackedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitPackedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitPackedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitPackedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitPackedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitPackedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitPackedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitPackedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + public mutating func visitPackedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + public mutating func visitSingularGroupField(value: G, fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + public mutating func visitExtensionFieldsAsMessageSet(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws + public mutating func visitExtensionFields(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws +} +public struct W3CBaggagePropagator : VideoSDKRTC.TextMapBaggagePropagator { + public init() + public let fields: Swift.Set + public func inject(baggage: any VideoSDKRTC.Baggage, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + public func extract(carrier: [Swift.String : Swift.String], getter: G) -> (any VideoSDKRTC.Baggage)? where G : VideoSDKRTC.Getter +} +public struct W3CTraceContextPropagator : VideoSDKRTC.TextMapPropagator { + public init() + public let fields: Swift.Set + public func inject(spanContext: VideoSDKRTC.SpanContext, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + public func extract(carrier: [Swift.String : Swift.String], getter: G) -> VideoSDKRTC.SpanContext? where G : VideoSDKRTC.Getter +} +public struct Google_Protobuf_DoubleValue { + public var value: Swift.Double + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_FloatValue { + public var value: Swift.Float + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Int64Value { + public var value: Swift.Int64 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_UInt64Value { + public var value: Swift.UInt64 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Int32Value { + public var value: Swift.Int32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_UInt32Value { + public var value: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_BoolValue { + public var value: Swift.Bool + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_StringValue { + public var value: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_BytesValue { + public var value: Foundation.Data + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_DoubleValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FloatValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Int64Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UInt64Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Int32Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UInt32Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_BoolValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_StringValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_BytesValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DoubleValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DoubleValue, rhs: VideoSDKRTC.Google_Protobuf_DoubleValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FloatValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FloatValue, rhs: VideoSDKRTC.Google_Protobuf_FloatValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Int64Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Int64Value, rhs: VideoSDKRTC.Google_Protobuf_Int64Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_UInt64Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UInt64Value, rhs: VideoSDKRTC.Google_Protobuf_UInt64Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Int32Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Int32Value, rhs: VideoSDKRTC.Google_Protobuf_Int32Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_UInt32Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UInt32Value, rhs: VideoSDKRTC.Google_Protobuf_UInt32Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_BoolValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_BoolValue, rhs: VideoSDKRTC.Google_Protobuf_BoolValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_StringValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_StringValue, rhs: VideoSDKRTC.Google_Protobuf_StringValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_BytesValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_BytesValue, rhs: VideoSDKRTC.Google_Protobuf_BytesValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.AggregationTemporality : Swift.Equatable {} +extension VideoSDKRTC.AggregationTemporality : Swift.Hashable {} +extension VideoSDKRTC.AggregationType : Swift.Equatable {} +extension VideoSDKRTC.AggregationType : Swift.Hashable {} +extension VideoSDKRTC.AggregationType : Swift.RawRepresentable {} +extension VideoSDKRTC.AnyUnpackError : Swift.Equatable {} +extension VideoSDKRTC.AnyUnpackError : Swift.Hashable {} +extension VideoSDKRTC.BinaryDecodingError : Swift.Equatable {} +extension VideoSDKRTC.BinaryDecodingError : Swift.Hashable {} +extension VideoSDKRTC.BinaryDelimited.Error : Swift.Equatable {} +extension VideoSDKRTC.BinaryDelimited.Error : Swift.Hashable {} +extension VideoSDKRTC.BinaryEncodingError : Swift.Equatable {} +extension VideoSDKRTC.BinaryEncodingError : Swift.Hashable {} extension VideoSDKRTC.CameraPosition : Swift.Equatable {} extension VideoSDKRTC.CameraPosition : Swift.Hashable {} extension VideoSDKRTC.CameraPosition : Swift.RawRepresentable {} extension VideoSDKRTC.CustomVideoTrackConfig : Swift.Equatable {} extension VideoSDKRTC.CustomVideoTrackConfig : Swift.Hashable {} +extension VideoSDKRTC.EmptyMetricStorage : VideoSDKRTC.MetricStorage {} +extension VideoSDKRTC.EmptyMetricStorage : VideoSDKRTC.WritableMetricStorage {} +extension VideoSDKRTC.ExportResult : Swift.Equatable {} +extension VideoSDKRTC.ExportResult : Swift.Hashable {} +extension VideoSDKRTC.ConfigLayoutPriority : Swift.Equatable {} +extension VideoSDKRTC.ConfigLayoutPriority : Swift.Hashable {} +extension VideoSDKRTC.ConfigLayoutPriority : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigLayoutGrid : Swift.Equatable {} +extension VideoSDKRTC.ConfigLayoutGrid : Swift.Hashable {} +extension VideoSDKRTC.ConfigLayoutGrid : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigTheme : Swift.Equatable {} +extension VideoSDKRTC.ConfigTheme : Swift.Hashable {} +extension VideoSDKRTC.ConfigTheme : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigMode : Swift.Equatable {} +extension VideoSDKRTC.ConfigMode : Swift.Hashable {} +extension VideoSDKRTC.ConfigMode : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigQuality : Swift.Equatable {} +extension VideoSDKRTC.ConfigQuality : Swift.Hashable {} +extension VideoSDKRTC.ConfigQuality : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigOrientation : Swift.Equatable {} +extension VideoSDKRTC.ConfigOrientation : Swift.Hashable {} +extension VideoSDKRTC.ConfigOrientation : Swift.RawRepresentable {} +extension VideoSDKRTC.InstrumentType : Swift.Equatable {} +extension VideoSDKRTC.InstrumentType : Swift.Hashable {} +extension VideoSDKRTC.InstrumentValueType : Swift.Equatable {} +extension VideoSDKRTC.InstrumentValueType : Swift.Hashable {} +extension VideoSDKRTC.JSONEncodingError : Swift.Equatable {} +extension VideoSDKRTC.JSONEncodingError : Swift.Hashable {} +extension VideoSDKRTC.authorisationStatus : Swift.Equatable {} +extension VideoSDKRTC.authorisationStatus : Swift.Hashable {} +extension VideoSDKRTC.MeetingState : Swift.Equatable {} +extension VideoSDKRTC.MeetingState : Swift.Hashable {} +extension VideoSDKRTC.MeetingState : Swift.RawRepresentable {} +extension VideoSDKRTC.Mode : Swift.Equatable {} +extension VideoSDKRTC.Mode : Swift.Hashable {} +extension VideoSDKRTC.Mode : Swift.RawRepresentable {} +extension VideoSDKRTC.VideoSDKError : Swift.Equatable {} +extension VideoSDKRTC.VideoSDKError : Swift.Hashable {} +extension VideoSDKRTC.VideoSDKError : Swift.RawRepresentable {} +extension VideoSDKRTC.HLSState : Swift.Equatable {} +extension VideoSDKRTC.HLSState : Swift.Hashable {} +extension VideoSDKRTC.HLSState : Swift.RawRepresentable {} +extension VideoSDKRTC.RecordingState : Swift.Equatable {} +extension VideoSDKRTC.RecordingState : Swift.Hashable {} +extension VideoSDKRTC.RecordingState : Swift.RawRepresentable {} +extension VideoSDKRTC.LiveStreamState : Swift.Equatable {} +extension VideoSDKRTC.LiveStreamState : Swift.Hashable {} +extension VideoSDKRTC.LiveStreamState : Swift.RawRepresentable {} +extension VideoSDKRTC.MetricExporterResultCode : Swift.Equatable {} +extension VideoSDKRTC.MetricExporterResultCode : Swift.Hashable {} +extension VideoSDKRTC.OpenTelemetryContextKeys : Swift.Equatable {} +extension VideoSDKRTC.OpenTelemetryContextKeys : Swift.Hashable {} +extension VideoSDKRTC.OpenTelemetryContextKeys : Swift.RawRepresentable {} +extension VideoSDKRTC.PinType : Swift.Equatable {} +extension VideoSDKRTC.PinType : Swift.Hashable {} +extension VideoSDKRTC.PinType : Swift.RawRepresentable {} +extension VideoSDKRTC.ResourceAttributes : Swift.Equatable {} +extension VideoSDKRTC.ResourceAttributes : Swift.Hashable {} +extension VideoSDKRTC.ResourceAttributes : Swift.RawRepresentable {} +extension VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues : Swift.Equatable {} +extension VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues : Swift.Hashable {} +extension VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.FaasTriggerValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.FaasTriggerValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.FaasTriggerValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.MessageTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.MessageTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.MessageTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.Severity : Swift.Hashable {} +extension VideoSDKRTC.Severity : Swift.RawRepresentable {} +extension VideoSDKRTC.SpanExporterResultCode : Swift.Equatable {} +extension VideoSDKRTC.SpanExporterResultCode : Swift.Hashable {} +extension VideoSDKRTC.SpanKind : Swift.Hashable {} +extension VideoSDKRTC.SpanKind : Swift.RawRepresentable {} +extension VideoSDKRTC.MetricDataType : Swift.Equatable {} +extension VideoSDKRTC.MetricDataType : Swift.Hashable {} +extension VideoSDKRTC.SynchronousMetricStorage : VideoSDKRTC.MetricStorage {} +extension VideoSDKRTC.SynchronousMetricStorage : VideoSDKRTC.WritableMetricStorage {} +extension VideoSDKRTC.TextFormatDecodingError : Swift.Equatable {} +extension VideoSDKRTC.TextFormatDecodingError : Swift.Hashable {} extension VideoSDKRTC.VideoQuality : Swift.Equatable {} extension VideoSDKRTC.VideoQuality : Swift.Hashable {} extension VideoSDKRTC.VideoQuality : Swift.RawRepresentable {} diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/VideoSDKRTC b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/VideoSDKRTC index 080c0a2..ed0f1c1 100755 Binary files a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/VideoSDKRTC and b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/VideoSDKRTC differ diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Headers/BroadcastScreenCapturer.h b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Headers/BroadcastScreenCapturer.h new file mode 100644 index 0000000..935f3bf --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Headers/BroadcastScreenCapturer.h @@ -0,0 +1,26 @@ +// +// BroadcastScreenCapturer.h +// Pods +// +// Created by Parth Asodariya on 23/06/23. +// + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +extern NSString* const kRTCScreensharingSocketFD; +extern NSString* const kRTCAppGroupIdentifier; +extern NSString* const kRTCScreenSharingExtension; + +@class iOSSocketConnectionFrameReader; + +@interface iOSBroadcastScreenCapturer : RTCVideoCapturer +- (void)startCapture; +- (void)stopCapture; +- (void)stopCaptureWithCompletionHandler:(nullable void (^)(void))completionHandler; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Headers/SocketConnection.h b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Headers/SocketConnection.h new file mode 100644 index 0000000..802b67c --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Headers/SocketConnection.h @@ -0,0 +1,20 @@ +// +// SocketConnection.h +// Pods +// +// Created by Parth Asodariya on 23/06/23. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface iOSSocketConnection : NSObject + +- (instancetype)initWithFilePath:(nonnull NSString*)filePath; +- (void)openWithStreamDelegate:(id)streamDelegate; +- (void)close; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Headers/SocketConnectionFrameReader.h b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Headers/SocketConnectionFrameReader.h new file mode 100644 index 0000000..c0dd05c --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Headers/SocketConnectionFrameReader.h @@ -0,0 +1,23 @@ +// +// SocketConnectionFrameReader.h +// Pods +// +// Created by Parth Asodariya on 23/06/23. +// + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +@class iOSSocketConnection; + +@interface iOSSocketConnectionFrameReader : RTCVideoCapturer + +- (instancetype)initWithDelegate:(__weak id)delegate; +- (void)startCaptureWithConnection:(nonnull iOSSocketConnection*)connection; +- (void)stopCapture; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Headers/VideoSDKRTC-Bridging-Header.h b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Headers/VideoSDKRTC-Bridging-Header.h deleted file mode 100644 index cb14cb9..0000000 --- a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Headers/VideoSDKRTC-Bridging-Header.h +++ /dev/null @@ -1,16 +0,0 @@ -// -// VideoSDKRTC-Bridging-Header.h -// VideoSDKRTC -// -// Created by VideoSDK Team on 02/09/21. -// Copyright © 2021 Zujo Tech Pvt Ltd. All rights reserved. -// -// -//#ifndef VideoSDKRTC_Bridging_Header_h -//#define VideoSDKRTC_Bridging_Header_h -// -//#include "vl_mediasoup_client_ios/Mediasoupclient.h" -// -//#endif /* VideoSDKRTC_Bridging_Header_h */ -// -// diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Headers/VideoSDKRTC-Swift.h b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Headers/VideoSDKRTC-Swift.h index 34e47cd..d89faa7 100644 --- a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Headers/VideoSDKRTC-Swift.h +++ b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Headers/VideoSDKRTC-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) +// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) #ifndef VIDEOSDKRTC_SWIFT_H #define VIDEOSDKRTC_SWIFT_H #pragma clang diagnostic push @@ -23,7 +23,6 @@ # include #endif -#pragma clang diagnostic ignored "-Wduplicate-method-match" #pragma clang diagnostic ignored "-Wauto-import" #if defined(__OBJC__) #include @@ -32,10 +31,30 @@ #include #include #include +#include +#include +#include +#include #else #include #include #include +#include +#endif +#if defined(__cplusplus) +#if defined(__arm64e__) && __has_include() +# include +#else +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreserved-macro-identifier" +# ifndef __ptrauth_swift_value_witness_function_pointer +# define __ptrauth_swift_value_witness_function_pointer(x) +# endif +# ifndef __ptrauth_swift_class_method_pointer +# define __ptrauth_swift_class_method_pointer(x) +# endif +#pragma clang diagnostic pop +#endif #endif #if !defined(SWIFT_TYPEDEFS) @@ -71,53 +90,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # if __has_feature(objc_class_property) # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ # else -# define SWIFT_CLASS_PROPERTY(...) +# define SWIFT_CLASS_PROPERTY(...) # endif #endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) +#if !defined(SWIFT_RUNTIME_NAME) +# if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +# else +# define SWIFT_RUNTIME_NAME(X) +# endif #endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) +#if !defined(SWIFT_COMPILE_NAME) +# if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +# else +# define SWIFT_COMPILE_NAME(X) +# endif #endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) +#if !defined(SWIFT_METHOD_FAMILY) +# if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +# else +# define SWIFT_METHOD_FAMILY(X) +# endif #endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE +#if !defined(SWIFT_NOESCAPE) +# if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +# else +# define SWIFT_NOESCAPE +# endif #endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT +#if !defined(SWIFT_RELEASES_ARGUMENT) +# if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +# else +# define SWIFT_RELEASES_ARGUMENT +# endif #endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT +#if !defined(SWIFT_WARN_UNUSED_RESULT) +# if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +# else +# define SWIFT_WARN_UNUSED_RESULT +# endif #endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN +#if !defined(SWIFT_NORETURN) +# if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +# else +# define SWIFT_NORETURN +# endif #endif #if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_EXTRA #endif #if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_EXTRA #endif #if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA +# define SWIFT_ENUM_EXTRA #endif #if !defined(SWIFT_CLASS) # if __has_attribute(objc_subclassing_restricted) @@ -137,28 +169,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) # endif #endif - #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA #endif - #if !defined(SWIFT_EXTENSION) # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) #endif - #if !defined(OBJC_DESIGNATED_INITIALIZER) # if __has_attribute(objc_designated_initializer) # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) # else -# define OBJC_DESIGNATED_INITIALIZER +# define OBJC_DESIGNATED_INITIALIZER # endif #endif #if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# if __has_attribute(enum_extensibility) # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) # else -# define SWIFT_ENUM_ATTR(_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) # endif #endif #if !defined(SWIFT_ENUM) @@ -187,14 +216,16 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_DEPRECATED_MSG) # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) #endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#if !defined(SWIFT_DEPRECATED_OBJC) +# if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +# else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +# endif #endif #if defined(__OBJC__) #if !defined(IBSegueAction) -# define IBSegueAction +# define IBSegueAction #endif #endif #if !defined(SWIFT_EXTERN) @@ -207,26 +238,42 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_CALL) # define SWIFT_CALL __attribute__((swiftcall)) #endif +#if !defined(SWIFT_INDIRECT_RESULT) +# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) +#endif +#if !defined(SWIFT_CONTEXT) +# define SWIFT_CONTEXT __attribute__((swift_context)) +#endif +#if !defined(SWIFT_ERROR_RESULT) +# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) +#endif #if defined(__cplusplus) -#if !defined(SWIFT_NOEXCEPT) # define SWIFT_NOEXCEPT noexcept -#endif #else -#if !defined(SWIFT_NOEXCEPT) # define SWIFT_NOEXCEPT #endif +#if !defined(SWIFT_C_INLINE_THUNK) +# if __has_attribute(always_inline) +# if __has_attribute(nodebug) +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) +# else +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) +# endif +# else +# define SWIFT_C_INLINE_THUNK inline +# endif #endif -#if defined(__cplusplus) -#if !defined(SWIFT_CXX_INT_DEFINED) -#define SWIFT_CXX_INT_DEFINED -namespace swift { -using Int = ptrdiff_t; -using UInt = size_t; -} +#if defined(_WIN32) +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) +#endif +#else +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL #endif #endif #if defined(__OBJC__) -#if __has_feature(modules) +#if __has_feature(objc_modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif @@ -258,17 +305,17 @@ SWIFT_CLASS("_TtC11VideoSDKRTC13PubSubMessage") + (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); @end -#endif -#if defined(__cplusplus) #endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif +#if defined(__cplusplus) +#endif #pragma clang diagnostic pop #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) +// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) #ifndef VIDEOSDKRTC_SWIFT_H #define VIDEOSDKRTC_SWIFT_H #pragma clang diagnostic push @@ -291,7 +338,6 @@ SWIFT_CLASS("_TtC11VideoSDKRTC13PubSubMessage") # include #endif -#pragma clang diagnostic ignored "-Wduplicate-method-match" #pragma clang diagnostic ignored "-Wauto-import" #if defined(__OBJC__) #include @@ -300,10 +346,30 @@ SWIFT_CLASS("_TtC11VideoSDKRTC13PubSubMessage") #include #include #include +#include +#include +#include +#include #else #include #include #include +#include +#endif +#if defined(__cplusplus) +#if defined(__arm64e__) && __has_include() +# include +#else +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreserved-macro-identifier" +# ifndef __ptrauth_swift_value_witness_function_pointer +# define __ptrauth_swift_value_witness_function_pointer(x) +# endif +# ifndef __ptrauth_swift_class_method_pointer +# define __ptrauth_swift_class_method_pointer(x) +# endif +#pragma clang diagnostic pop +#endif #endif #if !defined(SWIFT_TYPEDEFS) @@ -339,53 +405,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # if __has_feature(objc_class_property) # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ # else -# define SWIFT_CLASS_PROPERTY(...) +# define SWIFT_CLASS_PROPERTY(...) # endif #endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) +#if !defined(SWIFT_RUNTIME_NAME) +# if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +# else +# define SWIFT_RUNTIME_NAME(X) +# endif #endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) +#if !defined(SWIFT_COMPILE_NAME) +# if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +# else +# define SWIFT_COMPILE_NAME(X) +# endif #endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) +#if !defined(SWIFT_METHOD_FAMILY) +# if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +# else +# define SWIFT_METHOD_FAMILY(X) +# endif #endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE +#if !defined(SWIFT_NOESCAPE) +# if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +# else +# define SWIFT_NOESCAPE +# endif #endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT +#if !defined(SWIFT_RELEASES_ARGUMENT) +# if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +# else +# define SWIFT_RELEASES_ARGUMENT +# endif #endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT +#if !defined(SWIFT_WARN_UNUSED_RESULT) +# if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +# else +# define SWIFT_WARN_UNUSED_RESULT +# endif #endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN +#if !defined(SWIFT_NORETURN) +# if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +# else +# define SWIFT_NORETURN +# endif #endif #if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_EXTRA #endif #if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_EXTRA #endif #if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA +# define SWIFT_ENUM_EXTRA #endif #if !defined(SWIFT_CLASS) # if __has_attribute(objc_subclassing_restricted) @@ -405,28 +484,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) # endif #endif - #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA #endif - #if !defined(SWIFT_EXTENSION) # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) #endif - #if !defined(OBJC_DESIGNATED_INITIALIZER) # if __has_attribute(objc_designated_initializer) # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) # else -# define OBJC_DESIGNATED_INITIALIZER +# define OBJC_DESIGNATED_INITIALIZER # endif #endif #if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# if __has_attribute(enum_extensibility) # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) # else -# define SWIFT_ENUM_ATTR(_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) # endif #endif #if !defined(SWIFT_ENUM) @@ -455,14 +531,16 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_DEPRECATED_MSG) # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) #endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#if !defined(SWIFT_DEPRECATED_OBJC) +# if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +# else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +# endif #endif #if defined(__OBJC__) #if !defined(IBSegueAction) -# define IBSegueAction +# define IBSegueAction #endif #endif #if !defined(SWIFT_EXTERN) @@ -475,26 +553,42 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_CALL) # define SWIFT_CALL __attribute__((swiftcall)) #endif +#if !defined(SWIFT_INDIRECT_RESULT) +# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) +#endif +#if !defined(SWIFT_CONTEXT) +# define SWIFT_CONTEXT __attribute__((swift_context)) +#endif +#if !defined(SWIFT_ERROR_RESULT) +# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) +#endif #if defined(__cplusplus) -#if !defined(SWIFT_NOEXCEPT) # define SWIFT_NOEXCEPT noexcept -#endif #else -#if !defined(SWIFT_NOEXCEPT) # define SWIFT_NOEXCEPT #endif +#if !defined(SWIFT_C_INLINE_THUNK) +# if __has_attribute(always_inline) +# if __has_attribute(nodebug) +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) +# else +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) +# endif +# else +# define SWIFT_C_INLINE_THUNK inline +# endif #endif -#if defined(__cplusplus) -#if !defined(SWIFT_CXX_INT_DEFINED) -#define SWIFT_CXX_INT_DEFINED -namespace swift { -using Int = ptrdiff_t; -using UInt = size_t; -} +#if defined(_WIN32) +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) +#endif +#else +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL #endif #endif #if defined(__OBJC__) -#if __has_feature(modules) +#if __has_feature(objc_modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif @@ -526,12 +620,12 @@ SWIFT_CLASS("_TtC11VideoSDKRTC13PubSubMessage") + (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); @end -#endif -#if defined(__cplusplus) #endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif +#if defined(__cplusplus) +#endif #pragma clang diagnostic pop #endif diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Headers/VideoSDKRTC-umbrella.h b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Headers/VideoSDKRTC-umbrella.h index 19c937a..ea753c1 100644 --- a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Headers/VideoSDKRTC-umbrella.h +++ b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Headers/VideoSDKRTC-umbrella.h @@ -10,6 +10,9 @@ #endif #endif +#import "BroadcastScreenCapturer.h" +#import "SocketConnection.h" +#import "SocketConnectionFrameReader.h" FOUNDATION_EXPORT double VideoSDKRTCVersionNumber; FOUNDATION_EXPORT const unsigned char VideoSDKRTCVersionString[]; diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Info.plist b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Info.plist index 5d8b8d8..24597b9 100644 Binary files a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Info.plist and b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Info.plist differ diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.abi.json b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.abi.json index c97f791..69e4e21 100644 --- a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.abi.json +++ b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -24,236 +24,181 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "os.activity", + "printedName": "os.activity", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", - "name": "CameraPosition", - "printedName": "CameraPosition", + "name": "Aggregations", + "printedName": "Aggregations", "children": [ { - "kind": "Var", - "name": "back", - "printedName": "back", + "kind": "Function", + "name": "drop", + "printedName": "drop()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.CameraPosition.Type) -> VideoSDKRTC.CameraPosition", - "children": [ - { - "kind": "TypeNominal", - "name": "CameraPosition", - "printedName": "VideoSDKRTC.CameraPosition", - "usr": "s:11VideoSDKRTC14CameraPositionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CameraPosition.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CameraPosition", - "printedName": "VideoSDKRTC.CameraPosition", - "usr": "s:11VideoSDKRTC14CameraPositionO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC14CameraPositionO4backyA2CmF", - "mangledName": "$s11VideoSDKRTC14CameraPositionO4backyA2CmF", - "moduleName": "VideoSDKRTC" + "declKind": "Func", + "usr": "s:11VideoSDKRTC12AggregationsO4dropAA11Aggregation_pyFZ", + "mangledName": "$s11VideoSDKRTC12AggregationsO4dropAA11Aggregation_pyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "front", - "printedName": "front", + "kind": "Function", + "name": "defaultAggregation", + "printedName": "defaultAggregation()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.CameraPosition.Type) -> VideoSDKRTC.CameraPosition", - "children": [ - { - "kind": "TypeNominal", - "name": "CameraPosition", - "printedName": "VideoSDKRTC.CameraPosition", - "usr": "s:11VideoSDKRTC14CameraPositionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CameraPosition.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CameraPosition", - "printedName": "VideoSDKRTC.CameraPosition", - "usr": "s:11VideoSDKRTC14CameraPositionO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC14CameraPositionO5frontyA2CmF", - "mangledName": "$s11VideoSDKRTC14CameraPositionO5frontyA2CmF", - "moduleName": "VideoSDKRTC" + "declKind": "Func", + "usr": "s:11VideoSDKRTC12AggregationsO18defaultAggregationAA0E0_pyFZ", + "mangledName": "$s11VideoSDKRTC12AggregationsO18defaultAggregationAA0E0_pyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "toggle", - "printedName": "toggle()", + "name": "sum", + "printedName": "sum()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC14CameraPositionO6toggleyyF", - "mangledName": "$s11VideoSDKRTC14CameraPositionO6toggleyyF", + "usr": "s:11VideoSDKRTC12AggregationsO3sumAA11Aggregation_pyFZ", + "mangledName": "$s11VideoSDKRTC12AggregationsO3sumAA11Aggregation_pyFZ", "moduleName": "VideoSDKRTC", + "static": true, "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "funcSelfKind": "Mutating" + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Function", + "name": "lastValue", + "printedName": "lastValue()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.CameraPosition?", - "children": [ - { - "kind": "TypeNominal", - "name": "CameraPosition", - "printedName": "VideoSDKRTC.CameraPosition", - "usr": "s:11VideoSDKRTC14CameraPositionO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" } ], - "declKind": "Constructor", - "usr": "s:11VideoSDKRTC14CameraPositionO8rawValueACSgSi_tcfc", - "mangledName": "$s11VideoSDKRTC14CameraPositionO8rawValueACSgSi_tcfc", + "declKind": "Func", + "usr": "s:11VideoSDKRTC12AggregationsO9lastValueAA11Aggregation_pyFZ", + "mangledName": "$s11VideoSDKRTC12AggregationsO9lastValueAA11Aggregation_pyFZ", "moduleName": "VideoSDKRTC", - "implicit": true, - "init_kind": "Designated" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Function", + "name": "explicitBucketHistogram", + "printedName": "explicitBucketHistogram()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" } ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC14CameraPositionO8rawValueSivp", - "mangledName": "$s11VideoSDKRTC14CameraPositionO8rawValueSivp", + "declKind": "Func", + "usr": "s:11VideoSDKRTC12AggregationsO23explicitBucketHistogramAA11Aggregation_pyFZ", + "mangledName": "$s11VideoSDKRTC12AggregationsO23explicitBucketHistogramAA11Aggregation_pyFZ", "moduleName": "VideoSDKRTC", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC14CameraPositionO8rawValueSivg", - "mangledName": "$s11VideoSDKRTC14CameraPositionO8rawValueSivg", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:11VideoSDKRTC14CameraPositionO", - "mangledName": "$s11VideoSDKRTC14CameraPositionO", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "Int", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Function", + "name": "explicitBucketHistogram", + "printedName": "explicitBucketHistogram(buckets:)", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ] + ], + "usr": "s:Sa" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "declKind": "Func", + "usr": "s:11VideoSDKRTC12AggregationsO23explicitBucketHistogram7bucketsAA11Aggregation_pSaySdG_tFZ", + "mangledName": "$s11VideoSDKRTC12AggregationsO23explicitBucketHistogram7bucketsAA11Aggregation_pSaySdG_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC12AggregationsO", + "mangledName": "$s11VideoSDKRTC12AggregationsO", "moduleName": "VideoSDKRTC", "declAttributes": [ - "RawDocComment" + "AccessControl" ] }, { @@ -267,342 +212,563 @@ ] }, { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + "kind": "TypeDecl", + "name": "DefaultAggregationSelector", + "printedName": "DefaultAggregationSelector", + "children": [ + { + "kind": "Function", + "name": "getDefaultAggregation", + "printedName": "getDefaultAggregation(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26DefaultAggregationSelectorP03getcD03forAA0D0_pAA14InstrumentTypeO_tF", + "mangledName": "$s11VideoSDKRTC26DefaultAggregationSelectorP03getcD03forAA0D0_pAA14InstrumentTypeO_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DefaultAggregationSelector>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC26DefaultAggregationSelectorP", + "mangledName": "$s11VideoSDKRTC26DefaultAggregationSelectorP", "moduleName": "VideoSDKRTC", "declAttributes": [ - "RawDocComment" + "AccessControl" ] }, { "kind": "TypeDecl", - "name": "CustomVideoTrackConfig", - "printedName": "CustomVideoTrackConfig", + "name": "AggregationSelector", + "printedName": "AggregationSelector", "children": [ { "kind": "Var", - "name": "h90p_w160p", - "printedName": "h90p_w160p", + "name": "instance", + "printedName": "instance", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "kind": "TypeNominal", + "name": "AggregationSelector", + "printedName": "VideoSDKRTC.AggregationSelector", + "usr": "s:11VideoSDKRTC19AggregationSelectorC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19AggregationSelectorC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - } - ] + "name": "AggregationSelector", + "printedName": "VideoSDKRTC.AggregationSelector", + "usr": "s:11VideoSDKRTC19AggregationSelectorC" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19AggregationSelectorC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO10h90p_w160pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO10h90p_w160pyA2CmF", - "moduleName": "VideoSDKRTC" + ] }, { "kind": "Var", - "name": "h180p_w320p", - "printedName": "h180p_w320p", + "name": "selector", + "printedName": "selector", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.InstrumentType) -> VideoSDKRTC.Aggregation", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - } - ] + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" } ] } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h180p_w320pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h180p_w320pyA2CmF", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Var", - "name": "h216p_w384p", - "printedName": "h216p_w384p", - "children": [ + "declKind": "Var", + "usr": "s:11VideoSDKRTC19AggregationSelectorC8selectoryAA0C0_pAA14InstrumentTypeOcvp", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC8selectoryAA0C0_pAA14InstrumentTypeOcvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType) -> VideoSDKRTC.Aggregation", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" } ] } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19AggregationSelectorC8selectoryAA0C0_pAA14InstrumentTypeOcvg", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC8selectoryAA0C0_pAA14InstrumentTypeOcvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h216p_w384pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h216p_w384pyA2CmF", - "moduleName": "VideoSDKRTC" + ] }, { - "kind": "Var", - "name": "h360p_w640p", - "printedName": "h360p_w640p", + "kind": "Function", + "name": "getDefaultAggregation", + "printedName": "getDefaultAggregation(for:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h360p_w640pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h360p_w640pyA2CmF", - "moduleName": "VideoSDKRTC" + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AggregationSelectorC010getDefaultC03forAA0C0_pAA14InstrumentTypeO_tF", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC010getDefaultC03forAA0C0_pAA14InstrumentTypeO_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "h540p_w960p", - "printedName": "h540p_w960p", + "kind": "Function", + "name": "defaultSelector", + "printedName": "defaultSelector()", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.InstrumentType) -> VideoSDKRTC.Aggregation", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - } - ] + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" } ] } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h540p_w960pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h540p_w960pyA2CmF", - "moduleName": "VideoSDKRTC" + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AggregationSelectorC07defaultD0AA0C0_pAA14InstrumentTypeOcyFZ", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC07defaultD0AA0C0_pAA14InstrumentTypeOcyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "h720p_w1280p", - "printedName": "h720p_w1280p", + "kind": "Function", + "name": "with", + "printedName": "with(instrumentType:aggregation:)", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.InstrumentType) -> VideoSDKRTC.Aggregation", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - } - ] + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" } ] + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO12h720p_w1280pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO12h720p_w1280pyA2CmF", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Var", - "name": "h1080p_w1920p", - "printedName": "h1080p_w1920p", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - } - ] - } - ] + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AggregationSelectorC4with14instrumentType11aggregationAA0C0_pAA010InstrumentG0OcAI_AaG_ptF", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC4with14instrumentType11aggregationAA0C0_pAA010InstrumentG0OcAI_AaG_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19AggregationSelectorC", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DefaultAggregationSelector", + "printedName": "DefaultAggregationSelector", + "usr": "s:11VideoSDKRTC26DefaultAggregationSelectorP", + "mangledName": "$s11VideoSDKRTC26DefaultAggregationSelectorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AggregationTemporalitySelectorProtocol", + "printedName": "AggregationTemporalitySelectorProtocol", + "children": [ + { + "kind": "Function", + "name": "getAggregationTemporality", + "printedName": "getAggregationTemporality(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1920pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1920pyA2CmF", - "moduleName": "VideoSDKRTC" + "declKind": "Func", + "usr": "s:11VideoSDKRTC38AggregationTemporalitySelectorProtocolP03getcD03forAA0cD0OAA14InstrumentTypeO_tF", + "mangledName": "$s11VideoSDKRTC38AggregationTemporalitySelectorProtocolP03getcD03forAA0cD0OAA14InstrumentTypeO_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AggregationTemporalitySelectorProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC38AggregationTemporalitySelectorProtocolP", + "mangledName": "$s11VideoSDKRTC38AggregationTemporalitySelectorProtocolP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "AggregationTemporalitySelector", + "printedName": "AggregationTemporalitySelector", + "children": [ + { + "kind": "Function", + "name": "getAggregationTemporality", + "printedName": "getAggregationTemporality(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC03getcD03forAA0cD0OAA14InstrumentTypeO_tF", + "mangledName": "$s11VideoSDKRTC30AggregationTemporalitySelectorC03getcD03forAA0cD0OAA14InstrumentTypeO_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "h1440p_w2560p", - "printedName": "h1440p_w2560p", + "name": "aggregationTemporalitySelector", + "printedName": "aggregationTemporalitySelector", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvp", + "mangledName": "$s11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" } ] } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvg", + "mangledName": "$s11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvs", + "mangledName": "$s11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvM", + "mangledName": "$s11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w2560pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w2560pyA2CmF", - "moduleName": "VideoSDKRTC" - }, + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC", + "mangledName": "$s11VideoSDKRTC30AggregationTemporalitySelectorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AggregationTemporalitySelectorProtocol", + "printedName": "AggregationTemporalitySelectorProtocol", + "usr": "s:11VideoSDKRTC38AggregationTemporalitySelectorProtocolP", + "mangledName": "$s11VideoSDKRTC38AggregationTemporalitySelectorProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AggregationTemporality", + "printedName": "AggregationTemporality", + "children": [ { "kind": "Var", - "name": "h2160p_w3840p", - "printedName": "h2160p_w3840p", + "name": "delta", + "printedName": "delta", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationTemporality.Type) -> VideoSDKRTC.AggregationTemporality", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationTemporality.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" } ] } @@ -610,36 +776,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h2160p_w3840pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h2160p_w3840pyA2CmF", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO5deltayA2CmF", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO5deltayA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h120p_w160p", - "printedName": "h120p_w160p", + "name": "cumulative", + "printedName": "cumulative", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationTemporality.Type) -> VideoSDKRTC.AggregationTemporality", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationTemporality.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" } ] } @@ -647,36 +813,216 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h120p_w160pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h120p_w160pyA2CmF", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO10cumulativeyA2CmF", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO10cumulativeyA2CmF", "moduleName": "VideoSDKRTC" }, + { + "kind": "Function", + "name": "alwaysCumulative", + "printedName": "alwaysCumulative()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporalitySelector", + "printedName": "VideoSDKRTC.AggregationTemporalitySelector", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO16alwaysCumulativeAA0cD8SelectorCyFZ", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO16alwaysCumulativeAA0cD8SelectorCyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deltaPreferred", + "printedName": "deltaPreferred()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporalitySelector", + "printedName": "VideoSDKRTC.AggregationTemporalitySelector", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO14deltaPreferredAA0cD8SelectorCyFZ", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO14deltaPreferredAA0cD8SelectorCyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Var", - "name": "h180p_w240p", - "printedName": "h180p_w240p", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AggregationType", + "printedName": "AggregationType", + "children": [ + { + "kind": "Var", + "name": "intGauge", + "printedName": "intGauge", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -684,36 +1030,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h180p_w240pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h180p_w240pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO8intGaugeyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO8intGaugeyA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h240p_w320p", - "printedName": "h240p_w320p", + "name": "doubleGauge", + "printedName": "doubleGauge", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -721,36 +1067,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h240p_w320pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h240p_w320pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO11doubleGaugeyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO11doubleGaugeyA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h360p_w480p", - "printedName": "h360p_w480p", + "name": "doubleSum", + "printedName": "doubleSum", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -758,36 +1104,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h360p_w480pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h360p_w480pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO9doubleSumyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO9doubleSumyA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h480p_w640p", - "printedName": "h480p_w640p", + "name": "intSum", + "printedName": "intSum", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -795,36 +1141,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h480p_w640pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h480p_w640pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO6intSumyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO6intSumyA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h540p_w720p", - "printedName": "h540p_w720p", + "name": "doubleSummary", + "printedName": "doubleSummary", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -832,36 +1178,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h540p_w720pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h540p_w720pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO13doubleSummaryyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO13doubleSummaryyA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h720p_w960p", - "printedName": "h720p_w960p", + "name": "intSummary", + "printedName": "intSummary", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -869,36 +1215,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h720p_w960pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h720p_w960pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO10intSummaryyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO10intSummaryyA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h1080p_w1440p", - "printedName": "h1080p_w1440p", + "name": "doubleHistogram", + "printedName": "doubleHistogram", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -906,36 +1252,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1440pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1440pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO15doubleHistogramyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO15doubleHistogramyA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h1440p_w1920p", - "printedName": "h1440p_w1920p", + "name": "intHistogram", + "printedName": "intHistogram", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -943,57 +1289,58 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w1920pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w1920pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO12intHistogramyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO12intHistogramyA2CmF", "moduleName": "VideoSDKRTC" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "Optional", + "printedName": "VideoSDKRTC.AggregationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO2eeoiySbAC_ACtFZ", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO2eeoiySbAC_ACtFZ", + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC15AggregationTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO8rawValueACSgSS_tcfc", "moduleName": "VideoSDKRTC", - "static": true, "implicit": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivp", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivp", + "usr": "s:11VideoSDKRTC15AggregationTypeO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO8rawValueSSvp", "moduleName": "VideoSDKRTC", "implicit": true, "accessors": [ @@ -1004,53 +1351,29 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivg", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivg", + "usr": "s:11VideoSDKRTC15AggregationTypeO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO8rawValueSSvg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" } ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO4hash4intoys6HasherVz_tF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO4hash4intoys6HasherVz_tF", - "moduleName": "VideoSDKRTC", - "implicit": true, - "funcSelfKind": "NonMutating" } ], "declKind": "Enum", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO", + "usr": "s:11VideoSDKRTC15AggregationTypeO", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO", "moduleName": "VideoSDKRTC", "declAttributes": [ "AccessControl" ], + "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", @@ -1065,6 +1388,42 @@ "printedName": "Hashable", "usr": "s:SH", "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, @@ -1078,21 +1437,113 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, { "kind": "TypeDecl", - "name": "CustomRTCMediaStream", - "printedName": "CustomRTCMediaStream", + "name": "Aggregator", + "printedName": "Aggregator", + "children": [ + { + "kind": "Function", + "name": "update", + "printedName": "update(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10AggregatorC6update5valueyx_tF", + "mangledName": "$s11VideoSDKRTC10AggregatorC6update5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkpoint", + "printedName": "checkpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10AggregatorC10checkpointyyF", + "mangledName": "$s11VideoSDKRTC10AggregatorC10checkpointyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10AggregatorC12toMetricDataAA0eF0_pyF", + "mangledName": "$s11VideoSDKRTC10AggregatorC12toMetricDataAA0eF0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAggregationType", + "printedName": "getAggregationType()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10AggregatorC18getAggregationTypeAA0eF0OyF", + "mangledName": "$s11VideoSDKRTC10AggregatorC18getAggregationTypeAA0eF0OyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], "declKind": "Class", - "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC", - "mangledName": "$s11VideoSDKRTC20CustomRTCMediaStreamC", + "usr": "s:11VideoSDKRTC10AggregatorC", + "mangledName": "$s11VideoSDKRTC10AggregatorC", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], @@ -1109,13 +1560,81 @@ ] }, { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + "kind": "TypeDecl", + "name": "Aggregation", + "printedName": "Aggregation", + "children": [ + { + "kind": "Function", + "name": "createAggregator", + "printedName": "createAggregator(descriptor:exemplarFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableAggregator", + "printedName": "VideoSDKRTC.StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11AggregationP16createAggregator10descriptor14exemplarFilterAA06StableE0_pAA20InstrumentDescriptorV_AA08ExemplarH0_ptF", + "mangledName": "$s11VideoSDKRTC11AggregationP16createAggregator10descriptor14exemplarFilterAA06StableE0_pAA20InstrumentDescriptorV_AA08ExemplarH0_ptF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Aggregation>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isCompatible", + "printedName": "isCompatible(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11AggregationP12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "mangledName": "$s11VideoSDKRTC11AggregationP12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Aggregation>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC11AggregationP", + "mangledName": "$s11VideoSDKRTC11AggregationP", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ] }, { @@ -1130,163 +1649,190 @@ }, { "kind": "TypeDecl", - "name": "LivestreamOutput", - "printedName": "LivestreamOutput", + "name": "AggregatorHandle", + "printedName": "AggregatorHandle", "children": [ { - "kind": "Var", - "name": "url", - "printedName": "url", + "kind": "Function", + "name": "aggregateThenMaybeReset", + "printedName": "aggregateThenMaybeReset(startEpochNano:endEpochNano:attributes:reset:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC16LivestreamOutputV3urlSSvp", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV3urlSSvp", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC16LivestreamOutputV3urlSSvg", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV3urlSSvg", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "streamKey", - "printedName": "streamKey", - "children": [ + "usr": "s:SD" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC16LivestreamOutputV9streamKeySSvp", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV9streamKeySSvp", + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AggregatorHandleC23aggregateThenMaybeReset14startEpochNano03endjK010attributes5resetAA9PointDataCs6UInt64V_ALSDySSAA14AttributeValueOGSbtF", + "mangledName": "$s11VideoSDKRTC16AggregatorHandleC23aggregateThenMaybeReset14startEpochNano03endjK010attributes5resetAA9PointDataCs6UInt64V_ALSDySSAA14AttributeValueOGSbtF", "moduleName": "VideoSDKRTC", "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordLong", + "printedName": "recordLong(value:attributes:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC16LivestreamOutputV9streamKeySSvg", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV9streamKeySSvg", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "get" + "usr": "s:SD" } - ] + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AggregatorHandleC10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC16AggregatorHandleC10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(url:streamKey:)", + "kind": "Function", + "name": "recordLong", + "printedName": "recordLong(value:)", "children": [ { "kind": "TypeNominal", - "name": "LivestreamOutput", - "printedName": "VideoSDKRTC.LivestreamOutput", - "usr": "s:11VideoSDKRTC16LivestreamOutputV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Constructor", - "usr": "s:11VideoSDKRTC16LivestreamOutputV3url9streamKeyACSS_SStcfc", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV3url9streamKeyACSS_SStcfc", + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AggregatorHandleC10recordLong5valueySi_tF", + "mangledName": "$s11VideoSDKRTC16AggregatorHandleC10recordLong5valueySi_tF", "moduleName": "VideoSDKRTC", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "init_kind": "Designated" + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", + "kind": "Function", + "name": "recordDouble", + "printedName": "recordDouble(value:attributes:)", "children": [ { "kind": "TypeNominal", - "name": "LivestreamOutput", - "printedName": "VideoSDKRTC.LivestreamOutput", - "usr": "s:11VideoSDKRTC16LivestreamOutputV" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Decoder", - "printedName": "Swift.Decoder", - "usr": "s:s7DecoderP" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" } ], - "declKind": "Constructor", - "usr": "s:11VideoSDKRTC16LivestreamOutputV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV4fromACs7Decoder_p_tKcfc", + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AggregatorHandleC12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC16AggregatorHandleC12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", "moduleName": "VideoSDKRTC", - "implicit": true, - "throwing": true, - "init_kind": "Designated" + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", + "name": "recordDouble", + "printedName": "recordDouble(value:)", "children": [ { "kind": "TypeNominal", @@ -1295,68 +1841,29 @@ }, { "kind": "TypeNominal", - "name": "Encoder", - "printedName": "Swift.Encoder", - "usr": "s:s7EncoderP" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC16LivestreamOutputV6encode2toys7Encoder_p_tKF", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV6encode2toys7Encoder_p_tKF", + "usr": "s:11VideoSDKRTC16AggregatorHandleC12recordDouble5valueySd_tF", + "mangledName": "$s11VideoSDKRTC16AggregatorHandleC12recordDouble5valueySd_tF", "moduleName": "VideoSDKRTC", - "implicit": true, - "throwing": true, + "declAttributes": [ + "AccessControl" + ], "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:11VideoSDKRTC16LivestreamOutputV", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV", + "declKind": "Class", + "usr": "s:11VideoSDKRTC16AggregatorHandleC", + "mangledName": "$s11VideoSDKRTC16AggregatorHandleC", "moduleName": "VideoSDKRTC", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "conformances": [ - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "AVFoundation", - "printedName": "AVFoundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" + "hasMissingDesignatedInitializers": true }, { "kind": "Import", @@ -1368,29 +1875,15 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Mediasoup", - "printedName": "Mediasoup", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, { "kind": "TypeDecl", - "name": "MediaStream", - "printedName": "MediaStream", + "name": "Google_Protobuf_Any", + "printedName": "Google_Protobuf_Any", "children": [ { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "typeURL", + "printedName": "typeURL", "children": [ { "kind": "TypeNominal", @@ -1400,16 +1893,13 @@ } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11MediaStreamC2idSSvp", - "mangledName": "$s11VideoSDKRTC11MediaStreamC2idSSvp", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvp", "moduleName": "VideoSDKRTC", "declAttributes": [ - "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -1424,82 +1914,74 @@ } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11MediaStreamC2idSSvg", - "mangledName": "$s11VideoSDKRTC11MediaStreamC2idSSvg", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvg", "moduleName": "VideoSDKRTC", - "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "kind", - "printedName": "kind", - "children": [ - { - "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" - } - ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvp", - "mangledName": "$s11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvp", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvg", - "mangledName": "$s11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvg", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvM", "moduleName": "VideoSDKRTC", "implicit": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "track", - "printedName": "track", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "RTCMediaStreamTrack", - "printedName": "WebRTC.RTCMediaStreamTrack", - "usr": "c:objc(cs)RTCMediaStreamTrack" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvp", - "mangledName": "$s11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvp", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvp", "moduleName": "VideoSDKRTC", "declAttributes": [ - "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -1508,50 +1990,80 @@ "children": [ { "kind": "TypeNominal", - "name": "RTCMediaStreamTrack", - "printedName": "WebRTC.RTCMediaStreamTrack", - "usr": "c:objc(cs)RTCMediaStreamTrack" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvg", - "mangledName": "$s11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvg", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvg", "moduleName": "VideoSDKRTC", - "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "producer", - "printedName": "producer", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Mediasoup.Producer?", - "children": [ - { - "kind": "TypeNominal", - "name": "Producer", - "printedName": "Mediasoup.Producer", - "usr": "s:9Mediasoup8ProducerC" - } - ], - "usr": "s:Sq" + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvp", - "mangledName": "$s11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvp", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvp", "moduleName": "VideoSDKRTC", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -1562,59 +2074,156 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Mediasoup.Producer?", - "children": [ - { - "kind": "TypeNominal", - "name": "Producer", - "printedName": "Mediasoup.Producer", - "usr": "s:9Mediasoup8ProducerC" - } - ], - "usr": "s:Sq" + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvg", - "mangledName": "$s11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvg", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyVACycfc", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "consumer", - "printedName": "consumer", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Mediasoup.Consumer?", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Consumer", - "printedName": "Mediasoup.Consumer", - "usr": "s:9Mediasoup8ConsumerC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvp", - "mangledName": "$s11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvp", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV17_protobuf_nameMapAA05_NameH0VvpZ", "moduleName": "VideoSDKRTC", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -1624,68 +2233,81 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Mediasoup.Consumer?", - "children": [ - { - "kind": "TypeNominal", - "name": "Consumer", - "printedName": "Mediasoup.Consumer", - "usr": "s:9Mediasoup8ConsumerC" - } - ], - "usr": "s:Sq" + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvg", - "mangledName": "$s11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvg", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV17_protobuf_nameMapAA05_NameH0VvgZ", "moduleName": "VideoSDKRTC", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Function", - "name": "pause", - "printedName": "pause()", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11MediaStreamC5pauseyyF", - "mangledName": "$s11VideoSDKRTC11MediaStreamC5pauseyyF", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "Mutating", + "AccessControl" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "throwing": true, + "funcSelfKind": "Mutating" }, { "kind": "Function", - "name": "resume", - "printedName": "resume()", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11MediaStreamC6resumeyyF", - "mangledName": "$s11VideoSDKRTC11MediaStreamC6resumeyyF", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV8traverse7visitoryxz_tKAA7VisitorRzlF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ], "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -1701,151 +2323,169 @@ }, { "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" }, { "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11MediaStreamC2eeoiySbAC_ACtFZ", - "mangledName": "$s11VideoSDKRTC11MediaStreamC2eeoiySbAC_ACtFZ", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV2eeoiySbAC_ACtFZ", "moduleName": "VideoSDKRTC", "static": true, "declAttributes": [ - "Final", "AccessControl" ], "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:11VideoSDKRTC11MediaStreamC", - "mangledName": "$s11VideoSDKRTC11MediaStreamC", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "MediaType", - "printedName": "MediaType", - "children": [ + }, { "kind": "Var", - "name": "share", - "printedName": "share", + "name": "hashValue", + "printedName": "hashValue", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.MediaType.Type) -> VideoSDKRTC.MediaType", + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.MediaType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" - } - ] + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(message:partial:typePrefix:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" + }, + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC9MediaTypeO5shareyA2CmF", - "mangledName": "$s11VideoSDKRTC9MediaTypeO5shareyA2CmF", - "moduleName": "VideoSDKRTC" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV7message7partial10typePrefixAcA7Message_p_SbSStKcfc", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV7message7partial10typePrefixAcA7Message_p_SbSStKcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" }, { - "kind": "Var", - "name": "state", - "printedName": "state", + "kind": "Constructor", + "name": "init", + "printedName": "init(textFormatString:options:extensions:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.MediaType.Type) -> (Mediasoup.MediaKind) -> VideoSDKRTC.MediaType", + "kind": "TypeNominal", + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TextFormatDecodingOptions", + "printedName": "VideoSDKRTC.TextFormatDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Mediasoup.MediaKind) -> VideoSDKRTC.MediaType", - "children": [ - { - "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(value: Mediasoup.MediaKind)", - "children": [ - { - "kind": "TypeNominal", - "name": "MediaKind", - "printedName": "Mediasoup.MediaKind", - "usr": "s:9Mediasoup9MediaKindO" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.MediaType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" - } - ] + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" } - ] + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC9MediaTypeO5stateyAC9Mediasoup0C4KindO_tcACmF", - "mangledName": "$s11VideoSDKRTC9MediaTypeO5stateyAC9Mediasoup0C4KindO_tcACmF", - "moduleName": "VideoSDKRTC" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV16textFormatString7options10extensionsACSS_AA04TextG15DecodingOptionsVAA12ExtensionMap_pSgtKcfc", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV16textFormatString7options10extensionsACSS_AA04TextG15DecodingOptionsVAA12ExtensionMap_pSgtKcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" }, { "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "name": "isA", + "printedName": "isA(_:)", "children": [ { "kind": "TypeNominal", @@ -1855,34 +2495,238 @@ }, { "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV3isAySbxmAA7MessageRzlF", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV3isAySbxmAA7MessageRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC9MediaTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s11VideoSDKRTC9MediaTypeO2eeoiySbAC_ACtFZ", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV4hash4intoys6HasherVz_tF", "moduleName": "VideoSDKRTC", - "static": true, - "implicit": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:11VideoSDKRTC9MediaTypeO", - "mangledName": "$s11VideoSDKRTC9MediaTypeO", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "AccessControl" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(messageType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV8register11messageTypeSbAA7Message_pXp_tFZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV8register11messageTypeSbAA7Message_pXp_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "messageType", + "printedName": "messageType(forTypeURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Message.Type?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV11messageType03forG3URLAA7Message_pXpSgSS_tFZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV11messageType03forG3URLAA7Message_pXpSgSS_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "messageType", + "printedName": "messageType(forMessageName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Message.Type?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV11messageType14forMessageNameAA0I0_pXpSgSS_tFZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV11messageType14forMessageNameAA0I0_pXpSgSS_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, { "kind": "Conformance", "name": "Equatable", @@ -1902,93 +2746,180 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "AVFoundation", - "printedName": "AVFoundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, { "kind": "TypeDecl", - "name": "Meeting", - "printedName": "Meeting", + "name": "AnyUnpackError", + "printedName": "AnyUnpackError", "children": [ { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "typeMismatch", + "printedName": "typeMismatch", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AnyUnpackError.Type) -> VideoSDKRTC.AnyUnpackError", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.AnyUnpackError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC7MeetingC2idSSvp", - "mangledName": "$s11VideoSDKRTC7MeetingC2idSSvp", + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO12typeMismatchyA2CmF", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO12typeMismatchyA2CmF", "moduleName": "VideoSDKRTC", "declAttributes": [ - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "malformedWellKnownTypeJSON", + "printedName": "malformedWellKnownTypeJSON", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AnyUnpackError.Type) -> VideoSDKRTC.AnyUnpackError", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.AnyUnpackError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC7MeetingC2idSSvg", - "mangledName": "$s11VideoSDKRTC7MeetingC2idSSvg", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO26malformedWellKnownTypeJSONyA2CmF", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO26malformedWellKnownTypeJSONyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "localParticipant", - "printedName": "localParticipant", + "name": "malformedAnyField", + "printedName": "malformedAnyField", "children": [ { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AnyUnpackError.Type) -> VideoSDKRTC.AnyUnpackError", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.AnyUnpackError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvp", - "mangledName": "$s11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvp", + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO09malformedC5FieldyA2CmF", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO09malformedC5FieldyA2CmF", "moduleName": "VideoSDKRTC", "declAttributes": [ - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + }, + { + "kind": "TypeNominal", + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + } ], - "hasStorage": true, + "declKind": "Func", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -1997,54 +2928,119 @@ "children": [ { "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvg", - "mangledName": "$s11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvg", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO9hashValueSivg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" } ] }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Api", + "printedName": "Google_Protobuf_Api", + "children": [ { "kind": "Var", - "name": "participants", - "printedName": "participants", + "name": "name", + "printedName": "name", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : VideoSDKRTC.Participant]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" - } - ], - "usr": "s:SD" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvp", - "mangledName": "$s11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvp", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvp", "moduleName": "VideoSDKRTC", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], @@ -2057,107 +3053,91 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : VideoSDKRTC.Participant]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" - } - ], - "usr": "s:SD" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvg", - "mangledName": "$s11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvg", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "pubsub", - "printedName": "pubsub", - "children": [ + }, { - "kind": "TypeNominal", - "name": "PubSub", - "printedName": "VideoSDKRTC.PubSub", - "usr": "s:11VideoSDKRTC6PubSubC" - } - ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvp", - "mangledName": "$s11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvp", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "Lazy", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "PubSub", - "printedName": "VideoSDKRTC.PubSub", - "usr": "s:11VideoSDKRTC6PubSubC" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvg", - "mangledName": "$s11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvg", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvM", "moduleName": "VideoSDKRTC", "implicit": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "customVideoMediaStream", - "printedName": "customVideoMediaStream", + "name": "methods", + "printedName": "methods", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Method]", "children": [ { "kind": "TypeNominal", - "name": "CustomRTCMediaStream", - "printedName": "VideoSDKRTC.CustomRTCMediaStream", - "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + "name": "Google_Protobuf_Method", + "printedName": "VideoSDKRTC.Google_Protobuf_Method", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvp", - "mangledName": "$s11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvp", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvp", "moduleName": "VideoSDKRTC", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -2168,497 +3148,828 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Method]", "children": [ { "kind": "TypeNominal", - "name": "CustomRTCMediaStream", - "printedName": "VideoSDKRTC.CustomRTCMediaStream", - "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + "name": "Google_Protobuf_Method", + "printedName": "VideoSDKRTC.Google_Protobuf_Method", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvg", - "mangledName": "$s11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvg", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "join", - "printedName": "join(cameraPosition:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Position", - "printedName": "AVFoundation.AVCaptureDevice.Position", - "usr": "c:@E@AVCaptureDevicePosition" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Method]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Method", + "printedName": "VideoSDKRTC.Google_Protobuf_Method", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC4join14cameraPositionySo015AVCaptureDeviceF0V_tF", - "mangledName": "$s11VideoSDKRTC7MeetingC4join14cameraPositionySo015AVCaptureDeviceF0V_tF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "leave", - "printedName": "leave()", + "kind": "Var", + "name": "options", + "printedName": "options", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC5leaveyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC5leaveyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "end", - "printedName": "end()", + "kind": "Var", + "name": "version", + "printedName": "version", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC3endyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC3endyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "enableWebcam", - "printedName": "enableWebcam(customVideoStream:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "CustomRTCMediaStream", - "printedName": "VideoSDKRTC.CustomRTCMediaStream", - "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC12enableWebcam06customA6StreamyAA014CustomRTCMediaG0CSg_tF", - "mangledName": "$s11VideoSDKRTC7MeetingC12enableWebcam06customA6StreamyAA014CustomRTCMediaG0CSg_tF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "disableWebcam", - "printedName": "disableWebcam()", + "kind": "Var", + "name": "sourceContext", + "printedName": "sourceContext", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC13disableWebcamyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC13disableWebcamyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0Vvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0Vvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "switchWebcam", - "printedName": "switchWebcam()", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0Vvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0Vvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0VvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC12switchWebcamyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC12switchWebcamyyF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "muteMic", - "printedName": "muteMic()", + "kind": "Var", + "name": "hasSourceContext", + "printedName": "hasSourceContext", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC7muteMicyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC7muteMicyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV16hasSourceContextSbvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV16hasSourceContextSbvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "unmuteMic", - "printedName": "unmuteMic()", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV16hasSourceContextSbvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV16hasSourceContextSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC9unmuteMicyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC9unmuteMicyyF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Function", - "name": "startRecording", - "printedName": "startRecording(webhookUrl:)", + "name": "clearSourceContext", + "printedName": "clearSourceContext()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC14startRecording10webhookUrlySS_tF", - "mangledName": "$s11VideoSDKRTC7MeetingC14startRecording10webhookUrlySS_tF", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV18clearSourceContextyyF", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV18clearSourceContextyyF", "moduleName": "VideoSDKRTC", "declAttributes": [ + "Mutating", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "funcSelfKind": "Mutating" }, { - "kind": "Function", - "name": "stopRecording", - "printedName": "stopRecording()", + "kind": "Var", + "name": "mixins", + "printedName": "mixins", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Mixin]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Mixin", + "printedName": "VideoSDKRTC.Google_Protobuf_Mixin", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV" + } + ], + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC13stopRecordingyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC13stopRecordingyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "startLivestream", - "printedName": "startLivestream(outputs:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Mixin]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Mixin", + "printedName": "VideoSDKRTC.Google_Protobuf_Mixin", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[VideoSDKRTC.LivestreamOutput]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "LivestreamOutput", - "printedName": "VideoSDKRTC.LivestreamOutput", - "usr": "s:11VideoSDKRTC16LivestreamOutputV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Mixin]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Mixin", + "printedName": "VideoSDKRTC.Google_Protobuf_Mixin", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV" + } + ], + "usr": "s:Sa" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC15startLivestream7outputsySayAA0E6OutputVG_tF", - "mangledName": "$s11VideoSDKRTC7MeetingC15startLivestream7outputsySayAA0E6OutputVG_tF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "stopLivestream", - "printedName": "stopLivestream()", + "kind": "Var", + "name": "syntax", + "printedName": "syntax", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC14stopLivestreamyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC14stopLivestreamyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addEventListener", - "printedName": "addEventListener(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "MeetingEventListener", - "printedName": "VideoSDKRTC.MeetingEventListener", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC16addEventListeneryyAA0ceF0_pF", - "mangledName": "$s11VideoSDKRTC7MeetingC16addEventListeneryyAA0ceF0_pF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "removeEventListener", - "printedName": "removeEventListener(_:)", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MeetingEventListener", - "printedName": "VideoSDKRTC.MeetingEventListener", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP" + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC19removeEventListeneryyAA0ceF0_pF", - "mangledName": "$s11VideoSDKRTC7MeetingC19removeEventListeneryyAA0ceF0_pF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvp", "moduleName": "VideoSDKRTC", "declAttributes": [ - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Meeting", - "printedName": "VideoSDKRTC.Meeting", - "usr": "s:11VideoSDKRTC7MeetingC" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { "kind": "TypeNominal", - "name": "Meeting", - "printedName": "VideoSDKRTC.Meeting", - "usr": "s:11VideoSDKRTC7MeetingC" + "name": "Google_Protobuf_Api", + "printedName": "VideoSDKRTC.Google_Protobuf_Api", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC2eeoiySbAC_ACtFZ", - "mangledName": "$s11VideoSDKRTC7MeetingC2eeoiySbAC_ACtFZ", + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiVACycfc", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiVACycfc", "moduleName": "VideoSDKRTC", - "static": true, "declAttributes": [ - "Final", "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:11VideoSDKRTC7MeetingC", - "mangledName": "$s11VideoSDKRTC7MeetingC", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "MeetingEventListener", - "printedName": "MeetingEventListener", - "children": [ + "init_kind": "Designated" + }, { - "kind": "Function", - "name": "onMeetingJoined", - "printedName": "onMeetingJoined()", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP02onC6JoinedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP02onC6JoinedyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV16protoMessageNameSSvpZ", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, + "static": true, "declAttributes": [ - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "onMeetingLeft", - "printedName": "onMeetingLeft()", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP02onC4LeftyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP02onC4LeftyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV17_protobuf_nameMapAA05_NameH0VvpZ", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, + "static": true, "declAttributes": [ - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { "kind": "Function", - "name": "onParticipantJoined", - "printedName": "onParticipantJoined(_:)", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", @@ -2667,28 +3978,29 @@ }, { "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onParticipantJoinedyyAA0G0CF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onParticipantJoinedyyAA0G0CF", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "Mutating", + "AccessControl" ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { "kind": "Function", - "name": "onParticipantLeft", - "printedName": "onParticipantLeft(_:)", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", @@ -2697,135 +4009,219 @@ }, { "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP17onParticipantLeftyyAA0G0CF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP17onParticipantLeftyyAA0G0CF", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV8traverse7visitoryxz_tKAA7VisitorRzlF", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ], - "reqNewWitnessTableEntry": true, + "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "onRecordingStarted", - "printedName": "onRecordingStarted()", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP18onRecordingStartedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP18onRecordingStartedyyF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onRecordingStoppped", - "printedName": "onRecordingStoppped()", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Google_Protobuf_Api", + "printedName": "VideoSDKRTC.Google_Protobuf_Api", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Api", + "printedName": "VideoSDKRTC.Google_Protobuf_Api", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onRecordingStopppedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onRecordingStopppedyyF", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV2eeoiySbAC_ACtFZ", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, + "static": true, "declAttributes": [ - "RawDocComment" + "AccessControl" ], - "reqNewWitnessTableEntry": true, + "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "onLivestreamStarted", - "printedName": "onLivestreamStarted()", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onLivestreamStartedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onLivestreamStartedyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV9hashValueSivp", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { - "kind": "Function", - "name": "onLivestreamStopped", - "printedName": "onLivestreamStopped()", + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Method", + "printedName": "Google_Protobuf_Method", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onLivestreamStoppedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onLivestreamStoppedyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvp", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onSpeakerChanged", - "printedName": "onSpeakerChanged(participantId:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "String", @@ -2833,36 +4229,61 @@ "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP16onSpeakerChanged13participantIdySSSg_tF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP16onSpeakerChanged13participantIdySSSg_tF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "onMicRequested", - "printedName": "onMicRequested(participantId:accept:reject:)", + "kind": "Var", + "name": "requestTypeURL", + "printedName": "requestTypeURL", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -2871,12 +4292,17 @@ "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -2885,70 +4311,85 @@ }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Void", "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "onWebcamRequested", - "printedName": "onWebcamRequested(participantId:accept:reject:)", + "kind": "Var", + "name": "requestStreaming", + "printedName": "requestStreaming", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -2957,228 +4398,66 @@ }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Void", "printedName": "()" } - ] - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onMeetingJoined", - "printedName": "onMeetingJoined()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE02onC6JoinedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE02onC6JoinedyyF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onMeetingLeft", - "printedName": "onMeetingLeft()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE02onC4LeftyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE02onC4LeftyyF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onParticipantJoined", - "printedName": "onParticipantJoined(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onParticipantJoinedyyAA0G0CF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onParticipantJoinedyyAA0G0CF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onParticipantLeft", - "printedName": "onParticipantLeft(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE17onParticipantLeftyyAA0G0CF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE17onParticipantLeftyyAA0G0CF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onRecordingStarted", - "printedName": "onRecordingStarted()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE18onRecordingStartedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE18onRecordingStartedyyF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onRecordingStoppped", - "printedName": "onRecordingStoppped()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onRecordingStopppedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onRecordingStopppedyyF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "onLivestreamStarted", - "printedName": "onLivestreamStarted()", + "kind": "Var", + "name": "responseTypeURL", + "printedName": "responseTypeURL", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStartedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStartedyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvp", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onLivestreamStopped", - "printedName": "onLivestreamStopped()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStoppedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStoppedyyF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onSpeakerChanged", - "printedName": "onSpeakerChanged(participantId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -3187,33 +4466,23 @@ "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE16onSpeakerChanged13participantIdySSSg_tF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE16onSpeakerChanged13participantIdySSSg_tF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onMicRequested", - "printedName": "onMicRequested(participantId:accept:reject:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "String", @@ -3221,80 +4490,183 @@ "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "responseStreaming", + "printedName": "responseStreaming", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" } - ] - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "onWebcamRequested", - "printedName": "onWebcamRequested(participantId:accept:reject:)", + "kind": "Var", + "name": "options", + "printedName": "options", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -3303,120 +4675,65 @@ }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Void", "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Participant", - "printedName": "Participant", - "children": [ + ] + }, { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "syntax", + "printedName": "syntax", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11ParticipantC2idSSvp", - "mangledName": "$s11VideoSDKRTC11ParticipantC2idSSvp", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "HasInitialValue", "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], @@ -3429,87 +4746,82 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11ParticipantC2idSSvg", - "mangledName": "$s11VideoSDKRTC11ParticipantC2idSSvg", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "displayName", - "printedName": "displayName", - "children": [ + }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC11ParticipantC11displayNameSSvp", - "mangledName": "$s11VideoSDKRTC11ParticipantC11displayNameSSvp", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11ParticipantC11displayNameSSvg", - "mangledName": "$s11VideoSDKRTC11ParticipantC11displayNameSSvg", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvM", "moduleName": "VideoSDKRTC", "implicit": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "videoQuality", - "printedName": "videoQuality", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovp", - "mangledName": "$s11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovp", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvp", "moduleName": "VideoSDKRTC", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -3520,42 +4832,107 @@ "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovg", - "mangledName": "$s11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovg", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Method", + "printedName": "VideoSDKRTC.Google_Protobuf_Method", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodVACycfc", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "isLocal", - "printedName": "isLocal", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11ParticipantC7isLocalSbvp", - "mangledName": "$s11VideoSDKRTC11ParticipantC7isLocalSbvp", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV16protoMessageNameSSvpZ", "moduleName": "VideoSDKRTC", + "static": true, "declAttributes": [ + "HasInitialValue", "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -3565,57 +4942,46 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11ParticipantC7isLocalSbvg", - "mangledName": "$s11VideoSDKRTC11ParticipantC7isLocalSbvg", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV16protoMessageNameSSvgZ", "moduleName": "VideoSDKRTC", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "streams", - "printedName": "streams", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : VideoSDKRTC.MediaStream]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" - } - ], - "usr": "s:SD" + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvp", - "mangledName": "$s11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvp", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV17_protobuf_nameMapAA05_NameH0VvpZ", "moduleName": "VideoSDKRTC", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -3625,185 +4991,230 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : VideoSDKRTC.MediaStream]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" - } - ], - "usr": "s:SD" + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvg", - "mangledName": "$s11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvg", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV17_protobuf_nameMapAA05_NameH0VvgZ", "moduleName": "VideoSDKRTC", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Function", - "name": "enableMic", - "printedName": "enableMic()", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC9enableMicyyF", - "mangledName": "$s11VideoSDKRTC11ParticipantC9enableMicyyF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "disableMic", - "printedName": "disableMic()", - "children": [ + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC10disableMicyyF", - "mangledName": "$s11VideoSDKRTC11ParticipantC10disableMicyyF", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "Mutating", + "AccessControl" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "throwing": true, + "funcSelfKind": "Mutating" }, { "kind": "Function", - "name": "enableWebcam", - "printedName": "enableWebcam()", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC12enableWebcamyyF", - "mangledName": "$s11VideoSDKRTC11ParticipantC12enableWebcamyyF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "disableWebcam", - "printedName": "disableWebcam()", - "children": [ + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC13disableWebcamyyF", - "mangledName": "$s11VideoSDKRTC11ParticipantC13disableWebcamyyF", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV8traverse7visitoryxz_tKAA7VisitorRzlF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ], "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "remove", - "printedName": "remove()", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC6removeyyF", - "mangledName": "$s11VideoSDKRTC11ParticipantC6removeyyF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addStream", - "printedName": "addStream(_:)", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Google_Protobuf_Method", + "printedName": "VideoSDKRTC.Google_Protobuf_Method", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV" }, { "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" + "name": "Google_Protobuf_Method", + "printedName": "VideoSDKRTC.Google_Protobuf_Method", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC9addStreamyyAA05MediaE0CF", - "mangledName": "$s11VideoSDKRTC11ParticipantC9addStreamyyAA05MediaE0CF", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV2eeoiySbAC_ACtFZ", "moduleName": "VideoSDKRTC", + "static": true, "declAttributes": [ - "RawDocComment" + "AccessControl" ], "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "removeStream", - "printedName": "removeStream(_:)", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.MediaStream?", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Mixin", + "printedName": "Google_Protobuf_Mixin", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -3811,69 +5222,377 @@ "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC12removeStreamyAA05MediaE0CSgSSF", - "mangledName": "$s11VideoSDKRTC11ParticipantC12removeStreamyAA05MediaE0CSgSSF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvp", "moduleName": "VideoSDKRTC", "declAttributes": [ - "DiscardableResult", + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "removeAllStreams", - "printedName": "removeAllStreams()", + "kind": "Var", + "name": "root", + "printedName": "root", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC16removeAllStreamsyyF", - "mangledName": "$s11VideoSDKRTC11ParticipantC16removeAllStreamsyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "setQuality", - "printedName": "setQuality(_:)", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "Google_Protobuf_Mixin", + "printedName": "VideoSDKRTC.Google_Protobuf_Mixin", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC10setQualityyyAA0aE0OF", - "mangledName": "$s11VideoSDKRTC11ParticipantC10setQualityyyAA0aE0OF", + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinVACycfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinVACycfc", "moduleName": "VideoSDKRTC", "declAttributes": [ - "RawDocComment" + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { "kind": "Function", - "name": "addEventListener", - "printedName": "addEventListener(_:)", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", @@ -3882,25 +5601,29 @@ }, { "kind": "TypeNominal", - "name": "ParticipantEventListener", - "printedName": "VideoSDKRTC.ParticipantEventListener", - "usr": "s:11VideoSDKRTC24ParticipantEventListenerP" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC16addEventListeneryyAA0ceF0_pF", - "mangledName": "$s11VideoSDKRTC11ParticipantC16addEventListeneryyAA0ceF0_pF", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "Mutating", + "AccessControl" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "throwing": true, + "funcSelfKind": "Mutating" }, { "kind": "Function", - "name": "removeEventListener", - "printedName": "removeEventListener(_:)", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", @@ -3909,19 +5632,22 @@ }, { "kind": "TypeNominal", - "name": "ParticipantEventListener", - "printedName": "VideoSDKRTC.ParticipantEventListener", - "usr": "s:11VideoSDKRTC24ParticipantEventListenerP" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC19removeEventListeneryyAA0ceF0_pF", - "mangledName": "$s11VideoSDKRTC11ParticipantC19removeEventListeneryyAA0ceF0_pF", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV8traverse7visitoryxz_tKAA7VisitorRzlF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ], "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -3937,39 +5663,121 @@ }, { "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "name": "Google_Protobuf_Mixin", + "printedName": "VideoSDKRTC.Google_Protobuf_Mixin", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV" }, { "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "name": "Google_Protobuf_Mixin", + "printedName": "VideoSDKRTC.Google_Protobuf_Mixin", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC2eeoiySbAC_ACtFZ", - "mangledName": "$s11VideoSDKRTC11ParticipantC2eeoiySbAC_ACtFZ", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV2eeoiySbAC_ACtFZ", "moduleName": "VideoSDKRTC", "static": true, "declAttributes": [ - "Final", "AccessControl" ], "isFromExtension": true, "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Class", - "usr": "s:11VideoSDKRTC11ParticipantC", - "mangledName": "$s11VideoSDKRTC11ParticipantC", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV", "moduleName": "VideoSDKRTC", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasMissingDesignatedInitializers": true, "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, { "kind": "Conformance", "name": "Equatable", @@ -3991,13 +5799,13 @@ }, { "kind": "TypeDecl", - "name": "ParticipantEventListener", - "printedName": "ParticipantEventListener", + "name": "APIDoubleObserverMetricHandle", + "printedName": "APIDoubleObserverMetricHandle", "children": [ { "kind": "Function", - "name": "onStreamEnabled", - "printedName": "onStreamEnabled(_:forParticipant:)", + "name": "observe", + "printedName": "observe(value:)", "children": [ { "kind": "TypeNominal", @@ -4006,34 +5814,53 @@ }, { "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC24ParticipantEventListenerP15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", - "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerP15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", + "usr": "s:11VideoSDKRTC29APIDoubleObserverMetricHandleP7observe5valueySd_tF", + "mangledName": "$s11VideoSDKRTC29APIDoubleObserverMetricHandleP7observe5valueySd_tF", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.APIDoubleObserverMetricHandle>", + "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC29APIDoubleObserverMetricHandleP", + "mangledName": "$s11VideoSDKRTC29APIDoubleObserverMetricHandleP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "APIIntObserverMetricHandle", + "printedName": "APIIntObserverMetricHandle", + "children": [ { "kind": "Function", - "name": "onStreamDisabled", - "printedName": "onStreamDisabled(_:forParticipant:)", + "name": "observe", + "printedName": "observe(value:)", "children": [ { "kind": "TypeNominal", @@ -4042,120 +5869,31 @@ }, { "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC24ParticipantEventListenerP16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", - "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerP16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", + "usr": "s:11VideoSDKRTC26APIIntObserverMetricHandleP7observe5valueySi_tF", + "mangledName": "$s11VideoSDKRTC26APIIntObserverMetricHandleP7observe5valueySi_tF", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.APIIntObserverMetricHandle>", + "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onStreamEnabled", - "printedName": "onStreamEnabled(_:forParticipant:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC24ParticipantEventListenerPAAE15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", - "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerPAAE15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onStreamDisabled", - "printedName": "onStreamDisabled(_:forParticipant:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC24ParticipantEventListenerPAAE16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", - "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerPAAE16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" } ], "declKind": "Protocol", - "usr": "s:11VideoSDKRTC24ParticipantEventListenerP", - "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerP", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + "usr": "s:11VideoSDKRTC26APIIntObserverMetricHandleP", + "mangledName": "$s11VideoSDKRTC26APIIntObserverMetricHandleP", "moduleName": "VideoSDKRTC", "declAttributes": [ + "AccessControl", "RawDocComment" ] }, @@ -4171,99 +5909,95 @@ }, { "kind": "TypeDecl", - "name": "PubSub", - "printedName": "PubSub", + "name": "ArrayWithCapacity", + "printedName": "ArrayWithCapacity", "children": [ { - "kind": "Function", - "name": "publish", - "printedName": "publish(topic:message:options:)", + "kind": "Var", + "name": "capacity", + "printedName": "capacity", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV8capacitySivp", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV8capacitySivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "hasDefaultArg": true, - "usr": "s:SD" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV8capacitySivg", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV8capacitySivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC6PubSubC7publish5topic7message7optionsySS_SSSDySSypGtF", - "mangledName": "$s11VideoSDKRTC6PubSubC7publish5topic7message7optionsySS_SSSDySSypGtF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "subscribe", - "printedName": "subscribe(topic:forListener:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(capacity:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" }, { "kind": "TypeNominal", - "name": "PubSubMessageListener", - "printedName": "VideoSDKRTC.PubSubMessageListener", - "usr": "s:11VideoSDKRTC21PubSubMessageListenerP" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC6PubSubC9subscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", - "mangledName": "$s11VideoSDKRTC6PubSubC9subscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV8capacityACyxGSi_tcfc", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV8capacityACyxGSi_tcfc", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "unsubscribe", - "printedName": "unsubscribe(topic:forListener:)", + "name": "append", + "printedName": "append(_:)", "children": [ { "kind": "TypeNominal", @@ -4272,110 +6006,42 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "PubSubMessageListener", - "printedName": "VideoSDKRTC.PubSubMessageListener", - "usr": "s:11VideoSDKRTC21PubSubMessageListenerP" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC6PubSubC11unsubscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", - "mangledName": "$s11VideoSDKRTC6PubSubC11unsubscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV6appendyyxF", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV6appendyyxF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "Mutating", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "funcSelfKind": "Mutating" }, - { - "kind": "Function", - "name": "getMessagesForTopic", - "printedName": "getMessagesForTopic(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[VideoSDKRTC.PubSubMessage]", - "children": [ - { - "kind": "TypeNominal", - "name": "PubSubMessage", - "printedName": "VideoSDKRTC.PubSubMessage", - "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC6PubSubC19getMessagesForTopicySayAA0cD7MessageCGSSF", - "mangledName": "$s11VideoSDKRTC6PubSubC19getMessagesForTopicySayAA0cD7MessageCGSSF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:11VideoSDKRTC6PubSubC", - "mangledName": "$s11VideoSDKRTC6PubSubC", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "PubSubMessage", - "printedName": "PubSubMessage", - "children": [ { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "startIndex", + "printedName": "startIndex", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvp", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvp", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV10startIndexSivp", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV10startIndexSivp", "moduleName": "VideoSDKRTC", "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -4384,84 +6050,42 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvg", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvg", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV10startIndexSivg", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV10startIndexSivg", "moduleName": "VideoSDKRTC", - "implicit": true, + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvs", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvs", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvM", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvM", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "topic", - "printedName": "topic", + "name": "endIndex", + "printedName": "endIndex", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvp", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvp", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV8endIndexSivp", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV8endIndexSivp", "moduleName": "VideoSDKRTC", "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -4470,84 +6094,49 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvg", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvg", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV8endIndexSivg", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV8endIndexSivg", "moduleName": "VideoSDKRTC", - "implicit": true, + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvs", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvs", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvM", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvM", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "message", - "printedName": "message", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvp", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvp", + "declKind": "Subscript", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityVyxSicip", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityVyxSicip", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -4556,16 +6145,23 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvg", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvg", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityVyxSicig", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityVyxSicig", "moduleName": "VideoSDKRTC", - "implicit": true, + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isFromExtension": true, "accessorKind": "get" }, { @@ -4580,16 +6176,23 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvs", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvs", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityVyxSicis", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityVyxSicis", "moduleName": "VideoSDKRTC", - "implicit": true, + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isFromExtension": true, "accessorKind": "set" }, { @@ -4601,209 +6204,334 @@ "kind": "TypeNominal", "name": "Void", "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvM", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvM", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityVyxSiciM", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityVyxSiciM", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "implicit": true, + "isFromExtension": true, "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "senderId", - "printedName": "senderId", + "kind": "Function", + "name": "index", + "printedName": "index(after:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvp", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvp", + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV5index5afterS2i_tF", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV5index5afterS2i_tF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvg", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvg", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "get" - }, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvs", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvs", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Slice", + "printedName": "Swift.Slice>", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" + } + ], + "usr": "s:s5SliceV" } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvM", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvM", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:SM", + "mangledName": "$sSM" }, { - "kind": "Var", - "name": "senderName", - "printedName": "senderName", + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvp", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvp", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvg", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvg", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator>", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Slice", + "printedName": "Swift.Slice>", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" + } + ], + "usr": "s:s5SliceV" } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvs", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvs", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices>", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" + } + ], + "usr": "s:SI" } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvM", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvM", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:Sl", + "mangledName": "$sSl" }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator>", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AsynchronousMetricStorage", + "printedName": "AsynchronousMetricStorage", + "children": [ { "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", + "name": "registeredReader", + "printedName": "registeredReader", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "RegisteredReader", + "printedName": "VideoSDKRTC.RegisteredReader", + "usr": "s:11VideoSDKRTC16RegisteredReaderC" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvp", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvp", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC16registeredReaderAA010RegisteredG0Cvp", + "mangledName": "$s11VideoSDKRTC25AsynchronousMetricStorageC16registeredReaderAA010RegisteredG0Cvp", "moduleName": "VideoSDKRTC", "declAttributes": [ "HasStorage", - "AccessControl", - "RawDocComment" + "SetterAccess", + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -4814,641 +6542,740 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "RegisteredReader", + "printedName": "VideoSDKRTC.RegisteredReader", + "usr": "s:11VideoSDKRTC16RegisteredReaderC" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvg", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvg", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC16registeredReaderAA010RegisteredG0Cvg", + "mangledName": "$s11VideoSDKRTC25AsynchronousMetricStorageC16registeredReaderAA010RegisteredG0Cvg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "metricDescriptor", + "printedName": "metricDescriptor", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvs", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvs", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "set" - }, + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC16metricDescriptorAA0dG0Vvp", + "mangledName": "$s11VideoSDKRTC25AsynchronousMetricStorageC16metricDescriptorAA0dG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvM", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvM", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC16metricDescriptorAA0dG0Vvg", + "mangledName": "$s11VideoSDKRTC25AsynchronousMetricStorageC16metricDescriptorAA0dG0Vvg", "moduleName": "VideoSDKRTC", "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Function", + "name": "collect", + "printedName": "collect(resource:scope:startEpochNanos:epochNanos:)", "children": [ { "kind": "TypeNominal", - "name": "PubSubMessage", - "printedName": "VideoSDKRTC.PubSubMessage", - "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage" + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], - "declKind": "Constructor", - "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage(im)init", - "mangledName": "$s11VideoSDKRTC13PubSubMessageCACycfc", + "declKind": "Func", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC7collect8resource5scope15startEpochNanos05epochK0AA06StableD4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", + "mangledName": "$s11VideoSDKRTC25AsynchronousMetricStorageC7collect8resource5scope15startEpochNanos05epochK0AA06StableD4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", "moduleName": "VideoSDKRTC", - "overriding": true, - "implicit": true, - "objc_name": "init", "declAttributes": [ - "Dynamic", - "ObjC", - "Override" + "AccessControl" ], - "init_kind": "Designated" + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEmpty", + "printedName": "isEmpty()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC7isEmptySbyF", + "mangledName": "$s11VideoSDKRTC25AsynchronousMetricStorageC7isEmptySbyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC", + "mangledName": "$s11VideoSDKRTC25AsynchronousMetricStorageC", "moduleName": "VideoSDKRTC", "declAttributes": [ - "AccessControl", - "ObjC" + "AccessControl" ], - "superclassUsr": "c:objc(cs)NSObject", "hasMissingDesignatedInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "name": "MetricStorage", + "printedName": "MetricStorage", + "usr": "s:11VideoSDKRTC13MetricStorageP", + "mangledName": "$s11VideoSDKRTC13MetricStorageP" } ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "TypeDecl", - "name": "PubSubMessageListener", - "printedName": "PubSubMessageListener", + "name": "AsyncMessageSequence", + "printedName": "AsyncMessageSequence", "children": [ { - "kind": "Function", - "name": "onMessageReceived", - "printedName": "onMessageReceived(_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(base:extensions:partial:options:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "AsyncMessageSequence", + "printedName": "VideoSDKRTC.AsyncMessageSequence<τ_0_0, τ_0_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV" }, { "kind": "TypeNominal", - "name": "PubSubMessage", - "printedName": "VideoSDKRTC.PubSubMessage", - "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC21PubSubMessageListenerP02onE8ReceivedyyAA0cdE0CF", - "mangledName": "$s11VideoSDKRTC21PubSubMessageListenerP02onE8ReceivedyyAA0cdE0CF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.PubSubMessageListener>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV4base10extensions7partial7optionsACyxq_Gx_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtcfc", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV4base10extensions7partial7optionsACyxq_Gx_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", "RawDocComment" ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:11VideoSDKRTC21PubSubMessageListenerP", - "mangledName": "$s11VideoSDKRTC21PubSubMessageListenerP", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Mediasoup", - "printedName": "Mediasoup", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Mediasoup", - "printedName": "Mediasoup", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "VideosdkWebSocket", - "printedName": "VideosdkWebSocket", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "VideoQuality", - "printedName": "VideoQuality", - "children": [ + "init_kind": "Designated" + }, { - "kind": "Var", - "name": "high", - "printedName": "high", + "kind": "TypeDecl", + "name": "AsyncIterator", + "printedName": "AsyncIterator", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.VideoQuality.Type) -> VideoSDKRTC.VideoQuality", + "kind": "Var", + "name": "iterator", + "printedName": "iterator", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "Optional", + "printedName": "τ_0_0.AsyncIterator?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.AsyncIterator" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvp", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "UsableFromInline" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.AsyncIterator?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.AsyncIterator" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvg", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.VideoQuality.Type", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.AsyncIterator?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.AsyncIterator" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvs", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvM", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "implicit": true, + "intro_Macosx": "10.15", + "intro_iOS": "13.0", + "intro_tvOS": "13.0", + "intro_watchOS": "6.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available" + ], + "accessorKind": "_modify" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC0A7QualityO4highyA2CmF", - "mangledName": "$s11VideoSDKRTC0A7QualityO4highyA2CmF", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Var", - "name": "medium", - "printedName": "medium", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.VideoQuality.Type) -> VideoSDKRTC.VideoQuality", + "kind": "Var", + "name": "extensions", + "printedName": "extensions", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" - }, + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV10extensionsAA12ExtensionMap_pSgvp", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV10extensionsAA12ExtensionMap_pSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "UsableFromInline" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.VideoQuality.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV10extensionsAA12ExtensionMap_pSgvg", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV10extensionsAA12ExtensionMap_pSgvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC0A7QualityO6mediumyA2CmF", - "mangledName": "$s11VideoSDKRTC0A7QualityO6mediumyA2CmF", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Var", - "name": "low", - "printedName": "low", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.VideoQuality.Type) -> VideoSDKRTC.VideoQuality", + "kind": "Var", + "name": "partial", + "printedName": "partial", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" - }, + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7partialSbvp", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7partialSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "UsableFromInline" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.VideoQuality.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7partialSbvg", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7partialSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC0A7QualityO3lowyA2CmF", - "mangledName": "$s11VideoSDKRTC0A7QualityO3lowyA2CmF", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.VideoQuality?", + "kind": "Var", + "name": "options", + "printedName": "options", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" } ], - "usr": "s:Sq" + "declKind": "Var", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7optionsAA21BinaryDecodingOptionsVvp", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7optionsAA21BinaryDecodingOptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "UsableFromInline" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7optionsAA21BinaryDecodingOptionsVvg", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7optionsAA21BinaryDecodingOptionsVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:11VideoSDKRTC0A7QualityO8rawValueACSgSS_tcfc", - "mangledName": "$s11VideoSDKRTC0A7QualityO8rawValueACSgSS_tcfc", - "moduleName": "VideoSDKRTC", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC0A7QualityO8rawValueSSvp", - "mangledName": "$s11VideoSDKRTC0A7QualityO8rawValueSSvp", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessors": [ + "kind": "Function", + "name": "nextVarInt", + "printedName": "nextVarInt()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt64?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV10nextVarInts6UInt64VSgyYaKF", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV10nextVarInts6UInt64VSgyYaKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "Inlinable", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Function", + "name": "readBytes", + "printedName": "readBytes(_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC0A7QualityO8rawValueSSvg", - "mangledName": "$s11VideoSDKRTC0A7QualityO8rawValueSSvg", + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV9readBytesySays5UInt8VGSiYaKF", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV9readBytesySays5UInt8VGSiYaKF", "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allCases", - "printedName": "allCases", - "children": [ + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "UsableFromInline", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[VideoSDKRTC.VideoQuality]", + "kind": "Function", + "name": "next", + "printedName": "next()", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "Optional", + "printedName": "τ_0_1?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sa" + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV4nextq_SgyYaKF", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV4nextq_SgyYaKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "Inlinable", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "Mutating" } ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC0A7QualityO8allCasesSayACGvpZ", - "mangledName": "$s11VideoSDKRTC0A7QualityO8allCasesSayACGvpZ", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV", "moduleName": "VideoSDKRTC", - "static": true, - "implicit": true, - "accessors": [ + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Conformance", + "name": "AsyncIteratorProtocol", + "printedName": "AsyncIteratorProtocol", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[VideoSDKRTC.VideoQuality]", + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "GenericTypeParam", + "printedName": "τ_0_1" } - ], - "usr": "s:Sa" + ] } ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC0A7QualityO8allCasesSayACGvgZ", - "mangledName": "$s11VideoSDKRTC0A7QualityO8allCasesSayACGvgZ", - "moduleName": "VideoSDKRTC", - "static": true, - "implicit": true, - "accessorKind": "get" + "usr": "s:ScI", + "mangledName": "$sScI" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" } ] + }, + { + "kind": "Function", + "name": "makeAsyncIterator", + "printedName": "makeAsyncIterator()", + "children": [ + { + "kind": "TypeNominal", + "name": "AsyncIterator", + "printedName": "VideoSDKRTC.AsyncMessageSequence<τ_0_0, τ_0_1>.AsyncIterator", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV04makeC8IteratorAC0cG0Vyxq__GyF", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV04makeC8IteratorAC0cG0Vyxq__GyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } ], - "declKind": "Enum", - "usr": "s:11VideoSDKRTC0A7QualityO", - "mangledName": "$s11VideoSDKRTC0A7QualityO", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "intro_Macosx": "10.15", + "intro_iOS": "13.0", + "intro_tvOS": "13.0", + "intro_watchOS": "6.0", "declAttributes": [ "AccessControl", + "Available", + "Available", + "Available", + "Available", "RawDocComment" ], - "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "name": "AsyncSequence", + "printedName": "AsyncSequence", "children": [ { "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "name": "AsyncIterator", + "printedName": "AsyncIterator", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AsyncIterator", + "printedName": "VideoSDKRTC.AsyncMessageSequence<τ_0_0, τ_0_1>.AsyncIterator", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV" } ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ + }, { "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[VideoSDKRTC.VideoQuality]", - "children": [ - { - "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" - } - ], - "usr": "s:Sa" + "name": "GenericTypeParam", + "printedName": "τ_0_1" } ] } ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" + "usr": "s:Sci", + "mangledName": "$sSci" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" } ] }, @@ -5462,244 +7289,301 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, { "kind": "TypeDecl", - "name": "VideoSDK", - "printedName": "VideoSDK", + "name": "AttributeProcessorProtocol", + "printedName": "AttributeProcessorProtocol", "children": [ { "kind": "Function", - "name": "config", - "printedName": "config(token:)", + "name": "process", + "printedName": "process(incoming:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC0A3SDKC6config5tokenySS_tFZ", - "mangledName": "$s11VideoSDKRTC0A3SDKC6config5tokenySS_tFZ", + "usr": "s:11VideoSDKRTC26AttributeProcessorProtocolP7process8incomingSDySSAA0C5ValueOGAH_tF", + "mangledName": "$s11VideoSDKRTC26AttributeProcessorProtocolP7process8incomingSDySSAA0C5ValueOGAH_tF", "moduleName": "VideoSDKRTC", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AttributeProcessorProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC26AttributeProcessorProtocolP", + "mangledName": "$s11VideoSDKRTC26AttributeProcessorProtocolP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "AttributeProcessor", + "printedName": "AttributeProcessor", + "children": [ { "kind": "Function", - "name": "initMeeting", - "printedName": "initMeeting(meetingId:participantId:participantName:micEnabled:webcamEnabled:customCameraVideoStream:)", + "name": "then", + "printedName": "then(other:)", "children": [ { "kind": "TypeNominal", - "name": "Meeting", - "printedName": "VideoSDKRTC.Meeting", - "usr": "s:11VideoSDKRTC7MeetingC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.CustomRTCMediaStream?", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomRTCMediaStream", - "printedName": "VideoSDKRTC.CustomRTCMediaStream", - "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC0A3SDKC11initMeeting9meetingId011participantG00H4Name10micEnabled06webcamK0012customCameraA6StreamAA0E0CSS_S2SS2bAA014CustomRTCMediaO0CSgtFZ", - "mangledName": "$s11VideoSDKRTC0A3SDKC11initMeeting9meetingId011participantG00H4Name10micEnabled06webcamK0012customCameraA6StreamAA0E0CSS_S2SS2bAA014CustomRTCMediaO0CSgtFZ", + "usr": "s:11VideoSDKRTC18AttributeProcessorC4then5otherA2C_tF", + "mangledName": "$s11VideoSDKRTC18AttributeProcessorC4then5otherA2C_tF", "moduleName": "VideoSDKRTC", - "static": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "createCameraVideoTrack", - "printedName": "createCameraVideoTrack(encoderConfig:facingMode:multiStream:)", + "name": "process", + "printedName": "process(incoming:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "CustomRTCMediaStream", - "printedName": "VideoSDKRTC.CustomRTCMediaStream", - "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "usr": "s:Sq" + "usr": "s:SD" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig?", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18AttributeProcessorC7process8incomingSDySSAA0C5ValueOGAH_tF", + "mangledName": "$s11VideoSDKRTC18AttributeProcessorC7process8incomingSDySSAA0C5ValueOGAH_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "filterByKeyName", + "printedName": "filterByKeyName(nameFilter:)", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "AVFoundation.AVCaptureDevice.Position?", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Swift.Bool", "children": [ { "kind": "TypeNominal", - "name": "Position", - "printedName": "AVFoundation.AVCaptureDevice.Position", - "usr": "c:@E@AVCaptureDevicePosition" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18AttributeProcessorC15filterByKeyName10nameFilterACSbSSc_tFZ", + "mangledName": "$s11VideoSDKRTC18AttributeProcessorC15filterByKeyName10nameFilterACSbSSc_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "append", + "printedName": "append(attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:SD" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC0A3SDKC012createCameraA5Track13encoderConfig10facingMode11multiStreamAA014CustomRTCMediaL0CSgAA0mafH0OSg_So23AVCaptureDevicePositionVSgSbSgtKFZ", - "mangledName": "$s11VideoSDKRTC0A3SDKC012createCameraA5Track13encoderConfig10facingMode11multiStreamAA014CustomRTCMediaL0CSgAA0mafH0OSg_So23AVCaptureDevicePositionVSgSbSgtKFZ", + "usr": "s:11VideoSDKRTC18AttributeProcessorC6append10attributesACSDySSAA0C5ValueOG_tFZ", + "mangledName": "$s11VideoSDKRTC18AttributeProcessorC6append10attributesACSDySSAA0C5ValueOG_tFZ", "moduleName": "VideoSDKRTC", "static": true, "declAttributes": [ "Final", "AccessControl" ], - "throwing": true, "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "s:11VideoSDKRTC0A3SDKC", - "mangledName": "$s11VideoSDKRTC0A3SDKC", + "usr": "s:11VideoSDKRTC18AttributeProcessorC", + "mangledName": "$s11VideoSDKRTC18AttributeProcessorC", "moduleName": "VideoSDKRTC", "declAttributes": [ - "AccessControl", - "Final" + "AccessControl" ], - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AttributeProcessorProtocol", + "printedName": "AttributeProcessorProtocol", + "usr": "s:11VideoSDKRTC26AttributeProcessorProtocolP", + "mangledName": "$s11VideoSDKRTC26AttributeProcessorProtocolP" + } + ] }, { "kind": "TypeDecl", - "name": "Data", - "printedName": "Data", + "name": "JoinedAttributeProcessor", + "printedName": "JoinedAttributeProcessor", "children": [ { "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString()", + "name": "process", + "printedName": "process(incoming:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV11VideoSDKRTCE12toJSONStringSSyF", - "mangledName": "$s10Foundation4DataV11VideoSDKRTCE12toJSONStringSSyF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "toJSON", - "printedName": "toJSON()", - "children": [ + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + }, { "kind": "TypeNominal", "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", @@ -5709,349 +7593,566 @@ }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], "usr": "s:SD" } ], "declKind": "Func", - "usr": "s:10Foundation4DataV11VideoSDKRTCE6toJSONSDySSypGyF", - "mangledName": "$s10Foundation4DataV11VideoSDKRTCE6toJSONSDySSypGyF", + "usr": "s:11VideoSDKRTC24JoinedAttributeProcessorC7process8incomingSDySSAA0D5ValueOGAH_tF", + "mangledName": "$s11VideoSDKRTC24JoinedAttributeProcessorC7process8incomingSDySSAA0D5ValueOGAH_tF", "moduleName": "VideoSDKRTC", + "overriding": true, "declAttributes": [ - "RawDocComment" + "AccessControl", + "Override" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "toJSONArray", - "printedName": "toJSONArray()", + "name": "then", + "printedName": "then(other:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sa" + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + }, + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" } ], "declKind": "Func", - "usr": "s:10Foundation4DataV11VideoSDKRTCE11toJSONArraySayypGyF", - "mangledName": "$s10Foundation4DataV11VideoSDKRTCE11toJSONArraySayypGyF", + "usr": "s:11VideoSDKRTC24JoinedAttributeProcessorC4then5otherAA0dE0CAG_tF", + "mangledName": "$s11VideoSDKRTC24JoinedAttributeProcessorC4then5otherAA0dE0CAG_tF", "moduleName": "VideoSDKRTC", + "overriding": true, "declAttributes": [ - "RawDocComment" + "AccessControl", + "Override" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:10Foundation4DataV", - "mangledName": "$s10Foundation4DataV", - "moduleName": "Foundation", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ + }, { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", + "kind": "Function", + "name": "prepend", + "printedName": "prepend(processor:)", "children": [ { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSData", - "printedName": "Foundation.NSData", - "usr": "c:objc(cs)NSData" - } - ] + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + }, + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" } ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + "declKind": "Func", + "usr": "s:11VideoSDKRTC24JoinedAttributeProcessorC7prepend9processorAA0dE0CAG_tF", + "mangledName": "$s11VideoSDKRTC24JoinedAttributeProcessorC7prepend9processorAA0dE0CAG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC24JoinedAttributeProcessorC", + "mangledName": "$s11VideoSDKRTC24JoinedAttributeProcessorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC18AttributeProcessorC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.AttributeProcessor" + ], + "conformances": [ { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, + "name": "AttributeProcessorProtocol", + "printedName": "AttributeProcessorProtocol", + "usr": "s:11VideoSDKRTC26AttributeProcessorProtocolP", + "mangledName": "$s11VideoSDKRTC26AttributeProcessorProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoopAttributeProcessor", + "printedName": "NoopAttributeProcessor", + "children": [ { - "kind": "Conformance", - "name": "RandomAccessCollection", - "printedName": "RandomAccessCollection", + "kind": "Function", + "name": "process", + "printedName": "process(incoming:)", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:SD" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:SD" } ], - "usr": "s:Sk", - "mangledName": "$sSk" - }, + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopAttributeProcessorC7process8incomingSDySSAA0D5ValueOGAH_tF", + "mangledName": "$s11VideoSDKRTC22NoopAttributeProcessorC7process8incomingSDySSAA0D5ValueOGAH_tF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC22NoopAttributeProcessorC", + "mangledName": "$s11VideoSDKRTC22NoopAttributeProcessorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC18AttributeProcessorC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.AttributeProcessor" + ], + "conformances": [ { "kind": "Conformance", - "name": "MutableCollection", - "printedName": "MutableCollection", + "name": "AttributeProcessorProtocol", + "printedName": "AttributeProcessorProtocol", + "usr": "s:11VideoSDKRTC26AttributeProcessorProtocolP", + "mangledName": "$s11VideoSDKRTC26AttributeProcessorProtocolP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AttributesDictionary", + "printedName": "AttributesDictionary", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(capacity:valueLengthLimit:)", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] + "kind": "TypeNominal", + "name": "AttributesDictionary", + "printedName": "VideoSDKRTC.AttributesDictionary", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV" }, { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" } ], - "usr": "s:SM", - "mangledName": "$sSM" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV8capacity16valueLengthLimitACSi_Sitcfc", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV8capacity16valueLengthLimitACSi_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MutableDataProtocol", - "printedName": "MutableDataProtocol", - "usr": "s:10Foundation19MutableDataProtocolP", - "mangledName": "$s10Foundation19MutableDataProtocolP" - }, - { - "kind": "Conformance", - "name": "ContiguousBytes", - "printedName": "ContiguousBytes", - "usr": "s:10Foundation15ContiguousBytesP", - "mangledName": "$s10Foundation15ContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ + "declKind": "Subscript", + "usr": "s:11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSScip", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSScip", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSScig", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSScig", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSScis", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSScis", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSSciM", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSSciM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "updateValue", + "printedName": "updateValue(value:forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:Sq" }, { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV11updateValue5value6forKeyAA09AttributeF0OSgAH_SStF", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV11updateValue5value6forKeyAA09AttributeF0OSgAH_SStF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "updateValues", + "printedName": "updateValues(attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:SD" } ], - "usr": "s:SK", - "mangledName": "$sSK" + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV12updateValues10attributesySDySSAA14AttributeValueOG_tF", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV12updateValues10attributesySDySSAA14AttributeValueOG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" }, { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", + "kind": "Function", + "name": "updateValues", + "printedName": "updateValues(attributes:)", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AttributesDictionary", + "printedName": "VideoSDKRTC.AttributesDictionary", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV12updateValues10attributesyAC_tF", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV12updateValues10attributesyAC_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "removeValueForKey", + "printedName": "removeValueForKey(key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:Sq" }, { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV17removeValueForKey3keyAA09AttributeF0OSgSS_tF", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV17removeValueForKey3keyAA09AttributeF0OSgSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "removeAll", + "printedName": "removeAll(keepCapacity:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV9removeAll12keepCapacityySi_tF", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV9removeAll12keepCapacityySi_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV5countSivp", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV5countSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -6059,89 +8160,143 @@ "printedName": "Swift.Int", "usr": "s:Si" } - ] - }, + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV5countSivg", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV5countSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "numberOfDroppedAttributes", + "printedName": "numberOfDroppedAttributes", + "children": [ { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV015numberOfDroppedC0Sivp", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV015numberOfDroppedC0Sivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Foundation.Data.Iterator", - "usr": "s:10Foundation4DataV8IteratorV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] - }, + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV015numberOfDroppedC0Sivg", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV015numberOfDroppedC0Sivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] - }, + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV6valuesSayAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV6valuesSayAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", + "name": "Array", + "printedName": "[VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "usr": "s:Sn" + "usr": "s:Sa" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV6valuesSayAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV6valuesSayAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" } - ], - "usr": "s:Sl", - "mangledName": "$sSl" + ] }, { - "kind": "Conformance", - "name": "DataProtocol", - "printedName": "DataProtocol", + "kind": "Function", + "name": "makeIterator", + "printedName": "makeIterator()", "children": [ { - "kind": "TypeWitness", - "name": "Regions", - "printedName": "Regions", - "children": [ - { - "kind": "TypeNominal", - "name": "CollectionOfOne", - "printedName": "Swift.CollectionOfOne", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:s15CollectionOfOneV" - } - ] + "kind": "TypeNominal", + "name": "AttributesWithCapacityIterator", + "printedName": "VideoSDKRTC.AttributesWithCapacityIterator", + "usr": "s:11VideoSDKRTC30AttributesWithCapacityIteratorV" } ], - "usr": "s:10Foundation12DataProtocolP", - "mangledName": "$s10Foundation12DataProtocolP" - }, + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV12makeIteratorAA0c12WithCapacityF0VyF", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV12makeIteratorAA0c12WithCapacityF0VyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ { "kind": "Conformance", "name": "Sequence", @@ -6154,9 +8309,22 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Tuple", + "printedName": "(Swift.String, VideoSDKRTC.AttributeValue)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] }, @@ -6167,693 +8335,524 @@ "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Foundation.Data.Iterator", - "usr": "s:10Foundation4DataV8IteratorV" + "name": "AttributesWithCapacityIterator", + "printedName": "VideoSDKRTC.AttributesWithCapacityIterator", + "usr": "s:11VideoSDKRTC30AttributesWithCapacityIteratorV" } ] } ], "usr": "s:ST", "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSData", - "printedName": "Foundation.NSData", - "usr": "c:objc(cs)NSData" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "TypeDecl", - "name": "String", - "printedName": "String", - "children": [ + } + ] + }, + { + "kind": "TypeDecl", + "name": "AttributesWithCapacityIterator", + "printedName": "AttributesWithCapacityIterator", + "children": [ { "kind": "Function", - "name": "toJSON", - "printedName": "toJSON()", + "name": "next", + "printedName": "next()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "(Swift.String, VideoSDKRTC.AttributeValue)?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Tuple", + "printedName": "(Swift.String, VideoSDKRTC.AttributeValue)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:SS11VideoSDKRTCE6toJSONSDySSypGyF", - "mangledName": "$sSS11VideoSDKRTCE6toJSONSDySSypGyF", + "usr": "s:11VideoSDKRTC30AttributesWithCapacityIteratorV4nextSS_AA14AttributeValueOtSgyF", + "mangledName": "$s11VideoSDKRTC30AttributesWithCapacityIteratorV4nextSS_AA14AttributeValueOtSgyF", "moduleName": "VideoSDKRTC", "declAttributes": [ - "RawDocComment" + "Mutating", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "funcSelfKind": "Mutating" } ], "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", - "moduleName": "Swift", + "usr": "s:11VideoSDKRTC30AttributesWithCapacityIteratorV", + "mangledName": "$s11VideoSDKRTC30AttributesWithCapacityIteratorV", + "moduleName": "VideoSDKRTC", "declAttributes": [ - "Frozen" + "AccessControl" ], - "isExternal": true, "conformances": [ { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", + "name": "IteratorProtocol", + "printedName": "IteratorProtocol", "children": [ { "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(Swift.String, VideoSDKRTC.AttributeValue)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] } ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" - }, + "usr": "s:St", + "mangledName": "$sSt" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AttributeSet", + "printedName": "AttributeSet", + "children": [ { - "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "kind": "Var", + "name": "labels", + "printedName": "labels", "children": [ { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:SD" } ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, + "declKind": "Var", + "usr": "s:11VideoSDKRTC12AttributeSetC6labelsSDySSAA0C5ValueOGvp", + "mangledName": "$s11VideoSDKRTC12AttributeSetC6labelsSDySSAA0C5ValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "usr": "s:SI" + "usr": "s:SD" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12AttributeSetC6labelsSDySSAA0C5ValueOGvg", + "mangledName": "$s11VideoSDKRTC12AttributeSetC6labelsSDySSAA0C5ValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" } - ], - "usr": "s:SK", - "mangledName": "$sSK" + ] }, { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", + "kind": "Var", + "name": "empty", + "printedName": "empty", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, + "kind": "TypeNominal", + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12AttributeSetC5emptyACvpZ", + "mangledName": "$s11VideoSDKRTC12AttributeSetC5emptyACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12AttributeSetC5emptyACvgZ", + "mangledName": "$s11VideoSDKRTC12AttributeSetC5emptyACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12AttributeSetC5emptyACvsZ", + "mangledName": "$s11VideoSDKRTC12AttributeSetC5emptyACvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12AttributeSetC5emptyACvMZ", + "mangledName": "$s11VideoSDKRTC12AttributeSetC5emptyACvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "usr": "s:Sl", - "mangledName": "$sSl" + ] }, { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", + "kind": "Constructor", + "name": "init", + "printedName": "init(labels:)", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] + "kind": "TypeNominal", + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" }, { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:SD" } ], - "usr": "s:ST", - "mangledName": "$sST" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC12AttributeSetC6labelsACSDySSAA0C5ValueOG_tcfc", + "mangledName": "$s11VideoSDKRTC12AttributeSetC6labelsACSDySSAA0C5ValueOG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Required", + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { - "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", - "children": [ - { - "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" - } - ] + "kind": "TypeNominal", + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] + "kind": "TypeNominal", + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" } ], - "usr": "s:Sy", - "mangledName": "$sSy" + "declKind": "Func", + "usr": "s:11VideoSDKRTC12AttributeSetC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC12AttributeSetC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { - "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" + "declKind": "Func", + "usr": "s:11VideoSDKRTC12AttributeSetC4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC12AttributeSetC4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12AttributeSetC9hashValueSivp", + "mangledName": "$s11VideoSDKRTC12AttributeSetC9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isOpen": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12AttributeSetC9hashValueSivg", + "mangledName": "$s11VideoSDKRTC12AttributeSetC9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isOpen": true, + "accessorKind": "get" } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" + ] }, { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] + "kind": "TypeNominal", + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" } ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC12AttributeSetC4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC12AttributeSetC4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Required" + ], + "throwing": true, + "init_kind": "Designated" }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Dictionary", - "printedName": "Dictionary", - "children": [ { "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString()", + "name": "encode", + "printedName": "encode(to:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" } ], "declKind": "Func", - "usr": "s:SD11VideoSDKRTCE12toJSONStringSSyF", - "mangledName": "$sSD11VideoSDKRTCE12toJSONStringSSyF", + "usr": "s:11VideoSDKRTC12AttributeSetC6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC12AttributeSetC6encode2toys7Encoder_p_tKF", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", - "sugared_genericSig": "", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, + "implicit": true, + "isOpen": true, + "throwing": true, "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:SD", - "mangledName": "$sSD", - "moduleName": "Swift", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", - "sugared_genericSig": "", + "declKind": "Class", + "usr": "s:11VideoSDKRTC12AttributeSetC", + "mangledName": "$s11VideoSDKRTC12AttributeSetC", + "moduleName": "VideoSDKRTC", + "isOpen": true, "declAttributes": [ - "Frozen" + "AccessControl" ], - "isExternal": true, + "hasMissingDesignatedInitializers": true, "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" }, { "kind": "Conformance", @@ -6864,597 +8863,638 @@ }, { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AttributeValue", + "printedName": "AttributeValue", + "children": [ { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", + "kind": "Var", + "name": "string", + "printedName": "string", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> (Swift.String) -> VideoSDKRTC.AttributeValue", "children": [ { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: τ_0_0, value: τ_0_1)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideoSDKRTC.AttributeValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ + }, { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", - "usr": "s:SD8IteratorV" + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] } ], - "usr": "s:ST", - "mangledName": "$sST" + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO6stringyACSScACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO6stringyACSScACmF", + "moduleName": "VideoSDKRTC" }, { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", + "kind": "Var", + "name": "bool", + "printedName": "bool", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> (Swift.Bool) -> VideoSDKRTC.AttributeValue", "children": [ { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: τ_0_0, value: τ_0_1)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> VideoSDKRTC.AttributeValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ] - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ + }, { "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Index", - "usr": "s:SD5IndexV" + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO4boolyACSbcACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO4boolyACSbcACmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "int", + "printedName": "int", + "children": [ { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> (Swift.Int) -> VideoSDKRTC.AttributeValue", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.AttributeValue", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", - "usr": "s:SD8IteratorV" + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO3intyACSicACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO3intyACSicACmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "double", + "printedName": "double", + "children": [ { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> (Swift.Double) -> VideoSDKRTC.AttributeValue", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> VideoSDKRTC.AttributeValue", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, { "kind": "TypeNominal", - "name": "Slice", - "printedName": "Swift.Slice<[τ_0_0 : τ_0_1]>", + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ], - "usr": "s:s5SliceV" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO6doubleyACSdcACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO6doubleyACSdcACmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "stringArray", + "printedName": "stringArray", + "children": [ { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> ([Swift.String]) -> VideoSDKRTC.AttributeValue", "children": [ { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices<[τ_0_0 : τ_0_1]>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String]) -> VideoSDKRTC.AttributeValue", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:SD" + "usr": "s:Sa" } - ], - "usr": "s:SI" + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] } ], - "usr": "s:Sl", - "mangledName": "$sSl" + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO11stringArrayyACSaySSGcACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO11stringArrayyACSaySSGcACmF", + "moduleName": "VideoSDKRTC" }, { - "kind": "Conformance", - "name": "ExpressibleByDictionaryLiteral", - "printedName": "ExpressibleByDictionaryLiteral", + "kind": "Var", + "name": "boolArray", + "printedName": "boolArray", "children": [ { - "kind": "TypeWitness", - "name": "Key", - "printedName": "Key", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> ([Swift.Bool]) -> VideoSDKRTC.AttributeValue", "children": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Value", - "printedName": "Value", - "children": [ + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.Bool]) -> VideoSDKRTC.AttributeValue", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sa" + } + ] + }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] } ], - "usr": "s:s30ExpressibleByDictionaryLiteralP", - "mangledName": "$ss30ExpressibleByDictionaryLiteralP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO9boolArrayyACSaySbGcACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO9boolArrayyACSaySbGcACmF", + "moduleName": "VideoSDKRTC" }, { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "kind": "Var", + "name": "intArray", + "printedName": "intArray", "children": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> ([Swift.Int]) -> VideoSDKRTC.AttributeValue", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.Int]) -> VideoSDKRTC.AttributeValue", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ] + }, { "kind": "TypeNominal", - "name": "NSDictionary", - "printedName": "Foundation.NSDictionary", - "usr": "c:objc(cs)NSDictionary" + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] } ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Array", - "printedName": "Array", - "children": [ - { - "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:Sa11VideoSDKRTCE12toJSONStringSSyF", - "mangledName": "$sSa11VideoSDKRTCE12toJSONStringSSyF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:Sa", - "mangledName": "$sSa", - "moduleName": "Swift", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_DestructorSafeContainer", - "printedName": "_DestructorSafeContainer", - "usr": "s:s24_DestructorSafeContainerP", - "mangledName": "$ss24_DestructorSafeContainerP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO8intArrayyACSaySiGcACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO8intArrayyACSaySiGcACmF", + "moduleName": "VideoSDKRTC" }, { - "kind": "Conformance", - "name": "_ArrayProtocol", - "printedName": "_ArrayProtocol", + "kind": "Var", + "name": "doubleArray", + "printedName": "doubleArray", "children": [ { - "kind": "TypeWitness", - "name": "_Buffer", - "printedName": "_Buffer", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> ([Swift.Double]) -> VideoSDKRTC.AttributeValue", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.Double]) -> VideoSDKRTC.AttributeValue", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ] + }, { "kind": "TypeNominal", - "name": "_ArrayBuffer", - "printedName": "Swift._ArrayBuffer<τ_0_0>", + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ], - "usr": "s:s12_ArrayBufferV" + ] } ] } ], - "usr": "s:s14_ArrayProtocolP", - "mangledName": "$ss14_ArrayProtocolP" + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO11doubleArrayyACSaySdGcACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO11doubleArrayyACSaySdGcACmF", + "moduleName": "VideoSDKRTC" }, { - "kind": "Conformance", - "name": "RandomAccessCollection", - "printedName": "RandomAccessCollection", + "kind": "Var", + "name": "set", + "printedName": "set", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> (VideoSDKRTC.AttributeSet) -> VideoSDKRTC.AttributeValue", "children": [ { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeSet) -> VideoSDKRTC.AttributeValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" } - ], - "usr": "s:s10ArraySliceV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ + ] + }, { "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ], - "usr": "s:Sn" + ] } ] } ], - "usr": "s:Sk", - "mangledName": "$sSk" + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO3setyAcA0C3SetCcACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO3setyAcA0C3SetCcACmF", + "moduleName": "VideoSDKRTC" }, { - "kind": "Conformance", - "name": "MutableCollection", - "printedName": "MutableCollection", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14AttributeValueO11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC14AttributeValueO11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - }, + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14AttributeValueO11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC14AttributeValueO11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:Sq" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], - "usr": "s:SM", - "mangledName": "$sSM" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSgypcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSgypcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" }, { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "usr": "s:SK", - "mangledName": "$sSK" + "declKind": "Func", + "usr": "s:11VideoSDKRTC14AttributeValueO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC14AttributeValueO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14AttributeValueO04hashD0Sivp", + "mangledName": "$s11VideoSDKRTC14AttributeValueO04hashD0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -7462,186 +9502,358 @@ "printedName": "Swift.Int", "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14AttributeValueO04hashD0Sivg", + "mangledName": "$s11VideoSDKRTC14AttributeValueO04hashD0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "IndexingIterator", - "printedName": "Swift.IndexingIterator<[τ_0_0]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s16IndexingIteratorV" - } - ] + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14AttributeValueO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSScfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" }, { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sl", - "mangledName": "$sSl" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSbcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSbcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" }, { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" }, { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSicfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSicfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSdcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSdcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", "children": [ { "kind": "TypeNominal", - "name": "IndexingIterator", - "printedName": "Swift.IndexingIterator<[τ_0_0]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s16IndexingIteratorV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sa" } ], - "usr": "s:ST", - "mangledName": "$sST" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSaySSGcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSaySSGcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" }, { - "kind": "Conformance", - "name": "ExpressibleByArrayLiteral", - "printedName": "ExpressibleByArrayLiteral", + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", "children": [ { - "kind": "TypeWitness", - "name": "ArrayLiteralElement", - "printedName": "ArrayLiteralElement", + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "usr": "s:Sa" } ], - "usr": "s:s25ExpressibleByArrayLiteralP", - "mangledName": "$ss25ExpressibleByArrayLiteralP" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSaySiGcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSaySiGcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" }, { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", "children": [ { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", "children": [ { "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ] + ], + "usr": "s:Sa" } ], - "usr": "s:Sm", - "mangledName": "$sSm" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSaySdGcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSaySdGcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyAcA0C3SetCcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyAcA0C3SetCcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueO4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueO4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14AttributeValueO6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC14AttributeValueO", + "mangledName": "$s11VideoSDKRTC14AttributeValueO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ { "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", @@ -7650,13 +9862,6 @@ "usr": "s:s23CustomStringConvertibleP", "mangledName": "$ss23CustomStringConvertibleP" }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, { "kind": "Conformance", "name": "Hashable", @@ -7664,27 +9869,6 @@ "usr": "s:SH", "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, { "kind": "Conformance", "name": "Decodable", @@ -7694,3243 +9878,299971 @@ }, { "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AVKit", + "printedName": "AVKit", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Baggage", + "printedName": "Baggage", + "children": [ { - "kind": "Conformance", - "name": "DataProtocol", - "printedName": "DataProtocol", + "kind": "Function", + "name": "baggageBuilder", + "printedName": "baggageBuilder()", "children": [ { - "kind": "TypeWitness", - "name": "Regions", - "printedName": "Regions", - "children": [ - { - "kind": "TypeNominal", - "name": "CollectionOfOne", - "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s15CollectionOfOneV" - } - ] + "kind": "TypeNominal", + "name": "BaggageBuilder", + "printedName": "VideoSDKRTC.BaggageBuilder", + "usr": "s:11VideoSDKRTC14BaggageBuilderP" } ], - "usr": "s:10Foundation12DataProtocolP", - "mangledName": "$s10Foundation12DataProtocolP" - }, - { - "kind": "Conformance", - "name": "MutableDataProtocol", - "printedName": "MutableDataProtocol", - "usr": "s:10Foundation19MutableDataProtocolP", - "mangledName": "$s10Foundation19MutableDataProtocolP" + "declKind": "Func", + "usr": "s:11VideoSDKRTC7BaggageP14baggageBuilderAA0cE0_pyFZ", + "mangledName": "$s11VideoSDKRTC7BaggageP14baggageBuilderAA0cE0_pyFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Baggage>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "EncodableWithConfiguration", - "printedName": "EncodableWithConfiguration", + "kind": "Function", + "name": "getEntries", + "printedName": "getEntries()", "children": [ { - "kind": "TypeWitness", - "name": "EncodingConfiguration", - "printedName": "EncodingConfiguration", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Entry]", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.EncodingConfiguration" + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" } - ] + ], + "usr": "s:Sa" } ], - "usr": "s:10Foundation26EncodableWithConfigurationP", - "mangledName": "$s10Foundation26EncodableWithConfigurationP" + "declKind": "Func", + "usr": "s:11VideoSDKRTC7BaggageP10getEntriesSayAA5EntryVGyF", + "mangledName": "$s11VideoSDKRTC7BaggageP10getEntriesSayAA5EntryVGyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Baggage>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "DecodableWithConfiguration", - "printedName": "DecodableWithConfiguration", + "kind": "Function", + "name": "getEntryValue", + "printedName": "getEntryValue(key:)", "children": [ { - "kind": "TypeWitness", - "name": "DecodingConfiguration", - "printedName": "DecodingConfiguration", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryValue?", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.DecodingConfiguration" + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" } ], - "usr": "s:10Foundation26DecodableWithConfigurationP", - "mangledName": "$s10Foundation26DecodableWithConfigurationP" + "declKind": "Func", + "usr": "s:11VideoSDKRTC7BaggageP13getEntryValue3keyAA0eF0VSgAA0E3KeyV_tF", + "mangledName": "$s11VideoSDKRTC7BaggageP13getEntryValue3keyAA0eF0VSgAA0E3KeyV_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Baggage>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC7BaggageP", + "mangledName": "$s11VideoSDKRTC7BaggageP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + }, + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC2eeoiySbAA7Baggage_p_AaC_ptF", + "mangledName": "$s11VideoSDKRTC2eeoiySbAA7Baggage_p_AaC_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BaggageBuilder", + "printedName": "BaggageBuilder", + "children": [ + { + "kind": "Function", + "name": "setParent", + "printedName": "setParent(_:)", "children": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Baggage?", "children": [ { "kind": "TypeNominal", - "name": "NSArray", - "printedName": "Foundation.NSArray", - "usr": "c:objc(cs)NSArray" + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" + "declKind": "Func", + "usr": "s:11VideoSDKRTC14BaggageBuilderP9setParentyxAA0C0_pSgF", + "mangledName": "$s11VideoSDKRTC14BaggageBuilderP9setParentyxAA0C0_pSgF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.BaggageBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "kind": "Function", + "name": "setNoParent", + "printedName": "setNoParent()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14BaggageBuilderP11setNoParentxyF", + "mangledName": "$s11VideoSDKRTC14BaggageBuilderP11setNoParentxyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.BaggageBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "ContiguousBytes", - "printedName": "ContiguousBytes", - "usr": "s:10Foundation15ContiguousBytesP", - "mangledName": "$s10Foundation15ContiguousBytesP" + "kind": "Function", + "name": "put", + "printedName": "put(key:value:metadata:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + }, + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14BaggageBuilderP3put3key5value8metadataxAA8EntryKeyV_AA0I5ValueVAA0I8MetadataVSgtF", + "mangledName": "$s11VideoSDKRTC14BaggageBuilderP3put3key5value8metadataxAA8EntryKeyV_AA0I5ValueVAA0I8MetadataVSgtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.BaggageBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "remove", + "printedName": "remove(key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14BaggageBuilderP6remove3keyxAA8EntryKeyV_tF", + "mangledName": "$s11VideoSDKRTC14BaggageBuilderP6remove3keyxAA8EntryKeyV_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.BaggageBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14BaggageBuilderP5buildAA0C0_pyF", + "mangledName": "$s11VideoSDKRTC14BaggageBuilderP5buildAA0C0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.BaggageBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14BaggageBuilderP", + "mangledName": "$s11VideoSDKRTC14BaggageBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "TypeDecl", - "name": "Encodable", - "printedName": "Encodable", + "name": "BaggageManager", + "printedName": "BaggageManager", "children": [ { "kind": "Function", - "name": "toJSON", - "printedName": "toJSON()", + "name": "baggageBuilder", + "printedName": "baggageBuilder()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "BaggageBuilder", + "printedName": "VideoSDKRTC.BaggageBuilder", + "usr": "s:11VideoSDKRTC14BaggageBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14BaggageManagerP14baggageBuilderAA0cF0_pyF", + "mangledName": "$s11VideoSDKRTC14BaggageManagerP14baggageBuilderAA0cF0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.BaggageManager>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14BaggageManagerP", + "mangledName": "$s11VideoSDKRTC14BaggageManagerP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BatchLogRecordProcessor", + "printedName": "BatchLogRecordProcessor", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(logRecordExporter:scheduleDelay:exportTimeout:maxQueueSize:maxExportBatchSize:willExportCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BatchLogRecordProcessor", + "printedName": "VideoSDKRTC.BatchLogRecordProcessor", + "usr": "s:11VideoSDKRTC23BatchLogRecordProcessorC" + }, + { + "kind": "TypeNominal", + "name": "LogRecordExporter", + "printedName": "VideoSDKRTC.LogRecordExporter", + "usr": "s:11VideoSDKRTC17LogRecordExporterP" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((inout [VideoSDKRTC.ReadableLogRecord]) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(inout [VideoSDKRTC.ReadableLogRecord]) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ] } ], - "usr": "s:SD" + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC23BatchLogRecordProcessorC03logE8Exporter13scheduleDelay13exportTimeout12maxQueueSize0m6ExportcO004willP8CallbackAcA0deH0_p_S2dS2iySayAA08ReadabledE0VGzcSgtcfc", + "mangledName": "$s11VideoSDKRTC23BatchLogRecordProcessorC03logE8Exporter13scheduleDelay13exportTimeout12maxQueueSize0m6ExportcO004willP8CallbackAcA0deH0_p_S2dS2iySayAA08ReadabledE0VGzcSgtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "onEmit", + "printedName": "onEmit(logRecord:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" } ], "declKind": "Func", - "usr": "s:SE11VideoSDKRTCE6toJSONSDySSypGyF", - "mangledName": "$sSE11VideoSDKRTCE6toJSONSDySSypGyF", + "usr": "s:11VideoSDKRTC23BatchLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", + "mangledName": "$s11VideoSDKRTC23BatchLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "toJSONArray", - "printedName": "toJSONArray()", + "name": "forceFlush", + "printedName": "forceFlush()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23BatchLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC23BatchLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush(timeout:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:SE11VideoSDKRTCE11toJSONArraySayypGyF", - "mangledName": "$sSE11VideoSDKRTCE11toJSONArraySayypGyF", + "usr": "s:11VideoSDKRTC23BatchLogRecordProcessorC10forceFlush7timeoutySdSg_tF", + "mangledName": "$s11VideoSDKRTC23BatchLogRecordProcessorC10forceFlush7timeoutySdSg_tF", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23BatchLogRecordProcessorC8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC23BatchLogRecordProcessorC8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" } ], - "declKind": "Protocol", - "usr": "s:SE", - "mangledName": "$sSE", - "moduleName": "Swift", - "isExternal": true - } - ], - "json_format_version": 8 - }, - "ConstValues": [ + "declKind": "Class", + "usr": "s:11VideoSDKRTC23BatchLogRecordProcessorC", + "mangledName": "$s11VideoSDKRTC23BatchLogRecordProcessorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordProcessor", + "printedName": "LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BatchSpanProcessor", + "printedName": "BatchSpanProcessor", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(spanExporter:scheduleDelay:exportTimeout:maxQueueSize:maxExportBatchSize:willExportCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BatchSpanProcessor", + "printedName": "VideoSDKRTC.BatchSpanProcessor", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV" + }, + { + "kind": "TypeNominal", + "name": "SpanExporter", + "printedName": "VideoSDKRTC.SpanExporter", + "usr": "s:11VideoSDKRTC12SpanExporterP" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((inout [VideoSDKRTC.SpanData]) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(inout [VideoSDKRTC.SpanData]) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV12spanExporter13scheduleDelay13exportTimeout12maxQueueSize0l6ExportcN004willO8CallbackAcA0dG0_p_S2dS2iySayAA0D4DataVGzcSgtcfc", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV12spanExporter13scheduleDelay13exportTimeout12maxQueueSize0l6ExportcN004willO8CallbackAcA0dG0_p_S2dS2iySayAA0D4DataVGzcSgtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "isStartRequired", + "printedName": "isStartRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV15isStartRequiredSbvp", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV15isStartRequiredSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV15isStartRequiredSbvg", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV15isStartRequiredSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isEndRequired", + "printedName": "isEndRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV13isEndRequiredSbvp", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV13isEndRequiredSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV13isEndRequiredSbvg", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV13isEndRequiredSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "onStart", + "printedName": "onStart(parentContext:span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV7onStart13parentContext4spanyAA0dI0VSg_AA08ReadableD0_ptF", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV7onStart13parentContext4spanyAA0dI0VSg_AA08ReadableD0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onEnd", + "printedName": "onEnd(span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV5onEnd4spanyAA08ReadableD0_p_tF", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV5onEnd4spanyAA08ReadableD0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV8shutdownyyF", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush(timeout:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV10forceFlush7timeoutySdSg_tF", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV10forceFlush7timeoutySdSg_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SpanProcessor", + "printedName": "SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BinaryDecodingError", + "printedName": "BinaryDecodingError", + "children": [ + { + "kind": "Var", + "name": "trailingGarbage", + "printedName": "trailingGarbage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO15trailingGarbageyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO15trailingGarbageyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "truncated", + "printedName": "truncated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO9truncatedyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO9truncatedyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "invalidUTF8", + "printedName": "invalidUTF8", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO11invalidUTF8yA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO11invalidUTF8yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedProtobuf", + "printedName": "malformedProtobuf", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO17malformedProtobufyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO17malformedProtobufyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "missingRequiredFields", + "printedName": "missingRequiredFields", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO21missingRequiredFieldsyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO21missingRequiredFieldsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "internalExtensionError", + "printedName": "internalExtensionError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO017internalExtensionE0yA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO017internalExtensionE0yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messageDepthLimit", + "printedName": "messageDepthLimit", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO17messageDepthLimityA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO17messageDepthLimityA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "tooLarge", + "printedName": "tooLarge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO8tooLargeyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO8tooLargeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "BinaryDecodingOptions", + "printedName": "BinaryDecodingOptions", + "children": [ + { + "kind": "Var", + "name": "messageDepthLimit", + "printedName": "messageDepthLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivp", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivg", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivs", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivM", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "discardUnknownFields", + "printedName": "discardUnknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvp", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvg", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvs", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvM", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "BinaryDelimited", + "printedName": "BinaryDelimited", + "children": [ + { + "kind": "TypeDecl", + "name": "Error", + "printedName": "Error", + "children": [ + { + "kind": "Var", + "name": "unknownStreamError", + "printedName": "unknownStreamError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDelimited.Error.Type) -> VideoSDKRTC.BinaryDelimited.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDelimited.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO013unknownStreamE0yA2EmF", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO013unknownStreamE0yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "truncated", + "printedName": "truncated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDelimited.Error.Type) -> VideoSDKRTC.BinaryDelimited.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDelimited.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO9truncatedyA2EmF", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO9truncatedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "tooLarge", + "printedName": "tooLarge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDelimited.Error.Type) -> VideoSDKRTC.BinaryDelimited.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDelimited.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO8tooLargeyA2EmF", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO8tooLargeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedLength", + "printedName": "malformedLength", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDelimited.Error.Type) -> VideoSDKRTC.BinaryDelimited.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDelimited.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO15malformedLengthyA2EmF", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO15malformedLengthyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "noBytesAvailable", + "printedName": "noBytesAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDelimited.Error.Type) -> VideoSDKRTC.BinaryDelimited.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDelimited.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO16noBytesAvailableyA2EmF", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO16noBytesAvailableyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "serialize", + "printedName": "serialize(message:to:partial:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + }, + { + "kind": "TypeNominal", + "name": "OutputStream", + "printedName": "Foundation.OutputStream", + "usr": "c:objc(cs)NSOutputStream" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO9serialize7message2to7partialyAA7Message_p_So14NSOutputStreamCSbtKFZ", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO9serialize7message2to7partialyAA7Message_p_So14NSOutputStreamCSbtKFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parse", + "printedName": "parse(messageType:from:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeNominal", + "name": "InputStream", + "printedName": "Foundation.InputStream", + "usr": "c:objc(cs)NSInputStream" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5parse11messageType4from10extensions7partial7optionsxxm_So13NSInputStreamCAA12ExtensionMap_pSgSbAA0C15DecodingOptionsVtKAA7MessageRzlFZ", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5parse11messageType4from10extensions7partial7optionsxxm_So13NSInputStreamCAA12ExtensionMap_pSgSbAA0C15DecodingOptionsVtKAA7MessageRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "merge", + "printedName": "merge(into:from:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "InputStream", + "printedName": "Foundation.InputStream", + "usr": "c:objc(cs)NSInputStream" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5merge4into4from10extensions7partial7optionsyxz_So13NSInputStreamCAA12ExtensionMap_pSgSbAA0C15DecodingOptionsVtKAA7MessageRzlFZ", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5merge4into4from10extensions7partial7optionsyxz_So13NSInputStreamCAA12ExtensionMap_pSgSbAA0C15DecodingOptionsVtKAA7MessageRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BinaryEncodingError", + "printedName": "BinaryEncodingError", + "children": [ + { + "kind": "Var", + "name": "anyTranscodeFailure", + "printedName": "anyTranscodeFailure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryEncodingError.Type) -> VideoSDKRTC.BinaryEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO19anyTranscodeFailureyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO19anyTranscodeFailureyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "missingRequiredFields", + "printedName": "missingRequiredFields", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryEncodingError.Type) -> VideoSDKRTC.BinaryEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO21missingRequiredFieldsyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO21missingRequiredFieldsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "tooLarge", + "printedName": "tooLarge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryEncodingError.Type) -> VideoSDKRTC.BinaryEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO8tooLargeyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO8tooLargeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BoundCounterMetric", + "printedName": "BoundCounterMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundCounterMetric", + "printedName": "VideoSDKRTC.BoundCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundCounterMetricC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18BoundCounterMetricCACyxGycfc", + "mangledName": "$s11VideoSDKRTC18BoundCounterMetricCACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18BoundCounterMetricC3add5valueyx_tF", + "mangledName": "$s11VideoSDKRTC18BoundCounterMetricC3add5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18BoundCounterMetricC", + "mangledName": "$s11VideoSDKRTC18BoundCounterMetricC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BoundHistogramMetric", + "printedName": "BoundHistogramMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(explicitBoundaries:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundHistogramMetric", + "printedName": "VideoSDKRTC.BoundHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC18explicitBoundariesACyxGSayxGSg_tcfc", + "mangledName": "$s11VideoSDKRTC20BoundHistogramMetricC18explicitBoundariesACyxGSayxGSg_tcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC6record5valueyx_tF", + "mangledName": "$s11VideoSDKRTC20BoundHistogramMetricC6record5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC", + "mangledName": "$s11VideoSDKRTC20BoundHistogramMetricC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BoundMeasureMetric", + "printedName": "BoundMeasureMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundMeasureMetric", + "printedName": "VideoSDKRTC.BoundMeasureMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18BoundMeasureMetricCACyxGycfc", + "mangledName": "$s11VideoSDKRTC18BoundMeasureMetricCACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC6record5valueyx_tF", + "mangledName": "$s11VideoSDKRTC18BoundMeasureMetricC6record5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC", + "mangledName": "$s11VideoSDKRTC18BoundMeasureMetricC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BoundRawCounterMetric", + "printedName": "BoundRawCounterMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawCounterMetric", + "printedName": "VideoSDKRTC.BoundRawCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricCACyxGycfc", + "mangledName": "$s11VideoSDKRTC21BoundRawCounterMetricCACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(sum:startDate:endDate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC6record3sum9startDate03endJ0yx_10Foundation0J0VAJtF", + "mangledName": "$s11VideoSDKRTC21BoundRawCounterMetricC6record3sum9startDate03endJ0yx_10Foundation0J0VAJtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC", + "mangledName": "$s11VideoSDKRTC21BoundRawCounterMetricC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BoundRawHistogramMetric", + "printedName": "BoundRawHistogramMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawHistogramMetric", + "printedName": "VideoSDKRTC.BoundRawHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricCACyxGycfc", + "mangledName": "$s11VideoSDKRTC23BoundRawHistogramMetricCACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(explicitBoundaries:counts:startDate:endDate:count:sum:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC6record18explicitBoundaries6counts9startDate03endL05count3sumySayxG_SaySiG10Foundation0L0VAOSixtF", + "mangledName": "$s11VideoSDKRTC23BoundRawHistogramMetricC6record18explicitBoundaries6counts9startDate03endL05count3sumySayxG_SaySiG10Foundation0L0VAOSixtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC", + "mangledName": "$s11VideoSDKRTC23BoundRawHistogramMetricC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CallbackRegistration", + "printedName": "CallbackRegistration", + "children": [ + { + "kind": "Function", + "name": "execute", + "printedName": "execute(reader:startEpochNanos:epochNanos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "RegisteredReader", + "printedName": "VideoSDKRTC.RegisteredReader", + "usr": "s:11VideoSDKRTC16RegisteredReaderC" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20CallbackRegistrationC7execute6reader15startEpochNanos05epochI0yAA16RegisteredReaderC_s6UInt64VAKtF", + "mangledName": "$s11VideoSDKRTC20CallbackRegistrationC7execute6reader15startEpochNanos05epochI0yAA16RegisteredReaderC_s6UInt64VAKtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20CallbackRegistrationC", + "mangledName": "$s11VideoSDKRTC20CallbackRegistrationC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CameraPosition", + "printedName": "CameraPosition", + "children": [ + { + "kind": "Var", + "name": "back", + "printedName": "back", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CameraPosition.Type) -> VideoSDKRTC.CameraPosition", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraPosition", + "printedName": "VideoSDKRTC.CameraPosition", + "usr": "s:11VideoSDKRTC14CameraPositionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CameraPosition.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraPosition", + "printedName": "VideoSDKRTC.CameraPosition", + "usr": "s:11VideoSDKRTC14CameraPositionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14CameraPositionO4backyA2CmF", + "mangledName": "$s11VideoSDKRTC14CameraPositionO4backyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "front", + "printedName": "front", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CameraPosition.Type) -> VideoSDKRTC.CameraPosition", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraPosition", + "printedName": "VideoSDKRTC.CameraPosition", + "usr": "s:11VideoSDKRTC14CameraPositionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CameraPosition.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraPosition", + "printedName": "VideoSDKRTC.CameraPosition", + "usr": "s:11VideoSDKRTC14CameraPositionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14CameraPositionO5frontyA2CmF", + "mangledName": "$s11VideoSDKRTC14CameraPositionO5frontyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "toggle", + "printedName": "toggle()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14CameraPositionO6toggleyyF", + "mangledName": "$s11VideoSDKRTC14CameraPositionO6toggleyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.CameraPosition?", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraPosition", + "printedName": "VideoSDKRTC.CameraPosition", + "usr": "s:11VideoSDKRTC14CameraPositionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14CameraPositionO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC14CameraPositionO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14CameraPositionO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC14CameraPositionO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14CameraPositionO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC14CameraPositionO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC14CameraPositionO", + "mangledName": "$s11VideoSDKRTC14CameraPositionO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Clock", + "printedName": "Clock", + "children": [ + { + "kind": "Var", + "name": "now", + "printedName": "now", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC5ClockP3now10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC5ClockP3now10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC5ClockP3now10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC5ClockP3now10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Clock>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nanoTime", + "printedName": "nanoTime", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC5ClockPAAE8nanoTimes6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC5ClockPAAE8nanoTimes6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC5ClockPAAE8nanoTimes6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC5ClockPAAE8nanoTimes6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Clock>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC5ClockP", + "mangledName": "$s11VideoSDKRTC5ClockP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC2eeoiySbAA5Clock_p_AaC_ptF", + "mangledName": "$s11VideoSDKRTC2eeoiySbAA5Clock_p_AaC_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CollectionRegistration", + "printedName": "CollectionRegistration", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC22CollectionRegistrationP", + "mangledName": "$s11VideoSDKRTC22CollectionRegistrationP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "Opentelemetry_Proto_Common_V1_AnyValue", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "boolValue", + "printedName": "boolValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0Sbvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0Sbvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0Sbvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0Sbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0SbvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0SbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64Vvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64Vvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64Vvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64VvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "doubleValue", + "printedName": "doubleValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0Sdvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0Sdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0Sdvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0Sdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0Sdvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0Sdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0SdvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0SdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "arrayValue", + "printedName": "arrayValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0Vvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0Vvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0Vvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0VvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "kvlistValue", + "printedName": "kvlistValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bytesValue", + "printedName": "bytesValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_Value", + "printedName": "OneOf_Value", + "children": [ + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type) -> (Swift.String) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O06stringH0yAESScAEmF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O06stringH0yAESScAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "boolValue", + "printedName": "boolValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type) -> (Swift.Bool) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O04boolH0yAESbcAEmF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O04boolH0yAESbcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type) -> (Swift.Int64) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int64) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O03intH0yAEs5Int64VcAEmF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O03intH0yAEs5Int64VcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "doubleValue", + "printedName": "doubleValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type) -> (Swift.Double) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O06doubleH0yAESdcAEmF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O06doubleH0yAESdcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "arrayValue", + "printedName": "arrayValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type) -> (VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O05arrayH0yAeA0c1_d1_e1_f6_ArrayH0VcAEmF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O05arrayH0yAeA0c1_d1_e1_f6_ArrayH0VcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "kvlistValue", + "printedName": "kvlistValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type) -> (VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O06kvlistH0yAeA0c1_d1_e1_f4_KeyH4ListVcAEmF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O06kvlistH0yAeA0c1_d1_e1_f4_KeyH4ListVcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "bytesValue", + "printedName": "bytesValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type) -> (Foundation.Data) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O05bytesH0yAE10Foundation4DataVcAEmF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O05bytesH0yAE10Foundation4DataVcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueVACycfc", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04hashH0Sivp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04hashH0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04hashH0Sivg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04hashH0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "Opentelemetry_Proto_Common_V1_ArrayValue", + "children": [ + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvp", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvg", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvs", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvM", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueVACycfc", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV04hashH0Sivp", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV04hashH0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV04hashH0Sivg", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV04hashH0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "Opentelemetry_Proto_Common_V1_KeyValueList", + "children": [ + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvs", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvM", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListVACycfc", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV04hashH0Sivp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV04hashH0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV04hashH0Sivg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV04hashH0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "Opentelemetry_Proto_Common_V1_KeyValue", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0Vvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0Vvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0Vvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0VvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasValue", + "printedName": "hasValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV03hasH0Sbvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV03hasH0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV03hasH0Sbvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV03hasH0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearValue", + "printedName": "clearValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV05clearH0yyF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV05clearH0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueVACycfc", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV04hashH0Sivp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV04hashH0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV04hashH0Sivg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV04hashH0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvp", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvg", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvs", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvM", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvp", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvg", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvs", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvM", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedAttributesCount", + "printedName": "droppedAttributesCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeVACycfc", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CommonAdapter", + "printedName": "CommonAdapter", + "children": [ + { + "kind": "Function", + "name": "toProtoAttribute", + "printedName": "toProtoAttribute(key:attributeValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13CommonAdapterV16toProtoAttribute3key14attributeValueAA014Opentelemetry_f1_c7_V1_KeyJ0VSS_AA0gJ0OtFZ", + "mangledName": "$s11VideoSDKRTC13CommonAdapterV16toProtoAttribute3key14attributeValueAA014Opentelemetry_f1_c7_V1_KeyJ0VSS_AA0gJ0OtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toProtoInstrumentationScope", + "printedName": "toProtoInstrumentationScope(instrumentationScopeInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13CommonAdapterV27toProtoInstrumentationScope015instrumentationH4InfoAA014Opentelemetry_f1_c4_V1_gH0VAA0ghJ0V_tFZ", + "mangledName": "$s11VideoSDKRTC13CommonAdapterV27toProtoInstrumentationScope015instrumentationH4InfoAA014Opentelemetry_f1_c4_V1_gH0VAA0ghJ0V_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13CommonAdapterV", + "mangledName": "$s11VideoSDKRTC13CommonAdapterV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ContextManager", + "printedName": "ContextManager", + "children": [ + { + "kind": "Function", + "name": "getCurrentContextValue", + "printedName": "getCurrentContextValue(forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AnyObject?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ContextManagerP010getCurrentC5Value6forKeyyXlSgAA013OpenTelemetryC4KeysO_tF", + "mangledName": "$s11VideoSDKRTC14ContextManagerP010getCurrentC5Value6forKeyyXlSgAA013OpenTelemetryC4KeysO_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ContextManager>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCurrentContextValue", + "printedName": "setCurrentContextValue(forKey:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ContextManagerP010setCurrentC5Value6forKey5valueyAA013OpenTelemetryC4KeysO_yXltF", + "mangledName": "$s11VideoSDKRTC14ContextManagerP010setCurrentC5Value6forKey5valueyAA013OpenTelemetryC4KeysO_yXltF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ContextManager>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeContextValue", + "printedName": "removeContextValue(forKey:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ContextManagerP06removeC5Value6forKey5valueyAA013OpenTelemetryC4KeysO_yXltF", + "mangledName": "$s11VideoSDKRTC14ContextManagerP06removeC5Value6forKey5valueyAA013OpenTelemetryC4KeysO_yXltF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ContextManager>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14ContextManagerP", + "mangledName": "$s11VideoSDKRTC14ContextManagerP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ContextPropagators", + "printedName": "ContextPropagators", + "children": [ + { + "kind": "Var", + "name": "textMapPropagator", + "printedName": "textMapPropagator", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP17textMapPropagatorAA04TextfG0_pvp", + "mangledName": "$s11VideoSDKRTC18ContextPropagatorsP17textMapPropagatorAA04TextfG0_pvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP17textMapPropagatorAA04TextfG0_pvg", + "mangledName": "$s11VideoSDKRTC18ContextPropagatorsP17textMapPropagatorAA04TextfG0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ContextPropagators>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "textMapBaggagePropagator", + "printedName": "textMapBaggagePropagator", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapBaggagePropagator", + "printedName": "VideoSDKRTC.TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP24textMapBaggagePropagatorAA04TextfgH0_pvp", + "mangledName": "$s11VideoSDKRTC18ContextPropagatorsP24textMapBaggagePropagatorAA04TextfgH0_pvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapBaggagePropagator", + "printedName": "VideoSDKRTC.TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP24textMapBaggagePropagatorAA04TextfgH0_pvg", + "mangledName": "$s11VideoSDKRTC18ContextPropagatorsP24textMapBaggagePropagatorAA04TextfgH0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ContextPropagators>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP", + "mangledName": "$s11VideoSDKRTC18ContextPropagatorsP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CounterMetric", + "printedName": "CounterMetric", + "children": [ + { + "kind": "AssociatedType", + "name": "T", + "printedName": "T", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC13CounterMetricP1TQa", + "mangledName": "$s11VideoSDKRTC13CounterMetricP1TQa", + "moduleName": "VideoSDKRTC", + "protocolReq": true + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13CounterMetricP3add5value8labelsety1TQz_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC13CounterMetricP3add5value8labelsety1TQz_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.CounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13CounterMetricP3add5value6labelsy1TQz_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC13CounterMetricP3add5value6labelsy1TQz_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.CounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundCounterMetric", + "printedName": "VideoSDKRTC.BoundCounterMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC18BoundCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13CounterMetricP4bind8labelsetAA05BoundcD0Cy1TQzGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC13CounterMetricP4bind8labelsetAA05BoundcD0Cy1TQzGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.CounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundCounterMetric", + "printedName": "VideoSDKRTC.BoundCounterMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC18BoundCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13CounterMetricP4bind6labelsAA05BoundcD0Cy1TQzGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC13CounterMetricP4bind6labelsAA05BoundcD0Cy1TQzGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.CounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13CounterMetricP", + "mangledName": "$s11VideoSDKRTC13CounterMetricP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AnyCounterMetric", + "printedName": "AnyCounterMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCounterMetric", + "printedName": "VideoSDKRTC.AnyCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16AnyCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16AnyCounterMetricVyACyxGqd__c1TQyd__RszAA0dE0Rd__lufc", + "mangledName": "$s11VideoSDKRTC16AnyCounterMetricVyACyxGqd__c1TQyd__RszAA0dE0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 == τ_1_0.T, τ_1_0 : VideoSDKRTC.CounterMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AnyCounterMetricV3add5value8labelsetyx_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC16AnyCounterMetricV3add5value8labelsetyx_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AnyCounterMetricV3add5value6labelsyx_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC16AnyCounterMetricV3add5value6labelsyx_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundCounterMetric", + "printedName": "VideoSDKRTC.BoundCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AnyCounterMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC16AnyCounterMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundCounterMetric", + "printedName": "VideoSDKRTC.BoundCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AnyCounterMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC16AnyCounterMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16AnyCounterMetricV", + "mangledName": "$s11VideoSDKRTC16AnyCounterMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CounterMetric", + "printedName": "CounterMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC13CounterMetricP", + "mangledName": "$s11VideoSDKRTC13CounterMetricP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoopCounterMetric", + "printedName": "NoopCounterMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopCounterMetric", + "printedName": "VideoSDKRTC.NoopCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17NoopCounterMetricV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17NoopCounterMetricVACyxGycfc", + "mangledName": "$s11VideoSDKRTC17NoopCounterMetricVACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17NoopCounterMetricV3add5value8labelsetyx_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC17NoopCounterMetricV3add5value8labelsetyx_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17NoopCounterMetricV3add5value6labelsyx_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC17NoopCounterMetricV3add5value6labelsyx_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundCounterMetric", + "printedName": "VideoSDKRTC.BoundCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17NoopCounterMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC17NoopCounterMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundCounterMetric", + "printedName": "VideoSDKRTC.BoundCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17NoopCounterMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC17NoopCounterMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC17NoopCounterMetricV", + "mangledName": "$s11VideoSDKRTC17NoopCounterMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CounterMetric", + "printedName": "CounterMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC13CounterMetricP", + "mangledName": "$s11VideoSDKRTC13CounterMetricP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CounterSumAggregator", + "printedName": "CounterSumAggregator", + "children": [ + { + "kind": "Function", + "name": "update", + "printedName": "update(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20CounterSumAggregatorC6update5valueyx_tF", + "mangledName": "$s11VideoSDKRTC20CounterSumAggregatorC6update5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkpoint", + "printedName": "checkpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20CounterSumAggregatorC10checkpointyyF", + "mangledName": "$s11VideoSDKRTC20CounterSumAggregatorC10checkpointyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20CounterSumAggregatorC12toMetricDataAA0gH0_pyF", + "mangledName": "$s11VideoSDKRTC20CounterSumAggregatorC12toMetricDataAA0gH0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAggregationType", + "printedName": "getAggregationType()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20CounterSumAggregatorC18getAggregationTypeAA0gH0OyF", + "mangledName": "$s11VideoSDKRTC20CounterSumAggregatorC18getAggregationTypeAA0gH0OyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20CounterSumAggregatorC", + "mangledName": "$s11VideoSDKRTC20CounterSumAggregatorC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:11VideoSDKRTC10AggregatorC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.Aggregator<τ_0_0>" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "CustomRTCMediaStream", + "printedName": "CustomRTCMediaStream", + "declKind": "Class", + "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC", + "mangledName": "$s11VideoSDKRTC20CustomRTCMediaStreamC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CustomVideoTrackConfig", + "printedName": "CustomVideoTrackConfig", + "children": [ + { + "kind": "Var", + "name": "h90p_w160p", + "printedName": "h90p_w160p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO10h90p_w160pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO10h90p_w160pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h180p_w320p", + "printedName": "h180p_w320p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h180p_w320pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h180p_w320pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h216p_w384p", + "printedName": "h216p_w384p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h216p_w384pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h216p_w384pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h360p_w640p", + "printedName": "h360p_w640p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h360p_w640pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h360p_w640pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h540p_w960p", + "printedName": "h540p_w960p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h540p_w960pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h540p_w960pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h720p_w1280p", + "printedName": "h720p_w1280p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO12h720p_w1280pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO12h720p_w1280pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h1080p_w1920p", + "printedName": "h1080p_w1920p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1920pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1920pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h1440p_w2560p", + "printedName": "h1440p_w2560p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w2560pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w2560pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h2160p_w3840p", + "printedName": "h2160p_w3840p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h2160p_w3840pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h2160p_w3840pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h120p_w160p", + "printedName": "h120p_w160p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h120p_w160pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h120p_w160pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h180p_w240p", + "printedName": "h180p_w240p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h180p_w240pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h180p_w240pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h240p_w320p", + "printedName": "h240p_w320p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h240p_w320pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h240p_w320pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h360p_w480p", + "printedName": "h360p_w480p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h360p_w480pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h360p_w480pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h480p_w640p", + "printedName": "h480p_w640p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h480p_w640pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h480p_w640pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h540p_w720p", + "printedName": "h540p_w720p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h540p_w720pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h540p_w720pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h720p_w960p", + "printedName": "h720p_w960p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h720p_w960pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h720p_w960pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h1080p_w1440p", + "printedName": "h1080p_w1440p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1440pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1440pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h1440p_w1920p", + "printedName": "h1440p_w1920p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w1920pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w1920pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultAggregation", + "printedName": "DefaultAggregation", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAggregation", + "printedName": "VideoSDKRTC.DefaultAggregation", + "usr": "s:11VideoSDKRTC18DefaultAggregationC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18DefaultAggregationC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC18DefaultAggregationC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAggregation", + "printedName": "VideoSDKRTC.DefaultAggregation", + "usr": "s:11VideoSDKRTC18DefaultAggregationC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18DefaultAggregationC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC18DefaultAggregationC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createAggregator", + "printedName": "createAggregator(descriptor:exemplarFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableAggregator", + "printedName": "VideoSDKRTC.StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DefaultAggregationC16createAggregator10descriptor14exemplarFilterAA06StableF0_pAA20InstrumentDescriptorV_AA08ExemplarI0_ptF", + "mangledName": "$s11VideoSDKRTC18DefaultAggregationC16createAggregator10descriptor14exemplarFilterAA06StableF0_pAA20InstrumentDescriptorV_AA08ExemplarI0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isCompatible", + "printedName": "isCompatible(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DefaultAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "mangledName": "$s11VideoSDKRTC18DefaultAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18DefaultAggregationC", + "mangledName": "$s11VideoSDKRTC18DefaultAggregationC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Aggregation", + "printedName": "Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP", + "mangledName": "$s11VideoSDKRTC11AggregationP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultBaggage", + "printedName": "DefaultBaggage", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(entries:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultBaggage", + "printedName": "VideoSDKRTC.DefaultBaggage", + "usr": "s:11VideoSDKRTC14DefaultBaggageC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[VideoSDKRTC.EntryKey : VideoSDKRTC.Entry?]", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Entry?", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14DefaultBaggageC7entriesACSDyAA8EntryKeyVAA0F0VSgG_tcfc", + "mangledName": "$s11VideoSDKRTC14DefaultBaggageC7entriesACSDyAA8EntryKeyVAA0F0VSgG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "baggageBuilder", + "printedName": "baggageBuilder()", + "children": [ + { + "kind": "TypeNominal", + "name": "BaggageBuilder", + "printedName": "VideoSDKRTC.BaggageBuilder", + "usr": "s:11VideoSDKRTC14BaggageBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DefaultBaggageC14baggageBuilderAA0dF0_pyFZ", + "mangledName": "$s11VideoSDKRTC14DefaultBaggageC14baggageBuilderAA0dF0_pyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getEntries", + "printedName": "getEntries()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Entry]", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DefaultBaggageC10getEntriesSayAA5EntryVGyF", + "mangledName": "$s11VideoSDKRTC14DefaultBaggageC10getEntriesSayAA5EntryVGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getEntryValue", + "printedName": "getEntryValue(key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DefaultBaggageC13getEntryValue3keyAA0fG0VSgAA0F3KeyV_tF", + "mangledName": "$s11VideoSDKRTC14DefaultBaggageC13getEntryValue3keyAA0fG0VSgAA0F3KeyV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DefaultBaggage", + "printedName": "VideoSDKRTC.DefaultBaggage", + "usr": "s:11VideoSDKRTC14DefaultBaggageC" + }, + { + "kind": "TypeNominal", + "name": "DefaultBaggage", + "printedName": "VideoSDKRTC.DefaultBaggage", + "usr": "s:11VideoSDKRTC14DefaultBaggageC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DefaultBaggageC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC14DefaultBaggageC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC14DefaultBaggageC", + "mangledName": "$s11VideoSDKRTC14DefaultBaggageC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Baggage", + "printedName": "Baggage", + "usr": "s:11VideoSDKRTC7BaggageP", + "mangledName": "$s11VideoSDKRTC7BaggageP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultBaggageBuilder", + "printedName": "DefaultBaggageBuilder", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultBaggageBuilder", + "printedName": "VideoSDKRTC.DefaultBaggageBuilder", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderCACycfc", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setParent", + "printedName": "setParent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Baggage?", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC9setParentyACXDAA0D0_pSgF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderC9setParentyACXDAA0D0_pSgF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setNoParent", + "printedName": "setNoParent()", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC11setNoParentACXDyF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderC11setNoParentACXDyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "put", + "printedName": "put(key:value:metadata:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + }, + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC3put3key5value8metadataACXDAA8EntryKeyV_AA0J5ValueVAA0J8MetadataVSgtF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderC3put3key5value8metadataACXDAA8EntryKeyV_AA0J5ValueVAA0J8MetadataVSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "put", + "printedName": "put(key:value:metadata:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC3put3key5value8metadataACXDSS_S2SSgtF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderC3put3key5value8metadataACXDSS_S2SSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "remove", + "printedName": "remove(key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC6remove3keyACXDAA8EntryKeyV_tF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderC6remove3keyACXDAA8EntryKeyV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC5buildAA0D0_pyF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderC5buildAA0D0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "BaggageBuilder", + "printedName": "BaggageBuilder", + "usr": "s:11VideoSDKRTC14BaggageBuilderP", + "mangledName": "$s11VideoSDKRTC14BaggageBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultBaggageManager", + "printedName": "DefaultBaggageManager", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultBaggageManager", + "printedName": "VideoSDKRTC.DefaultBaggageManager", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageManagerC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultBaggageManager", + "printedName": "VideoSDKRTC.DefaultBaggageManager", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageManagerC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DefaultBaggageManager", + "printedName": "VideoSDKRTC.DefaultBaggageManager", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC8instanceACvsZ", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageManagerC8instanceACvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC8instanceACvMZ", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageManagerC8instanceACvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "baggageBuilder", + "printedName": "baggageBuilder()", + "children": [ + { + "kind": "TypeNominal", + "name": "BaggageBuilder", + "printedName": "VideoSDKRTC.BaggageBuilder", + "usr": "s:11VideoSDKRTC14BaggageBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC14baggageBuilderAA0dG0_pyF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageManagerC14baggageBuilderAA0dG0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentBaggage", + "printedName": "getCurrentBaggage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Baggage?", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC010getCurrentD0AA0D0_pSgyF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageManagerC010getCurrentD0AA0D0_pSgyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageManagerC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "BaggageManager", + "printedName": "BaggageManager", + "usr": "s:11VideoSDKRTC14BaggageManagerP", + "mangledName": "$s11VideoSDKRTC14BaggageManagerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultContextPropagators", + "printedName": "DefaultContextPropagators", + "children": [ + { + "kind": "Var", + "name": "textMapPropagator", + "printedName": "textMapPropagator", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvp", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvg", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvs", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvM", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "textMapBaggagePropagator", + "printedName": "textMapBaggagePropagator", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapBaggagePropagator", + "printedName": "VideoSDKRTC.TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvp", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapBaggagePropagator", + "printedName": "VideoSDKRTC.TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvg", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TextMapBaggagePropagator", + "printedName": "VideoSDKRTC.TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvs", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvM", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultContextPropagators", + "printedName": "VideoSDKRTC.DefaultContextPropagators", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsVACycfc", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(textPropagators:baggagePropagator:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultContextPropagators", + "printedName": "VideoSDKRTC.DefaultContextPropagators", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.TextMapPropagator]", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "TextMapBaggagePropagator", + "printedName": "VideoSDKRTC.TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV04textE017baggagePropagatorACSayAA07TextMapH0_pG_AA0ij7BaggageH0_ptcfc", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV04textE017baggagePropagatorACSayAA07TextMapH0_pG_AA0ij7BaggageH0_ptcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addTextMapPropagator", + "printedName": "addTextMapPropagator(textFormat:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV20addTextMapPropagator10textFormatyAA0ghI0_p_tF", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV20addTextMapPropagator10textFormatyAA0ghI0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ContextPropagators", + "printedName": "ContextPropagators", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP", + "mangledName": "$s11VideoSDKRTC18ContextPropagatorsP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "children": [ + { + "kind": "Function", + "name": "eventBuilder", + "printedName": "eventBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "EventBuilder", + "printedName": "VideoSDKRTC.EventBuilder", + "usr": "s:11VideoSDKRTC12EventBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13DefaultLoggerC12eventBuilder4nameAA05EventF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC13DefaultLoggerC12eventBuilder4nameAA05EventF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logRecordBuilder", + "printedName": "logRecordBuilder()", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordBuilder", + "printedName": "VideoSDKRTC.LogRecordBuilder", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13DefaultLoggerC16logRecordBuilderAA03LogfG0_pyF", + "mangledName": "$s11VideoSDKRTC13DefaultLoggerC16logRecordBuilderAA03LogfG0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC13DefaultLoggerC", + "mangledName": "$s11VideoSDKRTC13DefaultLoggerC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Logger", + "printedName": "Logger", + "usr": "s:11VideoSDKRTC6LoggerP", + "mangledName": "$s11VideoSDKRTC6LoggerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultLoggerProvider", + "printedName": "DefaultLoggerProvider", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerProvider", + "printedName": "VideoSDKRTC.LoggerProvider", + "usr": "s:11VideoSDKRTC14LoggerProviderP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21DefaultLoggerProviderC8instanceAA0dE0_pvpZ", + "mangledName": "$s11VideoSDKRTC21DefaultLoggerProviderC8instanceAA0dE0_pvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerProvider", + "printedName": "VideoSDKRTC.LoggerProvider", + "usr": "s:11VideoSDKRTC14LoggerProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21DefaultLoggerProviderC8instanceAA0dE0_pvgZ", + "mangledName": "$s11VideoSDKRTC21DefaultLoggerProviderC8instanceAA0dE0_pvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationScopeName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "VideoSDKRTC.Logger", + "usr": "s:11VideoSDKRTC6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultLoggerProviderC3get24instrumentationScopeNameAA0D0_pSS_tF", + "mangledName": "$s11VideoSDKRTC21DefaultLoggerProviderC3get24instrumentationScopeNameAA0D0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loggerBuilder", + "printedName": "loggerBuilder(instrumentationScopeName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerBuilder", + "printedName": "VideoSDKRTC.LoggerBuilder", + "usr": "s:11VideoSDKRTC13LoggerBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultLoggerProviderC13loggerBuilder24instrumentationScopeNameAA0dG0_pSS_tF", + "mangledName": "$s11VideoSDKRTC21DefaultLoggerProviderC13loggerBuilder24instrumentationScopeNameAA0dG0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21DefaultLoggerProviderC", + "mangledName": "$s11VideoSDKRTC21DefaultLoggerProviderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LoggerProvider", + "printedName": "LoggerProvider", + "usr": "s:11VideoSDKRTC14LoggerProviderP", + "mangledName": "$s11VideoSDKRTC14LoggerProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultMeterProvider", + "printedName": "DefaultMeterProvider", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvpZ", + "mangledName": "$s11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvgZ", + "mangledName": "$s11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvsZ", + "mangledName": "$s11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvMZ", + "mangledName": "$s11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "setDefault", + "printedName": "setDefault(meterFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20DefaultMeterProviderC03setC012meterFactoryyAA0dE0_p_tFZ", + "mangledName": "$s11VideoSDKRTC20DefaultMeterProviderC03setC012meterFactoryyAA0dE0_p_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationName:instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Meter", + "printedName": "VideoSDKRTC.Meter", + "usr": "s:11VideoSDKRTC5MeterP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20DefaultMeterProviderC3get19instrumentationName0G7VersionAA0D0_pSS_SSSgtF", + "mangledName": "$s11VideoSDKRTC20DefaultMeterProviderC3get19instrumentationName0G7VersionAA0D0_pSS_SSSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20DefaultMeterProviderC", + "mangledName": "$s11VideoSDKRTC20DefaultMeterProviderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "MeterProvider", + "printedName": "MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP", + "mangledName": "$s11VideoSDKRTC13MeterProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultStableMeter", + "printedName": "DefaultStableMeter", + "children": [ + { + "kind": "Function", + "name": "counterBuilder", + "printedName": "counterBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LongCounterBuilder", + "printedName": "VideoSDKRTC.LongCounterBuilder", + "usr": "s:11VideoSDKRTC18LongCounterBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DefaultStableMeterC14counterBuilder4nameAA011LongCounterG0_pSS_tF", + "mangledName": "$s11VideoSDKRTC18DefaultStableMeterC14counterBuilder4nameAA011LongCounterG0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "upDownCounterBuilder", + "printedName": "upDownCounterBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LongUpDownCounterBuilder", + "printedName": "VideoSDKRTC.LongUpDownCounterBuilder", + "usr": "s:11VideoSDKRTC24LongUpDownCounterBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DefaultStableMeterC20upDownCounterBuilder4nameAA06LongUpghI0_pSS_tF", + "mangledName": "$s11VideoSDKRTC18DefaultStableMeterC20upDownCounterBuilder4nameAA06LongUpghI0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "histogramBuilder", + "printedName": "histogramBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleHistogramBuilder", + "printedName": "VideoSDKRTC.DoubleHistogramBuilder", + "usr": "s:11VideoSDKRTC22DoubleHistogramBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DefaultStableMeterC16histogramBuilder4nameAA015DoubleHistogramG0_pSS_tF", + "mangledName": "$s11VideoSDKRTC18DefaultStableMeterC16histogramBuilder4nameAA015DoubleHistogramG0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "gaugeBuilder", + "printedName": "gaugeBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleGaugeBuilder", + "printedName": "VideoSDKRTC.DoubleGaugeBuilder", + "usr": "s:11VideoSDKRTC18DoubleGaugeBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DefaultStableMeterC12gaugeBuilder4nameAA011DoubleGaugeG0_pSS_tF", + "mangledName": "$s11VideoSDKRTC18DefaultStableMeterC12gaugeBuilder4nameAA011DoubleGaugeG0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18DefaultStableMeterC", + "mangledName": "$s11VideoSDKRTC18DefaultStableMeterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "StableMeter", + "printedName": "StableMeter", + "usr": "s:11VideoSDKRTC11StableMeterP", + "mangledName": "$s11VideoSDKRTC11StableMeterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultStableMeterProvider", + "printedName": "DefaultStableMeterProvider", + "children": [ + { + "kind": "Function", + "name": "noop", + "printedName": "noop()", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterBuilder", + "printedName": "VideoSDKRTC.MeterBuilder", + "usr": "s:11VideoSDKRTC12MeterBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC4noopAA0E7Builder_pyFZ", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC4noopAA0E7Builder_pyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeter", + "printedName": "VideoSDKRTC.StableMeter", + "usr": "s:11VideoSDKRTC11StableMeterP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC3get4nameAA0dE0_pSS_tF", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC3get4nameAA0dE0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "meterBuilder", + "printedName": "meterBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterBuilder", + "printedName": "VideoSDKRTC.MeterBuilder", + "usr": "s:11VideoSDKRTC12MeterBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC12meterBuilder4nameAA0eH0_pSS_tF", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC12meterBuilder4nameAA0eH0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeterProvider", + "printedName": "VideoSDKRTC.StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvpZ", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeterProvider", + "printedName": "VideoSDKRTC.StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvgZ", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "StableMeterProvider", + "printedName": "VideoSDKRTC.StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvsZ", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvMZ", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "StableMeterProvider", + "printedName": "StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP", + "mangledName": "$s11VideoSDKRTC19StableMeterProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultTracer", + "printedName": "DefaultTracer", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultTracer", + "printedName": "VideoSDKRTC.DefaultTracer", + "usr": "s:11VideoSDKRTC13DefaultTracerC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13DefaultTracerC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC13DefaultTracerC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultTracer", + "printedName": "VideoSDKRTC.DefaultTracer", + "usr": "s:11VideoSDKRTC13DefaultTracerC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13DefaultTracerC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC13DefaultTracerC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DefaultTracer", + "printedName": "VideoSDKRTC.DefaultTracer", + "usr": "s:11VideoSDKRTC13DefaultTracerC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13DefaultTracerC8instanceACvsZ", + "mangledName": "$s11VideoSDKRTC13DefaultTracerC8instanceACvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13DefaultTracerC8instanceACvMZ", + "mangledName": "$s11VideoSDKRTC13DefaultTracerC8instanceACvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "spanBuilder", + "printedName": "spanBuilder(spanName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanBuilder", + "printedName": "VideoSDKRTC.SpanBuilder", + "usr": "s:11VideoSDKRTC11SpanBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13DefaultTracerC11spanBuilder0E4NameAA04SpanF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC13DefaultTracerC11spanBuilder0E4NameAA04SpanF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC13DefaultTracerC", + "mangledName": "$s11VideoSDKRTC13DefaultTracerC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Tracer", + "printedName": "Tracer", + "usr": "s:11VideoSDKRTC6TracerP", + "mangledName": "$s11VideoSDKRTC6TracerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultTracerProvider", + "printedName": "DefaultTracerProvider", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultTracerProvider", + "printedName": "VideoSDKRTC.DefaultTracerProvider", + "usr": "s:11VideoSDKRTC21DefaultTracerProviderC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21DefaultTracerProviderC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC21DefaultTracerProviderC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultTracerProvider", + "printedName": "VideoSDKRTC.DefaultTracerProvider", + "usr": "s:11VideoSDKRTC21DefaultTracerProviderC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21DefaultTracerProviderC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC21DefaultTracerProviderC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationName:instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Tracer", + "printedName": "VideoSDKRTC.Tracer", + "usr": "s:11VideoSDKRTC6TracerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultTracerProviderC3get19instrumentationName0G7VersionAA0D0_pSS_SSSgtF", + "mangledName": "$s11VideoSDKRTC21DefaultTracerProviderC3get19instrumentationName0G7VersionAA0D0_pSS_SSSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21DefaultTracerProviderC", + "mangledName": "$s11VideoSDKRTC21DefaultTracerProviderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "TracerProvider", + "printedName": "TracerProvider", + "usr": "s:11VideoSDKRTC14TracerProviderP", + "mangledName": "$s11VideoSDKRTC14TracerProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FileDescriptorSet", + "printedName": "Google_Protobuf_FileDescriptorSet", + "children": [ + { + "kind": "Var", + "name": "file", + "printedName": "file", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FileDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FileDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FileDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorSet", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetVACycfc", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorSet", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorSet", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FileDescriptorProto", + "printedName": "Google_Protobuf_FileDescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "package", + "printedName": "package", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPackage", + "printedName": "hasPackage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasPackageSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasPackageSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasPackageSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasPackageSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPackage", + "printedName": "clearPackage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV12clearPackageyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV12clearPackageyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "dependency", + "printedName": "dependency", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "publicDependency", + "printedName": "publicDependency", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "weakDependency", + "printedName": "weakDependency", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "messageType", + "printedName": "messageType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enumType", + "printedName": "enumType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "service", + "printedName": "service", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "extension", + "printedName": "extension", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "sourceCodeInfo", + "printedName": "sourceCodeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0Vvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0Vvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0Vvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0VvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSourceCodeInfo", + "printedName": "hasSourceCodeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17hasSourceCodeInfoSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17hasSourceCodeInfoSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17hasSourceCodeInfoSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17hasSourceCodeInfoSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSourceCodeInfo", + "printedName": "clearSourceCodeInfo()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV19clearSourceCodeInfoyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV19clearSourceCodeInfoyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "syntax", + "printedName": "syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSyntax", + "printedName": "hasSyntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hasSyntaxSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hasSyntaxSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hasSyntaxSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hasSyntaxSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSyntax", + "printedName": "clearSyntax()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11clearSyntaxyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11clearSyntaxyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "edition", + "printedName": "edition", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasEdition", + "printedName": "hasEdition", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasEditionSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasEditionSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasEditionSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasEditionSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearEdition", + "printedName": "clearEdition()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV12clearEditionyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV12clearEditionyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "Google_Protobuf_DescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "field", + "printedName": "field", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "extension", + "printedName": "extension", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nestedType", + "printedName": "nestedType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enumType", + "printedName": "enumType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "extensionRange", + "printedName": "extensionRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "oneofDecl", + "printedName": "oneofDecl", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_OneofDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_OneofDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_OneofDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MessageOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MessageOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MessageOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MessageOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MessageOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MessageOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "reservedRange", + "printedName": "reservedRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reservedName", + "printedName": "reservedName", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ExtensionRange", + "printedName": "ExtensionRange", + "children": [ + { + "kind": "Var", + "name": "start", + "printedName": "start", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32Vvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32Vvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32Vvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32VvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasStart", + "printedName": "hasStart", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8hasStartSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8hasStartSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8hasStartSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8hasStartSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearStart", + "printedName": "clearStart()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV10clearStartyyF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV10clearStartyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "end", + "printedName": "end", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32Vvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32Vvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32Vvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32VvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasEnd", + "printedName": "hasEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV6hasEndSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV6hasEndSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV6hasEndSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV6hasEndSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearEnd", + "printedName": "clearEnd()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8clearEndyyF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8clearEndyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ExtensionRangeOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ExtensionRangeOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ExtensionRangeOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeVAEycfc", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExtensionRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV" + }, + { + "kind": "TypeNominal", + "name": "ExtensionRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ReservedRange", + "printedName": "ReservedRange", + "children": [ + { + "kind": "Var", + "name": "start", + "printedName": "start", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32Vvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32Vvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32Vvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32VvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasStart", + "printedName": "hasStart", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8hasStartSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8hasStartSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8hasStartSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8hasStartSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearStart", + "printedName": "clearStart()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV10clearStartyyF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV10clearStartyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "end", + "printedName": "end", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32Vvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32Vvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32Vvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32VvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasEnd", + "printedName": "hasEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV6hasEndSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV6hasEndSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV6hasEndSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV6hasEndSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearEnd", + "printedName": "clearEnd()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8clearEndyyF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8clearEndyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeVAEycfc", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV" + }, + { + "kind": "TypeNominal", + "name": "ReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_ExtensionRangeOptions", + "printedName": "Google_Protobuf_ExtensionRangeOptions", + "children": [ + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "declaration", + "printedName": "declaration", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration]", + "children": [ + { + "kind": "TypeNominal", + "name": "Declaration", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration]", + "children": [ + { + "kind": "TypeNominal", + "name": "Declaration", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration]", + "children": [ + { + "kind": "TypeNominal", + "name": "Declaration", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "verification", + "printedName": "verification", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasVerification", + "printedName": "hasVerification", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV15hasVerificationSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV15hasVerificationSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV15hasVerificationSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV15hasVerificationSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearVerification", + "printedName": "clearVerification()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17clearVerificationyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17clearVerificationyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "VerificationState", + "printedName": "VerificationState", + "children": [ + { + "kind": "Var", + "name": "declaration", + "printedName": "declaration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState.Type) -> VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO11declarationyA2EmF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO11declarationyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unverified", + "printedName": "unverified", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState.Type) -> VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO10unverifiedyA2EmF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO10unverifiedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateOAEycfc", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState?", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState]", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState]", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState]", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Declaration", + "printedName": "Declaration", + "children": [ + { + "kind": "Var", + "name": "number", + "printedName": "number", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32Vvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32Vvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32Vvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32VvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasNumber", + "printedName": "hasNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hasNumberSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hasNumberSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hasNumberSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hasNumberSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearNumber", + "printedName": "clearNumber()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11clearNumberyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11clearNumberyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "fullName", + "printedName": "fullName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFullName", + "printedName": "hasFullName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasFullNameSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasFullNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasFullNameSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasFullNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFullName", + "printedName": "clearFullName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13clearFullNameyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13clearFullNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasType", + "printedName": "hasType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV7hasTypeSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV7hasTypeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV7hasTypeSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV7hasTypeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearType", + "printedName": "clearType()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9clearTypeyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9clearTypeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "reserved", + "printedName": "reserved", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasReserved", + "printedName": "hasReserved", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasReservedSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasReservedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasReservedSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasReservedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearReserved", + "printedName": "clearReserved()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13clearReservedyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13clearReservedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "repeated", + "printedName": "repeated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasRepeated", + "printedName": "hasRepeated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasRepeatedSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasRepeatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasRepeatedSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasRepeatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearRepeated", + "printedName": "clearRepeated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13clearRepeatedyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13clearRepeatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Declaration", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationVAEycfc", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Declaration", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV" + }, + { + "kind": "TypeNominal", + "name": "Declaration", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ExtensionRangeOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ExtensionRangeOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ExtensionRangeOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "Google_Protobuf_FieldDescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "number", + "printedName": "number", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32Vvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32Vvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32Vvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32VvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasNumber", + "printedName": "hasNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hasNumberSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hasNumberSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hasNumberSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hasNumberSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearNumber", + "printedName": "clearNumber()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11clearNumberyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11clearNumberyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "label", + "printedName": "label", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasLabel", + "printedName": "hasLabel", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8hasLabelSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8hasLabelSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8hasLabelSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8hasLabelSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearLabel", + "printedName": "clearLabel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10clearLabelyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10clearLabelyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasType", + "printedName": "hasType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasTypeSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasTypeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasTypeSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasTypeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearType", + "printedName": "clearType()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9clearTypeyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9clearTypeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "typeName", + "printedName": "typeName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasTypeName", + "printedName": "hasTypeName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasTypeNameSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasTypeNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasTypeNameSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasTypeNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearTypeName", + "printedName": "clearTypeName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13clearTypeNameyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13clearTypeNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "extendee", + "printedName": "extendee", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasExtendee", + "printedName": "hasExtendee", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasExtendeeSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasExtendeeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasExtendeeSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasExtendeeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearExtendee", + "printedName": "clearExtendee()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13clearExtendeeyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13clearExtendeeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "defaultValue", + "printedName": "defaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDefaultValue", + "printedName": "hasDefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV15hasDefaultValueSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV15hasDefaultValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV15hasDefaultValueSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV15hasDefaultValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDefaultValue", + "printedName": "clearDefaultValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17clearDefaultValueyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17clearDefaultValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "oneofIndex", + "printedName": "oneofIndex", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32Vvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32Vvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32Vvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32VvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOneofIndex", + "printedName": "hasOneofIndex", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13hasOneofIndexSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13hasOneofIndexSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13hasOneofIndexSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13hasOneofIndexSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOneofIndex", + "printedName": "clearOneofIndex()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV15clearOneofIndexyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV15clearOneofIndexyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "jsonName", + "printedName": "jsonName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJsonName", + "printedName": "hasJsonName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasJsonNameSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasJsonNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasJsonNameSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasJsonNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJsonName", + "printedName": "clearJsonName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13clearJsonNameyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13clearJsonNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "proto3Optional", + "printedName": "proto3Optional", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasProto3Optional", + "printedName": "hasProto3Optional", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17hasProto3OptionalSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17hasProto3OptionalSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17hasProto3OptionalSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17hasProto3OptionalSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearProto3Optional", + "printedName": "clearProto3Optional()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV19clearProto3OptionalyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV19clearProto3OptionalyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TypeEnum", + "printedName": "TypeEnum", + "children": [ + { + "kind": "Var", + "name": "double", + "printedName": "double", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6doubleyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6doubleyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "float", + "printedName": "float", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5floatyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5floatyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "int64", + "printedName": "int64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5int64yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5int64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "uint64", + "printedName": "uint64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6uint64yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6uint64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "int32", + "printedName": "int32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5int32yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5int32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fixed64", + "printedName": "fixed64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO7fixed64yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO7fixed64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fixed32", + "printedName": "fixed32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO7fixed32yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO7fixed32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "bool", + "printedName": "bool", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO4boolyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO4boolyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "string", + "printedName": "string", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6stringyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6stringyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "group", + "printedName": "group", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5groupyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5groupyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO7messageyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO7messageyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "bytes", + "printedName": "bytes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5bytesyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5bytesyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "uint32", + "printedName": "uint32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6uint32yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6uint32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "enum", + "printedName": "enum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO4enumyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO4enumyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "sfixed32", + "printedName": "sfixed32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8sfixed32yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8sfixed32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "sfixed64", + "printedName": "sfixed64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8sfixed64yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8sfixed64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "sint32", + "printedName": "sint32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6sint32yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6sint32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "sint64", + "printedName": "sint64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6sint64yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6sint64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumOAEycfc", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum]", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum]", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum]", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Label", + "printedName": "Label", + "children": [ + { + "kind": "Var", + "name": "optional", + "printedName": "optional", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8optionalyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8optionalyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "required", + "printedName": "required", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8requiredyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8requiredyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "repeated", + "printedName": "repeated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8repeatedyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8repeatedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelOAEycfc", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label?", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label]", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label]", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label]", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_OneofDescriptorProto", + "printedName": "Google_Protobuf_OneofDescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "Google_Protobuf_EnumDescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "reservedRange", + "printedName": "reservedRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reservedName", + "printedName": "reservedName", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "EnumReservedRange", + "printedName": "EnumReservedRange", + "children": [ + { + "kind": "Var", + "name": "start", + "printedName": "start", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32Vvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32Vvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32Vvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32VvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasStart", + "printedName": "hasStart", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8hasStartSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8hasStartSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8hasStartSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8hasStartSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearStart", + "printedName": "clearStart()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV10clearStartyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV10clearStartyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "end", + "printedName": "end", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32Vvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32Vvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32Vvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32VvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasEnd", + "printedName": "hasEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV6hasEndSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV6hasEndSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV6hasEndSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV6hasEndSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearEnd", + "printedName": "clearEnd()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8clearEndyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8clearEndyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeVAEycfc", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "EnumReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV" + }, + { + "kind": "TypeNominal", + "name": "EnumReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_EnumValueDescriptorProto", + "printedName": "Google_Protobuf_EnumValueDescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "number", + "printedName": "number", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32Vvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32Vvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32Vvs", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32VvM", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasNumber", + "printedName": "hasNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV9hasNumberSbvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV9hasNumberSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV9hasNumberSbvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV9hasNumberSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearNumber", + "printedName": "clearNumber()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV11clearNumberyyF", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV11clearNumberyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueOptions", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueOptions", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueOptions", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvs", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvM", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_ServiceDescriptorProto", + "printedName": "Google_Protobuf_ServiceDescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "method", + "printedName": "method", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_MethodDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodDescriptorProto", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_MethodDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodDescriptorProto", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_MethodDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodDescriptorProto", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvs", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvM", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_MethodDescriptorProto", + "printedName": "Google_Protobuf_MethodDescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "inputType", + "printedName": "inputType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasInputType", + "printedName": "hasInputType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV12hasInputTypeSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV12hasInputTypeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV12hasInputTypeSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV12hasInputTypeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearInputType", + "printedName": "clearInputType()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV14clearInputTypeyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV14clearInputTypeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "outputType", + "printedName": "outputType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOutputType", + "printedName": "hasOutputType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13hasOutputTypeSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13hasOutputTypeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13hasOutputTypeSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13hasOutputTypeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOutputType", + "printedName": "clearOutputType()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clearOutputTypeyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clearOutputTypeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "clientStreaming", + "printedName": "clientStreaming", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasClientStreaming", + "printedName": "hasClientStreaming", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasClientStreamingSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasClientStreamingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasClientStreamingSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasClientStreamingSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearClientStreaming", + "printedName": "clearClientStreaming()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV20clearClientStreamingyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV20clearClientStreamingyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "serverStreaming", + "printedName": "serverStreaming", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasServerStreaming", + "printedName": "hasServerStreaming", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasServerStreamingSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasServerStreamingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasServerStreamingSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasServerStreamingSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearServerStreaming", + "printedName": "clearServerStreaming()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV20clearServerStreamingyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV20clearServerStreamingyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodDescriptorProto", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodDescriptorProto", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodDescriptorProto", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FileOptions", + "printedName": "Google_Protobuf_FileOptions", + "children": [ + { + "kind": "Var", + "name": "javaPackage", + "printedName": "javaPackage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJavaPackage", + "printedName": "hasJavaPackage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasJavaPackageSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasJavaPackageSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasJavaPackageSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasJavaPackageSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJavaPackage", + "printedName": "clearJavaPackage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearJavaPackageyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearJavaPackageyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "javaOuterClassname", + "printedName": "javaOuterClassname", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJavaOuterClassname", + "printedName": "hasJavaOuterClassname", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasJavaOuterClassnameSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasJavaOuterClassnameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasJavaOuterClassnameSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasJavaOuterClassnameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJavaOuterClassname", + "printedName": "clearJavaOuterClassname()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV23clearJavaOuterClassnameyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV23clearJavaOuterClassnameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "javaMultipleFiles", + "printedName": "javaMultipleFiles", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJavaMultipleFiles", + "printedName": "hasJavaMultipleFiles", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasJavaMultipleFilesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasJavaMultipleFilesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasJavaMultipleFilesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasJavaMultipleFilesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJavaMultipleFiles", + "printedName": "clearJavaMultipleFiles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV22clearJavaMultipleFilesyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV22clearJavaMultipleFilesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "javaGenerateEqualsAndHash", + "printedName": "javaGenerateEqualsAndHash", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJavaGenerateEqualsAndHash", + "printedName": "hasJavaGenerateEqualsAndHash", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV28hasJavaGenerateEqualsAndHashSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV28hasJavaGenerateEqualsAndHashSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV28hasJavaGenerateEqualsAndHashSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV28hasJavaGenerateEqualsAndHashSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJavaGenerateEqualsAndHash", + "printedName": "clearJavaGenerateEqualsAndHash()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV30clearJavaGenerateEqualsAndHashyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV30clearJavaGenerateEqualsAndHashyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "javaStringCheckUtf8", + "printedName": "javaStringCheckUtf8", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8Sbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8Sbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8Sbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8Sbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8SbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8SbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJavaStringCheckUtf8", + "printedName": "hasJavaStringCheckUtf8", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaStringCheckUtf8Sbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaStringCheckUtf8Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaStringCheckUtf8Sbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaStringCheckUtf8Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJavaStringCheckUtf8", + "printedName": "clearJavaStringCheckUtf8()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV24clearJavaStringCheckUtf8yyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV24clearJavaStringCheckUtf8yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "optimizeFor", + "printedName": "optimizeFor", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptimizeFor", + "printedName": "hasOptimizeFor", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasOptimizeForSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasOptimizeForSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasOptimizeForSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasOptimizeForSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptimizeFor", + "printedName": "clearOptimizeFor()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearOptimizeForyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearOptimizeForyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "goPackage", + "printedName": "goPackage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasGoPackage", + "printedName": "hasGoPackage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12hasGoPackageSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12hasGoPackageSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12hasGoPackageSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12hasGoPackageSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearGoPackage", + "printedName": "clearGoPackage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14clearGoPackageyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14clearGoPackageyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "ccGenericServices", + "printedName": "ccGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasCcGenericServices", + "printedName": "hasCcGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasCcGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasCcGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasCcGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasCcGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCcGenericServices", + "printedName": "clearCcGenericServices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV22clearCcGenericServicesyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV22clearCcGenericServicesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "javaGenericServices", + "printedName": "javaGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJavaGenericServices", + "printedName": "hasJavaGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJavaGenericServices", + "printedName": "clearJavaGenericServices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV24clearJavaGenericServicesyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV24clearJavaGenericServicesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "pyGenericServices", + "printedName": "pyGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPyGenericServices", + "printedName": "hasPyGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasPyGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasPyGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasPyGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasPyGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPyGenericServices", + "printedName": "clearPyGenericServices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV22clearPyGenericServicesyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV22clearPyGenericServicesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "phpGenericServices", + "printedName": "phpGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPhpGenericServices", + "printedName": "hasPhpGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasPhpGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasPhpGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasPhpGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasPhpGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPhpGenericServices", + "printedName": "clearPhpGenericServices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV23clearPhpGenericServicesyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV23clearPhpGenericServicesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "deprecated", + "printedName": "deprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecated", + "printedName": "hasDeprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13hasDeprecatedSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13hasDeprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13hasDeprecatedSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13hasDeprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecated", + "printedName": "clearDeprecated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15clearDeprecatedyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15clearDeprecatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "ccEnableArenas", + "printedName": "ccEnableArenas", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasCcEnableArenas", + "printedName": "hasCcEnableArenas", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasCcEnableArenasSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasCcEnableArenasSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasCcEnableArenasSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasCcEnableArenasSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCcEnableArenas", + "printedName": "clearCcEnableArenas()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19clearCcEnableArenasyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19clearCcEnableArenasyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "objcClassPrefix", + "printedName": "objcClassPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasObjcClassPrefix", + "printedName": "hasObjcClassPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasObjcClassPrefixSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasObjcClassPrefixSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasObjcClassPrefixSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasObjcClassPrefixSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearObjcClassPrefix", + "printedName": "clearObjcClassPrefix()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20clearObjcClassPrefixyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20clearObjcClassPrefixyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "csharpNamespace", + "printedName": "csharpNamespace", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasCsharpNamespace", + "printedName": "hasCsharpNamespace", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasCsharpNamespaceSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasCsharpNamespaceSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasCsharpNamespaceSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasCsharpNamespaceSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCsharpNamespace", + "printedName": "clearCsharpNamespace()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20clearCsharpNamespaceyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20clearCsharpNamespaceyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "swiftPrefix", + "printedName": "swiftPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSwiftPrefix", + "printedName": "hasSwiftPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasSwiftPrefixSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasSwiftPrefixSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasSwiftPrefixSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasSwiftPrefixSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSwiftPrefix", + "printedName": "clearSwiftPrefix()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearSwiftPrefixyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearSwiftPrefixyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "phpClassPrefix", + "printedName": "phpClassPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPhpClassPrefix", + "printedName": "hasPhpClassPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasPhpClassPrefixSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasPhpClassPrefixSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasPhpClassPrefixSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasPhpClassPrefixSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPhpClassPrefix", + "printedName": "clearPhpClassPrefix()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19clearPhpClassPrefixyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19clearPhpClassPrefixyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "phpNamespace", + "printedName": "phpNamespace", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPhpNamespace", + "printedName": "hasPhpNamespace", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15hasPhpNamespaceSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15hasPhpNamespaceSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15hasPhpNamespaceSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15hasPhpNamespaceSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPhpNamespace", + "printedName": "clearPhpNamespace()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17clearPhpNamespaceyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17clearPhpNamespaceyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "phpMetadataNamespace", + "printedName": "phpMetadataNamespace", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPhpMetadataNamespace", + "printedName": "hasPhpMetadataNamespace", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV23hasPhpMetadataNamespaceSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV23hasPhpMetadataNamespaceSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV23hasPhpMetadataNamespaceSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV23hasPhpMetadataNamespaceSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPhpMetadataNamespace", + "printedName": "clearPhpMetadataNamespace()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV25clearPhpMetadataNamespaceyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV25clearPhpMetadataNamespaceyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "rubyPackage", + "printedName": "rubyPackage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasRubyPackage", + "printedName": "hasRubyPackage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasRubyPackageSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasRubyPackageSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasRubyPackageSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasRubyPackageSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearRubyPackage", + "printedName": "clearRubyPackage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearRubyPackageyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearRubyPackageyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OptimizeMode", + "printedName": "OptimizeMode", + "children": [ + { + "kind": "Var", + "name": "speed", + "printedName": "speed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode.Type) -> VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO5speedyA2EmF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO5speedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "codeSize", + "printedName": "codeSize", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode.Type) -> VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8codeSizeyA2EmF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8codeSizeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "liteRuntime", + "printedName": "liteRuntime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode.Type) -> VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO11liteRuntimeyA2EmF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO11liteRuntimeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeOAEycfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_MessageOptions", + "printedName": "Google_Protobuf_MessageOptions", + "children": [ + { + "kind": "Var", + "name": "messageSetWireFormat", + "printedName": "messageSetWireFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMessageSetWireFormat", + "printedName": "hasMessageSetWireFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV03hasE13SetWireFormatSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV03hasE13SetWireFormatSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV03hasE13SetWireFormatSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV03hasE13SetWireFormatSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearMessageSetWireFormat", + "printedName": "clearMessageSetWireFormat()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV05clearE13SetWireFormatyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV05clearE13SetWireFormatyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "noStandardDescriptorAccessor", + "printedName": "noStandardDescriptorAccessor", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasNoStandardDescriptorAccessor", + "printedName": "hasNoStandardDescriptorAccessor", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV31hasNoStandardDescriptorAccessorSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV31hasNoStandardDescriptorAccessorSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV31hasNoStandardDescriptorAccessorSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV31hasNoStandardDescriptorAccessorSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearNoStandardDescriptorAccessor", + "printedName": "clearNoStandardDescriptorAccessor()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV33clearNoStandardDescriptorAccessoryyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV33clearNoStandardDescriptorAccessoryyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "deprecated", + "printedName": "deprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecated", + "printedName": "hasDeprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13hasDeprecatedSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13hasDeprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13hasDeprecatedSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13hasDeprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecated", + "printedName": "clearDeprecated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV15clearDeprecatedyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV15clearDeprecatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "mapEntry", + "printedName": "mapEntry", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMapEntry", + "printedName": "hasMapEntry", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasMapEntrySbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasMapEntrySbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasMapEntrySbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasMapEntrySbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearMapEntry", + "printedName": "clearMapEntry()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13clearMapEntryyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13clearMapEntryyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "deprecatedLegacyJsonFieldConflicts", + "printedName": "deprecatedLegacyJsonFieldConflicts", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecatedLegacyJsonFieldConflicts", + "printedName": "hasDeprecatedLegacyJsonFieldConflicts", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecatedLegacyJsonFieldConflicts", + "printedName": "clearDeprecatedLegacyJsonFieldConflicts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV39clearDeprecatedLegacyJsonFieldConflictsyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV39clearDeprecatedLegacyJsonFieldConflictsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MessageOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MessageOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV05protoE4NameSSvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV05protoE4NameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV05protoE4NameSSvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV05protoE4NameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV06decodeE07decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV06decodeE07decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MessageOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MessageOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MessageOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MessageOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FieldOptions", + "printedName": "Google_Protobuf_FieldOptions", + "children": [ + { + "kind": "Var", + "name": "ctype", + "printedName": "ctype", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasCtype", + "printedName": "hasCtype", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV8hasCtypeSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV8hasCtypeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV8hasCtypeSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV8hasCtypeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCtype", + "printedName": "clearCtype()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV10clearCtypeyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV10clearCtypeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "packed", + "printedName": "packed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPacked", + "printedName": "hasPacked", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasPackedSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasPackedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasPackedSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasPackedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPacked", + "printedName": "clearPacked()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11clearPackedyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11clearPackedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "jstype", + "printedName": "jstype", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJstype", + "printedName": "hasJstype", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasJstypeSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasJstypeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasJstypeSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasJstypeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJstype", + "printedName": "clearJstype()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11clearJstypeyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11clearJstypeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "lazy", + "printedName": "lazy", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasLazy", + "printedName": "hasLazy", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasLazySbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasLazySbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasLazySbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasLazySbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearLazy", + "printedName": "clearLazy()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9clearLazyyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9clearLazyyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unverifiedLazy", + "printedName": "unverifiedLazy", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasUnverifiedLazy", + "printedName": "hasUnverifiedLazy", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV17hasUnverifiedLazySbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV17hasUnverifiedLazySbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV17hasUnverifiedLazySbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV17hasUnverifiedLazySbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearUnverifiedLazy", + "printedName": "clearUnverifiedLazy()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV19clearUnverifiedLazyyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV19clearUnverifiedLazyyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "deprecated", + "printedName": "deprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecated", + "printedName": "hasDeprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13hasDeprecatedSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13hasDeprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13hasDeprecatedSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13hasDeprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecated", + "printedName": "clearDeprecated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15clearDeprecatedyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15clearDeprecatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "weak", + "printedName": "weak", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasWeak", + "printedName": "hasWeak", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasWeakSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasWeakSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasWeakSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasWeakSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearWeak", + "printedName": "clearWeak()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9clearWeakyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9clearWeakyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "debugRedact", + "printedName": "debugRedact", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDebugRedact", + "printedName": "hasDebugRedact", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14hasDebugRedactSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14hasDebugRedactSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14hasDebugRedactSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14hasDebugRedactSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDebugRedact", + "printedName": "clearDebugRedact()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16clearDebugRedactyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16clearDebugRedactyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "retention", + "printedName": "retention", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasRetention", + "printedName": "hasRetention", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV12hasRetentionSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV12hasRetentionSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV12hasRetentionSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV12hasRetentionSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearRetention", + "printedName": "clearRetention()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14clearRetentionyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14clearRetentionyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "targets", + "printedName": "targets", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "editionDefaults", + "printedName": "editionDefaults", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault]", + "children": [ + { + "kind": "TypeNominal", + "name": "EditionDefault", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault]", + "children": [ + { + "kind": "TypeNominal", + "name": "EditionDefault", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault]", + "children": [ + { + "kind": "TypeNominal", + "name": "EditionDefault", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CType", + "printedName": "CType", + "children": [ + { + "kind": "Var", + "name": "string", + "printedName": "string", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.CType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO6stringyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO6stringyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cord", + "printedName": "cord", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.CType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO4cordyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO4cordyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "stringPiece", + "printedName": "stringPiece", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.CType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO11stringPieceyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO11stringPieceyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeOAEycfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.CType]", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.CType]", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.CType]", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "JSType", + "printedName": "JSType", + "children": [ + { + "kind": "Var", + "name": "jsNormal", + "printedName": "jsNormal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.JSType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8jsNormalyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8jsNormalyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "jsString", + "printedName": "jsString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.JSType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8jsStringyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8jsStringyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "jsNumber", + "printedName": "jsNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.JSType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8jsNumberyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8jsNumberyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeOAEycfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType?", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.JSType]", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.JSType]", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.JSType]", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OptionRetention", + "printedName": "OptionRetention", + "children": [ + { + "kind": "Var", + "name": "retentionUnknown", + "printedName": "retentionUnknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO16retentionUnknownyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO16retentionUnknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "retentionRuntime", + "printedName": "retentionRuntime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO16retentionRuntimeyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO16retentionRuntimeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "retentionSource", + "printedName": "retentionSource", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO15retentionSourceyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO15retentionSourceyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionOAEycfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention?", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OptionTargetType", + "printedName": "OptionTargetType", + "children": [ + { + "kind": "Var", + "name": "targetTypeUnknown", + "printedName": "targetTypeUnknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI7UnknownyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI7UnknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "targetTypeFile", + "printedName": "targetTypeFile", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI4FileyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI4FileyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeExtensionRange", + "printedName": "targetTypeExtensionRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI14ExtensionRangeyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI14ExtensionRangeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeMessage", + "printedName": "targetTypeMessage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI7MessageyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI7MessageyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeField", + "printedName": "targetTypeField", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetiE0yA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetiE0yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeOneof", + "printedName": "targetTypeOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI5OneofyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI5OneofyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeEnum", + "printedName": "targetTypeEnum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI4EnumyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI4EnumyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeEnumEntry", + "printedName": "targetTypeEnumEntry", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI9EnumEntryyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI9EnumEntryyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeService", + "printedName": "targetTypeService", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI7ServiceyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI7ServiceyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeMethod", + "printedName": "targetTypeMethod", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI6MethodyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI6MethodyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeOAEycfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType?", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "EditionDefault", + "printedName": "EditionDefault", + "children": [ + { + "kind": "Var", + "name": "edition", + "printedName": "edition", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasEdition", + "printedName": "hasEdition", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV03hasG0Sbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV03hasG0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV03hasG0Sbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV03hasG0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearEdition", + "printedName": "clearEdition()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV05clearG0yyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV05clearG0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasValue", + "printedName": "hasValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV8hasValueSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV8hasValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV8hasValueSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV8hasValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearValue", + "printedName": "clearValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV10clearValueyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV10clearValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "EditionDefault", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultVAEycfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "EditionDefault", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV" + }, + { + "kind": "TypeNominal", + "name": "EditionDefault", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_OneofOptions", + "printedName": "Google_Protobuf_OneofOptions", + "children": [ + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_EnumOptions", + "printedName": "Google_Protobuf_EnumOptions", + "children": [ + { + "kind": "Var", + "name": "allowAlias", + "printedName": "allowAlias", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasAllowAlias", + "printedName": "hasAllowAlias", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasAllowAliasSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasAllowAliasSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasAllowAliasSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasAllowAliasSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearAllowAlias", + "printedName": "clearAllowAlias()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV15clearAllowAliasyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV15clearAllowAliasyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "deprecated", + "printedName": "deprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecated", + "printedName": "hasDeprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasDeprecatedSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasDeprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasDeprecatedSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasDeprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecated", + "printedName": "clearDeprecated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV15clearDeprecatedyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV15clearDeprecatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "deprecatedLegacyJsonFieldConflicts", + "printedName": "deprecatedLegacyJsonFieldConflicts", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecatedLegacyJsonFieldConflicts", + "printedName": "hasDeprecatedLegacyJsonFieldConflicts", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecatedLegacyJsonFieldConflicts", + "printedName": "clearDeprecatedLegacyJsonFieldConflicts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV39clearDeprecatedLegacyJsonFieldConflictsyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV39clearDeprecatedLegacyJsonFieldConflictsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_EnumValueOptions", + "printedName": "Google_Protobuf_EnumValueOptions", + "children": [ + { + "kind": "Var", + "name": "deprecated", + "printedName": "deprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvs", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvM", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecated", + "printedName": "hasDeprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13hasDeprecatedSbvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13hasDeprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13hasDeprecatedSbvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13hasDeprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecated", + "printedName": "clearDeprecated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV15clearDeprecatedyyF", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV15clearDeprecatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "debugRedact", + "printedName": "debugRedact", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvs", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvM", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDebugRedact", + "printedName": "hasDebugRedact", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV14hasDebugRedactSbvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV14hasDebugRedactSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV14hasDebugRedactSbvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV14hasDebugRedactSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDebugRedact", + "printedName": "clearDebugRedact()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV16clearDebugRedactyyF", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV16clearDebugRedactyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvs", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvM", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueOptions", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvs", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvM", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueOptions", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueOptions", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_ServiceOptions", + "printedName": "Google_Protobuf_ServiceOptions", + "children": [ + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "deprecated", + "printedName": "deprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecated", + "printedName": "hasDeprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13hasDeprecatedSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13hasDeprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13hasDeprecatedSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13hasDeprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecated", + "printedName": "clearDeprecated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV15clearDeprecatedyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV15clearDeprecatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_MethodOptions", + "printedName": "Google_Protobuf_MethodOptions", + "children": [ + { + "kind": "Var", + "name": "deprecated", + "printedName": "deprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecated", + "printedName": "hasDeprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13hasDeprecatedSbvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13hasDeprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13hasDeprecatedSbvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13hasDeprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecated", + "printedName": "clearDeprecated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV15clearDeprecatedyyF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV15clearDeprecatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "idempotencyLevel", + "printedName": "idempotencyLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0Ovp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0Ovg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0Ovs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0OvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasIdempotencyLevel", + "printedName": "hasIdempotencyLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV19hasIdempotencyLevelSbvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV19hasIdempotencyLevelSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV19hasIdempotencyLevelSbvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV19hasIdempotencyLevelSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearIdempotencyLevel", + "printedName": "clearIdempotencyLevel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV21clearIdempotencyLevelyyF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV21clearIdempotencyLevelyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "IdempotencyLevel", + "printedName": "IdempotencyLevel", + "children": [ + { + "kind": "Var", + "name": "idempotencyUnknown", + "printedName": "idempotencyUnknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel.Type) -> VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO18idempotencyUnknownyA2EmF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO18idempotencyUnknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "noSideEffects", + "printedName": "noSideEffects", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel.Type) -> VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO13noSideEffectsyA2EmF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO13noSideEffectsyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "idempotent", + "printedName": "idempotent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel.Type) -> VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO10idempotentyA2EmF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO10idempotentyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelOAEycfc", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel?", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "Google_Protobuf_UninterpretedOption", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart]", + "children": [ + { + "kind": "TypeNominal", + "name": "NamePart", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart]", + "children": [ + { + "kind": "TypeNominal", + "name": "NamePart", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart]", + "children": [ + { + "kind": "TypeNominal", + "name": "NamePart", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "identifierValue", + "printedName": "identifierValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasIdentifierValue", + "printedName": "hasIdentifierValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV18hasIdentifierValueSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV18hasIdentifierValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV18hasIdentifierValueSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV18hasIdentifierValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearIdentifierValue", + "printedName": "clearIdentifierValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV20clearIdentifierValueyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV20clearIdentifierValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "positiveIntValue", + "printedName": "positiveIntValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64VvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPositiveIntValue", + "printedName": "hasPositiveIntValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasPositiveIntValueSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasPositiveIntValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasPositiveIntValueSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasPositiveIntValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPositiveIntValue", + "printedName": "clearPositiveIntValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV21clearPositiveIntValueyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV21clearPositiveIntValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "negativeIntValue", + "printedName": "negativeIntValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64Vvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64Vvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64Vvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64VvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasNegativeIntValue", + "printedName": "hasNegativeIntValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasNegativeIntValueSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasNegativeIntValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasNegativeIntValueSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasNegativeIntValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearNegativeIntValue", + "printedName": "clearNegativeIntValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV21clearNegativeIntValueyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV21clearNegativeIntValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "doubleValue", + "printedName": "doubleValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDoubleValue", + "printedName": "hasDoubleValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasDoubleValueSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasDoubleValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasDoubleValueSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasDoubleValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDoubleValue", + "printedName": "clearDoubleValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16clearDoubleValueyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16clearDoubleValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasStringValue", + "printedName": "hasStringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasStringValueSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasStringValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasStringValueSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasStringValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearStringValue", + "printedName": "clearStringValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16clearStringValueyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16clearStringValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "aggregateValue", + "printedName": "aggregateValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasAggregateValue", + "printedName": "hasAggregateValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17hasAggregateValueSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17hasAggregateValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17hasAggregateValueSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17hasAggregateValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearAggregateValue", + "printedName": "clearAggregateValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19clearAggregateValueyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19clearAggregateValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NamePart", + "printedName": "NamePart", + "children": [ + { + "kind": "Var", + "name": "namePart", + "printedName": "namePart", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasNamePart", + "printedName": "hasNamePart", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV03hasgH0Sbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV03hasgH0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV03hasgH0Sbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV03hasgH0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearNamePart", + "printedName": "clearNamePart()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV05cleargH0yyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV05cleargH0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "isExtension", + "printedName": "isExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasIsExtension", + "printedName": "hasIsExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV14hasIsExtensionSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV14hasIsExtensionSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV14hasIsExtensionSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV14hasIsExtensionSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearIsExtension", + "printedName": "clearIsExtension()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV16clearIsExtensionyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV16clearIsExtensionyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NamePart", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartVAEycfc", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV012protoMessageG0SSvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV012protoMessageG0SSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV012protoMessageG0SSvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV012protoMessageG0SSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV17_protobuf_nameMapAA01_gK0VvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV17_protobuf_nameMapAA01_gK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV17_protobuf_nameMapAA01_gK0VvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV17_protobuf_nameMapAA01_gK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "NamePart", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV" + }, + { + "kind": "TypeNominal", + "name": "NamePart", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionVACycfc", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FeatureSet", + "printedName": "Google_Protobuf_FeatureSet", + "children": [ + { + "kind": "Var", + "name": "fieldPresence", + "printedName": "fieldPresence", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0Ovp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0Ovg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0Ovs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0OvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFieldPresence", + "printedName": "hasFieldPresence", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV16hasFieldPresenceSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV16hasFieldPresenceSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV16hasFieldPresenceSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV16hasFieldPresenceSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFieldPresence", + "printedName": "clearFieldPresence()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV18clearFieldPresenceyyF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV18clearFieldPresenceyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "enumType", + "printedName": "enumType", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0Ovp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0Ovg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0Ovs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0OvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasEnumType", + "printedName": "hasEnumType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV11hasEnumTypeSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV11hasEnumTypeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV11hasEnumTypeSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV11hasEnumTypeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearEnumType", + "printedName": "clearEnumType()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13clearEnumTypeyyF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13clearEnumTypeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "repeatedFieldEncoding", + "printedName": "repeatedFieldEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0Ovp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0Ovg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0Ovs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0OvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasRepeatedFieldEncoding", + "printedName": "hasRepeatedFieldEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasRepeatedFieldEncodingSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasRepeatedFieldEncodingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasRepeatedFieldEncodingSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasRepeatedFieldEncodingSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearRepeatedFieldEncoding", + "printedName": "clearRepeatedFieldEncoding()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV26clearRepeatedFieldEncodingyyF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV26clearRepeatedFieldEncodingyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "stringFieldValidation", + "printedName": "stringFieldValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0Ovp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0Ovg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0Ovs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0OvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasStringFieldValidation", + "printedName": "hasStringFieldValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasStringFieldValidationSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasStringFieldValidationSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasStringFieldValidationSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasStringFieldValidationSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearStringFieldValidation", + "printedName": "clearStringFieldValidation()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV26clearStringFieldValidationyyF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV26clearStringFieldValidationyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "messageEncoding", + "printedName": "messageEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0Ovp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0Ovg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0Ovs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0OvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMessageEncoding", + "printedName": "hasMessageEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV18hasMessageEncodingSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV18hasMessageEncodingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV18hasMessageEncodingSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV18hasMessageEncodingSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearMessageEncoding", + "printedName": "clearMessageEncoding()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV20clearMessageEncodingyyF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV20clearMessageEncodingyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "jsonFormat", + "printedName": "jsonFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0Ovp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0Ovg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0Ovs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0OvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJsonFormat", + "printedName": "hasJsonFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13hasJsonFormatSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13hasJsonFormatSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13hasJsonFormatSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13hasJsonFormatSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJsonFormat", + "printedName": "clearJsonFormat()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15clearJsonFormatyyF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15clearJsonFormatyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "rawFeatures", + "printedName": "rawFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasRawFeatures", + "printedName": "hasRawFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV14hasRawFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV14hasRawFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV14hasRawFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV14hasRawFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearRawFeatures", + "printedName": "clearRawFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV16clearRawFeaturesyyF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV16clearRawFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FieldPresence", + "printedName": "FieldPresence", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO7unknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "explicit", + "printedName": "explicit", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8explicityA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8explicityA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "implicit", + "printedName": "implicit", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8implicityA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8implicityA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "legacyRequired", + "printedName": "legacyRequired", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO14legacyRequiredyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO14legacyRequiredyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceOAEycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence?", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence]", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence]", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence]", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "EnumType", + "printedName": "EnumType", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO7unknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "open", + "printedName": "open", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO4openyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO4openyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO6closedyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO6closedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeOAEycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType?", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType]", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType]", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType]", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RepeatedFieldEncoding", + "printedName": "RepeatedFieldEncoding", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO7unknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "packed", + "printedName": "packed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO6packedyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO6packedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "expanded", + "printedName": "expanded", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8expandedyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8expandedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingOAEycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding?", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding]", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding]", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding]", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StringFieldValidation", + "printedName": "StringFieldValidation", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO7unknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "mandatory", + "printedName": "mandatory", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO9mandatoryyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO9mandatoryyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hint", + "printedName": "hint", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO4hintyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO4hintyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO4noneyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO4noneyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationOAEycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation?", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation]", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation]", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation]", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MessageEncoding", + "printedName": "MessageEncoding", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO7unknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "lengthPrefixed", + "printedName": "lengthPrefixed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO14lengthPrefixedyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO14lengthPrefixedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "delimited", + "printedName": "delimited", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO9delimitedyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO9delimitedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingOAEycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding]", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding]", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding]", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "JsonFormat", + "printedName": "JsonFormat", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO7unknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "allow", + "printedName": "allow", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO5allowyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO5allowyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "legacyBestEffort", + "printedName": "legacyBestEffort", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO16legacyBestEffortyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO16legacyBestEffortyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatOAEycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat?", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat]", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat]", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat]", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetVACycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0Vvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0Vvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0Vvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0VvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_SourceCodeInfo", + "printedName": "Google_Protobuf_SourceCodeInfo", + "children": [ + { + "kind": "Var", + "name": "location", + "printedName": "location", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location]", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location]", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location]", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Location", + "printedName": "Location", + "children": [ + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "span", + "printedName": "span", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "leadingComments", + "printedName": "leadingComments", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasLeadingComments", + "printedName": "hasLeadingComments", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV18hasLeadingCommentsSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV18hasLeadingCommentsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV18hasLeadingCommentsSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV18hasLeadingCommentsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearLeadingComments", + "printedName": "clearLeadingComments()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV20clearLeadingCommentsyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV20clearLeadingCommentsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "trailingComments", + "printedName": "trailingComments", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasTrailingComments", + "printedName": "hasTrailingComments", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV19hasTrailingCommentsSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV19hasTrailingCommentsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV19hasTrailingCommentsSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV19hasTrailingCommentsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearTrailingComments", + "printedName": "clearTrailingComments()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV21clearTrailingCommentsyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV21clearTrailingCommentsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "leadingDetachedComments", + "printedName": "leadingDetachedComments", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationVAEycfc", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV" + }, + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoVACycfc", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_GeneratedCodeInfo", + "printedName": "Google_Protobuf_GeneratedCodeInfo", + "children": [ + { + "kind": "Var", + "name": "annotation", + "printedName": "annotation", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation]", + "children": [ + { + "kind": "TypeNominal", + "name": "Annotation", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation]", + "children": [ + { + "kind": "TypeNominal", + "name": "Annotation", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation]", + "children": [ + { + "kind": "TypeNominal", + "name": "Annotation", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Annotation", + "printedName": "Annotation", + "children": [ + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sourceFile", + "printedName": "sourceFile", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSourceFile", + "printedName": "hasSourceFile", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13hasSourceFileSbvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13hasSourceFileSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13hasSourceFileSbvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13hasSourceFileSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSourceFile", + "printedName": "clearSourceFile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV15clearSourceFileyyF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV15clearSourceFileyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "begin", + "printedName": "begin", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32Vvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32Vvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32Vvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32VvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasBegin", + "printedName": "hasBegin", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8hasBeginSbvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8hasBeginSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8hasBeginSbvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8hasBeginSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearBegin", + "printedName": "clearBegin()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10clearBeginyyF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10clearBeginyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "end", + "printedName": "end", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32Vvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32Vvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32Vvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32VvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasEnd", + "printedName": "hasEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV6hasEndSbvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV6hasEndSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV6hasEndSbvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV6hasEndSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearEnd", + "printedName": "clearEnd()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8clearEndyyF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8clearEndyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "semantic", + "printedName": "semantic", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSemantic", + "printedName": "hasSemantic", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV11hasSemanticSbvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV11hasSemanticSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV11hasSemanticSbvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV11hasSemanticSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSemantic", + "printedName": "clearSemantic()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13clearSemanticyyF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13clearSemanticyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Semantic", + "printedName": "Semantic", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic.Type) -> VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO4noneyA2GmF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO4noneyA2GmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "set", + "printedName": "set", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic.Type) -> VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO3setyA2GmF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO3setyA2GmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "alias", + "printedName": "alias", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic.Type) -> VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO5aliasyA2GmF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO5aliasyA2GmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticOAGycfc", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticOAGycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic?", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8rawValueAGSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8rawValueAGSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic]", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8allCasesSayAGGvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8allCasesSayAGGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic]", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8allCasesSayAGGvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8allCasesSayAGGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic]", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Annotation", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationVAEycfc", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Annotation", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV" + }, + { + "kind": "TypeNominal", + "name": "Annotation", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_GeneratedCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoVACycfc", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_GeneratedCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_GeneratedCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleCounter", + "printedName": "DoubleCounter", + "children": [ + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13DoubleCounterP3add5valueySd_tF", + "mangledName": "$s11VideoSDKRTC13DoubleCounterP3add5valueySd_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13DoubleCounterP3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC13DoubleCounterP3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13DoubleCounterP", + "mangledName": "$s11VideoSDKRTC13DoubleCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleCounterBuilder", + "printedName": "DoubleCounterBuilder", + "children": [ + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleCounter", + "printedName": "VideoSDKRTC.DoubleCounter", + "usr": "s:11VideoSDKRTC13DoubleCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20DoubleCounterBuilderP5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC20DoubleCounterBuilderP5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableDoubleCounter", + "printedName": "VideoSDKRTC.ObservableDoubleCounter", + "usr": "s:11VideoSDKRTC23ObservableDoubleCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableDoubleMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableDoubleMeasurement", + "printedName": "VideoSDKRTC.ObservableDoubleMeasurement", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20DoubleCounterBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC20DoubleCounterBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC20DoubleCounterBuilderP", + "mangledName": "$s11VideoSDKRTC20DoubleCounterBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleCounterMeterBuilderSdk", + "printedName": "DoubleCounterMeterBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleCounter", + "printedName": "VideoSDKRTC.DoubleCounter", + "usr": "s:11VideoSDKRTC13DoubleCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28DoubleCounterMeterBuilderSdkC5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC28DoubleCounterMeterBuilderSdkC5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableDoubleCounter", + "printedName": "VideoSDKRTC.ObservableDoubleCounter", + "usr": "s:11VideoSDKRTC23ObservableDoubleCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableDoubleMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableDoubleMeasurement", + "printedName": "VideoSDKRTC.ObservableDoubleMeasurement", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28DoubleCounterMeterBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0kC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC28DoubleCounterMeterBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0kC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC28DoubleCounterMeterBuilderSdkC", + "mangledName": "$s11VideoSDKRTC28DoubleCounterMeterBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleCounterBuilder", + "printedName": "DoubleCounterBuilder", + "usr": "s:11VideoSDKRTC20DoubleCounterBuilderP", + "mangledName": "$s11VideoSDKRTC20DoubleCounterBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HistogramAggregatorError", + "printedName": "HistogramAggregatorError", + "children": [ + { + "kind": "Var", + "name": "unsupportedOperation", + "printedName": "unsupportedOperation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.HistogramAggregatorError.Type) -> (Swift.String) -> VideoSDKRTC.HistogramAggregatorError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideoSDKRTC.HistogramAggregatorError", + "children": [ + { + "kind": "TypeNominal", + "name": "HistogramAggregatorError", + "printedName": "VideoSDKRTC.HistogramAggregatorError", + "usr": "s:11VideoSDKRTC24HistogramAggregatorErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.HistogramAggregatorError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HistogramAggregatorError", + "printedName": "VideoSDKRTC.HistogramAggregatorError", + "usr": "s:11VideoSDKRTC24HistogramAggregatorErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC24HistogramAggregatorErrorO20unsupportedOperationyACSScACmF", + "mangledName": "$s11VideoSDKRTC24HistogramAggregatorErrorO20unsupportedOperationyACSScACmF", + "moduleName": "VideoSDKRTC" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC24HistogramAggregatorErrorO", + "mangledName": "$s11VideoSDKRTC24HistogramAggregatorErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleExplicitBucketHistogramAggregator", + "printedName": "DoubleExplicitBucketHistogramAggregator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(boundaries:reservoirSupplier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleExplicitBucketHistogramAggregator", + "printedName": "VideoSDKRTC.DoubleExplicitBucketHistogramAggregator", + "usr": "s:11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> VideoSDKRTC.ExemplarReservoir", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarReservoir", + "printedName": "VideoSDKRTC.ExemplarReservoir", + "usr": "s:11VideoSDKRTC17ExemplarReservoirC" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC10boundaries17reservoirSupplierACSaySdG_AA17ExemplarReservoirCyctcfc", + "mangledName": "$s11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC10boundaries17reservoirSupplierACSaySdG_AA17ExemplarReservoirCyctcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "diff", + "printedName": "diff(previousCumulative:currentCumulative:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC4diff18previousCumulative07currentJ0AA9PointDataCAH_AHtKF", + "mangledName": "$s11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC4diff18previousCumulative07currentJ0AA9PointDataCAH_AHtKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toPoint", + "printedName": "toPoint(measurement:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC7toPoint11measurementAA0I4DataCAA11MeasurementV_tKF", + "mangledName": "$s11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC7toPoint11measurementAA0I4DataCAA11MeasurementV_tKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createHandle", + "printedName": "createHandle()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregatorHandle", + "printedName": "VideoSDKRTC.AggregatorHandle", + "usr": "s:11VideoSDKRTC16AggregatorHandleC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC12createHandleAA0gI0CyF", + "mangledName": "$s11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC12createHandleAA0gI0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData(resource:scope:descriptor:points:temporality:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StableiJ0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0I10DescriptorVSayAA05PointJ0CGAA22AggregationTemporalityOtF", + "mangledName": "$s11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StableiJ0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0I10DescriptorVSayAA05PointJ0CGAA22AggregationTemporalityOtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC", + "mangledName": "$s11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "StableAggregator", + "printedName": "StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleGaugeBuilder", + "printedName": "DoubleGaugeBuilder", + "children": [ + { + "kind": "Function", + "name": "ofLongs", + "printedName": "ofLongs()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongGaugeBuilder", + "printedName": "VideoSDKRTC.LongGaugeBuilder", + "usr": "s:11VideoSDKRTC16LongGaugeBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DoubleGaugeBuilderP7ofLongsAA04LongdE0_pyF", + "mangledName": "$s11VideoSDKRTC18DoubleGaugeBuilderP7ofLongsAA04LongdE0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleGaugeBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableDoubleGauge", + "printedName": "VideoSDKRTC.ObservableDoubleGauge", + "usr": "s:11VideoSDKRTC21ObservableDoubleGaugeP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableDoubleMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableDoubleMeasurement", + "printedName": "VideoSDKRTC.ObservableDoubleMeasurement", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DoubleGaugeBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC18DoubleGaugeBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleGaugeBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC18DoubleGaugeBuilderP", + "mangledName": "$s11VideoSDKRTC18DoubleGaugeBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleGaugeBuilderSdk", + "printedName": "DoubleGaugeBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "ofLongs", + "printedName": "ofLongs()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongGaugeBuilder", + "printedName": "VideoSDKRTC.LongGaugeBuilder", + "usr": "s:11VideoSDKRTC16LongGaugeBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DoubleGaugeBuilderSdkC7ofLongsAA04LongdE0_pyF", + "mangledName": "$s11VideoSDKRTC21DoubleGaugeBuilderSdkC7ofLongsAA04LongdE0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableDoubleGauge", + "printedName": "VideoSDKRTC.ObservableDoubleGauge", + "usr": "s:11VideoSDKRTC21ObservableDoubleGaugeP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableDoubleMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableDoubleMeasurement", + "printedName": "VideoSDKRTC.ObservableDoubleMeasurement", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DoubleGaugeBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0jC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC21DoubleGaugeBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0jC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21DoubleGaugeBuilderSdkC", + "mangledName": "$s11VideoSDKRTC21DoubleGaugeBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleGaugeBuilder", + "printedName": "DoubleGaugeBuilder", + "usr": "s:11VideoSDKRTC18DoubleGaugeBuilderP", + "mangledName": "$s11VideoSDKRTC18DoubleGaugeBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleHistogram", + "printedName": "DoubleHistogram", + "children": [ + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15DoubleHistogramP6record5valueySd_tF", + "mangledName": "$s11VideoSDKRTC15DoubleHistogramP6record5valueySd_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleHistogram>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15DoubleHistogramP6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC15DoubleHistogramP6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleHistogram>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC15DoubleHistogramP", + "mangledName": "$s11VideoSDKRTC15DoubleHistogramP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleHistogramBuilder", + "printedName": "DoubleHistogramBuilder", + "children": [ + { + "kind": "Function", + "name": "ofLongs", + "printedName": "ofLongs()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongHistogramBuilder", + "printedName": "VideoSDKRTC.LongHistogramBuilder", + "usr": "s:11VideoSDKRTC20LongHistogramBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22DoubleHistogramBuilderP7ofLongsAA04LongdE0_pyF", + "mangledName": "$s11VideoSDKRTC22DoubleHistogramBuilderP7ofLongsAA04LongdE0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleHistogramBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleHistogram", + "printedName": "VideoSDKRTC.DoubleHistogram", + "usr": "s:11VideoSDKRTC15DoubleHistogramP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22DoubleHistogramBuilderP5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC22DoubleHistogramBuilderP5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleHistogramBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC22DoubleHistogramBuilderP", + "mangledName": "$s11VideoSDKRTC22DoubleHistogramBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleHistogramMeterBuilderSdk", + "printedName": "DoubleHistogramMeterBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "ofLongs", + "printedName": "ofLongs()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongHistogramBuilder", + "printedName": "VideoSDKRTC.LongHistogramBuilder", + "usr": "s:11VideoSDKRTC20LongHistogramBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30DoubleHistogramMeterBuilderSdkC7ofLongsAA04LongdF0_pyF", + "mangledName": "$s11VideoSDKRTC30DoubleHistogramMeterBuilderSdkC7ofLongsAA04LongdF0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleHistogram", + "printedName": "VideoSDKRTC.DoubleHistogram", + "usr": "s:11VideoSDKRTC15DoubleHistogramP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30DoubleHistogramMeterBuilderSdkC5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC30DoubleHistogramMeterBuilderSdkC5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC30DoubleHistogramMeterBuilderSdkC", + "mangledName": "$s11VideoSDKRTC30DoubleHistogramMeterBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleHistogramBuilder", + "printedName": "DoubleHistogramBuilder", + "usr": "s:11VideoSDKRTC22DoubleHistogramBuilderP", + "mangledName": "$s11VideoSDKRTC22DoubleHistogramBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleHistogramMeterSdk", + "printedName": "DoubleHistogramMeterSdk", + "children": [ + { + "kind": "Var", + "name": "instrumentDescriptor", + "printedName": "instrumentDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvp", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvg", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvs", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0VvM", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "storage", + "printedName": "storage", + "children": [ + { + "kind": "TypeNominal", + "name": "WritableMetricStorage", + "printedName": "VideoSDKRTC.WritableMetricStorage", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvp", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "WritableMetricStorage", + "printedName": "VideoSDKRTC.WritableMetricStorage", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvg", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WritableMetricStorage", + "printedName": "VideoSDKRTC.WritableMetricStorage", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvs", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvM", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC6record5valueySd_tF", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC6record5valueySd_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleHistogram", + "printedName": "DoubleHistogram", + "usr": "s:11VideoSDKRTC15DoubleHistogramP", + "mangledName": "$s11VideoSDKRTC15DoubleHistogramP" + }, + { + "kind": "Conformance", + "name": "Instrument", + "printedName": "Instrument", + "usr": "s:11VideoSDKRTC10InstrumentP", + "mangledName": "$s11VideoSDKRTC10InstrumentP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleLastValueAggregator", + "printedName": "DoubleLastValueAggregator", + "children": [ + { + "kind": "Function", + "name": "diff", + "printedName": "diff(previousCumulative:currentCumulative:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25DoubleLastValueAggregatorC4diff18previousCumulative07currentI0AA9PointDataCAH_AHtKF", + "mangledName": "$s11VideoSDKRTC25DoubleLastValueAggregatorC4diff18previousCumulative07currentI0AA9PointDataCAH_AHtKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toPoint", + "printedName": "toPoint(measurement:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25DoubleLastValueAggregatorC7toPoint11measurementAA0H4DataCAA11MeasurementV_tKF", + "mangledName": "$s11VideoSDKRTC25DoubleLastValueAggregatorC7toPoint11measurementAA0H4DataCAA11MeasurementV_tKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createHandle", + "printedName": "createHandle()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregatorHandle", + "printedName": "VideoSDKRTC.AggregatorHandle", + "usr": "s:11VideoSDKRTC16AggregatorHandleC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25DoubleLastValueAggregatorC12createHandleAA0fH0CyF", + "mangledName": "$s11VideoSDKRTC25DoubleLastValueAggregatorC12createHandleAA0fH0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData(resource:scope:descriptor:points:temporality:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25DoubleLastValueAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablehI0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0H10DescriptorVSayAA05PointI0CGAA22AggregationTemporalityOtF", + "mangledName": "$s11VideoSDKRTC25DoubleLastValueAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablehI0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0H10DescriptorVSayAA05PointI0CGAA22AggregationTemporalityOtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC25DoubleLastValueAggregatorC", + "mangledName": "$s11VideoSDKRTC25DoubleLastValueAggregatorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "StableAggregator", + "printedName": "StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleObserverMetric", + "printedName": "DoubleObserverMetric", + "children": [ + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP7observe5value8labelsetySd_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC20DoubleObserverMetricP7observe5value8labelsetySd_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleObserverMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP7observe5value6labelsySd_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC20DoubleObserverMetricP7observe5value6labelsySd_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleObserverMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP", + "mangledName": "$s11VideoSDKRTC20DoubleObserverMetricP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "NoopDoubleObserverMetric", + "printedName": "NoopDoubleObserverMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopDoubleObserverMetric", + "printedName": "VideoSDKRTC.NoopDoubleObserverMetric", + "usr": "s:11VideoSDKRTC24NoopDoubleObserverMetricV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24NoopDoubleObserverMetricVACycfc", + "mangledName": "$s11VideoSDKRTC24NoopDoubleObserverMetricVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24NoopDoubleObserverMetricV7observe5value8labelsetySd_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC24NoopDoubleObserverMetricV7observe5value8labelsetySd_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24NoopDoubleObserverMetricV7observe5value6labelsySd_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC24NoopDoubleObserverMetricV7observe5value6labelsySd_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC24NoopDoubleObserverMetricV", + "mangledName": "$s11VideoSDKRTC24NoopDoubleObserverMetricV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleObserverMetric", + "printedName": "DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP", + "mangledName": "$s11VideoSDKRTC20DoubleObserverMetricP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoublePointData", + "printedName": "DoublePointData", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15DoublePointDataC5valueSdvp", + "mangledName": "$s11VideoSDKRTC15DoublePointDataC5valueSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15DoublePointDataC5valueSdvg", + "mangledName": "$s11VideoSDKRTC15DoublePointDataC5valueSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15DoublePointDataC5valueSdvs", + "mangledName": "$s11VideoSDKRTC15DoublePointDataC5valueSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15DoublePointDataC5valueSdvM", + "mangledName": "$s11VideoSDKRTC15DoublePointDataC5valueSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC15DoublePointDataC", + "mangledName": "$s11VideoSDKRTC15DoublePointDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC9PointDataC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.PointData" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleSumAggregator", + "printedName": "DoubleSumAggregator", + "children": [ + { + "kind": "Function", + "name": "diff", + "printedName": "diff(previousCumulative:currentCumulative:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19DoubleSumAggregatorC4diff18previousCumulative07currentH0AA9PointDataCAH_AHtKF", + "mangledName": "$s11VideoSDKRTC19DoubleSumAggregatorC4diff18previousCumulative07currentH0AA9PointDataCAH_AHtKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toPoint", + "printedName": "toPoint(measurement:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19DoubleSumAggregatorC7toPoint11measurementAA0G4DataCAA11MeasurementV_tKF", + "mangledName": "$s11VideoSDKRTC19DoubleSumAggregatorC7toPoint11measurementAA0G4DataCAA11MeasurementV_tKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createHandle", + "printedName": "createHandle()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregatorHandle", + "printedName": "VideoSDKRTC.AggregatorHandle", + "usr": "s:11VideoSDKRTC16AggregatorHandleC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19DoubleSumAggregatorC12createHandleAA0eG0CyF", + "mangledName": "$s11VideoSDKRTC19DoubleSumAggregatorC12createHandleAA0eG0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData(resource:scope:descriptor:points:temporality:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19DoubleSumAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablegH0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0G10DescriptorVSayAA05PointH0CGAA22AggregationTemporalityOtF", + "mangledName": "$s11VideoSDKRTC19DoubleSumAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablegH0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0G10DescriptorVSayAA05PointH0CGAA22AggregationTemporalityOtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19DoubleSumAggregatorC", + "mangledName": "$s11VideoSDKRTC19DoubleSumAggregatorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC13SumAggregatorC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.SumAggregator" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "StableAggregator", + "printedName": "StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleUpDownCounter", + "printedName": "DoubleUpDownCounter", + "children": [ + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19DoubleUpDownCounterP3add5valueySd_tF", + "mangledName": "$s11VideoSDKRTC19DoubleUpDownCounterP3add5valueySd_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleUpDownCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19DoubleUpDownCounterP3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC19DoubleUpDownCounterP3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleUpDownCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC19DoubleUpDownCounterP", + "mangledName": "$s11VideoSDKRTC19DoubleUpDownCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleUpDownCounterBuilder", + "printedName": "DoubleUpDownCounterBuilder", + "children": [ + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleUpDownCounter", + "printedName": "VideoSDKRTC.DoubleUpDownCounter", + "usr": "s:11VideoSDKRTC19DoubleUpDownCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26DoubleUpDownCounterBuilderP5buildAA0cdeF0_pyF", + "mangledName": "$s11VideoSDKRTC26DoubleUpDownCounterBuilderP5buildAA0cdeF0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleUpDownCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableDoubleUpDownCounter", + "printedName": "VideoSDKRTC.ObservableDoubleUpDownCounter", + "usr": "s:11VideoSDKRTC29ObservableDoubleUpDownCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableDoubleMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableDoubleMeasurement", + "printedName": "VideoSDKRTC.ObservableDoubleMeasurement", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26DoubleUpDownCounterBuilderP17buildWithCallbackyAA010ObservablecdeF0_pyAA0kC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC26DoubleUpDownCounterBuilderP17buildWithCallbackyAA010ObservablecdeF0_pyAA0kC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleUpDownCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC26DoubleUpDownCounterBuilderP", + "mangledName": "$s11VideoSDKRTC26DoubleUpDownCounterBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleUpDownCounterBuilderSdk", + "printedName": "DoubleUpDownCounterBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleUpDownCounter", + "printedName": "VideoSDKRTC.DoubleUpDownCounter", + "usr": "s:11VideoSDKRTC19DoubleUpDownCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29DoubleUpDownCounterBuilderSdkC5buildAA0cdeF0_pyF", + "mangledName": "$s11VideoSDKRTC29DoubleUpDownCounterBuilderSdkC5buildAA0cdeF0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableDoubleUpDownCounter", + "printedName": "VideoSDKRTC.ObservableDoubleUpDownCounter", + "usr": "s:11VideoSDKRTC29ObservableDoubleUpDownCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableDoubleMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableDoubleMeasurement", + "printedName": "VideoSDKRTC.ObservableDoubleMeasurement", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29DoubleUpDownCounterBuilderSdkC17buildWithCallbackyAA010ObservablecdeF0_pyAA0lC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC29DoubleUpDownCounterBuilderSdkC17buildWithCallbackyAA010ObservablecdeF0_pyAA0lC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC29DoubleUpDownCounterBuilderSdkC", + "mangledName": "$s11VideoSDKRTC29DoubleUpDownCounterBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleUpDownCounterBuilder", + "printedName": "DoubleUpDownCounterBuilder", + "usr": "s:11VideoSDKRTC26DoubleUpDownCounterBuilderP", + "mangledName": "$s11VideoSDKRTC26DoubleUpDownCounterBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleUpDownCounterSdk", + "printedName": "DoubleUpDownCounterSdk", + "children": [ + { + "kind": "Var", + "name": "instrumentDescriptor", + "printedName": "instrumentDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22DoubleUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvp", + "mangledName": "$s11VideoSDKRTC22DoubleUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22DoubleUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvg", + "mangledName": "$s11VideoSDKRTC22DoubleUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22DoubleUpDownCounterSdkC3add5valueySd_tF", + "mangledName": "$s11VideoSDKRTC22DoubleUpDownCounterSdkC3add5valueySd_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22DoubleUpDownCounterSdkC3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC22DoubleUpDownCounterSdkC3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC22DoubleUpDownCounterSdkC", + "mangledName": "$s11VideoSDKRTC22DoubleUpDownCounterSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleUpDownCounter", + "printedName": "DoubleUpDownCounter", + "usr": "s:11VideoSDKRTC19DoubleUpDownCounterP", + "mangledName": "$s11VideoSDKRTC19DoubleUpDownCounterP" + }, + { + "kind": "Conformance", + "name": "Instrument", + "printedName": "Instrument", + "usr": "s:11VideoSDKRTC10InstrumentP", + "mangledName": "$s11VideoSDKRTC10InstrumentP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DropAggregation", + "printedName": "DropAggregation", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "DropAggregation", + "printedName": "VideoSDKRTC.DropAggregation", + "usr": "s:11VideoSDKRTC15DropAggregationC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15DropAggregationC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC15DropAggregationC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DropAggregation", + "printedName": "VideoSDKRTC.DropAggregation", + "usr": "s:11VideoSDKRTC15DropAggregationC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15DropAggregationC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC15DropAggregationC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createAggregator", + "printedName": "createAggregator(descriptor:exemplarFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableAggregator", + "printedName": "VideoSDKRTC.StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15DropAggregationC16createAggregator10descriptor14exemplarFilterAA06StableF0_pAA20InstrumentDescriptorV_AA08ExemplarI0_ptF", + "mangledName": "$s11VideoSDKRTC15DropAggregationC16createAggregator10descriptor14exemplarFilterAA06StableF0_pAA20InstrumentDescriptorV_AA08ExemplarI0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isCompatible", + "printedName": "isCompatible(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15DropAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "mangledName": "$s11VideoSDKRTC15DropAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC15DropAggregationC", + "mangledName": "$s11VideoSDKRTC15DropAggregationC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Aggregation", + "printedName": "Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP", + "mangledName": "$s11VideoSDKRTC11AggregationP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DropAggregator", + "printedName": "DropAggregator", + "children": [ + { + "kind": "Var", + "name": "POINT_DATA", + "printedName": "POINT_DATA", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14DropAggregatorC10POINT_DATAAA9PointDataCvpZ", + "mangledName": "$s11VideoSDKRTC14DropAggregatorC10POINT_DATAAA9PointDataCvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14DropAggregatorC10POINT_DATAAA9PointDataCvgZ", + "mangledName": "$s11VideoSDKRTC14DropAggregatorC10POINT_DATAAA9PointDataCvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createHandle", + "printedName": "createHandle()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregatorHandle", + "printedName": "VideoSDKRTC.AggregatorHandle", + "usr": "s:11VideoSDKRTC16AggregatorHandleC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DropAggregatorC12createHandleAA0dF0CyF", + "mangledName": "$s11VideoSDKRTC14DropAggregatorC12createHandleAA0dF0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "diff", + "printedName": "diff(previousCumulative:currentCumulative:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DropAggregatorC4diff18previousCumulative07currentG0AA9PointDataCAH_AHtF", + "mangledName": "$s11VideoSDKRTC14DropAggregatorC4diff18previousCumulative07currentG0AA9PointDataCAH_AHtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toPoint", + "printedName": "toPoint(measurement:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DropAggregatorC7toPoint11measurementAA0F4DataCAA11MeasurementV_tF", + "mangledName": "$s11VideoSDKRTC14DropAggregatorC7toPoint11measurementAA0F4DataCAA11MeasurementV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData(resource:scope:descriptor:points:temporality:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DropAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablefG0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0F10DescriptorVSayAA05PointG0CGAA22AggregationTemporalityOtF", + "mangledName": "$s11VideoSDKRTC14DropAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablefG0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0F10DescriptorVSayAA05PointG0CGAA22AggregationTemporalityOtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC14DropAggregatorC", + "mangledName": "$s11VideoSDKRTC14DropAggregatorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "StableAggregator", + "printedName": "StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Duration", + "printedName": "Google_Protobuf_Duration", + "children": [ + { + "kind": "Var", + "name": "seconds", + "printedName": "seconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64Vvp", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64Vvg", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64Vvs", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64VvM", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nanos", + "printedName": "nanos", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32Vvp", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32Vvg", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32Vvs", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32VvM", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationVACycfc", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(seconds:nanos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "hasDefaultArg": true, + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "hasDefaultArg": true, + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV7seconds5nanosACs5Int64V_s5Int32Vtcfc", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV7seconds5nanosACs5Int64V_s5Int32Vtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(floatLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV12floatLiteralACSd_tcfc", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV12floatLiteralACSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(timeInterval:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV12timeIntervalACSd_tcfc", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV12timeIntervalACSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "timeInterval", + "printedName": "timeInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV12timeIntervalSdvp", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV12timeIntervalSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV12timeIntervalSdvg", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV12timeIntervalSdvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Empty", + "printedName": "Google_Protobuf_Empty", + "children": [ + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Empty", + "printedName": "VideoSDKRTC.Google_Protobuf_Empty", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyVACycfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Empty", + "printedName": "VideoSDKRTC.Google_Protobuf_Empty", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Empty", + "printedName": "VideoSDKRTC.Google_Protobuf_Empty", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EmptyMetricStorage", + "printedName": "EmptyMetricStorage", + "children": [ + { + "kind": "Function", + "name": "recordLong", + "printedName": "recordLong(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordDouble", + "printedName": "recordDouble(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "EmptyMetricStorage", + "printedName": "VideoSDKRTC.EmptyMetricStorage", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EmptyMetricStorage", + "printedName": "VideoSDKRTC.EmptyMetricStorage", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EmptyMetricStorage", + "printedName": "VideoSDKRTC.EmptyMetricStorage", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC8instanceACvsZ", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC8instanceACvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC8instanceACvMZ", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC8instanceACvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "metricDescriptor", + "printedName": "metricDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0Vvp", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0Vvg", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0Vvs", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0VvM", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "collect", + "printedName": "collect(resource:scope:startEpochNanos:epochNanos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC7collect8resource5scope15startEpochNanos05epochK0AA06StableD4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC7collect8resource5scope15startEpochNanos05epochK0AA06StableD4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEmpty", + "printedName": "isEmpty()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC02isC0SbyF", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC02isC0SbyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "MetricStorage", + "printedName": "MetricStorage", + "usr": "s:11VideoSDKRTC13MetricStorageP", + "mangledName": "$s11VideoSDKRTC13MetricStorageP" + }, + { + "kind": "Conformance", + "name": "WritableMetricStorage", + "printedName": "WritableMetricStorage", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP", + "mangledName": "$s11VideoSDKRTC21WritableMetricStorageP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Entry", + "printedName": "Entry", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC5EntryV3keyAA0C3KeyVvp", + "mangledName": "$s11VideoSDKRTC5EntryV3keyAA0C3KeyVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC5EntryV3keyAA0C3KeyVvg", + "mangledName": "$s11VideoSDKRTC5EntryV3keyAA0C3KeyVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC5EntryV5valueAA0C5ValueVvp", + "mangledName": "$s11VideoSDKRTC5EntryV5valueAA0C5ValueVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC5EntryV5valueAA0C5ValueVvg", + "mangledName": "$s11VideoSDKRTC5EntryV5valueAA0C5ValueVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadata", + "printedName": "metadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC5EntryV8metadataAA0C8MetadataVSgvp", + "mangledName": "$s11VideoSDKRTC5EntryV8metadataAA0C8MetadataVSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC5EntryV8metadataAA0C8MetadataVSgvg", + "mangledName": "$s11VideoSDKRTC5EntryV8metadataAA0C8MetadataVSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(key:value:metadata:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + }, + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC5EntryV3key5value8metadataAcA0C3KeyV_AA0C5ValueVAA0C8MetadataVSgtcfc", + "mangledName": "$s11VideoSDKRTC5EntryV3key5value8metadataAcA0C3KeyV_AA0C5ValueVAA0C8MetadataVSgtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" + }, + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5EntryV1loiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC5EntryV1loiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" + }, + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5EntryV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC5EntryV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC5EntryV", + "mangledName": "$s11VideoSDKRTC5EntryV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EntryKey", + "printedName": "EntryKey", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8EntryKeyV4nameSSvp", + "mangledName": "$s11VideoSDKRTC8EntryKeyV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8EntryKeyV4nameSSvg", + "mangledName": "$s11VideoSDKRTC8EntryKeyV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8EntryKeyV4nameACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC8EntryKeyV4nameACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8EntryKeyV1loiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC8EntryKeyV1loiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8EntryKeyV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC8EntryKeyV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8EntryKeyV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC8EntryKeyV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8EntryKeyV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC8EntryKeyV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8EntryKeyV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC8EntryKeyV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC8EntryKeyV", + "mangledName": "$s11VideoSDKRTC8EntryKeyV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EntryMetadata", + "printedName": "EntryMetadata", + "children": [ + { + "kind": "Var", + "name": "metadata", + "printedName": "metadata", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13EntryMetadataV8metadataSSvp", + "mangledName": "$s11VideoSDKRTC13EntryMetadataV8metadataSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13EntryMetadataV8metadataSSvg", + "mangledName": "$s11VideoSDKRTC13EntryMetadataV8metadataSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13EntryMetadataV8metadataSSvs", + "mangledName": "$s11VideoSDKRTC13EntryMetadataV8metadataSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13EntryMetadataV8metadataSSvM", + "mangledName": "$s11VideoSDKRTC13EntryMetadataV8metadataSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(metadata:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC13EntryMetadataV8metadataACSgSSSg_tcfc", + "mangledName": "$s11VideoSDKRTC13EntryMetadataV8metadataACSgSSSg_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + }, + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13EntryMetadataV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC13EntryMetadataV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13EntryMetadataV", + "mangledName": "$s11VideoSDKRTC13EntryMetadataV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EntryValue", + "printedName": "EntryValue", + "children": [ + { + "kind": "Var", + "name": "string", + "printedName": "string", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10EntryValueV6stringSSvp", + "mangledName": "$s11VideoSDKRTC10EntryValueV6stringSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10EntryValueV6stringSSvg", + "mangledName": "$s11VideoSDKRTC10EntryValueV6stringSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10EntryValueV6stringACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC10EntryValueV6stringACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + }, + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10EntryValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC10EntryValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC10EntryValueV", + "mangledName": "$s11VideoSDKRTC10EntryValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Enum", + "printedName": "Enum", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC4EnumPxycfc", + "mangledName": "$s11VideoSDKRTC4EnumPxycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC4EnumP8rawValuexSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC4EnumP8rawValuexSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC4EnumP8rawValueSivp", + "mangledName": "$s11VideoSDKRTC4EnumP8rawValueSivp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4EnumP8rawValueSivg", + "mangledName": "$s11VideoSDKRTC4EnumP8rawValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4EnumPAAE4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC4EnumPAAE4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : Swift.CaseIterable, τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_0 : Swift.Sendable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EnvironmentContextPropagator", + "printedName": "EnvironmentContextPropagator", + "children": [ + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28EnvironmentContextPropagatorV6fieldsShySSGvp", + "mangledName": "$s11VideoSDKRTC28EnvironmentContextPropagatorV6fieldsShySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28EnvironmentContextPropagatorV6fieldsShySSGvg", + "mangledName": "$s11VideoSDKRTC28EnvironmentContextPropagatorV6fieldsShySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "EnvironmentContextPropagator", + "printedName": "VideoSDKRTC.EnvironmentContextPropagator", + "usr": "s:11VideoSDKRTC28EnvironmentContextPropagatorV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28EnvironmentContextPropagatorVACycfc", + "mangledName": "$s11VideoSDKRTC28EnvironmentContextPropagatorVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "inject", + "printedName": "inject(spanContext:carrier:setter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28EnvironmentContextPropagatorV6inject04spanD07carrier6setteryAA04SpanD0V_SDyS2SGzxtAA6SetterRzlF", + "mangledName": "$s11VideoSDKRTC28EnvironmentContextPropagatorV6inject04spanD07carrier6setteryAA04SpanD0V_SDyS2SGzxtAA6SetterRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Setter>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "extract", + "printedName": "extract(carrier:getter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28EnvironmentContextPropagatorV7extract7carrier6getterAA04SpanD0VSgSDyS2SG_xtAA6GetterRzlF", + "mangledName": "$s11VideoSDKRTC28EnvironmentContextPropagatorV7extract7carrier6getterAA04SpanD0VSgSDyS2SG_xtAA6GetterRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Getter>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC28EnvironmentContextPropagatorV", + "mangledName": "$s11VideoSDKRTC28EnvironmentContextPropagatorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "TextMapPropagator", + "printedName": "TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP", + "mangledName": "$s11VideoSDKRTC17TextMapPropagatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EnvVarHeaders", + "printedName": "EnvVarHeaders", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[(Swift.String, Swift.String)]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.String, Swift.String)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13EnvVarHeadersV10attributesSaySS_SStGSgvpZ", + "mangledName": "$s11VideoSDKRTC13EnvVarHeadersV10attributesSaySS_SStGSgvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[(Swift.String, Swift.String)]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.String, Swift.String)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13EnvVarHeadersV10attributesSaySS_SStGSgvgZ", + "mangledName": "$s11VideoSDKRTC13EnvVarHeadersV10attributesSaySS_SStGSgvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "attributes", + "printedName": "attributes(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[(Swift.String, Swift.String)]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.String, Swift.String)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13EnvVarHeadersV10attributes3forSaySS_SStGSgSSSg_tFZ", + "mangledName": "$s11VideoSDKRTC13EnvVarHeadersV10attributes3forSaySS_SStGSgSSSg_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13EnvVarHeadersV", + "mangledName": "$s11VideoSDKRTC13EnvVarHeadersV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EnvVarResource", + "printedName": "EnvVarResource", + "children": [ + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14EnvVarResourceV8resourceAA0E0VvpZ", + "mangledName": "$s11VideoSDKRTC14EnvVarResourceV8resourceAA0E0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14EnvVarResourceV8resourceAA0E0VvgZ", + "mangledName": "$s11VideoSDKRTC14EnvVarResourceV8resourceAA0E0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(environment:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14EnvVarResourceV3get11environmentAA0E0VSDyS2SG_tFZ", + "mangledName": "$s11VideoSDKRTC14EnvVarResourceV3get11environmentAA0E0VSDyS2SG_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14EnvVarResourceV", + "mangledName": "$s11VideoSDKRTC14EnvVarResourceV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EventBuilder", + "printedName": "EventBuilder", + "children": [ + { + "kind": "Function", + "name": "setData", + "printedName": "setData(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12EventBuilderP7setDatayxSDySSAA14AttributeValueOGF", + "mangledName": "$s11VideoSDKRTC12EventBuilderP7setDatayxSDySSAA14AttributeValueOGF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.EventBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC12EventBuilderP", + "mangledName": "$s11VideoSDKRTC12EventBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordBuilder", + "printedName": "LogRecordBuilder", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ExemplarData", + "printedName": "ExemplarData", + "children": [ + { + "kind": "Var", + "name": "filteredAttributes", + "printedName": "filteredAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvs", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvM", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "epochNanos", + "printedName": "epochNanos", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64VvM", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "spanContext", + "printedName": "spanContext", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvp", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvg", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvs", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvM", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + }, + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ExemplarDataC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC12ExemplarDataC", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleExemplarData", + "printedName": "DoubleExemplarData", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18DoubleExemplarDataC5valueSdvp", + "mangledName": "$s11VideoSDKRTC18DoubleExemplarDataC5valueSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18DoubleExemplarDataC5valueSdvg", + "mangledName": "$s11VideoSDKRTC18DoubleExemplarDataC5valueSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18DoubleExemplarDataC5valueSdvs", + "mangledName": "$s11VideoSDKRTC18DoubleExemplarDataC5valueSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18DoubleExemplarDataC5valueSdvM", + "mangledName": "$s11VideoSDKRTC18DoubleExemplarDataC5valueSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18DoubleExemplarDataC", + "mangledName": "$s11VideoSDKRTC18DoubleExemplarDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC12ExemplarDataC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.ExemplarData" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LongExemplarData", + "printedName": "LongExemplarData", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16LongExemplarDataC5valueSivp", + "mangledName": "$s11VideoSDKRTC16LongExemplarDataC5valueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16LongExemplarDataC5valueSivg", + "mangledName": "$s11VideoSDKRTC16LongExemplarDataC5valueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16LongExemplarDataC5valueSivs", + "mangledName": "$s11VideoSDKRTC16LongExemplarDataC5valueSivs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16LongExemplarDataC5valueSivM", + "mangledName": "$s11VideoSDKRTC16LongExemplarDataC5valueSivM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16LongExemplarDataC", + "mangledName": "$s11VideoSDKRTC16LongExemplarDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC12ExemplarDataC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.ExemplarData" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ExemplarFilter", + "printedName": "ExemplarFilter", + "children": [ + { + "kind": "Function", + "name": "shouldSampleMeasurement", + "printedName": "shouldSampleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ExemplarFilterP23shouldSampleMeasurement5value10attributesSbSi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC14ExemplarFilterP23shouldSampleMeasurement5value10attributesSbSi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExemplarFilter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldSampleMeasurement", + "printedName": "shouldSampleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ExemplarFilterP23shouldSampleMeasurement5value10attributesSbSd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC14ExemplarFilterP23shouldSampleMeasurement5value10attributesSbSd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExemplarFilter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14ExemplarFilterP", + "mangledName": "$s11VideoSDKRTC14ExemplarFilterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "AlwaysOnFilter", + "printedName": "AlwaysOnFilter", + "children": [ + { + "kind": "Function", + "name": "shouldSampleMeasurement", + "printedName": "shouldSampleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14AlwaysOnFilterV23shouldSampleMeasurement5value10attributesSbSd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC14AlwaysOnFilterV23shouldSampleMeasurement5value10attributesSbSd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldSampleMeasurement", + "printedName": "shouldSampleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14AlwaysOnFilterV23shouldSampleMeasurement5value10attributesSbSi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC14AlwaysOnFilterV23shouldSampleMeasurement5value10attributesSbSi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14AlwaysOnFilterV", + "mangledName": "$s11VideoSDKRTC14AlwaysOnFilterV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExemplarFilter", + "printedName": "ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP", + "mangledName": "$s11VideoSDKRTC14ExemplarFilterP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AlwaysOffFilter", + "printedName": "AlwaysOffFilter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AlwaysOffFilter", + "printedName": "VideoSDKRTC.AlwaysOffFilter", + "usr": "s:11VideoSDKRTC15AlwaysOffFilterV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC15AlwaysOffFilterVACycfc", + "mangledName": "$s11VideoSDKRTC15AlwaysOffFilterVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "shouldSampleMeasurement", + "printedName": "shouldSampleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15AlwaysOffFilterV23shouldSampleMeasurement5value10attributesSbSi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC15AlwaysOffFilterV23shouldSampleMeasurement5value10attributesSbSi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldSampleMeasurement", + "printedName": "shouldSampleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15AlwaysOffFilterV23shouldSampleMeasurement5value10attributesSbSd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC15AlwaysOffFilterV23shouldSampleMeasurement5value10attributesSbSd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC15AlwaysOffFilterV", + "mangledName": "$s11VideoSDKRTC15AlwaysOffFilterV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExemplarFilter", + "printedName": "ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP", + "mangledName": "$s11VideoSDKRTC14ExemplarFilterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ExemplarReservoir", + "printedName": "ExemplarReservoir", + "children": [ + { + "kind": "Function", + "name": "collectAndReset", + "printedName": "collectAndReset(attribute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ExemplarData]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExemplarReservoirC15collectAndReset9attributeSayAA0C4DataCGSDySSAA14AttributeValueOG_tF", + "mangledName": "$s11VideoSDKRTC17ExemplarReservoirC15collectAndReset9attributeSayAA0C4DataCGSDySSAA14AttributeValueOG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "offerDoubleMeasurement", + "printedName": "offerDoubleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC17ExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "offerLongMeasurement", + "printedName": "offerLongMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC17ExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC17ExemplarReservoirC", + "mangledName": "$s11VideoSDKRTC17ExemplarReservoirC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "TypeDecl", + "name": "NoopExemplarReservoir", + "printedName": "NoopExemplarReservoir", + "children": [ + { + "kind": "Function", + "name": "offerDoubleMeasurement", + "printedName": "offerDoubleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC21NoopExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "offerLongMeasurement", + "printedName": "offerLongMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC21NoopExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "collectAndReset", + "printedName": "collectAndReset(attribute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ExemplarData]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopExemplarReservoirC15collectAndReset9attributeSayAA0D4DataCGSDySSAA14AttributeValueOG_tF", + "mangledName": "$s11VideoSDKRTC21NoopExemplarReservoirC15collectAndReset9attributeSayAA0D4DataCGSDySSAA14AttributeValueOG_tF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21NoopExemplarReservoirC", + "mangledName": "$s11VideoSDKRTC21NoopExemplarReservoirC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC17ExemplarReservoirC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.ExemplarReservoir" + ] + }, + { + "kind": "TypeDecl", + "name": "ExemplarReservoirCollection", + "printedName": "ExemplarReservoirCollection", + "declKind": "Enum", + "usr": "s:11VideoSDKRTC27ExemplarReservoirCollectionO", + "mangledName": "$s11VideoSDKRTC27ExemplarReservoirCollectionO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "FixedSizedExemplarReservoir", + "printedName": "FixedSizedExemplarReservoir", + "children": [ + { + "kind": "Function", + "name": "offerLongMeasurement", + "printedName": "offerLongMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27FixedSizedExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC27FixedSizedExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "offerDoubleMeasurement", + "printedName": "offerDoubleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27FixedSizedExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC27FixedSizedExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "collectAndReset", + "printedName": "collectAndReset(attribute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ExemplarData]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27FixedSizedExemplarReservoirC15collectAndReset9attributeSayAA0E4DataCGSDySSAA14AttributeValueOG_tF", + "mangledName": "$s11VideoSDKRTC27FixedSizedExemplarReservoirC15collectAndReset9attributeSayAA0E4DataCGSDySSAA14AttributeValueOG_tF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC27FixedSizedExemplarReservoirC", + "mangledName": "$s11VideoSDKRTC27FixedSizedExemplarReservoirC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC17ExemplarReservoirC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.ExemplarReservoir" + ] + }, + { + "kind": "TypeDecl", + "name": "RandomFixedSizedExemplarReservoir", + "printedName": "RandomFixedSizedExemplarReservoir", + "declKind": "Class", + "usr": "s:11VideoSDKRTC33RandomFixedSizedExemplarReservoirC", + "mangledName": "$s11VideoSDKRTC33RandomFixedSizedExemplarReservoirC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC27FixedSizedExemplarReservoirC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.FixedSizedExemplarReservoir", + "VideoSDKRTC.ExemplarReservoir" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ExplicitBucketHistogramAggregation", + "printedName": "ExplicitBucketHistogramAggregation", + "children": [ + { + "kind": "Var", + "name": "DEFAULT_BOUNDARIES", + "printedName": "DEFAULT_BOUNDARIES", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC18DEFAULT_BOUNDARIESSaySdGvpZ", + "mangledName": "$s11VideoSDKRTC34ExplicitBucketHistogramAggregationC18DEFAULT_BOUNDARIESSaySdGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC18DEFAULT_BOUNDARIESSaySdGvgZ", + "mangledName": "$s11VideoSDKRTC34ExplicitBucketHistogramAggregationC18DEFAULT_BOUNDARIESSaySdGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "ExplicitBucketHistogramAggregation", + "printedName": "VideoSDKRTC.ExplicitBucketHistogramAggregation", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC34ExplicitBucketHistogramAggregationC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExplicitBucketHistogramAggregation", + "printedName": "VideoSDKRTC.ExplicitBucketHistogramAggregation", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC34ExplicitBucketHistogramAggregationC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createAggregator", + "printedName": "createAggregator(descriptor:exemplarFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableAggregator", + "printedName": "VideoSDKRTC.StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC16createAggregator10descriptor14exemplarFilterAA06StableH0_pAA20InstrumentDescriptorV_AA08ExemplarK0_ptF", + "mangledName": "$s11VideoSDKRTC34ExplicitBucketHistogramAggregationC16createAggregator10descriptor14exemplarFilterAA06StableH0_pAA20InstrumentDescriptorV_AA08ExemplarK0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isCompatible", + "printedName": "isCompatible(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "mangledName": "$s11VideoSDKRTC34ExplicitBucketHistogramAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC", + "mangledName": "$s11VideoSDKRTC34ExplicitBucketHistogramAggregationC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Aggregation", + "printedName": "Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP", + "mangledName": "$s11VideoSDKRTC11AggregationP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ExponentialHistogramBuckets", + "printedName": "ExponentialHistogramBuckets", + "children": [ + { + "kind": "Var", + "name": "scale", + "printedName": "scale", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP5scaleSivp", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP5scaleSivp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP5scaleSivg", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP5scaleSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExponentialHistogramBuckets>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "offset", + "printedName": "offset", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP6offsetSivp", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP6offsetSivp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP6offsetSivg", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP6offsetSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExponentialHistogramBuckets>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bucketCounts", + "printedName": "bucketCounts", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP12bucketCountsSaySiGvp", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP12bucketCountsSaySiGvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP12bucketCountsSaySiGvg", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP12bucketCountsSaySiGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExponentialHistogramBuckets>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalCount", + "printedName": "totalCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP10totalCountSivp", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP10totalCountSivp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP10totalCountSivg", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP10totalCountSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExponentialHistogramBuckets>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ExportResult", + "printedName": "ExportResult", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ExportResult.Type) -> VideoSDKRTC.ExportResult", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ExportResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC12ExportResultO7successyA2CmF", + "mangledName": "$s11VideoSDKRTC12ExportResultO7successyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "failure", + "printedName": "failure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ExportResult.Type) -> VideoSDKRTC.ExportResult", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ExportResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC12ExportResultO7failureyA2CmF", + "mangledName": "$s11VideoSDKRTC12ExportResultO7failureyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ExportResultO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC12ExportResultO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ExportResultO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC12ExportResultO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExportResultO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC12ExportResultO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ExportResultO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC12ExportResultO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC12ExportResultO", + "mangledName": "$s11VideoSDKRTC12ExportResultO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "children": [ + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "setExtensionValue", + "printedName": "setExtensionValue(ext:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension<τ_1_0, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.ValueType" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0Cyqd__xG_0G4TypeQyd__tAA0F5FieldRd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0Cyqd__xG_0G4TypeQyd__tAA0F5FieldRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "getExtensionValue", + "printedName": "getExtensionValue(ext:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0.ValueType?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.ValueType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension<τ_1_0, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17getExtensionValue3ext0G4TypeQyd__SgAA0dF0Cyqd__xG_tAA0F5FieldRd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17getExtensionValue3ext0G4TypeQyd__SgAA0dF0Cyqd__xG_tAA0F5FieldRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hasExtensionValue", + "printedName": "hasExtensionValue(ext:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension<τ_1_0, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17hasExtensionValue3extSbAA0dF0Cyqd__xG_tAA0F5FieldRd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17hasExtensionValue3extSbAA0dF0Cyqd__xG_tAA0F5FieldRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearExtensionValue", + "printedName": "clearExtensionValue(ext:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension<τ_1_0, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE19clearExtensionValue3extyAA0dF0Cyqd__xG_tAA0F5FieldRd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE19clearExtensionValue3extyAA0dF0Cyqd__xG_tAA0F5FieldRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setExtensionValue", + "printedName": "setExtensionValue(ext:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedExtensionField", + "printedName": "VideoSDKRTC.RepeatedExtensionField<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA08RepeatedF5FieldVyqd__GxG_Say8BaseTypeQyd__GtAA0kM0Rd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA08RepeatedF5FieldVyqd__GxG_Say8BaseTypeQyd__GtAA0kM0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setExtensionValue", + "printedName": "setExtensionValue(ext:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "PackedExtensionField", + "printedName": "VideoSDKRTC.PackedExtensionField<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA06PackedF5FieldVyqd__GxG_Say8BaseTypeQyd__GtAA0kM0Rd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA06PackedF5FieldVyqd__GxG_Say8BaseTypeQyd__GtAA0kM0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setExtensionValue", + "printedName": "setExtensionValue(ext:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedEnumExtensionField", + "printedName": "VideoSDKRTC.RepeatedEnumExtensionField<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA012RepeatedEnumF5FieldVyqd__GxG_Sayqd__GtAA0K0Rd__Si03RawG0Rtd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA012RepeatedEnumF5FieldVyqd__GxG_Sayqd__GtAA0K0Rd__Si03RawG0Rtd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.Enum, τ_1_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setExtensionValue", + "printedName": "setExtensionValue(ext:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "PackedEnumExtensionField", + "printedName": "VideoSDKRTC.PackedEnumExtensionField<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA010PackedEnumF5FieldVyqd__GxG_Sayqd__GtAA0K0Rd__Si03RawG0Rtd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA010PackedEnumF5FieldVyqd__GxG_Sayqd__GtAA0K0Rd__Si03RawG0Rtd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.Enum, τ_1_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setExtensionValue", + "printedName": "setExtensionValue(ext:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedMessageExtensionField", + "printedName": "VideoSDKRTC.RepeatedMessageExtensionField<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA08RepeateddF5FieldVyqd__GxG_Sayqd__GtSQRd__AA0D0Rd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA08RepeateddF5FieldVyqd__GxG_Sayqd__GtSQRd__AA0D0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : Swift.Equatable, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setExtensionValue", + "printedName": "setExtensionValue(ext:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedGroupExtensionField", + "printedName": "VideoSDKRTC.RepeatedGroupExtensionField<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA013RepeatedGroupF5FieldVyqd__GxG_Sayqd__GtSHRd__AA0D0Rd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA013RepeatedGroupF5FieldVyqd__GxG_Sayqd__GtSHRd__AA0D0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : Swift.Hashable, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "children": [ + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP08protobufD0AA0c7MessageD0_pvp", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP08protobufD0AA0c7MessageD0_pvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP08protobufD0AA0c7MessageD0_pvg", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP08protobufD0AA0c7MessageD0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP7isEqual5otherSbAaB_p_tF", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP7isEqual5otherSbAaB_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.AnyExtensionField, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.AnyExtensionField, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldPAAE13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldPAAE13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldPAAE13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldPAAE13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyExtensionField>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "AssociatedType", + "name": "ValueType", + "printedName": "ValueType", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC14ExtensionFieldP9ValueTypeQa", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP9ValueTypeQa", + "moduleName": "VideoSDKRTC", + "protocolReq": true + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueType" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvp", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueType" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvg", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueType" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvs", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvM", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueType" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14ExtensionFieldP08protobufC05valuexAA010AnyMessageC0_p_9ValueTypeQztcfc", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP08protobufC05valuexAA010AnyMessageC0_p_9ValueTypeQztcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14ExtensionFieldP08protobufC07decoderxSgAA010AnyMessageC0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP08protobufC07decoderxSgAA010AnyMessageC0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensionField, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.AnyExtensionField>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OptionalExtensionField", + "printedName": "OptionalExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvp", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvg", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvs", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvM", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvp", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvg", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvs", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvM", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OptionalExtensionField", + "printedName": "VideoSDKRTC.OptionalExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "OptionalExtensionField", + "printedName": "VideoSDKRTC.OptionalExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalExtensionField", + "printedName": "VideoSDKRTC.OptionalExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV08protobufD05valueACyxGAA010AnyMessageD0_p_8BaseTypeQztcfc", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV08protobufD05valueACyxGAA010AnyMessageD0_p_8BaseTypeQztcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV7isEqual5otherSbAA03AnydE0_p_tF", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV7isEqual5otherSbAA03AnydE0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.OptionalExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalExtensionField", + "printedName": "VideoSDKRTC.OptionalExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV08protobufD07decoderACyxGSgAA010AnyMessageD0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV08protobufD07decoderACyxGSgAA010AnyMessageD0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RepeatedExtensionField", + "printedName": "RepeatedExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvp", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvg", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvs", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvM", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvp", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvg", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvs", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvM", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "RepeatedExtensionField", + "printedName": "VideoSDKRTC.RepeatedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "RepeatedExtensionField", + "printedName": "VideoSDKRTC.RepeatedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedExtensionField", + "printedName": "VideoSDKRTC.RepeatedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV08protobufD05valueACyxGAA010AnyMessageD0_p_Say8BaseTypeQzGtcfc", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV08protobufD05valueACyxGAA010AnyMessageD0_p_Say8BaseTypeQzGtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV7isEqual5otherSbAA03AnydE0_p_tF", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV7isEqual5otherSbAA03AnydE0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.RepeatedExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedExtensionField", + "printedName": "VideoSDKRTC.RepeatedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV08protobufD07decoderACyxGSgAA010AnyMessageD0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV08protobufD07decoderACyxGSgAA010AnyMessageD0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PackedExtensionField", + "printedName": "PackedExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvp", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvg", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvs", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvM", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvp", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvg", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvs", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvM", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "PackedExtensionField", + "printedName": "VideoSDKRTC.PackedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "PackedExtensionField", + "printedName": "VideoSDKRTC.PackedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PackedExtensionField", + "printedName": "VideoSDKRTC.PackedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV08protobufD05valueACyxGAA010AnyMessageD0_p_Say8BaseTypeQzGtcfc", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV08protobufD05valueACyxGAA010AnyMessageD0_p_Say8BaseTypeQzGtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV7isEqual5otherSbAA03AnydE0_p_tF", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV7isEqual5otherSbAA03AnydE0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.PackedExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "PackedExtensionField", + "printedName": "VideoSDKRTC.PackedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV08protobufD07decoderACyxGSgAA010AnyMessageD0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV08protobufD07decoderACyxGSgAA010AnyMessageD0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OptionalEnumExtensionField", + "printedName": "OptionalEnumExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvp", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvg", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvs", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvM", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OptionalEnumExtensionField", + "printedName": "VideoSDKRTC.OptionalEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "OptionalEnumExtensionField", + "printedName": "VideoSDKRTC.OptionalEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalEnumExtensionField", + "printedName": "VideoSDKRTC.OptionalEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_xtcfc", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_xtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.SPBDecoder, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.OptionalEnumExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalEnumExtensionField", + "printedName": "VideoSDKRTC.OptionalEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.SPBDecoder, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.Visitor, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RepeatedEnumExtensionField", + "printedName": "RepeatedEnumExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvp", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvg", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvs", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvM", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "RepeatedEnumExtensionField", + "printedName": "VideoSDKRTC.RepeatedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "RepeatedEnumExtensionField", + "printedName": "VideoSDKRTC.RepeatedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedEnumExtensionField", + "printedName": "VideoSDKRTC.RepeatedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_SayxGtcfc", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_SayxGtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.SPBDecoder, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.RepeatedEnumExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedEnumExtensionField", + "printedName": "VideoSDKRTC.RepeatedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.SPBDecoder, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.Visitor, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PackedEnumExtensionField", + "printedName": "PackedEnumExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvp", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvg", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvs", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvM", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "PackedEnumExtensionField", + "printedName": "VideoSDKRTC.PackedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "PackedEnumExtensionField", + "printedName": "VideoSDKRTC.PackedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PackedEnumExtensionField", + "printedName": "VideoSDKRTC.PackedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_SayxGtcfc", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_SayxGtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.SPBDecoder, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.PackedEnumExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "PackedEnumExtensionField", + "printedName": "VideoSDKRTC.PackedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.SPBDecoder, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.Visitor, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OptionalMessageExtensionField", + "printedName": "OptionalMessageExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvp", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvg", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvs", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvM", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvp", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvg", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvs", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvM", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OptionalMessageExtensionField", + "printedName": "VideoSDKRTC.OptionalMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "OptionalMessageExtensionField", + "printedName": "VideoSDKRTC.OptionalMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalMessageExtensionField", + "printedName": "VideoSDKRTC.OptionalMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE05valueACyxGAA03AnydE0_p_xtcfc", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE05valueACyxGAA03AnydE0_p_xtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.OptionalMessageExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalMessageExtensionField", + "printedName": "VideoSDKRTC.OptionalMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE07decoderACyxGSgAA03AnydE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE07decoderACyxGSgAA03AnydE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RepeatedMessageExtensionField", + "printedName": "RepeatedMessageExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvp", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvg", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvs", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvM", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvp", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvg", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvs", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvM", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "RepeatedMessageExtensionField", + "printedName": "VideoSDKRTC.RepeatedMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "RepeatedMessageExtensionField", + "printedName": "VideoSDKRTC.RepeatedMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedMessageExtensionField", + "printedName": "VideoSDKRTC.RepeatedMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE05valueACyxGAA03AnydE0_p_SayxGtcfc", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE05valueACyxGAA03AnydE0_p_SayxGtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.RepeatedMessageExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedMessageExtensionField", + "printedName": "VideoSDKRTC.RepeatedMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE07decoderACyxGSgAA03AnydE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE07decoderACyxGSgAA03AnydE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OptionalGroupExtensionField", + "printedName": "OptionalGroupExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvp", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvg", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvs", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvM", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OptionalGroupExtensionField", + "printedName": "VideoSDKRTC.OptionalGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "OptionalGroupExtensionField", + "printedName": "VideoSDKRTC.OptionalGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalGroupExtensionField", + "printedName": "VideoSDKRTC.OptionalGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_xtcfc", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_xtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.OptionalGroupExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalGroupExtensionField", + "printedName": "VideoSDKRTC.OptionalGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RepeatedGroupExtensionField", + "printedName": "RepeatedGroupExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvp", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvg", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvs", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvM", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "RepeatedGroupExtensionField", + "printedName": "VideoSDKRTC.RepeatedGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "RepeatedGroupExtensionField", + "printedName": "VideoSDKRTC.RepeatedGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedGroupExtensionField", + "printedName": "VideoSDKRTC.RepeatedGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_SayxGtcfc", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_SayxGtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.RepeatedGroupExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedGroupExtensionField", + "printedName": "VideoSDKRTC.RepeatedGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ExtensionFieldValueSet", + "printedName": "ExtensionFieldValueSet", + "children": [ + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetVACycfc", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:start:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV8traverse7visitor5start3endyxz_S2itKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV8traverse7visitor5start3endyxz_S2itKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyExtensionField?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Subscript", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSicip", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSicip", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyExtensionField?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSicig", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSicig", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyExtensionField?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSicis", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSicis", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSiciM", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSiciM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV04hashE0Sivp", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV04hashE0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV04hashE0Sivg", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV04hashE0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ExtensionMap", + "printedName": "ExtensionMap", + "children": [ + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyMessageExtension?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Subscript", + "usr": "s:11VideoSDKRTC12ExtensionMapPyAA010AnyMessageC0_pSgAA0F0_pXp_Sitcip", + "mangledName": "$s11VideoSDKRTC12ExtensionMapPyAA010AnyMessageC0_pSgAA0F0_pXp_Sitcip", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensionMap>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyMessageExtension?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExtensionMapPyAA010AnyMessageC0_pSgAA0F0_pXp_Sitcig", + "mangledName": "$s11VideoSDKRTC12ExtensionMapPyAA010AnyMessageC0_pSgAA0F0_pXp_Sitcig", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensionMap>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "fieldNumberForProto", + "printedName": "fieldNumberForProto(messageType:protoFieldName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ExtensionMapP19fieldNumberForProto11messageType14protoFieldNameSiSgAA7Message_pXp_SStF", + "mangledName": "$s11VideoSDKRTC12ExtensionMapP19fieldNumberForProto11messageType14protoFieldNameSiSgAA7Message_pXp_SStF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensionMap>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC12ExtensionMapP", + "mangledName": "$s11VideoSDKRTC12ExtensionMapP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : Swift.Sendable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FieldMask", + "printedName": "Google_Protobuf_FieldMask", + "children": [ + { + "kind": "Var", + "name": "paths", + "printedName": "paths", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldMask", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldMask", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskVACycfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldMask", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldMask", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldMask", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldMask", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protoPaths:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldMask", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldMask", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV10protoPathsACSaySSG_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV10protoPathsACSaySSG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protoPaths:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldMask", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldMask", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV10protoPathsACSSd_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV10protoPathsACSSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jsonPaths:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldMask?", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldMask", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldMask", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV9jsonPathsACSgSSd_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV9jsonPathsACSgSSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "AssociatedType", + "name": "BaseType", + "printedName": "BaseType", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC9FieldTypeP04BaseD0Qa", + "mangledName": "$s11VideoSDKRTC9FieldTypeP04BaseD0Qa", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9FieldTypeP18proto3DefaultValue04BaseD0QzvpZ", + "mangledName": "$s11VideoSDKRTC9FieldTypeP18proto3DefaultValue04BaseD0QzvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9FieldTypeP18proto3DefaultValue04BaseD0QzvgZ", + "mangledName": "$s11VideoSDKRTC9FieldTypeP18proto3DefaultValue04BaseD0QzvgZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.BaseType?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9FieldTypeP14decodeSingular5value4fromy04BaseD0QzSgz_qd__ztKAA10SPBDecoderRd__lFZ", + "mangledName": "$s11VideoSDKRTC9FieldTypeP14decodeSingular5value4fromy04BaseD0QzSgz_qd__ztKAA10SPBDecoderRd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9FieldTypeP14decodeRepeated5value4fromySay04BaseD0QzGz_qd__ztKAA10SPBDecoderRd__lFZ", + "mangledName": "$s11VideoSDKRTC9FieldTypeP14decodeRepeated5value4fromySay04BaseD0QzGz_qd__ztKAA10SPBDecoderRd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9FieldTypeP13visitSingular5value11fieldNumber4withy04BaseD0Qz_Siqd__ztKAA7VisitorRd__lFZ", + "mangledName": "$s11VideoSDKRTC9FieldTypeP13visitSingular5value11fieldNumber4withy04BaseD0Qz_Siqd__ztKAA7VisitorRd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9FieldTypeP13visitRepeated5value11fieldNumber4withySay04BaseD0QzG_Siqd__ztKAA7VisitorRd__lFZ", + "mangledName": "$s11VideoSDKRTC9FieldTypeP13visitRepeated5value11fieldNumber4withySay04BaseD0QzG_Siqd__ztKAA7VisitorRd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9FieldTypeP11visitPacked5value11fieldNumber4withySay04BaseD0QzG_Siqd__ztKAA7VisitorRd__lFZ", + "mangledName": "$s11VideoSDKRTC9FieldTypeP11visitPacked5value11fieldNumber4withySay04BaseD0QzG_Siqd__ztKAA7VisitorRd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0.BaseType : Swift.Hashable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MapKeyType", + "printedName": "MapKeyType", + "children": [ + { + "kind": "Function", + "name": "_lessThan", + "printedName": "_lessThan(lhs:rhs:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10MapKeyTypeP9_lessThan3lhs3rhsSb04BaseE0Qz_AHtFZ", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP9_lessThan3lhs3rhsSb04BaseE0Qz_AHtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MapKeyType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "_lessThan", + "printedName": "_lessThan(lhs:rhs:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10MapKeyTypePAASL04BaseE0RpzrlE9_lessThan3lhs3rhsSbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC10MapKeyTypePAASL04BaseE0RpzrlE9_lessThan3lhs3rhsSbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MapKeyType, τ_0_0.BaseType : Swift.Comparable>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MapValueType", + "printedName": "MapValueType", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufFloat", + "printedName": "ProtobufFloat", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13ProtobufFloatV18proto3DefaultValueSfvpZ", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV18proto3DefaultValueSfvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13ProtobufFloatV18proto3DefaultValueSfvgZ", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV18proto3DefaultValueSfvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Float?", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufFloatV14decodeSingular5value4fromySfSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV14decodeSingular5value4fromySfSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufFloatV14decodeRepeated5value4fromySaySfGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV14decodeRepeated5value4fromySaySfGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufFloatV13visitSingular5value11fieldNumber4withySf_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV13visitSingular5value11fieldNumber4withySf_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufFloatV13visitRepeated5value11fieldNumber4withySaySfG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV13visitRepeated5value11fieldNumber4withySaySfG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufFloatV11visitPacked5value11fieldNumber4withySaySfG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV11visitPacked5value11fieldNumber4withySaySfG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13ProtobufFloatV", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufDouble", + "printedName": "ProtobufDouble", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV18proto3DefaultValueSdvpZ", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV18proto3DefaultValueSdvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV18proto3DefaultValueSdvgZ", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV18proto3DefaultValueSdvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV14decodeSingular5value4fromySdSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV14decodeSingular5value4fromySdSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV14decodeRepeated5value4fromySaySdGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV14decodeRepeated5value4fromySaySdGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV13visitSingular5value11fieldNumber4withySd_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV13visitSingular5value11fieldNumber4withySd_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV13visitRepeated5value11fieldNumber4withySaySdG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV13visitRepeated5value11fieldNumber4withySaySdG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV11visitPacked5value11fieldNumber4withySaySdG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV11visitPacked5value11fieldNumber4withySaySdG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufInt32", + "printedName": "ProtobufInt32", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13ProtobufInt32V18proto3DefaultValues0D0VvpZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V18proto3DefaultValues0D0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13ProtobufInt32V18proto3DefaultValues0D0VvgZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V18proto3DefaultValues0D0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int32?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt32V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt32V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt32V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt32V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt32V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13ProtobufInt32V", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufInt64", + "printedName": "ProtobufInt64", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13ProtobufInt64V18proto3DefaultValues0D0VvpZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V18proto3DefaultValues0D0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13ProtobufInt64V18proto3DefaultValues0D0VvgZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V18proto3DefaultValues0D0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt64V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt64V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt64V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt64V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt64V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13ProtobufInt64V", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufUInt32", + "printedName": "ProtobufUInt32", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V18proto3DefaultValues0D0VvpZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V18proto3DefaultValues0D0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V18proto3DefaultValues0D0VvgZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V18proto3DefaultValues0D0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufUInt64", + "printedName": "ProtobufUInt64", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V18proto3DefaultValues0D0VvpZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V18proto3DefaultValues0D0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V18proto3DefaultValues0D0VvgZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V18proto3DefaultValues0D0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt64?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufSInt32", + "printedName": "ProtobufSInt32", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V18proto3DefaultValues5Int32VvpZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V18proto3DefaultValues5Int32VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V18proto3DefaultValues5Int32VvgZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V18proto3DefaultValues5Int32VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int32?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V14decodeSingular5value4fromys5Int32VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V14decodeSingular5value4fromys5Int32VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V14decodeRepeated5value4fromySays5Int32VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V14decodeRepeated5value4fromySays5Int32VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V13visitSingular5value11fieldNumber4withys5Int32V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V13visitSingular5value11fieldNumber4withys5Int32V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V13visitRepeated5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V13visitRepeated5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V11visitPacked5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V11visitPacked5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufSInt64", + "printedName": "ProtobufSInt64", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V18proto3DefaultValues5Int64VvpZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V18proto3DefaultValues5Int64VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V18proto3DefaultValues5Int64VvgZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V18proto3DefaultValues5Int64VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V14decodeSingular5value4fromys5Int64VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V14decodeSingular5value4fromys5Int64VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V14decodeRepeated5value4fromySays5Int64VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V14decodeRepeated5value4fromySays5Int64VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V13visitSingular5value11fieldNumber4withys5Int64V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V13visitSingular5value11fieldNumber4withys5Int64V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V13visitRepeated5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V13visitRepeated5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V11visitPacked5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V11visitPacked5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufFixed32", + "printedName": "ProtobufFixed32", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V18proto3DefaultValues6UInt32VvpZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V18proto3DefaultValues6UInt32VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V18proto3DefaultValues6UInt32VvgZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V18proto3DefaultValues6UInt32VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V14decodeSingular5value4fromys6UInt32VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V14decodeSingular5value4fromys6UInt32VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V14decodeRepeated5value4fromySays6UInt32VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V14decodeRepeated5value4fromySays6UInt32VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V13visitSingular5value11fieldNumber4withys6UInt32V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V13visitSingular5value11fieldNumber4withys6UInt32V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V13visitRepeated5value11fieldNumber4withySays6UInt32VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V13visitRepeated5value11fieldNumber4withySays6UInt32VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V11visitPacked5value11fieldNumber4withySays6UInt32VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V11visitPacked5value11fieldNumber4withySays6UInt32VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufFixed64", + "printedName": "ProtobufFixed64", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V18proto3DefaultValues6UInt64VvpZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V18proto3DefaultValues6UInt64VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V18proto3DefaultValues6UInt64VvgZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V18proto3DefaultValues6UInt64VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt64?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V14decodeSingular5value4fromys6UInt64VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V14decodeSingular5value4fromys6UInt64VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V14decodeRepeated5value4fromySays6UInt64VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V14decodeRepeated5value4fromySays6UInt64VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V13visitSingular5value11fieldNumber4withys6UInt64V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V13visitSingular5value11fieldNumber4withys6UInt64V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V13visitRepeated5value11fieldNumber4withySays6UInt64VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V13visitRepeated5value11fieldNumber4withySays6UInt64VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V11visitPacked5value11fieldNumber4withySays6UInt64VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V11visitPacked5value11fieldNumber4withySays6UInt64VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufSFixed32", + "printedName": "ProtobufSFixed32", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V18proto3DefaultValues5Int32VvpZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V18proto3DefaultValues5Int32VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V18proto3DefaultValues5Int32VvgZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V18proto3DefaultValues5Int32VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int32?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V14decodeSingular5value4fromys5Int32VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V14decodeSingular5value4fromys5Int32VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V14decodeRepeated5value4fromySays5Int32VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V14decodeRepeated5value4fromySays5Int32VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V13visitSingular5value11fieldNumber4withys5Int32V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V13visitSingular5value11fieldNumber4withys5Int32V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V13visitRepeated5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V13visitRepeated5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V11visitPacked5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V11visitPacked5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufSFixed64", + "printedName": "ProtobufSFixed64", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V18proto3DefaultValues5Int64VvpZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V18proto3DefaultValues5Int64VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V18proto3DefaultValues5Int64VvgZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V18proto3DefaultValues5Int64VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V14decodeSingular5value4fromys5Int64VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V14decodeSingular5value4fromys5Int64VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V14decodeRepeated5value4fromySays5Int64VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V14decodeRepeated5value4fromySays5Int64VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V13visitSingular5value11fieldNumber4withys5Int64V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V13visitSingular5value11fieldNumber4withys5Int64V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V13visitRepeated5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V13visitRepeated5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V11visitPacked5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V11visitPacked5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufBool", + "printedName": "ProtobufBool", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ProtobufBoolV18proto3DefaultValueSbvpZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV18proto3DefaultValueSbvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ProtobufBoolV18proto3DefaultValueSbvgZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV18proto3DefaultValueSbvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ProtobufBoolV14decodeSingular5value4fromySbSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV14decodeSingular5value4fromySbSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ProtobufBoolV14decodeRepeated5value4fromySaySbGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV14decodeRepeated5value4fromySaySbGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ProtobufBoolV13visitSingular5value11fieldNumber4withySb_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV13visitSingular5value11fieldNumber4withySb_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ProtobufBoolV13visitRepeated5value11fieldNumber4withySaySbG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV13visitRepeated5value11fieldNumber4withySaySbG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ProtobufBoolV11visitPacked5value11fieldNumber4withySaySbG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV11visitPacked5value11fieldNumber4withySaySbG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "_lessThan", + "printedName": "_lessThan(lhs:rhs:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ProtobufBoolV9_lessThan3lhs3rhsS2b_SbtFZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV9_lessThan3lhs3rhsS2b_SbtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC12ProtobufBoolV", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufString", + "printedName": "ProtobufString", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14ProtobufStringV18proto3DefaultValueSSvpZ", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV18proto3DefaultValueSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ProtobufStringV18proto3DefaultValueSSvgZ", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV18proto3DefaultValueSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufStringV14decodeSingular5value4fromySSSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV14decodeSingular5value4fromySSSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufStringV14decodeRepeated5value4fromySaySSGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV14decodeRepeated5value4fromySaySSGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufStringV13visitSingular5value11fieldNumber4withySS_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV13visitSingular5value11fieldNumber4withySS_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufStringV13visitRepeated5value11fieldNumber4withySaySSG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV13visitRepeated5value11fieldNumber4withySaySSG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufStringV11visitPacked5value11fieldNumber4withySaySSG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV11visitPacked5value11fieldNumber4withySaySSG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14ProtobufStringV", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufBytes", + "printedName": "ProtobufBytes", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13ProtobufBytesV18proto3DefaultValue10Foundation4DataVvpZ", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV18proto3DefaultValue10Foundation4DataVvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13ProtobufBytesV18proto3DefaultValue10Foundation4DataVvgZ", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV18proto3DefaultValue10Foundation4DataVvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufBytesV14decodeSingular5value4fromy10Foundation4DataVSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV14decodeSingular5value4fromy10Foundation4DataVSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufBytesV14decodeRepeated5value4fromySay10Foundation4DataVGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV14decodeRepeated5value4fromySay10Foundation4DataVGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufBytesV13visitSingular5value11fieldNumber4withy10Foundation4DataV_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV13visitSingular5value11fieldNumber4withy10Foundation4DataV_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufBytesV13visitRepeated5value11fieldNumber4withySay10Foundation4DataVG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV13visitRepeated5value11fieldNumber4withySay10Foundation4DataVG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufBytesV11visitPacked5value11fieldNumber4withySay10Foundation4DataVG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV11visitPacked5value11fieldNumber4withySay10Foundation4DataVG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13ProtobufBytesV", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FilteredExemplarReservoir", + "printedName": "FilteredExemplarReservoir", + "children": [ + { + "kind": "Function", + "name": "offerDoubleMeasurement", + "printedName": "offerDoubleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25FilteredExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC25FilteredExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "offerLongMeasurement", + "printedName": "offerLongMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25FilteredExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC25FilteredExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "collectAndReset", + "printedName": "collectAndReset(attribute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ExemplarData]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25FilteredExemplarReservoirC15collectAndReset9attributeSayAA0D4DataCGSDySSAA14AttributeValueOG_tF", + "mangledName": "$s11VideoSDKRTC25FilteredExemplarReservoirC15collectAndReset9attributeSayAA0D4DataCGSDySSAA14AttributeValueOG_tF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC25FilteredExemplarReservoirC", + "mangledName": "$s11VideoSDKRTC25FilteredExemplarReservoirC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC17ExemplarReservoirC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.ExemplarReservoir" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "defaultAnyTypeURLPrefix", + "printedName": "defaultAnyTypeURLPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC23defaultAnyTypeURLPrefixSSvp", + "mangledName": "$s11VideoSDKRTC23defaultAnyTypeURLPrefixSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23defaultAnyTypeURLPrefixSSvg", + "mangledName": "$s11VideoSDKRTC23defaultAnyTypeURLPrefixSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Dispatch", + "printedName": "Dispatch", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "-", + "printedName": "-(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC1sopyAA24Google_Protobuf_DurationVADF", + "mangledName": "$s11VideoSDKRTC1sopyAA24Google_Protobuf_DurationVADF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Prefix", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "+", + "printedName": "+(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC1poiyAA24Google_Protobuf_DurationVAD_ADtF", + "mangledName": "$s11VideoSDKRTC1poiyAA24Google_Protobuf_DurationVAD_ADtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "-", + "printedName": "-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC1soiyAA24Google_Protobuf_DurationVAD_ADtF", + "mangledName": "$s11VideoSDKRTC1soiyAA24Google_Protobuf_DurationVAD_ADtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "-", + "printedName": "-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC1soiyAA24Google_Protobuf_DurationVAA0c1_D10_TimestampV_AFtF", + "mangledName": "$s11VideoSDKRTC1soiyAA24Google_Protobuf_DurationVAA0c1_D10_TimestampV_AFtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "+", + "printedName": "+(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC1poiyAA25Google_Protobuf_TimestampVAD_AA0c1_D9_DurationVtF", + "mangledName": "$s11VideoSDKRTC1poiyAA25Google_Protobuf_TimestampVAD_AA0c1_D9_DurationVtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "+", + "printedName": "+(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC1poiyAA25Google_Protobuf_TimestampVAA0c1_D9_DurationV_ADtF", + "mangledName": "$s11VideoSDKRTC1poiyAA25Google_Protobuf_TimestampVAA0c1_D9_DurationV_ADtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "-", + "printedName": "-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC1soiyAA25Google_Protobuf_TimestampVAD_AA0c1_D9_DurationVtF", + "mangledName": "$s11VideoSDKRTC1soiyAA25Google_Protobuf_TimestampVAD_AA0c1_D9_DurationVtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Headers", + "printedName": "Headers", + "children": [ + { + "kind": "Function", + "name": "getUserAgentHeader", + "printedName": "getUserAgentHeader()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7HeadersV18getUserAgentHeaderSSyFZ", + "mangledName": "$s11VideoSDKRTC7HeadersV18getUserAgentHeaderSSyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC7HeadersV", + "mangledName": "$s11VideoSDKRTC7HeadersV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HistogramAggregator", + "printedName": "HistogramAggregator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(explicitBoundaries:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HistogramAggregator", + "printedName": "VideoSDKRTC.HistogramAggregator<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC19HistogramAggregatorC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19HistogramAggregatorC18explicitBoundariesACyxGSayxGSg_tKcfc", + "mangledName": "$s11VideoSDKRTC19HistogramAggregatorC18explicitBoundariesACyxGSayxGSg_tKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "update", + "printedName": "update(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19HistogramAggregatorC6update5valueyx_tF", + "mangledName": "$s11VideoSDKRTC19HistogramAggregatorC6update5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkpoint", + "printedName": "checkpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19HistogramAggregatorC10checkpointyyF", + "mangledName": "$s11VideoSDKRTC19HistogramAggregatorC10checkpointyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19HistogramAggregatorC12toMetricDataAA0fG0_pyF", + "mangledName": "$s11VideoSDKRTC19HistogramAggregatorC12toMetricDataAA0fG0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAggregationType", + "printedName": "getAggregationType()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19HistogramAggregatorC18getAggregationTypeAA0fG0OyF", + "mangledName": "$s11VideoSDKRTC19HistogramAggregatorC18getAggregationTypeAA0fG0OyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19HistogramAggregatorC", + "mangledName": "$s11VideoSDKRTC19HistogramAggregatorC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:11VideoSDKRTC10AggregatorC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.Aggregator<τ_0_0>" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HistogramExemplarReservoir", + "printedName": "HistogramExemplarReservoir", + "children": [ + { + "kind": "Function", + "name": "offerLongMeasurement", + "printedName": "offerLongMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26HistogramExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC26HistogramExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC26HistogramExemplarReservoirC", + "mangledName": "$s11VideoSDKRTC26HistogramExemplarReservoirC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC27FixedSizedExemplarReservoirC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.FixedSizedExemplarReservoir", + "VideoSDKRTC.ExemplarReservoir" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HistogramMetric", + "printedName": "HistogramMetric", + "children": [ + { + "kind": "AssociatedType", + "name": "T", + "printedName": "T", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC15HistogramMetricP1TQa", + "mangledName": "$s11VideoSDKRTC15HistogramMetricP1TQa", + "moduleName": "VideoSDKRTC", + "protocolReq": true + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundHistogramMetric", + "printedName": "VideoSDKRTC.BoundHistogramMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15HistogramMetricP4bind8labelsetAA05BoundcD0Cy1TQzGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC15HistogramMetricP4bind8labelsetAA05BoundcD0Cy1TQzGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.HistogramMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundHistogramMetric", + "printedName": "VideoSDKRTC.BoundHistogramMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15HistogramMetricP4bind6labelsAA05BoundcD0Cy1TQzGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC15HistogramMetricP4bind6labelsAA05BoundcD0Cy1TQzGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.HistogramMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15HistogramMetricPAAE6record5value8labelsety1TQz_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC15HistogramMetricPAAE6record5value8labelsety1TQz_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.HistogramMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15HistogramMetricPAAE6record5value6labelsy1TQz_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC15HistogramMetricPAAE6record5value6labelsy1TQz_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.HistogramMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC15HistogramMetricP", + "mangledName": "$s11VideoSDKRTC15HistogramMetricP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AnyHistogramMetric", + "printedName": "AnyHistogramMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyHistogramMetric", + "printedName": "VideoSDKRTC.AnyHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18AnyHistogramMetricVyACyxGqd__c1TQyd__RszAA0dE0Rd__lufc", + "mangledName": "$s11VideoSDKRTC18AnyHistogramMetricVyACyxGqd__c1TQyd__RszAA0dE0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 == τ_1_0.T, τ_1_0 : VideoSDKRTC.HistogramMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundHistogramMetric", + "printedName": "VideoSDKRTC.BoundHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC18AnyHistogramMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundHistogramMetric", + "printedName": "VideoSDKRTC.BoundHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC18AnyHistogramMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV", + "mangledName": "$s11VideoSDKRTC18AnyHistogramMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "HistogramMetric", + "printedName": "HistogramMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC15HistogramMetricP", + "mangledName": "$s11VideoSDKRTC15HistogramMetricP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoopHistogramMetric", + "printedName": "NoopHistogramMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopHistogramMetric", + "printedName": "VideoSDKRTC.NoopHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC19NoopHistogramMetricV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19NoopHistogramMetricVACyxGycfc", + "mangledName": "$s11VideoSDKRTC19NoopHistogramMetricVACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundHistogramMetric", + "printedName": "VideoSDKRTC.BoundHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19NoopHistogramMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC19NoopHistogramMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundHistogramMetric", + "printedName": "VideoSDKRTC.BoundHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19NoopHistogramMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC19NoopHistogramMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19NoopHistogramMetricV", + "mangledName": "$s11VideoSDKRTC19NoopHistogramMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "HistogramMetric", + "printedName": "HistogramMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC15HistogramMetricP", + "mangledName": "$s11VideoSDKRTC15HistogramMetricP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HistogramPointData", + "printedName": "HistogramPointData", + "children": [ + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3sumSdvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3sumSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3sumSdvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3sumSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3sumSdvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3sumSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3sumSdvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3sumSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC5counts6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC5counts6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC5counts6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC5counts6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC5counts6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC5counts6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC5counts6UInt64VvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC5counts6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "min", + "printedName": "min", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3minSdvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3minSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3minSdvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3minSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3minSdvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3minSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3minSdvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3minSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "max", + "printedName": "max", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3maxSdvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3maxSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3maxSdvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3maxSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3maxSdvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3maxSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3maxSdvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3maxSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "boundaries", + "printedName": "boundaries", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "counts", + "printedName": "counts", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6countsSaySiGvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6countsSaySiGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6countsSaySiGvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6countsSaySiGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6countsSaySiGvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6countsSaySiGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6countsSaySiGvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6countsSaySiGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMin", + "printedName": "hasMin", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMinSbvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMinSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMinSbvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMinSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMinSbvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMinSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMinSbvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMinSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMax", + "printedName": "hasMax", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMaxSbvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMaxSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMaxSbvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMaxSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMaxSbvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMaxSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMaxSbvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMaxSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18HistogramPointDataC", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC9PointDataC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.PointData" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HLSConfig", + "printedName": "HLSConfig", + "children": [ + { + "kind": "Var", + "name": "layout", + "printedName": "layout", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvp", + "mangledName": "$s11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvg", + "mangledName": "$s11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvs", + "mangledName": "$s11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvM", + "mangledName": "$s11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "theme", + "printedName": "theme", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvp", + "mangledName": "$s11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvg", + "mangledName": "$s11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvs", + "mangledName": "$s11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvM", + "mangledName": "$s11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvp", + "mangledName": "$s11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvg", + "mangledName": "$s11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvs", + "mangledName": "$s11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvM", + "mangledName": "$s11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "quality", + "printedName": "quality", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvp", + "mangledName": "$s11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvg", + "mangledName": "$s11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvs", + "mangledName": "$s11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvM", + "mangledName": "$s11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "orientation", + "printedName": "orientation", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvp", + "mangledName": "$s11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvg", + "mangledName": "$s11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvs", + "mangledName": "$s11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvM", + "mangledName": "$s11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(layout:theme:mode:quality:orientation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSConfig", + "printedName": "VideoSDKRTC.HLSConfig", + "usr": "s:11VideoSDKRTC9HLSConfigC" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + }, + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + }, + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + }, + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + }, + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC9HLSConfigC6layout5theme4mode7quality11orientationAcA12ConfigLayoutC_AA0I5ThemeOAA0I4ModeOAA0I7QualityOAA0I11OrientationOtcfc", + "mangledName": "$s11VideoSDKRTC9HLSConfigC6layout5theme4mode7quality11orientationAcA12ConfigLayoutC_AA0I5ThemeOAA0I4ModeOAA0I7QualityOAA0I11OrientationOtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "toJson", + "printedName": "toJson()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9HLSConfigC6toJsonSDySSypGyF", + "mangledName": "$s11VideoSDKRTC9HLSConfigC6toJsonSDySSypGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC9HLSConfigC", + "mangledName": "$s11VideoSDKRTC9HLSConfigC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "RecordingConfig", + "printedName": "RecordingConfig", + "children": [ + { + "kind": "Var", + "name": "layout", + "printedName": "layout", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvp", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvg", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvs", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvM", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "theme", + "printedName": "theme", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvp", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvg", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvs", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvM", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvp", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvg", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvs", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvM", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "quality", + "printedName": "quality", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvp", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvg", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvs", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvM", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "orientation", + "printedName": "orientation", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvp", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvg", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvs", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvM", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(layout:theme:mode:quality:orientation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingConfig", + "printedName": "VideoSDKRTC.RecordingConfig", + "usr": "s:11VideoSDKRTC15RecordingConfigC" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + }, + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + }, + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + }, + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + }, + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC15RecordingConfigC6layout5theme4mode7quality11orientationAcA0D6LayoutC_AA0D5ThemeOAA0D4ModeOAA0D7QualityOAA0D11OrientationOtcfc", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC6layout5theme4mode7quality11orientationAcA0D6LayoutC_AA0D5ThemeOAA0D4ModeOAA0D7QualityOAA0D11OrientationOtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "toJson", + "printedName": "toJson()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15RecordingConfigC6toJsonSDySSypGyF", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC6toJsonSDySSypGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC15RecordingConfigC", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "HLSUrl", + "printedName": "HLSUrl", + "children": [ + { + "kind": "Var", + "name": "downstreamUrl", + "printedName": "downstreamUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6HLSUrlC13downstreamUrlSSvp", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13downstreamUrlSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC13downstreamUrlSSvg", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13downstreamUrlSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC13downstreamUrlSSvs", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13downstreamUrlSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC13downstreamUrlSSvM", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13downstreamUrlSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "playbackHlsUrl", + "printedName": "playbackHlsUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvp", + "mangledName": "$s11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvg", + "mangledName": "$s11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvs", + "mangledName": "$s11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvM", + "mangledName": "$s11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "livestreamUrl", + "printedName": "livestreamUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6HLSUrlC13livestreamUrlSSvp", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13livestreamUrlSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC13livestreamUrlSSvg", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13livestreamUrlSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC13livestreamUrlSSvs", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13livestreamUrlSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC13livestreamUrlSSvM", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13livestreamUrlSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(downstreamUrl:playbackHlsUrl:livestreamUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSUrl", + "printedName": "VideoSDKRTC.HLSUrl", + "usr": "s:11VideoSDKRTC6HLSUrlC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6HLSUrlC13downstreamUrl011playbackHlsE0010livestreamE0ACSSSg_A2Gtcfc", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13downstreamUrl011playbackHlsE0010livestreamE0ACSSSg_A2Gtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "toJson", + "printedName": "toJson()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6HLSUrlC6toJsonSDySSypGyF", + "mangledName": "$s11VideoSDKRTC6HLSUrlC6toJsonSDySSypGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC6HLSUrlC", + "mangledName": "$s11VideoSDKRTC6HLSUrlC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigLayout", + "printedName": "ConfigLayout", + "children": [ + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvp", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvg", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvs", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvM", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "priority", + "printedName": "priority", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvp", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvg", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvs", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvM", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "gridSize", + "printedName": "gridSize", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8gridSizeSivp", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8gridSizeSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8gridSizeSivg", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8gridSizeSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8gridSizeSivs", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8gridSizeSivs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8gridSizeSivM", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8gridSizeSivM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(type:priority:gridSize:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC4type8priority8gridSizeAcA0cD4GridO_AA0cD8PriorityOSitcfc", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC4type8priority8gridSizeAcA0cD4GridO_AA0cD8PriorityOSitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "toJson", + "printedName": "toJson()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ConfigLayoutC6toJsonSDySSypGyF", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC6toJsonSDySSypGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC12ConfigLayoutC", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigLayoutPriority", + "printedName": "ConfigLayoutPriority", + "children": [ + { + "kind": "Var", + "name": "SPEAKER", + "printedName": "SPEAKER", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigLayoutPriority.Type) -> VideoSDKRTC.ConfigLayoutPriority", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigLayoutPriority.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO7SPEAKERyA2CmF", + "mangledName": "$s11VideoSDKRTC20ConfigLayoutPriorityO7SPEAKERyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "PIN", + "printedName": "PIN", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigLayoutPriority.Type) -> VideoSDKRTC.ConfigLayoutPriority", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigLayoutPriority.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO3PINyA2CmF", + "mangledName": "$s11VideoSDKRTC20ConfigLayoutPriorityO3PINyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ConfigLayoutPriority?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC20ConfigLayoutPriorityO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC20ConfigLayoutPriorityO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC20ConfigLayoutPriorityO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO", + "mangledName": "$s11VideoSDKRTC20ConfigLayoutPriorityO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigLayoutGrid", + "printedName": "ConfigLayoutGrid", + "children": [ + { + "kind": "Var", + "name": "GRID", + "printedName": "GRID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigLayoutGrid.Type) -> VideoSDKRTC.ConfigLayoutGrid", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigLayoutGrid.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO4GRIDyA2CmF", + "mangledName": "$s11VideoSDKRTC16ConfigLayoutGridO4GRIDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "SPOTLIGHT", + "printedName": "SPOTLIGHT", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigLayoutGrid.Type) -> VideoSDKRTC.ConfigLayoutGrid", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigLayoutGrid.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO9SPOTLIGHTyA2CmF", + "mangledName": "$s11VideoSDKRTC16ConfigLayoutGridO9SPOTLIGHTyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "SIDEBAR", + "printedName": "SIDEBAR", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigLayoutGrid.Type) -> VideoSDKRTC.ConfigLayoutGrid", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigLayoutGrid.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO7SIDEBARyA2CmF", + "mangledName": "$s11VideoSDKRTC16ConfigLayoutGridO7SIDEBARyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ConfigLayoutGrid?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC16ConfigLayoutGridO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC16ConfigLayoutGridO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC16ConfigLayoutGridO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO", + "mangledName": "$s11VideoSDKRTC16ConfigLayoutGridO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigTheme", + "printedName": "ConfigTheme", + "children": [ + { + "kind": "Var", + "name": "DEFAULT", + "printedName": "DEFAULT", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigTheme.Type) -> VideoSDKRTC.ConfigTheme", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigTheme.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC11ConfigThemeO7DEFAULTyA2CmF", + "mangledName": "$s11VideoSDKRTC11ConfigThemeO7DEFAULTyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "LIGHT", + "printedName": "LIGHT", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigTheme.Type) -> VideoSDKRTC.ConfigTheme", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigTheme.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC11ConfigThemeO5LIGHTyA2CmF", + "mangledName": "$s11VideoSDKRTC11ConfigThemeO5LIGHTyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "DARK", + "printedName": "DARK", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigTheme.Type) -> VideoSDKRTC.ConfigTheme", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigTheme.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC11ConfigThemeO4DARKyA2CmF", + "mangledName": "$s11VideoSDKRTC11ConfigThemeO4DARKyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ConfigTheme?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC11ConfigThemeO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC11ConfigThemeO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ConfigThemeO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC11ConfigThemeO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ConfigThemeO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC11ConfigThemeO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC11ConfigThemeO", + "mangledName": "$s11VideoSDKRTC11ConfigThemeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigMode", + "printedName": "ConfigMode", + "children": [ + { + "kind": "Var", + "name": "video_and_audio", + "printedName": "video_and_audio", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigMode.Type) -> VideoSDKRTC.ConfigMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC10ConfigModeO15video_and_audioyA2CmF", + "mangledName": "$s11VideoSDKRTC10ConfigModeO15video_and_audioyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "audio", + "printedName": "audio", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigMode.Type) -> VideoSDKRTC.ConfigMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC10ConfigModeO5audioyA2CmF", + "mangledName": "$s11VideoSDKRTC10ConfigModeO5audioyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ConfigMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10ConfigModeO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC10ConfigModeO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10ConfigModeO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC10ConfigModeO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10ConfigModeO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC10ConfigModeO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC10ConfigModeO", + "mangledName": "$s11VideoSDKRTC10ConfigModeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigQuality", + "printedName": "ConfigQuality", + "children": [ + { + "kind": "Var", + "name": "high", + "printedName": "high", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigQuality.Type) -> VideoSDKRTC.ConfigQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC13ConfigQualityO4highyA2CmF", + "mangledName": "$s11VideoSDKRTC13ConfigQualityO4highyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "med", + "printedName": "med", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigQuality.Type) -> VideoSDKRTC.ConfigQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC13ConfigQualityO3medyA2CmF", + "mangledName": "$s11VideoSDKRTC13ConfigQualityO3medyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "low", + "printedName": "low", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigQuality.Type) -> VideoSDKRTC.ConfigQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC13ConfigQualityO3lowyA2CmF", + "mangledName": "$s11VideoSDKRTC13ConfigQualityO3lowyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ConfigQuality?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC13ConfigQualityO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC13ConfigQualityO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13ConfigQualityO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC13ConfigQualityO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13ConfigQualityO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC13ConfigQualityO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC13ConfigQualityO", + "mangledName": "$s11VideoSDKRTC13ConfigQualityO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigOrientation", + "printedName": "ConfigOrientation", + "children": [ + { + "kind": "Var", + "name": "landscape", + "printedName": "landscape", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigOrientation.Type) -> VideoSDKRTC.ConfigOrientation", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigOrientation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17ConfigOrientationO9landscapeyA2CmF", + "mangledName": "$s11VideoSDKRTC17ConfigOrientationO9landscapeyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "portrait", + "printedName": "portrait", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigOrientation.Type) -> VideoSDKRTC.ConfigOrientation", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigOrientation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17ConfigOrientationO8portraityA2CmF", + "mangledName": "$s11VideoSDKRTC17ConfigOrientationO8portraityA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ConfigOrientation?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17ConfigOrientationO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC17ConfigOrientationO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ConfigOrientationO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC17ConfigOrientationO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ConfigOrientationO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC17ConfigOrientationO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC17ConfigOrientationO", + "mangledName": "$s11VideoSDKRTC17ConfigOrientationO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IdGenerator", + "printedName": "IdGenerator", + "children": [ + { + "kind": "Function", + "name": "generateSpanId", + "printedName": "generateSpanId()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11IdGeneratorP012generateSpanC0AA0fC0VyF", + "mangledName": "$s11VideoSDKRTC11IdGeneratorP012generateSpanC0AA0fC0VyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.IdGenerator>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateTraceId", + "printedName": "generateTraceId()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11IdGeneratorP013generateTraceC0AA0fC0VyF", + "mangledName": "$s11VideoSDKRTC11IdGeneratorP013generateTraceC0AA0fC0VyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.IdGenerator>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC11IdGeneratorP", + "mangledName": "$s11VideoSDKRTC11IdGeneratorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "InMemoryLogRecordExporter", + "printedName": "InMemoryLogRecordExporter", + "children": [ + { + "kind": "Function", + "name": "getFinishedLogRecords", + "printedName": "getFinishedLogRecords()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InMemoryLogRecordExporterC011getFinishedE7RecordsSayAA08ReadableeF0VGyF", + "mangledName": "$s11VideoSDKRTC25InMemoryLogRecordExporterC011getFinishedE7RecordsSayAA08ReadableeF0VGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "export", + "printedName": "export(logRecords:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InMemoryLogRecordExporterC6export10logRecordsAA12ExportResultOSayAA08ReadableeF0VG_tF", + "mangledName": "$s11VideoSDKRTC25InMemoryLogRecordExporterC6export10logRecordsAA12ExportResultOSayAA08ReadableeF0VG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InMemoryLogRecordExporterC8shutdownyyF", + "mangledName": "$s11VideoSDKRTC25InMemoryLogRecordExporterC8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InMemoryLogRecordExporterC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC25InMemoryLogRecordExporterC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC25InMemoryLogRecordExporterC", + "mangledName": "$s11VideoSDKRTC25InMemoryLogRecordExporterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordExporter", + "printedName": "LogRecordExporter", + "usr": "s:11VideoSDKRTC17LogRecordExporterP", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Instrument", + "printedName": "Instrument", + "children": [ + { + "kind": "Var", + "name": "instrumentDescriptor", + "printedName": "instrumentDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10InstrumentP20instrumentDescriptorAA0cE0Vvp", + "mangledName": "$s11VideoSDKRTC10InstrumentP20instrumentDescriptorAA0cE0Vvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10InstrumentP20instrumentDescriptorAA0cE0Vvg", + "mangledName": "$s11VideoSDKRTC10InstrumentP20instrumentDescriptorAA0cE0Vvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Instrument>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10InstrumentPAAE2eeoiySbx_xtFZ", + "mangledName": "$s11VideoSDKRTC10InstrumentPAAE2eeoiySbx_xtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Instrument>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC10InstrumentP", + "mangledName": "$s11VideoSDKRTC10InstrumentP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : Swift.Equatable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "InstrumentationScopeInfo", + "printedName": "InstrumentationScopeInfo", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV7versionSSSgvp", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV7versionSSSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV7versionSSSgvg", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV7versionSSSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "schemaUrl", + "printedName": "schemaUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV9schemaUrlSSSgvp", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV9schemaUrlSSSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV9schemaUrlSSSgvg", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV9schemaUrlSSSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoVACycfc", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:version:schemaUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV4name7version9schemaUrlACSS_SSSgAGtcfc", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV4name7version9schemaUrlACSS_SSSgAGtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "InstrumentDescriptor", + "printedName": "InstrumentDescriptor", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV4nameSSvp", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV4nameSSvg", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unit", + "printedName": "unit", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV4unitSSvp", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV4unitSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV4unitSSvg", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV4unitSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV4typeAA0C4TypeOvp", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV4typeAA0C4TypeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV4typeAA0C4TypeOvg", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV4typeAA0C4TypeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "valueType", + "printedName": "valueType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV9valueTypeAA0c5ValueF0Ovp", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV9valueTypeAA0c5ValueF0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV9valueTypeAA0c5ValueF0Ovg", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV9valueTypeAA0c5ValueF0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:description:unit:type:valueType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV4name11description4unit4type9valueTypeACSS_S2SAA0cJ0OAA0c5ValueJ0Otcfc", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV4name11description4unit4type9valueTypeACSS_S2SAA0cJ0OAA0c5ValueJ0Otcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "InstrumentSelector", + "printedName": "InstrumentSelector", + "children": [ + { + "kind": "Function", + "name": "builder", + "printedName": "builder()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentSelectorBuilder", + "printedName": "VideoSDKRTC.InstrumentSelectorBuilder", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18InstrumentSelectorC7builderAA0cD7BuilderCyFZ", + "mangledName": "$s11VideoSDKRTC18InstrumentSelectorC7builderAA0cD7BuilderCyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18InstrumentSelectorC", + "mangledName": "$s11VideoSDKRTC18InstrumentSelectorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "InstrumentSelectorBuilder", + "printedName": "InstrumentSelectorBuilder", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentSelectorBuilder", + "printedName": "VideoSDKRTC.InstrumentSelectorBuilder", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderCACycfc", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setInstrument", + "printedName": "setInstrument(type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC03setC04typeACXDAA0C4TypeO_tF", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderC03setC04typeACXDAA0C4TypeO_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setInstrument", + "printedName": "setInstrument(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC03setC04nameACXDSS_tF", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderC03setC04nameACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setMeter", + "printedName": "setMeter(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC8setMeter4nameACXDSS_tF", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderC8setMeter4nameACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setMeter", + "printedName": "setMeter(version:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC8setMeter7versionACXDSS_tF", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderC8setMeter7versionACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setMeter", + "printedName": "setMeter(schemaUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC8setMeter9schemaUrlACXDSS_tF", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderC8setMeter9schemaUrlACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentSelector", + "printedName": "VideoSDKRTC.InstrumentSelector", + "usr": "s:11VideoSDKRTC18InstrumentSelectorC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC5buildAA0cD0CyF", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderC5buildAA0cD0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "InstrumentType", + "printedName": "InstrumentType", + "children": [ + { + "kind": "Var", + "name": "counter", + "printedName": "counter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType.Type) -> VideoSDKRTC.InstrumentType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14InstrumentTypeO7counteryA2CmF", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO7counteryA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "upDownCounter", + "printedName": "upDownCounter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType.Type) -> VideoSDKRTC.InstrumentType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14InstrumentTypeO13upDownCounteryA2CmF", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO13upDownCounteryA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "histogram", + "printedName": "histogram", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType.Type) -> VideoSDKRTC.InstrumentType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14InstrumentTypeO9histogramyA2CmF", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO9histogramyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "observableCounter", + "printedName": "observableCounter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType.Type) -> VideoSDKRTC.InstrumentType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14InstrumentTypeO17observableCounteryA2CmF", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO17observableCounteryA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "observableUpDownCounter", + "printedName": "observableUpDownCounter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType.Type) -> VideoSDKRTC.InstrumentType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14InstrumentTypeO23observableUpDownCounteryA2CmF", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO23observableUpDownCounteryA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "observableGauge", + "printedName": "observableGauge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType.Type) -> VideoSDKRTC.InstrumentType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14InstrumentTypeO15observableGaugeyA2CmF", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO15observableGaugeyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14InstrumentTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14InstrumentTypeO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14InstrumentTypeO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14InstrumentTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.InstrumentType]", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14InstrumentTypeO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.InstrumentType]", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14InstrumentTypeO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC14InstrumentTypeO", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.InstrumentType]", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "InstrumentValueType", + "printedName": "InstrumentValueType", + "children": [ + { + "kind": "Var", + "name": "long", + "printedName": "long", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentValueType.Type) -> VideoSDKRTC.InstrumentValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentValueType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO4longyA2CmF", + "mangledName": "$s11VideoSDKRTC19InstrumentValueTypeO4longyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "double", + "printedName": "double", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentValueType.Type) -> VideoSDKRTC.InstrumentValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentValueType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO6doubleyA2CmF", + "mangledName": "$s11VideoSDKRTC19InstrumentValueTypeO6doubleyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC19InstrumentValueTypeO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO04hashD0Sivp", + "mangledName": "$s11VideoSDKRTC19InstrumentValueTypeO04hashD0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO04hashD0Sivg", + "mangledName": "$s11VideoSDKRTC19InstrumentValueTypeO04hashD0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC19InstrumentValueTypeO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO", + "mangledName": "$s11VideoSDKRTC19InstrumentValueTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Internal", + "printedName": "Internal", + "children": [ + { + "kind": "Var", + "name": "emptyData", + "printedName": "emptyData", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8InternalO9emptyData10Foundation0E0VvpZ", + "mangledName": "$s11VideoSDKRTC8InternalO9emptyData10Foundation0E0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8InternalO9emptyData10Foundation0E0VvgZ", + "mangledName": "$s11VideoSDKRTC8InternalO9emptyData10Foundation0E0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "areAllInitialized", + "printedName": "areAllInitialized(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Message]", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8InternalO17areAllInitializedySbSayAA7Message_pGFZ", + "mangledName": "$s11VideoSDKRTC8InternalO17areAllInitializedySbSayAA7Message_pGFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "areAllInitialized", + "printedName": "areAllInitialized(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_0_0 : VideoSDKRTC.Message]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8InternalO17areAllInitializedySbSDyxAA7Message_pGSHRzlFZ", + "mangledName": "$s11VideoSDKRTC8InternalO17areAllInitializedySbSDyxAA7Message_pGSHRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC8InternalO", + "mangledName": "$s11VideoSDKRTC8InternalO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IntObserverMetric", + "printedName": "IntObserverMetric", + "children": [ + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17IntObserverMetricP7observe5value8labelsetySi_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC17IntObserverMetricP7observe5value8labelsetySi_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.IntObserverMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17IntObserverMetricP7observe5value6labelsySi_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC17IntObserverMetricP7observe5value6labelsySi_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.IntObserverMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC17IntObserverMetricP", + "mangledName": "$s11VideoSDKRTC17IntObserverMetricP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "NoopIntObserverMetric", + "printedName": "NoopIntObserverMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopIntObserverMetric", + "printedName": "VideoSDKRTC.NoopIntObserverMetric", + "usr": "s:11VideoSDKRTC21NoopIntObserverMetricV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21NoopIntObserverMetricVACycfc", + "mangledName": "$s11VideoSDKRTC21NoopIntObserverMetricVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopIntObserverMetricV7observe5value8labelsetySi_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC21NoopIntObserverMetricV7observe5value8labelsetySi_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopIntObserverMetricV7observe5value6labelsySi_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC21NoopIntObserverMetricV7observe5value6labelsySi_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC21NoopIntObserverMetricV", + "mangledName": "$s11VideoSDKRTC21NoopIntObserverMetricV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "IntObserverMetric", + "printedName": "IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP", + "mangledName": "$s11VideoSDKRTC17IntObserverMetricP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Darwin", + "printedName": "Darwin", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreMedia", + "printedName": "CoreMedia", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "JSONDecodingError", + "printedName": "JSONDecodingError", + "children": [ + { + "kind": "Var", + "name": "failure", + "printedName": "failure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO7failureyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO7failureyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedNumber", + "printedName": "malformedNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO15malformedNumberyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO15malformedNumberyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "numberRange", + "printedName": "numberRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO11numberRangeyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO11numberRangeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedMap", + "printedName": "malformedMap", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO12malformedMapyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO12malformedMapyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedBool", + "printedName": "malformedBool", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO13malformedBoolyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO13malformedBoolyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedString", + "printedName": "malformedString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO15malformedStringyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO15malformedStringyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "invalidUTF8", + "printedName": "invalidUTF8", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO11invalidUTF8yA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO11invalidUTF8yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "missingFieldNames", + "printedName": "missingFieldNames", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO17missingFieldNamesyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO17missingFieldNamesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "schemaMismatch", + "printedName": "schemaMismatch", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO14schemaMismatchyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO14schemaMismatchyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unrecognizedEnumValue", + "printedName": "unrecognizedEnumValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO21unrecognizedEnumValueyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO21unrecognizedEnumValueyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "illegalNull", + "printedName": "illegalNull", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO11illegalNullyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO11illegalNullyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unquotedMapKey", + "printedName": "unquotedMapKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO14unquotedMapKeyyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO14unquotedMapKeyyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "leadingZero", + "printedName": "leadingZero", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO11leadingZeroyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO11leadingZeroyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "truncated", + "printedName": "truncated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO9truncatedyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO9truncatedyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedDuration", + "printedName": "malformedDuration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO17malformedDurationyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO17malformedDurationyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedTimestamp", + "printedName": "malformedTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO18malformedTimestampyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO18malformedTimestampyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedFieldMask", + "printedName": "malformedFieldMask", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO18malformedFieldMaskyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO18malformedFieldMaskyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "trailingGarbage", + "printedName": "trailingGarbage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO15trailingGarbageyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO15trailingGarbageyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "conflictingOneOf", + "printedName": "conflictingOneOf", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO16conflictingOneOfyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO16conflictingOneOfyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messageDepthLimit", + "printedName": "messageDepthLimit", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO17messageDepthLimityA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO17messageDepthLimityA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unknownField", + "printedName": "unknownField", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> (Swift.String) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO12unknownFieldyACSScACmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO12unknownFieldyACSScACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "JSONDecodingOptions", + "printedName": "JSONDecodingOptions", + "children": [ + { + "kind": "Var", + "name": "messageDepthLimit", + "printedName": "messageDepthLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivp", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivg", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivs", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivM", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ignoreUnknownFields", + "printedName": "ignoreUnknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvp", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvg", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvs", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvM", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "JSONEncodingError", + "printedName": "JSONEncodingError", + "children": [ + { + "kind": "Var", + "name": "anyTranscodeFailure", + "printedName": "anyTranscodeFailure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONEncodingError.Type) -> VideoSDKRTC.JSONEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO19anyTranscodeFailureyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO19anyTranscodeFailureyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "timestampRange", + "printedName": "timestampRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONEncodingError.Type) -> VideoSDKRTC.JSONEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO14timestampRangeyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO14timestampRangeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "durationRange", + "printedName": "durationRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONEncodingError.Type) -> VideoSDKRTC.JSONEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO13durationRangeyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO13durationRangeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fieldMaskConversion", + "printedName": "fieldMaskConversion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONEncodingError.Type) -> VideoSDKRTC.JSONEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO19fieldMaskConversionyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO19fieldMaskConversionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "missingFieldNames", + "printedName": "missingFieldNames", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONEncodingError.Type) -> VideoSDKRTC.JSONEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO17missingFieldNamesyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO17missingFieldNamesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "missingValue", + "printedName": "missingValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONEncodingError.Type) -> VideoSDKRTC.JSONEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO12missingValueyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO12missingValueyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "valueNumberNotFinite", + "printedName": "valueNumberNotFinite", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONEncodingError.Type) -> VideoSDKRTC.JSONEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO20valueNumberNotFiniteyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO20valueNumberNotFiniteyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "JSONEncodingOptions", + "printedName": "JSONEncodingOptions", + "children": [ + { + "kind": "Var", + "name": "alwaysPrintInt64sAsNumbers", + "printedName": "alwaysPrintInt64sAsNumbers", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvp", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvg", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvs", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvM", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "alwaysPrintEnumsAsInts", + "printedName": "alwaysPrintEnumsAsInts", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvp", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvg", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvs", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvM", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "preserveProtoFieldNames", + "printedName": "preserveProtoFieldNames", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvp", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvg", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvs", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvM", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingOptions", + "printedName": "VideoSDKRTC.JSONEncodingOptions", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LabelSet", + "printedName": "LabelSet", + "children": [ + { + "kind": "Var", + "name": "labels", + "printedName": "labels", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8LabelSetC6labelsSDyS2SGvp", + "mangledName": "$s11VideoSDKRTC8LabelSetC6labelsSDyS2SGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8LabelSetC6labelsSDyS2SGvg", + "mangledName": "$s11VideoSDKRTC8LabelSetC6labelsSDyS2SGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "empty", + "printedName": "empty", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8LabelSetC5emptyACvpZ", + "mangledName": "$s11VideoSDKRTC8LabelSetC5emptyACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8LabelSetC5emptyACvgZ", + "mangledName": "$s11VideoSDKRTC8LabelSetC5emptyACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8LabelSetC5emptyACvsZ", + "mangledName": "$s11VideoSDKRTC8LabelSetC5emptyACvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8LabelSetC5emptyACvMZ", + "mangledName": "$s11VideoSDKRTC8LabelSetC5emptyACvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8LabelSetC6labelsACSDyS2SG_tcfc", + "mangledName": "$s11VideoSDKRTC8LabelSetC6labelsACSDyS2SG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Required", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8LabelSetC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC8LabelSetC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8LabelSetC4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC8LabelSetC4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8LabelSetC9hashValueSivp", + "mangledName": "$s11VideoSDKRTC8LabelSetC9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isOpen": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8LabelSetC9hashValueSivg", + "mangledName": "$s11VideoSDKRTC8LabelSetC9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC8LabelSetC", + "mangledName": "$s11VideoSDKRTC8LabelSetC", + "moduleName": "VideoSDKRTC", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LastValueAggregation", + "printedName": "LastValueAggregation", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "LastValueAggregation", + "printedName": "VideoSDKRTC.LastValueAggregation", + "usr": "s:11VideoSDKRTC20LastValueAggregationC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20LastValueAggregationC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC20LastValueAggregationC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LastValueAggregation", + "printedName": "VideoSDKRTC.LastValueAggregation", + "usr": "s:11VideoSDKRTC20LastValueAggregationC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20LastValueAggregationC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC20LastValueAggregationC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createAggregator", + "printedName": "createAggregator(descriptor:exemplarFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableAggregator", + "printedName": "VideoSDKRTC.StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20LastValueAggregationC16createAggregator10descriptor14exemplarFilterAA06StableG0_pAA20InstrumentDescriptorV_AA08ExemplarJ0_ptF", + "mangledName": "$s11VideoSDKRTC20LastValueAggregationC16createAggregator10descriptor14exemplarFilterAA06StableG0_pAA20InstrumentDescriptorV_AA08ExemplarJ0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isCompatible", + "printedName": "isCompatible(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20LastValueAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "mangledName": "$s11VideoSDKRTC20LastValueAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20LastValueAggregationC", + "mangledName": "$s11VideoSDKRTC20LastValueAggregationC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Aggregation", + "printedName": "Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP", + "mangledName": "$s11VideoSDKRTC11AggregationP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LastValueAggregator", + "printedName": "LastValueAggregator", + "children": [ + { + "kind": "Function", + "name": "update", + "printedName": "update(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LastValueAggregatorC6update5valueyx_tF", + "mangledName": "$s11VideoSDKRTC19LastValueAggregatorC6update5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkpoint", + "printedName": "checkpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LastValueAggregatorC10checkpointyyF", + "mangledName": "$s11VideoSDKRTC19LastValueAggregatorC10checkpointyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LastValueAggregatorC12toMetricDataAA0gH0_pyF", + "mangledName": "$s11VideoSDKRTC19LastValueAggregatorC12toMetricDataAA0gH0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAggregationType", + "printedName": "getAggregationType()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LastValueAggregatorC18getAggregationTypeAA0gH0OyF", + "mangledName": "$s11VideoSDKRTC19LastValueAggregatorC18getAggregationTypeAA0gH0OyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19LastValueAggregatorC", + "mangledName": "$s11VideoSDKRTC19LastValueAggregatorC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:11VideoSDKRTC10AggregatorC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.Aggregator<τ_0_0>" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LivestreamOutput", + "printedName": "LivestreamOutput", + "children": [ + { + "kind": "Var", + "name": "url", + "printedName": "url", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16LivestreamOutputV3urlSSvp", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV3urlSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16LivestreamOutputV3urlSSvg", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV3urlSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "streamKey", + "printedName": "streamKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16LivestreamOutputV9streamKeySSvp", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV9streamKeySSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16LivestreamOutputV9streamKeySSvg", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV9streamKeySSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(url:streamKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LivestreamOutput", + "printedName": "VideoSDKRTC.LivestreamOutput", + "usr": "s:11VideoSDKRTC16LivestreamOutputV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16LivestreamOutputV3url9streamKeyACSS_SStcfc", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV3url9streamKeyACSS_SStcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LivestreamOutput", + "printedName": "VideoSDKRTC.LivestreamOutput", + "usr": "s:11VideoSDKRTC16LivestreamOutputV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16LivestreamOutputV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LivestreamOutputV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16LivestreamOutputV", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Darwin", + "printedName": "Darwin", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Logger", + "printedName": "Logger", + "children": [ + { + "kind": "Function", + "name": "eventBuilder", + "printedName": "eventBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "EventBuilder", + "printedName": "VideoSDKRTC.EventBuilder", + "usr": "s:11VideoSDKRTC12EventBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6LoggerP12eventBuilder4nameAA05EventE0_pSS_tF", + "mangledName": "$s11VideoSDKRTC6LoggerP12eventBuilder4nameAA05EventE0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Logger>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logRecordBuilder", + "printedName": "logRecordBuilder()", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordBuilder", + "printedName": "VideoSDKRTC.LogRecordBuilder", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6LoggerP16logRecordBuilderAA03LogeF0_pyF", + "mangledName": "$s11VideoSDKRTC6LoggerP16logRecordBuilderAA03LogeF0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Logger>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC6LoggerP", + "mangledName": "$s11VideoSDKRTC6LoggerP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoggerBuilder", + "printedName": "LoggerBuilder", + "children": [ + { + "kind": "Function", + "name": "setEventDomain", + "printedName": "setEventDomain(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LoggerBuilderP14setEventDomainyxSSF", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP14setEventDomainyxSSF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSchemaUrl", + "printedName": "setSchemaUrl(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LoggerBuilderP12setSchemaUrlyxSSF", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP12setSchemaUrlyxSSF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setInstrumentationVersion", + "printedName": "setInstrumentationVersion(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LoggerBuilderP25setInstrumentationVersionyxSSF", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP25setInstrumentationVersionyxSSF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setIncludeTraceContext", + "printedName": "setIncludeTraceContext(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LoggerBuilderP22setIncludeTraceContextyxSbF", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP22setIncludeTraceContextyxSbF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttributes", + "printedName": "setAttributes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LoggerBuilderP13setAttributesyxSDySSAA14AttributeValueOGF", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP13setAttributesyxSDySSAA14AttributeValueOGF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "VideoSDKRTC.Logger", + "usr": "s:11VideoSDKRTC6LoggerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LoggerBuilderP5buildAA0C0_pyF", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP5buildAA0C0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13LoggerBuilderP", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoggerBuilderSdk", + "printedName": "LoggerBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "setEventDomain", + "printedName": "setEventDomain(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LoggerBuilderSdkC14setEventDomainyACXDSSF", + "mangledName": "$s11VideoSDKRTC16LoggerBuilderSdkC14setEventDomainyACXDSSF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSchemaUrl", + "printedName": "setSchemaUrl(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LoggerBuilderSdkC12setSchemaUrlyACXDSSF", + "mangledName": "$s11VideoSDKRTC16LoggerBuilderSdkC12setSchemaUrlyACXDSSF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setInstrumentationVersion", + "printedName": "setInstrumentationVersion(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LoggerBuilderSdkC25setInstrumentationVersionyACXDSSF", + "mangledName": "$s11VideoSDKRTC16LoggerBuilderSdkC25setInstrumentationVersionyACXDSSF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setIncludeTraceContext", + "printedName": "setIncludeTraceContext(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LoggerBuilderSdkC22setIncludeTraceContextyACXDSbF", + "mangledName": "$s11VideoSDKRTC16LoggerBuilderSdkC22setIncludeTraceContextyACXDSbF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttributes", + "printedName": "setAttributes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LoggerBuilderSdkC13setAttributesyACXDSDySSAA14AttributeValueOGF", + "mangledName": "$s11VideoSDKRTC16LoggerBuilderSdkC13setAttributesyACXDSDySSAA14AttributeValueOGF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "VideoSDKRTC.Logger", + "usr": "s:11VideoSDKRTC6LoggerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LoggerBuilderSdkC5buildAA0C0_pyF", + "mangledName": "$s11VideoSDKRTC16LoggerBuilderSdkC5buildAA0C0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16LoggerBuilderSdkC", + "mangledName": "$s11VideoSDKRTC16LoggerBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LoggerBuilder", + "printedName": "LoggerBuilder", + "usr": "s:11VideoSDKRTC13LoggerBuilderP", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoggerProvider", + "printedName": "LoggerProvider", + "children": [ + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationScopeName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "VideoSDKRTC.Logger", + "usr": "s:11VideoSDKRTC6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14LoggerProviderP3get24instrumentationScopeNameAA0C0_pSS_tF", + "mangledName": "$s11VideoSDKRTC14LoggerProviderP3get24instrumentationScopeNameAA0C0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerProvider>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loggerBuilder", + "printedName": "loggerBuilder(instrumentationScopeName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerBuilder", + "printedName": "VideoSDKRTC.LoggerBuilder", + "usr": "s:11VideoSDKRTC13LoggerBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14LoggerProviderP13loggerBuilder24instrumentationScopeNameAA0cF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC14LoggerProviderP13loggerBuilder24instrumentationScopeNameAA0cF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerProvider>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14LoggerProviderP", + "mangledName": "$s11VideoSDKRTC14LoggerProviderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoggerProviderBuilder", + "printedName": "LoggerProviderBuilder", + "children": [ + { + "kind": "Var", + "name": "clock", + "printedName": "clock", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC5clockAA5Clock_pvp", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC5clockAA5Clock_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC5clockAA5Clock_pvg", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC5clockAA5Clock_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "logLimits", + "printedName": "logLimits", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLimits", + "printedName": "VideoSDKRTC.LogLimits", + "usr": "s:11VideoSDKRTC9LogLimitsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC9logLimitsAA03LogG0Vvp", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC9logLimitsAA03LogG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLimits", + "printedName": "VideoSDKRTC.LogLimits", + "usr": "s:11VideoSDKRTC9LogLimitsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC9logLimitsAA03LogG0Vvg", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC9logLimitsAA03LogG0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "logProcessors", + "printedName": "logProcessors", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.LogRecordProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordProcessor", + "printedName": "VideoSDKRTC.LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC13logProcessorsSayAA18LogRecordProcessor_pGvp", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC13logProcessorsSayAA18LogRecordProcessor_pGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.LogRecordProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordProcessor", + "printedName": "VideoSDKRTC.LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC13logProcessorsSayAA18LogRecordProcessor_pGvg", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC13logProcessorsSayAA18LogRecordProcessor_pGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerProviderBuilder", + "printedName": "VideoSDKRTC.LoggerProviderBuilder", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderCACycfc", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(clock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC4with5clockACXDAA5Clock_p_tF", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC4with5clockACXDAA5Clock_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(resource:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC4with8resourceACXDAA8ResourceV_tF", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC4with8resourceACXDAA8ResourceV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(logLimits:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "LogLimits", + "printedName": "VideoSDKRTC.LogLimits", + "usr": "s:11VideoSDKRTC9LogLimitsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC4with9logLimitsACXDAA03LogH0V_tF", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC4with9logLimitsACXDAA03LogH0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(processors:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.LogRecordProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordProcessor", + "printedName": "VideoSDKRTC.LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC4with10processorsACXDSayAA18LogRecordProcessor_pG_tF", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC4with10processorsACXDSayAA18LogRecordProcessor_pG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerProviderSdk", + "printedName": "VideoSDKRTC.LoggerProviderSdk", + "usr": "s:11VideoSDKRTC17LoggerProviderSdkC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC5buildAA0cD3SdkCyF", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC5buildAA0cD3SdkCyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoggerProviderSdk", + "printedName": "LoggerProviderSdk", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(clock:resource:logLimits:logRecordProcessors:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerProviderSdk", + "printedName": "VideoSDKRTC.LoggerProviderSdk", + "usr": "s:11VideoSDKRTC17LoggerProviderSdkC" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC5ClockP" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "LogLimits", + "printedName": "VideoSDKRTC.LogLimits", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC9LogLimitsV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.LogRecordProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordProcessor", + "printedName": "VideoSDKRTC.LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17LoggerProviderSdkC5clock8resource9logLimits0H16RecordProcessorsAcA5Clock_p_AA8ResourceVAA03LogI0VSayAA0nJ9Processor_pGtcfc", + "mangledName": "$s11VideoSDKRTC17LoggerProviderSdkC5clock8resource9logLimits0H16RecordProcessorsAcA5Clock_p_AA8ResourceVAA03LogI0VSayAA0nJ9Processor_pGtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationScopeName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "VideoSDKRTC.Logger", + "usr": "s:11VideoSDKRTC6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LoggerProviderSdkC3get24instrumentationScopeNameAA0C0_pSS_tF", + "mangledName": "$s11VideoSDKRTC17LoggerProviderSdkC3get24instrumentationScopeNameAA0C0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loggerBuilder", + "printedName": "loggerBuilder(instrumentationScopeName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerBuilder", + "printedName": "VideoSDKRTC.LoggerBuilder", + "usr": "s:11VideoSDKRTC13LoggerBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LoggerProviderSdkC13loggerBuilder24instrumentationScopeNameAA0cG0_pSS_tF", + "mangledName": "$s11VideoSDKRTC17LoggerProviderSdkC13loggerBuilder24instrumentationScopeNameAA0cG0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC17LoggerProviderSdkC", + "mangledName": "$s11VideoSDKRTC17LoggerProviderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LoggerProvider", + "printedName": "LoggerProvider", + "usr": "s:11VideoSDKRTC14LoggerProviderP", + "mangledName": "$s11VideoSDKRTC14LoggerProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "os.log", + "printedName": "os.log", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "LoggerSdk", + "printedName": "LoggerSdk", + "children": [ + { + "kind": "Function", + "name": "eventBuilder", + "printedName": "eventBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "EventBuilder", + "printedName": "VideoSDKRTC.EventBuilder", + "usr": "s:11VideoSDKRTC12EventBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9LoggerSdkC12eventBuilder4nameAA05EventF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC9LoggerSdkC12eventBuilder4nameAA05EventF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logRecordBuilder", + "printedName": "logRecordBuilder()", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordBuilder", + "printedName": "VideoSDKRTC.LogRecordBuilder", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9LoggerSdkC16logRecordBuilderAA03LogfG0_pyF", + "mangledName": "$s11VideoSDKRTC9LoggerSdkC16logRecordBuilderAA03LogfG0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC9LoggerSdkC", + "mangledName": "$s11VideoSDKRTC9LoggerSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Logger", + "printedName": "Logger", + "usr": "s:11VideoSDKRTC6LoggerP", + "mangledName": "$s11VideoSDKRTC6LoggerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LogLimits", + "printedName": "LogLimits", + "children": [ + { + "kind": "Var", + "name": "defaultMaxAttributeCount", + "printedName": "defaultMaxAttributeCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9LogLimitsV24defaultMaxAttributeCountSivpZ", + "mangledName": "$s11VideoSDKRTC9LogLimitsV24defaultMaxAttributeCountSivpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9LogLimitsV24defaultMaxAttributeCountSivgZ", + "mangledName": "$s11VideoSDKRTC9LogLimitsV24defaultMaxAttributeCountSivgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultMaxAtributeLength", + "printedName": "defaultMaxAtributeLength", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9LogLimitsV24defaultMaxAtributeLengthSivpZ", + "mangledName": "$s11VideoSDKRTC9LogLimitsV24defaultMaxAtributeLengthSivpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9LogLimitsV24defaultMaxAtributeLengthSivgZ", + "mangledName": "$s11VideoSDKRTC9LogLimitsV24defaultMaxAtributeLengthSivgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxAttributeCount", + "printedName": "maxAttributeCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9LogLimitsV17maxAttributeCountSivp", + "mangledName": "$s11VideoSDKRTC9LogLimitsV17maxAttributeCountSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9LogLimitsV17maxAttributeCountSivg", + "mangledName": "$s11VideoSDKRTC9LogLimitsV17maxAttributeCountSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxAttributeLength", + "printedName": "maxAttributeLength", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9LogLimitsV18maxAttributeLengthSivp", + "mangledName": "$s11VideoSDKRTC9LogLimitsV18maxAttributeLengthSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9LogLimitsV18maxAttributeLengthSivg", + "mangledName": "$s11VideoSDKRTC9LogLimitsV18maxAttributeLengthSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(maxAttributeCount:maxAttributeLength:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLimits", + "printedName": "VideoSDKRTC.LogLimits", + "usr": "s:11VideoSDKRTC9LogLimitsV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC9LogLimitsV17maxAttributeCount0eF6LengthACSi_Sitcfc", + "mangledName": "$s11VideoSDKRTC9LogLimitsV17maxAttributeCount0eF6LengthACSi_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC9LogLimitsV", + "mangledName": "$s11VideoSDKRTC9LogLimitsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LogRecordAdapter", + "printedName": "LogRecordAdapter", + "children": [ + { + "kind": "Function", + "name": "toProtoResourceRecordLog", + "printedName": "toProtoResourceRecordLog(logRecordList:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordAdapterC015toProtoResourcedC003logD4ListSayAA014Opentelemetry_g9_Logs_V1_hL0VGSayAA08ReadablecD0VG_tFZ", + "mangledName": "$s11VideoSDKRTC16LogRecordAdapterC015toProtoResourcedC003logD4ListSayAA014Opentelemetry_g9_Logs_V1_hL0VGSayAA08ReadablecD0VG_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16LogRecordAdapterC", + "mangledName": "$s11VideoSDKRTC16LogRecordAdapterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LogRecordBuilder", + "printedName": "LogRecordBuilder", + "children": [ + { + "kind": "Function", + "name": "setTimestamp", + "printedName": "setTimestamp(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP12setTimestampyx10Foundation4DateVF", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP12setTimestampyx10Foundation4DateVF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setObservedTimestamp", + "printedName": "setObservedTimestamp(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP20setObservedTimestampyx10Foundation4DateVF", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP20setObservedTimestampyx10Foundation4DateVF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSpanContext", + "printedName": "setSpanContext(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP14setSpanContextyxAA0gH0VF", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP14setSpanContextyxAA0gH0VF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSeverity", + "printedName": "setSeverity(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP11setSeverityyxAA0G0OF", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP11setSeverityyxAA0G0OF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setBody", + "printedName": "setBody(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP7setBodyyxSSF", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP7setBodyyxSSF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttributes", + "printedName": "setAttributes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP13setAttributesyxSDySSAA14AttributeValueOGF", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP13setAttributesyxSDySSAA14AttributeValueOGF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "emit", + "printedName": "emit()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP4emityyF", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP4emityyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LogRecordBuilderSdk", + "printedName": "LogRecordBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "setTimestamp", + "printedName": "setTimestamp(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC12setTimestampyACXD10Foundation4DateVF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC12setTimestampyACXD10Foundation4DateVF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setObservedTimestamp", + "printedName": "setObservedTimestamp(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC20setObservedTimestampyACXD10Foundation4DateVF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC20setObservedTimestampyACXD10Foundation4DateVF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSpanContext", + "printedName": "setSpanContext(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC14setSpanContextyACXDAA0hI0VF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC14setSpanContextyACXDAA0hI0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSeverity", + "printedName": "setSeverity(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC11setSeverityyACXDAA0H0OF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC11setSeverityyACXDAA0H0OF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setBody", + "printedName": "setBody(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC7setBodyyACXDSSF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC7setBodyyACXDSSF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttributes", + "printedName": "setAttributes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC13setAttributesyACXDSDySSAA14AttributeValueOGF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC13setAttributesyACXDSDySSAA14AttributeValueOGF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setData", + "printedName": "setData(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC7setDatayACXDSDySSAA14AttributeValueOGF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC7setDatayACXDSDySSAA14AttributeValueOGF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "emit", + "printedName": "emit()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC4emityyF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC4emityyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "EventBuilder", + "printedName": "EventBuilder", + "usr": "s:11VideoSDKRTC12EventBuilderP", + "mangledName": "$s11VideoSDKRTC12EventBuilderP" + }, + { + "kind": "Conformance", + "name": "LogRecordBuilder", + "printedName": "LogRecordBuilder", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LogRecordExporter", + "printedName": "LogRecordExporter", + "children": [ + { + "kind": "Function", + "name": "export", + "printedName": "export(logRecords:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LogRecordExporterP6export10logRecordsAA12ExportResultOSayAA08ReadablecD0VG_tF", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP6export10logRecordsAA12ExportResultOSayAA08ReadablecD0VG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LogRecordExporterP8shutdownyyF", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP8shutdownyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LogRecordExporterP10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC17LogRecordExporterP", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LogRecordProcessor", + "printedName": "LogRecordProcessor", + "children": [ + { + "kind": "Function", + "name": "onEmit", + "printedName": "onEmit(logRecord:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP6onEmit03logD0yAA08ReadablecD0V_tF", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP6onEmit03logD0yAA08ReadablecD0V_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "Var", + "name": "unspecified", + "printedName": "unspecified", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO11unspecifiedyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO11unspecifiedyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "trace", + "printedName": "trace", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5traceyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5traceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "trace2", + "printedName": "trace2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6trace2yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6trace2yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "trace3", + "printedName": "trace3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6trace3yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6trace3yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "trace4", + "printedName": "trace4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6trace4yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6trace4yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5debugyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5debugyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "debug2", + "printedName": "debug2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6debug2yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6debug2yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "debug3", + "printedName": "debug3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6debug3yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6debug3yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "debug4", + "printedName": "debug4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6debug4yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6debug4yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "info", + "printedName": "info", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO4infoyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO4infoyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "info2", + "printedName": "info2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5info2yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5info2yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "info3", + "printedName": "info3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5info3yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5info3yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "info4", + "printedName": "info4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5info4yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5info4yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "warn", + "printedName": "warn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO4warnyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO4warnyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "warn2", + "printedName": "warn2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5warn2yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5warn2yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "warn3", + "printedName": "warn3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5warn3yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5warn3yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "warn4", + "printedName": "warn4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5warn4yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5warn4yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5erroryA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5erroryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error2", + "printedName": "error2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6error2yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6error2yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error3", + "printedName": "error3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6error3yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6error3yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error4", + "printedName": "error4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6error4yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6error4yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fatal", + "printedName": "fatal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5fatalyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5fatalyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fatal2", + "printedName": "fatal2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6fatal2yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6fatal2yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fatal3", + "printedName": "fatal3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6fatal3yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6fatal3yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fatal4", + "printedName": "fatal4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6fatal4yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6fatal4yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> (Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO12UNRECOGNIZEDyACSicACmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO12UNRECOGNIZEDyACSicACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberOACycfc", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberOACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber?", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvsZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvMZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "children": [ + { + "kind": "Var", + "name": "doNotUse", + "printedName": "doNotUse", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8doNotUseyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8doNotUseyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "traceFlagsMask", + "printedName": "traceFlagsMask", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO05traceI4MaskyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO05traceI4MaskyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags.Type) -> (Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO12UNRECOGNIZEDyACSicACmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO12UNRECOGNIZEDyACSicACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsOACycfc", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsOACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags?", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvsZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvMZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Logs_V1_LogsData", + "printedName": "Opentelemetry_Proto_Logs_V1_LogsData", + "children": [ + { + "kind": "Var", + "name": "resourceLogs", + "printedName": "resourceLogs", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvp", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvg", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvs", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvM", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogsData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataVACycfc", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogsData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogsData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "children": [ + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0VvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasResource", + "printedName": "hasResource", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V03hasG0Sbvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V03hasG0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V03hasG0Sbvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V03hasG0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearResource", + "printedName": "clearResource()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05clearG0yyF", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05clearG0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "scopeLogs", + "printedName": "scopeLogs", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "schemaURL", + "printedName": "schemaURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0VACycfc", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0VACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9hashValueSivp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9hashValueSivg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "printedName": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "children": [ + { + "kind": "Var", + "name": "scope", + "printedName": "scope", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvp", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvg", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvs", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0VvM", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasScope", + "printedName": "hasScope", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V03hasG0Sbvp", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V03hasG0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V03hasG0Sbvg", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V03hasG0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearScope", + "printedName": "clearScope()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V05clearG0yyF", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V05clearG0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "logRecords", + "printedName": "logRecords", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecord", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvp", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecord", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvg", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecord", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvs", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvM", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "schemaURL", + "printedName": "schemaURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvp", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvg", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvs", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvM", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0VACycfc", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0VACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9hashValueSivp", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9hashValueSivg", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Logs_V1_LogRecord", + "printedName": "Opentelemetry_Proto_Logs_V1_LogRecord", + "children": [ + { + "kind": "Var", + "name": "timeUnixNano", + "printedName": "timeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "observedTimeUnixNano", + "printedName": "observedTimeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "severityNumber", + "printedName": "severityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0Ovp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0Ovg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0Ovs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0Ovs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0OvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "severityText", + "printedName": "severityText", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "body", + "printedName": "body", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasBody", + "printedName": "hasBody", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7hasBodySbvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7hasBodySbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7hasBodySbvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7hasBodySbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearBody", + "printedName": "clearBody()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV9clearBodyyyF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV9clearBodyyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedAttributesCount", + "printedName": "droppedAttributesCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "flags", + "printedName": "flags", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32VvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "traceID", + "printedName": "traceID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "spanID", + "printedName": "spanID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecord", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordVACycfc", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecord", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecord", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "printedName": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "children": [ + { + "kind": "Var", + "name": "resourceLogs", + "printedName": "resourceLogs", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvs", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvM", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestVACycfc", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "printedName": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "children": [ + { + "kind": "Var", + "name": "partialSuccess", + "printedName": "partialSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvs", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0VvM", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPartialSuccess", + "printedName": "hasPartialSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPartialSuccess", + "printedName": "clearPartialSuccess()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV19clearPartialSuccessyyF", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV19clearPartialSuccessyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseVACycfc", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "printedName": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "children": [ + { + "kind": "Var", + "name": "rejectedLogRecords", + "printedName": "rejectedLogRecords", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64Vvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64Vvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64Vvs", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64VvM", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorMessage", + "printedName": "errorMessage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvs", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvM", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessVACycfc", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongCounter", + "printedName": "LongCounter", + "children": [ + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11LongCounterP3add5valueySi_tF", + "mangledName": "$s11VideoSDKRTC11LongCounterP3add5valueySi_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attribute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11LongCounterP3add5value9attributeySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC11LongCounterP3add5value9attributeySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC11LongCounterP", + "mangledName": "$s11VideoSDKRTC11LongCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongCounterBuilder", + "printedName": "LongCounterBuilder", + "children": [ + { + "kind": "Function", + "name": "ofDoubles", + "printedName": "ofDoubles()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleCounterBuilder", + "printedName": "VideoSDKRTC.DoubleCounterBuilder", + "usr": "s:11VideoSDKRTC20DoubleCounterBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18LongCounterBuilderP9ofDoublesAA06DoubledE0_pyF", + "mangledName": "$s11VideoSDKRTC18LongCounterBuilderP9ofDoublesAA06DoubledE0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongCounter", + "printedName": "VideoSDKRTC.LongCounter", + "usr": "s:11VideoSDKRTC11LongCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18LongCounterBuilderP5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC18LongCounterBuilderP5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableLongCounter", + "printedName": "VideoSDKRTC.ObservableLongCounter", + "usr": "s:11VideoSDKRTC21ObservableLongCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableLongMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableLongMeasurement", + "printedName": "VideoSDKRTC.ObservableLongMeasurement", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18LongCounterBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC18LongCounterBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC18LongCounterBuilderP", + "mangledName": "$s11VideoSDKRTC18LongCounterBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongCounterMeterBuilderSdk", + "printedName": "LongCounterMeterBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "ofDoubles", + "printedName": "ofDoubles()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleCounterBuilder", + "printedName": "VideoSDKRTC.DoubleCounterBuilder", + "usr": "s:11VideoSDKRTC20DoubleCounterBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26LongCounterMeterBuilderSdkC9ofDoublesAA06DoubledF0_pyF", + "mangledName": "$s11VideoSDKRTC26LongCounterMeterBuilderSdkC9ofDoublesAA06DoubledF0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongCounter", + "printedName": "VideoSDKRTC.LongCounter", + "usr": "s:11VideoSDKRTC11LongCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26LongCounterMeterBuilderSdkC5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC26LongCounterMeterBuilderSdkC5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableLongCounter", + "printedName": "VideoSDKRTC.ObservableLongCounter", + "usr": "s:11VideoSDKRTC21ObservableLongCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableLongMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableLongMeasurement", + "printedName": "VideoSDKRTC.ObservableLongMeasurement", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26LongCounterMeterBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0kC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC26LongCounterMeterBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0kC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC26LongCounterMeterBuilderSdkC", + "mangledName": "$s11VideoSDKRTC26LongCounterMeterBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LongCounterBuilder", + "printedName": "LongCounterBuilder", + "usr": "s:11VideoSDKRTC18LongCounterBuilderP", + "mangledName": "$s11VideoSDKRTC18LongCounterBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongCounterSdk", + "printedName": "LongCounterSdk", + "children": [ + { + "kind": "Var", + "name": "instrumentDescriptor", + "printedName": "instrumentDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0Vvp", + "mangledName": "$s11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0Vvg", + "mangledName": "$s11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0Vvs", + "mangledName": "$s11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0VvM", + "mangledName": "$s11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14LongCounterSdkC3add5valueySi_tF", + "mangledName": "$s11VideoSDKRTC14LongCounterSdkC3add5valueySi_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attribute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14LongCounterSdkC3add5value9attributeySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC14LongCounterSdkC3add5value9attributeySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC14LongCounterSdkC", + "mangledName": "$s11VideoSDKRTC14LongCounterSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LongCounter", + "printedName": "LongCounter", + "usr": "s:11VideoSDKRTC11LongCounterP", + "mangledName": "$s11VideoSDKRTC11LongCounterP" + }, + { + "kind": "Conformance", + "name": "Instrument", + "printedName": "Instrument", + "usr": "s:11VideoSDKRTC10InstrumentP", + "mangledName": "$s11VideoSDKRTC10InstrumentP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleCounterSdk", + "printedName": "DoubleCounterSdk", + "children": [ + { + "kind": "Var", + "name": "instrumentDescriptor", + "printedName": "instrumentDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0Vvp", + "mangledName": "$s11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0Vvg", + "mangledName": "$s11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0Vvs", + "mangledName": "$s11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0VvM", + "mangledName": "$s11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16DoubleCounterSdkV3add5valueySd_tF", + "mangledName": "$s11VideoSDKRTC16DoubleCounterSdkV3add5valueySd_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16DoubleCounterSdkV3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC16DoubleCounterSdkV3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16DoubleCounterSdkV", + "mangledName": "$s11VideoSDKRTC16DoubleCounterSdkV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleCounter", + "printedName": "DoubleCounter", + "usr": "s:11VideoSDKRTC13DoubleCounterP", + "mangledName": "$s11VideoSDKRTC13DoubleCounterP" + }, + { + "kind": "Conformance", + "name": "Instrument", + "printedName": "Instrument", + "usr": "s:11VideoSDKRTC10InstrumentP", + "mangledName": "$s11VideoSDKRTC10InstrumentP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongGaugeBuilder", + "printedName": "LongGaugeBuilder", + "children": [ + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableLongGauge", + "printedName": "VideoSDKRTC.ObservableLongGauge", + "usr": "s:11VideoSDKRTC19ObservableLongGaugeP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableLongMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableLongMeasurement", + "printedName": "VideoSDKRTC.ObservableLongMeasurement", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LongGaugeBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC16LongGaugeBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongGaugeBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC16LongGaugeBuilderP", + "mangledName": "$s11VideoSDKRTC16LongGaugeBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongGaugeBuilderSdk", + "printedName": "LongGaugeBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableLongGauge", + "printedName": "VideoSDKRTC.ObservableLongGauge", + "usr": "s:11VideoSDKRTC19ObservableLongGaugeP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableLongMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableLongMeasurement", + "printedName": "VideoSDKRTC.ObservableLongMeasurement", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LongGaugeBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0jC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC19LongGaugeBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0jC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19LongGaugeBuilderSdkC", + "mangledName": "$s11VideoSDKRTC19LongGaugeBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LongGaugeBuilder", + "printedName": "LongGaugeBuilder", + "usr": "s:11VideoSDKRTC16LongGaugeBuilderP", + "mangledName": "$s11VideoSDKRTC16LongGaugeBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongHistogram", + "printedName": "LongHistogram", + "children": [ + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LongHistogramP6record5valueySi_tF", + "mangledName": "$s11VideoSDKRTC13LongHistogramP6record5valueySi_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongHistogram>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LongHistogramP6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC13LongHistogramP6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongHistogram>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13LongHistogramP", + "mangledName": "$s11VideoSDKRTC13LongHistogramP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongHistogramBuilder", + "printedName": "LongHistogramBuilder", + "children": [ + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongHistogram", + "printedName": "VideoSDKRTC.LongHistogram", + "usr": "s:11VideoSDKRTC13LongHistogramP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20LongHistogramBuilderP5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC20LongHistogramBuilderP5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongHistogramBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC20LongHistogramBuilderP", + "mangledName": "$s11VideoSDKRTC20LongHistogramBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongHistogramMeterBuilderSdk", + "printedName": "LongHistogramMeterBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongHistogram", + "printedName": "VideoSDKRTC.LongHistogram", + "usr": "s:11VideoSDKRTC13LongHistogramP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28LongHistogramMeterBuilderSdkC5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC28LongHistogramMeterBuilderSdkC5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC28LongHistogramMeterBuilderSdkC", + "mangledName": "$s11VideoSDKRTC28LongHistogramMeterBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LongHistogramBuilder", + "printedName": "LongHistogramBuilder", + "usr": "s:11VideoSDKRTC20LongHistogramBuilderP", + "mangledName": "$s11VideoSDKRTC20LongHistogramBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongHistogramMeterSdk", + "printedName": "LongHistogramMeterSdk", + "children": [ + { + "kind": "Var", + "name": "instrumentDescriptor", + "printedName": "instrumentDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvp", + "mangledName": "$s11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvg", + "mangledName": "$s11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvs", + "mangledName": "$s11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0VvM", + "mangledName": "$s11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21LongHistogramMeterSdkC6record5valueySi_tF", + "mangledName": "$s11VideoSDKRTC21LongHistogramMeterSdkC6record5valueySi_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21LongHistogramMeterSdkC6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC21LongHistogramMeterSdkC6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21LongHistogramMeterSdkC", + "mangledName": "$s11VideoSDKRTC21LongHistogramMeterSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LongHistogram", + "printedName": "LongHistogram", + "usr": "s:11VideoSDKRTC13LongHistogramP", + "mangledName": "$s11VideoSDKRTC13LongHistogramP" + }, + { + "kind": "Conformance", + "name": "Instrument", + "printedName": "Instrument", + "usr": "s:11VideoSDKRTC10InstrumentP", + "mangledName": "$s11VideoSDKRTC10InstrumentP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongLastValueAggregator", + "printedName": "LongLastValueAggregator", + "children": [ + { + "kind": "Function", + "name": "diff", + "printedName": "diff(previousCumulative:currentCumulative:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23LongLastValueAggregatorC4diff18previousCumulative07currentI0AA9PointDataCAH_AHtKF", + "mangledName": "$s11VideoSDKRTC23LongLastValueAggregatorC4diff18previousCumulative07currentI0AA9PointDataCAH_AHtKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toPoint", + "printedName": "toPoint(measurement:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23LongLastValueAggregatorC7toPoint11measurementAA0H4DataCAA11MeasurementV_tKF", + "mangledName": "$s11VideoSDKRTC23LongLastValueAggregatorC7toPoint11measurementAA0H4DataCAA11MeasurementV_tKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createHandle", + "printedName": "createHandle()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregatorHandle", + "printedName": "VideoSDKRTC.AggregatorHandle", + "usr": "s:11VideoSDKRTC16AggregatorHandleC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23LongLastValueAggregatorC12createHandleAA0fH0CyF", + "mangledName": "$s11VideoSDKRTC23LongLastValueAggregatorC12createHandleAA0fH0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData(resource:scope:descriptor:points:temporality:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23LongLastValueAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablehI0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0H10DescriptorVSayAA05PointI0CGAA22AggregationTemporalityOtF", + "mangledName": "$s11VideoSDKRTC23LongLastValueAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablehI0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0H10DescriptorVSayAA05PointI0CGAA22AggregationTemporalityOtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC23LongLastValueAggregatorC", + "mangledName": "$s11VideoSDKRTC23LongLastValueAggregatorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "StableAggregator", + "printedName": "StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongPointData", + "printedName": "LongPointData", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13LongPointDataC5valueSivp", + "mangledName": "$s11VideoSDKRTC13LongPointDataC5valueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13LongPointDataC5valueSivg", + "mangledName": "$s11VideoSDKRTC13LongPointDataC5valueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13LongPointDataC5valueSivs", + "mangledName": "$s11VideoSDKRTC13LongPointDataC5valueSivs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13LongPointDataC5valueSivM", + "mangledName": "$s11VideoSDKRTC13LongPointDataC5valueSivM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC13LongPointDataC", + "mangledName": "$s11VideoSDKRTC13LongPointDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC9PointDataC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.PointData" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongSumAggregator", + "printedName": "LongSumAggregator", + "children": [ + { + "kind": "Function", + "name": "diff", + "printedName": "diff(previousCumulative:currentCumulative:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LongSumAggregatorC4diff18previousCumulative07currentH0AA9PointDataCAH_AHtKF", + "mangledName": "$s11VideoSDKRTC17LongSumAggregatorC4diff18previousCumulative07currentH0AA9PointDataCAH_AHtKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toPoint", + "printedName": "toPoint(measurement:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LongSumAggregatorC7toPoint11measurementAA0G4DataCAA11MeasurementV_tKF", + "mangledName": "$s11VideoSDKRTC17LongSumAggregatorC7toPoint11measurementAA0G4DataCAA11MeasurementV_tKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createHandle", + "printedName": "createHandle()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregatorHandle", + "printedName": "VideoSDKRTC.AggregatorHandle", + "usr": "s:11VideoSDKRTC16AggregatorHandleC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LongSumAggregatorC12createHandleAA0eG0CyF", + "mangledName": "$s11VideoSDKRTC17LongSumAggregatorC12createHandleAA0eG0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData(resource:scope:descriptor:points:temporality:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LongSumAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablegH0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0G10DescriptorVSayAA05PointH0CGAA22AggregationTemporalityOtF", + "mangledName": "$s11VideoSDKRTC17LongSumAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablegH0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0G10DescriptorVSayAA05PointH0CGAA22AggregationTemporalityOtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC17LongSumAggregatorC", + "mangledName": "$s11VideoSDKRTC17LongSumAggregatorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC13SumAggregatorC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.SumAggregator" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "StableAggregator", + "printedName": "StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongUpDownCounter", + "printedName": "LongUpDownCounter", + "children": [ + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LongUpDownCounterP3add5valueySi_tF", + "mangledName": "$s11VideoSDKRTC17LongUpDownCounterP3add5valueySi_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongUpDownCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LongUpDownCounterP3add5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC17LongUpDownCounterP3add5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongUpDownCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC17LongUpDownCounterP", + "mangledName": "$s11VideoSDKRTC17LongUpDownCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongUpDownCounterBuilder", + "printedName": "LongUpDownCounterBuilder", + "children": [ + { + "kind": "Function", + "name": "ofDoubles", + "printedName": "ofDoubles()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleUpDownCounterBuilder", + "printedName": "VideoSDKRTC.DoubleUpDownCounterBuilder", + "usr": "s:11VideoSDKRTC26DoubleUpDownCounterBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24LongUpDownCounterBuilderP9ofDoublesAA06DoubledefG0_pyF", + "mangledName": "$s11VideoSDKRTC24LongUpDownCounterBuilderP9ofDoublesAA06DoubledefG0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongUpDownCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongUpDownCounter", + "printedName": "VideoSDKRTC.LongUpDownCounter", + "usr": "s:11VideoSDKRTC17LongUpDownCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24LongUpDownCounterBuilderP5buildAA0cdeF0_pyF", + "mangledName": "$s11VideoSDKRTC24LongUpDownCounterBuilderP5buildAA0cdeF0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongUpDownCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableLongUpDownCounter", + "printedName": "VideoSDKRTC.ObservableLongUpDownCounter", + "usr": "s:11VideoSDKRTC27ObservableLongUpDownCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableLongMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableLongMeasurement", + "printedName": "VideoSDKRTC.ObservableLongMeasurement", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24LongUpDownCounterBuilderP17buildWithCallbackyAA010ObservablecdeF0_pyAA0kC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC24LongUpDownCounterBuilderP17buildWithCallbackyAA010ObservablecdeF0_pyAA0kC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongUpDownCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC24LongUpDownCounterBuilderP", + "mangledName": "$s11VideoSDKRTC24LongUpDownCounterBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongUpDownCounterBuilderSdk", + "printedName": "LongUpDownCounterBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "ofDoubles", + "printedName": "ofDoubles()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleUpDownCounterBuilder", + "printedName": "VideoSDKRTC.DoubleUpDownCounterBuilder", + "usr": "s:11VideoSDKRTC26DoubleUpDownCounterBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27LongUpDownCounterBuilderSdkC9ofDoublesAA06DoubledefG0_pyF", + "mangledName": "$s11VideoSDKRTC27LongUpDownCounterBuilderSdkC9ofDoublesAA06DoubledefG0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongUpDownCounter", + "printedName": "VideoSDKRTC.LongUpDownCounter", + "usr": "s:11VideoSDKRTC17LongUpDownCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27LongUpDownCounterBuilderSdkC5buildAA0cdeF0_pyF", + "mangledName": "$s11VideoSDKRTC27LongUpDownCounterBuilderSdkC5buildAA0cdeF0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableLongUpDownCounter", + "printedName": "VideoSDKRTC.ObservableLongUpDownCounter", + "usr": "s:11VideoSDKRTC27ObservableLongUpDownCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableLongMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableLongMeasurement", + "printedName": "VideoSDKRTC.ObservableLongMeasurement", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27LongUpDownCounterBuilderSdkC17buildWithCallbackyAA010ObservablecdeF0_pyAA0lC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC27LongUpDownCounterBuilderSdkC17buildWithCallbackyAA010ObservablecdeF0_pyAA0lC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC27LongUpDownCounterBuilderSdkC", + "mangledName": "$s11VideoSDKRTC27LongUpDownCounterBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LongUpDownCounterBuilder", + "printedName": "LongUpDownCounterBuilder", + "usr": "s:11VideoSDKRTC24LongUpDownCounterBuilderP", + "mangledName": "$s11VideoSDKRTC24LongUpDownCounterBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongUpDownCounterSdk", + "printedName": "LongUpDownCounterSdk", + "children": [ + { + "kind": "Var", + "name": "instrumentDescriptor", + "printedName": "instrumentDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20LongUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvp", + "mangledName": "$s11VideoSDKRTC20LongUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20LongUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvg", + "mangledName": "$s11VideoSDKRTC20LongUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20LongUpDownCounterSdkC3add5valueySi_tF", + "mangledName": "$s11VideoSDKRTC20LongUpDownCounterSdkC3add5valueySi_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20LongUpDownCounterSdkC3add5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC20LongUpDownCounterSdkC3add5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20LongUpDownCounterSdkC", + "mangledName": "$s11VideoSDKRTC20LongUpDownCounterSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LongUpDownCounter", + "printedName": "LongUpDownCounter", + "usr": "s:11VideoSDKRTC17LongUpDownCounterP", + "mangledName": "$s11VideoSDKRTC17LongUpDownCounterP" + }, + { + "kind": "Conformance", + "name": "Instrument", + "printedName": "Instrument", + "usr": "s:11VideoSDKRTC10InstrumentP", + "mangledName": "$s11VideoSDKRTC10InstrumentP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MaxValueAggregator", + "printedName": "MaxValueAggregator", + "children": [ + { + "kind": "Function", + "name": "update", + "printedName": "update(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MaxValueAggregatorC6update5valueyx_tF", + "mangledName": "$s11VideoSDKRTC18MaxValueAggregatorC6update5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkpoint", + "printedName": "checkpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MaxValueAggregatorC10checkpointyyF", + "mangledName": "$s11VideoSDKRTC18MaxValueAggregatorC10checkpointyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MaxValueAggregatorC12toMetricDataAA0gH0_pyF", + "mangledName": "$s11VideoSDKRTC18MaxValueAggregatorC12toMetricDataAA0gH0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAggregationType", + "printedName": "getAggregationType()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MaxValueAggregatorC18getAggregationTypeAA0gH0OyF", + "mangledName": "$s11VideoSDKRTC18MaxValueAggregatorC18getAggregationTypeAA0gH0OyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18MaxValueAggregatorC", + "mangledName": "$s11VideoSDKRTC18MaxValueAggregatorC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC10AggregatorC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.Aggregator<τ_0_0>" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Measurement", + "printedName": "Measurement", + "children": [ + { + "kind": "Var", + "name": "startEpochNano", + "printedName": "startEpochNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MeasurementV14startEpochNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC11MeasurementV14startEpochNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MeasurementV14startEpochNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC11MeasurementV14startEpochNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "epochNano", + "printedName": "epochNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MeasurementV9epochNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC11MeasurementV9epochNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MeasurementV9epochNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC11MeasurementV9epochNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasLongValue", + "printedName": "hasLongValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MeasurementV12hasLongValueSbvp", + "mangledName": "$s11VideoSDKRTC11MeasurementV12hasLongValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MeasurementV12hasLongValueSbvg", + "mangledName": "$s11VideoSDKRTC11MeasurementV12hasLongValueSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "longValue", + "printedName": "longValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MeasurementV9longValueSivp", + "mangledName": "$s11VideoSDKRTC11MeasurementV9longValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MeasurementV9longValueSivg", + "mangledName": "$s11VideoSDKRTC11MeasurementV9longValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "doubleValue", + "printedName": "doubleValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MeasurementV11doubleValueSdvp", + "mangledName": "$s11VideoSDKRTC11MeasurementV11doubleValueSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MeasurementV11doubleValueSdvg", + "mangledName": "$s11VideoSDKRTC11MeasurementV11doubleValueSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasDoubleValue", + "printedName": "hasDoubleValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MeasurementV14hasDoubleValueSbvp", + "mangledName": "$s11VideoSDKRTC11MeasurementV14hasDoubleValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MeasurementV14hasDoubleValueSbvg", + "mangledName": "$s11VideoSDKRTC11MeasurementV14hasDoubleValueSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MeasurementV10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC11MeasurementV10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MeasurementV10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC11MeasurementV10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "longMeasurement", + "printedName": "longMeasurement(startEpochNano:endEpochNano:value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11MeasurementV04longC014startEpochNano03endfG05value10attributesACs6UInt64V_AJSiSDySSAA14AttributeValueOGtFZ", + "mangledName": "$s11VideoSDKRTC11MeasurementV04longC014startEpochNano03endfG05value10attributesACs6UInt64V_AJSiSDySSAA14AttributeValueOGtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "doubleMeasurement", + "printedName": "doubleMeasurement(startEpochNano:endEpochNano:value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11MeasurementV06doubleC014startEpochNano03endfG05value10attributesACs6UInt64V_AJSdSDySSAA14AttributeValueOGtFZ", + "mangledName": "$s11VideoSDKRTC11MeasurementV06doubleC014startEpochNano03endfG05value10attributesACs6UInt64V_AJSdSDySSAA14AttributeValueOGtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC11MeasurementV", + "mangledName": "$s11VideoSDKRTC11MeasurementV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeasureMetric", + "printedName": "MeasureMetric", + "children": [ + { + "kind": "AssociatedType", + "name": "T", + "printedName": "T", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC13MeasureMetricP1TQa", + "mangledName": "$s11VideoSDKRTC13MeasureMetricP1TQa", + "moduleName": "VideoSDKRTC", + "protocolReq": true + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundMeasureMetric", + "printedName": "VideoSDKRTC.BoundMeasureMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13MeasureMetricP4bind8labelsetAA05BoundcD0Cy1TQzGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC13MeasureMetricP4bind8labelsetAA05BoundcD0Cy1TQzGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeasureMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundMeasureMetric", + "printedName": "VideoSDKRTC.BoundMeasureMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13MeasureMetricP4bind6labelsAA05BoundcD0Cy1TQzGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC13MeasureMetricP4bind6labelsAA05BoundcD0Cy1TQzGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeasureMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13MeasureMetricPAAE6record5value8labelsety1TQz_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC13MeasureMetricPAAE6record5value8labelsety1TQz_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeasureMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13MeasureMetricPAAE6record5value6labelsy1TQz_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC13MeasureMetricPAAE6record5value6labelsy1TQz_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeasureMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13MeasureMetricP", + "mangledName": "$s11VideoSDKRTC13MeasureMetricP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AnyMeasureMetric", + "printedName": "AnyMeasureMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMeasureMetric", + "printedName": "VideoSDKRTC.AnyMeasureMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16AnyMeasureMetricVyACyxGqd__c1TQyd__RszAA0dE0Rd__lufc", + "mangledName": "$s11VideoSDKRTC16AnyMeasureMetricVyACyxGqd__c1TQyd__RszAA0dE0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 == τ_1_0.T, τ_1_0 : VideoSDKRTC.MeasureMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundMeasureMetric", + "printedName": "VideoSDKRTC.BoundMeasureMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC16AnyMeasureMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundMeasureMetric", + "printedName": "VideoSDKRTC.BoundMeasureMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC16AnyMeasureMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV", + "mangledName": "$s11VideoSDKRTC16AnyMeasureMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MeasureMetric", + "printedName": "MeasureMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC13MeasureMetricP", + "mangledName": "$s11VideoSDKRTC13MeasureMetricP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoopMeasureMetric", + "printedName": "NoopMeasureMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopMeasureMetric", + "printedName": "VideoSDKRTC.NoopMeasureMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17NoopMeasureMetricV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17NoopMeasureMetricVACyxGycfc", + "mangledName": "$s11VideoSDKRTC17NoopMeasureMetricVACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundMeasureMetric", + "printedName": "VideoSDKRTC.BoundMeasureMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17NoopMeasureMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC17NoopMeasureMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundMeasureMetric", + "printedName": "VideoSDKRTC.BoundMeasureMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17NoopMeasureMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC17NoopMeasureMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC17NoopMeasureMetricV", + "mangledName": "$s11VideoSDKRTC17NoopMeasureMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MeasureMetric", + "printedName": "MeasureMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC13MeasureMetricP", + "mangledName": "$s11VideoSDKRTC13MeasureMetricP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeasureMinMaxSumCountAggregator", + "printedName": "MeasureMinMaxSumCountAggregator", + "children": [ + { + "kind": "Function", + "name": "update", + "printedName": "update(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC6update5valueyx_tF", + "mangledName": "$s11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC6update5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkpoint", + "printedName": "checkpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC10checkpointyyF", + "mangledName": "$s11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC10checkpointyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC12toMetricDataAA0jK0_pyF", + "mangledName": "$s11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC12toMetricDataAA0jK0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAggregationType", + "printedName": "getAggregationType()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC18getAggregationTypeAA0jK0OyF", + "mangledName": "$s11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC18getAggregationTypeAA0jK0OyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC", + "mangledName": "$s11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:11VideoSDKRTC10AggregatorC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.Aggregator<τ_0_0>" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "authorisationStatus", + "printedName": "authorisationStatus", + "children": [ + { + "kind": "Var", + "name": "notDetermined", + "printedName": "notDetermined", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.authorisationStatus.Type) -> VideoSDKRTC.authorisationStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.authorisationStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19authorisationStatusO13notDeterminedyA2CmF", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO13notDeterminedyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "authorised", + "printedName": "authorised", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.authorisationStatus.Type) -> VideoSDKRTC.authorisationStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.authorisationStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19authorisationStatusO10authorisedyA2CmF", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO10authorisedyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "denied", + "printedName": "denied", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.authorisationStatus.Type) -> VideoSDKRTC.authorisationStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.authorisationStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19authorisationStatusO6deniedyA2CmF", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO6deniedyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "restricted", + "printedName": "restricted", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.authorisationStatus.Type) -> VideoSDKRTC.authorisationStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.authorisationStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19authorisationStatusO10restrictedyA2CmF", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO10restrictedyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + }, + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19authorisationStatusO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19authorisationStatusO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19authorisationStatusO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19authorisationStatusO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC19authorisationStatusO", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthorisationDelegate", + "printedName": "AuthorisationDelegate", + "children": [ + { + "kind": "Function", + "name": "handlePermission", + "printedName": "handlePermission()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21AuthorisationDelegateP16handlePermissionyyF", + "mangledName": "$s11VideoSDKRTC21AuthorisationDelegateP16handlePermissionyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AuthorisationDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC21AuthorisationDelegateP", + "mangledName": "$s11VideoSDKRTC21AuthorisationDelegateP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Mediasoup", + "printedName": "Mediasoup", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "MediaStream", + "printedName": "MediaStream", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MediaStreamC2idSSvp", + "mangledName": "$s11VideoSDKRTC11MediaStreamC2idSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MediaStreamC2idSSvg", + "mangledName": "$s11VideoSDKRTC11MediaStreamC2idSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvp", + "mangledName": "$s11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvg", + "mangledName": "$s11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "track", + "printedName": "track", + "children": [ + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvp", + "mangledName": "$s11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvg", + "mangledName": "$s11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "producer", + "printedName": "producer", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.Producer?", + "children": [ + { + "kind": "TypeNominal", + "name": "Producer", + "printedName": "Mediasoup.Producer", + "usr": "s:9Mediasoup8ProducerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvp", + "mangledName": "$s11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.Producer?", + "children": [ + { + "kind": "TypeNominal", + "name": "Producer", + "printedName": "Mediasoup.Producer", + "usr": "s:9Mediasoup8ProducerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvg", + "mangledName": "$s11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "consumer", + "printedName": "consumer", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.Consumer?", + "children": [ + { + "kind": "TypeNominal", + "name": "Consumer", + "printedName": "Mediasoup.Consumer", + "usr": "s:9Mediasoup8ConsumerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvp", + "mangledName": "$s11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.Consumer?", + "children": [ + { + "kind": "TypeNominal", + "name": "Consumer", + "printedName": "Mediasoup.Consumer", + "usr": "s:9Mediasoup8ConsumerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvg", + "mangledName": "$s11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11MediaStreamC5pauseyyF", + "mangledName": "$s11VideoSDKRTC11MediaStreamC5pauseyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11MediaStreamC6resumeyyF", + "mangledName": "$s11VideoSDKRTC11MediaStreamC6resumeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11MediaStreamC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC11MediaStreamC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC11MediaStreamC", + "mangledName": "$s11VideoSDKRTC11MediaStreamC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MediaType", + "printedName": "MediaType", + "children": [ + { + "kind": "Var", + "name": "share", + "printedName": "share", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MediaType.Type) -> VideoSDKRTC.MediaType", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MediaType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC9MediaTypeO5shareyA2CmF", + "mangledName": "$s11VideoSDKRTC9MediaTypeO5shareyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "state", + "printedName": "state", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MediaType.Type) -> (Mediasoup.MediaKind) -> VideoSDKRTC.MediaType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediaKind) -> VideoSDKRTC.MediaType", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(value: Mediasoup.MediaKind)", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MediaType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC9MediaTypeO5stateyAC9Mediasoup0C4KindO_tcACmF", + "mangledName": "$s11VideoSDKRTC9MediaTypeO5stateyAC9Mediasoup0C4KindO_tcACmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + }, + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9MediaTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC9MediaTypeO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC9MediaTypeO", + "mangledName": "$s11VideoSDKRTC9MediaTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "ReplayKit", + "printedName": "ReplayKit", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Swift", + "printedName": "Swift", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "Meeting", + "printedName": "Meeting", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC2idSSvp", + "mangledName": "$s11VideoSDKRTC7MeetingC2idSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC2idSSvg", + "mangledName": "$s11VideoSDKRTC7MeetingC2idSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "localParticipant", + "printedName": "localParticipant", + "children": [ + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvp", + "mangledName": "$s11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvg", + "mangledName": "$s11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "participants", + "printedName": "participants", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.Participant]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvp", + "mangledName": "$s11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.Participant]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvg", + "mangledName": "$s11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pinnedParticipants", + "printedName": "pinnedParticipants", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.ParticipantPinState]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC18pinnedParticipantsSDySSAA19ParticipantPinStateVGvp", + "mangledName": "$s11VideoSDKRTC7MeetingC18pinnedParticipantsSDySSAA19ParticipantPinStateVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.ParticipantPinState]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC18pinnedParticipantsSDySSAA19ParticipantPinStateVGvg", + "mangledName": "$s11VideoSDKRTC7MeetingC18pinnedParticipantsSDySSAA19ParticipantPinStateVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hlsUrls", + "printedName": "hlsUrls", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.HLSUrl?", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSUrl", + "printedName": "VideoSDKRTC.HLSUrl", + "usr": "s:11VideoSDKRTC6HLSUrlC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvp", + "mangledName": "$s11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.HLSUrl?", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSUrl", + "printedName": "VideoSDKRTC.HLSUrl", + "usr": "s:11VideoSDKRTC6HLSUrlC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvg", + "mangledName": "$s11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.HLSUrl?", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSUrl", + "printedName": "VideoSDKRTC.HLSUrl", + "usr": "s:11VideoSDKRTC6HLSUrlC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvs", + "mangledName": "$s11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvM", + "mangledName": "$s11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hlsState", + "printedName": "hlsState", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvp", + "mangledName": "$s11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvg", + "mangledName": "$s11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvs", + "mangledName": "$s11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvM", + "mangledName": "$s11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "liveStreamState", + "printedName": "liveStreamState", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0Ovp", + "mangledName": "$s11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0Ovg", + "mangledName": "$s11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0Ovs", + "mangledName": "$s11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0Ovs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0OvM", + "mangledName": "$s11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "recordingState", + "printedName": "recordingState", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0Ovp", + "mangledName": "$s11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0Ovg", + "mangledName": "$s11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0Ovs", + "mangledName": "$s11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0Ovs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0OvM", + "mangledName": "$s11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pubsub", + "printedName": "pubsub", + "children": [ + { + "kind": "TypeNominal", + "name": "PubSub", + "printedName": "VideoSDKRTC.PubSub", + "usr": "s:11VideoSDKRTC6PubSubC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvp", + "mangledName": "$s11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Lazy", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PubSub", + "printedName": "VideoSDKRTC.PubSub", + "usr": "s:11VideoSDKRTC6PubSubC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvg", + "mangledName": "$s11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "customVideoMediaStream", + "printedName": "customVideoMediaStream", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomRTCMediaStream", + "printedName": "VideoSDKRTC.CustomRTCMediaStream", + "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvp", + "mangledName": "$s11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomRTCMediaStream", + "printedName": "VideoSDKRTC.CustomRTCMediaStream", + "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvg", + "mangledName": "$s11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "meetingMode", + "printedName": "meetingMode", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Mode?", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC11meetingModeAA0E0OSgvp", + "mangledName": "$s11VideoSDKRTC7MeetingC11meetingModeAA0E0OSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Mode?", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC11meetingModeAA0E0OSgvg", + "mangledName": "$s11VideoSDKRTC7MeetingC11meetingModeAA0E0OSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "join", + "printedName": "join(cameraPosition:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Position", + "printedName": "AVFoundation.AVCaptureDevice.Position", + "usr": "c:@E@AVCaptureDevicePosition" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC4join14cameraPositionySo015AVCaptureDeviceF0V_tF", + "mangledName": "$s11VideoSDKRTC7MeetingC4join14cameraPositionySo015AVCaptureDeviceF0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "leave", + "printedName": "leave()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC5leaveyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC5leaveyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "end", + "printedName": "end()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC3endyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC3endyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enableWebcam", + "printedName": "enableWebcam(customVideoStream:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomRTCMediaStream", + "printedName": "VideoSDKRTC.CustomRTCMediaStream", + "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC12enableWebcam06customA6StreamyAA014CustomRTCMediaG0CSg_tF", + "mangledName": "$s11VideoSDKRTC7MeetingC12enableWebcam06customA6StreamyAA014CustomRTCMediaG0CSg_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableWebcam", + "printedName": "disableWebcam()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC13disableWebcamyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC13disableWebcamyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "switchWebcam", + "printedName": "switchWebcam()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC12switchWebcamyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC12switchWebcamyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "muteMic", + "printedName": "muteMic()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC7muteMicyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC7muteMicyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unmuteMic", + "printedName": "unmuteMic()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC9unmuteMicyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC9unmuteMicyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startRecording", + "printedName": "startRecording(webhookUrl:awsDirPath:config:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.RecordingConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingConfig", + "printedName": "VideoSDKRTC.RecordingConfig", + "usr": "s:11VideoSDKRTC15RecordingConfigC" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC14startRecording10webhookUrl10awsDirPath6configySS_SSSgAA0E6ConfigCSgtF", + "mangledName": "$s11VideoSDKRTC7MeetingC14startRecording10webhookUrl10awsDirPath6configySS_SSSgAA0E6ConfigCSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopRecording", + "printedName": "stopRecording()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC13stopRecordingyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC13stopRecordingyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startLivestream", + "printedName": "startLivestream(outputs:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.LivestreamOutput]", + "children": [ + { + "kind": "TypeNominal", + "name": "LivestreamOutput", + "printedName": "VideoSDKRTC.LivestreamOutput", + "usr": "s:11VideoSDKRTC16LivestreamOutputV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC15startLivestream7outputsySayAA0E6OutputVG_tF", + "mangledName": "$s11VideoSDKRTC7MeetingC15startLivestream7outputsySayAA0E6OutputVG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopLivestream", + "printedName": "stopLivestream()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC14stopLivestreamyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC14stopLivestreamyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startHLS", + "printedName": "startHLS(config:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.HLSConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSConfig", + "printedName": "VideoSDKRTC.HLSConfig", + "usr": "s:11VideoSDKRTC9HLSConfigC" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC8startHLS6configyAA9HLSConfigCSg_tF", + "mangledName": "$s11VideoSDKRTC7MeetingC8startHLS6configyAA9HLSConfigCSg_tF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopHLS", + "printedName": "stopHLS()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC7stopHLSyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC7stopHLSyyF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "changeMode", + "printedName": "changeMode(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC10changeModeyyAA0E0OF", + "mangledName": "$s11VideoSDKRTC7MeetingC10changeModeyyAA0E0OF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enableScreenShare", + "printedName": "enableScreenShare()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC17enableScreenShareyyYaF", + "mangledName": "$s11VideoSDKRTC7MeetingC17enableScreenShareyyYaF", + "moduleName": "VideoSDKRTC", + "intro_iOS": "13.0.0", + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableScreenShare", + "printedName": "disableScreenShare()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC18disableScreenShareyyYaF", + "mangledName": "$s11VideoSDKRTC7MeetingC18disableScreenShareyyYaF", + "moduleName": "VideoSDKRTC", + "intro_iOS": "13.0.0", + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "changeMic", + "printedName": "changeMic(selectedDevice:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC9changeMic14selectedDeviceySS_tF", + "mangledName": "$s11VideoSDKRTC7MeetingC9changeMic14selectedDeviceySS_tF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getMics", + "printedName": "getMics()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(deviceName: Swift.String, deviceType: Swift.String)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(deviceName: Swift.String, deviceType: Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC7getMicsSaySS10deviceName_SS0F4TypetGyF", + "mangledName": "$s11VideoSDKRTC7MeetingC7getMicsSaySS10deviceName_SS0F4TypetGyF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeOberver", + "printedName": "removeOberver()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC13removeOberveryyF", + "mangledName": "$s11VideoSDKRTC7MeetingC13removeOberveryyF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEventListener", + "printedName": "addEventListener(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MeetingEventListener", + "printedName": "VideoSDKRTC.MeetingEventListener", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC16addEventListeneryyAA0ceF0_pF", + "mangledName": "$s11VideoSDKRTC7MeetingC16addEventListeneryyAA0ceF0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeEventListener", + "printedName": "removeEventListener(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MeetingEventListener", + "printedName": "VideoSDKRTC.MeetingEventListener", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC19removeEventListeneryyAA0ceF0_pF", + "mangledName": "$s11VideoSDKRTC7MeetingC19removeEventListeneryyAA0ceF0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Meeting", + "printedName": "VideoSDKRTC.Meeting", + "usr": "s:11VideoSDKRTC7MeetingC" + }, + { + "kind": "TypeNominal", + "name": "Meeting", + "printedName": "VideoSDKRTC.Meeting", + "usr": "s:11VideoSDKRTC7MeetingC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC7MeetingC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC7MeetingC", + "mangledName": "$s11VideoSDKRTC7MeetingC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeetingEventListener", + "printedName": "MeetingEventListener", + "children": [ + { + "kind": "Function", + "name": "onMeetingJoined", + "printedName": "onMeetingJoined()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP02onC6JoinedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP02onC6JoinedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMeetingLeft", + "printedName": "onMeetingLeft()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP02onC4LeftyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP02onC4LeftyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onParticipantJoined", + "printedName": "onParticipantJoined(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onParticipantJoinedyyAA0G0CF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onParticipantJoinedyyAA0G0CF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onParticipantLeft", + "printedName": "onParticipantLeft(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP17onParticipantLeftyyAA0G0CF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP17onParticipantLeftyyAA0G0CF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRecordingStarted", + "printedName": "onRecordingStarted()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP18onRecordingStartedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP18onRecordingStartedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRecordingStoppped", + "printedName": "onRecordingStoppped()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onRecordingStopppedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onRecordingStopppedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onLivestreamStarted", + "printedName": "onLivestreamStarted()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onLivestreamStartedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onLivestreamStartedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onLivestreamStopped", + "printedName": "onLivestreamStopped()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onLivestreamStoppedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onLivestreamStoppedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSpeakerChanged", + "printedName": "onSpeakerChanged(participantId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP16onSpeakerChanged13participantIdySSSg_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP16onSpeakerChanged13participantIdySSSg_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMicRequested", + "printedName": "onMicRequested(participantId:accept:reject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWebcamRequested", + "printedName": "onWebcamRequested(participantId:accept:reject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSocketError", + "printedName": "onSocketError(message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP13onSocketError7messageySS_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP13onSocketError7messageySS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMeetingStateChanged", + "printedName": "onMeetingStateChanged(meetingState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP02onC12StateChanged07meetingG0yAA0cG0O_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP02onC12StateChanged07meetingG0yAA0cG0O_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onError", + "printedName": "onError(error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP7onError5erroryAA0A8SDKErrorO_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP7onError5erroryAA0A8SDKErrorO_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onHlsStateChanged", + "printedName": "onHlsStateChanged(state:hlsUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.HLSUrl?", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSUrl", + "printedName": "VideoSDKRTC.HLSUrl", + "usr": "s:11VideoSDKRTC6HLSUrlC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP17onHlsStateChanged5state6hlsUrlyAA8HLSStateO_AA6HLSUrlCSgtF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP17onHlsStateChanged5state6hlsUrlyAA8HLSStateO_AA6HLSUrlCSgtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onLivestreamStateChanged", + "printedName": "onLivestreamStateChanged(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP24onLivestreamStateChanged5stateyAA010LiveStreamH0O_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP24onLivestreamStateChanged5stateyAA010LiveStreamH0O_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRecordingStateChanged", + "printedName": "onRecordingStateChanged(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP23onRecordingStateChanged5stateyAA0gH0O_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP23onRecordingStateChanged5stateyAA0gH0O_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onPinStateChanged", + "printedName": "onPinStateChanged(participantId:pinType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP17onPinStateChanged13participantId7pinTypeySS_AA0gM0OtF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP17onPinStateChanged13participantId7pinTypeySS_AA0gM0OtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onParticipantModeChanged", + "printedName": "onParticipantModeChanged(participantId:mode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP24onParticipantModeChanged13participantId4modeySS_AA0H0OtF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP24onParticipantModeChanged13participantId4modeySS_AA0H0OtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMicChanged", + "printedName": "onMicChanged(selectedDevice:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP12onMicChanged14selectedDeviceySS_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP12onMicChanged14selectedDeviceySS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMeetingJoined", + "printedName": "onMeetingJoined()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE02onC6JoinedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE02onC6JoinedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMeetingLeft", + "printedName": "onMeetingLeft()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE02onC4LeftyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE02onC4LeftyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onParticipantJoined", + "printedName": "onParticipantJoined(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onParticipantJoinedyyAA0G0CF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onParticipantJoinedyyAA0G0CF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onParticipantLeft", + "printedName": "onParticipantLeft(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE17onParticipantLeftyyAA0G0CF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE17onParticipantLeftyyAA0G0CF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRecordingStarted", + "printedName": "onRecordingStarted()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE18onRecordingStartedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE18onRecordingStartedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRecordingStoppped", + "printedName": "onRecordingStoppped()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onRecordingStopppedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onRecordingStopppedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onLivestreamStarted", + "printedName": "onLivestreamStarted()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStartedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStartedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onLivestreamStopped", + "printedName": "onLivestreamStopped()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStoppedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStoppedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSpeakerChanged", + "printedName": "onSpeakerChanged(participantId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE16onSpeakerChanged13participantIdySSSg_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE16onSpeakerChanged13participantIdySSSg_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMicRequested", + "printedName": "onMicRequested(participantId:accept:reject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWebcamRequested", + "printedName": "onWebcamRequested(participantId:accept:reject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSocketError", + "printedName": "onSocketError(message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE13onSocketError7messageySS_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE13onSocketError7messageySS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMeetingStateChanged", + "printedName": "onMeetingStateChanged(meetingState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE02onC12StateChanged07meetingG0yAA0cG0O_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE02onC12StateChanged07meetingG0yAA0cG0O_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onError", + "printedName": "onError(error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE7onError5erroryAA0A8SDKErrorO_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE7onError5erroryAA0A8SDKErrorO_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onHlsStateChanged", + "printedName": "onHlsStateChanged(state:hlsUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.HLSUrl?", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSUrl", + "printedName": "VideoSDKRTC.HLSUrl", + "usr": "s:11VideoSDKRTC6HLSUrlC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE17onHlsStateChanged5state6hlsUrlyAA8HLSStateO_AA6HLSUrlCSgtF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE17onHlsStateChanged5state6hlsUrlyAA8HLSStateO_AA6HLSUrlCSgtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onLivestreamStateChanged", + "printedName": "onLivestreamStateChanged(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE24onLivestreamStateChanged5stateyAA010LiveStreamH0O_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE24onLivestreamStateChanged5stateyAA010LiveStreamH0O_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRecordingStateChanged", + "printedName": "onRecordingStateChanged(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE23onRecordingStateChanged5stateyAA0gH0O_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE23onRecordingStateChanged5stateyAA0gH0O_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onPinStateChanged", + "printedName": "onPinStateChanged(participantId:pinType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE17onPinStateChanged13participantId7pinTypeySS_AA0gM0OtF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE17onPinStateChanged13participantId7pinTypeySS_AA0gM0OtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onParticipantModeChanged", + "printedName": "onParticipantModeChanged(participantId:mode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE24onParticipantModeChanged13participantId4modeySS_AA0H0OtF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE24onParticipantModeChanged13participantId4modeySS_AA0H0OtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMicChanged", + "printedName": "onMicChanged(selectedDevice:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE12onMicChanged14selectedDeviceySS_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE12onMicChanged14selectedDeviceySS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeetingState", + "printedName": "MeetingState", + "children": [ + { + "kind": "Var", + "name": "CONNECTING", + "printedName": "CONNECTING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MeetingState.Type) -> VideoSDKRTC.MeetingState", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MeetingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC12MeetingStateO10CONNECTINGyA2CmF", + "mangledName": "$s11VideoSDKRTC12MeetingStateO10CONNECTINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "CONNECTED", + "printedName": "CONNECTED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MeetingState.Type) -> VideoSDKRTC.MeetingState", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MeetingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC12MeetingStateO9CONNECTEDyA2CmF", + "mangledName": "$s11VideoSDKRTC12MeetingStateO9CONNECTEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "CLOSING", + "printedName": "CLOSING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MeetingState.Type) -> VideoSDKRTC.MeetingState", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MeetingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC12MeetingStateO7CLOSINGyA2CmF", + "mangledName": "$s11VideoSDKRTC12MeetingStateO7CLOSINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "CLOSED", + "printedName": "CLOSED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MeetingState.Type) -> VideoSDKRTC.MeetingState", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MeetingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC12MeetingStateO6CLOSEDyA2CmF", + "mangledName": "$s11VideoSDKRTC12MeetingStateO6CLOSEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "CANCELLED", + "printedName": "CANCELLED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MeetingState.Type) -> VideoSDKRTC.MeetingState", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MeetingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC12MeetingStateO9CANCELLEDyA2CmF", + "mangledName": "$s11VideoSDKRTC12MeetingStateO9CANCELLEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.MeetingState?", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC12MeetingStateO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC12MeetingStateO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12MeetingStateO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC12MeetingStateO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12MeetingStateO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC12MeetingStateO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC12MeetingStateO", + "mangledName": "$s11VideoSDKRTC12MeetingStateO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Mode", + "printedName": "Mode", + "children": [ + { + "kind": "Var", + "name": "CONFERENCE", + "printedName": "CONFERENCE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Mode.Type) -> VideoSDKRTC.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC4ModeO10CONFERENCEyA2CmF", + "mangledName": "$s11VideoSDKRTC4ModeO10CONFERENCEyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "VIEWER", + "printedName": "VIEWER", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Mode.Type) -> VideoSDKRTC.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC4ModeO6VIEWERyA2CmF", + "mangledName": "$s11VideoSDKRTC4ModeO6VIEWERyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC4ModeO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC4ModeO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4ModeO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC4ModeO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Mode?", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC4ModeO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC4ModeO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC4ModeO", + "mangledName": "$s11VideoSDKRTC4ModeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "VideoSDKError", + "printedName": "VideoSDKError", + "children": [ + { + "kind": "Var", + "name": "UNKNOWN_ERROR", + "printedName": "UNKNOWN_ERROR", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO13UNKNOWN_ERRORyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO13UNKNOWN_ERRORyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "INVALID_API_KEY", + "printedName": "INVALID_API_KEY", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO15INVALID_API_KEYyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO15INVALID_API_KEYyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "INVALID_TOKEN", + "printedName": "INVALID_TOKEN", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO13INVALID_TOKENyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO13INVALID_TOKENyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "INVALID_MEETING_ID", + "printedName": "INVALID_MEETING_ID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO18INVALID_MEETING_IDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO18INVALID_MEETING_IDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "INVALID_PARTICIPANT_ID", + "printedName": "INVALID_PARTICIPANT_ID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO22INVALID_PARTICIPANT_IDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO22INVALID_PARTICIPANT_IDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "DUPLICATE_PARTICIPANT", + "printedName": "DUPLICATE_PARTICIPANT", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO21DUPLICATE_PARTICIPANTyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO21DUPLICATE_PARTICIPANTyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ACCOUNT_DEACTIVATED", + "printedName": "ACCOUNT_DEACTIVATED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO19ACCOUNT_DEACTIVATEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO19ACCOUNT_DEACTIVATEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ACCOUNT_DISCONTINUED", + "printedName": "ACCOUNT_DISCONTINUED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO20ACCOUNT_DISCONTINUEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO20ACCOUNT_DISCONTINUEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "INVALID_PERMISSIONS", + "printedName": "INVALID_PERMISSIONS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO19INVALID_PERMISSIONSyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO19INVALID_PERMISSIONSyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "MAX_PARTCIPANT_REACHED", + "printedName": "MAX_PARTCIPANT_REACHED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO22MAX_PARTCIPANT_REACHEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO22MAX_PARTCIPANT_REACHEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "MAX_SPEAKER_REACHED", + "printedName": "MAX_SPEAKER_REACHED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO19MAX_SPEAKER_REACHEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO19MAX_SPEAKER_REACHEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "START_RECORDING_FAILED", + "printedName": "START_RECORDING_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO22START_RECORDING_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO22START_RECORDING_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "STOP_RECORDING_FAILED", + "printedName": "STOP_RECORDING_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO21STOP_RECORDING_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO21STOP_RECORDING_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "START_LIVESTREAM_FAILED", + "printedName": "START_LIVESTREAM_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO23START_LIVESTREAM_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO23START_LIVESTREAM_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "STOP_LIVESTREAM_FAILED", + "printedName": "STOP_LIVESTREAM_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO22STOP_LIVESTREAM_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO22STOP_LIVESTREAM_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "INVALID_LIVESTREAM_CONFIG", + "printedName": "INVALID_LIVESTREAM_CONFIG", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO25INVALID_LIVESTREAM_CONFIGyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO25INVALID_LIVESTREAM_CONFIGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "START_HLS_FAILED", + "printedName": "START_HLS_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO16START_HLS_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO16START_HLS_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "STOP_HLS_FAILED", + "printedName": "STOP_HLS_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO15STOP_HLS_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO15STOP_HLS_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "RECORDING_FAILED", + "printedName": "RECORDING_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO16RECORDING_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO16RECORDING_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "LIVESTREAM_FAILED", + "printedName": "LIVESTREAM_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO17LIVESTREAM_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO17LIVESTREAM_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "HLS_FAILED", + "printedName": "HLS_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO10HLS_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO10HLS_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ERROR_GET_VIDEO_MEDIA", + "printedName": "ERROR_GET_VIDEO_MEDIA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO21ERROR_GET_VIDEO_MEDIAyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO21ERROR_GET_VIDEO_MEDIAyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "ERROR_GET_AUDIO_MEDIA", + "printedName": "ERROR_GET_AUDIO_MEDIA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO21ERROR_GET_AUDIO_MEDIAyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO21ERROR_GET_AUDIO_MEDIAyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ERROR_GET_DISPLAY_MEDIA", + "printedName": "ERROR_GET_DISPLAY_MEDIA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO23ERROR_GET_DISPLAY_MEDIAyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO23ERROR_GET_DISPLAY_MEDIAyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ERROR_GET_VIDEO_MEDIA_PERMISSION_DENIED", + "printedName": "ERROR_GET_VIDEO_MEDIA_PERMISSION_DENIED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO39ERROR_GET_VIDEO_MEDIA_PERMISSION_DENIEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO39ERROR_GET_VIDEO_MEDIA_PERMISSION_DENIEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ERROR_GET_AUDIO_MEDIA_PERMISSION_DENIED", + "printedName": "ERROR_GET_AUDIO_MEDIA_PERMISSION_DENIED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO39ERROR_GET_AUDIO_MEDIA_PERMISSION_DENIEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO39ERROR_GET_AUDIO_MEDIA_PERMISSION_DENIEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ERROR_GET_DISPLAY_MEDIA_PERMISSION_DENIED", + "printedName": "ERROR_GET_DISPLAY_MEDIA_PERMISSION_DENIED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO41ERROR_GET_DISPLAY_MEDIA_PERMISSION_DENIEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO41ERROR_GET_DISPLAY_MEDIA_PERMISSION_DENIEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.VideoSDKError?", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC0A8SDKErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC0A8SDKErrorO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC0A8SDKErrorO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC0A8SDKErrorO", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "HLSState", + "printedName": "HLSState", + "children": [ + { + "kind": "Var", + "name": "HLS_STARTED", + "printedName": "HLS_STARTED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.HLSState.Type) -> VideoSDKRTC.HLSState", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.HLSState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8HLSStateO11HLS_STARTEDyA2CmF", + "mangledName": "$s11VideoSDKRTC8HLSStateO11HLS_STARTEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "HLS_STARTING", + "printedName": "HLS_STARTING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.HLSState.Type) -> VideoSDKRTC.HLSState", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.HLSState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8HLSStateO12HLS_STARTINGyA2CmF", + "mangledName": "$s11VideoSDKRTC8HLSStateO12HLS_STARTINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "HLS_STOPPED", + "printedName": "HLS_STOPPED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.HLSState.Type) -> VideoSDKRTC.HLSState", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.HLSState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8HLSStateO11HLS_STOPPEDyA2CmF", + "mangledName": "$s11VideoSDKRTC8HLSStateO11HLS_STOPPEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "HLS_STOPPING", + "printedName": "HLS_STOPPING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.HLSState.Type) -> VideoSDKRTC.HLSState", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.HLSState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8HLSStateO12HLS_STOPPINGyA2CmF", + "mangledName": "$s11VideoSDKRTC8HLSStateO12HLS_STOPPINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "HLS_PLAYABLE", + "printedName": "HLS_PLAYABLE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.HLSState.Type) -> VideoSDKRTC.HLSState", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.HLSState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8HLSStateO12HLS_PLAYABLEyA2CmF", + "mangledName": "$s11VideoSDKRTC8HLSStateO12HLS_PLAYABLEyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.HLSState?", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8HLSStateO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC8HLSStateO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8HLSStateO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC8HLSStateO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8HLSStateO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC8HLSStateO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC8HLSStateO", + "mangledName": "$s11VideoSDKRTC8HLSStateO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RecordingState", + "printedName": "RecordingState", + "children": [ + { + "kind": "Var", + "name": "RECORDING_STARTED", + "printedName": "RECORDING_STARTED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.RecordingState.Type) -> VideoSDKRTC.RecordingState", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.RecordingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14RecordingStateO17RECORDING_STARTEDyA2CmF", + "mangledName": "$s11VideoSDKRTC14RecordingStateO17RECORDING_STARTEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "RECORDING_STARTING", + "printedName": "RECORDING_STARTING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.RecordingState.Type) -> VideoSDKRTC.RecordingState", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.RecordingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14RecordingStateO18RECORDING_STARTINGyA2CmF", + "mangledName": "$s11VideoSDKRTC14RecordingStateO18RECORDING_STARTINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "RECORDING_STOPPED", + "printedName": "RECORDING_STOPPED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.RecordingState.Type) -> VideoSDKRTC.RecordingState", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.RecordingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14RecordingStateO17RECORDING_STOPPEDyA2CmF", + "mangledName": "$s11VideoSDKRTC14RecordingStateO17RECORDING_STOPPEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "RECORDING_STOPPING", + "printedName": "RECORDING_STOPPING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.RecordingState.Type) -> VideoSDKRTC.RecordingState", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.RecordingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14RecordingStateO18RECORDING_STOPPINGyA2CmF", + "mangledName": "$s11VideoSDKRTC14RecordingStateO18RECORDING_STOPPINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.RecordingState?", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14RecordingStateO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC14RecordingStateO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14RecordingStateO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC14RecordingStateO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14RecordingStateO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC14RecordingStateO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC14RecordingStateO", + "mangledName": "$s11VideoSDKRTC14RecordingStateO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LiveStreamState", + "printedName": "LiveStreamState", + "children": [ + { + "kind": "Var", + "name": "LIVESTREAM_STARTED", + "printedName": "LIVESTREAM_STARTED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.LiveStreamState.Type) -> VideoSDKRTC.LiveStreamState", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.LiveStreamState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15LiveStreamStateO18LIVESTREAM_STARTEDyA2CmF", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO18LIVESTREAM_STARTEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "LIVESTREAM_STARTING", + "printedName": "LIVESTREAM_STARTING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.LiveStreamState.Type) -> VideoSDKRTC.LiveStreamState", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.LiveStreamState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15LiveStreamStateO19LIVESTREAM_STARTINGyA2CmF", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO19LIVESTREAM_STARTINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "LIVESTREAM_STOPPED", + "printedName": "LIVESTREAM_STOPPED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.LiveStreamState.Type) -> VideoSDKRTC.LiveStreamState", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.LiveStreamState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15LiveStreamStateO18LIVESTREAM_STOPPEDyA2CmF", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO18LIVESTREAM_STOPPEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "LIVESTREAM_STOPPING", + "printedName": "LIVESTREAM_STOPPING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.LiveStreamState.Type) -> VideoSDKRTC.LiveStreamState", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.LiveStreamState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15LiveStreamStateO19LIVESTREAM_STOPPINGyA2CmF", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO19LIVESTREAM_STOPPINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.LiveStreamState?", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC15LiveStreamStateO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15LiveStreamStateO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15LiveStreamStateO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC15LiveStreamStateO", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Message", + "printedName": "Message", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePxycfc", + "mangledName": "$s11VideoSDKRTC7MessagePxycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MessageP05protoC4NameSSvpZ", + "mangledName": "$s11VideoSDKRTC7MessageP05protoC4NameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MessageP05protoC4NameSSvgZ", + "mangledName": "$s11VideoSDKRTC7MessageP05protoC4NameSSvgZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MessageP13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC7MessageP13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MessageP13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC7MessageP13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessageP06decodeC07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC7MessageP06decodeC07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessageP8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC7MessageP8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessageP4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC7MessageP4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqualTo", + "printedName": "isEqualTo(message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessageP9isEqualTo7messageSbAaB_p_tF", + "mangledName": "$s11VideoSDKRTC7MessageP9isEqualTo7messageSbAaB_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MessagePAAE13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC7MessagePAAE13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MessagePAAE13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC7MessagePAAE13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(inout τ_0_0) throws -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE4withyxyxzKXEKFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE4withyxyxzKXEKFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "Rethrows", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(unpackingAny:extensions:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE12unpackingAny10extensions7optionsxAA016Google_Protobuf_E0V_AA12ExtensionMap_pSgAA21BinaryDecodingOptionsVtKcfc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE12unpackingAny10extensions7optionsxAA016Google_Protobuf_E0V_AA12ExtensionMap_pSgAA21BinaryDecodingOptionsVtKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "serializedBytes", + "printedName": "serializedBytes(partial:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE15serializedBytes7partialqd__Sb_tKAA023SwiftProtobufContiguousE0Rd__lF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE15serializedBytes7partialqd__Sb_tKAA023SwiftProtobufContiguousE0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serializedBytes:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE15serializedBytes10extensions7partial7optionsxqd___AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKcAA023SwiftProtobufContiguousE0Rd__lufc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE15serializedBytes10extensions7partial7optionsxqd___AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKcAA023SwiftProtobufContiguousE0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "Inlinable", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "merge", + "printedName": "merge(serializedBytes:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5merge15serializedBytes10extensions7partial7optionsyqd___AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKAA023SwiftProtobufContiguousF0Rd__lF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5merge15serializedBytes10extensions7partial7optionsyqd___AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKAA023SwiftProtobufContiguousF0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "Inlinable", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "_merge", + "printedName": "_merge(rawBuffer:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawBufferPointer", + "printedName": "Swift.UnsafeRawBufferPointer", + "usr": "s:SW" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE6_merge9rawBuffer10extensions7partial7optionsySW_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE6_merge9rawBuffer10extensions7partial7optionsySW_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "UsableFromInline", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serializedData:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE14serializedData10extensions7partial7optionsx10Foundation0E0V_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKcfc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE14serializedData10extensions7partial7optionsx10Foundation0E0V_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "Inlinable", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "merge", + "printedName": "merge(serializedData:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5merge14serializedData10extensions7partial7optionsy10Foundation0F0V_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5merge14serializedData10extensions7partial7optionsy10Foundation0F0V_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "Inlinable", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "serializedData", + "printedName": "serializedData(partial:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE14serializedData7partial10Foundation0E0VSb_tKF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE14serializedData7partial10Foundation0E0VSb_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "jsonString", + "printedName": "jsonString(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingOptions", + "printedName": "VideoSDKRTC.JSONEncodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE10jsonString7optionsSSAA19JSONEncodingOptionsV_tKF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE10jsonString7optionsSSAA19JSONEncodingOptionsV_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "jsonUTF8Bytes", + "printedName": "jsonUTF8Bytes(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingOptions", + "printedName": "VideoSDKRTC.JSONEncodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes7optionsqd__AA19JSONEncodingOptionsV_tKAA023SwiftProtobufContiguousF0Rd__lF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes7optionsqd__AA19JSONEncodingOptionsV_tKAA023SwiftProtobufContiguousF0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jsonString:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE10jsonString7optionsxSS_AA19JSONDecodingOptionsVtKcfc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE10jsonString7optionsxSS_AA19JSONDecodingOptionsVtKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jsonString:extensions:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE10jsonString10extensions7optionsxSS_AA12ExtensionMap_pSgAA19JSONDecodingOptionsVtKcfc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE10jsonString10extensions7optionsxSS_AA12ExtensionMap_pSgAA19JSONDecodingOptionsVtKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jsonUTF8Bytes:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes7optionsxqd___AA19JSONDecodingOptionsVtKcAA023SwiftProtobufContiguousF0Rd__lufc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes7optionsxqd___AA19JSONDecodingOptionsVtKcAA023SwiftProtobufContiguousF0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jsonUTF8Bytes:extensions:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes10extensions7optionsxqd___AA12ExtensionMap_pSgAA19JSONDecodingOptionsVtKcAA023SwiftProtobufContiguousF0Rd__lufc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes10extensions7optionsxqd___AA12ExtensionMap_pSgAA19JSONDecodingOptionsVtKcAA023SwiftProtobufContiguousF0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jsonUTF8Data:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE12jsonUTF8Data7optionsx10Foundation0F0V_AA19JSONDecodingOptionsVtKcfc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE12jsonUTF8Data7optionsx10Foundation0F0V_AA19JSONDecodingOptionsVtKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jsonUTF8Data:extensions:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE12jsonUTF8Data10extensions7optionsx10Foundation0F0V_AA12ExtensionMap_pSgAA19JSONDecodingOptionsVtKcfc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE12jsonUTF8Data10extensions7optionsx10Foundation0F0V_AA12ExtensionMap_pSgAA19JSONDecodingOptionsVtKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "jsonUTF8Data", + "printedName": "jsonUTF8Data(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingOptions", + "printedName": "VideoSDKRTC.JSONEncodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE12jsonUTF8Data7options10Foundation0F0VAA19JSONEncodingOptionsV_tKF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE12jsonUTF8Data7options10Foundation0F0VAA19JSONEncodingOptionsV_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "jsonString", + "printedName": "jsonString(from:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingOptions", + "printedName": "VideoSDKRTC.JSONEncodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE10jsonString4from7optionsSSqd___AA19JSONEncodingOptionsVtK7ElementQyd__RszSlRd__lFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE10jsonString4from7optionsSSqd___AA19JSONEncodingOptionsVtK7ElementQyd__RszSlRd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_0_0 == τ_1_0.Element, τ_1_0 : Swift.Collection>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "jsonUTF8Bytes", + "printedName": "jsonUTF8Bytes(from:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingOptions", + "printedName": "VideoSDKRTC.JSONEncodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes4from7optionsqd_0_qd___AA19JSONEncodingOptionsVtK7ElementQyd__RszSlRd__AA023SwiftProtobufContiguousF0Rd_0_r0_lFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes4from7optionsqd_0_qd___AA19JSONEncodingOptionsVtK7ElementQyd__RszSlRd__AA023SwiftProtobufContiguousF0Rd_0_r0_lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0, τ_1_1 where τ_0_0 : VideoSDKRTC.Message, τ_0_0 == τ_1_0.Element, τ_1_0 : Swift.Collection, τ_1_1 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(fromJSONString:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5array14fromJSONString7optionsSayxGSS_AA19JSONDecodingOptionsVtKFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5array14fromJSONString7optionsSayxGSS_AA19JSONDecodingOptionsVtKFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(fromJSONString:extensions:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC12ExtensionMapP" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5array14fromJSONString10extensions7optionsSayxGSS_AA12ExtensionMap_pAA19JSONDecodingOptionsVtKFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5array14fromJSONString10extensions7optionsSayxGSS_AA12ExtensionMap_pAA19JSONDecodingOptionsVtKFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(fromJSONUTF8Bytes:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5array17fromJSONUTF8Bytes7optionsSayxGqd___AA19JSONDecodingOptionsVtKAA023SwiftProtobufContiguousG0Rd__lFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5array17fromJSONUTF8Bytes7optionsSayxGqd___AA19JSONDecodingOptionsVtKAA023SwiftProtobufContiguousG0Rd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(fromJSONUTF8Bytes:extensions:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC12ExtensionMapP" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5array17fromJSONUTF8Bytes10extensions7optionsSayxGqd___AA12ExtensionMap_pAA19JSONDecodingOptionsVtKAA023SwiftProtobufContiguousG0Rd__lFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5array17fromJSONUTF8Bytes10extensions7optionsSayxGqd___AA12ExtensionMap_pAA19JSONDecodingOptionsVtKAA023SwiftProtobufContiguousG0Rd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(fromJSONUTF8Data:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5array16fromJSONUTF8Data7optionsSayxG10Foundation0G0V_AA19JSONDecodingOptionsVtKFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5array16fromJSONUTF8Data7optionsSayxG10Foundation0G0V_AA19JSONDecodingOptionsVtKFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(fromJSONUTF8Data:extensions:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC12ExtensionMapP" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5array16fromJSONUTF8Data10extensions7optionsSayxG10Foundation0G0V_AA12ExtensionMap_pAA19JSONDecodingOptionsVtKFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5array16fromJSONUTF8Data10extensions7optionsSayxG10Foundation0G0V_AA12ExtensionMap_pAA19JSONDecodingOptionsVtKFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "jsonUTF8Data", + "printedName": "jsonUTF8Data(from:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingOptions", + "printedName": "VideoSDKRTC.JSONEncodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE12jsonUTF8Data4from7options10Foundation0F0Vqd___AA19JSONEncodingOptionsVtK7ElementQyd__RszSlRd__lFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE12jsonUTF8Data4from7options10Foundation0F0Vqd___AA19JSONEncodingOptionsVtK7ElementQyd__RszSlRd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_0_0 == τ_1_0.Element, τ_1_0 : Swift.Collection>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "textFormatString", + "printedName": "textFormatString()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE16textFormatStringSSyF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE16textFormatStringSSyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "textFormatString", + "printedName": "textFormatString(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TextFormatEncodingOptions", + "printedName": "VideoSDKRTC.TextFormatEncodingOptions", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE16textFormatString7optionsSSAA04TextE15EncodingOptionsV_tF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE16textFormatString7optionsSSAA04TextE15EncodingOptionsV_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(textFormatString:options:extensions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TextFormatDecodingOptions", + "printedName": "VideoSDKRTC.TextFormatDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE16textFormatString7options10extensionsxSS_AA04TextE15DecodingOptionsVAA12ExtensionMap_pSgtKcfc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE16textFormatString7options10extensionsxSS_AA04TextE15DecodingOptionsVAA12ExtensionMap_pSgtKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC._MessageBase>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "_MessageBase", + "printedName": "_MessageBase", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : Swift.Sendable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "children": [ + { + "kind": "Function", + "name": "_protobuf_generated_isEqualTo", + "printedName": "_protobuf_generated_isEqualTo(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP29_protobuf_generated_isEqualTo5otherSbx_tF", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP29_protobuf_generated_isEqualTo5otherSbx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC._MessageImplementationBase>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqualTo", + "printedName": "isEqualTo(message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26_MessageImplementationBasePAAE9isEqualTo7messageSbAA0C0_p_tF", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBasePAAE9isEqualTo7messageSbAA0C0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC._MessageImplementationBase>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26_MessageImplementationBasePAAE2eeoiySbx_xtFZ", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBasePAAE2eeoiySbx_xtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC._MessageImplementationBase>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "_protobuf_generated_isEqualTo", + "printedName": "_protobuf_generated_isEqualTo(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26_MessageImplementationBasePAAE29_protobuf_generated_isEqualTo5otherSbx_tF", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBasePAAE29_protobuf_generated_isEqualTo5otherSbx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC._MessageImplementationBase>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AnyMessageExtension", + "printedName": "AnyMessageExtension", + "children": [ + { + "kind": "Var", + "name": "fieldNumber", + "printedName": "fieldNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP11fieldNumberSivp", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP11fieldNumberSivp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP11fieldNumberSivg", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP11fieldNumberSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyMessageExtension>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fieldName", + "printedName": "fieldName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP9fieldNameSSvp", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP9fieldNameSSvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP9fieldNameSSvg", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP9fieldNameSSvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyMessageExtension>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messageType", + "printedName": "messageType", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP11messageTypeAA0D0_pXpvp", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP11messageTypeAA0D0_pXpvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP11messageTypeAA0D0_pXpvg", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP11messageTypeAA0D0_pXpvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyMessageExtension>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "_protobuf_newField", + "printedName": "_protobuf_newField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyExtensionField?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP18_protobuf_newField7decoderAA0ceH0_pSgqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP18_protobuf_newField7decoderAA0ceH0_pSgqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.AnyMessageExtension, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : Swift.Sendable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MessageExtension", + "printedName": "MessageExtension", + "children": [ + { + "kind": "Var", + "name": "fieldNumber", + "printedName": "fieldNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MessageExtensionC11fieldNumberSivp", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC11fieldNumberSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MessageExtensionC11fieldNumberSivg", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC11fieldNumberSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.ExtensionField, τ_0_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fieldName", + "printedName": "fieldName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MessageExtensionC9fieldNameSSvp", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC9fieldNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MessageExtensionC9fieldNameSSvg", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC9fieldNameSSvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.ExtensionField, τ_0_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messageType", + "printedName": "messageType", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MessageExtensionC11messageTypeAA0C0_pXpvp", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC11messageTypeAA0C0_pXpvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MessageExtensionC11messageTypeAA0C0_pXpvg", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC11messageTypeAA0C0_pXpvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.ExtensionField, τ_0_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_protobuf_fieldNumber:fieldName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension<τ_0_0, τ_0_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16MessageExtensionC21_protobuf_fieldNumber0F4NameACyxq_GSi_SStcfc", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC21_protobuf_fieldNumber0F4NameACyxq_GSi_SStcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.ExtensionField, τ_0_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "_protobuf_newField", + "printedName": "_protobuf_newField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyExtensionField?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MessageExtensionC18_protobuf_newField7decoderAA03AnydG0_pSgqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC18_protobuf_newField7decoderAA03AnydG0_pSgqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensionField, τ_0_1 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16MessageExtensionC", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.ExtensionField, τ_0_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AnyMessageExtension", + "printedName": "AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Meter", + "printedName": "Meter", + "children": [ + { + "kind": "Function", + "name": "createIntCounter", + "printedName": "createIntCounter(name:monotonic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCounterMetric", + "printedName": "VideoSDKRTC.AnyCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC16AnyCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP16createIntCounter4name9monotonicAA03AnyF6MetricVySiGSS_SbtF", + "mangledName": "$s11VideoSDKRTC5MeterP16createIntCounter4name9monotonicAA03AnyF6MetricVySiGSS_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleCounter", + "printedName": "createDoubleCounter(name:monotonic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCounterMetric", + "printedName": "VideoSDKRTC.AnyCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC16AnyCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP19createDoubleCounter4name9monotonicAA03AnyF6MetricVySdGSS_SbtF", + "mangledName": "$s11VideoSDKRTC5MeterP19createDoubleCounter4name9monotonicAA03AnyF6MetricVySdGSS_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntMeasure", + "printedName": "createIntMeasure(name:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMeasureMetric", + "printedName": "VideoSDKRTC.AnyMeasureMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP16createIntMeasure4name8absoluteAA03AnyF6MetricVySiGSS_SbtF", + "mangledName": "$s11VideoSDKRTC5MeterP16createIntMeasure4name8absoluteAA03AnyF6MetricVySiGSS_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleMeasure", + "printedName": "createDoubleMeasure(name:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMeasureMetric", + "printedName": "VideoSDKRTC.AnyMeasureMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP19createDoubleMeasure4name8absoluteAA03AnyF6MetricVySdGSS_SbtF", + "mangledName": "$s11VideoSDKRTC5MeterP19createDoubleMeasure4name8absoluteAA03AnyF6MetricVySdGSS_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntHistogram", + "printedName": "createIntHistogram(name:explicitBoundaries:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyHistogramMetric", + "printedName": "VideoSDKRTC.AnyHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.Int]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP18createIntHistogram4name18explicitBoundaries8absoluteAA03AnyF6MetricVySiGSS_SaySiGSgSbtF", + "mangledName": "$s11VideoSDKRTC5MeterP18createIntHistogram4name18explicitBoundaries8absoluteAA03AnyF6MetricVySiGSS_SaySiGSgSbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleHistogram", + "printedName": "createDoubleHistogram(name:explicitBoundaries:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyHistogramMetric", + "printedName": "VideoSDKRTC.AnyHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP21createDoubleHistogram4name18explicitBoundaries8absoluteAA03AnyF6MetricVySdGSS_SaySdGSgSbtF", + "mangledName": "$s11VideoSDKRTC5MeterP21createDoubleHistogram4name18explicitBoundaries8absoluteAA03AnyF6MetricVySdGSS_SaySdGSgSbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRawDoubleHistogram", + "printedName": "createRawDoubleHistogram(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawHistogramMetric", + "printedName": "VideoSDKRTC.AnyRawHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP24createRawDoubleHistogram4nameAA03AnyeG6MetricVySdGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterP24createRawDoubleHistogram4nameAA03AnyeG6MetricVySdGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRawIntHistogram", + "printedName": "createRawIntHistogram(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawHistogramMetric", + "printedName": "VideoSDKRTC.AnyRawHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP21createRawIntHistogram4nameAA03AnyeG6MetricVySiGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterP21createRawIntHistogram4nameAA03AnyeG6MetricVySiGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRawDoubleCounter", + "printedName": "createRawDoubleCounter(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawCounterMetric", + "printedName": "VideoSDKRTC.AnyRawCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP22createRawDoubleCounter4nameAA03AnyeG6MetricVySdGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterP22createRawDoubleCounter4nameAA03AnyeG6MetricVySdGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRawIntCounter", + "printedName": "createRawIntCounter(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawCounterMetric", + "printedName": "VideoSDKRTC.AnyRawCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP19createRawIntCounter4nameAA03AnyeG6MetricVySiGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterP19createRawIntCounter4nameAA03AnyeG6MetricVySiGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntObserver", + "printedName": "createIntObserver(name:absolute:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.IntObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP17createIntObserver4name8absolute8callbackAA0eF6Metric_pSS_SbyAaH_pctF", + "mangledName": "$s11VideoSDKRTC5MeterP17createIntObserver4name8absolute8callbackAA0eF6Metric_pSS_SbyAaH_pctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleObserver", + "printedName": "createDoubleObserver(name:absolute:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.DoubleObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP20createDoubleObserver4name8absolute8callbackAA0eF6Metric_pSS_SbyAaH_pctF", + "mangledName": "$s11VideoSDKRTC5MeterP20createDoubleObserver4name8absolute8callbackAA0eF6Metric_pSS_SbyAaH_pctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntObservableGauge", + "printedName": "createIntObservableGauge(name:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.IntObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP24createIntObservableGauge4name8callbackAA0E14ObserverMetric_pSS_yAaG_pctF", + "mangledName": "$s11VideoSDKRTC5MeterP24createIntObservableGauge4name8callbackAA0E14ObserverMetric_pSS_yAaG_pctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleObservableGauge", + "printedName": "createDoubleObservableGauge(name:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.DoubleObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP27createDoubleObservableGauge4name8callbackAA0E14ObserverMetric_pSS_yAaG_pctF", + "mangledName": "$s11VideoSDKRTC5MeterP27createDoubleObservableGauge4name8callbackAA0E14ObserverMetric_pSS_yAaG_pctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getLabelSet", + "printedName": "getLabelSet(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP11getLabelSet6labelsAA0eF0CSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC5MeterP11getLabelSet6labelsAA0eF0CSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntCounter", + "printedName": "createIntCounter(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCounterMetric", + "printedName": "VideoSDKRTC.AnyCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC16AnyCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterPAAE16createIntCounter4nameAA03AnyF6MetricVySiGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterPAAE16createIntCounter4nameAA03AnyF6MetricVySiGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleCounter", + "printedName": "createDoubleCounter(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCounterMetric", + "printedName": "VideoSDKRTC.AnyCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC16AnyCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterPAAE19createDoubleCounter4nameAA03AnyF6MetricVySdGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterPAAE19createDoubleCounter4nameAA03AnyF6MetricVySdGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntMeasure", + "printedName": "createIntMeasure(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMeasureMetric", + "printedName": "VideoSDKRTC.AnyMeasureMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterPAAE16createIntMeasure4nameAA03AnyF6MetricVySiGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterPAAE16createIntMeasure4nameAA03AnyF6MetricVySiGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleMeasure", + "printedName": "createDoubleMeasure(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMeasureMetric", + "printedName": "VideoSDKRTC.AnyMeasureMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterPAAE19createDoubleMeasure4nameAA03AnyF6MetricVySdGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterPAAE19createDoubleMeasure4nameAA03AnyF6MetricVySdGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntObserver", + "printedName": "createIntObserver(name:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.IntObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterPAAE17createIntObserver4name8callbackAA0eF6Metric_pSS_yAaG_pctF", + "mangledName": "$s11VideoSDKRTC5MeterPAAE17createIntObserver4name8callbackAA0eF6Metric_pSS_yAaG_pctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleObserver", + "printedName": "createDoubleObserver(name:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.DoubleObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterPAAE20createDoubleObserver4name8callbackAA0eF6Metric_pSS_yAaG_pctF", + "mangledName": "$s11VideoSDKRTC5MeterPAAE20createDoubleObserver4name8callbackAA0eF6Metric_pSS_yAaG_pctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addMetric", + "printedName": "addMetric(name:type:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.MetricData]", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterPAAE9addMetric4name4type4dataySS_AA15AggregationTypeOSayAA0E4Data_pGtF", + "mangledName": "$s11VideoSDKRTC5MeterPAAE9addMetric4name4type4dataySS_AA15AggregationTypeOSayAA0E4Data_pGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC5MeterP", + "mangledName": "$s11VideoSDKRTC5MeterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeterBuilder", + "printedName": "MeterBuilder", + "children": [ + { + "kind": "Function", + "name": "setSchemaUrl", + "printedName": "setSchemaUrl(schemaUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12MeterBuilderP12setSchemaUrl06schemaG0xSS_tF", + "mangledName": "$s11VideoSDKRTC12MeterBuilderP12setSchemaUrl06schemaG0xSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setInstrumentationVersion", + "printedName": "setInstrumentationVersion(instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12MeterBuilderP25setInstrumentationVersion015instrumentationG0xSS_tF", + "mangledName": "$s11VideoSDKRTC12MeterBuilderP25setInstrumentationVersion015instrumentationG0xSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeter", + "printedName": "VideoSDKRTC.StableMeter", + "usr": "s:11VideoSDKRTC11StableMeterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12MeterBuilderP5buildAA06StableC0_pyF", + "mangledName": "$s11VideoSDKRTC12MeterBuilderP5buildAA06StableC0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC12MeterBuilderP", + "mangledName": "$s11VideoSDKRTC12MeterBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeterBuilderSdk", + "printedName": "MeterBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "setSchemaUrl", + "printedName": "setSchemaUrl(schemaUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15MeterBuilderSdkC12setSchemaUrl06schemaH0ACXDSS_tF", + "mangledName": "$s11VideoSDKRTC15MeterBuilderSdkC12setSchemaUrl06schemaH0ACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setInstrumentationVersion", + "printedName": "setInstrumentationVersion(instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15MeterBuilderSdkC25setInstrumentationVersion015instrumentationH0ACXDSS_tF", + "mangledName": "$s11VideoSDKRTC15MeterBuilderSdkC25setInstrumentationVersion015instrumentationH0ACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeter", + "printedName": "VideoSDKRTC.StableMeter", + "usr": "s:11VideoSDKRTC11StableMeterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15MeterBuilderSdkC5buildAA06StableC0_pyF", + "mangledName": "$s11VideoSDKRTC15MeterBuilderSdkC5buildAA06StableC0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC15MeterBuilderSdkC", + "mangledName": "$s11VideoSDKRTC15MeterBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "MeterBuilder", + "printedName": "MeterBuilder", + "usr": "s:11VideoSDKRTC12MeterBuilderP", + "mangledName": "$s11VideoSDKRTC12MeterBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeterProvider", + "printedName": "MeterProvider", + "children": [ + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationName:instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Meter", + "printedName": "VideoSDKRTC.Meter", + "usr": "s:11VideoSDKRTC5MeterP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13MeterProviderP3get19instrumentationName0F7VersionAA0C0_pSS_SSSgtF", + "mangledName": "$s11VideoSDKRTC13MeterProviderP3get19instrumentationName0F7VersionAA0C0_pSS_SSSgtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeterProvider>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13MeterProviderP", + "mangledName": "$s11VideoSDKRTC13MeterProviderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeterProviderBuilder", + "printedName": "MeterProviderBuilder", + "children": [ + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metricExporter", + "printedName": "metricExporter", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporter", + "printedName": "VideoSDKRTC.MetricExporter", + "usr": "s:11VideoSDKRTC14MetricExporterP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC14metricExporterAA06MetricG0_pvp", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC14metricExporterAA06MetricG0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporter", + "printedName": "VideoSDKRTC.MetricExporter", + "usr": "s:11VideoSDKRTC14MetricExporterP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC14metricExporterAA06MetricG0_pvg", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC14metricExporterAA06MetricG0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metricPushInterval", + "printedName": "metricPushInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC18metricPushIntervalSdvp", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC18metricPushIntervalSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC18metricPushIntervalSdvg", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC18metricPushIntervalSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metricProcessor", + "printedName": "metricProcessor", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricProcessor", + "printedName": "VideoSDKRTC.MetricProcessor", + "usr": "s:11VideoSDKRTC15MetricProcessorP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC15metricProcessorAA06MetricG0_pvp", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC15metricProcessorAA06MetricG0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricProcessor", + "printedName": "VideoSDKRTC.MetricProcessor", + "usr": "s:11VideoSDKRTC15MetricProcessorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC15metricProcessorAA06MetricG0_pvg", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC15metricProcessorAA06MetricG0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProviderBuilder", + "printedName": "VideoSDKRTC.MeterProviderBuilder", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderCACycfc", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(processor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "MetricProcessor", + "printedName": "VideoSDKRTC.MetricProcessor", + "usr": "s:11VideoSDKRTC15MetricProcessorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC4with9processorACXDAA15MetricProcessor_p_tF", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC4with9processorACXDAA15MetricProcessor_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(exporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "MetricExporter", + "printedName": "VideoSDKRTC.MetricExporter", + "usr": "s:11VideoSDKRTC14MetricExporterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC4with8exporterACXDAA14MetricExporter_p_tF", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC4with8exporterACXDAA14MetricExporter_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(pushInterval:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC4with12pushIntervalACXDSd_tF", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC4with12pushIntervalACXDSd_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(resource:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC4with8resourceACXDAA8ResourceV_tF", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC4with8resourceACXDAA8ResourceV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeterProviderSdk", + "printedName": "MeterProviderSdk", + "children": [ + { + "kind": "Var", + "name": "defaultPushInterval", + "printedName": "defaultPushInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC19defaultPushIntervalSdvpZ", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC19defaultPushIntervalSdvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC19defaultPushIntervalSdvgZ", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC19defaultPushIntervalSdvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProviderSdk", + "printedName": "VideoSDKRTC.MeterProviderSdk", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16MeterProviderSdkCACycfc", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(metricProcessor:metricExporter:metricPushInterval:resource:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProviderSdk", + "printedName": "VideoSDKRTC.MeterProviderSdk", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC" + }, + { + "kind": "TypeNominal", + "name": "MetricProcessor", + "printedName": "VideoSDKRTC.MetricProcessor", + "usr": "s:11VideoSDKRTC15MetricProcessorP" + }, + { + "kind": "TypeNominal", + "name": "MetricExporter", + "printedName": "VideoSDKRTC.MetricExporter", + "usr": "s:11VideoSDKRTC14MetricExporterP" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC15metricProcessor0F8Exporter0F12PushInterval8resourceAcA06MetricG0_p_AA0lH0_pSdAA8ResourceVtcfc", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC15metricProcessor0F8Exporter0F12PushInterval8resourceAcA06MetricG0_p_AA0lH0_pSdAA8ResourceVtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationName:instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Meter", + "printedName": "VideoSDKRTC.Meter", + "usr": "s:11VideoSDKRTC5MeterP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC3get19instrumentationName0G7VersionAA0C0_pSS_SSSgtF", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC3get19instrumentationName0G7VersionAA0C0_pSS_SSSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setMetricProcessor", + "printedName": "setMetricProcessor(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MetricProcessor", + "printedName": "VideoSDKRTC.MetricProcessor", + "usr": "s:11VideoSDKRTC15MetricProcessorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC18setMetricProcessoryyAA0gH0_pF", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC18setMetricProcessoryyAA0gH0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addMetricExporter", + "printedName": "addMetricExporter(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MetricExporter", + "printedName": "VideoSDKRTC.MetricExporter", + "usr": "s:11VideoSDKRTC14MetricExporterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC17addMetricExporteryyAA0gH0_pF", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC17addMetricExporteryyAA0gH0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setMetricPushInterval", + "printedName": "setMetricPushInterval(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC21setMetricPushIntervalyySdF", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC21setMetricPushIntervalyySdF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setResource", + "printedName": "setResource(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC11setResourceyyAA0G0VF", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC11setResourceyyAA0G0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MeterProvider", + "printedName": "MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP", + "mangledName": "$s11VideoSDKRTC13MeterProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Metric", + "printedName": "Metric", + "children": [ + { + "kind": "Var", + "name": "namespace", + "printedName": "namespace", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6MetricV9namespaceSSvp", + "mangledName": "$s11VideoSDKRTC6MetricV9namespaceSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6MetricV9namespaceSSvg", + "mangledName": "$s11VideoSDKRTC6MetricV9namespaceSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6MetricV8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC6MetricV8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6MetricV8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC6MetricV8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instrumentationScopeInfo", + "printedName": "instrumentationScopeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6MetricV24instrumentationScopeInfoAA015InstrumentationeF0Vvp", + "mangledName": "$s11VideoSDKRTC6MetricV24instrumentationScopeInfoAA015InstrumentationeF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6MetricV24instrumentationScopeInfoAA015InstrumentationeF0Vvg", + "mangledName": "$s11VideoSDKRTC6MetricV24instrumentationScopeInfoAA015InstrumentationeF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6MetricV4nameSSvp", + "mangledName": "$s11VideoSDKRTC6MetricV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6MetricV4nameSSvg", + "mangledName": "$s11VideoSDKRTC6MetricV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6MetricV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC6MetricV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6MetricV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC6MetricV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aggregationType", + "printedName": "aggregationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6MetricV15aggregationTypeAA011AggregationE0Ovp", + "mangledName": "$s11VideoSDKRTC6MetricV15aggregationTypeAA011AggregationE0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6MetricV15aggregationTypeAA011AggregationE0Ovg", + "mangledName": "$s11VideoSDKRTC6MetricV15aggregationTypeAA011AggregationE0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.MetricData]", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6MetricV4dataSayAA0C4Data_pGvp", + "mangledName": "$s11VideoSDKRTC6MetricV4dataSayAA0C4Data_pGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.MetricData]", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6MetricV4dataSayAA0C4Data_pGvg", + "mangledName": "$s11VideoSDKRTC6MetricV4dataSayAA0C4Data_pGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + }, + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6MetricV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC6MetricV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6MetricV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC6MetricV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6MetricV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC6MetricV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC6MetricV", + "mangledName": "$s11VideoSDKRTC6MetricV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricData", + "printedName": "MetricData", + "children": [ + { + "kind": "Var", + "name": "startTimestamp", + "printedName": "startTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "labels", + "printedName": "labels", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10MetricDataP6labelsSDyS2SGvp", + "mangledName": "$s11VideoSDKRTC10MetricDataP6labelsSDyS2SGvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP6labelsSDyS2SGvg", + "mangledName": "$s11VideoSDKRTC10MetricDataP6labelsSDyS2SGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP6labelsSDyS2SGvs", + "mangledName": "$s11VideoSDKRTC10MetricDataP6labelsSDyS2SGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP6labelsSDyS2SGvM", + "mangledName": "$s11VideoSDKRTC10MetricDataP6labelsSDyS2SGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC10MetricDataP", + "mangledName": "$s11VideoSDKRTC10MetricDataP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "NoopMetricData", + "printedName": "NoopMetricData", + "children": [ + { + "kind": "Var", + "name": "startTimestamp", + "printedName": "startTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "labels", + "printedName": "labels", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvp", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvg", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvs", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvM", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopMetricData", + "printedName": "VideoSDKRTC.NoopMetricData", + "usr": "s:11VideoSDKRTC14NoopMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "NoopMetricData", + "printedName": "VideoSDKRTC.NoopMetricData", + "usr": "s:11VideoSDKRTC14NoopMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "NoopMetricData", + "printedName": "VideoSDKRTC.NoopMetricData", + "usr": "s:11VideoSDKRTC14NoopMetricDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14NoopMetricDataV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14NoopMetricDataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14NoopMetricDataV", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricData", + "printedName": "MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP", + "mangledName": "$s11VideoSDKRTC10MetricDataP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SumData", + "printedName": "SumData", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(startTimestamp:timestamp:labels:sum:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SumData", + "printedName": "VideoSDKRTC.SumData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC7SumDataV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7SumDataV14startTimestamp9timestamp6labels3sumACyxG10Foundation4DateV_AKSDyS2SGxtcfc", + "mangledName": "$s11VideoSDKRTC7SumDataV14startTimestamp9timestamp6labels3sumACyxG10Foundation4DateV_AKSDyS2SGxtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "startTimestamp", + "printedName": "startTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "labels", + "printedName": "labels", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7SumDataV6labelsSDyS2SGvp", + "mangledName": "$s11VideoSDKRTC7SumDataV6labelsSDyS2SGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV6labelsSDyS2SGvg", + "mangledName": "$s11VideoSDKRTC7SumDataV6labelsSDyS2SGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV6labelsSDyS2SGvs", + "mangledName": "$s11VideoSDKRTC7SumDataV6labelsSDyS2SGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV6labelsSDyS2SGvM", + "mangledName": "$s11VideoSDKRTC7SumDataV6labelsSDyS2SGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7SumDataV3sumxvp", + "mangledName": "$s11VideoSDKRTC7SumDataV3sumxvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV3sumxvg", + "mangledName": "$s11VideoSDKRTC7SumDataV3sumxvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV3sumxvs", + "mangledName": "$s11VideoSDKRTC7SumDataV3sumxvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV3sumxvM", + "mangledName": "$s11VideoSDKRTC7SumDataV3sumxvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SumData", + "printedName": "VideoSDKRTC.SumData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC7SumDataV" + }, + { + "kind": "TypeNominal", + "name": "SumData", + "printedName": "VideoSDKRTC.SumData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC7SumDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7SumDataVAASQRzlE2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC7SumDataVAASQRzlE2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable>", + "sugared_genericSig": "", + "static": true, + "implicit": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SumData", + "printedName": "VideoSDKRTC.SumData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC7SumDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7SumDataVAASeRzSERzlE4fromACyxGs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC7SumDataVAASeRzSERzlE4fromACyxGs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7SumDataVAASeRzSERzlE6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC7SumDataVAASeRzSERzlE6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC7SumDataV", + "mangledName": "$s11VideoSDKRTC7SumDataV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricData", + "printedName": "MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP", + "mangledName": "$s11VideoSDKRTC10MetricDataP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SummaryData", + "printedName": "SummaryData", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(startTimestamp:timestamp:labels:count:sum:min:max:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SummaryData", + "printedName": "VideoSDKRTC.SummaryData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC11SummaryDataV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC11SummaryDataV14startTimestamp9timestamp6labels5count3sum3min3maxACyxG10Foundation4DateV_ANSDyS2SGSixxxtcfc", + "mangledName": "$s11VideoSDKRTC11SummaryDataV14startTimestamp9timestamp6labels5count3sum3min3maxACyxG10Foundation4DateV_ANSDyS2SGSixxxtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "startTimestamp", + "printedName": "startTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "labels", + "printedName": "labels", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvp", + "mangledName": "$s11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvg", + "mangledName": "$s11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvs", + "mangledName": "$s11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvM", + "mangledName": "$s11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SummaryDataV5countSivp", + "mangledName": "$s11VideoSDKRTC11SummaryDataV5countSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV5countSivg", + "mangledName": "$s11VideoSDKRTC11SummaryDataV5countSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV5countSivs", + "mangledName": "$s11VideoSDKRTC11SummaryDataV5countSivs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV5countSivM", + "mangledName": "$s11VideoSDKRTC11SummaryDataV5countSivM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SummaryDataV3sumxvp", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3sumxvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3sumxvg", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3sumxvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3sumxvs", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3sumxvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3sumxvM", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3sumxvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "min", + "printedName": "min", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SummaryDataV3minxvp", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3minxvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3minxvg", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3minxvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3minxvs", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3minxvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3minxvM", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3minxvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "max", + "printedName": "max", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SummaryDataV3maxxvp", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3maxxvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3maxxvg", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3maxxvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3maxxvs", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3maxxvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3maxxvM", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3maxxvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SummaryData", + "printedName": "VideoSDKRTC.SummaryData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC11SummaryDataV" + }, + { + "kind": "TypeNominal", + "name": "SummaryData", + "printedName": "VideoSDKRTC.SummaryData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC11SummaryDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SummaryDataVAASQRzlE2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC11SummaryDataVAASQRzlE2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable>", + "sugared_genericSig": "", + "static": true, + "implicit": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SummaryData", + "printedName": "VideoSDKRTC.SummaryData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC11SummaryDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC11SummaryDataVAASeRzSERzlE4fromACyxGs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC11SummaryDataVAASeRzSERzlE4fromACyxGs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SummaryDataVAASeRzSERzlE6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC11SummaryDataVAASeRzSERzlE6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC11SummaryDataV", + "mangledName": "$s11VideoSDKRTC11SummaryDataV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricData", + "printedName": "MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP", + "mangledName": "$s11VideoSDKRTC10MetricDataP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "HistogramData", + "printedName": "HistogramData", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(startTimestamp:timestamp:labels:buckets:count:sum:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HistogramData", + "printedName": "VideoSDKRTC.HistogramData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC13HistogramDataV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(boundaries: [τ_0_0], counts: [Swift.Int])", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC13HistogramDataV14startTimestamp9timestamp6labels7buckets5count3sumACyxG10Foundation4DateV_AMSDyS2SGSayxG10boundaries_SaySiG6countstSixtcfc", + "mangledName": "$s11VideoSDKRTC13HistogramDataV14startTimestamp9timestamp6labels7buckets5count3sumACyxG10Foundation4DateV_AMSDyS2SGSayxG10boundaries_SaySiG6countstSixtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "startTimestamp", + "printedName": "startTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "labels", + "printedName": "labels", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvp", + "mangledName": "$s11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvg", + "mangledName": "$s11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvs", + "mangledName": "$s11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvM", + "mangledName": "$s11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "buckets", + "printedName": "buckets", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(boundaries: [τ_0_0], counts: [Swift.Int])", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvp", + "mangledName": "$s11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(boundaries: [τ_0_0], counts: [Swift.Int])", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvg", + "mangledName": "$s11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(boundaries: [τ_0_0], counts: [Swift.Int])", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvs", + "mangledName": "$s11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvM", + "mangledName": "$s11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13HistogramDataV5countSivp", + "mangledName": "$s11VideoSDKRTC13HistogramDataV5countSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV5countSivg", + "mangledName": "$s11VideoSDKRTC13HistogramDataV5countSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV5countSivs", + "mangledName": "$s11VideoSDKRTC13HistogramDataV5countSivs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV5countSivM", + "mangledName": "$s11VideoSDKRTC13HistogramDataV5countSivM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13HistogramDataV3sumxvp", + "mangledName": "$s11VideoSDKRTC13HistogramDataV3sumxvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV3sumxvg", + "mangledName": "$s11VideoSDKRTC13HistogramDataV3sumxvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV3sumxvs", + "mangledName": "$s11VideoSDKRTC13HistogramDataV3sumxvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV3sumxvM", + "mangledName": "$s11VideoSDKRTC13HistogramDataV3sumxvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "HistogramData", + "printedName": "VideoSDKRTC.HistogramData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC13HistogramDataV" + }, + { + "kind": "TypeNominal", + "name": "HistogramData", + "printedName": "VideoSDKRTC.HistogramData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC13HistogramDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13HistogramDataVAASQRzlE2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC13HistogramDataVAASQRzlE2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HistogramData", + "printedName": "VideoSDKRTC.HistogramData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC13HistogramDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC13HistogramDataVAASeRzSERzlE4fromACyxGs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC13HistogramDataVAASeRzSERzlE4fromACyxGs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13HistogramDataVAASeRzSERzlE6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC13HistogramDataVAASeRzSERzlE6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13HistogramDataV", + "mangledName": "$s11VideoSDKRTC13HistogramDataV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricData", + "printedName": "MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP", + "mangledName": "$s11VideoSDKRTC10MetricDataP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricDescriptor", + "printedName": "MetricDescriptor", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MetricDescriptorV4nameSSvp", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV4nameSSvg", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MetricDescriptorV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "view", + "printedName": "view", + "children": [ + { + "kind": "TypeNominal", + "name": "StableView", + "printedName": "VideoSDKRTC.StableView", + "usr": "s:11VideoSDKRTC10StableViewC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MetricDescriptorV4viewAA10StableViewCvp", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV4viewAA10StableViewCvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableView", + "printedName": "VideoSDKRTC.StableView", + "usr": "s:11VideoSDKRTC10StableViewC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV4viewAA10StableViewCvg", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV4viewAA10StableViewCvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instrument", + "printedName": "instrument", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MetricDescriptorV10instrumentAA010InstrumentD0Vvp", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV10instrumentAA010InstrumentD0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV10instrumentAA010InstrumentD0Vvg", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV10instrumentAA010InstrumentD0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "aggregationName", + "printedName": "aggregationName()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MetricDescriptorV15aggregationNameSSyF", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV15aggregationNameSSyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MetricDescriptorV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MetricDescriptorV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MetricDescriptorV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16MetricDescriptorV", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricExporterResultCode", + "printedName": "MetricExporterResultCode", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricExporterResultCode.Type) -> VideoSDKRTC.MetricExporterResultCode", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricExporterResultCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO7successyA2CmF", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO7successyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "failureNotRetryable", + "printedName": "failureNotRetryable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricExporterResultCode.Type) -> VideoSDKRTC.MetricExporterResultCode", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricExporterResultCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO19failureNotRetryableyA2CmF", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO19failureNotRetryableyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "failureRetryable", + "printedName": "failureRetryable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricExporterResultCode.Type) -> VideoSDKRTC.MetricExporterResultCode", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricExporterResultCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO16failureRetryableyA2CmF", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO16failureRetryableyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MetricExporter", + "printedName": "MetricExporter", + "children": [ + { + "kind": "Function", + "name": "export", + "printedName": "export(metrics:shouldCancel:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> Swift.Bool)?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricExporterP6export7metrics12shouldCancelAA0cD10ResultCodeOSayAA0C0VG_SbycSgtF", + "mangledName": "$s11VideoSDKRTC14MetricExporterP6export7metrics12shouldCancelAA0cD10ResultCodeOSayAA0C0VG_SbycSgtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14MetricExporterP", + "mangledName": "$s11VideoSDKRTC14MetricExporterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricProcessor", + "printedName": "MetricProcessor", + "children": [ + { + "kind": "Function", + "name": "finishCollectionCycle", + "printedName": "finishCollectionCycle()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15MetricProcessorP21finishCollectionCycleSayAA0C0VGyF", + "mangledName": "$s11VideoSDKRTC15MetricProcessorP21finishCollectionCycleSayAA0C0VGyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "process", + "printedName": "process(metric:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15MetricProcessorP7process6metricyAA0C0V_tF", + "mangledName": "$s11VideoSDKRTC15MetricProcessorP7process6metricyAA0C0V_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC15MetricProcessorP", + "mangledName": "$s11VideoSDKRTC15MetricProcessorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricProcessorSdk", + "printedName": "MetricProcessorSdk", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricProcessorSdk", + "printedName": "VideoSDKRTC.MetricProcessorSdk", + "usr": "s:11VideoSDKRTC18MetricProcessorSdkC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18MetricProcessorSdkCACycfc", + "mangledName": "$s11VideoSDKRTC18MetricProcessorSdkCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "finishCollectionCycle", + "printedName": "finishCollectionCycle()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MetricProcessorSdkC21finishCollectionCycleSayAA0C0VGyF", + "mangledName": "$s11VideoSDKRTC18MetricProcessorSdkC21finishCollectionCycleSayAA0C0VGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "process", + "printedName": "process(metric:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MetricProcessorSdkC7process6metricyAA0C0V_tF", + "mangledName": "$s11VideoSDKRTC18MetricProcessorSdkC7process6metricyAA0C0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18MetricProcessorSdkC", + "mangledName": "$s11VideoSDKRTC18MetricProcessorSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricProcessor", + "printedName": "MetricProcessor", + "usr": "s:11VideoSDKRTC15MetricProcessorP", + "mangledName": "$s11VideoSDKRTC15MetricProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricProducer", + "printedName": "MetricProducer", + "children": [ + { + "kind": "Function", + "name": "collectAllMetrics", + "printedName": "collectAllMetrics()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.StableMetricData]", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricProducerP17collectAllMetricsSayAA06StableC4DataVGyF", + "mangledName": "$s11VideoSDKRTC14MetricProducerP17collectAllMetricsSayAA06StableC4DataVGyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricProducer>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14MetricProducerP", + "mangledName": "$s11VideoSDKRTC14MetricProducerP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.CollectionRegistration>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CollectionRegistration", + "printedName": "CollectionRegistration", + "usr": "s:11VideoSDKRTC22CollectionRegistrationP", + "mangledName": "$s11VideoSDKRTC22CollectionRegistrationP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoopMetricProducer", + "printedName": "NoopMetricProducer", + "children": [ + { + "kind": "Function", + "name": "collectAllMetrics", + "printedName": "collectAllMetrics()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.StableMetricData]", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18NoopMetricProducerV17collectAllMetricsSayAA06StableD4DataVGyF", + "mangledName": "$s11VideoSDKRTC18NoopMetricProducerV17collectAllMetricsSayAA06StableD4DataVGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18NoopMetricProducerV", + "mangledName": "$s11VideoSDKRTC18NoopMetricProducerV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricProducer", + "printedName": "MetricProducer", + "usr": "s:11VideoSDKRTC14MetricProducerP", + "mangledName": "$s11VideoSDKRTC14MetricProducerP" + }, + { + "kind": "Conformance", + "name": "CollectionRegistration", + "printedName": "CollectionRegistration", + "usr": "s:11VideoSDKRTC22CollectionRegistrationP", + "mangledName": "$s11VideoSDKRTC22CollectionRegistrationP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "children": [ + { + "kind": "Var", + "name": "unspecified", + "printedName": "unspecified", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO11unspecifiedyA2CmF", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO11unspecifiedyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "delta", + "printedName": "delta", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO5deltayA2CmF", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO5deltayA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cumulative", + "printedName": "cumulative", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO10cumulativeyA2CmF", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO10cumulativeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type) -> (Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO12UNRECOGNIZEDyACSicACmF", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO12UNRECOGNIZEDyACSicACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityOACycfc", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityOACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality?", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvsZ", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvMZ", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "children": [ + { + "kind": "Var", + "name": "doNotUse", + "printedName": "doNotUse", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags.Type) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8doNotUseyA2CmF", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8doNotUseyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "noRecordedValueMask", + "printedName": "noRecordedValueMask", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags.Type) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO19noRecordedValueMaskyA2CmF", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO19noRecordedValueMaskyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags.Type) -> (Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO12UNRECOGNIZEDyACSicACmF", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO12UNRECOGNIZEDyACSicACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsOACycfc", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsOACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags?", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvsZ", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvMZ", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_MetricsData", + "printedName": "Opentelemetry_Proto_Metrics_V1_MetricsData", + "children": [ + { + "kind": "Var", + "name": "resourceMetrics", + "printedName": "resourceMetrics", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvp", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvg", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvs", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvM", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_MetricsData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataVACycfc", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_MetricsData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_MetricsData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "children": [ + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvp", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvg", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvs", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0VvM", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasResource", + "printedName": "hasResource", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V03hasG0Sbvp", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V03hasG0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V03hasG0Sbvg", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V03hasG0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearResource", + "printedName": "clearResource()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05clearG0yyF", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05clearG0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "scopeMetrics", + "printedName": "scopeMetrics", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvp", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvg", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvs", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvM", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "schemaURL", + "printedName": "schemaURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvp", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvg", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvs", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvM", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0VACycfc", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0VACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9hashValueSivp", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9hashValueSivg", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "printedName": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "children": [ + { + "kind": "Var", + "name": "scope", + "printedName": "scope", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0VvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasScope", + "printedName": "hasScope", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V03hasG0Sbvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V03hasG0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V03hasG0Sbvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V03hasG0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearScope", + "printedName": "clearScope()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V05clearG0yyF", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V05clearG0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "metrics", + "printedName": "metrics", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "schemaURL", + "printedName": "schemaURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0VACycfc", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0VACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9hashValueSivp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9hashValueSivg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "Opentelemetry_Proto_Metrics_V1_Metric", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "description_p", + "printedName": "description_p", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unit", + "printedName": "unit", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "gauge", + "printedName": "gauge", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "histogram", + "printedName": "histogram", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "exponentialHistogram", + "printedName": "exponentialHistogram", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0Vvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0Vvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0Vvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0VvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "summary", + "printedName": "summary", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_Data", + "printedName": "OneOf_Data", + "children": [ + { + "kind": "Var", + "name": "gauge", + "printedName": "gauge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type) -> (VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO5gaugeyAeA0c1_d1_e1_F6_GaugeVcAEmF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO5gaugeyAeA0c1_d1_e1_F6_GaugeVcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type) -> (VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO3sumyAeA0c1_d1_e1_F4_SumVcAEmF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO3sumyAeA0c1_d1_e1_F4_SumVcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "histogram", + "printedName": "histogram", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type) -> (VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO9histogramyAeA0c1_d1_e1_F10_HistogramVcAEmF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO9histogramyAeA0c1_d1_e1_F10_HistogramVcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "exponentialHistogram", + "printedName": "exponentialHistogram", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type) -> (VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO20exponentialHistogramyAeA0c1_d1_e1_f12_ExponentialL0VcAEmF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO20exponentialHistogramyAeA0c1_d1_e1_f12_ExponentialL0VcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "summary", + "printedName": "summary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type) -> (VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO7summaryyAeA0c1_d1_e1_F8_SummaryVcAEmF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO7summaryyAeA0c1_d1_e1_F8_SummaryVcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricVACycfc", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "Opentelemetry_Proto_Metrics_V1_Gauge", + "children": [ + { + "kind": "Var", + "name": "dataPoints", + "printedName": "dataPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvp", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvg", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvs", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvM", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeVACycfc", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "Opentelemetry_Proto_Metrics_V1_Sum", + "children": [ + { + "kind": "Var", + "name": "dataPoints", + "printedName": "dataPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvp", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvg", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvs", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvM", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovp", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovg", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovs", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0OvM", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isMonotonic", + "printedName": "isMonotonic", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvp", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvg", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvs", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvM", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumVACycfc", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "Opentelemetry_Proto_Metrics_V1_Histogram", + "children": [ + { + "kind": "Var", + "name": "dataPoints", + "printedName": "dataPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvp", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvg", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvs", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvM", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovp", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovg", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovs", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0OvM", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramVACycfc", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "children": [ + { + "kind": "Var", + "name": "dataPoints", + "printedName": "dataPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvp", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvg", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvs", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvM", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0Ovp", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0Ovg", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0Ovs", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0Ovs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0OvM", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramVACycfc", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "Opentelemetry_Proto_Metrics_V1_Summary", + "children": [ + { + "kind": "Var", + "name": "dataPoints", + "printedName": "dataPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryVACycfc", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "startTimeUnixNano", + "printedName": "startTimeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timeUnixNano", + "printedName": "timeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "asDouble", + "printedName": "asDouble", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "asInt", + "printedName": "asInt", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64Vvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64Vvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64Vvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64VvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "exemplars", + "printedName": "exemplars", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "flags", + "printedName": "flags", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32VvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_Value", + "printedName": "OneOf_Value", + "children": [ + { + "kind": "Var", + "name": "asDouble", + "printedName": "asDouble", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value.Type) -> (Swift.Double) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO8asDoubleyAESdcAEmF", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO8asDoubleyAESdcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "asInt", + "printedName": "asInt", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value.Type) -> (Swift.Int64) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int64) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO5asIntyAEs5Int64VcAEmF", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO5asIntyAEs5Int64VcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointVACycfc", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "printedName": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "startTimeUnixNano", + "printedName": "startTimeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timeUnixNano", + "printedName": "timeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64VvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSum", + "printedName": "hasSum", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasSumSbvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasSumSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasSumSbvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasSumSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSum", + "printedName": "clearSum()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8clearSumyyF", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8clearSumyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "bucketCounts", + "printedName": "bucketCounts", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "explicitBounds", + "printedName": "explicitBounds", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "exemplars", + "printedName": "exemplars", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "flags", + "printedName": "flags", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32VvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "min", + "printedName": "min", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMin", + "printedName": "hasMin", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMinSbvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMinSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMinSbvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMinSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearMin", + "printedName": "clearMin()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8clearMinyyF", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8clearMinyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "max", + "printedName": "max", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMax", + "printedName": "hasMax", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMaxSbvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMaxSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMaxSbvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMaxSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearMax", + "printedName": "clearMax()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8clearMaxyyF", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8clearMaxyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointVACycfc", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "printedName": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "startTimeUnixNano", + "printedName": "startTimeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timeUnixNano", + "printedName": "timeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64VvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSum", + "printedName": "hasSum", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasSumSbvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasSumSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasSumSbvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasSumSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSum", + "printedName": "clearSum()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8clearSumyyF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8clearSumyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "scale", + "printedName": "scale", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32Vvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32Vvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32Vvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32VvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "zeroCount", + "printedName": "zeroCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64VvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "positive", + "printedName": "positive", + "children": [ + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPositive", + "printedName": "hasPositive", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasPositiveSbvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasPositiveSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasPositiveSbvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasPositiveSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPositive", + "printedName": "clearPositive()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13clearPositiveyyF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13clearPositiveyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "negative", + "printedName": "negative", + "children": [ + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasNegative", + "printedName": "hasNegative", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasNegativeSbvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasNegativeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasNegativeSbvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasNegativeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearNegative", + "printedName": "clearNegative()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13clearNegativeyyF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13clearNegativeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "flags", + "printedName": "flags", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32VvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "exemplars", + "printedName": "exemplars", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "min", + "printedName": "min", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMin", + "printedName": "hasMin", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMinSbvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMinSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMinSbvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMinSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearMin", + "printedName": "clearMin()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8clearMinyyF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8clearMinyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "max", + "printedName": "max", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMax", + "printedName": "hasMax", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMaxSbvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMaxSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMaxSbvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMaxSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearMax", + "printedName": "clearMax()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8clearMaxyyF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8clearMaxyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "zeroThreshold", + "printedName": "zeroThreshold", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Buckets", + "printedName": "Buckets", + "children": [ + { + "kind": "Var", + "name": "offset", + "printedName": "offset", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32Vvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32Vvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32Vvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32VvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bucketCounts", + "printedName": "bucketCounts", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsVAEycfc", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV17_protobuf_nameMapAA05_NameN0VvpZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV17_protobuf_nameMapAA05_NameN0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV17_protobuf_nameMapAA05_NameN0VvgZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV17_protobuf_nameMapAA05_NameN0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + }, + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointVACycfc", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "printedName": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "startTimeUnixNano", + "printedName": "startTimeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timeUnixNano", + "printedName": "timeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64VvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "quantileValues", + "printedName": "quantileValues", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "flags", + "printedName": "flags", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32VvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ValueAtQuantile", + "printedName": "ValueAtQuantile", + "children": [ + { + "kind": "Var", + "name": "quantile", + "printedName": "quantile", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileVAEycfc", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV17_protobuf_nameMapAA05_NameO0VvpZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV17_protobuf_nameMapAA05_NameO0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV17_protobuf_nameMapAA05_NameO0VvgZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV17_protobuf_nameMapAA05_NameO0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV" + }, + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV04hashJ0Sivp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV04hashJ0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV04hashJ0Sivg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV04hashJ0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointVACycfc", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "children": [ + { + "kind": "Var", + "name": "filteredAttributes", + "printedName": "filteredAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timeUnixNano", + "printedName": "timeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "asDouble", + "printedName": "asDouble", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "asInt", + "printedName": "asInt", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64Vvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64Vvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64Vvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64VvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "spanID", + "printedName": "spanID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "traceID", + "printedName": "traceID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_Value", + "printedName": "OneOf_Value", + "children": [ + { + "kind": "Var", + "name": "asDouble", + "printedName": "asDouble", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value.Type) -> (Swift.Double) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO8asDoubleyAESdcAEmF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO8asDoubleyAESdcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "asInt", + "printedName": "asInt", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value.Type) -> (Swift.Int64) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int64) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO5asIntyAEs5Int64VcAEmF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO5asIntyAEs5Int64VcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarVACycfc", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "printedName": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "children": [ + { + "kind": "Var", + "name": "resourceMetrics", + "printedName": "resourceMetrics", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvs", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvM", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestVACycfc", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "printedName": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "children": [ + { + "kind": "Var", + "name": "partialSuccess", + "printedName": "partialSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvs", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0VvM", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPartialSuccess", + "printedName": "hasPartialSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPartialSuccess", + "printedName": "clearPartialSuccess()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV19clearPartialSuccessyyF", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV19clearPartialSuccessyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseVACycfc", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "printedName": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "children": [ + { + "kind": "Var", + "name": "rejectedDataPoints", + "printedName": "rejectedDataPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64Vvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64Vvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64Vvs", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64VvM", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorMessage", + "printedName": "errorMessage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvs", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvM", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessVACycfc", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricsAdapter", + "printedName": "MetricsAdapter", + "children": [ + { + "kind": "Function", + "name": "toProtoResourceMetrics", + "printedName": "toProtoResourceMetrics(stableMetricData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.StableMetricData]", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricsAdapterO015toProtoResourceC016stableMetricDataSayAA014Opentelemetry_f1_c4_V1_gC0VGSayAA06StableiJ0VG_tFZ", + "mangledName": "$s11VideoSDKRTC14MetricsAdapterO015toProtoResourceC016stableMetricDataSayAA014Opentelemetry_f1_c4_V1_gC0VGSayAA06StableiJ0VG_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toProtoResourceMetrics", + "printedName": "toProtoResourceMetrics(metricDataList:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricsAdapterO015toProtoResourceC014metricDataListSayAA014Opentelemetry_f1_c4_V1_gC0VGSayAA6MetricVG_tFZ", + "mangledName": "$s11VideoSDKRTC14MetricsAdapterO015toProtoResourceC014metricDataListSayAA014Opentelemetry_f1_c4_V1_gC0VGSayAA6MetricVG_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toProtoMetric", + "printedName": "toProtoMetric(stableMetric:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric?", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricsAdapterO13toProtoMetric06stableG0AA014Opentelemetry_f1_c4_V1_G0VSgAA06StableG4DataV_tFZ", + "mangledName": "$s11VideoSDKRTC14MetricsAdapterO13toProtoMetric06stableG0AA014Opentelemetry_f1_c4_V1_G0VSgAA06StableG4DataV_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toProtoMetric", + "printedName": "toProtoMetric(metric:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric?", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricsAdapterO13toProtoMetric6metricAA014Opentelemetry_f1_c4_V1_G0VSgAA0G0V_tFZ", + "mangledName": "$s11VideoSDKRTC14MetricsAdapterO13toProtoMetric6metricAA014Opentelemetry_f1_c4_V1_G0VSgAA0G0V_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC14MetricsAdapterO", + "mangledName": "$s11VideoSDKRTC14MetricsAdapterO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricStorageConstants", + "printedName": "MetricStorageConstants", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22MetricStorageConstantsV", + "mangledName": "$s11VideoSDKRTC22MetricStorageConstantsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricStorage", + "printedName": "MetricStorage", + "children": [ + { + "kind": "Var", + "name": "metricDescriptor", + "printedName": "metricDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13MetricStorageP16metricDescriptorAA0cF0Vvp", + "mangledName": "$s11VideoSDKRTC13MetricStorageP16metricDescriptorAA0cF0Vvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13MetricStorageP16metricDescriptorAA0cF0Vvg", + "mangledName": "$s11VideoSDKRTC13MetricStorageP16metricDescriptorAA0cF0Vvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricStorage>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "collect", + "printedName": "collect(resource:scope:startEpochNanos:epochNanos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13MetricStorageP7collect8resource5scope15startEpochNanos05epochJ0AA06StableC4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", + "mangledName": "$s11VideoSDKRTC13MetricStorageP7collect8resource5scope15startEpochNanos05epochJ0AA06StableC4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricStorage>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "isEmpty", + "printedName": "isEmpty()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13MetricStorageP7isEmptySbyF", + "mangledName": "$s11VideoSDKRTC13MetricStorageP7isEmptySbyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricStorage>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13MetricStorageP", + "mangledName": "$s11VideoSDKRTC13MetricStorageP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "WritableMetricStorage", + "printedName": "WritableMetricStorage", + "children": [ + { + "kind": "Function", + "name": "recordLong", + "printedName": "recordLong(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC21WritableMetricStorageP10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.WritableMetricStorage>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "recordDouble", + "printedName": "recordDouble(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC21WritableMetricStorageP12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.WritableMetricStorage>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP", + "mangledName": "$s11VideoSDKRTC21WritableMetricStorageP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricStorageRegistry", + "printedName": "MetricStorageRegistry", + "declKind": "Class", + "usr": "s:11VideoSDKRTC21MetricStorageRegistryC", + "mangledName": "$s11VideoSDKRTC21MetricStorageRegistryC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MillisClock", + "printedName": "MillisClock", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MillisClock", + "printedName": "VideoSDKRTC.MillisClock", + "usr": "s:11VideoSDKRTC11MillisClockC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC11MillisClockCACycfc", + "mangledName": "$s11VideoSDKRTC11MillisClockCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "now", + "printedName": "now", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MillisClockC3now10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC11MillisClockC3now10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MillisClockC3now10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC11MillisClockC3now10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC11MillisClockC", + "mangledName": "$s11VideoSDKRTC11MillisClockC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Clock", + "printedName": "Clock", + "usr": "s:11VideoSDKRTC5ClockP", + "mangledName": "$s11VideoSDKRTC5ClockP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Mediasoup", + "printedName": "Mediasoup", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MonotonicClock", + "printedName": "MonotonicClock", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(clock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MonotonicClock", + "printedName": "VideoSDKRTC.MonotonicClock", + "usr": "s:11VideoSDKRTC14MonotonicClockC" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14MonotonicClockC5clockAcA0D0_p_tcfc", + "mangledName": "$s11VideoSDKRTC14MonotonicClockC5clockAcA0D0_p_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "now", + "printedName": "now", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14MonotonicClockC3now10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC14MonotonicClockC3now10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14MonotonicClockC3now10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC14MonotonicClockC3now10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC14MonotonicClockC", + "mangledName": "$s11VideoSDKRTC14MonotonicClockC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Clock", + "printedName": "Clock", + "usr": "s:11VideoSDKRTC5ClockP", + "mangledName": "$s11VideoSDKRTC5ClockP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MultiLogRecordExporter", + "printedName": "MultiLogRecordExporter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(logRecordExporters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MultiLogRecordExporter", + "printedName": "VideoSDKRTC.MultiLogRecordExporter", + "usr": "s:11VideoSDKRTC22MultiLogRecordExporterC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.LogRecordExporter]", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordExporter", + "printedName": "VideoSDKRTC.LogRecordExporter", + "usr": "s:11VideoSDKRTC17LogRecordExporterP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22MultiLogRecordExporterC03logE9ExportersACSayAA0deF0_pG_tcfc", + "mangledName": "$s11VideoSDKRTC22MultiLogRecordExporterC03logE9ExportersACSayAA0deF0_pG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "export", + "printedName": "export(logRecords:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22MultiLogRecordExporterC6export10logRecordsAA12ExportResultOSayAA08ReadabledE0VG_tF", + "mangledName": "$s11VideoSDKRTC22MultiLogRecordExporterC6export10logRecordsAA12ExportResultOSayAA08ReadabledE0VG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22MultiLogRecordExporterC8shutdownyyF", + "mangledName": "$s11VideoSDKRTC22MultiLogRecordExporterC8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22MultiLogRecordExporterC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC22MultiLogRecordExporterC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC22MultiLogRecordExporterC", + "mangledName": "$s11VideoSDKRTC22MultiLogRecordExporterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordExporter", + "printedName": "LogRecordExporter", + "usr": "s:11VideoSDKRTC17LogRecordExporterP", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MultiLogRecordProcessor", + "printedName": "MultiLogRecordProcessor", + "children": [ + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23MultiLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC23MultiLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23MultiLogRecordProcessorC8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC23MultiLogRecordProcessorC8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(logRecordProcessors:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MultiLogRecordProcessor", + "printedName": "VideoSDKRTC.MultiLogRecordProcessor", + "usr": "s:11VideoSDKRTC23MultiLogRecordProcessorC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.LogRecordProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordProcessor", + "printedName": "VideoSDKRTC.LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC23MultiLogRecordProcessorC03logE10ProcessorsACSayAA0deF0_pG_tcfc", + "mangledName": "$s11VideoSDKRTC23MultiLogRecordProcessorC03logE10ProcessorsACSayAA0deF0_pG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "onEmit", + "printedName": "onEmit(logRecord:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23MultiLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", + "mangledName": "$s11VideoSDKRTC23MultiLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC23MultiLogRecordProcessorC", + "mangledName": "$s11VideoSDKRTC23MultiLogRecordProcessorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordProcessor", + "printedName": "LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MultiSpanExporter", + "printedName": "MultiSpanExporter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(spanExporters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MultiSpanExporter", + "printedName": "VideoSDKRTC.MultiSpanExporter", + "usr": "s:11VideoSDKRTC17MultiSpanExporterC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanExporter]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporter", + "printedName": "VideoSDKRTC.SpanExporter", + "usr": "s:11VideoSDKRTC12SpanExporterP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17MultiSpanExporterC13spanExportersACSayAA0dE0_pG_tcfc", + "mangledName": "$s11VideoSDKRTC17MultiSpanExporterC13spanExportersACSayAA0dE0_pG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "export", + "printedName": "export(spans:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17MultiSpanExporterC6export5spansAA0dE10ResultCodeOSayAA0D4DataVG_tF", + "mangledName": "$s11VideoSDKRTC17MultiSpanExporterC6export5spansAA0dE10ResultCodeOSayAA0D4DataVG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17MultiSpanExporterC5flushAA0dE10ResultCodeOyF", + "mangledName": "$s11VideoSDKRTC17MultiSpanExporterC5flushAA0dE10ResultCodeOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17MultiSpanExporterC8shutdownyyF", + "mangledName": "$s11VideoSDKRTC17MultiSpanExporterC8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC17MultiSpanExporterC", + "mangledName": "$s11VideoSDKRTC17MultiSpanExporterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SpanExporter", + "printedName": "SpanExporter", + "usr": "s:11VideoSDKRTC12SpanExporterP", + "mangledName": "$s11VideoSDKRTC12SpanExporterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MultiSpanProcessor", + "printedName": "MultiSpanProcessor", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(spanProcessors:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MultiSpanProcessor", + "printedName": "VideoSDKRTC.MultiSpanProcessor", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV14spanProcessorsACSayAA0dE0_pG_tcfc", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV14spanProcessorsACSayAA0dE0_pG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "isStartRequired", + "printedName": "isStartRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV15isStartRequiredSbvp", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV15isStartRequiredSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV15isStartRequiredSbvg", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV15isStartRequiredSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isEndRequired", + "printedName": "isEndRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV13isEndRequiredSbvp", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV13isEndRequiredSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV13isEndRequiredSbvg", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV13isEndRequiredSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "onStart", + "printedName": "onStart(parentContext:span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV7onStart13parentContext4spanyAA0dI0VSg_AA08ReadableD0_ptF", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV7onStart13parentContext4spanyAA0dI0VSg_AA08ReadableD0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onEnd", + "printedName": "onEnd(span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV5onEnd4spanyAA08ReadableD0_p_tF", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV5onEnd4spanyAA08ReadableD0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV8shutdownyyF", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush(timeout:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV10forceFlush7timeoutySdSg_tF", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV10forceFlush7timeoutySdSg_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SpanProcessor", + "printedName": "SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_NameMap", + "printedName": "_NameMap", + "children": [ + { + "kind": "TypeDecl", + "name": "NameDescription", + "printedName": "NameDescription", + "children": [ + { + "kind": "Var", + "name": "same", + "printedName": "same", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC._NameMap.NameDescription.Type) -> (Swift.StaticString) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.StaticString) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(proto: Swift.StaticString)", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._NameMap.NameDescription.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO4sameyAEs12StaticStringV_tcAEmF", + "mangledName": "$s11VideoSDKRTC8_NameMapV0C11DescriptionO4sameyAEs12StaticStringV_tcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "standard", + "printedName": "standard", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC._NameMap.NameDescription.Type) -> (Swift.StaticString) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.StaticString) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(proto: Swift.StaticString)", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._NameMap.NameDescription.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO8standardyAEs12StaticStringV_tcAEmF", + "mangledName": "$s11VideoSDKRTC8_NameMapV0C11DescriptionO8standardyAEs12StaticStringV_tcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unique", + "printedName": "unique", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC._NameMap.NameDescription.Type) -> (Swift.StaticString, Swift.StaticString) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.StaticString, Swift.StaticString) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(proto: Swift.StaticString, json: Swift.StaticString)", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._NameMap.NameDescription.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO6uniqueyAEs12StaticStringV_AHtcAEmF", + "mangledName": "$s11VideoSDKRTC8_NameMapV0C11DescriptionO6uniqueyAEs12StaticStringV_AHtcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "aliased", + "printedName": "aliased", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC._NameMap.NameDescription.Type) -> (Swift.StaticString, [Swift.StaticString]) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.StaticString, [Swift.StaticString]) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(proto: Swift.StaticString, aliases: [Swift.StaticString])", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.StaticString]", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ], + "usr": "s:Sa" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._NameMap.NameDescription.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO7aliasedyAEs12StaticStringV_SayAHGtcAEmF", + "mangledName": "$s11VideoSDKRTC8_NameMapV0C11DescriptionO7aliasedyAEs12StaticStringV_SayAHGtcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO", + "mangledName": "$s11VideoSDKRTC8_NameMapV0C11DescriptionO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8_NameMapVACycfc", + "mangledName": "$s11VideoSDKRTC8_NameMapVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(dictionaryLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.Int, VideoSDKRTC._NameMap.NameDescription)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Int, VideoSDKRTC._NameMap.NameDescription)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8_NameMapV17dictionaryLiteralACSi_AC0C11DescriptionOtd_tcfc", + "mangledName": "$s11VideoSDKRTC8_NameMapV17dictionaryLiteralACSi_AC0C11DescriptionOtd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC8_NameMapV", + "mangledName": "$s11VideoSDKRTC8_NameMapV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByDictionaryLiteral", + "printedName": "ExpressibleByDictionaryLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "Key", + "printedName": "Key", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Value", + "printedName": "Value", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + } + ] + } + ], + "usr": "s:s30ExpressibleByDictionaryLiteralP", + "mangledName": "$ss30ExpressibleByDictionaryLiteralP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "NoopLogRecordExporter", + "printedName": "NoopLogRecordExporter", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopLogRecordExporter", + "printedName": "VideoSDKRTC.NoopLogRecordExporter", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC21NoopLogRecordExporterC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopLogRecordExporter", + "printedName": "VideoSDKRTC.NoopLogRecordExporter", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC21NoopLogRecordExporterC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "export", + "printedName": "export(logRecords:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC6export10logRecordsAA12ExportResultOSayAA08ReadabledE0VG_tF", + "mangledName": "$s11VideoSDKRTC21NoopLogRecordExporterC6export10logRecordsAA12ExportResultOSayAA08ReadabledE0VG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC8shutdownyyF", + "mangledName": "$s11VideoSDKRTC21NoopLogRecordExporterC8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC21NoopLogRecordExporterC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC", + "mangledName": "$s11VideoSDKRTC21NoopLogRecordExporterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordExporter", + "printedName": "LogRecordExporter", + "usr": "s:11VideoSDKRTC17LogRecordExporterP", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "NoopLogRecordProcessor", + "printedName": "NoopLogRecordProcessor", + "children": [ + { + "kind": "Var", + "name": "noopLogRecordProcessor", + "printedName": "noopLogRecordProcessor", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopLogRecordProcessor", + "printedName": "VideoSDKRTC.NoopLogRecordProcessor", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC04noopdeF0ACvpZ", + "mangledName": "$s11VideoSDKRTC22NoopLogRecordProcessorC04noopdeF0ACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopLogRecordProcessor", + "printedName": "VideoSDKRTC.NoopLogRecordProcessor", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC04noopdeF0ACvgZ", + "mangledName": "$s11VideoSDKRTC22NoopLogRecordProcessorC04noopdeF0ACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "onEmit", + "printedName": "onEmit(logRecord:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", + "mangledName": "$s11VideoSDKRTC22NoopLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC22NoopLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC22NoopLogRecordProcessorC8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC", + "mangledName": "$s11VideoSDKRTC22NoopLogRecordProcessorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordProcessor", + "printedName": "LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableDoubleCounter", + "printedName": "ObservableDoubleCounter", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC23ObservableDoubleCounterP", + "mangledName": "$s11VideoSDKRTC23ObservableDoubleCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableDoubleGauge", + "printedName": "ObservableDoubleGauge", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC21ObservableDoubleGaugeP", + "mangledName": "$s11VideoSDKRTC21ObservableDoubleGaugeP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableDoubleMeasurement", + "printedName": "ObservableDoubleMeasurement", + "children": [ + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP6record5valueySd_tF", + "mangledName": "$s11VideoSDKRTC27ObservableDoubleMeasurementP6record5valueySd_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ObservableDoubleMeasurement>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC27ObservableDoubleMeasurementP6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ObservableDoubleMeasurement>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP", + "mangledName": "$s11VideoSDKRTC27ObservableDoubleMeasurementP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableDoubleUpDownCounter", + "printedName": "ObservableDoubleUpDownCounter", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC29ObservableDoubleUpDownCounterP", + "mangledName": "$s11VideoSDKRTC29ObservableDoubleUpDownCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableInstrumentSdk", + "printedName": "ObservableInstrumentSdk", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC23ObservableInstrumentSdkV", + "mangledName": "$s11VideoSDKRTC23ObservableInstrumentSdkV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ObservableDoubleCounter", + "printedName": "ObservableDoubleCounter", + "usr": "s:11VideoSDKRTC23ObservableDoubleCounterP", + "mangledName": "$s11VideoSDKRTC23ObservableDoubleCounterP" + }, + { + "kind": "Conformance", + "name": "ObservableLongCounter", + "printedName": "ObservableLongCounter", + "usr": "s:11VideoSDKRTC21ObservableLongCounterP", + "mangledName": "$s11VideoSDKRTC21ObservableLongCounterP" + }, + { + "kind": "Conformance", + "name": "ObservableLongGauge", + "printedName": "ObservableLongGauge", + "usr": "s:11VideoSDKRTC19ObservableLongGaugeP", + "mangledName": "$s11VideoSDKRTC19ObservableLongGaugeP" + }, + { + "kind": "Conformance", + "name": "ObservableLongUpDownCounter", + "printedName": "ObservableLongUpDownCounter", + "usr": "s:11VideoSDKRTC27ObservableLongUpDownCounterP", + "mangledName": "$s11VideoSDKRTC27ObservableLongUpDownCounterP" + }, + { + "kind": "Conformance", + "name": "ObservableDoubleGauge", + "printedName": "ObservableDoubleGauge", + "usr": "s:11VideoSDKRTC21ObservableDoubleGaugeP", + "mangledName": "$s11VideoSDKRTC21ObservableDoubleGaugeP" + }, + { + "kind": "Conformance", + "name": "ObservableDoubleUpDownCounter", + "printedName": "ObservableDoubleUpDownCounter", + "usr": "s:11VideoSDKRTC29ObservableDoubleUpDownCounterP", + "mangledName": "$s11VideoSDKRTC29ObservableDoubleUpDownCounterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableLongCounter", + "printedName": "ObservableLongCounter", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC21ObservableLongCounterP", + "mangledName": "$s11VideoSDKRTC21ObservableLongCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableLongGauge", + "printedName": "ObservableLongGauge", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC19ObservableLongGaugeP", + "mangledName": "$s11VideoSDKRTC19ObservableLongGaugeP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableLongMeasurement", + "printedName": "ObservableLongMeasurement", + "children": [ + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP6record5valueySi_tF", + "mangledName": "$s11VideoSDKRTC25ObservableLongMeasurementP6record5valueySi_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ObservableLongMeasurement>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC25ObservableLongMeasurementP6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ObservableLongMeasurement>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP", + "mangledName": "$s11VideoSDKRTC25ObservableLongMeasurementP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableLongUpDownCounter", + "printedName": "ObservableLongUpDownCounter", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC27ObservableLongUpDownCounterP", + "mangledName": "$s11VideoSDKRTC27ObservableLongUpDownCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "defaultOltpHTTPMetricsEndpoint", + "printedName": "defaultOltpHTTPMetricsEndpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30defaultOltpHTTPMetricsEndpoint10Foundation3URLVyF", + "mangledName": "$s11VideoSDKRTC30defaultOltpHTTPMetricsEndpoint10Foundation3URLVyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "OtlpHttpMetricExporter", + "printedName": "OtlpHttpMetricExporter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(endpoint:useSession:authToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OtlpHttpMetricExporter", + "printedName": "VideoSDKRTC.OtlpHttpMetricExporter", + "usr": "s:11VideoSDKRTC22OtlpHttpMetricExporterC" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "hasDefaultArg": true, + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URLSession?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSession", + "printedName": "Foundation.URLSession", + "usr": "c:objc(cs)NSURLSession" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22OtlpHttpMetricExporterC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "mangledName": "$s11VideoSDKRTC22OtlpHttpMetricExporterC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "export", + "printedName": "export(metrics:shouldCancel:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> Swift.Bool)?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22OtlpHttpMetricExporterC6export7metrics12shouldCancelAA0eF10ResultCodeOSayAA0E0VG_SbycSgtF", + "mangledName": "$s11VideoSDKRTC22OtlpHttpMetricExporterC6export7metrics12shouldCancelAA0eF10ResultCodeOSayAA0E0VG_SbycSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22OtlpHttpMetricExporterC5flushAA0eF10ResultCodeOyF", + "mangledName": "$s11VideoSDKRTC22OtlpHttpMetricExporterC5flushAA0eF10ResultCodeOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC22OtlpHttpMetricExporterC", + "mangledName": "$s11VideoSDKRTC22OtlpHttpMetricExporterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.OtlpHttpExporterBase" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricExporter", + "printedName": "MetricExporter", + "usr": "s:11VideoSDKRTC14MetricExporterP", + "mangledName": "$s11VideoSDKRTC14MetricExporterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OpenTelemetry", + "printedName": "OpenTelemetry", + "children": [ + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV7versionSSvpZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV7versionSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV7versionSSvgZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV7versionSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV7versionSSvsZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV7versionSSvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV7versionSSvMZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV7versionSSvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetry", + "printedName": "VideoSDKRTC.OpenTelemetry", + "usr": "s:11VideoSDKRTC13OpenTelemetryV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetry", + "printedName": "VideoSDKRTC.OpenTelemetry", + "usr": "s:11VideoSDKRTC13OpenTelemetryV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OpenTelemetry", + "printedName": "VideoSDKRTC.OpenTelemetry", + "usr": "s:11VideoSDKRTC13OpenTelemetryV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV8instanceACvsZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV8instanceACvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV8instanceACvMZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV8instanceACvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tracerProvider", + "printedName": "tracerProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "TracerProvider", + "printedName": "VideoSDKRTC.TracerProvider", + "usr": "s:11VideoSDKRTC14TracerProviderP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV14tracerProviderAA06TracerF0_pvp", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV14tracerProviderAA06TracerF0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TracerProvider", + "printedName": "VideoSDKRTC.TracerProvider", + "usr": "s:11VideoSDKRTC14TracerProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV14tracerProviderAA06TracerF0_pvg", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV14tracerProviderAA06TracerF0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "meterProvider", + "printedName": "meterProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV13meterProviderAA05MeterF0_pvp", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV13meterProviderAA05MeterF0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV13meterProviderAA05MeterF0_pvg", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV13meterProviderAA05MeterF0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stableMeterProvider", + "printedName": "stableMeterProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.StableMeterProvider?", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeterProvider", + "printedName": "VideoSDKRTC.StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV19stableMeterProviderAA06StablefG0_pSgvp", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV19stableMeterProviderAA06StablefG0_pSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.StableMeterProvider?", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeterProvider", + "printedName": "VideoSDKRTC.StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV19stableMeterProviderAA06StablefG0_pSgvg", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV19stableMeterProviderAA06StablefG0_pSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "loggerProvider", + "printedName": "loggerProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerProvider", + "printedName": "VideoSDKRTC.LoggerProvider", + "usr": "s:11VideoSDKRTC14LoggerProviderP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV14loggerProviderAA06LoggerF0_pvp", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV14loggerProviderAA06LoggerF0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerProvider", + "printedName": "VideoSDKRTC.LoggerProvider", + "usr": "s:11VideoSDKRTC14LoggerProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV14loggerProviderAA06LoggerF0_pvg", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV14loggerProviderAA06LoggerF0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "baggageManager", + "printedName": "baggageManager", + "children": [ + { + "kind": "TypeNominal", + "name": "BaggageManager", + "printedName": "VideoSDKRTC.BaggageManager", + "usr": "s:11VideoSDKRTC14BaggageManagerP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV14baggageManagerAA07BaggageF0_pvp", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV14baggageManagerAA07BaggageF0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BaggageManager", + "printedName": "VideoSDKRTC.BaggageManager", + "usr": "s:11VideoSDKRTC14BaggageManagerP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV14baggageManagerAA07BaggageF0_pvg", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV14baggageManagerAA07BaggageF0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "propagators", + "printedName": "propagators", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextPropagators", + "printedName": "VideoSDKRTC.ContextPropagators", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV11propagatorsAA18ContextPropagators_pvp", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV11propagatorsAA18ContextPropagators_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextPropagators", + "printedName": "VideoSDKRTC.ContextPropagators", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV11propagatorsAA18ContextPropagators_pvg", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV11propagatorsAA18ContextPropagators_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "contextProvider", + "printedName": "contextProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextProvider", + "printedName": "VideoSDKRTC.OpenTelemetryContextProvider", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV15contextProviderAA0cd7ContextF0Vvp", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV15contextProviderAA0cd7ContextF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextProvider", + "printedName": "VideoSDKRTC.OpenTelemetryContextProvider", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV15contextProviderAA0cd7ContextF0Vvg", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV15contextProviderAA0cd7ContextF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "registerStableMeterProvider", + "printedName": "registerStableMeterProvider(meterProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "StableMeterProvider", + "printedName": "VideoSDKRTC.StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13OpenTelemetryV27registerStableMeterProvider05meterH0yAA0fgH0_p_tFZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV27registerStableMeterProvider05meterH0yAA0fgH0_p_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerTracerProvider", + "printedName": "registerTracerProvider(tracerProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TracerProvider", + "printedName": "VideoSDKRTC.TracerProvider", + "usr": "s:11VideoSDKRTC14TracerProviderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13OpenTelemetryV22registerTracerProvider06tracerG0yAA0fG0_p_tFZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV22registerTracerProvider06tracerG0yAA0fG0_p_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerMeterProvider", + "printedName": "registerMeterProvider(meterProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13OpenTelemetryV21registerMeterProvider05meterG0yAA0fG0_p_tFZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV21registerMeterProvider05meterG0yAA0fG0_p_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerLoggerProvider", + "printedName": "registerLoggerProvider(loggerProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoggerProvider", + "printedName": "VideoSDKRTC.LoggerProvider", + "usr": "s:11VideoSDKRTC14LoggerProviderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13OpenTelemetryV22registerLoggerProvider06loggerG0yAA0fG0_p_tFZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV22registerLoggerProvider06loggerG0yAA0fG0_p_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerBaggageManager", + "printedName": "registerBaggageManager(baggageManager:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BaggageManager", + "printedName": "VideoSDKRTC.BaggageManager", + "usr": "s:11VideoSDKRTC14BaggageManagerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13OpenTelemetryV22registerBaggageManager07baggageG0yAA0fG0_p_tFZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV22registerBaggageManager07baggageG0yAA0fG0_p_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerPropagators", + "printedName": "registerPropagators(textPropagators:baggagePropagator:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.TextMapPropagator]", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "TextMapBaggagePropagator", + "printedName": "VideoSDKRTC.TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13OpenTelemetryV19registerPropagators04textF017baggagePropagatorySayAA07TextMapI0_pG_AA0jk7BaggageI0_ptFZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV19registerPropagators04textF017baggagePropagatorySayAA07TextMapI0_pG_AA0jk7BaggageI0_ptFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerContextManager", + "printedName": "registerContextManager(contextManager:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ContextManager", + "printedName": "VideoSDKRTC.ContextManager", + "usr": "s:11VideoSDKRTC14ContextManagerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13OpenTelemetryV22registerContextManager07contextG0yAA0fG0_p_tFZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV22registerContextManager07contextG0yAA0fG0_p_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13OpenTelemetryV", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "os.activity", + "printedName": "os.activity", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "OpenTelemetryContextKeys", + "printedName": "OpenTelemetryContextKeys", + "children": [ + { + "kind": "Var", + "name": "span", + "printedName": "span", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.OpenTelemetryContextKeys.Type) -> VideoSDKRTC.OpenTelemetryContextKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO4spanyA2CmF", + "mangledName": "$s11VideoSDKRTC24OpenTelemetryContextKeysO4spanyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "baggage", + "printedName": "baggage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.OpenTelemetryContextKeys.Type) -> VideoSDKRTC.OpenTelemetryContextKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO7baggageyA2CmF", + "mangledName": "$s11VideoSDKRTC24OpenTelemetryContextKeysO7baggageyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC24OpenTelemetryContextKeysO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC24OpenTelemetryContextKeysO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC24OpenTelemetryContextKeysO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO", + "mangledName": "$s11VideoSDKRTC24OpenTelemetryContextKeysO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OpenTelemetryContextProvider", + "printedName": "OpenTelemetryContextProvider", + "children": [ + { + "kind": "Var", + "name": "activeSpan", + "printedName": "activeSpan", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Span?", + "children": [ + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV10activeSpanAA0H0_pSgvp", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV10activeSpanAA0H0_pSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Span?", + "children": [ + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV10activeSpanAA0H0_pSgvg", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV10activeSpanAA0H0_pSgvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "activeBaggage", + "printedName": "activeBaggage", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Baggage?", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV13activeBaggageAA0H0_pSgvp", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV13activeBaggageAA0H0_pSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Baggage?", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV13activeBaggageAA0H0_pSgvg", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV13activeBaggageAA0H0_pSgvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setActiveSpan", + "printedName": "setActiveSpan(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV13setActiveSpanyyAA0I0_pF", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV13setActiveSpanyyAA0I0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setActiveBaggage", + "printedName": "setActiveBaggage(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV16setActiveBaggageyyAA0I0_pF", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV16setActiveBaggageyyAA0I0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeContextForSpan", + "printedName": "removeContextForSpan(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV06removeE7ForSpanyyAA0I0_pF", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV06removeE7ForSpanyyAA0I0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeContextForBaggage", + "printedName": "removeContextForBaggage(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV06removeE10ForBaggageyyAA0I0_pF", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV06removeE10ForBaggageyyAA0I0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OtlpConfiguration", + "printedName": "OtlpConfiguration", + "children": [ + { + "kind": "Var", + "name": "DefaultTimeoutInterval", + "printedName": "DefaultTimeoutInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV22DefaultTimeoutIntervalSdvpZ", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV22DefaultTimeoutIntervalSdvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV22DefaultTimeoutIntervalSdvgZ", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV22DefaultTimeoutIntervalSdvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "headers", + "printedName": "headers", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[(Swift.String, Swift.String)]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.String, Swift.String)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV7headersSaySS_SStGSgvp", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV7headersSaySS_SStGSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[(Swift.String, Swift.String)]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.String, Swift.String)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV7headersSaySS_SStGSgvg", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV7headersSaySS_SStGSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeout", + "printedName": "timeout", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV7timeoutSdvp", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV7timeoutSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV7timeoutSdvg", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV7timeoutSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(timeout:headers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OtlpConfiguration", + "printedName": "VideoSDKRTC.OtlpConfiguration", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[(Swift.String, Swift.String)]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.String, Swift.String)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV7timeout7headersACSd_SaySS_SStGSgtcfc", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV7timeout7headersACSd_SaySS_SStGSgtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OtlpHttpExporterBase", + "printedName": "OtlpHttpExporterBase", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(endpoint:useSession:authToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OtlpHttpExporterBase", + "printedName": "VideoSDKRTC.OtlpHttpExporterBase", + "usr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URLSession?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSession", + "printedName": "Foundation.URLSession", + "usr": "c:objc(cs)NSURLSession" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "mangledName": "$s11VideoSDKRTC20OtlpHttpExporterBaseC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "createRequest", + "printedName": "createRequest(body:endpoint:authToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC13createRequest4body8endpoint9authToken10Foundation10URLRequestVAA7Message_p_AH3URLVSStF", + "mangledName": "$s11VideoSDKRTC20OtlpHttpExporterBaseC13createRequest4body8endpoint9authToken10Foundation10URLRequestVAA7Message_p_AH3URLVSStF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC8shutdownyyF", + "mangledName": "$s11VideoSDKRTC20OtlpHttpExporterBaseC8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC", + "mangledName": "$s11VideoSDKRTC20OtlpHttpExporterBaseC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "defaultOltpHttpLoggingEndpoint", + "printedName": "defaultOltpHttpLoggingEndpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30defaultOltpHttpLoggingEndpoint10Foundation3URLVyF", + "mangledName": "$s11VideoSDKRTC30defaultOltpHttpLoggingEndpoint10Foundation3URLVyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "OtlpHttpLogExporter", + "printedName": "OtlpHttpLogExporter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(endpoint:useSession:authToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OtlpHttpLogExporter", + "printedName": "VideoSDKRTC.OtlpHttpLogExporter", + "usr": "s:11VideoSDKRTC19OtlpHttpLogExporterC" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "hasDefaultArg": true, + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URLSession?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSession", + "printedName": "Foundation.URLSession", + "usr": "c:objc(cs)NSURLSession" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19OtlpHttpLogExporterC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "mangledName": "$s11VideoSDKRTC19OtlpHttpLogExporterC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "export", + "printedName": "export(logRecords:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19OtlpHttpLogExporterC6export10logRecordsAA12ExportResultOSayAA08ReadableE6RecordVG_tF", + "mangledName": "$s11VideoSDKRTC19OtlpHttpLogExporterC6export10logRecordsAA12ExportResultOSayAA08ReadableE6RecordVG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19OtlpHttpLogExporterC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC19OtlpHttpLogExporterC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19OtlpHttpLogExporterC5flushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC19OtlpHttpLogExporterC5flushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19OtlpHttpLogExporterC", + "mangledName": "$s11VideoSDKRTC19OtlpHttpLogExporterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.OtlpHttpExporterBase" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordExporter", + "printedName": "LogRecordExporter", + "usr": "s:11VideoSDKRTC17LogRecordExporterP", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "defaultOltpHttpTracesEndpoint", + "printedName": "defaultOltpHttpTracesEndpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29defaultOltpHttpTracesEndpoint10Foundation3URLVyF", + "mangledName": "$s11VideoSDKRTC29defaultOltpHttpTracesEndpoint10Foundation3URLVyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "OtlpHttpTraceExporter", + "printedName": "OtlpHttpTraceExporter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(endpoint:useSession:authToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OtlpHttpTraceExporter", + "printedName": "VideoSDKRTC.OtlpHttpTraceExporter", + "usr": "s:11VideoSDKRTC21OtlpHttpTraceExporterC" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "hasDefaultArg": true, + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URLSession?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSession", + "printedName": "Foundation.URLSession", + "usr": "c:objc(cs)NSURLSession" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21OtlpHttpTraceExporterC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "mangledName": "$s11VideoSDKRTC21OtlpHttpTraceExporterC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "export", + "printedName": "export(spans:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21OtlpHttpTraceExporterC6export5spansAA04SpanF10ResultCodeOSayAA0I4DataVG_tF", + "mangledName": "$s11VideoSDKRTC21OtlpHttpTraceExporterC6export5spansAA04SpanF10ResultCodeOSayAA0I4DataVG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21OtlpHttpTraceExporterC5flushAA04SpanF10ResultCodeOyF", + "mangledName": "$s11VideoSDKRTC21OtlpHttpTraceExporterC5flushAA04SpanF10ResultCodeOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21OtlpHttpTraceExporterC", + "mangledName": "$s11VideoSDKRTC21OtlpHttpTraceExporterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.OtlpHttpExporterBase" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SpanExporter", + "printedName": "SpanExporter", + "usr": "s:11VideoSDKRTC12SpanExporterP", + "mangledName": "$s11VideoSDKRTC12SpanExporterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OtlpSpan", + "printedName": "OtlpSpan", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OtlpSpan", + "printedName": "VideoSDKRTC.OtlpSpan", + "usr": "s:11VideoSDKRTC8OtlpSpanV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8OtlpSpanV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC8OtlpSpanV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8OtlpSpanV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC8OtlpSpanV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC8OtlpSpanV", + "mangledName": "$s11VideoSDKRTC8OtlpSpanV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Attribute", + "printedName": "Attribute", + "children": [ + { + "kind": "TypeDecl", + "name": "Value", + "printedName": "Value", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Value", + "printedName": "VideoSDKRTC.Attribute.Value", + "usr": "s:11VideoSDKRTC9AttributeV5ValueV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC9AttributeV5ValueV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC9AttributeV5ValueV4fromAEs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9AttributeV5ValueV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC9AttributeV5ValueV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC9AttributeV5ValueV", + "mangledName": "$s11VideoSDKRTC9AttributeV5ValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Attribute", + "printedName": "VideoSDKRTC.Attribute", + "usr": "s:11VideoSDKRTC9AttributeV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC9AttributeV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC9AttributeV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9AttributeV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC9AttributeV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC9AttributeV", + "mangledName": "$s11VideoSDKRTC9AttributeV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OTPCConstants", + "printedName": "OTPCConstants", + "children": [ + { + "kind": "TypeDecl", + "name": "HTTP", + "printedName": "HTTP", + "children": [ + { + "kind": "Var", + "name": "userAgent", + "printedName": "userAgent", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OTPCConstantsO4HTTPO9userAgentSSvpZ", + "mangledName": "$s11VideoSDKRTC13OTPCConstantsO4HTTPO9userAgentSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OTPCConstantsO4HTTPO9userAgentSSvgZ", + "mangledName": "$s11VideoSDKRTC13OTPCConstantsO4HTTPO9userAgentSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC13OTPCConstantsO4HTTPO", + "mangledName": "$s11VideoSDKRTC13OTPCConstantsO4HTTPO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC13OTPCConstantsO", + "mangledName": "$s11VideoSDKRTC13OTPCConstantsO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Participant", + "printedName": "Participant", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ParticipantC2idSSvp", + "mangledName": "$s11VideoSDKRTC11ParticipantC2idSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC2idSSvg", + "mangledName": "$s11VideoSDKRTC11ParticipantC2idSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ParticipantC11displayNameSSvp", + "mangledName": "$s11VideoSDKRTC11ParticipantC11displayNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC11displayNameSSvg", + "mangledName": "$s11VideoSDKRTC11ParticipantC11displayNameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "videoQuality", + "printedName": "videoQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovp", + "mangledName": "$s11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovg", + "mangledName": "$s11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isLocal", + "printedName": "isLocal", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ParticipantC7isLocalSbvp", + "mangledName": "$s11VideoSDKRTC11ParticipantC7isLocalSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC7isLocalSbvg", + "mangledName": "$s11VideoSDKRTC11ParticipantC7isLocalSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "streams", + "printedName": "streams", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.MediaStream]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvp", + "mangledName": "$s11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.MediaStream]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvg", + "mangledName": "$s11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pinState", + "printedName": "pinState", + "children": [ + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0Vvp", + "mangledName": "$s11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0Vvg", + "mangledName": "$s11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0Vvs", + "mangledName": "$s11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0VvM", + "mangledName": "$s11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ParticipantC4modeAA4ModeOvp", + "mangledName": "$s11VideoSDKRTC11ParticipantC4modeAA4ModeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC4modeAA4ModeOvg", + "mangledName": "$s11VideoSDKRTC11ParticipantC4modeAA4ModeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC4modeAA4ModeOvs", + "mangledName": "$s11VideoSDKRTC11ParticipantC4modeAA4ModeOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC4modeAA4ModeOvM", + "mangledName": "$s11VideoSDKRTC11ParticipantC4modeAA4ModeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enableMic", + "printedName": "enableMic()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC9enableMicyyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC9enableMicyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableMic", + "printedName": "disableMic()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC10disableMicyyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC10disableMicyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enableWebcam", + "printedName": "enableWebcam()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC12enableWebcamyyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC12enableWebcamyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableWebcam", + "printedName": "disableWebcam()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC13disableWebcamyyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC13disableWebcamyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "remove", + "printedName": "remove()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC6removeyyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC6removeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "participantPinStateChanged", + "printedName": "participantPinStateChanged(pinState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC26participantPinStateChanged03pinF0yAA0ceF0V_tF", + "mangledName": "$s11VideoSDKRTC11ParticipantC26participantPinStateChanged03pinF0yAA0ceF0V_tF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "participantModeChanged", + "printedName": "participantModeChanged(mode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC22participantModeChanged4modeyAA0E0O_tF", + "mangledName": "$s11VideoSDKRTC11ParticipantC22participantModeChanged4modeyAA0E0O_tF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAudioStats", + "printedName": "getAudioStats()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC13getAudioStatsSDySSypGSgyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC13getAudioStatsSDySSypGSgyF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getVideoStats", + "printedName": "getVideoStats()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC03getA5StatsSDySSypGSgyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC03getA5StatsSDySSypGSgyF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addStream", + "printedName": "addStream(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC9addStreamyyAA05MediaE0CF", + "mangledName": "$s11VideoSDKRTC11ParticipantC9addStreamyyAA05MediaE0CF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeStream", + "printedName": "removeStream(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.MediaStream?", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC12removeStreamyAA05MediaE0CSgSSF", + "mangledName": "$s11VideoSDKRTC11ParticipantC12removeStreamyAA05MediaE0CSgSSF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeAllStreams", + "printedName": "removeAllStreams()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC16removeAllStreamsyyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC16removeAllStreamsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setQuality", + "printedName": "setQuality(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC10setQualityyyAA0aE0OF", + "mangledName": "$s11VideoSDKRTC11ParticipantC10setQualityyyAA0aE0OF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pin", + "printedName": "pin(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC3pinyySS_AA7PinTypeOtF", + "mangledName": "$s11VideoSDKRTC11ParticipantC3pinyySS_AA7PinTypeOtF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unpin", + "printedName": "unpin(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC5unpinyyAA7PinTypeOF", + "mangledName": "$s11VideoSDKRTC11ParticipantC5unpinyyAA7PinTypeOF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setPinState", + "printedName": "setPinState(pinState:peerId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC11setPinState03pinF06peerIdyAA0ceF0V_SStF", + "mangledName": "$s11VideoSDKRTC11ParticipantC11setPinState03pinF06peerIdyAA0ceF0V_SStF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEventListener", + "printedName": "addEventListener(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ParticipantEventListener", + "printedName": "VideoSDKRTC.ParticipantEventListener", + "usr": "s:11VideoSDKRTC24ParticipantEventListenerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC16addEventListeneryyAA0ceF0_pF", + "mangledName": "$s11VideoSDKRTC11ParticipantC16addEventListeneryyAA0ceF0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeEventListener", + "printedName": "removeEventListener(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ParticipantEventListener", + "printedName": "VideoSDKRTC.ParticipantEventListener", + "usr": "s:11VideoSDKRTC24ParticipantEventListenerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC19removeEventListeneryyAA0ceF0_pF", + "mangledName": "$s11VideoSDKRTC11ParticipantC19removeEventListeneryyAA0ceF0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC11ParticipantC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC11ParticipantC", + "mangledName": "$s11VideoSDKRTC11ParticipantC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ParticipantEventListener", + "printedName": "ParticipantEventListener", + "children": [ + { + "kind": "Function", + "name": "onStreamEnabled", + "printedName": "onStreamEnabled(_:forParticipant:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24ParticipantEventListenerP15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", + "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerP15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onStreamDisabled", + "printedName": "onStreamDisabled(_:forParticipant:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24ParticipantEventListenerP16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", + "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerP16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onStreamEnabled", + "printedName": "onStreamEnabled(_:forParticipant:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24ParticipantEventListenerPAAE15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", + "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerPAAE15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onStreamDisabled", + "printedName": "onStreamDisabled(_:forParticipant:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24ParticipantEventListenerPAAE16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", + "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerPAAE16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC24ParticipantEventListenerP", + "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PinType", + "printedName": "PinType", + "children": [ + { + "kind": "Var", + "name": "SHARE_AND_CAM", + "printedName": "SHARE_AND_CAM", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.PinType.Type) -> VideoSDKRTC.PinType", + "children": [ + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.PinType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC7PinTypeO13SHARE_AND_CAMyA2CmF", + "mangledName": "$s11VideoSDKRTC7PinTypeO13SHARE_AND_CAMyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "CAM", + "printedName": "CAM", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.PinType.Type) -> VideoSDKRTC.PinType", + "children": [ + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.PinType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC7PinTypeO3CAMyA2CmF", + "mangledName": "$s11VideoSDKRTC7PinTypeO3CAMyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "SHARE", + "printedName": "SHARE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.PinType.Type) -> VideoSDKRTC.PinType", + "children": [ + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.PinType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC7PinTypeO5SHAREyA2CmF", + "mangledName": "$s11VideoSDKRTC7PinTypeO5SHAREyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.PinType?", + "children": [ + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7PinTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC7PinTypeO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7PinTypeO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC7PinTypeO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7PinTypeO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC7PinTypeO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC7PinTypeO", + "mangledName": "$s11VideoSDKRTC7PinTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ParticipantPinState", + "printedName": "ParticipantPinState", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC19ParticipantPinStateV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC19ParticipantPinStateV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV", + "mangledName": "$s11VideoSDKRTC19ParticipantPinStateV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PointData", + "printedName": "PointData", + "children": [ + { + "kind": "Var", + "name": "startEpochNanos", + "printedName": "startEpochNanos", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64VvM", + "mangledName": "$s11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "endEpochNanos", + "printedName": "endEpochNanos", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64VvM", + "mangledName": "$s11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvs", + "mangledName": "$s11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvM", + "mangledName": "$s11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "exemplars", + "printedName": "exemplars", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ExemplarData]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvp", + "mangledName": "$s11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ExemplarData]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvg", + "mangledName": "$s11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ExemplarData]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvs", + "mangledName": "$s11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvM", + "mangledName": "$s11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "-", + "printedName": "-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9PointDataC1soiyACXDAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC9PointDataC1soiyACXDAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9PointDataC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC9PointDataC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC9PointDataC", + "mangledName": "$s11VideoSDKRTC9PointDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufAPIVersion_3", + "printedName": "ProtobufAPIVersion_3", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC20ProtobufAPIVersion_3P", + "mangledName": "$s11VideoSDKRTC20ProtobufAPIVersion_3P", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufAPIVersionCheck", + "printedName": "ProtobufAPIVersionCheck", + "children": [ + { + "kind": "AssociatedType", + "name": "Version", + "printedName": "Version", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC23ProtobufAPIVersionCheckP7VersionQa", + "mangledName": "$s11VideoSDKRTC23ProtobufAPIVersionCheckP7VersionQa", + "moduleName": "VideoSDKRTC", + "protocolReq": true + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC23ProtobufAPIVersionCheckP", + "mangledName": "$s11VideoSDKRTC23ProtobufAPIVersionCheckP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0.Version : VideoSDKRTC.ProtobufAPIVersion_3>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_ProtobufMap", + "printedName": "_ProtobufMap", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC12_ProtobufMapV", + "mangledName": "$s11VideoSDKRTC12_ProtobufMapV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.MapKeyType, τ_0_1 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_ProtobufMessageMap", + "printedName": "_ProtobufMessageMap", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19_ProtobufMessageMapV", + "mangledName": "$s11VideoSDKRTC19_ProtobufMessageMapV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.MapKeyType, τ_0_1 : Swift.Hashable, τ_0_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_ProtobufEnumMap", + "printedName": "_ProtobufEnumMap", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16_ProtobufEnumMapV", + "mangledName": "$s11VideoSDKRTC16_ProtobufEnumMapV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.MapKeyType, τ_0_1 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "children": [ + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP17_protobuf_nameMapAA01_dH0VvpZ", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP17_protobuf_nameMapAA01_dH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP17_protobuf_nameMapAA01_dH0VvgZ", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP17_protobuf_nameMapAA01_dH0VvgZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC._ProtoNameProviding>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProxyMeter", + "printedName": "ProxyMeter", + "children": [ + { + "kind": "Function", + "name": "createRawDoubleCounter", + "printedName": "createRawDoubleCounter(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawCounterMetric", + "printedName": "VideoSDKRTC.AnyRawCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV22createRawDoubleCounter4nameAA03AnyfH6MetricVySdGSS_tF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV22createRawDoubleCounter4nameAA03AnyfH6MetricVySdGSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRawIntCounter", + "printedName": "createRawIntCounter(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawCounterMetric", + "printedName": "VideoSDKRTC.AnyRawCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV19createRawIntCounter4nameAA03AnyfH6MetricVySiGSS_tF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV19createRawIntCounter4nameAA03AnyfH6MetricVySiGSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRawDoubleHistogram", + "printedName": "createRawDoubleHistogram(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawHistogramMetric", + "printedName": "VideoSDKRTC.AnyRawHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV24createRawDoubleHistogram4nameAA03AnyfH6MetricVySdGSS_tF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV24createRawDoubleHistogram4nameAA03AnyfH6MetricVySdGSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRawIntHistogram", + "printedName": "createRawIntHistogram(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawHistogramMetric", + "printedName": "VideoSDKRTC.AnyRawHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV21createRawIntHistogram4nameAA03AnyfH6MetricVySiGSS_tF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV21createRawIntHistogram4nameAA03AnyfH6MetricVySiGSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getLabelSet", + "printedName": "getLabelSet(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV11getLabelSet6labelsAA0fG0CSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV11getLabelSet6labelsAA0fG0CSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntCounter", + "printedName": "createIntCounter(name:monotonic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCounterMetric", + "printedName": "VideoSDKRTC.AnyCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC16AnyCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV16createIntCounter4name9monotonicAA03AnyG6MetricVySiGSS_SbtF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV16createIntCounter4name9monotonicAA03AnyG6MetricVySiGSS_SbtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleCounter", + "printedName": "createDoubleCounter(name:monotonic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCounterMetric", + "printedName": "VideoSDKRTC.AnyCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC16AnyCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV19createDoubleCounter4name9monotonicAA03AnyG6MetricVySdGSS_SbtF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV19createDoubleCounter4name9monotonicAA03AnyG6MetricVySdGSS_SbtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntMeasure", + "printedName": "createIntMeasure(name:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMeasureMetric", + "printedName": "VideoSDKRTC.AnyMeasureMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV16createIntMeasure4name8absoluteAA03AnyG6MetricVySiGSS_SbtF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV16createIntMeasure4name8absoluteAA03AnyG6MetricVySiGSS_SbtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleMeasure", + "printedName": "createDoubleMeasure(name:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMeasureMetric", + "printedName": "VideoSDKRTC.AnyMeasureMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV19createDoubleMeasure4name8absoluteAA03AnyG6MetricVySdGSS_SbtF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV19createDoubleMeasure4name8absoluteAA03AnyG6MetricVySdGSS_SbtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntHistogram", + "printedName": "createIntHistogram(name:explicitBoundaries:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyHistogramMetric", + "printedName": "VideoSDKRTC.AnyHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.Int]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV18createIntHistogram4name18explicitBoundaries8absoluteAA03AnyG6MetricVySiGSS_SaySiGSgSbtF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV18createIntHistogram4name18explicitBoundaries8absoluteAA03AnyG6MetricVySiGSS_SaySiGSgSbtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleHistogram", + "printedName": "createDoubleHistogram(name:explicitBoundaries:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyHistogramMetric", + "printedName": "VideoSDKRTC.AnyHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV21createDoubleHistogram4name18explicitBoundaries8absoluteAA03AnyG6MetricVySdGSS_SaySdGSgSbtF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV21createDoubleHistogram4name18explicitBoundaries8absoluteAA03AnyG6MetricVySdGSS_SaySdGSgSbtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntObservableGauge", + "printedName": "createIntObservableGauge(name:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.IntObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV24createIntObservableGauge4name8callbackAA0F14ObserverMetric_pSS_yAaG_pctF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV24createIntObservableGauge4name8callbackAA0F14ObserverMetric_pSS_yAaG_pctF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleObservableGauge", + "printedName": "createDoubleObservableGauge(name:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.DoubleObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV27createDoubleObservableGauge4name8callbackAA0F14ObserverMetric_pSS_yAaG_pctF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV27createDoubleObservableGauge4name8callbackAA0F14ObserverMetric_pSS_yAaG_pctF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntObserver", + "printedName": "createIntObserver(name:absolute:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.IntObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV17createIntObserver4name8absolute8callbackAA0fG6Metric_pSS_SbyAaH_pctF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV17createIntObserver4name8absolute8callbackAA0fG6Metric_pSS_SbyAaH_pctF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleObserver", + "printedName": "createDoubleObserver(name:absolute:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.DoubleObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV20createDoubleObserver4name8absolute8callbackAA0fG6Metric_pSS_SbyAaH_pctF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV20createDoubleObserver4name8absolute8callbackAA0fG6Metric_pSS_SbyAaH_pctF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC10ProxyMeterV", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Meter", + "printedName": "Meter", + "usr": "s:11VideoSDKRTC5MeterP", + "mangledName": "$s11VideoSDKRTC5MeterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PubSub", + "printedName": "PubSub", + "children": [ + { + "kind": "Function", + "name": "publish", + "printedName": "publish(topic:message:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6PubSubC7publish5topic7message7optionsySS_SSSDySSypGtF", + "mangledName": "$s11VideoSDKRTC6PubSubC7publish5topic7message7optionsySS_SSSDySSypGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "subscribe", + "printedName": "subscribe(topic:forListener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PubSubMessageListener", + "printedName": "VideoSDKRTC.PubSubMessageListener", + "usr": "s:11VideoSDKRTC21PubSubMessageListenerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6PubSubC9subscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", + "mangledName": "$s11VideoSDKRTC6PubSubC9subscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unsubscribe", + "printedName": "unsubscribe(topic:forListener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PubSubMessageListener", + "printedName": "VideoSDKRTC.PubSubMessageListener", + "usr": "s:11VideoSDKRTC21PubSubMessageListenerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6PubSubC11unsubscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", + "mangledName": "$s11VideoSDKRTC6PubSubC11unsubscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getMessagesForTopic", + "printedName": "getMessagesForTopic(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PubSubMessage]", + "children": [ + { + "kind": "TypeNominal", + "name": "PubSubMessage", + "printedName": "VideoSDKRTC.PubSubMessage", + "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6PubSubC19getMessagesForTopicySayAA0cD7MessageCGSSF", + "mangledName": "$s11VideoSDKRTC6PubSubC19getMessagesForTopicySayAA0cD7MessageCGSSF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC6PubSubC", + "mangledName": "$s11VideoSDKRTC6PubSubC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PubSubMessage", + "printedName": "PubSubMessage", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvp", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvg", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvs", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvM", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "topic", + "printedName": "topic", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvp", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvg", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvs", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvM", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvp", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvg", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvs", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvM", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "senderId", + "printedName": "senderId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvp", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvg", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvs", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvM", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "senderName", + "printedName": "senderName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvp", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvg", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvs", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvM", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvp", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvg", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvs", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvM", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "PubSubMessage", + "printedName": "VideoSDKRTC.PubSubMessage", + "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage" + } + ], + "declKind": "Constructor", + "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage(im)init", + "mangledName": "$s11VideoSDKRTC13PubSubMessageCACycfc", + "moduleName": "VideoSDKRTC", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PubSubMessageListener", + "printedName": "PubSubMessageListener", + "children": [ + { + "kind": "Function", + "name": "onMessageReceived", + "printedName": "onMessageReceived(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PubSubMessage", + "printedName": "VideoSDKRTC.PubSubMessage", + "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21PubSubMessageListenerP02onE8ReceivedyyAA0cdE0CF", + "mangledName": "$s11VideoSDKRTC21PubSubMessageListenerP02onE8ReceivedyyAA0cdE0CF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.PubSubMessageListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC21PubSubMessageListenerP", + "mangledName": "$s11VideoSDKRTC21PubSubMessageListenerP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "RandomIdGenerator", + "printedName": "RandomIdGenerator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "RandomIdGenerator", + "printedName": "VideoSDKRTC.RandomIdGenerator", + "usr": "s:11VideoSDKRTC17RandomIdGeneratorV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17RandomIdGeneratorVACycfc", + "mangledName": "$s11VideoSDKRTC17RandomIdGeneratorVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "generateSpanId", + "printedName": "generateSpanId()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17RandomIdGeneratorV012generateSpanD0AA0gD0VyF", + "mangledName": "$s11VideoSDKRTC17RandomIdGeneratorV012generateSpanD0AA0gD0VyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateTraceId", + "printedName": "generateTraceId()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17RandomIdGeneratorV013generateTraceD0AA0gD0VyF", + "mangledName": "$s11VideoSDKRTC17RandomIdGeneratorV013generateTraceD0AA0gD0VyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC17RandomIdGeneratorV", + "mangledName": "$s11VideoSDKRTC17RandomIdGeneratorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "IdGenerator", + "printedName": "IdGenerator", + "usr": "s:11VideoSDKRTC11IdGeneratorP", + "mangledName": "$s11VideoSDKRTC11IdGeneratorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "RawCounterMetric", + "printedName": "RawCounterMetric", + "children": [ + { + "kind": "AssociatedType", + "name": "T", + "printedName": "T", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC16RawCounterMetricP1TQa", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP1TQa", + "moduleName": "VideoSDKRTC", + "protocolReq": true + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(sum:startDate:endDate:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16RawCounterMetricP6record3sum9startDate03endI06labelsy1TQz_10Foundation0I0VAMSDyS2SGtF", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP6record3sum9startDate03endI06labelsy1TQz_10Foundation0I0VAMSDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawCounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(sum:startDate:endDate:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16RawCounterMetricP6record3sum9startDate03endI08labelsety1TQz_10Foundation0I0VAmA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP6record3sum9startDate03endI08labelsety1TQz_10Foundation0I0VAmA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawCounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawCounterMetric", + "printedName": "VideoSDKRTC.BoundRawCounterMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16RawCounterMetricP4bind8labelsetAA05BoundcdE0Cy1TQzGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP4bind8labelsetAA05BoundcdE0Cy1TQzGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawCounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawCounterMetric", + "printedName": "VideoSDKRTC.BoundRawCounterMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16RawCounterMetricP4bind6labelsAA05BoundcdE0Cy1TQzGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP4bind6labelsAA05BoundcdE0Cy1TQzGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawCounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC16RawCounterMetricP", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "AnyRawCounterMetric", + "printedName": "AnyRawCounterMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawCounterMetric", + "printedName": "VideoSDKRTC.AnyRawCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricVyACyxGqd__c1TQyd__RszAA0deF0Rd__lufc", + "mangledName": "$s11VideoSDKRTC19AnyRawCounterMetricVyACyxGqd__c1TQyd__RszAA0deF0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 == τ_1_0.T, τ_1_0 : VideoSDKRTC.RawCounterMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawCounterMetric", + "printedName": "VideoSDKRTC.BoundRawCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC19AnyRawCounterMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawCounterMetric", + "printedName": "VideoSDKRTC.BoundRawCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC19AnyRawCounterMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(sum:startDate:endDate:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV6record3sum9startDate03endJ08labelsetyx_10Foundation0J0VAkA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC19AnyRawCounterMetricV6record3sum9startDate03endJ08labelsetyx_10Foundation0J0VAkA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(sum:startDate:endDate:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV6record3sum9startDate03endJ06labelsyx_10Foundation0J0VAKSDyS2SGtF", + "mangledName": "$s11VideoSDKRTC19AnyRawCounterMetricV6record3sum9startDate03endJ06labelsyx_10Foundation0J0VAKSDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV", + "mangledName": "$s11VideoSDKRTC19AnyRawCounterMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "RawCounterMetric", + "printedName": "RawCounterMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC16RawCounterMetricP", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoopRawCounterMetric", + "printedName": "NoopRawCounterMetric", + "children": [ + { + "kind": "Function", + "name": "record", + "printedName": "record(sum:startDate:endDate:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20NoopRawCounterMetricV6record3sum9startDate03endJ06labelsyx_10Foundation0J0VAKSDyS2SGtF", + "mangledName": "$s11VideoSDKRTC20NoopRawCounterMetricV6record3sum9startDate03endJ06labelsyx_10Foundation0J0VAKSDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(sum:startDate:endDate:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20NoopRawCounterMetricV6record3sum9startDate03endJ08labelsetyx_10Foundation0J0VAkA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC20NoopRawCounterMetricV6record3sum9startDate03endJ08labelsetyx_10Foundation0J0VAkA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawCounterMetric", + "printedName": "VideoSDKRTC.BoundRawCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20NoopRawCounterMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC20NoopRawCounterMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawCounterMetric", + "printedName": "VideoSDKRTC.BoundRawCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20NoopRawCounterMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC20NoopRawCounterMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20NoopRawCounterMetricV", + "mangledName": "$s11VideoSDKRTC20NoopRawCounterMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "RawCounterMetric", + "printedName": "RawCounterMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC16RawCounterMetricP", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "RawHistogramMetric", + "printedName": "RawHistogramMetric", + "children": [ + { + "kind": "AssociatedType", + "name": "T", + "printedName": "T", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC18RawHistogramMetricP1TQa", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP1TQa", + "moduleName": "VideoSDKRTC", + "protocolReq": true + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawHistogramMetric", + "printedName": "VideoSDKRTC.BoundRawHistogramMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18RawHistogramMetricP4bind8labelsetAA05BoundcdE0Cy1TQzGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP4bind8labelsetAA05BoundcdE0Cy1TQzGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawHistogramMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawHistogramMetric", + "printedName": "VideoSDKRTC.BoundRawHistogramMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18RawHistogramMetricP4bind6labelsAA05BoundcdE0Cy1TQzGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP4bind6labelsAA05BoundcdE0Cy1TQzGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawHistogramMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(explicitBoundaries:counts:startDate:endDate:count:sum:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.T]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18RawHistogramMetricP6record18explicitBoundaries6counts9startDate03endK05count3sum8labelsetySay1TQzG_SaySiG10Foundation0K0VARSiAmA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP6record18explicitBoundaries6counts9startDate03endK05count3sum8labelsetySay1TQzG_SaySiG10Foundation0K0VARSiAmA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawHistogramMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(explicitBoundaries:counts:startDate:endDate:count:sum:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.T]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18RawHistogramMetricP6record18explicitBoundaries6counts9startDate03endK05count3sum6labelsySay1TQzG_SaySiG10Foundation0K0VARSiAMSDyS2SGtF", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP6record18explicitBoundaries6counts9startDate03endK05count3sum6labelsySay1TQzG_SaySiG10Foundation0K0VARSiAMSDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawHistogramMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC18RawHistogramMetricP", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AnyRawHistogramMetric", + "printedName": "AnyRawHistogramMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawHistogramMetric", + "printedName": "VideoSDKRTC.AnyRawHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricVyACyxGqd__c1TQyd__RszAA0deF0Rd__lufc", + "mangledName": "$s11VideoSDKRTC21AnyRawHistogramMetricVyACyxGqd__c1TQyd__RszAA0deF0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 == τ_1_0.T, τ_1_0 : VideoSDKRTC.RawHistogramMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawHistogramMetric", + "printedName": "VideoSDKRTC.BoundRawHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC21AnyRawHistogramMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawHistogramMetric", + "printedName": "VideoSDKRTC.BoundRawHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC21AnyRawHistogramMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(explicitBoundaries:counts:startDate:endDate:count:sum:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum6labelsySayxG_SaySiG10Foundation0L0VAPSixSDyS2SGtF", + "mangledName": "$s11VideoSDKRTC21AnyRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum6labelsySayxG_SaySiG10Foundation0L0VAPSixSDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(explicitBoundaries:counts:startDate:endDate:count:sum:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum8labelsetySayxG_SaySiG10Foundation0L0VAPSixAA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC21AnyRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum8labelsetySayxG_SaySiG10Foundation0L0VAPSixAA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV", + "mangledName": "$s11VideoSDKRTC21AnyRawHistogramMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "RawHistogramMetric", + "printedName": "RawHistogramMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC18RawHistogramMetricP", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoopRawHistogramMetric", + "printedName": "NoopRawHistogramMetric", + "children": [ + { + "kind": "Function", + "name": "record", + "printedName": "record(explicitBoundaries:counts:startDate:endDate:count:sum:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum8labelsetySayxG_SaySiG10Foundation0L0VAPSixAA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC22NoopRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum8labelsetySayxG_SaySiG10Foundation0L0VAPSixAA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(explicitBoundaries:counts:startDate:endDate:count:sum:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum6labelsySayxG_SaySiG10Foundation0L0VAPSixSDyS2SGtF", + "mangledName": "$s11VideoSDKRTC22NoopRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum6labelsySayxG_SaySiG10Foundation0L0VAPSixSDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopRawHistogramMetric", + "printedName": "VideoSDKRTC.NoopRawHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22NoopRawHistogramMetricV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22NoopRawHistogramMetricVACyxGycfc", + "mangledName": "$s11VideoSDKRTC22NoopRawHistogramMetricVACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawHistogramMetric", + "printedName": "VideoSDKRTC.BoundRawHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopRawHistogramMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC22NoopRawHistogramMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawHistogramMetric", + "printedName": "VideoSDKRTC.BoundRawHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopRawHistogramMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC22NoopRawHistogramMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22NoopRawHistogramMetricV", + "mangledName": "$s11VideoSDKRTC22NoopRawHistogramMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "RawHistogramMetric", + "printedName": "RawHistogramMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC18RawHistogramMetricP", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ReadableLogRecord", + "printedName": "ReadableLogRecord", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(resource:instrumentationScopeInfo:timestamp:observedTimestamp:spanContext:severity:body:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Severity?", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV8resource24instrumentationScopeInfo9timestamp17observedTimestamp11spanContext8severity4body10attributesAcA8ResourceV_AA015InstrumentationhI0V10Foundation4DateVARSgAA04SpanN0VSgAA8SeverityOSgSSSgSDySSAA14AttributeValueOGtcfc", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV8resource24instrumentationScopeInfo9timestamp17observedTimestamp11spanContext8severity4body10attributesAcA8ResourceV_AA015InstrumentationhI0V10Foundation4DateVARSgAA04SpanN0VSgAA8SeverityOSgSSSgSDySSAA14AttributeValueOGtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instrumentationScopeInfo", + "printedName": "instrumentationScopeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV24instrumentationScopeInfoAA015InstrumentationgH0Vvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV24instrumentationScopeInfoAA015InstrumentationgH0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV24instrumentationScopeInfoAA015InstrumentationgH0Vvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV24instrumentationScopeInfoAA015InstrumentationgH0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV9timestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV9timestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV9timestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV9timestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "observedTimestamp", + "printedName": "observedTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV17observedTimestamp10Foundation4DateVSgvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV17observedTimestamp10Foundation4DateVSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV17observedTimestamp10Foundation4DateVSgvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV17observedTimestamp10Foundation4DateVSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanContext", + "printedName": "spanContext", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV11spanContextAA04SpanG0VSgvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV11spanContextAA04SpanG0VSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV11spanContextAA04SpanG0VSgvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV11spanContextAA04SpanG0VSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "severity", + "printedName": "severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Severity?", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV8severityAA8SeverityOSgvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV8severityAA8SeverityOSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Severity?", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV8severityAA8SeverityOSgvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV8severityAA8SeverityOSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "body", + "printedName": "body", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV4bodySSSgvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV4bodySSSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV4bodySSSgvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV4bodySSSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ReadableSpan", + "printedName": "ReadableSpan", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ReadableSpanP4nameSSvp", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP4nameSSvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "overriding": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ReadableSpanP4nameSSvg", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP4nameSSvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReadableSpan>", + "sugared_genericSig": "", + "protocolReq": true, + "overriding": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ReadableSpanP4nameSSvs", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP4nameSSvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReadableSpan>", + "sugared_genericSig": "", + "protocolReq": true, + "overriding": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ReadableSpanP4nameSSvM", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP4nameSSvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReadableSpan>", + "sugared_genericSig": "", + "protocolReq": true, + "overriding": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "instrumentationScopeInfo", + "printedName": "instrumentationScopeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ReadableSpanP24instrumentationScopeInfoAA015InstrumentationfG0Vvp", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP24instrumentationScopeInfoAA015InstrumentationfG0Vvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ReadableSpanP24instrumentationScopeInfoAA015InstrumentationfG0Vvg", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP24instrumentationScopeInfoAA015InstrumentationfG0Vvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReadableSpan>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "toSpanData", + "printedName": "toSpanData()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ReadableSpanP02toD4DataAA0dF0VyF", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP02toD4DataAA0dF0VyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReadableSpan>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hasEnded", + "printedName": "hasEnded", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ReadableSpanP8hasEndedSbvp", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP8hasEndedSbvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ReadableSpanP8hasEndedSbvg", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP8hasEndedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReadableSpan>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "latency", + "printedName": "latency", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ReadableSpanP7latencySdvp", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP7latencySdvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ReadableSpanP7latencySdvg", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP7latencySdvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReadableSpan>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC12ReadableSpanP", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Span", + "printedName": "Span", + "usr": "s:11VideoSDKRTC4SpanP", + "mangledName": "$s11VideoSDKRTC4SpanP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "RecordEventsReadableSpan", + "printedName": "RecordEventsReadableSpan", + "children": [ + { + "kind": "Var", + "name": "isRecording", + "printedName": "isRecording", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvs", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvM", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvs", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvM", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "spanLimits", + "printedName": "spanLimits", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC10spanLimitsAA0fH0Vvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC10spanLimitsAA0fH0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC10spanLimitsAA0fH0Vvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC10spanLimitsAA0fH0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "context", + "printedName": "context", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC7contextAA0F7ContextVvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC7contextAA0F7ContextVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC7contextAA0F7ContextVvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC7contextAA0F7ContextVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "parentContext", + "printedName": "parentContext", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC13parentContextAA0fH0VSgvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC13parentContextAA0fH0VSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC13parentContextAA0fH0VSgvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC13parentContextAA0fH0VSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasRemoteParent", + "printedName": "hasRemoteParent", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC15hasRemoteParentSbvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC15hasRemoteParentSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC15hasRemoteParentSbvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC15hasRemoteParentSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanProcessor", + "printedName": "spanProcessor", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC13spanProcessorAA0fH0_pvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC13spanProcessorAA0fH0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC13spanProcessorAA0fH0_pvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC13spanProcessorAA0fH0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "links", + "printedName": "links", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC5linksSayAA0F4DataV4LinkVGvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC5linksSayAA0F4DataV4LinkVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC5linksSayAA0F4DataV4LinkVGvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC5linksSayAA0F4DataV4LinkVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalRecordedLinks", + "printedName": "totalRecordedLinks", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC18totalRecordedLinksSivp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC18totalRecordedLinksSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC18totalRecordedLinksSivg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC18totalRecordedLinksSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxNumberOfAttributes", + "printedName": "maxNumberOfAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC21maxNumberOfAttributesSivp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC21maxNumberOfAttributesSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC21maxNumberOfAttributesSivg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC21maxNumberOfAttributesSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxNumberOfAttributesPerEvent", + "printedName": "maxNumberOfAttributesPerEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC29maxNumberOfAttributesPerEventSivp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC29maxNumberOfAttributesPerEventSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC29maxNumberOfAttributesPerEventSivg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC29maxNumberOfAttributesPerEventSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC4kindAA0F4KindOvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC4kindAA0F4KindOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC4kindAA0F4KindOvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC4kindAA0F4KindOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "clock", + "printedName": "clock", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC5clockAA5Clock_pvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC5clockAA5Clock_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC5clockAA5Clock_pvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC5clockAA5Clock_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instrumentationScopeInfo", + "printedName": "instrumentationScopeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC24instrumentationScopeInfoAA015InstrumentationhI0Vvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC24instrumentationScopeInfoAA015InstrumentationhI0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC24instrumentationScopeInfoAA015InstrumentationhI0Vvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC24instrumentationScopeInfoAA015InstrumentationhI0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "startTime", + "printedName": "startTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC9startTime10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC9startTime10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC9startTime10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC9startTime10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "events", + "printedName": "events", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC6eventsAA17ArrayWithCapacityVyAA0F4DataV5EventVGvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC6eventsAA17ArrayWithCapacityVyAA0F4DataV5EventVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC6eventsAA17ArrayWithCapacityVyAA0F4DataV5EventVGvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC6eventsAA17ArrayWithCapacityVyAA0F4DataV5EventVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalAttributeCount", + "printedName": "totalAttributeCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC19totalAttributeCountSivp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC19totalAttributeCountSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC19totalAttributeCountSivg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC19totalAttributeCountSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalRecordedEvents", + "printedName": "totalRecordedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC013totalRecordedD0Sivp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC013totalRecordedD0Sivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC013totalRecordedD0Sivg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC013totalRecordedD0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvs", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvM", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "latency", + "printedName": "latency", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC7latencySdvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC7latencySdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC7latencySdvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC7latencySdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endTime", + "printedName": "endTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC7endTime10Foundation4DateVSgvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC7endTime10Foundation4DateVSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC7endTime10Foundation4DateVSgvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC7endTime10Foundation4DateVSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasEnded", + "printedName": "hasEnded", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8hasEndedSbvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8hasEndedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8hasEndedSbvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8hasEndedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "startSpan", + "printedName": "startSpan(context:name:instrumentationScopeInfo:kind:parentContext:hasRemoteParent:spanLimits:spanProcessor:clock:resource:attributes:links:totalRecordedLinks:startTime:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordEventsReadableSpan", + "printedName": "VideoSDKRTC.RecordEventsReadableSpan", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "AttributesDictionary", + "printedName": "VideoSDKRTC.AttributesDictionary", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC05startF07context4name24instrumentationScopeInfo4kind13parentContext15hasRemoteParent10spanLimits0S9Processor5clock8resource10attributes5links18totalRecordedLinks0G4TimeAcA0fO0V_SSAA015InstrumentationkL0VAA0F4KindOATSgSbAA0fT0VAA0fU0_pAA5Clock_pAA8ResourceVAA20AttributesDictionaryVSayAA0F4DataV4LinkVGSi10Foundation4DateVSgtFZ", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC05startF07context4name24instrumentationScopeInfo4kind13parentContext15hasRemoteParent10spanLimits0S9Processor5clock8resource10attributes5links18totalRecordedLinks0G4TimeAcA0fO0V_SSAA015InstrumentationkL0VAA0F4KindOATSgSbAA0fT0VAA0fU0_pAA5Clock_pAA8ResourceVAA20AttributesDictionaryVSayAA0F4DataV4LinkVGSi10Foundation4DateVSgtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toSpanData", + "printedName": "toSpanData()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC02toF4DataAA0fH0VyF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC02toF4DataAA0fH0VyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC12setAttribute3key5valueySS_AA0H5ValueOSgtF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC12setAttribute3key5valueySS_AA0H5ValueOSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4nameySS_tF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4nameySS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:timestamp:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4name9timestampySS_10Foundation4DateVtF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4name9timestampySS_10Foundation4DateVtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4name10attributesySS_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4name10attributesySS_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:attributes:timestamp:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4name10attributes9timestampySS_SDySSAA14AttributeValueOG10Foundation4DateVtF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4name10attributes9timestampySS_SDySSAA14AttributeValueOG10Foundation4DateVtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "end", + "printedName": "end()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC3endyyF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC3endyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "end", + "printedName": "end(time:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC3end4timey10Foundation4DateV_tF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC3end4timey10Foundation4DateV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ReadableSpan", + "printedName": "ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP" + }, + { + "kind": "Conformance", + "name": "Span", + "printedName": "Span", + "usr": "s:11VideoSDKRTC4SpanP", + "mangledName": "$s11VideoSDKRTC4SpanP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "RegisteredReader", + "printedName": "RegisteredReader", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16RegisteredReaderC2ids5Int32Vvp", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC2ids5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16RegisteredReaderC2ids5Int32Vvg", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC2ids5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "reader", + "printedName": "reader", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricReader", + "printedName": "VideoSDKRTC.StableMetricReader", + "usr": "s:11VideoSDKRTC18StableMetricReaderP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16RegisteredReaderC6readerAA012StableMetricD0_pvp", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC6readerAA012StableMetricD0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricReader", + "printedName": "VideoSDKRTC.StableMetricReader", + "usr": "s:11VideoSDKRTC18StableMetricReaderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16RegisteredReaderC6readerAA012StableMetricD0_pvg", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC6readerAA012StableMetricD0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "registry", + "printedName": "registry", + "children": [ + { + "kind": "TypeNominal", + "name": "StableViewRegistry", + "printedName": "VideoSDKRTC.StableViewRegistry", + "usr": "s:11VideoSDKRTC18StableViewRegistryC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16RegisteredReaderC8registryAA18StableViewRegistryCvp", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC8registryAA18StableViewRegistryCvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableViewRegistry", + "printedName": "VideoSDKRTC.StableViewRegistry", + "usr": "s:11VideoSDKRTC18StableViewRegistryC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16RegisteredReaderC8registryAA18StableViewRegistryCvg", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC8registryAA18StableViewRegistryCvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastCollectedEpochNanos", + "printedName": "lastCollectedEpochNanos", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64VvM", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16RegisteredReaderC4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "RegisteredReader", + "printedName": "VideoSDKRTC.RegisteredReader", + "usr": "s:11VideoSDKRTC16RegisteredReaderC" + }, + { + "kind": "TypeNominal", + "name": "RegisteredReader", + "printedName": "VideoSDKRTC.RegisteredReader", + "usr": "s:11VideoSDKRTC16RegisteredReaderC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16RegisteredReaderC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16RegisteredReaderC9hashValueSivp", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16RegisteredReaderC9hashValueSivg", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16RegisteredReaderC", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "RegisteredView", + "printedName": "RegisteredView", + "children": [ + { + "kind": "Var", + "name": "selector", + "printedName": "selector", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentSelector", + "printedName": "VideoSDKRTC.InstrumentSelector", + "usr": "s:11VideoSDKRTC18InstrumentSelectorC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14RegisteredViewC8selectorAA18InstrumentSelectorCvp", + "mangledName": "$s11VideoSDKRTC14RegisteredViewC8selectorAA18InstrumentSelectorCvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentSelector", + "printedName": "VideoSDKRTC.InstrumentSelector", + "usr": "s:11VideoSDKRTC18InstrumentSelectorC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14RegisteredViewC8selectorAA18InstrumentSelectorCvg", + "mangledName": "$s11VideoSDKRTC14RegisteredViewC8selectorAA18InstrumentSelectorCvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "view", + "printedName": "view", + "children": [ + { + "kind": "TypeNominal", + "name": "StableView", + "printedName": "VideoSDKRTC.StableView", + "usr": "s:11VideoSDKRTC10StableViewC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14RegisteredViewC4viewAA06StableD0Cvp", + "mangledName": "$s11VideoSDKRTC14RegisteredViewC4viewAA06StableD0Cvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableView", + "printedName": "VideoSDKRTC.StableView", + "usr": "s:11VideoSDKRTC10StableViewC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14RegisteredViewC4viewAA06StableD0Cvg", + "mangledName": "$s11VideoSDKRTC14RegisteredViewC4viewAA06StableD0Cvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributeProcessor", + "printedName": "attributeProcessor", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14RegisteredViewC18attributeProcessorAA09AttributeF0Cvp", + "mangledName": "$s11VideoSDKRTC14RegisteredViewC18attributeProcessorAA09AttributeF0Cvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14RegisteredViewC18attributeProcessorAA09AttributeF0Cvg", + "mangledName": "$s11VideoSDKRTC14RegisteredViewC18attributeProcessorAA09AttributeF0Cvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC14RegisteredViewC", + "mangledName": "$s11VideoSDKRTC14RegisteredViewC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ReservoirCell", + "printedName": "ReservoirCell", + "declKind": "Class", + "usr": "s:11VideoSDKRTC13ReservoirCellC", + "mangledName": "$s11VideoSDKRTC13ReservoirCellC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ReservoirCellSelector", + "printedName": "ReservoirCellSelector", + "children": [ + { + "kind": "Function", + "name": "reservoirCellIndex", + "printedName": "reservoirCellIndex(for:value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReservoirCell]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReservoirCell", + "printedName": "VideoSDKRTC.ReservoirCell", + "usr": "s:11VideoSDKRTC13ReservoirCellC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21ReservoirCellSelectorP09reservoirD5Index3for5value10attributesSiSayAA0cD0CG_SiSDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC21ReservoirCellSelectorP09reservoirD5Index3for5value10attributesSiSayAA0cD0CG_SiSDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReservoirCellSelector>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reservoirCellIndex", + "printedName": "reservoirCellIndex(for:value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReservoirCell]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReservoirCell", + "printedName": "VideoSDKRTC.ReservoirCell", + "usr": "s:11VideoSDKRTC13ReservoirCellC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21ReservoirCellSelectorP09reservoirD5Index3for5value10attributesSiSayAA0cD0CG_SdSDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC21ReservoirCellSelectorP09reservoirD5Index3for5value10attributesSiSayAA0cD0CG_SdSDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReservoirCellSelector>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21ReservoirCellSelectorP5resetyyF", + "mangledName": "$s11VideoSDKRTC21ReservoirCellSelectorP5resetyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReservoirCellSelector>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC21ReservoirCellSelectorP", + "mangledName": "$s11VideoSDKRTC21ReservoirCellSelectorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Resource", + "printedName": "Resource", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvs", + "mangledName": "$s11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvM", + "mangledName": "$s11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8ResourceVACycfc", + "mangledName": "$s11VideoSDKRTC8ResourceVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8ResourceV10attributesACSDySSAA14AttributeValueOG_tcfc", + "mangledName": "$s11VideoSDKRTC8ResourceV10attributesACSDySSAA14AttributeValueOG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "merge", + "printedName": "merge(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8ResourceV5merge5otheryAC_tF", + "mangledName": "$s11VideoSDKRTC8ResourceV5merge5otheryAC_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "merging", + "printedName": "merging(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8ResourceV7merging5otherA2C_tF", + "mangledName": "$s11VideoSDKRTC8ResourceV7merging5otherA2C_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8ResourceV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC8ResourceV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8ResourceV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC8ResourceV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8ResourceV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC8ResourceV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8ResourceV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC8ResourceV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8ResourceV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC8ResourceV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8ResourceV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC8ResourceV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC8ResourceV", + "mangledName": "$s11VideoSDKRTC8ResourceV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "Opentelemetry_Proto_Resource_V1_Resource", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedAttributesCount", + "printedName": "droppedAttributesCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0VACycfc", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0VACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V9hashValueSivp", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V9hashValueSivg", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ResourceAdapter", + "printedName": "ResourceAdapter", + "children": [ + { + "kind": "Function", + "name": "toProtoResource", + "printedName": "toProtoResource(resource:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ResourceAdapterV07toProtoC08resourceAA014Opentelemetry_f1_c4_V1_C0VAA0C0V_tFZ", + "mangledName": "$s11VideoSDKRTC15ResourceAdapterV07toProtoC08resourceAA014Opentelemetry_f1_c4_V1_C0VAA0C0V_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC15ResourceAdapterV", + "mangledName": "$s11VideoSDKRTC15ResourceAdapterV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ResourceAttributes", + "printedName": "ResourceAttributes", + "children": [ + { + "kind": "Var", + "name": "browserBrands", + "printedName": "browserBrands", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13browserBrandsyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13browserBrandsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "browserPlatform", + "printedName": "browserPlatform", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO15browserPlatformyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO15browserPlatformyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "browserMobile", + "printedName": "browserMobile", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13browserMobileyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13browserMobileyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "browserLanguage", + "printedName": "browserLanguage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO15browserLanguageyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO15browserLanguageyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userAgentOriginal", + "printedName": "userAgentOriginal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO17userAgentOriginalyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO17userAgentOriginalyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudProvider", + "printedName": "cloudProvider", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13cloudProvideryA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13cloudProvideryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudAccountId", + "printedName": "cloudAccountId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14cloudAccountIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14cloudAccountIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudRegion", + "printedName": "cloudRegion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO11cloudRegionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO11cloudRegionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudResourceId", + "printedName": "cloudResourceId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO05cloudC2IdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO05cloudC2IdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudAvailabilityZone", + "printedName": "cloudAvailabilityZone", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO21cloudAvailabilityZoneyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO21cloudAvailabilityZoneyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudPlatform", + "printedName": "cloudPlatform", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13cloudPlatformyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13cloudPlatformyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsEcsContainerArn", + "printedName": "awsEcsContainerArn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18awsEcsContainerArnyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18awsEcsContainerArnyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsEcsClusterArn", + "printedName": "awsEcsClusterArn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16awsEcsClusterArnyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16awsEcsClusterArnyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsEcsLaunchtype", + "printedName": "awsEcsLaunchtype", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16awsEcsLaunchtypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16awsEcsLaunchtypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsEcsTaskArn", + "printedName": "awsEcsTaskArn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13awsEcsTaskArnyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13awsEcsTaskArnyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsEcsTaskFamily", + "printedName": "awsEcsTaskFamily", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16awsEcsTaskFamilyyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16awsEcsTaskFamilyyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsEcsTaskRevision", + "printedName": "awsEcsTaskRevision", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18awsEcsTaskRevisionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18awsEcsTaskRevisionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsEksClusterArn", + "printedName": "awsEksClusterArn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16awsEksClusterArnyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16awsEksClusterArnyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsLogGroupNames", + "printedName": "awsLogGroupNames", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16awsLogGroupNamesyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16awsLogGroupNamesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsLogGroupArns", + "printedName": "awsLogGroupArns", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO15awsLogGroupArnsyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO15awsLogGroupArnsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsLogStreamNames", + "printedName": "awsLogStreamNames", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO17awsLogStreamNamesyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO17awsLogStreamNamesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsLogStreamArns", + "printedName": "awsLogStreamArns", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16awsLogStreamArnsyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16awsLogStreamArnsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "herokuReleaseCreationTimestamp", + "printedName": "herokuReleaseCreationTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO30herokuReleaseCreationTimestampyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO30herokuReleaseCreationTimestampyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "herokuReleaseCommit", + "printedName": "herokuReleaseCommit", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19herokuReleaseCommityA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19herokuReleaseCommityA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "herokuAppId", + "printedName": "herokuAppId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO11herokuAppIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO11herokuAppIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "containerName", + "printedName": "containerName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13containerNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13containerNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "containerId", + "printedName": "containerId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO11containerIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO11containerIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "containerRuntime", + "printedName": "containerRuntime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16containerRuntimeyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16containerRuntimeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "containerImageName", + "printedName": "containerImageName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18containerImageNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18containerImageNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "containerImageTag", + "printedName": "containerImageTag", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO17containerImageTagyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO17containerImageTagyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "deploymentEnvironment", + "printedName": "deploymentEnvironment", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO21deploymentEnvironmentyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO21deploymentEnvironmentyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "deviceId", + "printedName": "deviceId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8deviceIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8deviceIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "deviceModelIdentifier", + "printedName": "deviceModelIdentifier", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO21deviceModelIdentifieryA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO21deviceModelIdentifieryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "deviceModelName", + "printedName": "deviceModelName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO15deviceModelNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO15deviceModelNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "deviceManufacturer", + "printedName": "deviceManufacturer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18deviceManufactureryA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18deviceManufactureryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasName", + "printedName": "faasName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8faasNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8faasNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasVersion", + "printedName": "faasVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO11faasVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO11faasVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasInstance", + "printedName": "faasInstance", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12faasInstanceyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12faasInstanceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasMaxMemory", + "printedName": "faasMaxMemory", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13faasMaxMemoryyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13faasMaxMemoryyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hostId", + "printedName": "hostId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO6hostIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO6hostIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hostName", + "printedName": "hostName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8hostNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8hostNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hostType", + "printedName": "hostType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8hostTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8hostTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hostArch", + "printedName": "hostArch", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8hostArchyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8hostArchyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hostImageName", + "printedName": "hostImageName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13hostImageNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13hostImageNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hostImageId", + "printedName": "hostImageId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO11hostImageIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO11hostImageIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hostImageVersion", + "printedName": "hostImageVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16hostImageVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16hostImageVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sClusterName", + "printedName": "k8sClusterName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14k8sClusterNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14k8sClusterNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sNodeName", + "printedName": "k8sNodeName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO11k8sNodeNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO11k8sNodeNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sNodeUid", + "printedName": "k8sNodeUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO10k8sNodeUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO10k8sNodeUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sNamespaceName", + "printedName": "k8sNamespaceName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16k8sNamespaceNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16k8sNamespaceNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sPodUid", + "printedName": "k8sPodUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO9k8sPodUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO9k8sPodUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sPodName", + "printedName": "k8sPodName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO10k8sPodNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO10k8sPodNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sContainerName", + "printedName": "k8sContainerName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16k8sContainerNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16k8sContainerNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sContainerRestartCount", + "printedName": "k8sContainerRestartCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO24k8sContainerRestartCountyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO24k8sContainerRestartCountyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sReplicasetUid", + "printedName": "k8sReplicasetUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16k8sReplicasetUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16k8sReplicasetUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sReplicasetName", + "printedName": "k8sReplicasetName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO17k8sReplicasetNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO17k8sReplicasetNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sDeploymentUid", + "printedName": "k8sDeploymentUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16k8sDeploymentUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16k8sDeploymentUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sDeploymentName", + "printedName": "k8sDeploymentName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO17k8sDeploymentNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO17k8sDeploymentNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sStatefulsetUid", + "printedName": "k8sStatefulsetUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO17k8sStatefulsetUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO17k8sStatefulsetUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sStatefulsetName", + "printedName": "k8sStatefulsetName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18k8sStatefulsetNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18k8sStatefulsetNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sDaemonsetUid", + "printedName": "k8sDaemonsetUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO15k8sDaemonsetUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO15k8sDaemonsetUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sDaemonsetName", + "printedName": "k8sDaemonsetName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16k8sDaemonsetNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16k8sDaemonsetNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sJobUid", + "printedName": "k8sJobUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO9k8sJobUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO9k8sJobUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sJobName", + "printedName": "k8sJobName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO10k8sJobNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO10k8sJobNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sCronjobUid", + "printedName": "k8sCronjobUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13k8sCronjobUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13k8sCronjobUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sCronjobName", + "printedName": "k8sCronjobName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14k8sCronjobNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14k8sCronjobNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "osType", + "printedName": "osType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO6osTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO6osTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "osDescription", + "printedName": "osDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13osDescriptionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13osDescriptionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "osName", + "printedName": "osName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO6osNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO6osNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "osVersion", + "printedName": "osVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO9osVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO9osVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processPid", + "printedName": "processPid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO10processPidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO10processPidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processParentPid", + "printedName": "processParentPid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16processParentPidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16processParentPidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processExecutableName", + "printedName": "processExecutableName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO21processExecutableNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO21processExecutableNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processExecutablePath", + "printedName": "processExecutablePath", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO21processExecutablePathyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO21processExecutablePathyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processCommand", + "printedName": "processCommand", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14processCommandyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14processCommandyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processCommandLine", + "printedName": "processCommandLine", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18processCommandLineyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18processCommandLineyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processCommandArgs", + "printedName": "processCommandArgs", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18processCommandArgsyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18processCommandArgsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processOwner", + "printedName": "processOwner", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12processOwneryA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12processOwneryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processRuntimeName", + "printedName": "processRuntimeName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18processRuntimeNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18processRuntimeNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processRuntimeVersion", + "printedName": "processRuntimeVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO21processRuntimeVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO21processRuntimeVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processRuntimeDescription", + "printedName": "processRuntimeDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO25processRuntimeDescriptionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO25processRuntimeDescriptionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "serviceName", + "printedName": "serviceName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO11serviceNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO11serviceNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "serviceNamespace", + "printedName": "serviceNamespace", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16serviceNamespaceyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16serviceNamespaceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "serviceInstanceId", + "printedName": "serviceInstanceId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO17serviceInstanceIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO17serviceInstanceIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "serviceVersion", + "printedName": "serviceVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14serviceVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14serviceVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "telemetrySdkName", + "printedName": "telemetrySdkName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16telemetrySdkNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16telemetrySdkNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "telemetrySdkLanguage", + "printedName": "telemetrySdkLanguage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO20telemetrySdkLanguageyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO20telemetrySdkLanguageyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "telemetrySdkVersion", + "printedName": "telemetrySdkVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19telemetrySdkVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19telemetrySdkVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "telemetryAutoVersion", + "printedName": "telemetryAutoVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO20telemetryAutoVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO20telemetryAutoVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "webengineName", + "printedName": "webengineName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13webengineNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13webengineNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "webengineVersion", + "printedName": "webengineVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16webengineVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16webengineVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "webengineDescription", + "printedName": "webengineDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO20webengineDescriptionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO20webengineDescriptionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "otelScopeName", + "printedName": "otelScopeName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13otelScopeNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13otelScopeNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "otelScopeVersion", + "printedName": "otelScopeVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16otelScopeVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16otelScopeVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "otelLibraryName", + "printedName": "otelLibraryName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO15otelLibraryNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO15otelLibraryNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "otelLibraryVersion", + "printedName": "otelLibraryVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18otelLibraryVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18otelLibraryVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CloudProviderValues", + "printedName": "CloudProviderValues", + "children": [ + { + "kind": "Var", + "name": "alibabaCloud", + "printedName": "alibabaCloud", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07alibabaE0AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07alibabaE0AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07alibabaE0AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07alibabaE0AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aws", + "printedName": "aws", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3awsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3awsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3awsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3awsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azure", + "printedName": "azure", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV5azureAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV5azureAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV5azureAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV5azureAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcp", + "printedName": "gcp", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3gcpAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3gcpAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3gcpAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3gcpAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "heroku", + "printedName": "heroku", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV6herokuAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV6herokuAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV6herokuAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV6herokuAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ibmCloud", + "printedName": "ibmCloud", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV03ibmE0AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV03ibmE0AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV03ibmE0AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV03ibmE0AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tencentCloud", + "printedName": "tencentCloud", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07tencentE0AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07tencentE0AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07tencentE0AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07tencentE0AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CloudPlatformValues", + "printedName": "CloudPlatformValues", + "children": [ + { + "kind": "Var", + "name": "alibabaCloudEcs", + "printedName": "alibabaCloudEcs", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE3EcsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE3EcsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE3EcsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE3EcsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "alibabaCloudFc", + "printedName": "alibabaCloudFc", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE2FcAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE2FcAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE2FcAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE2FcAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "alibabaCloudOpenshift", + "printedName": "alibabaCloudOpenshift", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE9OpenshiftAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE9OpenshiftAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE9OpenshiftAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE9OpenshiftAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awsEc2", + "printedName": "awsEc2", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEc2AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEc2AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEc2AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEc2AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awsEcs", + "printedName": "awsEcs", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEcsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEcsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEcsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEcsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awsEks", + "printedName": "awsEks", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEksAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEksAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEksAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEksAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awsLambda", + "printedName": "awsLambda", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV9awsLambdaAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV9awsLambdaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV9awsLambdaAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV9awsLambdaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awsElasticBeanstalk", + "printedName": "awsElasticBeanstalk", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19awsElasticBeanstalkAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19awsElasticBeanstalkAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19awsElasticBeanstalkAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19awsElasticBeanstalkAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awsAppRunner", + "printedName": "awsAppRunner", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsAppRunnerAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsAppRunnerAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsAppRunnerAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsAppRunnerAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awsOpenshift", + "printedName": "awsOpenshift", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsOpenshiftAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsOpenshiftAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsOpenshiftAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsOpenshiftAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azureVm", + "printedName": "azureVm", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV7azureVmAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV7azureVmAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV7azureVmAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV7azureVmAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azureContainerInstances", + "printedName": "azureContainerInstances", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV23azureContainerInstancesAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV23azureContainerInstancesAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV23azureContainerInstancesAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV23azureContainerInstancesAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azureAks", + "printedName": "azureAks", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV8azureAksAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV8azureAksAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV8azureAksAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV8azureAksAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azureFunctions", + "printedName": "azureFunctions", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureFunctionsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureFunctionsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureFunctionsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureFunctionsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azureAppService", + "printedName": "azureAppService", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV15azureAppServiceAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV15azureAppServiceAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV15azureAppServiceAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV15azureAppServiceAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azureOpenshift", + "printedName": "azureOpenshift", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureOpenshiftAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureOpenshiftAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureOpenshiftAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureOpenshiftAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcpComputeEngine", + "printedName": "gcpComputeEngine", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV16gcpComputeEngineAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV16gcpComputeEngineAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV16gcpComputeEngineAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV16gcpComputeEngineAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcpCloudRun", + "printedName": "gcpCloudRun", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE3RunAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE3RunAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE3RunAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE3RunAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcpKubernetesEngine", + "printedName": "gcpKubernetesEngine", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19gcpKubernetesEngineAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19gcpKubernetesEngineAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19gcpKubernetesEngineAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19gcpKubernetesEngineAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcpCloudFunctions", + "printedName": "gcpCloudFunctions", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE9FunctionsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE9FunctionsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE9FunctionsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE9FunctionsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcpAppEngine", + "printedName": "gcpAppEngine", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpAppEngineAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpAppEngineAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpAppEngineAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpAppEngineAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcpOpenshift", + "printedName": "gcpOpenshift", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpOpenshiftAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpOpenshiftAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpOpenshiftAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpOpenshiftAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ibmCloudOpenshift", + "printedName": "ibmCloudOpenshift", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03ibmE9OpenshiftAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03ibmE9OpenshiftAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03ibmE9OpenshiftAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03ibmE9OpenshiftAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tencentCloudCvm", + "printedName": "tencentCloudCvm", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3CvmAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3CvmAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3CvmAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3CvmAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tencentCloudEks", + "printedName": "tencentCloudEks", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3EksAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3EksAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3EksAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3EksAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tencentCloudScf", + "printedName": "tencentCloudScf", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3ScfAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3ScfAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3ScfAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3ScfAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AwsEcsLaunchtypeValues", + "printedName": "AwsEcsLaunchtypeValues", + "children": [ + { + "kind": "Var", + "name": "ec2", + "printedName": "ec2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues.Type) -> VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "AwsEcsLaunchtypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AwsEcsLaunchtypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO3ec2yA2EmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO3ec2yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fargate", + "printedName": "fargate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues.Type) -> VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "AwsEcsLaunchtypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AwsEcsLaunchtypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO7fargateyA2EmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO7fargateyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "AwsEcsLaunchtypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "HostArchValues", + "printedName": "HostArchValues", + "children": [ + { + "kind": "Var", + "name": "amd64", + "printedName": "amd64", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5amd64AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5amd64AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5amd64AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5amd64AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "arm32", + "printedName": "arm32", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm32AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm32AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm32AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm32AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "arm64", + "printedName": "arm64", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm64AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm64AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm64AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm64AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ia64", + "printedName": "ia64", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV4ia64AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV4ia64AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV4ia64AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV4ia64AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ppc32", + "printedName": "ppc32", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc32AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc32AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc32AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc32AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ppc64", + "printedName": "ppc64", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc64AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc64AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc64AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc64AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "s390x", + "printedName": "s390x", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5s390xAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5s390xAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5s390xAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5s390xAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "x86", + "printedName": "x86", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV3x86AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV3x86AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV3x86AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV3x86AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OsTypeValues", + "printedName": "OsTypeValues", + "children": [ + { + "kind": "Var", + "name": "windows", + "printedName": "windows", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7windowsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7windowsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7windowsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7windowsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "linux", + "printedName": "linux", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV5linuxAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV5linuxAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV5linuxAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV5linuxAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "darwin", + "printedName": "darwin", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6darwinAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6darwinAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6darwinAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6darwinAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "freebsd", + "printedName": "freebsd", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7freebsdAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7freebsdAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7freebsdAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7freebsdAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "netbsd", + "printedName": "netbsd", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6netbsdAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6netbsdAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6netbsdAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6netbsdAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "openbsd", + "printedName": "openbsd", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7openbsdAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7openbsdAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7openbsdAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7openbsdAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dragonflybsd", + "printedName": "dragonflybsd", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV12dragonflybsdAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV12dragonflybsdAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV12dragonflybsdAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV12dragonflybsdAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hpux", + "printedName": "hpux", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV4hpuxAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV4hpuxAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV4hpuxAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV4hpuxAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aix", + "printedName": "aix", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV3aixAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV3aixAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV3aixAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV3aixAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "solaris", + "printedName": "solaris", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7solarisAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7solarisAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7solarisAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7solarisAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "zOs", + "printedName": "zOs", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV01zE0AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV01zE0AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV01zE0AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV01zE0AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TelemetrySdkLanguageValues", + "printedName": "TelemetrySdkLanguageValues", + "children": [ + { + "kind": "Var", + "name": "cpp", + "printedName": "cpp", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3cppAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3cppAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3cppAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3cppAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dotnet", + "printedName": "dotnet", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6dotnetAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6dotnetAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6dotnetAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6dotnetAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "erlang", + "printedName": "erlang", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6erlangAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6erlangAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6erlangAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6erlangAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "go", + "printedName": "go", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV2goAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV2goAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV2goAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV2goAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "java", + "printedName": "java", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4javaAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4javaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4javaAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4javaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nodejs", + "printedName": "nodejs", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6nodejsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6nodejsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6nodejsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6nodejsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "php", + "printedName": "php", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3phpAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3phpAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3phpAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3phpAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "python", + "printedName": "python", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6pythonAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6pythonAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6pythonAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6pythonAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ruby", + "printedName": "ruby", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4rubyAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4rubyAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4rubyAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4rubyAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "webjs", + "printedName": "webjs", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5webjsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5webjsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5webjsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5webjsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "swift", + "printedName": "swift", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5swiftAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5swiftAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5swiftAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5swiftAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ResourceAttributes?", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18ResourceAttributesO", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC2eeoiySbAA18ResourceAttributesO_SStF", + "mangledName": "$s11VideoSDKRTC2eeoiySbAA18ResourceAttributesO_SStF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC2eeoiySbSS_AA18ResourceAttributesOtF", + "mangledName": "$s11VideoSDKRTC2eeoiySbSS_AA18ResourceAttributesOtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Mediasoup", + "printedName": "Mediasoup", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Mediasoup", + "printedName": "Mediasoup", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Sampler", + "printedName": "Sampler", + "children": [ + { + "kind": "Function", + "name": "shouldSample", + "printedName": "shouldSample(parentContext:traceId:name:kind:attributes:parentLinks:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Decision", + "printedName": "VideoSDKRTC.Decision", + "usr": "s:11VideoSDKRTC8DecisionP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7SamplerP12shouldSample13parentContext7traceId4name4kind10attributes0F5LinksAA8Decision_pAA04SpanG0VSg_AA05TraceI0VSSAA0O4KindOSDySSAA14AttributeValueOGSayAA0O4DataV4LinkVGtF", + "mangledName": "$s11VideoSDKRTC7SamplerP12shouldSample13parentContext7traceId4name4kind10attributes0F5LinksAA8Decision_pAA04SpanG0VSg_AA05TraceI0VSSAA0O4KindOSDySSAA14AttributeValueOGSayAA0O4DataV4LinkVGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Sampler>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC7SamplerP", + "mangledName": "$s11VideoSDKRTC7SamplerP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject, τ_0_0 : Swift.CustomStringConvertible>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Decision", + "printedName": "Decision", + "children": [ + { + "kind": "Var", + "name": "isSampled", + "printedName": "isSampled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8DecisionP9isSampledSbvp", + "mangledName": "$s11VideoSDKRTC8DecisionP9isSampledSbvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8DecisionP9isSampledSbvg", + "mangledName": "$s11VideoSDKRTC8DecisionP9isSampledSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Decision>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8DecisionP10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC8DecisionP10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8DecisionP10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC8DecisionP10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Decision>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC8DecisionP", + "mangledName": "$s11VideoSDKRTC8DecisionP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Samplers", + "printedName": "Samplers", + "children": [ + { + "kind": "Var", + "name": "alwaysOn", + "printedName": "alwaysOn", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvpZ", + "mangledName": "$s11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvgZ", + "mangledName": "$s11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvsZ", + "mangledName": "$s11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvMZ", + "mangledName": "$s11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "alwaysOff", + "printedName": "alwaysOff", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvpZ", + "mangledName": "$s11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvgZ", + "mangledName": "$s11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvsZ", + "mangledName": "$s11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvMZ", + "mangledName": "$s11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "traceIdRatio", + "printedName": "traceIdRatio(ratio:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SamplersO12traceIdRatio5ratioAA7Sampler_pSd_tFZ", + "mangledName": "$s11VideoSDKRTC8SamplersO12traceIdRatio5ratioAA7Sampler_pSd_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parentBased", + "printedName": "parentBased(root:remoteParentSampled:remoteParentNotSampled:localParentSampled:localParentNotSampled:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + }, + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Sampler?", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Sampler?", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Sampler?", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Sampler?", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SamplersO11parentBased4root19remoteParentSampled0gh3NotI005localhI00khjI0AA7Sampler_pAaJ_p_AaJ_pSgA3KtFZ", + "mangledName": "$s11VideoSDKRTC8SamplersO11parentBased4root19remoteParentSampled0gh3NotI005localhI00khjI0AA7Sampler_pAaJ_p_AaJ_pSgA3KtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC8SamplersO", + "mangledName": "$s11VideoSDKRTC8SamplersO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SemanticAttributes", + "printedName": "SemanticAttributes", + "children": [ + { + "kind": "Var", + "name": "exceptionType", + "printedName": "exceptionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO13exceptionTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO13exceptionTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "exceptionMessage", + "printedName": "exceptionMessage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16exceptionMessageyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16exceptionMessageyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "exceptionStacktrace", + "printedName": "exceptionStacktrace", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19exceptionStacktraceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19exceptionStacktraceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpMethod", + "printedName": "httpMethod", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10httpMethodyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10httpMethodyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpStatusCode", + "printedName": "httpStatusCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14httpStatusCodeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14httpStatusCodeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netProtocolName", + "printedName": "netProtocolName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15netProtocolNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15netProtocolNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netProtocolVersion", + "printedName": "netProtocolVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18netProtocolVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18netProtocolVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netPeerName", + "printedName": "netPeerName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11netPeerNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11netPeerNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netPeerPort", + "printedName": "netPeerPort", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11netPeerPortyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11netPeerPortyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpScheme", + "printedName": "httpScheme", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10httpSchemeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10httpSchemeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpRoute", + "printedName": "httpRoute", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO9httpRouteyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO9httpRouteyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostName", + "printedName": "netHostName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11netHostNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11netHostNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostPort", + "printedName": "netHostPort", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11netHostPortyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11netHostPortyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO9eventNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO9eventNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "eventDomain", + "printedName": "eventDomain", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11eventDomainyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11eventDomainyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "logRecordUid", + "printedName": "logRecordUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO12logRecordUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO12logRecordUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "featureFlagKey", + "printedName": "featureFlagKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14featureFlagKeyyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14featureFlagKeyyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "featureFlagProviderName", + "printedName": "featureFlagProviderName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23featureFlagProviderNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23featureFlagProviderNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "featureFlagVariant", + "printedName": "featureFlagVariant", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18featureFlagVariantyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18featureFlagVariantyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsLambdaInvokedArn", + "printedName": "awsLambdaInvokedArn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19awsLambdaInvokedArnyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19awsLambdaInvokedArnyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudeventsEventId", + "printedName": "cloudeventsEventId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18cloudeventsEventIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18cloudeventsEventIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudeventsEventSource", + "printedName": "cloudeventsEventSource", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO22cloudeventsEventSourceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO22cloudeventsEventSourceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudeventsEventSpecVersion", + "printedName": "cloudeventsEventSpecVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27cloudeventsEventSpecVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27cloudeventsEventSpecVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudeventsEventType", + "printedName": "cloudeventsEventType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20cloudeventsEventTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20cloudeventsEventTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudeventsEventSubject", + "printedName": "cloudeventsEventSubject", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23cloudeventsEventSubjectyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23cloudeventsEventSubjectyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "opentracingRefType", + "printedName": "opentracingRefType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18opentracingRefTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18opentracingRefTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbSystem", + "printedName": "dbSystem", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8dbSystemyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8dbSystemyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbConnectionString", + "printedName": "dbConnectionString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18dbConnectionStringyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18dbConnectionStringyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbUser", + "printedName": "dbUser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO6dbUseryA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO6dbUseryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbJdbcDriverClassname", + "printedName": "dbJdbcDriverClassname", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21dbJdbcDriverClassnameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21dbJdbcDriverClassnameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbName", + "printedName": "dbName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO6dbNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO6dbNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbStatement", + "printedName": "dbStatement", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11dbStatementyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11dbStatementyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbOperation", + "printedName": "dbOperation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11dbOperationyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11dbOperationyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netSockPeerAddr", + "printedName": "netSockPeerAddr", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15netSockPeerAddryA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15netSockPeerAddryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netSockPeerPort", + "printedName": "netSockPeerPort", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15netSockPeerPortyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15netSockPeerPortyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netSockFamily", + "printedName": "netSockFamily", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO13netSockFamilyyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO13netSockFamilyyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netSockPeerName", + "printedName": "netSockPeerName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15netSockPeerNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15netSockPeerNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netTransport", + "printedName": "netTransport", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO12netTransportyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO12netTransportyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbMssqlInstanceName", + "printedName": "dbMssqlInstanceName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19dbMssqlInstanceNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19dbMssqlInstanceNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCassandraPageSize", + "printedName": "dbCassandraPageSize", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19dbCassandraPageSizeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19dbCassandraPageSizeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCassandraConsistencyLevel", + "printedName": "dbCassandraConsistencyLevel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27dbCassandraConsistencyLevelyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27dbCassandraConsistencyLevelyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCassandraTable", + "printedName": "dbCassandraTable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16dbCassandraTableyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16dbCassandraTableyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCassandraIdempotence", + "printedName": "dbCassandraIdempotence", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO22dbCassandraIdempotenceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO22dbCassandraIdempotenceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCassandraSpeculativeExecutionCount", + "printedName": "dbCassandraSpeculativeExecutionCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO36dbCassandraSpeculativeExecutionCountyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO36dbCassandraSpeculativeExecutionCountyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCassandraCoordinatorId", + "printedName": "dbCassandraCoordinatorId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24dbCassandraCoordinatorIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24dbCassandraCoordinatorIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCassandraCoordinatorDc", + "printedName": "dbCassandraCoordinatorDc", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24dbCassandraCoordinatorDcyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24dbCassandraCoordinatorDcyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbRedisDatabaseIndex", + "printedName": "dbRedisDatabaseIndex", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20dbRedisDatabaseIndexyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20dbRedisDatabaseIndexyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbMongodbCollection", + "printedName": "dbMongodbCollection", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19dbMongodbCollectionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19dbMongodbCollectionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbSqlTable", + "printedName": "dbSqlTable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10dbSqlTableyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10dbSqlTableyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbClientId", + "printedName": "dbCosmosdbClientId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18dbCosmosdbClientIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18dbCosmosdbClientIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbOperationType", + "printedName": "dbCosmosdbOperationType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23dbCosmosdbOperationTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23dbCosmosdbOperationTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userAgentOriginal", + "printedName": "userAgentOriginal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17userAgentOriginalyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17userAgentOriginalyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbConnectionMode", + "printedName": "dbCosmosdbConnectionMode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24dbCosmosdbConnectionModeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24dbCosmosdbConnectionModeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbContainer", + "printedName": "dbCosmosdbContainer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19dbCosmosdbContaineryA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19dbCosmosdbContaineryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbRequestContentLength", + "printedName": "dbCosmosdbRequestContentLength", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30dbCosmosdbRequestContentLengthyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30dbCosmosdbRequestContentLengthyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbStatusCode", + "printedName": "dbCosmosdbStatusCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20dbCosmosdbStatusCodeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20dbCosmosdbStatusCodeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbSubStatusCode", + "printedName": "dbCosmosdbSubStatusCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23dbCosmosdbSubStatusCodeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23dbCosmosdbSubStatusCodeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbRequestCharge", + "printedName": "dbCosmosdbRequestCharge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23dbCosmosdbRequestChargeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23dbCosmosdbRequestChargeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "otelStatusCode", + "printedName": "otelStatusCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14otelStatusCodeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14otelStatusCodeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "otelStatusDescription", + "printedName": "otelStatusDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21otelStatusDescriptionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21otelStatusDescriptionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasTrigger", + "printedName": "faasTrigger", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11faasTriggeryA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11faasTriggeryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasInvocationId", + "printedName": "faasInvocationId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16faasInvocationIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16faasInvocationIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudResourceId", + "printedName": "cloudResourceId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15cloudResourceIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15cloudResourceIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasDocumentCollection", + "printedName": "faasDocumentCollection", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO22faasDocumentCollectionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO22faasDocumentCollectionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasDocumentOperation", + "printedName": "faasDocumentOperation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21faasDocumentOperationyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21faasDocumentOperationyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasDocumentTime", + "printedName": "faasDocumentTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16faasDocumentTimeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16faasDocumentTimeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasDocumentName", + "printedName": "faasDocumentName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16faasDocumentNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16faasDocumentNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpTarget", + "printedName": "httpTarget", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10httpTargetyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10httpTargetyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpClientIp", + "printedName": "httpClientIp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO12httpClientIpyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO12httpClientIpyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netSockHostAddr", + "printedName": "netSockHostAddr", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15netSockHostAddryA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15netSockHostAddryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netSockHostPort", + "printedName": "netSockHostPort", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15netSockHostPortyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15netSockHostPortyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingSystem", + "printedName": "messagingSystem", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15messagingSystemyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15messagingSystemyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingOperation", + "printedName": "messagingOperation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18messagingOperationyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18messagingOperationyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingBatchMessageCount", + "printedName": "messagingBatchMessageCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26messagingBatchMessageCountyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26messagingBatchMessageCountyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingMessageId", + "printedName": "messagingMessageId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18messagingMessageIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18messagingMessageIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingMessageConversationId", + "printedName": "messagingMessageConversationId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30messagingMessageConversationIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30messagingMessageConversationIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingMessagePayloadSizeBytes", + "printedName": "messagingMessagePayloadSizeBytes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO32messagingMessagePayloadSizeBytesyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO32messagingMessagePayloadSizeBytesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingMessagePayloadCompressedSizeBytes", + "printedName": "messagingMessagePayloadCompressedSizeBytes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO42messagingMessagePayloadCompressedSizeBytesyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO42messagingMessagePayloadCompressedSizeBytesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasTime", + "printedName": "faasTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8faasTimeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8faasTimeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasCron", + "printedName": "faasCron", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8faasCronyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8faasCronyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasColdstart", + "printedName": "faasColdstart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO13faasColdstartyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO13faasColdstartyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasInvokedName", + "printedName": "faasInvokedName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15faasInvokedNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15faasInvokedNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasInvokedProvider", + "printedName": "faasInvokedProvider", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19faasInvokedProvideryA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19faasInvokedProvideryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasInvokedRegion", + "printedName": "faasInvokedRegion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17faasInvokedRegionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17faasInvokedRegionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostConnectionType", + "printedName": "netHostConnectionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21netHostConnectionTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21netHostConnectionTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostConnectionSubtype", + "printedName": "netHostConnectionSubtype", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24netHostConnectionSubtypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24netHostConnectionSubtypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostCarrierName", + "printedName": "netHostCarrierName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18netHostCarrierNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18netHostCarrierNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostCarrierMcc", + "printedName": "netHostCarrierMcc", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17netHostCarrierMccyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17netHostCarrierMccyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostCarrierMnc", + "printedName": "netHostCarrierMnc", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17netHostCarrierMncyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17netHostCarrierMncyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostCarrierIcc", + "printedName": "netHostCarrierIcc", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17netHostCarrierIccyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17netHostCarrierIccyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "peerService", + "printedName": "peerService", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11peerServiceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11peerServiceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "enduserId", + "printedName": "enduserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO9enduserIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO9enduserIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "enduserRole", + "printedName": "enduserRole", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11enduserRoleyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11enduserRoleyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "enduserScope", + "printedName": "enduserScope", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO12enduserScopeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO12enduserScopeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "threadId", + "printedName": "threadId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8threadIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8threadIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "threadName", + "printedName": "threadName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10threadNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10threadNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "codeFunction", + "printedName": "codeFunction", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO12codeFunctionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO12codeFunctionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "codeNamespace", + "printedName": "codeNamespace", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO13codeNamespaceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO13codeNamespaceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "codeFilepath", + "printedName": "codeFilepath", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO12codeFilepathyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO12codeFilepathyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "codeLineno", + "printedName": "codeLineno", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10codeLinenoyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10codeLinenoyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "codeColumn", + "printedName": "codeColumn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10codeColumnyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10codeColumnyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpRequestContentLength", + "printedName": "httpRequestContentLength", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24httpRequestContentLengthyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24httpRequestContentLengthyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpResponseContentLength", + "printedName": "httpResponseContentLength", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25httpResponseContentLengthyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25httpResponseContentLengthyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpUrl", + "printedName": "httpUrl", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO7httpUrlyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO7httpUrlyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpResendCount", + "printedName": "httpResendCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15httpResendCountyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15httpResendCountyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcSystem", + "printedName": "rpcSystem", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO9rpcSystemyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO9rpcSystemyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcService", + "printedName": "rpcService", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10rpcServiceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10rpcServiceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcMethod", + "printedName": "rpcMethod", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO9rpcMethodyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO9rpcMethodyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsRequestId", + "printedName": "awsRequestId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO12awsRequestIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO12awsRequestIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbTableNames", + "printedName": "awsDynamodbTableNames", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21awsDynamodbTableNamesyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21awsDynamodbTableNamesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbConsumedCapacity", + "printedName": "awsDynamodbConsumedCapacity", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27awsDynamodbConsumedCapacityyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27awsDynamodbConsumedCapacityyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbItemCollectionMetrics", + "printedName": "awsDynamodbItemCollectionMetrics", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO32awsDynamodbItemCollectionMetricsyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO32awsDynamodbItemCollectionMetricsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbProvisionedReadCapacity", + "printedName": "awsDynamodbProvisionedReadCapacity", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34awsDynamodbProvisionedReadCapacityyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34awsDynamodbProvisionedReadCapacityyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbProvisionedWriteCapacity", + "printedName": "awsDynamodbProvisionedWriteCapacity", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO35awsDynamodbProvisionedWriteCapacityyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO35awsDynamodbProvisionedWriteCapacityyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbConsistentRead", + "printedName": "awsDynamodbConsistentRead", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25awsDynamodbConsistentReadyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25awsDynamodbConsistentReadyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbProjection", + "printedName": "awsDynamodbProjection", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21awsDynamodbProjectionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21awsDynamodbProjectionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbLimit", + "printedName": "awsDynamodbLimit", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16awsDynamodbLimityA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16awsDynamodbLimityA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbAttributesToGet", + "printedName": "awsDynamodbAttributesToGet", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO011awsDynamodbD5ToGetyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO011awsDynamodbD5ToGetyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbIndexName", + "printedName": "awsDynamodbIndexName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20awsDynamodbIndexNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20awsDynamodbIndexNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbSelect", + "printedName": "awsDynamodbSelect", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17awsDynamodbSelectyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17awsDynamodbSelectyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbGlobalSecondaryIndexes", + "printedName": "awsDynamodbGlobalSecondaryIndexes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33awsDynamodbGlobalSecondaryIndexesyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33awsDynamodbGlobalSecondaryIndexesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbLocalSecondaryIndexes", + "printedName": "awsDynamodbLocalSecondaryIndexes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO32awsDynamodbLocalSecondaryIndexesyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO32awsDynamodbLocalSecondaryIndexesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbExclusiveStartTable", + "printedName": "awsDynamodbExclusiveStartTable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30awsDynamodbExclusiveStartTableyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30awsDynamodbExclusiveStartTableyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbTableCount", + "printedName": "awsDynamodbTableCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21awsDynamodbTableCountyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21awsDynamodbTableCountyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbScanForward", + "printedName": "awsDynamodbScanForward", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO22awsDynamodbScanForwardyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO22awsDynamodbScanForwardyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbSegment", + "printedName": "awsDynamodbSegment", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18awsDynamodbSegmentyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18awsDynamodbSegmentyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbTotalSegments", + "printedName": "awsDynamodbTotalSegments", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24awsDynamodbTotalSegmentsyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24awsDynamodbTotalSegmentsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbCount", + "printedName": "awsDynamodbCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16awsDynamodbCountyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16awsDynamodbCountyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbScannedCount", + "printedName": "awsDynamodbScannedCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23awsDynamodbScannedCountyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23awsDynamodbScannedCountyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbAttributeDefinitions", + "printedName": "awsDynamodbAttributeDefinitions", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO31awsDynamodbAttributeDefinitionsyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO31awsDynamodbAttributeDefinitionsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbGlobalSecondaryIndexUpdates", + "printedName": "awsDynamodbGlobalSecondaryIndexUpdates", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO38awsDynamodbGlobalSecondaryIndexUpdatesyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO38awsDynamodbGlobalSecondaryIndexUpdatesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsS3Bucket", + "printedName": "awsS3Bucket", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11awsS3BucketyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11awsS3BucketyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsS3Key", + "printedName": "awsS3Key", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8awsS3KeyyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8awsS3KeyyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsS3CopySource", + "printedName": "awsS3CopySource", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15awsS3CopySourceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15awsS3CopySourceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsS3UploadId", + "printedName": "awsS3UploadId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO13awsS3UploadIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO13awsS3UploadIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsS3Delete", + "printedName": "awsS3Delete", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11awsS3DeleteyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11awsS3DeleteyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsS3PartNumber", + "printedName": "awsS3PartNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15awsS3PartNumberyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15awsS3PartNumberyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "graphqlOperationName", + "printedName": "graphqlOperationName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20graphqlOperationNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20graphqlOperationNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "graphqlOperationType", + "printedName": "graphqlOperationType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20graphqlOperationTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20graphqlOperationTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "graphqlDocument", + "printedName": "graphqlDocument", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15graphqlDocumentyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15graphqlDocumentyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingDestinationName", + "printedName": "messagingDestinationName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24messagingDestinationNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24messagingDestinationNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingSourceName", + "printedName": "messagingSourceName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19messagingSourceNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19messagingSourceNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingDestinationTemplate", + "printedName": "messagingDestinationTemplate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO28messagingDestinationTemplateyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO28messagingDestinationTemplateyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingDestinationTemporary", + "printedName": "messagingDestinationTemporary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29messagingDestinationTemporaryyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29messagingDestinationTemporaryyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingDestinationAnonymous", + "printedName": "messagingDestinationAnonymous", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29messagingDestinationAnonymousyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29messagingDestinationAnonymousyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingSourceTemplate", + "printedName": "messagingSourceTemplate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23messagingSourceTemplateyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23messagingSourceTemplateyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingSourceTemporary", + "printedName": "messagingSourceTemporary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24messagingSourceTemporaryyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24messagingSourceTemporaryyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingSourceAnonymous", + "printedName": "messagingSourceAnonymous", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24messagingSourceAnonymousyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24messagingSourceAnonymousyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingConsumerId", + "printedName": "messagingConsumerId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19messagingConsumerIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19messagingConsumerIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRabbitmqDestinationRoutingKey", + "printedName": "messagingRabbitmqDestinationRoutingKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO38messagingRabbitmqDestinationRoutingKeyyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO38messagingRabbitmqDestinationRoutingKeyyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingKafkaMessageKey", + "printedName": "messagingKafkaMessageKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24messagingKafkaMessageKeyyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24messagingKafkaMessageKeyyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingKafkaConsumerGroup", + "printedName": "messagingKafkaConsumerGroup", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27messagingKafkaConsumerGroupyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27messagingKafkaConsumerGroupyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingKafkaClientId", + "printedName": "messagingKafkaClientId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO22messagingKafkaClientIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO22messagingKafkaClientIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingKafkaDestinationPartition", + "printedName": "messagingKafkaDestinationPartition", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34messagingKafkaDestinationPartitionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34messagingKafkaDestinationPartitionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingKafkaSourcePartition", + "printedName": "messagingKafkaSourcePartition", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29messagingKafkaSourcePartitionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29messagingKafkaSourcePartitionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingKafkaMessageOffset", + "printedName": "messagingKafkaMessageOffset", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27messagingKafkaMessageOffsetyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27messagingKafkaMessageOffsetyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingKafkaMessageTombstone", + "printedName": "messagingKafkaMessageTombstone", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30messagingKafkaMessageTombstoneyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30messagingKafkaMessageTombstoneyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqNamespace", + "printedName": "messagingRocketmqNamespace", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26messagingRocketmqNamespaceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26messagingRocketmqNamespaceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqClientGroup", + "printedName": "messagingRocketmqClientGroup", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO28messagingRocketmqClientGroupyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO28messagingRocketmqClientGroupyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqClientId", + "printedName": "messagingRocketmqClientId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25messagingRocketmqClientIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25messagingRocketmqClientIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqMessageDeliveryTimestamp", + "printedName": "messagingRocketmqMessageDeliveryTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO41messagingRocketmqMessageDeliveryTimestampyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO41messagingRocketmqMessageDeliveryTimestampyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqMessageDelayTimeLevel", + "printedName": "messagingRocketmqMessageDelayTimeLevel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO38messagingRocketmqMessageDelayTimeLevelyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO38messagingRocketmqMessageDelayTimeLevelyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqMessageGroup", + "printedName": "messagingRocketmqMessageGroup", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29messagingRocketmqMessageGroupyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29messagingRocketmqMessageGroupyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqMessageType", + "printedName": "messagingRocketmqMessageType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO28messagingRocketmqMessageTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO28messagingRocketmqMessageTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqMessageTag", + "printedName": "messagingRocketmqMessageTag", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27messagingRocketmqMessageTagyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27messagingRocketmqMessageTagyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqMessageKeys", + "printedName": "messagingRocketmqMessageKeys", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO28messagingRocketmqMessageKeysyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO28messagingRocketmqMessageKeysyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqConsumptionModel", + "printedName": "messagingRocketmqConsumptionModel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33messagingRocketmqConsumptionModelyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33messagingRocketmqConsumptionModelyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcGrpcStatusCode", + "printedName": "rpcGrpcStatusCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17rpcGrpcStatusCodeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17rpcGrpcStatusCodeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcJsonrpcVersion", + "printedName": "rpcJsonrpcVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17rpcJsonrpcVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17rpcJsonrpcVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcJsonrpcRequestId", + "printedName": "rpcJsonrpcRequestId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19rpcJsonrpcRequestIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19rpcJsonrpcRequestIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcJsonrpcErrorCode", + "printedName": "rpcJsonrpcErrorCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19rpcJsonrpcErrorCodeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19rpcJsonrpcErrorCodeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcJsonrpcErrorMessage", + "printedName": "rpcJsonrpcErrorMessage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO22rpcJsonrpcErrorMessageyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO22rpcJsonrpcErrorMessageyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messageType", + "printedName": "messageType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11messageTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11messageTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messageId", + "printedName": "messageId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO9messageIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO9messageIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messageCompressedSize", + "printedName": "messageCompressedSize", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21messageCompressedSizeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21messageCompressedSizeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messageUncompressedSize", + "printedName": "messageUncompressedSize", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23messageUncompressedSizeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23messageUncompressedSizeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcConnectRpcErrorCode", + "printedName": "rpcConnectRpcErrorCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO22rpcConnectRpcErrorCodeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO22rpcConnectRpcErrorCodeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "exceptionEscaped", + "printedName": "exceptionEscaped", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16exceptionEscapedyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16exceptionEscapedyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "exception", + "printedName": "exception", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO9exceptionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO9exceptionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EventDomainValues", + "printedName": "EventDomainValues", + "children": [ + { + "kind": "Var", + "name": "browser", + "printedName": "browser", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDomainValues", + "printedName": "VideoSDKRTC.SemanticAttributes.EventDomainValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV7browserAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV7browserAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDomainValues", + "printedName": "VideoSDKRTC.SemanticAttributes.EventDomainValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV7browserAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV7browserAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "device", + "printedName": "device", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDomainValues", + "printedName": "VideoSDKRTC.SemanticAttributes.EventDomainValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV6deviceAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV6deviceAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDomainValues", + "printedName": "VideoSDKRTC.SemanticAttributes.EventDomainValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV6deviceAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV6deviceAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "k8s", + "printedName": "k8s", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDomainValues", + "printedName": "VideoSDKRTC.SemanticAttributes.EventDomainValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV3k8sAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV3k8sAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDomainValues", + "printedName": "VideoSDKRTC.SemanticAttributes.EventDomainValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV3k8sAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV3k8sAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDomainValues", + "printedName": "VideoSDKRTC.SemanticAttributes.EventDomainValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OpentracingRefTypeValues", + "printedName": "OpentracingRefTypeValues", + "children": [ + { + "kind": "Var", + "name": "child_of", + "printedName": "child_of", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "OpentracingRefTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OpentracingRefTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8child_ofyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8child_ofyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "follows_from", + "printedName": "follows_from", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "OpentracingRefTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OpentracingRefTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO12follows_fromyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO12follows_fromyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "OpentracingRefTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DbSystemValues", + "printedName": "DbSystemValues", + "children": [ + { + "kind": "Var", + "name": "otherSql", + "printedName": "otherSql", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8otherSqlAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8otherSqlAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8otherSqlAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8otherSqlAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mssql", + "printedName": "mssql", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mssqlAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mssqlAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mssqlAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mssqlAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mssqlcompact", + "printedName": "mssqlcompact", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV12mssqlcompactAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV12mssqlcompactAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV12mssqlcompactAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV12mssqlcompactAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mysql", + "printedName": "mysql", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mysqlAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mysqlAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mysqlAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mysqlAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "oracle", + "printedName": "oracle", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6oracleAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6oracleAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6oracleAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6oracleAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "db2", + "printedName": "db2", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3db2AEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3db2AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3db2AEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3db2AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "postgresql", + "printedName": "postgresql", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10postgresqlAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10postgresqlAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10postgresqlAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10postgresqlAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "redshift", + "printedName": "redshift", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8redshiftAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8redshiftAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8redshiftAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8redshiftAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hive", + "printedName": "hive", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV4hiveAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV4hiveAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV4hiveAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV4hiveAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cloudscape", + "printedName": "cloudscape", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10cloudscapeAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10cloudscapeAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10cloudscapeAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10cloudscapeAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hsqldb", + "printedName": "hsqldb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hsqldbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hsqldbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hsqldbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hsqldbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "progress", + "printedName": "progress", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8progressAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8progressAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8progressAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8progressAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxdb", + "printedName": "maxdb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5maxdbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5maxdbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5maxdbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5maxdbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hanadb", + "printedName": "hanadb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hanadbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hanadbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hanadbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hanadbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ingres", + "printedName": "ingres", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6ingresAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6ingresAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6ingresAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6ingresAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "firstsql", + "printedName": "firstsql", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firstsqlAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firstsqlAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firstsqlAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firstsqlAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "edb", + "printedName": "edb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3edbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3edbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3edbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3edbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cache", + "printedName": "cache", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5cacheAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5cacheAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5cacheAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5cacheAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "adabas", + "printedName": "adabas", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6adabasAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6adabasAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6adabasAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6adabasAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "firebird", + "printedName": "firebird", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firebirdAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firebirdAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firebirdAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firebirdAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "derby", + "printedName": "derby", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5derbyAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5derbyAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5derbyAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5derbyAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "filemaker", + "printedName": "filemaker", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9filemakerAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9filemakerAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9filemakerAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9filemakerAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "informix", + "printedName": "informix", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8informixAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8informixAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8informixAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8informixAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instantdb", + "printedName": "instantdb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9instantdbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9instantdbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9instantdbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9instantdbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "interbase", + "printedName": "interbase", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9interbaseAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9interbaseAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9interbaseAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9interbaseAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mariadb", + "printedName": "mariadb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mariadbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mariadbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mariadbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mariadbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "netezza", + "printedName": "netezza", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7netezzaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7netezzaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7netezzaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7netezzaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pervasive", + "printedName": "pervasive", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pervasiveAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pervasiveAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pervasiveAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pervasiveAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pointbase", + "printedName": "pointbase", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pointbaseAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pointbaseAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pointbaseAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pointbaseAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sqlite", + "printedName": "sqlite", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sqliteAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sqliteAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sqliteAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sqliteAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sybase", + "printedName": "sybase", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sybaseAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sybaseAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sybaseAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sybaseAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "teradata", + "printedName": "teradata", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8teradataAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8teradataAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8teradataAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8teradataAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "vertica", + "printedName": "vertica", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7verticaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7verticaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7verticaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7verticaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "h2", + "printedName": "h2", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV2h2AEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV2h2AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV2h2AEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV2h2AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "coldfusion", + "printedName": "coldfusion", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10coldfusionAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10coldfusionAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10coldfusionAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10coldfusionAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cassandra", + "printedName": "cassandra", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9cassandraAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9cassandraAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9cassandraAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9cassandraAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hbase", + "printedName": "hbase", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5hbaseAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5hbaseAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5hbaseAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5hbaseAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mongodb", + "printedName": "mongodb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mongodbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mongodbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mongodbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mongodbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "redis", + "printedName": "redis", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5redisAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5redisAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5redisAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5redisAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "couchbase", + "printedName": "couchbase", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9couchbaseAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9couchbaseAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9couchbaseAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9couchbaseAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "couchdb", + "printedName": "couchdb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7couchdbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7couchdbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7couchdbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7couchdbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cosmosdb", + "printedName": "cosmosdb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8cosmosdbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8cosmosdbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8cosmosdbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8cosmosdbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dynamodb", + "printedName": "dynamodb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8dynamodbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8dynamodbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8dynamodbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8dynamodbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "neo4j", + "printedName": "neo4j", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5neo4jAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5neo4jAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5neo4jAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5neo4jAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "geode", + "printedName": "geode", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5geodeAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5geodeAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5geodeAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5geodeAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "elasticsearch", + "printedName": "elasticsearch", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV13elasticsearchAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV13elasticsearchAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV13elasticsearchAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV13elasticsearchAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "memcached", + "printedName": "memcached", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9memcachedAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9memcachedAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9memcachedAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9memcachedAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cockroachdb", + "printedName": "cockroachdb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11cockroachdbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11cockroachdbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11cockroachdbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11cockroachdbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "opensearch", + "printedName": "opensearch", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10opensearchAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10opensearchAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10opensearchAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10opensearchAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "clickhouse", + "printedName": "clickhouse", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10clickhouseAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10clickhouseAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10clickhouseAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10clickhouseAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanner", + "printedName": "spanner", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7spannerAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7spannerAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7spannerAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7spannerAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "trino", + "printedName": "trino", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5trinoAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5trinoAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5trinoAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5trinoAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NetSockFamilyValues", + "printedName": "NetSockFamilyValues", + "children": [ + { + "kind": "Var", + "name": "inet", + "printedName": "inet", + "children": [ + { + "kind": "TypeNominal", + "name": "NetSockFamilyValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetSockFamilyValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4inetAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4inetAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetSockFamilyValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetSockFamilyValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4inetAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4inetAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "inet6", + "printedName": "inet6", + "children": [ + { + "kind": "TypeNominal", + "name": "NetSockFamilyValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetSockFamilyValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV5inet6AEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV5inet6AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetSockFamilyValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetSockFamilyValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV5inet6AEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV5inet6AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unix", + "printedName": "unix", + "children": [ + { + "kind": "TypeNominal", + "name": "NetSockFamilyValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetSockFamilyValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4unixAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4unixAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetSockFamilyValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetSockFamilyValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4unixAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4unixAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NetSockFamilyValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetSockFamilyValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NetTransportValues", + "printedName": "NetTransportValues", + "children": [ + { + "kind": "Var", + "name": "ipTcp", + "printedName": "ipTcp", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipTcpAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipTcpAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipTcpAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipTcpAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ipUdp", + "printedName": "ipUdp", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipUdpAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipUdpAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipUdpAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipUdpAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pipe", + "printedName": "pipe", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV4pipeAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV4pipeAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV4pipeAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV4pipeAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "inproc", + "printedName": "inproc", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV6inprocAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV6inprocAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV6inprocAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV6inprocAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "other", + "printedName": "other", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5otherAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5otherAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5otherAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5otherAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "Var", + "name": "all", + "printedName": "all", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3allyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3allyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "each_quorum", + "printedName": "each_quorum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO11each_quorumyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO11each_quorumyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "quorum", + "printedName": "quorum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO6quorumyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO6quorumyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "local_quorum", + "printedName": "local_quorum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO12local_quorumyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO12local_quorumyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "one", + "printedName": "one", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3oneyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3oneyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "two", + "printedName": "two", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3twoyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3twoyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "three", + "printedName": "three", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO5threeyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO5threeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "local_one", + "printedName": "local_one", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO9local_oneyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO9local_oneyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "any", + "printedName": "any", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3anyyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3anyyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "serial", + "printedName": "serial", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO6serialyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO6serialyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "local_serial", + "printedName": "local_serial", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO12local_serialyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO12local_serialyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "DbCosmosdbOperationTypeValues", + "children": [ + { + "kind": "Var", + "name": "invalid", + "printedName": "invalid", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7invalidAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7invalidAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7invalidAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7invalidAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "create", + "printedName": "create", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6createAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6createAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6createAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6createAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "patch", + "printedName": "patch", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5patchAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5patchAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5patchAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5patchAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "read", + "printedName": "read", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4readAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4readAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4readAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4readAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "readFeed", + "printedName": "readFeed", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8readFeedAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8readFeedAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8readFeedAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8readFeedAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "delete", + "printedName": "delete", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6deleteAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6deleteAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6deleteAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6deleteAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "replace", + "printedName": "replace", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7replaceAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7replaceAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7replaceAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7replaceAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "execute", + "printedName": "execute", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7executeAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7executeAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7executeAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7executeAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "query", + "printedName": "query", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5queryAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5queryAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5queryAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5queryAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "head", + "printedName": "head", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4headAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4headAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4headAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4headAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "headFeed", + "printedName": "headFeed", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8headFeedAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8headFeedAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8headFeedAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8headFeedAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "upsert", + "printedName": "upsert", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6upsertAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6upsertAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6upsertAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6upsertAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "batch", + "printedName": "batch", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5batchAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5batchAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5batchAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5batchAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "queryPlan", + "printedName": "queryPlan", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV9queryPlanAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV9queryPlanAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV9queryPlanAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV9queryPlanAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "executeJavascript", + "printedName": "executeJavascript", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV17executeJavascriptAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV17executeJavascriptAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV17executeJavascriptAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV17executeJavascriptAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DbCosmosdbConnectionModeValues", + "printedName": "DbCosmosdbConnectionModeValues", + "children": [ + { + "kind": "Var", + "name": "gateway", + "printedName": "gateway", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbConnectionModeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbConnectionModeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO7gatewayyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO7gatewayyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "direct", + "printedName": "direct", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbConnectionModeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbConnectionModeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO6directyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO6directyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbConnectionModeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OtelStatusCodeValues", + "printedName": "OtelStatusCodeValues", + "children": [ + { + "kind": "Var", + "name": "ok", + "printedName": "ok", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "OtelStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtelStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO2okyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO2okyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "OtelStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtelStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO5erroryA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO5erroryA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "OtelStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FaasTriggerValues", + "printedName": "FaasTriggerValues", + "children": [ + { + "kind": "Var", + "name": "datasource", + "printedName": "datasource", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type) -> VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO10datasourceyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO10datasourceyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "http", + "printedName": "http", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type) -> VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO4httpyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO4httpyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "pubsub", + "printedName": "pubsub", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type) -> VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO6pubsubyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO6pubsubyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "timer", + "printedName": "timer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type) -> VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO5timeryA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO5timeryA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "other", + "printedName": "other", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type) -> VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO5otheryA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO5otheryA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FaasDocumentOperationValues", + "printedName": "FaasDocumentOperationValues", + "children": [ + { + "kind": "Var", + "name": "insert", + "printedName": "insert", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasDocumentOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6insertAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6insertAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasDocumentOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6insertAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6insertAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "edit", + "printedName": "edit", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasDocumentOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV4editAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV4editAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasDocumentOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV4editAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV4editAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "delete", + "printedName": "delete", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasDocumentOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6deleteAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6deleteAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasDocumentOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6deleteAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6deleteAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasDocumentOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MessagingOperationValues", + "printedName": "MessagingOperationValues", + "children": [ + { + "kind": "Var", + "name": "publish", + "printedName": "publish", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7publishAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7publishAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7publishAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7publishAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "receive", + "printedName": "receive", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7receiveAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7receiveAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7receiveAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7receiveAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "process", + "printedName": "process", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7processAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7processAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7processAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7processAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FaasInvokedProviderValues", + "printedName": "FaasInvokedProviderValues", + "children": [ + { + "kind": "Var", + "name": "alibabaCloud", + "printedName": "alibabaCloud", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12alibabaCloudAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12alibabaCloudAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12alibabaCloudAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12alibabaCloudAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aws", + "printedName": "aws", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3awsAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3awsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3awsAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3awsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azure", + "printedName": "azure", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV5azureAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV5azureAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV5azureAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV5azureAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcp", + "printedName": "gcp", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3gcpAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3gcpAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3gcpAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3gcpAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tencentCloud", + "printedName": "tencentCloud", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12tencentCloudAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12tencentCloudAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12tencentCloudAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12tencentCloudAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NetHostConnectionTypeValues", + "printedName": "NetHostConnectionTypeValues", + "children": [ + { + "kind": "Var", + "name": "wifi", + "printedName": "wifi", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4wifiAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4wifiAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4wifiAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4wifiAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "wired", + "printedName": "wired", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV5wiredAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV5wiredAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV5wiredAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV5wiredAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cell", + "printedName": "cell", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4cellAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4cellAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4cellAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4cellAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unavailable", + "printedName": "unavailable", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11unavailableAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11unavailableAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11unavailableAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11unavailableAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV7unknownAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV7unknownAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV7unknownAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV7unknownAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NetHostConnectionSubtypeValues", + "printedName": "NetHostConnectionSubtypeValues", + "children": [ + { + "kind": "Var", + "name": "gprs", + "printedName": "gprs", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4gprsAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4gprsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4gprsAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4gprsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "edge", + "printedName": "edge", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4edgeAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4edgeAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4edgeAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4edgeAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "umts", + "printedName": "umts", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4umtsAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4umtsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4umtsAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4umtsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cdma", + "printedName": "cdma", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4cdmaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4cdmaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4cdmaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4cdmaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "evdo0", + "printedName": "evdo0", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdo0AEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdo0AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdo0AEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdo0AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "evdoA", + "printedName": "evdoA", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoAAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoAAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoAAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoAAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cdma20001xrtt", + "printedName": "cdma20001xrtt", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV13cdma20001xrttAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV13cdma20001xrttAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV13cdma20001xrttAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV13cdma20001xrttAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hsdpa", + "printedName": "hsdpa", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsdpaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsdpaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsdpaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsdpaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hsupa", + "printedName": "hsupa", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsupaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsupaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsupaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsupaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hspa", + "printedName": "hspa", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4hspaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4hspaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4hspaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4hspaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "iden", + "printedName": "iden", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4idenAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4idenAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4idenAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4idenAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "evdoB", + "printedName": "evdoB", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoBAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoBAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoBAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoBAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lte", + "printedName": "lte", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3lteAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3lteAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3lteAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3lteAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ehrpd", + "printedName": "ehrpd", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5ehrpdAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5ehrpdAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5ehrpdAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5ehrpdAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hspap", + "printedName": "hspap", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hspapAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hspapAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hspapAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hspapAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gsm", + "printedName": "gsm", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3gsmAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3gsmAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3gsmAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3gsmAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tdScdma", + "printedName": "tdScdma", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV7tdScdmaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV7tdScdmaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV7tdScdmaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV7tdScdmaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "iwlan", + "printedName": "iwlan", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5iwlanAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5iwlanAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5iwlanAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5iwlanAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nr", + "printedName": "nr", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV2nrAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV2nrAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV2nrAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV2nrAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nrnsa", + "printedName": "nrnsa", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5nrnsaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5nrnsaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5nrnsaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5nrnsaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lteCa", + "printedName": "lteCa", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5lteCaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5lteCaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5lteCaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5lteCaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RpcSystemValues", + "printedName": "RpcSystemValues", + "children": [ + { + "kind": "Var", + "name": "grpc", + "printedName": "grpc", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV4grpcAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV4grpcAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV4grpcAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV4grpcAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "javaRmi", + "printedName": "javaRmi", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV7javaRmiAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV7javaRmiAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV7javaRmiAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV7javaRmiAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dotnetWcf", + "printedName": "dotnetWcf", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV9dotnetWcfAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV9dotnetWcfAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV9dotnetWcfAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV9dotnetWcfAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "apacheDubbo", + "printedName": "apacheDubbo", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11apacheDubboAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11apacheDubboAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11apacheDubboAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11apacheDubboAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectRpc", + "printedName": "connectRpc", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV07connectE0AEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV07connectE0AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV07connectE0AEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV07connectE0AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GraphqlOperationTypeValues", + "printedName": "GraphqlOperationTypeValues", + "children": [ + { + "kind": "Var", + "name": "query", + "printedName": "query", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphqlOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphqlOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO5queryyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO5queryyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "mutation", + "printedName": "mutation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphqlOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphqlOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8mutationyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8mutationyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "subscription", + "printedName": "subscription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphqlOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphqlOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO12subscriptionyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO12subscriptionyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphqlOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "MessagingRocketmqMessageTypeValues", + "children": [ + { + "kind": "Var", + "name": "normal", + "printedName": "normal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO6normalyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO6normalyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fifo", + "printedName": "fifo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO4fifoyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO4fifoyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "delay", + "printedName": "delay", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO5delayyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO5delayyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "transaction", + "printedName": "transaction", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO11transactionyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO11transactionyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MessagingRocketmqConsumptionModelValues", + "printedName": "MessagingRocketmqConsumptionModelValues", + "children": [ + { + "kind": "Var", + "name": "clustering", + "printedName": "clustering", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues.Type) -> VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqConsumptionModelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqConsumptionModelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO10clusteringyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO10clusteringyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "broadcasting", + "printedName": "broadcasting", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues.Type) -> VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqConsumptionModelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqConsumptionModelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO12broadcastingyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO12broadcastingyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqConsumptionModelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RpcGrpcStatusCodeValues", + "printedName": "RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "Var", + "name": "ok", + "printedName": "ok", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO2okyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO2okyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO9cancelledyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO9cancelledyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO7unknownyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "invalid_argument", + "printedName": "invalid_argument", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO16invalid_argumentyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO16invalid_argumentyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "deadline_exceeded", + "printedName": "deadline_exceeded", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO17deadline_exceededyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO17deadline_exceededyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "not_found", + "printedName": "not_found", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO9not_foundyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO9not_foundyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "already_exists", + "printedName": "already_exists", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO14already_existsyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO14already_existsyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "permission_denied", + "printedName": "permission_denied", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO17permission_deniedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO17permission_deniedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "resource_exhausted", + "printedName": "resource_exhausted", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO18resource_exhaustedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO18resource_exhaustedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "failed_precondition", + "printedName": "failed_precondition", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO19failed_preconditionyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO19failed_preconditionyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "aborted", + "printedName": "aborted", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO7abortedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO7abortedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "out_of_range", + "printedName": "out_of_range", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO12out_of_rangeyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO12out_of_rangeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unimplemented", + "printedName": "unimplemented", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO13unimplementedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO13unimplementedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "internal", + "printedName": "internal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8internalyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8internalyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unavailable", + "printedName": "unavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO11unavailableyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO11unavailableyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "data_loss", + "printedName": "data_loss", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO9data_lossyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO9data_lossyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unauthenticated", + "printedName": "unauthenticated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO15unauthenticatedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO15unauthenticatedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MessageTypeValues", + "printedName": "MessageTypeValues", + "children": [ + { + "kind": "Var", + "name": "sent", + "printedName": "sent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessageTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.MessageTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO4sentyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO4sentyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "received", + "printedName": "received", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessageTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.MessageTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8receivedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8receivedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO9cancelledyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO9cancelledyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO7unknownyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "invalid_argument", + "printedName": "invalid_argument", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO16invalid_argumentyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO16invalid_argumentyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "deadline_exceeded", + "printedName": "deadline_exceeded", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO17deadline_exceededyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO17deadline_exceededyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "not_found", + "printedName": "not_found", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO9not_foundyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO9not_foundyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "already_exists", + "printedName": "already_exists", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO14already_existsyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO14already_existsyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "permission_denied", + "printedName": "permission_denied", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO17permission_deniedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO17permission_deniedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "resource_exhausted", + "printedName": "resource_exhausted", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO18resource_exhaustedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO18resource_exhaustedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "failed_precondition", + "printedName": "failed_precondition", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO19failed_preconditionyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO19failed_preconditionyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "aborted", + "printedName": "aborted", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO7abortedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO7abortedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "out_of_range", + "printedName": "out_of_range", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO12out_of_rangeyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO12out_of_rangeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unimplemented", + "printedName": "unimplemented", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO13unimplementedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO13unimplementedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "internal", + "printedName": "internal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8internalyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8internalyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unavailable", + "printedName": "unavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO11unavailableyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO11unavailableyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "data_loss", + "printedName": "data_loss", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO9data_lossyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO9data_lossyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unauthenticated", + "printedName": "unauthenticated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO15unauthenticatedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO15unauthenticatedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes?", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Severity", + "printedName": "Severity", + "children": [ + { + "kind": "Var", + "name": "trace", + "printedName": "trace", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5traceyA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5traceyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "trace2", + "printedName": "trace2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6trace2yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6trace2yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "trace3", + "printedName": "trace3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6trace3yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6trace3yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "trace4", + "printedName": "trace4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6trace4yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6trace4yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5debugyA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5debugyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "debug2", + "printedName": "debug2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6debug2yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6debug2yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "debug3", + "printedName": "debug3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6debug3yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6debug3yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "debug4", + "printedName": "debug4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6debug4yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6debug4yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "info", + "printedName": "info", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO4infoyA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO4infoyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "info2", + "printedName": "info2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5info2yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5info2yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "info3", + "printedName": "info3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5info3yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5info3yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "info4", + "printedName": "info4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5info4yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5info4yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "warn", + "printedName": "warn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO4warnyA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO4warnyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "warn2", + "printedName": "warn2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5warn2yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5warn2yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "warn3", + "printedName": "warn3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5warn3yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5warn3yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "warn4", + "printedName": "warn4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5warn4yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5warn4yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5erroryA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5erroryA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "error2", + "printedName": "error2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6error2yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6error2yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "error3", + "printedName": "error3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6error3yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6error3yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "error4", + "printedName": "error4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6error4yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6error4yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "fatal", + "printedName": "fatal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5fatalyA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5fatalyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "fatal2", + "printedName": "fatal2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6fatal2yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6fatal2yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "fatal3", + "printedName": "fatal3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6fatal3yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6fatal3yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "fatal4", + "printedName": "fatal4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6fatal4yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6fatal4yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SeverityO11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC8SeverityO11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SeverityO11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC8SeverityO11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SeverityO1loiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC8SeverityO1loiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SeverityO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC8SeverityO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SeverityO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC8SeverityO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Severity?", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SeverityO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC8SeverityO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC8SeverityO", + "mangledName": "$s11VideoSDKRTC8SeverityO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SimpleExtensionMap", + "printedName": "SimpleExtensionMap", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleExtensionMap", + "printedName": "VideoSDKRTC.SimpleExtensionMap", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapVACycfc", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(arrayLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleExtensionMap", + "printedName": "VideoSDKRTC.SimpleExtensionMap", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.AnyMessageExtension]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV12arrayLiteralAcA010AnyMessageD0_pd_tcfc", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapV12arrayLiteralAcA010AnyMessageD0_pd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleExtensionMap", + "printedName": "VideoSDKRTC.SimpleExtensionMap", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SimpleExtensionMap]", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleExtensionMap", + "printedName": "VideoSDKRTC.SimpleExtensionMap", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapVyA2Cd_tcfc", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapVyA2Cd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyMessageExtension?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Subscript", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapVyAA010AnyMessageD0_pSgAA0G0_pXp_Sitcip", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapVyAA010AnyMessageD0_pSgAA0G0_pXp_Sitcip", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyMessageExtension?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapVyAA010AnyMessageD0_pSgAA0G0_pXp_Sitcig", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapVyAA010AnyMessageD0_pSgAA0G0_pXp_Sitcig", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "fieldNumberForProto", + "printedName": "fieldNumberForProto(messageType:protoFieldName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV19fieldNumberForProto11messageType14protoFieldNameSiSgAA7Message_pXp_SStF", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapV19fieldNumberForProto11messageType14protoFieldNameSiSgAA7Message_pXp_SStF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "insert", + "printedName": "insert(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV6insertyyAA010AnyMessageD0_pF", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapV6insertyyAA010AnyMessageD0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "insert", + "printedName": "insert(contentsOf:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.AnyMessageExtension]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV6insert10contentsOfySayAA010AnyMessageD0_pG_tF", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapV6insert10contentsOfySayAA010AnyMessageD0_pG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "formUnion", + "printedName": "formUnion(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SimpleExtensionMap", + "printedName": "VideoSDKRTC.SimpleExtensionMap", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV9formUnionyyACF", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapV9formUnionyyACF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "union", + "printedName": "union(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleExtensionMap", + "printedName": "VideoSDKRTC.SimpleExtensionMap", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV" + }, + { + "kind": "TypeNominal", + "name": "SimpleExtensionMap", + "printedName": "VideoSDKRTC.SimpleExtensionMap", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV5unionyA2CF", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapV5unionyA2CF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionMap", + "printedName": "ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP", + "mangledName": "$s11VideoSDKRTC12ExtensionMapP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByArrayLiteral", + "printedName": "ExpressibleByArrayLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ] + } + ], + "usr": "s:s25ExpressibleByArrayLiteralP", + "mangledName": "$ss25ExpressibleByArrayLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SimpleLogRecordProcessor", + "printedName": "SimpleLogRecordProcessor", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(logRecordExporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleLogRecordProcessor", + "printedName": "VideoSDKRTC.SimpleLogRecordProcessor", + "usr": "s:11VideoSDKRTC24SimpleLogRecordProcessorC" + }, + { + "kind": "TypeNominal", + "name": "LogRecordExporter", + "printedName": "VideoSDKRTC.LogRecordExporter", + "usr": "s:11VideoSDKRTC17LogRecordExporterP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24SimpleLogRecordProcessorC03logE8ExporterAcA0deH0_p_tcfc", + "mangledName": "$s11VideoSDKRTC24SimpleLogRecordProcessorC03logE8ExporterAcA0deH0_p_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "onEmit", + "printedName": "onEmit(logRecord:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24SimpleLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", + "mangledName": "$s11VideoSDKRTC24SimpleLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24SimpleLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC24SimpleLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24SimpleLogRecordProcessorC8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC24SimpleLogRecordProcessorC8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC24SimpleLogRecordProcessorC", + "mangledName": "$s11VideoSDKRTC24SimpleLogRecordProcessorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordProcessor", + "printedName": "LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SimpleSpanProcessor", + "printedName": "SimpleSpanProcessor", + "children": [ + { + "kind": "Var", + "name": "isStartRequired", + "printedName": "isStartRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV15isStartRequiredSbvp", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV15isStartRequiredSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV15isStartRequiredSbvg", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV15isStartRequiredSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isEndRequired", + "printedName": "isEndRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV13isEndRequiredSbvp", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV13isEndRequiredSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV13isEndRequiredSbvg", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV13isEndRequiredSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "onStart", + "printedName": "onStart(parentContext:span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV7onStart13parentContext4spanyAA0dI0VSg_AA08ReadableD0_ptF", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV7onStart13parentContext4spanyAA0dI0VSg_AA08ReadableD0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onEnd", + "printedName": "onEnd(span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV5onEnd4spanyAA08ReadableD0_p_tF", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV5onEnd4spanyAA08ReadableD0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV8shutdownyyF", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush(timeout:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV10forceFlush7timeoutySdSg_tF", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV10forceFlush7timeoutySdSg_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(spanExporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleSpanProcessor", + "printedName": "VideoSDKRTC.SimpleSpanProcessor", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV" + }, + { + "kind": "TypeNominal", + "name": "SpanExporter", + "printedName": "VideoSDKRTC.SpanExporter", + "usr": "s:11VideoSDKRTC12SpanExporterP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV12spanExporterAcA0dG0_p_tcfc", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV12spanExporterAcA0dG0_p_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "reportingOnlySampled", + "printedName": "reportingOnlySampled(sampled:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleSpanProcessor", + "printedName": "VideoSDKRTC.SimpleSpanProcessor", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV20reportingOnlySampled7sampledACSb_tF", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV20reportingOnlySampled7sampledACSb_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SpanProcessor", + "printedName": "SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "VideosdkWebSocket", + "printedName": "VideosdkWebSocket", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_SourceContext", + "printedName": "Google_Protobuf_SourceContext", + "children": [ + { + "kind": "Var", + "name": "fileName", + "printedName": "fileName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextVACycfc", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Span", + "printedName": "Span", + "children": [ + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC4SpanP4kindAA0C4KindOvp", + "mangledName": "$s11VideoSDKRTC4SpanP4kindAA0C4KindOvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP4kindAA0C4KindOvg", + "mangledName": "$s11VideoSDKRTC4SpanP4kindAA0C4KindOvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "context", + "printedName": "context", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC4SpanP7contextAA0C7ContextVvp", + "mangledName": "$s11VideoSDKRTC4SpanP7contextAA0C7ContextVvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP7contextAA0C7ContextVvg", + "mangledName": "$s11VideoSDKRTC4SpanP7contextAA0C7ContextVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isRecording", + "printedName": "isRecording", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC4SpanP11isRecordingSbvp", + "mangledName": "$s11VideoSDKRTC4SpanP11isRecordingSbvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP11isRecordingSbvg", + "mangledName": "$s11VideoSDKRTC4SpanP11isRecordingSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC4SpanP6statusAA6StatusOvp", + "mangledName": "$s11VideoSDKRTC4SpanP6statusAA6StatusOvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP6statusAA6StatusOvg", + "mangledName": "$s11VideoSDKRTC4SpanP6statusAA6StatusOvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP6statusAA6StatusOvs", + "mangledName": "$s11VideoSDKRTC4SpanP6statusAA6StatusOvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP6statusAA6StatusOvM", + "mangledName": "$s11VideoSDKRTC4SpanP6statusAA6StatusOvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC4SpanP4nameSSvp", + "mangledName": "$s11VideoSDKRTC4SpanP4nameSSvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP4nameSSvg", + "mangledName": "$s11VideoSDKRTC4SpanP4nameSSvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP4nameSSvs", + "mangledName": "$s11VideoSDKRTC4SpanP4nameSSvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP4nameSSvM", + "mangledName": "$s11VideoSDKRTC4SpanP4nameSSvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanP12setAttribute3key5valueySS_AA0E5ValueOSgtF", + "mangledName": "$s11VideoSDKRTC4SpanP12setAttribute3key5valueySS_AA0E5ValueOSgtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanP8addEvent4nameySS_tF", + "mangledName": "$s11VideoSDKRTC4SpanP8addEvent4nameySS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:timestamp:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanP8addEvent4name9timestampySS_10Foundation4DateVtF", + "mangledName": "$s11VideoSDKRTC4SpanP8addEvent4name9timestampySS_10Foundation4DateVtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanP8addEvent4name10attributesySS_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC4SpanP8addEvent4name10attributesySS_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:attributes:timestamp:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanP8addEvent4name10attributes9timestampySS_SDySSAA14AttributeValueOG10Foundation4DateVtF", + "mangledName": "$s11VideoSDKRTC4SpanP8addEvent4name10attributes9timestampySS_SDySSAA14AttributeValueOG10Foundation4DateVtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "end", + "printedName": "end()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanP3endyyF", + "mangledName": "$s11VideoSDKRTC4SpanP3endyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "end", + "printedName": "end(time:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanP3end4timey10Foundation4DateV_tF", + "mangledName": "$s11VideoSDKRTC4SpanP3end4timey10Foundation4DateV_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + }, + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE2eeoiySbAaB_p_AaB_ptFZ", + "mangledName": "$s11VideoSDKRTC4SpanPAAE2eeoiySbAaB_p_AaB_ptFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SStF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SStF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SitF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SitF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SdtF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SdtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SbtF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SStF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SStF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SitF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SitF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SdtF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SdtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SbtF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "putHttpHostAttribute", + "printedName": "putHttpHostAttribute(string:int:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE20putHttpHostAttribute6string3intySS_SitF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE20putHttpHostAttribute6string3intySS_SitF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "putHttpStatusCode", + "printedName": "putHttpStatusCode(statusCode:reasonPhrase:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE17putHttpStatusCode06statusG012reasonPhraseySi_SStF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE17putHttpStatusCode06statusG012reasonPhraseySi_SStF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC4SpanP", + "mangledName": "$s11VideoSDKRTC4SpanP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject, τ_0_0 : Swift.CustomStringConvertible>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanAdapter", + "printedName": "SpanAdapter", + "children": [ + { + "kind": "Function", + "name": "toProtoResourceSpans", + "printedName": "toProtoResourceSpans(spanDataList:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanAdapterV20toProtoResourceSpans12spanDataListSayAA014Opentelemetry_f10_Trace_V1_gH0VGSayAA0cJ0VG_tFZ", + "mangledName": "$s11VideoSDKRTC11SpanAdapterV20toProtoResourceSpans12spanDataListSayAA014Opentelemetry_f10_Trace_V1_gH0VGSayAA0cJ0VG_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toProtoSpan", + "printedName": "toProtoSpan(spanData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV" + }, + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanAdapterV07toProtoC08spanDataAA014Opentelemetry_f10_Trace_V1_C0VAA0cH0V_tFZ", + "mangledName": "$s11VideoSDKRTC11SpanAdapterV07toProtoC08spanDataAA014Opentelemetry_f10_Trace_V1_C0VAA0cH0V_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC11SpanAdapterV", + "mangledName": "$s11VideoSDKRTC11SpanAdapterV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanBuilder", + "printedName": "SpanBuilder", + "children": [ + { + "kind": "Function", + "name": "setParent", + "printedName": "setParent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP9setParentyxAA0C0_pF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP9setParentyxAA0C0_pF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setParent", + "printedName": "setParent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP9setParentyxAA0C7ContextVF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP9setParentyxAA0C7ContextVF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setNoParent", + "printedName": "setNoParent()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP11setNoParentxyF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP11setNoParentxyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addLink", + "printedName": "addLink(spanContext:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP7addLink11spanContextxAA0cH0V_tF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP7addLink11spanContextxAA0cH0V_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addLink", + "printedName": "addLink(spanContext:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP7addLink11spanContext10attributesxAA0cH0V_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP7addLink11spanContext10attributesxAA0cH0V_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SStF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SStF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SitF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SitF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SdtF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SdtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SbtF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_AA0F5ValueOtF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_AA0F5ValueOtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSpanKind", + "printedName": "setSpanKind(spanKind:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP03setC4Kind04spanF0xAA0cF0O_tF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP03setC4Kind04spanF0xAA0cF0O_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setStartTime", + "printedName": "setStartTime(time:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP12setStartTime4timex10Foundation4DateV_tF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP12setStartTime4timex10Foundation4DateV_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setActive", + "printedName": "setActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP9setActiveyxSbF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP9setActiveyxSbF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startSpan", + "printedName": "startSpan()", + "children": [ + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP05startC0AA0C0_pyF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP05startC0AA0C0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SStF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SStF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "declAttributes": [ + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SitF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SitF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "declAttributes": [ + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SdtF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SdtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "declAttributes": [ + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SbtF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "declAttributes": [ + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC11SpanBuilderP", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanContext", + "printedName": "SpanContext", + "children": [ + { + "kind": "Var", + "name": "traceId", + "printedName": "traceId", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV7traceIdAA05TraceF0Vvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV7traceIdAA05TraceF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV7traceIdAA05TraceF0Vvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV7traceIdAA05TraceF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanId", + "printedName": "spanId", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV6spanIdAA0cF0Vvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV6spanIdAA0cF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV6spanIdAA0cF0Vvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV6spanIdAA0cF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "traceFlags", + "printedName": "traceFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV10traceFlagsAA05TraceF0Vvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV10traceFlagsAA05TraceF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV10traceFlagsAA05TraceF0Vvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV10traceFlagsAA05TraceF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "traceState", + "printedName": "traceState", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0Vvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0Vvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0Vvs", + "mangledName": "$s11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0VvM", + "mangledName": "$s11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isRemote", + "printedName": "isRemote", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV8isRemoteSbvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV8isRemoteSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV8isRemoteSbvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV8isRemoteSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "create", + "printedName": "create(traceId:spanId:traceFlags:traceState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + }, + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanContextV6create7traceId04spanG00F5Flags0F5StateAcA05TraceG0V_AA0cG0VAA0kI0VAA0kJ0VtFZ", + "mangledName": "$s11VideoSDKRTC11SpanContextV6create7traceId04spanG00F5Flags0F5StateAcA05TraceG0V_AA0cG0VAA0kI0VAA0kJ0VtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromRemoteParent", + "printedName": "createFromRemoteParent(traceId:spanId:traceFlags:traceState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + }, + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanContextV22createFromRemoteParent7traceId04spanJ00I5Flags0I5StateAcA05TraceJ0V_AA0cJ0VAA0nL0VAA0nM0VtFZ", + "mangledName": "$s11VideoSDKRTC11SpanContextV22createFromRemoteParent7traceId04spanJ00I5Flags0I5StateAcA05TraceJ0V_AA0cJ0VAA0nL0VAA0nM0VtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isValid", + "printedName": "isValid", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV7isValidSbvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV7isValidSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV7isValidSbvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV7isValidSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSampled", + "printedName": "isSampled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV9isSampledSbvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV9isSampledSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV9isSampledSbvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV9isSampledSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanContextV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC11SpanContextV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanContextV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC11SpanContextV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC11SpanContextV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC11SpanContextV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC11SpanContextV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC11SpanContextV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanContextV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC11SpanContextV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC11SpanContextV", + "mangledName": "$s11VideoSDKRTC11SpanContextV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanData", + "printedName": "SpanData", + "children": [ + { + "kind": "Var", + "name": "traceId", + "printedName": "traceId", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV7traceIdAA05TraceF0Vvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV7traceIdAA05TraceF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV7traceIdAA05TraceF0Vvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV7traceIdAA05TraceF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanId", + "printedName": "spanId", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV6spanIdAA0cF0Vvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV6spanIdAA0cF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV6spanIdAA0cF0Vvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV6spanIdAA0cF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "traceFlags", + "printedName": "traceFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV10traceFlagsAA05TraceF0Vvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV10traceFlagsAA05TraceF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV10traceFlagsAA05TraceF0Vvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV10traceFlagsAA05TraceF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "traceState", + "printedName": "traceState", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV10traceStateAA05TraceF0Vvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV10traceStateAA05TraceF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV10traceStateAA05TraceF0Vvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV10traceStateAA05TraceF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "parentSpanId", + "printedName": "parentSpanId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanId?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV06parentC2IdAA0cF0VSgvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV06parentC2IdAA0cF0VSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanId?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV06parentC2IdAA0cF0VSgvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV06parentC2IdAA0cF0VSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instrumentationScope", + "printedName": "instrumentationScope", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV20instrumentationScopeAA015InstrumentationF4InfoVvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV20instrumentationScopeAA015InstrumentationF4InfoVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV20instrumentationScopeAA015InstrumentationF4InfoVvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV20instrumentationScopeAA015InstrumentationF4InfoVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV4nameSSvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV4nameSSvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV4kindAA0C4KindOvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV4kindAA0C4KindOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV4kindAA0C4KindOvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV4kindAA0C4KindOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "startTime", + "printedName": "startTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV9startTime10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV9startTime10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV9startTime10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV9startTime10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "events", + "printedName": "events", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Event]", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV6eventsSayAC5EventVGvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV6eventsSayAC5EventVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Event]", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV6eventsSayAC5EventVGvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV6eventsSayAC5EventVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "links", + "printedName": "links", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV5linksSayAC4LinkVGvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV5linksSayAC4LinkVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV5linksSayAC4LinkVGvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV5linksSayAC4LinkVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV6statusAA6StatusOvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV6statusAA6StatusOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV6statusAA6StatusOvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV6statusAA6StatusOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endTime", + "printedName": "endTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV7endTime10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV7endTime10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV7endTime10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV7endTime10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasRemoteParent", + "printedName": "hasRemoteParent", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV15hasRemoteParentSbvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV15hasRemoteParentSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV15hasRemoteParentSbvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV15hasRemoteParentSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasEnded", + "printedName": "hasEnded", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV8hasEndedSbvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV8hasEndedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV8hasEndedSbvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV8hasEndedSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalRecordedEvents", + "printedName": "totalRecordedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV19totalRecordedEventsSivp", + "mangledName": "$s11VideoSDKRTC8SpanDataV19totalRecordedEventsSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV19totalRecordedEventsSivg", + "mangledName": "$s11VideoSDKRTC8SpanDataV19totalRecordedEventsSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalRecordedLinks", + "printedName": "totalRecordedLinks", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV18totalRecordedLinksSivp", + "mangledName": "$s11VideoSDKRTC8SpanDataV18totalRecordedLinksSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV18totalRecordedLinksSivg", + "mangledName": "$s11VideoSDKRTC8SpanDataV18totalRecordedLinksSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalAttributeCount", + "printedName": "totalAttributeCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV19totalAttributeCountSivp", + "mangledName": "$s11VideoSDKRTC8SpanDataV19totalAttributeCountSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV19totalAttributeCountSivg", + "mangledName": "$s11VideoSDKRTC8SpanDataV19totalAttributeCountSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC8SpanDataV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "settingName", + "printedName": "settingName(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV11settingNameyACSSF", + "mangledName": "$s11VideoSDKRTC8SpanDataV11settingNameyACSSF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingTraceId", + "printedName": "settingTraceId(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV14settingTraceIdyAcA0fG0VF", + "mangledName": "$s11VideoSDKRTC8SpanDataV14settingTraceIdyAcA0fG0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingSpanId", + "printedName": "settingSpanId(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV07settingC2IdyAcA0cF0VF", + "mangledName": "$s11VideoSDKRTC8SpanDataV07settingC2IdyAcA0cF0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingTraceFlags", + "printedName": "settingTraceFlags(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV17settingTraceFlagsyAcA0fG0VF", + "mangledName": "$s11VideoSDKRTC8SpanDataV17settingTraceFlagsyAcA0fG0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingTraceState", + "printedName": "settingTraceState(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV17settingTraceStateyAcA0fG0VF", + "mangledName": "$s11VideoSDKRTC8SpanDataV17settingTraceStateyAcA0fG0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingAttributes", + "printedName": "settingAttributes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV17settingAttributesyACSDySSAA14AttributeValueOGF", + "mangledName": "$s11VideoSDKRTC8SpanDataV17settingAttributesyACSDySSAA14AttributeValueOGF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingStartTime", + "printedName": "settingStartTime(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV16settingStartTimeyAC10Foundation4DateVF", + "mangledName": "$s11VideoSDKRTC8SpanDataV16settingStartTimeyAC10Foundation4DateVF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingEndTime", + "printedName": "settingEndTime(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV14settingEndTimeyAC10Foundation4DateVF", + "mangledName": "$s11VideoSDKRTC8SpanDataV14settingEndTimeyAC10Foundation4DateVF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingKind", + "printedName": "settingKind(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV11settingKindyAcA0cF0OF", + "mangledName": "$s11VideoSDKRTC8SpanDataV11settingKindyAcA0cF0OF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingLinks", + "printedName": "settingLinks(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV12settingLinksyACSayAC4LinkVGF", + "mangledName": "$s11VideoSDKRTC8SpanDataV12settingLinksyACSayAC4LinkVGF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingParentSpanId", + "printedName": "settingParentSpanId(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV013settingParentC2IdyAcA0cG0VF", + "mangledName": "$s11VideoSDKRTC8SpanDataV013settingParentC2IdyAcA0cG0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingResource", + "printedName": "settingResource(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV15settingResourceyAcA0F0VF", + "mangledName": "$s11VideoSDKRTC8SpanDataV15settingResourceyAcA0F0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingStatus", + "printedName": "settingStatus(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV13settingStatusyAcA0F0OF", + "mangledName": "$s11VideoSDKRTC8SpanDataV13settingStatusyAcA0F0OF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingEvents", + "printedName": "settingEvents(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Event]", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV13settingEventsyACSayAC5EventVGF", + "mangledName": "$s11VideoSDKRTC8SpanDataV13settingEventsyACSayAC5EventVGF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingHasRemoteParent", + "printedName": "settingHasRemoteParent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV22settingHasRemoteParentyACSbF", + "mangledName": "$s11VideoSDKRTC8SpanDataV22settingHasRemoteParentyACSbF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingHasEnded", + "printedName": "settingHasEnded(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV15settingHasEndedyACSbF", + "mangledName": "$s11VideoSDKRTC8SpanDataV15settingHasEndedyACSbF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingTotalRecordedEvents", + "printedName": "settingTotalRecordedEvents(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV26settingTotalRecordedEventsyACSiF", + "mangledName": "$s11VideoSDKRTC8SpanDataV26settingTotalRecordedEventsyACSiF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingTotalRecordedLinks", + "printedName": "settingTotalRecordedLinks(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV25settingTotalRecordedLinksyACSiF", + "mangledName": "$s11VideoSDKRTC8SpanDataV25settingTotalRecordedLinksyACSiF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingTotalAttributeCount", + "printedName": "settingTotalAttributeCount(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV26settingTotalAttributeCountyACSiF", + "mangledName": "$s11VideoSDKRTC8SpanDataV26settingTotalAttributeCountyACSiF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SpanDataV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC8SpanDataV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC8SpanDataV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Event", + "printedName": "Event", + "children": [ + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV9timestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV9timestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV9timestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV9timestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV4nameSSvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV4nameSSvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:timestamp:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV4name9timestamp10attributesAESS_10Foundation4DateVSDySSAA14AttributeValueOGSgtcfc", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV4name9timestamp10attributesAESS_10Foundation4DateVSDySSAA14AttributeValueOGSgtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(timestamp:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV9timestamp5eventAE10Foundation4DateV_AEtcfc", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV9timestamp5eventAE10Foundation4DateV_AEtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV4fromAEs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Link", + "printedName": "Link", + "children": [ + { + "kind": "Var", + "name": "context", + "printedName": "context", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV7contextAA0C7ContextVvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV7contextAA0C7ContextVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV7contextAA0C7ContextVvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV7contextAA0C7ContextVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(context:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV7context10attributesAeA0C7ContextV_SDySSAA14AttributeValueOGtcfc", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV7context10attributesAeA0C7ContextV_SDySSAA14AttributeValueOGtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV4fromAEs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC8SpanDataV", + "mangledName": "$s11VideoSDKRTC8SpanDataV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + }, + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC2eeoiySbAA8SpanDataV4LinkV_AFtF", + "mangledName": "$s11VideoSDKRTC2eeoiySbAA8SpanDataV4LinkV_AFtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC2eeoiySbSayAA8SpanDataV4LinkVG_AGtF", + "mangledName": "$s11VideoSDKRTC2eeoiySbSayAA8SpanDataV4LinkVG_AGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanExporter", + "printedName": "SpanExporter", + "children": [ + { + "kind": "Function", + "name": "export", + "printedName": "export(spans:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12SpanExporterP6export5spansAA0cD10ResultCodeOSayAA0C4DataVG_tF", + "mangledName": "$s11VideoSDKRTC12SpanExporterP6export5spansAA0cD10ResultCodeOSayAA0C4DataVG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12SpanExporterP5flushAA0cD10ResultCodeOyF", + "mangledName": "$s11VideoSDKRTC12SpanExporterP5flushAA0cD10ResultCodeOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12SpanExporterP8shutdownyyF", + "mangledName": "$s11VideoSDKRTC12SpanExporterP8shutdownyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC12SpanExporterP", + "mangledName": "$s11VideoSDKRTC12SpanExporterP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanExporterResultCode", + "printedName": "SpanExporterResultCode", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SpanExporterResultCode.Type) -> VideoSDKRTC.SpanExporterResultCode", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SpanExporterResultCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO7successyA2CmF", + "mangledName": "$s11VideoSDKRTC22SpanExporterResultCodeO7successyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "failure", + "printedName": "failure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SpanExporterResultCode.Type) -> VideoSDKRTC.SpanExporterResultCode", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SpanExporterResultCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO7failureyA2CmF", + "mangledName": "$s11VideoSDKRTC22SpanExporterResultCodeO7failureyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC22SpanExporterResultCodeO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC22SpanExporterResultCodeO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC22SpanExporterResultCodeO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC22SpanExporterResultCodeO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO", + "mangledName": "$s11VideoSDKRTC22SpanExporterResultCodeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanId", + "printedName": "SpanId", + "children": [ + { + "kind": "Var", + "name": "size", + "printedName": "size", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV4sizeSivpZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV4sizeSivpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV4sizeSivgZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV4sizeSivgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "invalidId", + "printedName": "invalidId", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV07invalidD0s6UInt64VvpZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV07invalidD0s6UInt64VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV07invalidD0s6UInt64VvgZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV07invalidD0s6UInt64VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "invalid", + "printedName": "invalid", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV7invalidACvpZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV7invalidACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV7invalidACvgZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV7invalidACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getSize", + "printedName": "getSize()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV7getSizeSiyFZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV7getSizeSiyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(id:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6SpanIdV2idACs6UInt64V_tcfc", + "mangledName": "$s11VideoSDKRTC6SpanIdV2idACs6UInt64V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6SpanIdVACycfc", + "mangledName": "$s11VideoSDKRTC6SpanIdVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "random", + "printedName": "random()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV6randomACyFZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV6randomACyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromBytes:withOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6SpanIdV9fromBytes10withOffsetACSays5UInt8VG_Sitcfc", + "mangledName": "$s11VideoSDKRTC6SpanIdV9fromBytes10withOffsetACSays5UInt8VG_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromBytes:withOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:s10ArraySliceV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6SpanIdV9fromBytes10withOffsetACs10ArraySliceVys5UInt8VG_Sitcfc", + "mangledName": "$s11VideoSDKRTC6SpanIdV9fromBytes10withOffsetACs10ArraySliceVys5UInt8VG_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromBytes:withOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ], + "usr": "s:s10ArraySliceV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6SpanIdV9fromBytes10withOffsetACs10ArraySliceVySJG_Sitcfc", + "mangledName": "$s11VideoSDKRTC6SpanIdV9fromBytes10withOffsetACs10ArraySliceVySJG_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "copyBytesTo", + "printedName": "copyBytesTo(dest:destOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "paramValueOwnership": "InOut", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV11copyBytesTo4dest0H6Offsety10Foundation4DataVz_SitF", + "mangledName": "$s11VideoSDKRTC6SpanIdV11copyBytesTo4dest0H6Offsety10Foundation4DataVz_SitF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyBytesTo", + "printedName": "copyBytesTo(dest:destOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV11copyBytesTo4dest0H6OffsetySays5UInt8VGz_SitF", + "mangledName": "$s11VideoSDKRTC6SpanIdV11copyBytesTo4dest0H6OffsetySays5UInt8VGz_SitF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyBytesTo", + "printedName": "copyBytesTo(dest:destOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:s10ArraySliceV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV11copyBytesTo4dest0H6Offsetys10ArraySliceVys5UInt8VGz_SitF", + "mangledName": "$s11VideoSDKRTC6SpanIdV11copyBytesTo4dest0H6Offsetys10ArraySliceVys5UInt8VGz_SitF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromHexString:withOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6SpanIdV13fromHexString10withOffsetACSS_Sitcfc", + "mangledName": "$s11VideoSDKRTC6SpanIdV13fromHexString10withOffsetACSS_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "hexString", + "printedName": "hexString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV9hexStringSSvp", + "mangledName": "$s11VideoSDKRTC6SpanIdV9hexStringSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV9hexStringSSvg", + "mangledName": "$s11VideoSDKRTC6SpanIdV9hexStringSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV8rawValues6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC6SpanIdV8rawValues6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV8rawValues6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC6SpanIdV8rawValues6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isValid", + "printedName": "isValid", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV7isValidSbvp", + "mangledName": "$s11VideoSDKRTC6SpanIdV7isValidSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV7isValidSbvg", + "mangledName": "$s11VideoSDKRTC6SpanIdV7isValidSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC6SpanIdV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC6SpanIdV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV1loiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV1loiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6SpanIdV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC6SpanIdV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC6SpanIdV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC6SpanIdV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC6SpanIdV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC6SpanIdV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC6SpanIdV", + "mangledName": "$s11VideoSDKRTC6SpanIdV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanKind", + "printedName": "SpanKind", + "children": [ + { + "kind": "Var", + "name": "internal", + "printedName": "internal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SpanKind.Type) -> VideoSDKRTC.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SpanKindO8internalyA2CmF", + "mangledName": "$s11VideoSDKRTC8SpanKindO8internalyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "server", + "printedName": "server", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SpanKind.Type) -> VideoSDKRTC.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SpanKindO6serveryA2CmF", + "mangledName": "$s11VideoSDKRTC8SpanKindO6serveryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "client", + "printedName": "client", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SpanKind.Type) -> VideoSDKRTC.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SpanKindO6clientyA2CmF", + "mangledName": "$s11VideoSDKRTC8SpanKindO6clientyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "producer", + "printedName": "producer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SpanKind.Type) -> VideoSDKRTC.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SpanKindO8produceryA2CmF", + "mangledName": "$s11VideoSDKRTC8SpanKindO8produceryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "consumer", + "printedName": "consumer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SpanKind.Type) -> VideoSDKRTC.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SpanKindO8consumeryA2CmF", + "mangledName": "$s11VideoSDKRTC8SpanKindO8consumeryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanKind?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SpanKindO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC8SpanKindO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanKindO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC8SpanKindO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanKindO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC8SpanKindO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC8SpanKindO", + "mangledName": "$s11VideoSDKRTC8SpanKindO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanLimits", + "printedName": "SpanLimits", + "children": [ + { + "kind": "Var", + "name": "attributeCountLimit", + "printedName": "attributeCountLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10SpanLimitsV19attributeCountLimitSivp", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV19attributeCountLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10SpanLimitsV19attributeCountLimitSivg", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV19attributeCountLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventCountLimit", + "printedName": "eventCountLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10SpanLimitsV15eventCountLimitSivp", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV15eventCountLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10SpanLimitsV15eventCountLimitSivg", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV15eventCountLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "linkCountLimit", + "printedName": "linkCountLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10SpanLimitsV14linkCountLimitSivp", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV14linkCountLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10SpanLimitsV14linkCountLimitSivg", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV14linkCountLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributePerEventCountLimit", + "printedName": "attributePerEventCountLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10SpanLimitsV27attributePerEventCountLimitSivp", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV27attributePerEventCountLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10SpanLimitsV27attributePerEventCountLimitSivg", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV27attributePerEventCountLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributePerLinkCountLimit", + "printedName": "attributePerLinkCountLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10SpanLimitsV26attributePerLinkCountLimitSivp", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV26attributePerLinkCountLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10SpanLimitsV26attributePerLinkCountLimitSivg", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV26attributePerLinkCountLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10SpanLimitsVACycfc", + "mangledName": "$s11VideoSDKRTC10SpanLimitsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "settingAttributeCountLimit", + "printedName": "settingAttributeCountLimit(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SpanLimitsV26settingAttributeCountLimityACSuF", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV26settingAttributeCountLimityACSuF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "settingEventCountLimit", + "printedName": "settingEventCountLimit(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SpanLimitsV22settingEventCountLimityACSuF", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV22settingEventCountLimityACSuF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "settingLinkCountLimit", + "printedName": "settingLinkCountLimit(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SpanLimitsV21settingLinkCountLimityACSuF", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV21settingLinkCountLimityACSuF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "settingAttributePerEventCountLimit", + "printedName": "settingAttributePerEventCountLimit(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SpanLimitsV34settingAttributePerEventCountLimityACSuF", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV34settingAttributePerEventCountLimityACSuF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "settingAttributePerLinkCountLimit", + "printedName": "settingAttributePerLinkCountLimit(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SpanLimitsV33settingAttributePerLinkCountLimityACSuF", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV33settingAttributePerLinkCountLimityACSuF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SpanLimitsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC10SpanLimitsV", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanProcessor", + "printedName": "SpanProcessor", + "children": [ + { + "kind": "Var", + "name": "isStartRequired", + "printedName": "isStartRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13SpanProcessorP15isStartRequiredSbvp", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP15isStartRequiredSbvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP15isStartRequiredSbvg", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP15isStartRequiredSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isEndRequired", + "printedName": "isEndRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13SpanProcessorP13isEndRequiredSbvp", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP13isEndRequiredSbvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP13isEndRequiredSbvg", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP13isEndRequiredSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "onStart", + "printedName": "onStart(parentContext:span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13SpanProcessorP7onStart13parentContext4spanyAA0cH0VSg_AA08ReadableC0_ptF", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP7onStart13parentContext4spanyAA0cH0VSg_AA08ReadableC0_ptF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onEnd", + "printedName": "onEnd(span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13SpanProcessorP5onEnd4spanyAA08ReadableC0_p_tF", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP5onEnd4spanyAA08ReadableC0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13SpanProcessorP8shutdownyyF", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP8shutdownyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush(timeout:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13SpanProcessorP10forceFlush7timeoutySdSg_tF", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP10forceFlush7timeoutySdSg_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13SpanProcessorP", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SPBDecoder", + "printedName": "SPBDecoder", + "children": [ + { + "kind": "Function", + "name": "handleConflictingOneOf", + "printedName": "handleConflictingOneOf()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP22handleConflictingOneOfyyKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP22handleConflictingOneOfyyKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "nextFieldNumber", + "printedName": "nextFieldNumber()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP15nextFieldNumberSiSgyKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP15nextFieldNumberSiSgyKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularFloatField", + "printedName": "decodeSingularFloatField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "paramValueOwnership": "InOut", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularFloatField5valueySfz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularFloatField5valueySfz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularFloatField", + "printedName": "decodeSingularFloatField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Float?", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularFloatField5valueySfSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularFloatField5valueySfSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedFloatField", + "printedName": "decodeRepeatedFloatField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeRepeatedFloatField5valueySaySfGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeRepeatedFloatField5valueySaySfGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularDoubleField", + "printedName": "decodeSingularDoubleField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "paramValueOwnership": "InOut", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularDoubleField5valueySdz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularDoubleField5valueySdz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularDoubleField", + "printedName": "decodeSingularDoubleField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularDoubleField5valueySdSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularDoubleField5valueySdSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedDoubleField", + "printedName": "decodeRepeatedDoubleField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeRepeatedDoubleField5valueySaySdGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeRepeatedDoubleField5valueySaySdGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularInt32Field", + "printedName": "decodeSingularInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "paramValueOwnership": "InOut", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularInt32Field5valueys0F0Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularInt32Field5valueys0F0Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularInt32Field", + "printedName": "decodeSingularInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int32?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularInt32Field5valueys0F0VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularInt32Field5valueys0F0VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedInt32Field", + "printedName": "decodeRepeatedInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeRepeatedInt32Field5valueySays0F0VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeRepeatedInt32Field5valueySays0F0VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularInt64Field", + "printedName": "decodeSingularInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "paramValueOwnership": "InOut", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularInt64Field5valueys0F0Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularInt64Field5valueys0F0Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularInt64Field", + "printedName": "decodeSingularInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularInt64Field5valueys0F0VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularInt64Field5valueys0F0VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedInt64Field", + "printedName": "decodeRepeatedInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeRepeatedInt64Field5valueySays0F0VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeRepeatedInt64Field5valueySays0F0VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularUInt32Field", + "printedName": "decodeSingularUInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "paramValueOwnership": "InOut", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularUInt32Field5valueys0F0Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularUInt32Field5valueys0F0Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularUInt32Field", + "printedName": "decodeSingularUInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularUInt32Field5valueys0F0VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularUInt32Field5valueys0F0VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedUInt32Field", + "printedName": "decodeRepeatedUInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeRepeatedUInt32Field5valueySays0F0VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeRepeatedUInt32Field5valueySays0F0VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularUInt64Field", + "printedName": "decodeSingularUInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "paramValueOwnership": "InOut", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularUInt64Field5valueys0F0Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularUInt64Field5valueys0F0Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularUInt64Field", + "printedName": "decodeSingularUInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt64?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularUInt64Field5valueys0F0VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularUInt64Field5valueys0F0VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedUInt64Field", + "printedName": "decodeRepeatedUInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeRepeatedUInt64Field5valueySays0F0VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeRepeatedUInt64Field5valueySays0F0VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSInt32Field", + "printedName": "decodeSingularSInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "paramValueOwnership": "InOut", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularSInt32Field5valueys5Int32Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularSInt32Field5valueys5Int32Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSInt32Field", + "printedName": "decodeSingularSInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int32?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularSInt32Field5valueys5Int32VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularSInt32Field5valueys5Int32VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedSInt32Field", + "printedName": "decodeRepeatedSInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeRepeatedSInt32Field5valueySays5Int32VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeRepeatedSInt32Field5valueySays5Int32VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSInt64Field", + "printedName": "decodeSingularSInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "paramValueOwnership": "InOut", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularSInt64Field5valueys5Int64Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularSInt64Field5valueys5Int64Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSInt64Field", + "printedName": "decodeSingularSInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularSInt64Field5valueys5Int64VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularSInt64Field5valueys5Int64VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedSInt64Field", + "printedName": "decodeRepeatedSInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeRepeatedSInt64Field5valueySays5Int64VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeRepeatedSInt64Field5valueySays5Int64VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularFixed32Field", + "printedName": "decodeSingularFixed32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "paramValueOwnership": "InOut", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeSingularFixed32Field5valueys6UInt32Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeSingularFixed32Field5valueys6UInt32Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularFixed32Field", + "printedName": "decodeSingularFixed32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeSingularFixed32Field5valueys6UInt32VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeSingularFixed32Field5valueys6UInt32VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedFixed32Field", + "printedName": "decodeRepeatedFixed32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeRepeatedFixed32Field5valueySays6UInt32VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeRepeatedFixed32Field5valueySays6UInt32VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularFixed64Field", + "printedName": "decodeSingularFixed64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "paramValueOwnership": "InOut", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeSingularFixed64Field5valueys6UInt64Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeSingularFixed64Field5valueys6UInt64Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularFixed64Field", + "printedName": "decodeSingularFixed64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt64?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeSingularFixed64Field5valueys6UInt64VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeSingularFixed64Field5valueys6UInt64VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedFixed64Field", + "printedName": "decodeRepeatedFixed64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeRepeatedFixed64Field5valueySays6UInt64VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeRepeatedFixed64Field5valueySays6UInt64VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSFixed32Field", + "printedName": "decodeSingularSFixed32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "paramValueOwnership": "InOut", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed32Field5valueys5Int32Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed32Field5valueys5Int32Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSFixed32Field", + "printedName": "decodeSingularSFixed32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int32?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed32Field5valueys5Int32VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed32Field5valueys5Int32VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedSFixed32Field", + "printedName": "decodeRepeatedSFixed32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP27decodeRepeatedSFixed32Field5valueySays5Int32VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP27decodeRepeatedSFixed32Field5valueySays5Int32VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSFixed64Field", + "printedName": "decodeSingularSFixed64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "paramValueOwnership": "InOut", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed64Field5valueys5Int64Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed64Field5valueys5Int64Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSFixed64Field", + "printedName": "decodeSingularSFixed64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed64Field5valueys5Int64VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed64Field5valueys5Int64VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedSFixed64Field", + "printedName": "decodeRepeatedSFixed64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP27decodeRepeatedSFixed64Field5valueySays5Int64VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP27decodeRepeatedSFixed64Field5valueySays5Int64VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularBoolField", + "printedName": "decodeSingularBoolField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "paramValueOwnership": "InOut", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP23decodeSingularBoolField5valueySbz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP23decodeSingularBoolField5valueySbz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularBoolField", + "printedName": "decodeSingularBoolField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP23decodeSingularBoolField5valueySbSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP23decodeSingularBoolField5valueySbSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedBoolField", + "printedName": "decodeRepeatedBoolField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP23decodeRepeatedBoolField5valueySaySbGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP23decodeRepeatedBoolField5valueySaySbGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularStringField", + "printedName": "decodeSingularStringField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "paramValueOwnership": "InOut", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularStringField5valueySSz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularStringField5valueySSz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularStringField", + "printedName": "decodeSingularStringField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularStringField5valueySSSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularStringField5valueySSSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedStringField", + "printedName": "decodeRepeatedStringField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeRepeatedStringField5valueySaySSGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeRepeatedStringField5valueySaySSGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularBytesField", + "printedName": "decodeSingularBytesField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "paramValueOwnership": "InOut", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularBytesField5valuey10Foundation4DataVz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularBytesField5valuey10Foundation4DataVz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularBytesField", + "printedName": "decodeSingularBytesField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularBytesField5valuey10Foundation4DataVSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularBytesField5valuey10Foundation4DataVSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedBytesField", + "printedName": "decodeRepeatedBytesField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeRepeatedBytesField5valueySay10Foundation4DataVGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeRepeatedBytesField5valueySay10Foundation4DataVGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularEnumField", + "printedName": "decodeSingularEnumField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP23decodeSingularEnumField5valueyqd__z_tKAA0F0Rd__Si8RawValueRtd__lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP23decodeSingularEnumField5valueyqd__z_tKAA0F0Rd__Si8RawValueRtd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.Enum, τ_1_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularEnumField", + "printedName": "decodeSingularEnumField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP23decodeSingularEnumField5valueyqd__Sgz_tKAA0F0Rd__Si8RawValueRtd__lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP23decodeSingularEnumField5valueyqd__Sgz_tKAA0F0Rd__Si8RawValueRtd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.Enum, τ_1_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedEnumField", + "printedName": "decodeRepeatedEnumField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP23decodeRepeatedEnumField5valueySayqd__Gz_tKAA0F0Rd__Si8RawValueRtd__lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP23decodeRepeatedEnumField5valueySayqd__Gz_tKAA0F0Rd__Si8RawValueRtd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.Enum, τ_1_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularMessageField", + "printedName": "decodeSingularMessageField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeSingularMessageField5valueyqd__Sgz_tKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeSingularMessageField5valueyqd__Sgz_tKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedMessageField", + "printedName": "decodeRepeatedMessageField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeRepeatedMessageField5valueySayqd__Gz_tKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeRepeatedMessageField5valueySayqd__Gz_tKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularGroupField", + "printedName": "decodeSingularGroupField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularGroupField5valueyqd__Sgz_tKAA7MessageRd__lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularGroupField5valueyqd__Sgz_tKAA7MessageRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedGroupField", + "printedName": "decodeRepeatedGroupField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeRepeatedGroupField5valueySayqd__Gz_tKAA7MessageRd__lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeRepeatedGroupField5valueySayqd__Gz_tKAA7MessageRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeMapField", + "printedName": "decodeMapField(fieldType:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._ProtobufMap<τ_1_0, τ_1_1>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProtobufMap", + "printedName": "VideoSDKRTC._ProtobufMap<τ_1_0, τ_1_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:11VideoSDKRTC12_ProtobufMapV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_1_0.BaseType : τ_1_1.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_1.BaseType" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP14decodeMapField9fieldType5valueyAA09_ProtobufE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__AJQyd_0_GztKAA0e3KeyH0Rd__AA0e5ValueH0Rd_0_r0_lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP14decodeMapField9fieldType5valueyAA09_ProtobufE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__AJQyd_0_GztKAA0e3KeyH0Rd__AA0e5ValueH0Rd_0_r0_lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0, τ_1_1 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.MapKeyType, τ_1_1 : VideoSDKRTC.MapValueType>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeMapField", + "printedName": "decodeMapField(fieldType:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._ProtobufEnumMap<τ_1_0, τ_1_1>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProtobufEnumMap", + "printedName": "VideoSDKRTC._ProtobufEnumMap<τ_1_0, τ_1_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:11VideoSDKRTC16_ProtobufEnumMapV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_1_0.BaseType : τ_1_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP14decodeMapField9fieldType5valueyAA013_ProtobufEnumE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GztKAA0e3KeyH0Rd__AA0K0Rd_0_Si8RawValueRtd_0_r0_lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP14decodeMapField9fieldType5valueyAA013_ProtobufEnumE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GztKAA0e3KeyH0Rd__AA0K0Rd_0_Si8RawValueRtd_0_r0_lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0, τ_1_1 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.MapKeyType, τ_1_1 : VideoSDKRTC.Enum, τ_1_1.RawValue == Swift.Int>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeMapField", + "printedName": "decodeMapField(fieldType:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._ProtobufMessageMap<τ_1_0, τ_1_1>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProtobufMessageMap", + "printedName": "VideoSDKRTC._ProtobufMessageMap<τ_1_0, τ_1_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:11VideoSDKRTC19_ProtobufMessageMapV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_1_0.BaseType : τ_1_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP14decodeMapField9fieldType5valueyAA016_ProtobufMessageE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GztKAA0e3KeyH0Rd__SHRd_0_AA0K0Rd_0_r0_lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP14decodeMapField9fieldType5valueyAA016_ProtobufMessageE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GztKAA0e3KeyH0Rd__SHRd_0_AA0K0Rd_0_r0_lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0, τ_1_1 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.MapKeyType, τ_1_1 : Swift.Hashable, τ_1_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(values:messageType:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "paramValueOwnership": "InOut", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP20decodeExtensionField6values11messageType11fieldNumberyAA0eF8ValueSetVz_AA7Message_pXpSitKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP20decodeExtensionField6values11messageType11fieldNumberyAA0eF8ValueSetVz_AA7Message_pXpSitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeExtensionFieldsAsMessageSet", + "printedName": "decodeExtensionFieldsAsMessageSet(values:messageType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "paramValueOwnership": "InOut", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP33decodeExtensionFieldsAsMessageSet6values11messageTypeyAA0e10FieldValueI0Vz_AA0H0_pXptKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP33decodeExtensionFieldsAsMessageSet6values11messageTypeyAA0e10FieldValueI0Vz_AA0H0_pXptKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeExtensionFieldsAsMessageSet", + "printedName": "decodeExtensionFieldsAsMessageSet(values:messageType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "paramValueOwnership": "InOut", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderPAAE33decodeExtensionFieldsAsMessageSet6values11messageTypeyAA0e10FieldValueI0Vz_AA0H0_pXptKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderPAAE33decodeExtensionFieldsAsMessageSet6values11messageTypeyAA0e10FieldValueI0Vz_AA0H0_pXptKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC10SPBDecoderP", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableAggregator", + "printedName": "StableAggregator", + "children": [ + { + "kind": "Function", + "name": "diff", + "printedName": "diff(previousCumulative:currentCumulative:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16StableAggregatorP4diff18previousCumulative07currentG0AA9PointDataCAH_AHtKF", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP4diff18previousCumulative07currentG0AA9PointDataCAH_AHtKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableAggregator>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toPoint", + "printedName": "toPoint(measurement:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16StableAggregatorP7toPoint11measurementAA0F4DataCAA11MeasurementV_tKF", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP7toPoint11measurementAA0F4DataCAA11MeasurementV_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableAggregator>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createHandle", + "printedName": "createHandle()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregatorHandle", + "printedName": "VideoSDKRTC.AggregatorHandle", + "usr": "s:11VideoSDKRTC16AggregatorHandleC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16StableAggregatorP12createHandleAA0dF0CyF", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP12createHandleAA0dF0CyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableAggregator>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData(resource:scope:descriptor:points:temporality:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16StableAggregatorP12toMetricData8resource5scope10descriptor6points11temporalityAA0cfG0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0F10DescriptorVSayAA05PointG0CGAA22AggregationTemporalityOtF", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP12toMetricData8resource5scope10descriptor6points11temporalityAA0cfG0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0F10DescriptorVSayAA05PointG0CGAA22AggregationTemporalityOtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableAggregator>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC16StableAggregatorP", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableMeter", + "printedName": "StableMeter", + "children": [ + { + "kind": "Function", + "name": "counterBuilder", + "printedName": "counterBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LongCounterBuilder", + "printedName": "VideoSDKRTC.LongCounterBuilder", + "usr": "s:11VideoSDKRTC18LongCounterBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11StableMeterP14counterBuilder4nameAA011LongCounterF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC11StableMeterP14counterBuilder4nameAA011LongCounterF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMeter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "upDownCounterBuilder", + "printedName": "upDownCounterBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LongUpDownCounterBuilder", + "printedName": "VideoSDKRTC.LongUpDownCounterBuilder", + "usr": "s:11VideoSDKRTC24LongUpDownCounterBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11StableMeterP20upDownCounterBuilder4nameAA06LongUpfgH0_pSS_tF", + "mangledName": "$s11VideoSDKRTC11StableMeterP20upDownCounterBuilder4nameAA06LongUpfgH0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMeter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "histogramBuilder", + "printedName": "histogramBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleHistogramBuilder", + "printedName": "VideoSDKRTC.DoubleHistogramBuilder", + "usr": "s:11VideoSDKRTC22DoubleHistogramBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11StableMeterP16histogramBuilder4nameAA015DoubleHistogramF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC11StableMeterP16histogramBuilder4nameAA015DoubleHistogramF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMeter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "gaugeBuilder", + "printedName": "gaugeBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleGaugeBuilder", + "printedName": "VideoSDKRTC.DoubleGaugeBuilder", + "usr": "s:11VideoSDKRTC18DoubleGaugeBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11StableMeterP12gaugeBuilder4nameAA011DoubleGaugeF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC11StableMeterP12gaugeBuilder4nameAA011DoubleGaugeF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMeter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC11StableMeterP", + "mangledName": "$s11VideoSDKRTC11StableMeterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableMeterProvider", + "printedName": "StableMeterProvider", + "children": [ + { + "kind": "Function", + "name": "get", + "printedName": "get(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeter", + "printedName": "VideoSDKRTC.StableMeter", + "usr": "s:11VideoSDKRTC11StableMeterP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19StableMeterProviderP3get4nameAA0cD0_pSS_tF", + "mangledName": "$s11VideoSDKRTC19StableMeterProviderP3get4nameAA0cD0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMeterProvider>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "meterBuilder", + "printedName": "meterBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterBuilder", + "printedName": "VideoSDKRTC.MeterBuilder", + "usr": "s:11VideoSDKRTC12MeterBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19StableMeterProviderP12meterBuilder4nameAA0dG0_pSS_tF", + "mangledName": "$s11VideoSDKRTC19StableMeterProviderP12meterBuilder4nameAA0dG0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMeterProvider>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC19StableMeterProviderP", + "mangledName": "$s11VideoSDKRTC19StableMeterProviderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableMeterProviderBuilder", + "printedName": "StableMeterProviderBuilder", + "children": [ + { + "kind": "Var", + "name": "clock", + "printedName": "clock", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC5clockAA5Clock_pvp", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC5clockAA5Clock_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC5clockAA5Clock_pvg", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC5clockAA5Clock_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metricReaders", + "printedName": "metricReaders", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.StableMetricReader]", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricReader", + "printedName": "VideoSDKRTC.StableMetricReader", + "usr": "s:11VideoSDKRTC18StableMetricReaderP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC13metricReadersSayAA0C12MetricReader_pGvp", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC13metricReadersSayAA0C12MetricReader_pGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.StableMetricReader]", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricReader", + "printedName": "VideoSDKRTC.StableMetricReader", + "usr": "s:11VideoSDKRTC18StableMetricReaderP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC13metricReadersSayAA0C12MetricReader_pGvg", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC13metricReadersSayAA0C12MetricReader_pGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "registeredViews", + "printedName": "registeredViews", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.RegisteredView]", + "children": [ + { + "kind": "TypeNominal", + "name": "RegisteredView", + "printedName": "VideoSDKRTC.RegisteredView", + "usr": "s:11VideoSDKRTC14RegisteredViewC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC15registeredViewsSayAA14RegisteredViewCGvp", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC15registeredViewsSayAA14RegisteredViewCGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.RegisteredView]", + "children": [ + { + "kind": "TypeNominal", + "name": "RegisteredView", + "printedName": "VideoSDKRTC.RegisteredView", + "usr": "s:11VideoSDKRTC14RegisteredViewC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC15registeredViewsSayAA14RegisteredViewCGvg", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC15registeredViewsSayAA14RegisteredViewCGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "exemplarFilter", + "printedName": "exemplarFilter", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC14exemplarFilterAA08ExemplarH0_pvp", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC14exemplarFilterAA08ExemplarH0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC14exemplarFilterAA08ExemplarH0_pvg", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC14exemplarFilterAA08ExemplarH0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeterProviderBuilder", + "printedName": "VideoSDKRTC.StableMeterProviderBuilder", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderCACycfc", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setClock", + "printedName": "setClock(clock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC8setClock5clockACXDAA0H0_p_tF", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC8setClock5clockACXDAA0H0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setResource", + "printedName": "setResource(resource:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC11setResource8resourceACXDAA0H0V_tF", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC11setResource8resourceACXDAA0H0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerView", + "printedName": "registerView(selector:view:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "InstrumentSelector", + "printedName": "VideoSDKRTC.InstrumentSelector", + "usr": "s:11VideoSDKRTC18InstrumentSelectorC" + }, + { + "kind": "TypeNominal", + "name": "StableView", + "printedName": "VideoSDKRTC.StableView", + "usr": "s:11VideoSDKRTC10StableViewC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC12registerView8selector4viewACXDAA18InstrumentSelectorC_AA0cH0CtF", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC12registerView8selector4viewACXDAA18InstrumentSelectorC_AA0cH0CtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerMetricReader", + "printedName": "registerMetricReader(reader:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "StableMetricReader", + "printedName": "VideoSDKRTC.StableMetricReader", + "usr": "s:11VideoSDKRTC18StableMetricReaderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC20registerMetricReader6readerACXDAA0chI0_p_tF", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC20registerMetricReader6readerACXDAA0chI0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeterProviderSdk", + "printedName": "VideoSDKRTC.StableMeterProviderSdk", + "usr": "s:11VideoSDKRTC22StableMeterProviderSdkC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC5buildAA0cdE3SdkCyF", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC5buildAA0cdE3SdkCyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeterProviderError", + "printedName": "MeterProviderError", + "declKind": "Class", + "usr": "s:11VideoSDKRTC18MeterProviderErrorC", + "mangledName": "$s11VideoSDKRTC18MeterProviderErrorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StableMeterProviderSdk", + "printedName": "StableMeterProviderSdk", + "children": [ + { + "kind": "Function", + "name": "get", + "printedName": "get(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeter", + "printedName": "VideoSDKRTC.StableMeter", + "usr": "s:11VideoSDKRTC11StableMeterP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22StableMeterProviderSdkC3get4nameAA0cD0_pSS_tF", + "mangledName": "$s11VideoSDKRTC22StableMeterProviderSdkC3get4nameAA0cD0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "meterBuilder", + "printedName": "meterBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterBuilder", + "printedName": "VideoSDKRTC.MeterBuilder", + "usr": "s:11VideoSDKRTC12MeterBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22StableMeterProviderSdkC12meterBuilder4nameAA0dH0_pSS_tF", + "mangledName": "$s11VideoSDKRTC22StableMeterProviderSdkC12meterBuilder4nameAA0dH0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "builder", + "printedName": "builder()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeterProviderBuilder", + "printedName": "VideoSDKRTC.StableMeterProviderBuilder", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22StableMeterProviderSdkC7builderAA0cdE7BuilderCyFZ", + "mangledName": "$s11VideoSDKRTC22StableMeterProviderSdkC7builderAA0cdE7BuilderCyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22StableMeterProviderSdkC8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC22StableMeterProviderSdkC8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22StableMeterProviderSdkC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC22StableMeterProviderSdkC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC22StableMeterProviderSdkC", + "mangledName": "$s11VideoSDKRTC22StableMeterProviderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "StableMeterProvider", + "printedName": "StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP", + "mangledName": "$s11VideoSDKRTC19StableMeterProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeterProviderSharedState", + "printedName": "MeterProviderSharedState", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(clock:resource:startEpochNanos:exemplarFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProviderSharedState", + "printedName": "VideoSDKRTC.MeterProviderSharedState", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC5clock8resource15startEpochNanos14exemplarFilterAcA5Clock_p_AA8ResourceVs6UInt64VAA08ExemplarM0_ptcfc", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC5clock8resource15startEpochNanos14exemplarFilterAcA5Clock_p_AA8ResourceVs6UInt64VAA08ExemplarM0_ptcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "clock", + "printedName": "clock", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC5clockAA5Clock_pvp", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC5clockAA5Clock_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC5clockAA5Clock_pvg", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC5clockAA5Clock_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "startEpochNanos", + "printedName": "startEpochNanos", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC15startEpochNanoss6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC15startEpochNanoss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC15startEpochNanoss6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC15startEpochNanoss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "exemplarFilter", + "printedName": "exemplarFilter", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC14exemplarFilterAA08ExemplarH0_pvp", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC14exemplarFilterAA08ExemplarH0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC14exemplarFilterAA08ExemplarH0_pvg", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC14exemplarFilterAA08ExemplarH0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricDataType", + "printedName": "MetricDataType", + "children": [ + { + "kind": "Var", + "name": "LongGauge", + "printedName": "LongGauge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricDataType.Type) -> VideoSDKRTC.MetricDataType", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricDataType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14MetricDataTypeO9LongGaugeyA2CmF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO9LongGaugeyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "DoubleGauge", + "printedName": "DoubleGauge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricDataType.Type) -> VideoSDKRTC.MetricDataType", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricDataType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14MetricDataTypeO11DoubleGaugeyA2CmF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO11DoubleGaugeyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "LongSum", + "printedName": "LongSum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricDataType.Type) -> VideoSDKRTC.MetricDataType", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricDataType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14MetricDataTypeO7LongSumyA2CmF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO7LongSumyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "DoubleSum", + "printedName": "DoubleSum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricDataType.Type) -> VideoSDKRTC.MetricDataType", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricDataType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14MetricDataTypeO9DoubleSumyA2CmF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO9DoubleSumyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "Summary", + "printedName": "Summary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricDataType.Type) -> VideoSDKRTC.MetricDataType", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricDataType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14MetricDataTypeO7SummaryyA2CmF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO7SummaryyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "Histogram", + "printedName": "Histogram", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricDataType.Type) -> VideoSDKRTC.MetricDataType", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricDataType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14MetricDataTypeO9HistogramyA2CmF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO9HistogramyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ExponentialHistogram", + "printedName": "ExponentialHistogram", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricDataType.Type) -> VideoSDKRTC.MetricDataType", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricDataType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14MetricDataTypeO20ExponentialHistogramyA2CmF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO20ExponentialHistogramyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricDataTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14MetricDataTypeO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14MetricDataTypeO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricDataTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC14MetricDataTypeO", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StableMetricData", + "printedName": "StableMetricData", + "children": [ + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instrumentationScopeInfo", + "printedName": "instrumentationScopeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV24instrumentationScopeInfoAA015InstrumentationgH0Vvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV24instrumentationScopeInfoAA015InstrumentationgH0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV24instrumentationScopeInfoAA015InstrumentationgH0Vvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV24instrumentationScopeInfoAA015InstrumentationgH0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV4nameSSvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV4nameSSvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unit", + "printedName": "unit", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV4unitSSvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4unitSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV4unitSSvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4unitSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV4typeAA0dE4TypeOvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4typeAA0dE4TypeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV4typeAA0dE4TypeOvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4typeAA0dE4TypeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "VideoSDKRTC.StableMetricData.Data", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV4dataAC0E0Cvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4dataAC0E0Cvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "VideoSDKRTC.StableMetricData.Data", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV4dataAC0E0Cvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4dataAC0E0Cvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "empty", + "printedName": "empty", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV5emptyACvpZ", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV5emptyACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV5emptyACvgZ", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV5emptyACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Data", + "printedName": "Data", + "children": [ + { + "kind": "Var", + "name": "points", + "printedName": "points", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C6pointsSayAA05PointE0CGvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV0E0C6pointsSayAA05PointE0CGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C6pointsSayAA05PointE0CGvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV0E0C6pointsSayAA05PointE0CGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "VideoSDKRTC.StableMetricData.Data", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "VideoSDKRTC.StableMetricData.Data", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV0E0C2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV0E0C", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16StableMetricDataV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16StableMetricDataV", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StableHistogramData", + "printedName": "StableHistogramData", + "children": [ + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19StableHistogramDataC22aggregationTemporalityAA011AggregationG0Ovp", + "mangledName": "$s11VideoSDKRTC19StableHistogramDataC22aggregationTemporalityAA011AggregationG0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19StableHistogramDataC22aggregationTemporalityAA011AggregationG0Ovg", + "mangledName": "$s11VideoSDKRTC19StableHistogramDataC22aggregationTemporalityAA011AggregationG0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19StableHistogramDataC", + "mangledName": "$s11VideoSDKRTC19StableHistogramDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC16StableMetricDataV0E0C", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.StableMetricData.Data" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StableExponentialHistogramData", + "printedName": "StableExponentialHistogramData", + "children": [ + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30StableExponentialHistogramDataC22aggregationTemporalityAA011AggregationH0Ovp", + "mangledName": "$s11VideoSDKRTC30StableExponentialHistogramDataC22aggregationTemporalityAA011AggregationH0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30StableExponentialHistogramDataC22aggregationTemporalityAA011AggregationH0Ovg", + "mangledName": "$s11VideoSDKRTC30StableExponentialHistogramDataC22aggregationTemporalityAA011AggregationH0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC30StableExponentialHistogramDataC", + "mangledName": "$s11VideoSDKRTC30StableExponentialHistogramDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC16StableMetricDataV0E0C", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.StableMetricData.Data" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StableGaugeData", + "printedName": "StableGaugeData", + "children": [ + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15StableGaugeDataC22aggregationTemporalityAA011AggregationG0Ovp", + "mangledName": "$s11VideoSDKRTC15StableGaugeDataC22aggregationTemporalityAA011AggregationG0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15StableGaugeDataC22aggregationTemporalityAA011AggregationG0Ovg", + "mangledName": "$s11VideoSDKRTC15StableGaugeDataC22aggregationTemporalityAA011AggregationG0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC15StableGaugeDataC", + "mangledName": "$s11VideoSDKRTC15StableGaugeDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC16StableMetricDataV0E0C", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.StableMetricData.Data" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StableSumData", + "printedName": "StableSumData", + "children": [ + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13StableSumDataC22aggregationTemporalityAA011AggregationG0Ovp", + "mangledName": "$s11VideoSDKRTC13StableSumDataC22aggregationTemporalityAA011AggregationG0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13StableSumDataC22aggregationTemporalityAA011AggregationG0Ovg", + "mangledName": "$s11VideoSDKRTC13StableSumDataC22aggregationTemporalityAA011AggregationG0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC13StableSumDataC", + "mangledName": "$s11VideoSDKRTC13StableSumDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC16StableMetricDataV0E0C", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.StableMetricData.Data" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StableSummaryData", + "printedName": "StableSummaryData", + "children": [ + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17StableSummaryDataC22aggregationTemporalityAA011AggregationG0Ovp", + "mangledName": "$s11VideoSDKRTC17StableSummaryDataC22aggregationTemporalityAA011AggregationG0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17StableSummaryDataC22aggregationTemporalityAA011AggregationG0Ovg", + "mangledName": "$s11VideoSDKRTC17StableSummaryDataC22aggregationTemporalityAA011AggregationG0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC17StableSummaryDataC", + "mangledName": "$s11VideoSDKRTC17StableSummaryDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC16StableMetricDataV0E0C", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.StableMetricData.Data" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableMetricExporter", + "printedName": "StableMetricExporter", + "children": [ + { + "kind": "Function", + "name": "export", + "printedName": "export(metrics:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.StableMetricData]", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20StableMetricExporterP6export7metricsAA12ExportResultOSayAA0cD4DataVG_tF", + "mangledName": "$s11VideoSDKRTC20StableMetricExporterP6export7metricsAA12ExportResultOSayAA0cD4DataVG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMetricExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20StableMetricExporterP5flushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC20StableMetricExporterP5flushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMetricExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20StableMetricExporterP8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC20StableMetricExporterP8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMetricExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDefaultAggregation", + "printedName": "getDefaultAggregation(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20StableMetricExporterPAAE21getDefaultAggregation3forAA0H0_pAA14InstrumentTypeO_tF", + "mangledName": "$s11VideoSDKRTC20StableMetricExporterPAAE21getDefaultAggregation3forAA0H0_pAA14InstrumentTypeO_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMetricExporter>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC20StableMetricExporterP", + "mangledName": "$s11VideoSDKRTC20StableMetricExporterP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.AggregationTemporalitySelectorProtocol, τ_0_0 : VideoSDKRTC.DefaultAggregationSelector>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DefaultAggregationSelector", + "printedName": "DefaultAggregationSelector", + "usr": "s:11VideoSDKRTC26DefaultAggregationSelectorP", + "mangledName": "$s11VideoSDKRTC26DefaultAggregationSelectorP" + }, + { + "kind": "Conformance", + "name": "AggregationTemporalitySelectorProtocol", + "printedName": "AggregationTemporalitySelectorProtocol", + "usr": "s:11VideoSDKRTC38AggregationTemporalitySelectorProtocolP", + "mangledName": "$s11VideoSDKRTC38AggregationTemporalitySelectorProtocolP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableMetricReader", + "printedName": "StableMetricReader", + "children": [ + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18StableMetricReaderP10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC18StableMetricReaderP10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMetricReader>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18StableMetricReaderP8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC18StableMetricReaderP8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMetricReader>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(registration:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CollectionRegistration", + "printedName": "VideoSDKRTC.CollectionRegistration", + "usr": "s:11VideoSDKRTC22CollectionRegistrationP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18StableMetricReaderP8register12registrationyAA22CollectionRegistration_p_tF", + "mangledName": "$s11VideoSDKRTC18StableMetricReaderP8register12registrationyAA22CollectionRegistration_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMetricReader>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC18StableMetricReaderP", + "mangledName": "$s11VideoSDKRTC18StableMetricReaderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.AggregationTemporalitySelectorProtocol, τ_0_0 : VideoSDKRTC.DefaultAggregationSelector>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DefaultAggregationSelector", + "printedName": "DefaultAggregationSelector", + "usr": "s:11VideoSDKRTC26DefaultAggregationSelectorP", + "mangledName": "$s11VideoSDKRTC26DefaultAggregationSelectorP" + }, + { + "kind": "Conformance", + "name": "AggregationTemporalitySelectorProtocol", + "printedName": "AggregationTemporalitySelectorProtocol", + "usr": "s:11VideoSDKRTC38AggregationTemporalitySelectorProtocolP", + "mangledName": "$s11VideoSDKRTC38AggregationTemporalitySelectorProtocolP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableObservableMeasurementSdk", + "printedName": "StableObservableMeasurementSdk", + "children": [ + { + "kind": "Var", + "name": "descriptor", + "printedName": "descriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC10descriptorAA20InstrumentDescriptorVvp", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC10descriptorAA20InstrumentDescriptorVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC10descriptorAA20InstrumentDescriptorVvg", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC10descriptorAA20InstrumentDescriptorVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "storages", + "printedName": "storages", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.AsynchronousMetricStorage]", + "children": [ + { + "kind": "TypeNominal", + "name": "AsynchronousMetricStorage", + "printedName": "VideoSDKRTC.AsynchronousMetricStorage", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC8storagesSayAA25AsynchronousMetricStorageCGvp", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC8storagesSayAA25AsynchronousMetricStorageCGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.AsynchronousMetricStorage]", + "children": [ + { + "kind": "TypeNominal", + "name": "AsynchronousMetricStorage", + "printedName": "VideoSDKRTC.AsynchronousMetricStorage", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC8storagesSayAA25AsynchronousMetricStorageCGvg", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC8storagesSayAA25AsynchronousMetricStorageCGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearActiveReader", + "printedName": "clearActiveReader()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC17clearActiveReaderyyF", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC17clearActiveReaderyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC6record5valueySi_tF", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC6record5valueySi_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC6record5valueySd_tF", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC6record5valueySd_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ObservableLongMeasurement", + "printedName": "ObservableLongMeasurement", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP", + "mangledName": "$s11VideoSDKRTC25ObservableLongMeasurementP" + }, + { + "kind": "Conformance", + "name": "ObservableDoubleMeasurement", + "printedName": "ObservableDoubleMeasurement", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP", + "mangledName": "$s11VideoSDKRTC27ObservableDoubleMeasurementP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StablePeriodicMetricReaderBuilder", + "printedName": "StablePeriodicMetricReaderBuilder", + "children": [ + { + "kind": "Var", + "name": "exporter", + "printedName": "exporter", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricExporter", + "printedName": "VideoSDKRTC.StableMetricExporter", + "usr": "s:11VideoSDKRTC20StableMetricExporterP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC8exporterAA0cE8Exporter_pvp", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC8exporterAA0cE8Exporter_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricExporter", + "printedName": "VideoSDKRTC.StableMetricExporter", + "usr": "s:11VideoSDKRTC20StableMetricExporterP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC8exporterAA0cE8Exporter_pvg", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC8exporterAA0cE8Exporter_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "exporterInterval", + "printedName": "exporterInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC16exporterIntervalSdvp", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC16exporterIntervalSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC16exporterIntervalSdvg", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC16exporterIntervalSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(exporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StablePeriodicMetricReaderBuilder", + "printedName": "VideoSDKRTC.StablePeriodicMetricReaderBuilder", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC" + }, + { + "kind": "TypeNominal", + "name": "StableMetricExporter", + "printedName": "VideoSDKRTC.StableMetricExporter", + "usr": "s:11VideoSDKRTC20StableMetricExporterP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC8exporterAcA0cE8Exporter_p_tcfc", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC8exporterAcA0cE8Exporter_p_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setInterval", + "printedName": "setInterval(timeInterval:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC11setInterval04timeI0ACXDSd_tF", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC11setInterval04timeI0ACXDSd_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "StablePeriodicMetricReaderSdk", + "printedName": "VideoSDKRTC.StablePeriodicMetricReaderSdk", + "usr": "s:11VideoSDKRTC29StablePeriodicMetricReaderSdkC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC5buildAA0cdeF3SdkCyF", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC5buildAA0cdeF3SdkCyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StablePeriodicMetricReaderSdk", + "printedName": "StablePeriodicMetricReaderSdk", + "children": [ + { + "kind": "Function", + "name": "register", + "printedName": "register(registration:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CollectionRegistration", + "printedName": "VideoSDKRTC.CollectionRegistration", + "usr": "s:11VideoSDKRTC22CollectionRegistrationP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29StablePeriodicMetricReaderSdkC8register12registrationyAA22CollectionRegistration_p_tF", + "mangledName": "$s11VideoSDKRTC29StablePeriodicMetricReaderSdkC8register12registrationyAA22CollectionRegistration_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29StablePeriodicMetricReaderSdkC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC29StablePeriodicMetricReaderSdkC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29StablePeriodicMetricReaderSdkC8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC29StablePeriodicMetricReaderSdkC8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAggregationTemporality", + "printedName": "getAggregationTemporality(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29StablePeriodicMetricReaderSdkC25getAggregationTemporality3forAA0iJ0OAA14InstrumentTypeO_tF", + "mangledName": "$s11VideoSDKRTC29StablePeriodicMetricReaderSdkC25getAggregationTemporality3forAA0iJ0OAA14InstrumentTypeO_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDefaultAggregation", + "printedName": "getDefaultAggregation(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29StablePeriodicMetricReaderSdkC21getDefaultAggregation3forAA0J0_pAA14InstrumentTypeO_tF", + "mangledName": "$s11VideoSDKRTC29StablePeriodicMetricReaderSdkC21getDefaultAggregation3forAA0J0_pAA14InstrumentTypeO_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC29StablePeriodicMetricReaderSdkC", + "mangledName": "$s11VideoSDKRTC29StablePeriodicMetricReaderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "StableMetricReader", + "printedName": "StableMetricReader", + "usr": "s:11VideoSDKRTC18StableMetricReaderP", + "mangledName": "$s11VideoSDKRTC18StableMetricReaderP" + }, + { + "kind": "Conformance", + "name": "AggregationTemporalitySelectorProtocol", + "printedName": "AggregationTemporalitySelectorProtocol", + "usr": "s:11VideoSDKRTC38AggregationTemporalitySelectorProtocolP", + "mangledName": "$s11VideoSDKRTC38AggregationTemporalitySelectorProtocolP" + }, + { + "kind": "Conformance", + "name": "DefaultAggregationSelector", + "printedName": "DefaultAggregationSelector", + "usr": "s:11VideoSDKRTC26DefaultAggregationSelectorP", + "mangledName": "$s11VideoSDKRTC26DefaultAggregationSelectorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableView", + "printedName": "StableView", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10StableViewC4nameSSSgvp", + "mangledName": "$s11VideoSDKRTC10StableViewC4nameSSSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10StableViewC4nameSSSgvg", + "mangledName": "$s11VideoSDKRTC10StableViewC4nameSSSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10StableViewC11descriptionSSSgvp", + "mangledName": "$s11VideoSDKRTC10StableViewC11descriptionSSSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10StableViewC11descriptionSSSgvg", + "mangledName": "$s11VideoSDKRTC10StableViewC11descriptionSSSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aggregation", + "printedName": "aggregation", + "children": [ + { + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10StableViewC11aggregationAA11Aggregation_pvp", + "mangledName": "$s11VideoSDKRTC10StableViewC11aggregationAA11Aggregation_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10StableViewC11aggregationAA11Aggregation_pvg", + "mangledName": "$s11VideoSDKRTC10StableViewC11aggregationAA11Aggregation_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributeProcessor", + "printedName": "attributeProcessor", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10StableViewC18attributeProcessorAA09AttributeF0Cvp", + "mangledName": "$s11VideoSDKRTC10StableViewC18attributeProcessorAA09AttributeF0Cvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10StableViewC18attributeProcessorAA09AttributeF0Cvg", + "mangledName": "$s11VideoSDKRTC10StableViewC18attributeProcessorAA09AttributeF0Cvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "builder", + "printedName": "builder()", + "children": [ + { + "kind": "TypeNominal", + "name": "ViewBuilder", + "printedName": "VideoSDKRTC.ViewBuilder", + "usr": "s:11VideoSDKRTC11ViewBuilderC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10StableViewC7builderAA0D7BuilderCyFZ", + "mangledName": "$s11VideoSDKRTC10StableViewC7builderAA0D7BuilderCyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC10StableViewC", + "mangledName": "$s11VideoSDKRTC10StableViewC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableViewRegistry", + "printedName": "StableViewRegistry", + "children": [ + { + "kind": "Function", + "name": "findViews", + "printedName": "findViews(descriptor:meterScope:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.RegisteredView]", + "children": [ + { + "kind": "TypeNominal", + "name": "RegisteredView", + "printedName": "VideoSDKRTC.RegisteredView", + "usr": "s:11VideoSDKRTC14RegisteredViewC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18StableViewRegistryC9findViews10descriptor10meterScopeSayAA010RegisteredD0CGAA20InstrumentDescriptorV_AA015InstrumentationJ4InfoVtF", + "mangledName": "$s11VideoSDKRTC18StableViewRegistryC9findViews10descriptor10meterScopeSayAA010RegisteredD0CGAA20InstrumentDescriptorV_AA015InstrumentationJ4InfoVtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18StableViewRegistryC", + "mangledName": "$s11VideoSDKRTC18StableViewRegistryC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Status", + "printedName": "Status", + "children": [ + { + "kind": "Var", + "name": "ok", + "printedName": "ok", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Status.Type) -> VideoSDKRTC.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC6StatusO2okyA2CmF", + "mangledName": "$s11VideoSDKRTC6StatusO2okyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unset", + "printedName": "unset", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Status.Type) -> VideoSDKRTC.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC6StatusO5unsetyA2CmF", + "mangledName": "$s11VideoSDKRTC6StatusO5unsetyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Status.Type) -> (Swift.String) -> VideoSDKRTC.Status", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideoSDKRTC.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(description: Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC6StatusO5erroryACSS_tcACmF", + "mangledName": "$s11VideoSDKRTC6StatusO5erroryACSS_tcACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "isOk", + "printedName": "isOk", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6StatusO4isOkSbvp", + "mangledName": "$s11VideoSDKRTC6StatusO4isOkSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6StatusO4isOkSbvg", + "mangledName": "$s11VideoSDKRTC6StatusO4isOkSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isError", + "printedName": "isError", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6StatusO7isErrorSbvp", + "mangledName": "$s11VideoSDKRTC6StatusO7isErrorSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6StatusO7isErrorSbvg", + "mangledName": "$s11VideoSDKRTC6StatusO7isErrorSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6StatusO4nameSSvp", + "mangledName": "$s11VideoSDKRTC6StatusO4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6StatusO4nameSSvg", + "mangledName": "$s11VideoSDKRTC6StatusO4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6StatusO4codeSivp", + "mangledName": "$s11VideoSDKRTC6StatusO4codeSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6StatusO4codeSivg", + "mangledName": "$s11VideoSDKRTC6StatusO4codeSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6StatusO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC6StatusO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6StatusO11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC6StatusO11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6StatusO11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC6StatusO11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6StatusO4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC6StatusO4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6StatusO6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC6StatusO6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC6StatusO", + "mangledName": "$s11VideoSDKRTC6StatusO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StringUtils", + "printedName": "StringUtils", + "children": [ + { + "kind": "Function", + "name": "isPrintableString", + "printedName": "isPrintableString(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11StringUtilsV011isPrintableC0ySbSSFZ", + "mangledName": "$s11VideoSDKRTC11StringUtilsV011isPrintableC0ySbSSFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isValidMetricName", + "printedName": "isValidMetricName(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11StringUtilsV17isValidMetricNameySbSSFZ", + "mangledName": "$s11VideoSDKRTC11StringUtilsV17isValidMetricNameySbSSFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC11StringUtilsV", + "mangledName": "$s11VideoSDKRTC11StringUtilsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_NullValue", + "printedName": "Google_Protobuf_NullValue", + "children": [ + { + "kind": "Var", + "name": "nullValue", + "printedName": "nullValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_NullValue.Type) -> VideoSDKRTC.Google_Protobuf_NullValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO04nullF0yA2CmF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO04nullF0yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_NullValue.Type) -> (Swift.Int) -> VideoSDKRTC.Google_Protobuf_NullValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Google_Protobuf_NullValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO12UNRECOGNIZEDyACSicACmF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO12UNRECOGNIZEDyACSicACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueOACycfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueOACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO03rawF0ACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO03rawF0ACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO03rawF0Sivp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO03rawF0Sivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO03rawF0Sivg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO03rawF0Sivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_NullValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_NullValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_NullValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Struct", + "printedName": "Google_Protobuf_Struct", + "children": [ + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructVACycfc", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(dictionaryLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.String, VideoSDKRTC.Google_Protobuf_Value)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, VideoSDKRTC.Google_Protobuf_Value)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV17dictionaryLiteralACSS_AA0c1_D6_ValueVtd_tcfc", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV17dictionaryLiteralACSS_AA0c1_D6_ValueVtd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fields:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV6fieldsACSDySSAA0c1_D6_ValueVG_tcfc", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV6fieldsACSDySSAA0c1_D6_ValueVG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Subscript", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSScip", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSScip", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSScig", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSScig", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSScis", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSScis", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSSciM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSSciM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByDictionaryLiteral", + "printedName": "ExpressibleByDictionaryLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "Key", + "printedName": "Key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Value", + "printedName": "Value", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ] + } + ], + "usr": "s:s30ExpressibleByDictionaryLiteralP", + "mangledName": "$ss30ExpressibleByDictionaryLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Value", + "printedName": "Google_Protobuf_Value", + "children": [ + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nullValue", + "printedName": "nullValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0Ovp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0Ovg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0Ovs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0OvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "numberValue", + "printedName": "numberValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06numberE0Sdvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06numberE0Sdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06numberE0Sdvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06numberE0Sdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06numberE0Sdvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06numberE0Sdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06numberE0SdvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06numberE0SdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "boolValue", + "printedName": "boolValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04boolE0Sbvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04boolE0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04boolE0Sbvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04boolE0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04boolE0Sbvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04boolE0Sbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04boolE0SbvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04boolE0SbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "structValue", + "printedName": "structValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "listValue", + "printedName": "listValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0Vvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0Vvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0Vvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0VvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_Kind", + "printedName": "OneOf_Kind", + "children": [ + { + "kind": "Var", + "name": "nullValue", + "printedName": "nullValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type) -> (VideoSDKRTC.Google_Protobuf_NullValue) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_NullValue) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO04nullE0yAeA0c1_d5_NullE0OcAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO04nullE0yAeA0c1_d5_NullE0OcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "numberValue", + "printedName": "numberValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type) -> (Swift.Double) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO06numberE0yAESdcAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO06numberE0yAESdcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type) -> (Swift.String) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO06stringE0yAESScAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO06stringE0yAESScAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "boolValue", + "printedName": "boolValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type) -> (Swift.Bool) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO04boolE0yAESbcAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO04boolE0yAESbcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "structValue", + "printedName": "structValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type) -> (VideoSDKRTC.Google_Protobuf_Struct) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Struct) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO06structE0yAeA0c1_D7_StructVcAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO06structE0yAeA0c1_D7_StructVcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "listValue", + "printedName": "listValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type) -> (VideoSDKRTC.Google_Protobuf_ListValue) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_ListValue) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO04listE0yAeA0c1_d5_ListE0VcAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO04listE0yAeA0c1_d5_ListE0VcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueVACycfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(integerLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV14integerLiteralACs5Int64V_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV14integerLiteralACs5Int64V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(floatLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV12floatLiteralACSd_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV12floatLiteralACSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(booleanLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV14booleanLiteralACSb_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV14booleanLiteralACSb_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV13stringLiteralACSS_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV13stringLiteralACSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(unicodeScalarLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV20unicodeScalarLiteralACSS_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV20unicodeScalarLiteralACSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(extendedGraphemeClusterLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV30extendedGraphemeClusterLiteralACSS_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV30extendedGraphemeClusterLiteralACSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(nilLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10nilLiteralACyt_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10nilLiteralACyt_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(numberValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06numberE0ACSd_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06numberE0ACSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06stringE0ACSS_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06stringE0ACSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(boolValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04boolE0ACSb_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04boolE0ACSb_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(structValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06structE0AcA0c1_D7_StructV_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06structE0AcA0c1_D7_StructV_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(listValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04listE0AcA0c1_d5_ListE0V_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04listE0AcA0c1_d5_ListE0V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04hashE0Sivp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04hashE0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04hashE0Sivg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04hashE0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByBooleanLiteral", + "printedName": "ExpressibleByBooleanLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "BooleanLiteralType", + "printedName": "BooleanLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "usr": "s:s27ExpressibleByBooleanLiteralP", + "mangledName": "$ss27ExpressibleByBooleanLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByNilLiteral", + "printedName": "ExpressibleByNilLiteral", + "usr": "s:s23ExpressibleByNilLiteralP", + "mangledName": "$ss23ExpressibleByNilLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_ListValue", + "printedName": "Google_Protobuf_ListValue", + "children": [ + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueVACycfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(arrayLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV12arrayLiteralAcA0c1_d1_F0Vd_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV12arrayLiteralAcA0c1_d1_F0Vd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(values:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV6valuesACSayAA0c1_d1_F0VG_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV6valuesACSayAA0c1_d1_F0VG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Subscript", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSicip", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSicip", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSicig", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSicig", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSicis", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSicis", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSiciM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSiciM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByArrayLiteral", + "printedName": "ExpressibleByArrayLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ] + } + ], + "usr": "s:s25ExpressibleByArrayLiteralP", + "mangledName": "$ss25ExpressibleByArrayLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SumAggregation", + "printedName": "SumAggregation", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "SumAggregation", + "printedName": "VideoSDKRTC.SumAggregation", + "usr": "s:11VideoSDKRTC14SumAggregationC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14SumAggregationC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC14SumAggregationC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SumAggregation", + "printedName": "VideoSDKRTC.SumAggregation", + "usr": "s:11VideoSDKRTC14SumAggregationC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14SumAggregationC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC14SumAggregationC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "isCompatible", + "printedName": "isCompatible(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14SumAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "mangledName": "$s11VideoSDKRTC14SumAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createAggregator", + "printedName": "createAggregator(descriptor:exemplarFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableAggregator", + "printedName": "VideoSDKRTC.StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14SumAggregationC16createAggregator10descriptor14exemplarFilterAA06StableF0_pAA20InstrumentDescriptorV_AA08ExemplarI0_ptF", + "mangledName": "$s11VideoSDKRTC14SumAggregationC16createAggregator10descriptor14exemplarFilterAA06StableF0_pAA20InstrumentDescriptorV_AA08ExemplarI0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC14SumAggregationC", + "mangledName": "$s11VideoSDKRTC14SumAggregationC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Aggregation", + "printedName": "Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP", + "mangledName": "$s11VideoSDKRTC11AggregationP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SumAggregator", + "printedName": "SumAggregator", + "children": [ + { + "kind": "Var", + "name": "isMonotonic", + "printedName": "isMonotonic", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13SumAggregatorC11isMonotonicSbvp", + "mangledName": "$s11VideoSDKRTC13SumAggregatorC11isMonotonicSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "Final", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13SumAggregatorC11isMonotonicSbvg", + "mangledName": "$s11VideoSDKRTC13SumAggregatorC11isMonotonicSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC13SumAggregatorC", + "mangledName": "$s11VideoSDKRTC13SumAggregatorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SummaryPointData", + "printedName": "SummaryPointData", + "children": [ + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16SummaryPointDataC5counts6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC5counts6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC5counts6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC5counts6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC5counts6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC5counts6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC5counts6UInt64VvM", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC5counts6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16SummaryPointDataC3sumSdvp", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC3sumSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC3sumSdvg", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC3sumSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC3sumSdvs", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC3sumSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC3sumSdvM", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC3sumSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ValueAtQuantile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.ValueAtQuantile", + "usr": "s:11VideoSDKRTC15ValueAtQuantileP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvp", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ValueAtQuantile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.ValueAtQuantile", + "usr": "s:11VideoSDKRTC15ValueAtQuantileP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvg", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ValueAtQuantile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.ValueAtQuantile", + "usr": "s:11VideoSDKRTC15ValueAtQuantileP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvs", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvM", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16SummaryPointDataC", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC9PointDataC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.PointData" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SwiftProtobufContiguousBytes", + "printedName": "SwiftProtobufContiguousBytes", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(repeating:count:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP9repeating5countxs5UInt8V_Sitcfc", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP9repeating5countxs5UInt8V_Sitcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesPyxqd__cSTRd__s5UInt8V7ElementRtd__lufc", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesPyxqd__cSTRd__s5UInt8V7ElementRtd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SwiftProtobufContiguousBytes, τ_1_0 : Swift.Sequence, τ_1_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP5countSivp", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP5countSivp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP5countSivg", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP5countSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "withUnsafeBytes", + "printedName": "withUnsafeBytes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.UnsafeRawBufferPointer) throws -> τ_1_0", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawBufferPointer", + "printedName": "Swift.UnsafeRawBufferPointer", + "usr": "s:SW" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP010withUnsafeF0yqd__qd__SWKXEKlF", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP010withUnsafeF0yqd__qd__SWKXEKlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Rethrows", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "withUnsafeMutableBytes", + "printedName": "withUnsafeMutableBytes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.UnsafeMutableRawBufferPointer) throws -> τ_1_0", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawBufferPointer", + "printedName": "Swift.UnsafeMutableRawBufferPointer", + "usr": "s:Sw" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP017withUnsafeMutableF0yqd__qd__SwKXEKlF", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP017withUnsafeMutableF0yqd__qd__SwKXEKlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Rethrows", + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SynchronousMetricStorage", + "printedName": "SynchronousMetricStorage", + "children": [ + { + "kind": "Var", + "name": "metricDescriptor", + "printedName": "metricDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24SynchronousMetricStorageC16metricDescriptorAA0dG0Vvp", + "mangledName": "$s11VideoSDKRTC24SynchronousMetricStorageC16metricDescriptorAA0dG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24SynchronousMetricStorageC16metricDescriptorAA0dG0Vvg", + "mangledName": "$s11VideoSDKRTC24SynchronousMetricStorageC16metricDescriptorAA0dG0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "collect", + "printedName": "collect(resource:scope:startEpochNanos:epochNanos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24SynchronousMetricStorageC7collect8resource5scope15startEpochNanos05epochK0AA06StableD4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", + "mangledName": "$s11VideoSDKRTC24SynchronousMetricStorageC7collect8resource5scope15startEpochNanos05epochK0AA06StableD4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEmpty", + "printedName": "isEmpty()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24SynchronousMetricStorageC7isEmptySbyF", + "mangledName": "$s11VideoSDKRTC24SynchronousMetricStorageC7isEmptySbyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordLong", + "printedName": "recordLong(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24SynchronousMetricStorageC10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC24SynchronousMetricStorageC10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordDouble", + "printedName": "recordDouble(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24SynchronousMetricStorageC12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC24SynchronousMetricStorageC12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC24SynchronousMetricStorageC", + "mangledName": "$s11VideoSDKRTC24SynchronousMetricStorageC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "MetricStorage", + "printedName": "MetricStorage", + "usr": "s:11VideoSDKRTC13MetricStorageP", + "mangledName": "$s11VideoSDKRTC13MetricStorageP" + }, + { + "kind": "Conformance", + "name": "WritableMetricStorage", + "printedName": "WritableMetricStorage", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP", + "mangledName": "$s11VideoSDKRTC21WritableMetricStorageP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TextFormatDecodingError", + "printedName": "TextFormatDecodingError", + "children": [ + { + "kind": "Var", + "name": "malformedText", + "printedName": "malformedText", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO09malformedC0yA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO09malformedC0yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedNumber", + "printedName": "malformedNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO15malformedNumberyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO15malformedNumberyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "trailingGarbage", + "printedName": "trailingGarbage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO15trailingGarbageyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO15trailingGarbageyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "truncated", + "printedName": "truncated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO9truncatedyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO9truncatedyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "invalidUTF8", + "printedName": "invalidUTF8", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO11invalidUTF8yA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO11invalidUTF8yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "schemaMismatch", + "printedName": "schemaMismatch", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO14schemaMismatchyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO14schemaMismatchyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "missingFieldNames", + "printedName": "missingFieldNames", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO17missingFieldNamesyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO17missingFieldNamesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unknownField", + "printedName": "unknownField", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO12unknownFieldyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO12unknownFieldyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unrecognizedEnumValue", + "printedName": "unrecognizedEnumValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO21unrecognizedEnumValueyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO21unrecognizedEnumValueyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "conflictingOneOf", + "printedName": "conflictingOneOf", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO16conflictingOneOfyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO16conflictingOneOfyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "internalExtensionError", + "printedName": "internalExtensionError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO017internalExtensionF0yA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO017internalExtensionF0yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messageDepthLimit", + "printedName": "messageDepthLimit", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO17messageDepthLimityA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO17messageDepthLimityA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TextFormatDecodingOptions", + "printedName": "TextFormatDecodingOptions", + "children": [ + { + "kind": "Var", + "name": "messageDepthLimit", + "printedName": "messageDepthLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivp", + "mangledName": "$s11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivg", + "mangledName": "$s11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivs", + "mangledName": "$s11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivM", + "mangledName": "$s11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingOptions", + "printedName": "VideoSDKRTC.TextFormatDecodingOptions", + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC25TextFormatDecodingOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV", + "mangledName": "$s11VideoSDKRTC25TextFormatDecodingOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TextFormatEncodingOptions", + "printedName": "TextFormatEncodingOptions", + "children": [ + { + "kind": "Var", + "name": "printUnknownFields", + "printedName": "printUnknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvp", + "mangledName": "$s11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvg", + "mangledName": "$s11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvs", + "mangledName": "$s11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvM", + "mangledName": "$s11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatEncodingOptions", + "printedName": "VideoSDKRTC.TextFormatEncodingOptions", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC25TextFormatEncodingOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsV", + "mangledName": "$s11VideoSDKRTC25TextFormatEncodingOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TextMapBaggagePropagator", + "printedName": "TextMapBaggagePropagator", + "children": [ + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP6fieldsShySSGvp", + "mangledName": "$s11VideoSDKRTC24TextMapBaggagePropagatorP6fieldsShySSGvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP6fieldsShySSGvg", + "mangledName": "$s11VideoSDKRTC24TextMapBaggagePropagatorP6fieldsShySSGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.TextMapBaggagePropagator>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "inject", + "printedName": "inject(baggage:carrier:setter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP6inject7baggage7carrier6setteryAA0E0_p_SDyS2SGzqd__tAA6SetterRd__lF", + "mangledName": "$s11VideoSDKRTC24TextMapBaggagePropagatorP6inject7baggage7carrier6setteryAA0E0_p_SDyS2SGzqd__tAA6SetterRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.TextMapBaggagePropagator, τ_1_0 : VideoSDKRTC.Setter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "extract", + "printedName": "extract(carrier:getter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Baggage?", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP7extract7carrier6getterAA0E0_pSgSDyS2SG_qd__tAA6GetterRd__lF", + "mangledName": "$s11VideoSDKRTC24TextMapBaggagePropagatorP7extract7carrier6getterAA0E0_pSgSDyS2SG_qd__tAA6GetterRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.TextMapBaggagePropagator, τ_1_0 : VideoSDKRTC.Getter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP", + "mangledName": "$s11VideoSDKRTC24TextMapBaggagePropagatorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TextMapPropagator", + "printedName": "TextMapPropagator", + "children": [ + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP6fieldsShySSGvp", + "mangledName": "$s11VideoSDKRTC17TextMapPropagatorP6fieldsShySSGvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP6fieldsShySSGvg", + "mangledName": "$s11VideoSDKRTC17TextMapPropagatorP6fieldsShySSGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.TextMapPropagator>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "inject", + "printedName": "inject(spanContext:carrier:setter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP6inject11spanContext7carrier6setteryAA04SpanH0V_SDyS2SGzqd__tAA6SetterRd__lF", + "mangledName": "$s11VideoSDKRTC17TextMapPropagatorP6inject11spanContext7carrier6setteryAA04SpanH0V_SDyS2SGzqd__tAA6SetterRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.TextMapPropagator, τ_1_0 : VideoSDKRTC.Setter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "extract", + "printedName": "extract(carrier:getter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP7extract7carrier6getterAA11SpanContextVSgSDyS2SG_qd__tAA6GetterRd__lF", + "mangledName": "$s11VideoSDKRTC17TextMapPropagatorP7extract7carrier6getterAA11SpanContextVSgSDyS2SG_qd__tAA6GetterRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.TextMapPropagator, τ_1_0 : VideoSDKRTC.Getter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP", + "mangledName": "$s11VideoSDKRTC17TextMapPropagatorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Setter", + "printedName": "Setter", + "children": [ + { + "kind": "Function", + "name": "set", + "printedName": "set(carrier:key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SetterP3set7carrier3key5valueySDyS2SGz_S2StF", + "mangledName": "$s11VideoSDKRTC6SetterP3set7carrier3key5valueySDyS2SGz_S2StF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Setter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC6SetterP", + "mangledName": "$s11VideoSDKRTC6SetterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Getter", + "printedName": "Getter", + "children": [ + { + "kind": "Function", + "name": "get", + "printedName": "get(carrier:key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6GetterP3get7carrier3keySaySSGSgSDyS2SG_SStF", + "mangledName": "$s11VideoSDKRTC6GetterP3get7carrier3keySaySSGSgSDyS2SG_SStF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Getter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC6GetterP", + "mangledName": "$s11VideoSDKRTC6GetterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Timestamp", + "printedName": "Google_Protobuf_Timestamp", + "children": [ + { + "kind": "Var", + "name": "seconds", + "printedName": "seconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64Vvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64Vvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64Vvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64VvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nanos", + "printedName": "nanos", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32Vvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32Vvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32Vvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32VvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampVACycfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(seconds:nanos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "hasDefaultArg": true, + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "hasDefaultArg": true, + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV7seconds5nanosACs5Int64V_s5Int32Vtcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV7seconds5nanosACs5Int64V_s5Int32Vtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(timeIntervalSince1970:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV21timeIntervalSince1970ACSd_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV21timeIntervalSince1970ACSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(timeIntervalSinceReferenceDate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV30timeIntervalSinceReferenceDateACSd_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV30timeIntervalSinceReferenceDateACSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(date:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV4dateAC10Foundation4DateV_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV4dateAC10Foundation4DateV_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "timeIntervalSince1970", + "printedName": "timeIntervalSince1970", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV21timeIntervalSince1970Sdvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV21timeIntervalSince1970Sdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV21timeIntervalSince1970Sdvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV21timeIntervalSince1970Sdvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeIntervalSinceReferenceDate", + "printedName": "timeIntervalSinceReferenceDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV30timeIntervalSinceReferenceDateSdvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV30timeIntervalSinceReferenceDateSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV30timeIntervalSinceReferenceDateSdvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV30timeIntervalSinceReferenceDateSdvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "date", + "printedName": "date", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV4date10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV4date10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV4date10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV4date10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Trace_V1_TracesData", + "printedName": "Opentelemetry_Proto_Trace_V1_TracesData", + "children": [ + { + "kind": "Var", + "name": "resourceSpans", + "printedName": "resourceSpans", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_TracesData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataVACycfc", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_TracesData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_TracesData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "children": [ + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0Vvp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0Vvg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0Vvs", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0VvM", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasResource", + "printedName": "hasResource", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV03hasG0Sbvp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV03hasG0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV03hasG0Sbvg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV03hasG0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearResource", + "printedName": "clearResource()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05clearG0yyF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05clearG0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "scopeSpans", + "printedName": "scopeSpans", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvs", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvM", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "schemaURL", + "printedName": "schemaURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvs", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvM", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansVACycfc", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "printedName": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "children": [ + { + "kind": "Var", + "name": "scope", + "printedName": "scope", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0VvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasScope", + "printedName": "hasScope", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV03hasG0Sbvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV03hasG0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV03hasG0Sbvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV03hasG0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearScope", + "printedName": "clearScope()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV05clearG0yyF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV05clearG0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "spans", + "printedName": "spans", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "schemaURL", + "printedName": "schemaURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansVACycfc", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "Opentelemetry_Proto_Trace_V1_Span", + "children": [ + { + "kind": "Var", + "name": "traceID", + "printedName": "traceID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "spanID", + "printedName": "spanID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "traceState", + "printedName": "traceState", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "parentSpanID", + "printedName": "parentSpanID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "startTimeUnixNano", + "printedName": "startTimeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "endTimeUnixNano", + "printedName": "endTimeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedAttributesCount", + "printedName": "droppedAttributesCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "events", + "printedName": "events", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event]", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event]", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event]", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedEventsCount", + "printedName": "droppedEventsCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "links", + "printedName": "links", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedLinksCount", + "printedName": "droppedLinksCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Status", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Status", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Status", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasStatus", + "printedName": "hasStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hasStatusSbvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hasStatusSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hasStatusSbvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hasStatusSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearStatus", + "printedName": "clearStatus()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV11clearStatusyyF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV11clearStatusyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SpanKind", + "printedName": "SpanKind", + "children": [ + { + "kind": "Var", + "name": "unspecified", + "printedName": "unspecified", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO11unspecifiedyA2EmF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO11unspecifiedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "internal", + "printedName": "internal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8internalyA2EmF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8internalyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "server", + "printedName": "server", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO6serveryA2EmF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO6serveryA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "client", + "printedName": "client", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO6clientyA2EmF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO6clientyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "producer", + "printedName": "producer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8produceryA2EmF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8produceryA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "consumer", + "printedName": "consumer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8consumeryA2EmF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8consumeryA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type) -> (Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO12UNRECOGNIZEDyAESicAEmF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO12UNRECOGNIZEDyAESicAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindOAEycfc", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvsZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvMZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Event", + "printedName": "Event", + "children": [ + { + "kind": "Var", + "name": "timeUnixNano", + "printedName": "timeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedAttributesCount", + "printedName": "droppedAttributesCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventVAEycfc", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Link", + "printedName": "Link", + "children": [ + { + "kind": "Var", + "name": "traceID", + "printedName": "traceID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "spanID", + "printedName": "spanID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "traceState", + "printedName": "traceState", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedAttributesCount", + "printedName": "droppedAttributesCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkVAEycfc", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV" + }, + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanVACycfc", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Trace_V1_Status", + "printedName": "Opentelemetry_Proto_Trace_V1_Status", + "children": [ + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvp", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvg", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvs", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvM", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvp", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvg", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvs", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvM", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StatusCode", + "printedName": "StatusCode", + "children": [ + { + "kind": "Var", + "name": "unset", + "printedName": "unset", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO5unsetyA2EmF", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO5unsetyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "ok", + "printedName": "ok", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO2okyA2EmF", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO2okyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO5erroryA2EmF", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO5erroryA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type) -> (Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO12UNRECOGNIZEDyAESicAEmF", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO12UNRECOGNIZEDyAESicAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeOAEycfc", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode]", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode]", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode]", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvsZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvMZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode]", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Status", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusVACycfc", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Status", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Status", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "printedName": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "children": [ + { + "kind": "Var", + "name": "resourceSpans", + "printedName": "resourceSpans", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvs", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvM", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestVACycfc", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "printedName": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "children": [ + { + "kind": "Var", + "name": "partialSuccess", + "printedName": "partialSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvs", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0VvM", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPartialSuccess", + "printedName": "hasPartialSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPartialSuccess", + "printedName": "clearPartialSuccess()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV19clearPartialSuccessyyF", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV19clearPartialSuccessyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseVACycfc", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "printedName": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "children": [ + { + "kind": "Var", + "name": "rejectedSpans", + "printedName": "rejectedSpans", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64Vvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64Vvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64Vvs", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64VvM", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorMessage", + "printedName": "errorMessage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvs", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvM", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessVACycfc", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TraceFlags", + "printedName": "TraceFlags", + "children": [ + { + "kind": "Var", + "name": "byte", + "printedName": "byte", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10TraceFlagsV4bytes5UInt8Vvp", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV4bytes5UInt8Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10TraceFlagsV4bytes5UInt8Vvg", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV4bytes5UInt8Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hexString", + "printedName": "hexString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10TraceFlagsV9hexStringSSvp", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV9hexStringSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10TraceFlagsV9hexStringSSvg", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV9hexStringSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceFlagsVACycfc", + "mangledName": "$s11VideoSDKRTC10TraceFlagsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromByte:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceFlagsV8fromByteACs5UInt8V_tcfc", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV8fromByteACs5UInt8V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromHexString:withOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceFlagsV13fromHexString10withOffsetACSS_Sitcfc", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV13fromHexString10withOffsetACSS_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "sampled", + "printedName": "sampled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10TraceFlagsV7sampledSbvp", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV7sampledSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10TraceFlagsV7sampledSbvg", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV7sampledSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setIsSampled", + "printedName": "setIsSampled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceFlagsV12setIsSampledyySbF", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV12setIsSampledyySbF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingIsSampled", + "printedName": "settingIsSampled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceFlagsV16settingIsSampledyACSbF", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV16settingIsSampledyACSbF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10TraceFlagsV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10TraceFlagsV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceFlagsV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + }, + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceFlagsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceFlagsV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC10TraceFlagsV", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TraceId", + "printedName": "TraceId", + "children": [ + { + "kind": "Var", + "name": "size", + "printedName": "size", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV4sizeSivpZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV4sizeSivpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV4sizeSivgZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV4sizeSivgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "invalidId", + "printedName": "invalidId", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV07invalidD0s6UInt64VvpZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV07invalidD0s6UInt64VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV07invalidD0s6UInt64VvgZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV07invalidD0s6UInt64VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "invalid", + "printedName": "invalid", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV7invalidACvpZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV7invalidACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV7invalidACvgZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV7invalidACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "idHi", + "printedName": "idHi", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV4idHis6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC7TraceIdV4idHis6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV4idHis6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC7TraceIdV4idHis6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "idLo", + "printedName": "idLo", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV4idLos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC7TraceIdV4idLos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV4idLos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC7TraceIdV4idLos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(idHi:idLo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdV4idHi0E2LoACs6UInt64V_AGtcfc", + "mangledName": "$s11VideoSDKRTC7TraceIdV4idHi0E2LoACs6UInt64V_AGtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdVACycfc", + "mangledName": "$s11VideoSDKRTC7TraceIdVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "random", + "printedName": "random()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV6randomACyFZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV6randomACyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdV8fromDataAC10Foundation0F0V_tcfc", + "mangledName": "$s11VideoSDKRTC7TraceIdV8fromDataAC10Foundation0F0V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromBytes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdV9fromBytesACSays5UInt8VG_tcfc", + "mangledName": "$s11VideoSDKRTC7TraceIdV9fromBytesACSays5UInt8VG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromBytes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:s10ArraySliceV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdV9fromBytesACs10ArraySliceVys5UInt8VG_tcfc", + "mangledName": "$s11VideoSDKRTC7TraceIdV9fromBytesACs10ArraySliceVys5UInt8VG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromBytes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ], + "usr": "s:s10ArraySliceV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdV9fromBytesACs10ArraySliceVySJG_tcfc", + "mangledName": "$s11VideoSDKRTC7TraceIdV9fromBytesACs10ArraySliceVySJG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "copyBytesTo", + "printedName": "copyBytesTo(dest:destOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "paramValueOwnership": "InOut", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV11copyBytesTo4dest0H6Offsety10Foundation4DataVz_SitF", + "mangledName": "$s11VideoSDKRTC7TraceIdV11copyBytesTo4dest0H6Offsety10Foundation4DataVz_SitF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyBytesTo", + "printedName": "copyBytesTo(dest:destOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV11copyBytesTo4dest0H6OffsetySays5UInt8VGz_SitF", + "mangledName": "$s11VideoSDKRTC7TraceIdV11copyBytesTo4dest0H6OffsetySays5UInt8VGz_SitF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyBytesTo", + "printedName": "copyBytesTo(dest:destOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:s10ArraySliceV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV11copyBytesTo4dest0H6Offsetys10ArraySliceVys5UInt8VGz_SitF", + "mangledName": "$s11VideoSDKRTC7TraceIdV11copyBytesTo4dest0H6Offsetys10ArraySliceVys5UInt8VGz_SitF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromHexString:withOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdV13fromHexString10withOffsetACSS_Sitcfc", + "mangledName": "$s11VideoSDKRTC7TraceIdV13fromHexString10withOffsetACSS_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "isValid", + "printedName": "isValid", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV7isValidSbvp", + "mangledName": "$s11VideoSDKRTC7TraceIdV7isValidSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV7isValidSbvg", + "mangledName": "$s11VideoSDKRTC7TraceIdV7isValidSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hexString", + "printedName": "hexString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV9hexStringSSvp", + "mangledName": "$s11VideoSDKRTC7TraceIdV9hexStringSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV9hexStringSSvg", + "mangledName": "$s11VideoSDKRTC7TraceIdV9hexStringSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rawHigherLong", + "printedName": "rawHigherLong", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV13rawHigherLongs6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC7TraceIdV13rawHigherLongs6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV13rawHigherLongs6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC7TraceIdV13rawHigherLongs6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rawLowerLong", + "printedName": "rawLowerLong", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV12rawLowerLongs6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC7TraceIdV12rawLowerLongs6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV12rawLowerLongs6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC7TraceIdV12rawLowerLongs6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC7TraceIdV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC7TraceIdV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV1loiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV1loiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC7TraceIdV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC7TraceIdV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC7TraceIdV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC7TraceIdV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC7TraceIdV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC7TraceIdV", + "mangledName": "$s11VideoSDKRTC7TraceIdV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Tracer", + "printedName": "Tracer", + "children": [ + { + "kind": "Function", + "name": "spanBuilder", + "printedName": "spanBuilder(spanName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanBuilder", + "printedName": "VideoSDKRTC.SpanBuilder", + "usr": "s:11VideoSDKRTC11SpanBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6TracerP11spanBuilder0D4NameAA04SpanE0_pSS_tF", + "mangledName": "$s11VideoSDKRTC6TracerP11spanBuilder0D4NameAA04SpanE0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Tracer>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC6TracerP", + "mangledName": "$s11VideoSDKRTC6TracerP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TracerProvider", + "printedName": "TracerProvider", + "children": [ + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationName:instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Tracer", + "printedName": "VideoSDKRTC.Tracer", + "usr": "s:11VideoSDKRTC6TracerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14TracerProviderP3get19instrumentationName0F7VersionAA0C0_pSS_SSSgtF", + "mangledName": "$s11VideoSDKRTC14TracerProviderP3get19instrumentationName0F7VersionAA0C0_pSS_SSSgtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.TracerProvider>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14TracerProviderP", + "mangledName": "$s11VideoSDKRTC14TracerProviderP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TracerProviderBuilder", + "printedName": "TracerProviderBuilder", + "children": [ + { + "kind": "Var", + "name": "clock", + "printedName": "clock", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC5clockAA5Clock_pvp", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC5clockAA5Clock_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC5clockAA5Clock_pvg", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC5clockAA5Clock_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "idGenerator", + "printedName": "idGenerator", + "children": [ + { + "kind": "TypeNominal", + "name": "IdGenerator", + "printedName": "VideoSDKRTC.IdGenerator", + "usr": "s:11VideoSDKRTC11IdGeneratorP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC11idGeneratorAA02IdG0_pvp", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC11idGeneratorAA02IdG0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "IdGenerator", + "printedName": "VideoSDKRTC.IdGenerator", + "usr": "s:11VideoSDKRTC11IdGeneratorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC11idGeneratorAA02IdG0_pvg", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC11idGeneratorAA02IdG0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanLimits", + "printedName": "spanLimits", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC10spanLimitsAA04SpanG0Vvp", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC10spanLimitsAA04SpanG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC10spanLimitsAA04SpanG0Vvg", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC10spanLimitsAA04SpanG0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sampler", + "printedName": "sampler", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC7samplerAA7Sampler_pvp", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC7samplerAA7Sampler_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC7samplerAA7Sampler_pvg", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC7samplerAA7Sampler_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanProcessors", + "printedName": "spanProcessors", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC14spanProcessorsSayAA13SpanProcessor_pGvp", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC14spanProcessorsSayAA13SpanProcessor_pGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC14spanProcessorsSayAA13SpanProcessor_pGvg", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC14spanProcessorsSayAA13SpanProcessor_pGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TracerProviderBuilder", + "printedName": "VideoSDKRTC.TracerProviderBuilder", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderCACycfc", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(clock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC4with5clockACXDAA5Clock_p_tF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC4with5clockACXDAA5Clock_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(idGenerator:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "IdGenerator", + "printedName": "VideoSDKRTC.IdGenerator", + "usr": "s:11VideoSDKRTC11IdGeneratorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC4with11idGeneratorACXDAA02IdH0_p_tF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC4with11idGeneratorACXDAA02IdH0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(resource:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC4with8resourceACXDAA8ResourceV_tF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC4with8resourceACXDAA8ResourceV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(spanLimits:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC4with10spanLimitsACXDAA04SpanH0V_tF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC4with10spanLimitsACXDAA04SpanH0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(sampler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC4with7samplerACXDAA7Sampler_p_tF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC4with7samplerACXDAA7Sampler_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(spanProcessor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC3add13spanProcessorACXDAA04SpanH0_p_tF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC3add13spanProcessorACXDAA04SpanH0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(spanProcessors:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC3add14spanProcessorsACXDSayAA13SpanProcessor_pG_tF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC3add14spanProcessorsACXDSayAA13SpanProcessor_pG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "TracerProviderSdk", + "printedName": "VideoSDKRTC.TracerProviderSdk", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC5buildAA0cD3SdkCyF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC5buildAA0cD3SdkCyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TracerProviderSdk", + "printedName": "TracerProviderSdk", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(clock:idGenerator:resource:spanLimits:sampler:spanProcessors:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TracerProviderSdk", + "printedName": "VideoSDKRTC.TracerProviderSdk", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC5ClockP" + }, + { + "kind": "TypeNominal", + "name": "IdGenerator", + "printedName": "VideoSDKRTC.IdGenerator", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC11IdGeneratorP" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC7SamplerP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC5clock11idGenerator8resource10spanLimits7sampler0J10ProcessorsAcA5Clock_p_AA02IdH0_pAA8ResourceVAA04SpanK0VAA7Sampler_pSayAA0Q9Processor_pGtcfc", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC5clock11idGenerator8resource10spanLimits7sampler0J10ProcessorsAcA5Clock_p_AA02IdH0_pAA8ResourceVAA04SpanK0VAA7Sampler_pSayAA0Q9Processor_pGtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationName:instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Tracer", + "printedName": "VideoSDKRTC.Tracer", + "usr": "s:11VideoSDKRTC6TracerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC3get19instrumentationName0G7VersionAA0C0_pSS_SSSgtF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC3get19instrumentationName0G7VersionAA0C0_pSS_SSSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveClock", + "printedName": "getActiveClock()", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC14getActiveClockAA0H0_pyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC14getActiveClockAA0H0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateActiveClock", + "printedName": "updateActiveClock(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC17updateActiveClockyyAA0H0_pF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC17updateActiveClockyyAA0H0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveIdGenerator", + "printedName": "getActiveIdGenerator()", + "children": [ + { + "kind": "TypeNominal", + "name": "IdGenerator", + "printedName": "VideoSDKRTC.IdGenerator", + "usr": "s:11VideoSDKRTC11IdGeneratorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC20getActiveIdGeneratorAA0hI0_pyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC20getActiveIdGeneratorAA0hI0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateActiveIdGenerator", + "printedName": "updateActiveIdGenerator(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IdGenerator", + "printedName": "VideoSDKRTC.IdGenerator", + "usr": "s:11VideoSDKRTC11IdGeneratorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC23updateActiveIdGeneratoryyAA0hI0_pF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC23updateActiveIdGeneratoryyAA0hI0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveResource", + "printedName": "getActiveResource()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC17getActiveResourceAA0H0VyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC17getActiveResourceAA0H0VyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateActiveResource", + "printedName": "updateActiveResource(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC20updateActiveResourceyyAA0H0VF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC20updateActiveResourceyyAA0H0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveSpanLimits", + "printedName": "getActiveSpanLimits()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC19getActiveSpanLimitsAA0hI0VyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC19getActiveSpanLimitsAA0hI0VyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateActiveSpanLimits", + "printedName": "updateActiveSpanLimits(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC22updateActiveSpanLimitsyyAA0hI0VF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC22updateActiveSpanLimitsyyAA0hI0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveSampler", + "printedName": "getActiveSampler()", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC16getActiveSamplerAA0H0_pyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC16getActiveSamplerAA0H0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateActiveSampler", + "printedName": "updateActiveSampler(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC19updateActiveSampleryyAA0H0_pF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC19updateActiveSampleryyAA0H0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveSpanProcessors", + "printedName": "getActiveSpanProcessors()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC23getActiveSpanProcessorsSayAA0H9Processor_pGyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC23getActiveSpanProcessorsSayAA0H9Processor_pGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addSpanProcessor", + "printedName": "addSpanProcessor(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC16addSpanProcessoryyAA0gH0_pF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC16addSpanProcessoryyAA0gH0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resetSpanProcessors", + "printedName": "resetSpanProcessors()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC19resetSpanProcessorsyyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC19resetSpanProcessorsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC8shutdownyyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush(timeout:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC10forceFlush7timeoutySdSg_tF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC10forceFlush7timeoutySdSg_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "TracerProvider", + "printedName": "TracerProvider", + "usr": "s:11VideoSDKRTC14TracerProviderP", + "mangledName": "$s11VideoSDKRTC14TracerProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TracerSdk", + "printedName": "TracerSdk", + "children": [ + { + "kind": "Var", + "name": "instrumentationScopeInfo", + "printedName": "instrumentationScopeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9TracerSdkC24instrumentationScopeInfoAA015InstrumentationfG0Vvp", + "mangledName": "$s11VideoSDKRTC9TracerSdkC24instrumentationScopeInfoAA015InstrumentationfG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9TracerSdkC24instrumentationScopeInfoAA015InstrumentationfG0Vvg", + "mangledName": "$s11VideoSDKRTC9TracerSdkC24instrumentationScopeInfoAA015InstrumentationfG0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "spanBuilder", + "printedName": "spanBuilder(spanName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanBuilder", + "printedName": "VideoSDKRTC.SpanBuilder", + "usr": "s:11VideoSDKRTC11SpanBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9TracerSdkC11spanBuilder0E4NameAA04SpanF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC9TracerSdkC11spanBuilder0E4NameAA04SpanF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC9TracerSdkC", + "mangledName": "$s11VideoSDKRTC9TracerSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Tracer", + "printedName": "Tracer", + "usr": "s:11VideoSDKRTC6TracerP", + "mangledName": "$s11VideoSDKRTC6TracerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TraceState", + "printedName": "TraceState", + "children": [ + { + "kind": "Var", + "name": "entries", + "printedName": "entries", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.TraceState.Entry]", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.TraceState.Entry", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10TraceStateV7entriesSayAC5EntryVGvp", + "mangledName": "$s11VideoSDKRTC10TraceStateV7entriesSayAC5EntryVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.TraceState.Entry]", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.TraceState.Entry", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10TraceStateV7entriesSayAC5EntryVGvg", + "mangledName": "$s11VideoSDKRTC10TraceStateV7entriesSayAC5EntryVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceStateVACycfc", + "mangledName": "$s11VideoSDKRTC10TraceStateVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(entries:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.TraceState?", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.TraceState.Entry]", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.TraceState.Entry", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceStateV7entriesACSgSayAC5EntryVG_tcfc", + "mangledName": "$s11VideoSDKRTC10TraceStateV7entriesACSgSayAC5EntryVG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceStateV3get3keySSSgSS_tF", + "mangledName": "$s11VideoSDKRTC10TraceStateV3get3keySSSgSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setting", + "printedName": "setting(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceStateV7setting3key5valueACSS_SStF", + "mangledName": "$s11VideoSDKRTC10TraceStateV7setting3key5valueACSS_SStF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removing", + "printedName": "removing(key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceStateV8removing3keyACSS_tF", + "mangledName": "$s11VideoSDKRTC10TraceStateV8removing3keyACSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Entry", + "printedName": "Entry", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV3keySSvp", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV3keySSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV3keySSvg", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV3keySSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV5valueSSvp", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV5valueSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV5valueSSvg", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV5valueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.TraceState.Entry?", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.TraceState.Entry", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV3key5valueAESgSS_SStcfc", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV3key5valueAESgSS_SStcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.TraceState.Entry", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV4fromAEs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.TraceState.Entry", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV" + }, + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.TraceState.Entry", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceStateV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC10TraceStateV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + }, + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceStateV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC10TraceStateV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceStateV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC10TraceStateV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC10TraceStateV", + "mangledName": "$s11VideoSDKRTC10TraceStateV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Syntax", + "printedName": "Google_Protobuf_Syntax", + "children": [ + { + "kind": "Var", + "name": "proto2", + "printedName": "proto2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Syntax.Type) -> VideoSDKRTC.Google_Protobuf_Syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO6proto2yA2CmF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO6proto2yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "proto3", + "printedName": "proto3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Syntax.Type) -> VideoSDKRTC.Google_Protobuf_Syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO6proto3yA2CmF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO6proto3yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "editions", + "printedName": "editions", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Syntax.Type) -> VideoSDKRTC.Google_Protobuf_Syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO8editionsyA2CmF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO8editionsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Syntax.Type) -> (Swift.Int) -> VideoSDKRTC.Google_Protobuf_Syntax", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Google_Protobuf_Syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO12UNRECOGNIZEDyACSicACmF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO12UNRECOGNIZEDyACSicACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxOACycfc", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxOACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax?", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Syntax]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Syntax]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Syntax]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Type", + "printedName": "Google_Protobuf_Type", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Field", + "printedName": "VideoSDKRTC.Google_Protobuf_Field", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Field", + "printedName": "VideoSDKRTC.Google_Protobuf_Field", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Field", + "printedName": "VideoSDKRTC.Google_Protobuf_Field", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "oneofs", + "printedName": "oneofs", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sourceContext", + "printedName": "sourceContext", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0Vvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0Vvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0Vvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0VvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSourceContext", + "printedName": "hasSourceContext", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV16hasSourceContextSbvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV16hasSourceContextSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV16hasSourceContextSbvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV16hasSourceContextSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSourceContext", + "printedName": "clearSourceContext()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV18clearSourceContextyyF", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV18clearSourceContextyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "syntax", + "printedName": "syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "edition", + "printedName": "edition", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Type", + "printedName": "VideoSDKRTC.Google_Protobuf_Type", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeVACycfc", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Type", + "printedName": "VideoSDKRTC.Google_Protobuf_Type", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Type", + "printedName": "VideoSDKRTC.Google_Protobuf_Type", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Field", + "printedName": "Google_Protobuf_Field", + "children": [ + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "cardinality", + "printedName": "cardinality", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "number", + "printedName": "number", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32Vvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32Vvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32Vvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32VvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "typeURL", + "printedName": "typeURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "oneofIndex", + "printedName": "oneofIndex", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32Vvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32Vvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32Vvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32VvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "packed", + "printedName": "packed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "jsonName", + "printedName": "jsonName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultValue", + "printedName": "defaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Kind", + "printedName": "Kind", + "children": [ + { + "kind": "Var", + "name": "typeUnknown", + "printedName": "typeUnknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeUnknownyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeUnknownyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeDouble", + "printedName": "typeDouble", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeDoubleyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeDoubleyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeFloat", + "printedName": "typeFloat", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeFloatyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeFloatyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeInt64", + "printedName": "typeInt64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeInt64yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeInt64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeUint64", + "printedName": "typeUint64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeUint64yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeUint64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeInt32", + "printedName": "typeInt32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeInt32yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeInt32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeFixed64", + "printedName": "typeFixed64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeFixed64yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeFixed64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeFixed32", + "printedName": "typeFixed32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeFixed32yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeFixed32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeBool", + "printedName": "typeBool", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO8typeBoolyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO8typeBoolyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeString", + "printedName": "typeString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeStringyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeStringyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeGroup", + "printedName": "typeGroup", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeGroupyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeGroupyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeMessage", + "printedName": "typeMessage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeMessageyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeMessageyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeBytes", + "printedName": "typeBytes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeBytesyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeBytesyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeUint32", + "printedName": "typeUint32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeUint32yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeUint32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeEnum", + "printedName": "typeEnum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO8typeEnumyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO8typeEnumyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeSfixed32", + "printedName": "typeSfixed32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO12typeSfixed32yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO12typeSfixed32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeSfixed64", + "printedName": "typeSfixed64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO12typeSfixed64yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO12typeSfixed64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeSint32", + "printedName": "typeSint32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeSint32yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeSint32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeSint64", + "printedName": "typeSint64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeSint64yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeSint64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> (Swift.Int) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO12UNRECOGNIZEDyAESicAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO12UNRECOGNIZEDyAESicAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindOAEycfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind?", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field.Kind]", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field.Kind]", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field.Kind]", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Cardinality", + "printedName": "Cardinality", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type) -> VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO7unknownyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "optional", + "printedName": "optional", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type) -> VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8optionalyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8optionalyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "required", + "printedName": "required", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type) -> VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8requiredyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8requiredyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "repeated", + "printedName": "repeated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type) -> VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8repeatedyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8repeatedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type) -> (Swift.Int) -> VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO12UNRECOGNIZEDyAESicAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO12UNRECOGNIZEDyAESicAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityOAEycfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality?", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field.Cardinality]", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field.Cardinality]", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field.Cardinality]", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Field", + "printedName": "VideoSDKRTC.Google_Protobuf_Field", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldVACycfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Field", + "printedName": "VideoSDKRTC.Google_Protobuf_Field", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Field", + "printedName": "VideoSDKRTC.Google_Protobuf_Field", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Enum", + "printedName": "Google_Protobuf_Enum", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enumvalue", + "printedName": "enumvalue", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValue", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValue", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValue", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sourceContext", + "printedName": "sourceContext", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0Vvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0Vvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0Vvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0VvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSourceContext", + "printedName": "hasSourceContext", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV16hasSourceContextSbvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV16hasSourceContextSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV16hasSourceContextSbvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV16hasSourceContextSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSourceContext", + "printedName": "clearSourceContext()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV18clearSourceContextyyF", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV18clearSourceContextyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "syntax", + "printedName": "syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "edition", + "printedName": "edition", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Enum", + "printedName": "VideoSDKRTC.Google_Protobuf_Enum", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumVACycfc", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Enum", + "printedName": "VideoSDKRTC.Google_Protobuf_Enum", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Enum", + "printedName": "VideoSDKRTC.Google_Protobuf_Enum", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_EnumValue", + "printedName": "Google_Protobuf_EnumValue", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "number", + "printedName": "number", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32Vvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32Vvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32Vvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32VvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValue", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueVACycfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValue", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValue", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Option", + "printedName": "Google_Protobuf_Option", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasValue", + "printedName": "hasValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV8hasValueSbvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV8hasValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV8hasValueSbvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV8hasValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearValue", + "printedName": "clearValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV10clearValueyyF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV10clearValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionVACycfc", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "UngroupedBatcher", + "printedName": "UngroupedBatcher", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "UngroupedBatcher", + "printedName": "VideoSDKRTC.UngroupedBatcher", + "usr": "s:11VideoSDKRTC16UngroupedBatcherC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16UngroupedBatcherCACycfc", + "mangledName": "$s11VideoSDKRTC16UngroupedBatcherCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "finishCollectionCycle", + "printedName": "finishCollectionCycle()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16UngroupedBatcherC21finishCollectionCycleSayAA6MetricVGyF", + "mangledName": "$s11VideoSDKRTC16UngroupedBatcherC21finishCollectionCycleSayAA6MetricVGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "process", + "printedName": "process(metric:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16UngroupedBatcherC7process6metricyAA6MetricV_tF", + "mangledName": "$s11VideoSDKRTC16UngroupedBatcherC7process6metricyAA6MetricV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16UngroupedBatcherC", + "mangledName": "$s11VideoSDKRTC16UngroupedBatcherC", + "moduleName": "VideoSDKRTC", + "deprecated": true, + "declAttributes": [ + "AccessControl", + "Available", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricProcessor", + "printedName": "MetricProcessor", + "usr": "s:11VideoSDKRTC15MetricProcessorP", + "mangledName": "$s11VideoSDKRTC15MetricProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "UnknownStorage", + "printedName": "UnknownStorage", + "children": [ + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14UnknownStorageV4data10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC14UnknownStorageV4data10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14UnknownStorageV4data10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC14UnknownStorageV4data10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14UnknownStorageVACycfc", + "mangledName": "$s11VideoSDKRTC14UnknownStorageVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14UnknownStorageV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC14UnknownStorageV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14UnknownStorageV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC14UnknownStorageV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14UnknownStorageV", + "mangledName": "$s11VideoSDKRTC14UnknownStorageV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ValueAtQuantile", + "printedName": "ValueAtQuantile", + "children": [ + { + "kind": "Function", + "name": "quantile", + "printedName": "quantile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ValueAtQuantileP8quantileSdyF", + "mangledName": "$s11VideoSDKRTC15ValueAtQuantileP8quantileSdyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ValueAtQuantile>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ValueAtQuantileP5valueSdyF", + "mangledName": "$s11VideoSDKRTC15ValueAtQuantileP5valueSdyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ValueAtQuantile>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC15ValueAtQuantileP", + "mangledName": "$s11VideoSDKRTC15ValueAtQuantileP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Version", + "printedName": "Version", + "children": [ + { + "kind": "Var", + "name": "major", + "printedName": "major", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7VersionV5majorSivpZ", + "mangledName": "$s11VideoSDKRTC7VersionV5majorSivpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7VersionV5majorSivgZ", + "mangledName": "$s11VideoSDKRTC7VersionV5majorSivgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "minor", + "printedName": "minor", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7VersionV5minorSivpZ", + "mangledName": "$s11VideoSDKRTC7VersionV5minorSivpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7VersionV5minorSivgZ", + "mangledName": "$s11VideoSDKRTC7VersionV5minorSivgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "revision", + "printedName": "revision", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7VersionV8revisionSivpZ", + "mangledName": "$s11VideoSDKRTC7VersionV8revisionSivpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7VersionV8revisionSivgZ", + "mangledName": "$s11VideoSDKRTC7VersionV8revisionSivgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "versionString", + "printedName": "versionString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7VersionV13versionStringSSvpZ", + "mangledName": "$s11VideoSDKRTC7VersionV13versionStringSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7VersionV13versionStringSSvgZ", + "mangledName": "$s11VideoSDKRTC7VersionV13versionStringSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC7VersionV", + "mangledName": "$s11VideoSDKRTC7VersionV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "VideoQuality", + "printedName": "VideoQuality", + "children": [ + { + "kind": "Var", + "name": "high", + "printedName": "high", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoQuality.Type) -> VideoSDKRTC.VideoQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A7QualityO4highyA2CmF", + "mangledName": "$s11VideoSDKRTC0A7QualityO4highyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "medium", + "printedName": "medium", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoQuality.Type) -> VideoSDKRTC.VideoQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A7QualityO6mediumyA2CmF", + "mangledName": "$s11VideoSDKRTC0A7QualityO6mediumyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "low", + "printedName": "low", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoQuality.Type) -> VideoSDKRTC.VideoQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A7QualityO3lowyA2CmF", + "mangledName": "$s11VideoSDKRTC0A7QualityO3lowyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC0A7QualityO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC0A7QualityO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC0A7QualityO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC0A7QualityO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.VideoQuality?", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC0A7QualityO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC0A7QualityO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.VideoQuality]", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC0A7QualityO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC0A7QualityO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.VideoQuality]", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC0A7QualityO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC0A7QualityO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC0A7QualityO", + "mangledName": "$s11VideoSDKRTC0A7QualityO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.VideoQuality]", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "VideoSDK", + "printedName": "VideoSDK", + "children": [ + { + "kind": "Function", + "name": "config", + "printedName": "config(token:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC6config5tokenySS_tFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC6config5tokenySS_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initMeeting", + "printedName": "initMeeting(meetingId:participantId:participantName:micEnabled:webcamEnabled:customCameraVideoStream:mode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Meeting", + "printedName": "VideoSDKRTC.Meeting", + "usr": "s:11VideoSDKRTC7MeetingC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomRTCMediaStream", + "printedName": "VideoSDKRTC.CustomRTCMediaStream", + "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Mode?", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC11initMeeting9meetingId011participantG00H4Name10micEnabled06webcamK0012customCameraA6Stream4modeAA0E0CSS_S2SS2bAA014CustomRTCMediaO0CSgAA4ModeOSgtFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC11initMeeting9meetingId011participantG00H4Name10micEnabled06webcamK0012customCameraA6Stream4modeAA0E0CSS_S2SS2bAA014CustomRTCMediaO0CSgAA4ModeOSgtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createCameraVideoTrack", + "printedName": "createCameraVideoTrack(encoderConfig:facingMode:multiStream:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomRTCMediaStream", + "printedName": "VideoSDKRTC.CustomRTCMediaStream", + "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AVFoundation.AVCaptureDevice.Position?", + "children": [ + { + "kind": "TypeNominal", + "name": "Position", + "printedName": "AVFoundation.AVCaptureDevice.Position", + "usr": "c:@E@AVCaptureDevicePosition" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC012createCameraA5Track13encoderConfig10facingMode11multiStreamAA014CustomRTCMediaL0CSgAA0mafH0OSg_So23AVCaptureDevicePositionVSgSbSgtKFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC012createCameraA5Track13encoderConfig10facingMode11multiStreamAA014CustomRTCMediaL0CSgAA0mafH0OSg_So23AVCaptureDevicePositionVSgSbSgtKFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAudioPermissionStatus", + "printedName": "getAudioPermissionStatus()", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC24getAudioPermissionStatusAA013authorisationG0OyFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC24getAudioPermissionStatusAA013authorisationG0OyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getVideoPermissionStatus", + "printedName": "getVideoPermissionStatus()", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC03getA16PermissionStatusAA013authorisationF0OyFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC03getA16PermissionStatusAA013authorisationF0OyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAudioPermission", + "printedName": "getAudioPermission()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC18getAudioPermissionyyFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC18getAudioPermissionyyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getVideoPermission", + "printedName": "getVideoPermission()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC03getA10PermissionyyFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC03getA10PermissionyyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCameras", + "printedName": "getCameras()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC10getCamerasSaySSGyFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC10getCamerasSaySSGyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAudioDevices", + "printedName": "getAudioDevices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC15getAudioDevicesSaySSGyFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC15getAudioDevicesSaySSGyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC0A3SDKC", + "mangledName": "$s11VideoSDKRTC0A3SDKC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "Final" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ViewBuilder", + "printedName": "ViewBuilder", + "children": [ + { + "kind": "Function", + "name": "withName", + "printedName": "withName(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ViewBuilderC8withName4nameACXDSS_tF", + "mangledName": "$s11VideoSDKRTC11ViewBuilderC8withName4nameACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "withDescription", + "printedName": "withDescription(description:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ViewBuilderC15withDescription11descriptionACXDSS_tF", + "mangledName": "$s11VideoSDKRTC11ViewBuilderC15withDescription11descriptionACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "withAggregation", + "printedName": "withAggregation(aggregation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ViewBuilderC15withAggregation11aggregationACXDAA0F0_p_tF", + "mangledName": "$s11VideoSDKRTC11ViewBuilderC15withAggregation11aggregationACXDAA0F0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addAttributeFilter", + "printedName": "addAttributeFilter(keyFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ViewBuilderC18addAttributeFilter03keyG0ACXDSbSSc_tF", + "mangledName": "$s11VideoSDKRTC11ViewBuilderC18addAttributeFilter03keyG0ACXDSbSSc_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addAttributeProcessor", + "printedName": "addAttributeProcessor(processor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ViewBuilderC21addAttributeProcessor9processorACXDAA0fG0C_tF", + "mangledName": "$s11VideoSDKRTC11ViewBuilderC21addAttributeProcessor9processorACXDAA0fG0C_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableView", + "printedName": "VideoSDKRTC.StableView", + "usr": "s:11VideoSDKRTC10StableViewC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ViewBuilderC5buildAA06StableC0CyF", + "mangledName": "$s11VideoSDKRTC11ViewBuilderC5buildAA06StableC0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC11ViewBuilderC", + "mangledName": "$s11VideoSDKRTC11ViewBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Visitor", + "printedName": "Visitor", + "children": [ + { + "kind": "Function", + "name": "visitSingularFloatField", + "printedName": "visitSingularFloatField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitSingularFloatField5value11fieldNumberySf_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitSingularFloatField5value11fieldNumberySf_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularDoubleField", + "printedName": "visitSingularDoubleField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitSingularDoubleField5value11fieldNumberySd_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitSingularDoubleField5value11fieldNumberySd_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularInt32Field", + "printedName": "visitSingularInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitSingularInt32Field5value11fieldNumberys0F0V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitSingularInt32Field5value11fieldNumberys0F0V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularInt64Field", + "printedName": "visitSingularInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitSingularInt64Field5value11fieldNumberys0F0V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitSingularInt64Field5value11fieldNumberys0F0V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularUInt32Field", + "printedName": "visitSingularUInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitSingularUInt32Field5value11fieldNumberys0F0V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitSingularUInt32Field5value11fieldNumberys0F0V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularUInt64Field", + "printedName": "visitSingularUInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitSingularUInt64Field5value11fieldNumberys0F0V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitSingularUInt64Field5value11fieldNumberys0F0V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSInt32Field", + "printedName": "visitSingularSInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitSingularSInt32Field5value11fieldNumberys5Int32V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitSingularSInt32Field5value11fieldNumberys5Int32V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSInt64Field", + "printedName": "visitSingularSInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitSingularSInt64Field5value11fieldNumberys5Int64V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitSingularSInt64Field5value11fieldNumberys5Int64V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularFixed32Field", + "printedName": "visitSingularFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP25visitSingularFixed32Field5value11fieldNumberys6UInt32V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP25visitSingularFixed32Field5value11fieldNumberys6UInt32V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularFixed64Field", + "printedName": "visitSingularFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP25visitSingularFixed64Field5value11fieldNumberys6UInt64V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP25visitSingularFixed64Field5value11fieldNumberys6UInt64V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSFixed32Field", + "printedName": "visitSingularSFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP26visitSingularSFixed32Field5value11fieldNumberys5Int32V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP26visitSingularSFixed32Field5value11fieldNumberys5Int32V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSFixed64Field", + "printedName": "visitSingularSFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP26visitSingularSFixed64Field5value11fieldNumberys5Int64V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP26visitSingularSFixed64Field5value11fieldNumberys5Int64V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularBoolField", + "printedName": "visitSingularBoolField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitSingularBoolField5value11fieldNumberySb_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitSingularBoolField5value11fieldNumberySb_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularStringField", + "printedName": "visitSingularStringField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitSingularStringField5value11fieldNumberySS_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitSingularStringField5value11fieldNumberySS_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularBytesField", + "printedName": "visitSingularBytesField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitSingularBytesField5value11fieldNumbery10Foundation4DataV_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitSingularBytesField5value11fieldNumbery10Foundation4DataV_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularEnumField", + "printedName": "visitSingularEnumField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitSingularEnumField5value11fieldNumberyqd___SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitSingularEnumField5value11fieldNumberyqd___SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularMessageField", + "printedName": "visitSingularMessageField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP25visitSingularMessageField5value11fieldNumberyqd___SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorP25visitSingularMessageField5value11fieldNumberyqd___SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularGroupField", + "printedName": "visitSingularGroupField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitSingularGroupField5value11fieldNumberyqd___SitKAA7MessageRd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitSingularGroupField5value11fieldNumberyqd___SitKAA7MessageRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedFloatField", + "printedName": "visitRepeatedFloatField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitRepeatedFloatField5value11fieldNumberySaySfG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitRepeatedFloatField5value11fieldNumberySaySfG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedDoubleField", + "printedName": "visitRepeatedDoubleField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitRepeatedDoubleField5value11fieldNumberySaySdG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitRepeatedDoubleField5value11fieldNumberySaySdG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedInt32Field", + "printedName": "visitRepeatedInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitRepeatedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitRepeatedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedInt64Field", + "printedName": "visitRepeatedInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitRepeatedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitRepeatedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedUInt32Field", + "printedName": "visitRepeatedUInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitRepeatedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitRepeatedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedUInt64Field", + "printedName": "visitRepeatedUInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitRepeatedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitRepeatedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSInt32Field", + "printedName": "visitRepeatedSInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitRepeatedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitRepeatedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSInt64Field", + "printedName": "visitRepeatedSInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitRepeatedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitRepeatedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedFixed32Field", + "printedName": "visitRepeatedFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP25visitRepeatedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP25visitRepeatedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedFixed64Field", + "printedName": "visitRepeatedFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP25visitRepeatedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP25visitRepeatedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSFixed32Field", + "printedName": "visitRepeatedSFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP26visitRepeatedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP26visitRepeatedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSFixed64Field", + "printedName": "visitRepeatedSFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP26visitRepeatedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP26visitRepeatedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedBoolField", + "printedName": "visitRepeatedBoolField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitRepeatedBoolField5value11fieldNumberySaySbG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitRepeatedBoolField5value11fieldNumberySaySbG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedStringField", + "printedName": "visitRepeatedStringField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitRepeatedStringField5value11fieldNumberySaySSG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitRepeatedStringField5value11fieldNumberySaySSG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedBytesField", + "printedName": "visitRepeatedBytesField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitRepeatedBytesField5value11fieldNumberySay10Foundation4DataVG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitRepeatedBytesField5value11fieldNumberySay10Foundation4DataVG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedEnumField", + "printedName": "visitRepeatedEnumField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitRepeatedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitRepeatedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedMessageField", + "printedName": "visitRepeatedMessageField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP25visitRepeatedMessageField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorP25visitRepeatedMessageField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedGroupField", + "printedName": "visitRepeatedGroupField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitRepeatedGroupField5value11fieldNumberySayqd__G_SitKAA7MessageRd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitRepeatedGroupField5value11fieldNumberySayqd__G_SitKAA7MessageRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedFloatField", + "printedName": "visitPackedFloatField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP21visitPackedFloatField5value11fieldNumberySaySfG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP21visitPackedFloatField5value11fieldNumberySaySfG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedDoubleField", + "printedName": "visitPackedDoubleField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitPackedDoubleField5value11fieldNumberySaySdG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitPackedDoubleField5value11fieldNumberySaySdG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedInt32Field", + "printedName": "visitPackedInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP21visitPackedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP21visitPackedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedInt64Field", + "printedName": "visitPackedInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP21visitPackedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP21visitPackedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedUInt32Field", + "printedName": "visitPackedUInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitPackedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitPackedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedUInt64Field", + "printedName": "visitPackedUInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitPackedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitPackedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSInt32Field", + "printedName": "visitPackedSInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitPackedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitPackedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSInt64Field", + "printedName": "visitPackedSInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitPackedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitPackedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedFixed32Field", + "printedName": "visitPackedFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitPackedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitPackedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedFixed64Field", + "printedName": "visitPackedFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitPackedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitPackedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSFixed32Field", + "printedName": "visitPackedSFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitPackedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitPackedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSFixed64Field", + "printedName": "visitPackedSFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitPackedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitPackedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedBoolField", + "printedName": "visitPackedBoolField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP20visitPackedBoolField5value11fieldNumberySaySbG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP20visitPackedBoolField5value11fieldNumberySaySbG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedEnumField", + "printedName": "visitPackedEnumField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP20visitPackedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorP20visitPackedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitMapField", + "printedName": "visitMapField(fieldType:value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._ProtobufMap<τ_1_0, τ_1_1>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProtobufMap", + "printedName": "VideoSDKRTC._ProtobufMap<τ_1_0, τ_1_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:11VideoSDKRTC12_ProtobufMapV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_1_0.BaseType : τ_1_1.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_1.BaseType" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP13visitMapField9fieldType5value0G6NumberyAA09_ProtobufE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__AKQyd_0_GSitKAA0e3KeyH0Rd__AA0e5ValueH0Rd_0_r0_lF", + "mangledName": "$s11VideoSDKRTC7VisitorP13visitMapField9fieldType5value0G6NumberyAA09_ProtobufE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__AKQyd_0_GSitKAA0e3KeyH0Rd__AA0e5ValueH0Rd_0_r0_lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0, τ_1_1 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.MapKeyType, τ_1_1 : VideoSDKRTC.MapValueType>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitMapField", + "printedName": "visitMapField(fieldType:value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._ProtobufEnumMap<τ_1_0, τ_1_1>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProtobufEnumMap", + "printedName": "VideoSDKRTC._ProtobufEnumMap<τ_1_0, τ_1_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:11VideoSDKRTC16_ProtobufEnumMapV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_1_0.BaseType : τ_1_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP13visitMapField9fieldType5value0G6NumberyAA013_ProtobufEnumE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GSitKAA0e3KeyH0Rd__AA0L0Rd_0_Si8RawValueRtd_0_r0_lF", + "mangledName": "$s11VideoSDKRTC7VisitorP13visitMapField9fieldType5value0G6NumberyAA013_ProtobufEnumE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GSitKAA0e3KeyH0Rd__AA0L0Rd_0_Si8RawValueRtd_0_r0_lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0, τ_1_1 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.MapKeyType, τ_1_1 : VideoSDKRTC.Enum, τ_1_1.RawValue == Swift.Int>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitMapField", + "printedName": "visitMapField(fieldType:value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._ProtobufMessageMap<τ_1_0, τ_1_1>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProtobufMessageMap", + "printedName": "VideoSDKRTC._ProtobufMessageMap<τ_1_0, τ_1_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:11VideoSDKRTC19_ProtobufMessageMapV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_1_0.BaseType : τ_1_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP13visitMapField9fieldType5value0G6NumberyAA016_ProtobufMessageE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GSitKAA0e3KeyH0Rd__SHRd_0_AA0L0Rd_0_r0_lF", + "mangledName": "$s11VideoSDKRTC7VisitorP13visitMapField9fieldType5value0G6NumberyAA016_ProtobufMessageE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GSitKAA0e3KeyH0Rd__SHRd_0_AA0L0Rd_0_r0_lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0, τ_1_1 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.MapKeyType, τ_1_1 : Swift.Hashable, τ_1_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitExtensionFields", + "printedName": "visitExtensionFields(fields:start:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP20visitExtensionFields6fields5start3endyAA0E13FieldValueSetV_S2itKF", + "mangledName": "$s11VideoSDKRTC7VisitorP20visitExtensionFields6fields5start3endyAA0E13FieldValueSetV_S2itKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitExtensionFieldsAsMessageSet", + "printedName": "visitExtensionFieldsAsMessageSet(fields:start:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP32visitExtensionFieldsAsMessageSet6fields5start3endyAA0e10FieldValueI0V_S2itKF", + "mangledName": "$s11VideoSDKRTC7VisitorP32visitExtensionFieldsAsMessageSet6fields5start3endyAA0e10FieldValueI0V_S2itKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitUnknown", + "printedName": "visitUnknown(bytes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP12visitUnknown5bytesy10Foundation4DataV_tKF", + "mangledName": "$s11VideoSDKRTC7VisitorP12visitUnknown5bytesy10Foundation4DataV_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularFloatField", + "printedName": "visitSingularFloatField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitSingularFloatField5value11fieldNumberySf_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitSingularFloatField5value11fieldNumberySf_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularInt32Field", + "printedName": "visitSingularInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitSingularInt32Field5value11fieldNumberys0F0V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitSingularInt32Field5value11fieldNumberys0F0V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularUInt32Field", + "printedName": "visitSingularUInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitSingularUInt32Field5value11fieldNumberys0F0V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitSingularUInt32Field5value11fieldNumberys0F0V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSInt32Field", + "printedName": "visitSingularSInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitSingularSInt32Field5value11fieldNumberys5Int32V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitSingularSInt32Field5value11fieldNumberys5Int32V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSInt64Field", + "printedName": "visitSingularSInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitSingularSInt64Field5value11fieldNumberys5Int64V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitSingularSInt64Field5value11fieldNumberys5Int64V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularFixed32Field", + "printedName": "visitSingularFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE25visitSingularFixed32Field5value11fieldNumberys6UInt32V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE25visitSingularFixed32Field5value11fieldNumberys6UInt32V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularFixed64Field", + "printedName": "visitSingularFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE25visitSingularFixed64Field5value11fieldNumberys6UInt64V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE25visitSingularFixed64Field5value11fieldNumberys6UInt64V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSFixed32Field", + "printedName": "visitSingularSFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE26visitSingularSFixed32Field5value11fieldNumberys5Int32V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE26visitSingularSFixed32Field5value11fieldNumberys5Int32V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSFixed64Field", + "printedName": "visitSingularSFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE26visitSingularSFixed64Field5value11fieldNumberys5Int64V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE26visitSingularSFixed64Field5value11fieldNumberys5Int64V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedFloatField", + "printedName": "visitRepeatedFloatField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitRepeatedFloatField5value11fieldNumberySaySfG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitRepeatedFloatField5value11fieldNumberySaySfG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedDoubleField", + "printedName": "visitRepeatedDoubleField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitRepeatedDoubleField5value11fieldNumberySaySdG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitRepeatedDoubleField5value11fieldNumberySaySdG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedInt32Field", + "printedName": "visitRepeatedInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitRepeatedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitRepeatedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedInt64Field", + "printedName": "visitRepeatedInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitRepeatedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitRepeatedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedUInt32Field", + "printedName": "visitRepeatedUInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitRepeatedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitRepeatedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedUInt64Field", + "printedName": "visitRepeatedUInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitRepeatedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitRepeatedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSInt32Field", + "printedName": "visitRepeatedSInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitRepeatedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitRepeatedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSInt64Field", + "printedName": "visitRepeatedSInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitRepeatedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitRepeatedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedFixed32Field", + "printedName": "visitRepeatedFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE25visitRepeatedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE25visitRepeatedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedFixed64Field", + "printedName": "visitRepeatedFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE25visitRepeatedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE25visitRepeatedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSFixed32Field", + "printedName": "visitRepeatedSFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE26visitRepeatedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE26visitRepeatedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSFixed64Field", + "printedName": "visitRepeatedSFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE26visitRepeatedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE26visitRepeatedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedBoolField", + "printedName": "visitRepeatedBoolField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE22visitRepeatedBoolField5value11fieldNumberySaySbG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE22visitRepeatedBoolField5value11fieldNumberySaySbG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedStringField", + "printedName": "visitRepeatedStringField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitRepeatedStringField5value11fieldNumberySaySSG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitRepeatedStringField5value11fieldNumberySaySSG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedBytesField", + "printedName": "visitRepeatedBytesField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitRepeatedBytesField5value11fieldNumberySay10Foundation4DataVG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitRepeatedBytesField5value11fieldNumberySay10Foundation4DataVG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedEnumField", + "printedName": "visitRepeatedEnumField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE22visitRepeatedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE22visitRepeatedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedMessageField", + "printedName": "visitRepeatedMessageField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE25visitRepeatedMessageField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE25visitRepeatedMessageField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedGroupField", + "printedName": "visitRepeatedGroupField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitRepeatedGroupField5value11fieldNumberySayqd__G_SitKAA7MessageRd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitRepeatedGroupField5value11fieldNumberySayqd__G_SitKAA7MessageRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedFloatField", + "printedName": "visitPackedFloatField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE21visitPackedFloatField5value11fieldNumberySaySfG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE21visitPackedFloatField5value11fieldNumberySaySfG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedDoubleField", + "printedName": "visitPackedDoubleField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE22visitPackedDoubleField5value11fieldNumberySaySdG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE22visitPackedDoubleField5value11fieldNumberySaySdG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedInt32Field", + "printedName": "visitPackedInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE21visitPackedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE21visitPackedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedInt64Field", + "printedName": "visitPackedInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE21visitPackedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE21visitPackedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedUInt32Field", + "printedName": "visitPackedUInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE22visitPackedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE22visitPackedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedUInt64Field", + "printedName": "visitPackedUInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE22visitPackedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE22visitPackedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSInt32Field", + "printedName": "visitPackedSInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE22visitPackedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE22visitPackedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSInt64Field", + "printedName": "visitPackedSInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE22visitPackedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE22visitPackedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedFixed32Field", + "printedName": "visitPackedFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitPackedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitPackedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedFixed64Field", + "printedName": "visitPackedFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitPackedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitPackedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSFixed32Field", + "printedName": "visitPackedSFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitPackedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitPackedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSFixed64Field", + "printedName": "visitPackedSFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitPackedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitPackedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedBoolField", + "printedName": "visitPackedBoolField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE20visitPackedBoolField5value11fieldNumberySaySbG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE20visitPackedBoolField5value11fieldNumberySaySbG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedEnumField", + "printedName": "visitPackedEnumField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE20visitPackedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE20visitPackedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularGroupField", + "printedName": "visitSingularGroupField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitSingularGroupField5value11fieldNumberyqd___SitKAA7MessageRd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitSingularGroupField5value11fieldNumberyqd___SitKAA7MessageRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitExtensionFieldsAsMessageSet", + "printedName": "visitExtensionFieldsAsMessageSet(fields:start:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE32visitExtensionFieldsAsMessageSet6fields5start3endyAA0e10FieldValueI0V_S2itKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE32visitExtensionFieldsAsMessageSet6fields5start3endyAA0e10FieldValueI0V_S2itKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitExtensionFields", + "printedName": "visitExtensionFields(fields:start:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE20visitExtensionFields6fields5start3endyAA0E13FieldValueSetV_S2itKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE20visitExtensionFields6fields5start3endyAA0E13FieldValueSetV_S2itKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC7VisitorP", + "mangledName": "$s11VideoSDKRTC7VisitorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "W3CBaggagePropagator", + "printedName": "W3CBaggagePropagator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "W3CBaggagePropagator", + "printedName": "VideoSDKRTC.W3CBaggagePropagator", + "usr": "s:11VideoSDKRTC20W3CBaggagePropagatorV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20W3CBaggagePropagatorVACycfc", + "mangledName": "$s11VideoSDKRTC20W3CBaggagePropagatorVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20W3CBaggagePropagatorV6fieldsShySSGvp", + "mangledName": "$s11VideoSDKRTC20W3CBaggagePropagatorV6fieldsShySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20W3CBaggagePropagatorV6fieldsShySSGvg", + "mangledName": "$s11VideoSDKRTC20W3CBaggagePropagatorV6fieldsShySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "inject", + "printedName": "inject(baggage:carrier:setter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20W3CBaggagePropagatorV6inject7baggage7carrier6setteryAA7Baggage_p_SDyS2SGzxtAA6SetterRzlF", + "mangledName": "$s11VideoSDKRTC20W3CBaggagePropagatorV6inject7baggage7carrier6setteryAA7Baggage_p_SDyS2SGzxtAA6SetterRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Setter>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "extract", + "printedName": "extract(carrier:getter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Baggage?", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20W3CBaggagePropagatorV7extract7carrier6getterAA7Baggage_pSgSDyS2SG_xtAA6GetterRzlF", + "mangledName": "$s11VideoSDKRTC20W3CBaggagePropagatorV7extract7carrier6getterAA7Baggage_pSgSDyS2SG_xtAA6GetterRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Getter>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20W3CBaggagePropagatorV", + "mangledName": "$s11VideoSDKRTC20W3CBaggagePropagatorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "TextMapBaggagePropagator", + "printedName": "TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP", + "mangledName": "$s11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "W3CTraceContextPropagator", + "printedName": "W3CTraceContextPropagator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "W3CTraceContextPropagator", + "printedName": "VideoSDKRTC.W3CTraceContextPropagator", + "usr": "s:11VideoSDKRTC25W3CTraceContextPropagatorV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25W3CTraceContextPropagatorVACycfc", + "mangledName": "$s11VideoSDKRTC25W3CTraceContextPropagatorVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25W3CTraceContextPropagatorV6fieldsShySSGvp", + "mangledName": "$s11VideoSDKRTC25W3CTraceContextPropagatorV6fieldsShySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25W3CTraceContextPropagatorV6fieldsShySSGvg", + "mangledName": "$s11VideoSDKRTC25W3CTraceContextPropagatorV6fieldsShySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "inject", + "printedName": "inject(spanContext:carrier:setter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25W3CTraceContextPropagatorV6inject04spanE07carrier6setteryAA04SpanE0V_SDyS2SGzxtAA6SetterRzlF", + "mangledName": "$s11VideoSDKRTC25W3CTraceContextPropagatorV6inject04spanE07carrier6setteryAA04SpanE0V_SDyS2SGzxtAA6SetterRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Setter>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "extract", + "printedName": "extract(carrier:getter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25W3CTraceContextPropagatorV7extract7carrier6getterAA04SpanE0VSgSDyS2SG_xtAA6GetterRzlF", + "mangledName": "$s11VideoSDKRTC25W3CTraceContextPropagatorV7extract7carrier6getterAA04SpanE0VSgSDyS2SG_xtAA6GetterRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Getter>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25W3CTraceContextPropagatorV", + "mangledName": "$s11VideoSDKRTC25W3CTraceContextPropagatorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "TextMapPropagator", + "printedName": "TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP", + "mangledName": "$s11VideoSDKRTC17TextMapPropagatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_DoubleValue", + "printedName": "Google_Protobuf_DoubleValue", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DoubleValue", + "printedName": "VideoSDKRTC.Google_Protobuf_DoubleValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueVACycfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DoubleValue", + "printedName": "VideoSDKRTC.Google_Protobuf_DoubleValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueVyACSdcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueVyACSdcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(floatLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DoubleValue", + "printedName": "VideoSDKRTC.Google_Protobuf_DoubleValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV12floatLiteralACSd_tcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV12floatLiteralACSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DoubleValue", + "printedName": "VideoSDKRTC.Google_Protobuf_DoubleValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DoubleValue", + "printedName": "VideoSDKRTC.Google_Protobuf_DoubleValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FloatValue", + "printedName": "Google_Protobuf_FloatValue", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FloatValue", + "printedName": "VideoSDKRTC.Google_Protobuf_FloatValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueVACycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FloatValue", + "printedName": "VideoSDKRTC.Google_Protobuf_FloatValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueVyACSfcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueVyACSfcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(floatLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FloatValue", + "printedName": "VideoSDKRTC.Google_Protobuf_FloatValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV12floatLiteralACSf_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV12floatLiteralACSf_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FloatValue", + "printedName": "VideoSDKRTC.Google_Protobuf_FloatValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FloatValue", + "printedName": "VideoSDKRTC.Google_Protobuf_FloatValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Int64Value", + "printedName": "Google_Protobuf_Int64Value", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0Vvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0Vvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0Vvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0VvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int64Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueVACycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int64Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueVyACs0E0Vcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueVyACs0E0Vcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(integerLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int64Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV14integerLiteralACs0E0V_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV14integerLiteralACs0E0V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int64Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int64Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_UInt64Value", + "printedName": "Google_Protobuf_UInt64Value", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0Vvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0Vvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0Vvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0VvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt64Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueVACycfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt64Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueVyACs0E0Vcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueVyACs0E0Vcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(integerLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt64Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV14integerLiteralACs0E0V_tcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV14integerLiteralACs0E0V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt64Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt64Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Int32Value", + "printedName": "Google_Protobuf_Int32Value", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0Vvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0Vvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0Vvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0VvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int32Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueVACycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int32Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueVyACs0E0Vcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueVyACs0E0Vcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(integerLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int32Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV14integerLiteralACs0E0V_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV14integerLiteralACs0E0V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int32Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int32Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_UInt32Value", + "printedName": "Google_Protobuf_UInt32Value", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0Vvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0Vvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0Vvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0VvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt32Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueVACycfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt32Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueVyACs0E0Vcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueVyACs0E0Vcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(integerLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt32Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV14integerLiteralACs0E0V_tcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV14integerLiteralACs0E0V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt32Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt32Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_BoolValue", + "printedName": "Google_Protobuf_BoolValue", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BoolValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BoolValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueVACycfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BoolValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BoolValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueVyACSbcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueVyACSbcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(booleanLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BoolValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BoolValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV14booleanLiteralACSb_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV14booleanLiteralACSb_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BoolValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BoolValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BoolValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BoolValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByBooleanLiteral", + "printedName": "ExpressibleByBooleanLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "BooleanLiteralType", + "printedName": "BooleanLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "usr": "s:s27ExpressibleByBooleanLiteralP", + "mangledName": "$ss27ExpressibleByBooleanLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_StringValue", + "printedName": "Google_Protobuf_StringValue", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_StringValue", + "printedName": "VideoSDKRTC.Google_Protobuf_StringValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueVACycfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_StringValue", + "printedName": "VideoSDKRTC.Google_Protobuf_StringValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueVyACSScfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueVyACSScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_StringValue", + "printedName": "VideoSDKRTC.Google_Protobuf_StringValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV13stringLiteralACSS_tcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV13stringLiteralACSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(extendedGraphemeClusterLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_StringValue", + "printedName": "VideoSDKRTC.Google_Protobuf_StringValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV30extendedGraphemeClusterLiteralACSS_tcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV30extendedGraphemeClusterLiteralACSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(unicodeScalarLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_StringValue", + "printedName": "VideoSDKRTC.Google_Protobuf_StringValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV20unicodeScalarLiteralACSS_tcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV20unicodeScalarLiteralACSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_StringValue", + "printedName": "VideoSDKRTC.Google_Protobuf_StringValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_StringValue", + "printedName": "VideoSDKRTC.Google_Protobuf_StringValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_BytesValue", + "printedName": "Google_Protobuf_BytesValue", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BytesValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BytesValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueVACycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BytesValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BytesValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueVyAC10Foundation4DataVcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueVyAC10Foundation4DataVcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BytesValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BytesValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BytesValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BytesValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AsyncSequence", + "printedName": "AsyncSequence", + "children": [ + { + "kind": "Function", + "name": "binaryProtobufDelimitedMessages", + "printedName": "binaryProtobufDelimitedMessages(of:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AsyncMessageSequence", + "printedName": "VideoSDKRTC.AsyncMessageSequence<τ_0_0, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_1_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:Sci11VideoSDKRTCs5UInt8V7ElementRtzrlE31binaryProtobufDelimitedMessages2of10extensions7partial7optionsAA20AsyncMessageSequenceVyxqd__Gqd__m_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtAA0N0Rd__lF", + "mangledName": "$sSci11VideoSDKRTCs5UInt8V7ElementRtzrlE31binaryProtobufDelimitedMessages2of10extensions7partial7optionsAA20AsyncMessageSequenceVyxqd__Gqd__m_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtAA0N0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : _Concurrency.AsyncSequence, τ_1_0 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "Inlinable", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:Sci", + "mangledName": "$sSci", + "moduleName": "_Concurrency", + "genericSig": "<τ_0_0.AsyncIterator : _Concurrency.AsyncIteratorProtocol, τ_0_0.Element == τ_0_0.AsyncIterator.Element>", + "sugared_genericSig": "", + "intro_Macosx": "10.15", + "intro_iOS": "13.0", + "intro_tvOS": "13.0", + "intro_watchOS": "6.0", + "declAttributes": [ + "AtRethrows", + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": true + }, + { + "kind": "TypeDecl", + "name": "Data", + "printedName": "Data", + "children": [ + { + "kind": "Function", + "name": "toJSONString", + "printedName": "toJSONString()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV11VideoSDKRTCE12toJSONStringSSyF", + "mangledName": "$s10Foundation4DataV11VideoSDKRTCE12toJSONStringSSyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toJSON", + "printedName": "toJSON()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV11VideoSDKRTCE6toJSONSDySSypGyF", + "mangledName": "$s10Foundation4DataV11VideoSDKRTCE6toJSONSDySSypGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toJSONArray", + "printedName": "toJSONArray()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV11VideoSDKRTCE11toJSONArraySayypGyF", + "mangledName": "$s10Foundation4DataV11VideoSDKRTCE11toJSONArraySayypGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:10Foundation4DataV", + "mangledName": "$s10Foundation4DataV", + "moduleName": "Foundation", + "intro_Macosx": "10.10", + "intro_iOS": "8.0", + "intro_tvOS": "9.0", + "intro_watchOS": "2.0", + "declAttributes": [ + "Frozen", + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RandomAccessCollection", + "printedName": "RandomAccessCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sk", + "mangledName": "$sSk" + }, + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MutableDataProtocol", + "printedName": "MutableDataProtocol", + "usr": "s:10Foundation19MutableDataProtocolP", + "mangledName": "$s10Foundation19MutableDataProtocolP" + }, + { + "kind": "Conformance", + "name": "ContiguousBytes", + "printedName": "ContiguousBytes", + "usr": "s:10Foundation15ContiguousBytesP", + "mangledName": "$s10Foundation15ContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "DataProtocol", + "printedName": "DataProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "Regions", + "printedName": "Regions", + "children": [ + { + "kind": "TypeNominal", + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:s15CollectionOfOneV" + } + ] + } + ], + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "SwiftProtobufContiguousBytes", + "printedName": "SwiftProtobufContiguousBytes", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "ReferenceConvertible", + "printedName": "ReferenceConvertible", + "children": [ + { + "kind": "TypeWitness", + "name": "ReferenceType", + "printedName": "ReferenceType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ] + } + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Transferable", + "printedName": "Transferable", + "children": [ + { + "kind": "TypeWitness", + "name": "Representation", + "printedName": "Representation", + "children": [ + { + "kind": "TypeNominal", + "name": "OpaqueTypeArchetype", + "printedName": "some CoreTransferable.TransferRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "TransferRepresentation", + "printedName": "CoreTransferable.TransferRepresentation", + "usr": "s:16CoreTransferable22TransferRepresentationP" + }, + { + "kind": "TypeNominal", + "name": "Sendable", + "printedName": "Swift.Sendable", + "usr": "s:s8SendableP" + } + ] + } + ] + } + ], + "usr": "s:16CoreTransferable0B0P", + "mangledName": "$s16CoreTransferable0B0P" + } + ] + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "children": [ + { + "kind": "Function", + "name": "toJSON", + "printedName": "toJSON()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:SS11VideoSDKRTCE6toJSONSDySSypGyF", + "mangledName": "$sSS11VideoSDKRTCE6toJSONSDySSypGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinStringLiteral", + "printedName": "_ExpressibleByBuiltinStringLiteral", + "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", + "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "UTF8View", + "printedName": "UTF8View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UTF16View", + "printedName": "UTF16View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", + "children": [ + { + "kind": "TypeNominal", + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sy", + "mangledName": "$sSy" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", + "children": [ + { + "kind": "TypeWitness", + "name": "StringInterpolation", + "printedName": "StringInterpolation", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" + } + ] + } + ], + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Transferable", + "printedName": "Transferable", + "children": [ + { + "kind": "TypeWitness", + "name": "Representation", + "printedName": "Representation", + "children": [ + { + "kind": "TypeNominal", + "name": "OpaqueTypeArchetype", + "printedName": "some CoreTransferable.TransferRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "TransferRepresentation", + "printedName": "CoreTransferable.TransferRepresentation", + "usr": "s:16CoreTransferable22TransferRepresentationP" + }, + { + "kind": "TypeNominal", + "name": "Sendable", + "printedName": "Swift.Sendable", + "usr": "s:s8SendableP" + } + ] + } + ] + } + ], + "usr": "s:16CoreTransferable0B0P", + "mangledName": "$s16CoreTransferable0B0P" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Dictionary", + "printedName": "Dictionary", + "children": [ + { + "kind": "Function", + "name": "toJSONString", + "printedName": "toJSONString()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:SD11VideoSDKRTCE12toJSONStringSSyF", + "mangledName": "$sSD11VideoSDKRTCE12toJSONStringSSyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:SD", + "mangledName": "$sSD", + "moduleName": "Swift", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", + "sugared_genericSig": "", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(key: τ_0_0, value: τ_0_1)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", + "usr": "s:SD8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(key: τ_0_0, value: τ_0_1)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Index", + "usr": "s:SD5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", + "usr": "s:SD8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Slice", + "printedName": "Swift.Slice<[τ_0_0 : τ_0_1]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:s5SliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices<[τ_0_0 : τ_0_1]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "ExpressibleByDictionaryLiteral", + "printedName": "ExpressibleByDictionaryLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "Key", + "printedName": "Key", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Value", + "printedName": "Value", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ] + } + ], + "usr": "s:s30ExpressibleByDictionaryLiteralP", + "mangledName": "$ss30ExpressibleByDictionaryLiteralP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Array", + "printedName": "Array", + "children": [ + { + "kind": "Function", + "name": "toJSONString", + "printedName": "toJSONString()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:Sa11VideoSDKRTCE12toJSONStringSSyF", + "mangledName": "$sSa11VideoSDKRTCE12toJSONStringSSyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:Sa", + "mangledName": "$sSa", + "moduleName": "Swift", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_DestructorSafeContainer", + "printedName": "_DestructorSafeContainer", + "usr": "s:s24_DestructorSafeContainerP", + "mangledName": "$ss24_DestructorSafeContainerP" + }, + { + "kind": "Conformance", + "name": "SwiftProtobufContiguousBytes", + "printedName": "SwiftProtobufContiguousBytes", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_ArrayProtocol", + "printedName": "_ArrayProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "_Buffer", + "printedName": "_Buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "_ArrayBuffer", + "printedName": "Swift._ArrayBuffer<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s12_ArrayBufferV" + } + ] + } + ], + "usr": "s:s14_ArrayProtocolP", + "mangledName": "$ss14_ArrayProtocolP" + }, + { + "kind": "Conformance", + "name": "RandomAccessCollection", + "printedName": "RandomAccessCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sk", + "mangledName": "$sSk" + }, + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "ExpressibleByArrayLiteral", + "printedName": "ExpressibleByArrayLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:s25ExpressibleByArrayLiteralP", + "mangledName": "$ss25ExpressibleByArrayLiteralP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSArray", + "printedName": "Foundation.NSArray", + "usr": "c:objc(cs)NSArray" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "ContiguousBytes", + "printedName": "ContiguousBytes", + "usr": "s:10Foundation15ContiguousBytesP", + "mangledName": "$s10Foundation15ContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "EncodableWithConfiguration", + "printedName": "EncodableWithConfiguration", + "children": [ + { + "kind": "TypeWitness", + "name": "EncodingConfiguration", + "printedName": "EncodingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.EncodingConfiguration" + } + ] + } + ], + "usr": "s:10Foundation26EncodableWithConfigurationP", + "mangledName": "$s10Foundation26EncodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "DecodableWithConfiguration", + "printedName": "DecodableWithConfiguration", + "children": [ + { + "kind": "TypeWitness", + "name": "DecodingConfiguration", + "printedName": "DecodingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.DecodingConfiguration" + } + ] + } + ], + "usr": "s:10Foundation26DecodableWithConfigurationP", + "mangledName": "$s10Foundation26DecodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "DataProtocol", + "printedName": "DataProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "Regions", + "printedName": "Regions", + "children": [ + { + "kind": "TypeNominal", + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s15CollectionOfOneV" + } + ] + } + ], + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" + }, + { + "kind": "Conformance", + "name": "MutableDataProtocol", + "printedName": "MutableDataProtocol", + "usr": "s:10Foundation19MutableDataProtocolP", + "mangledName": "$s10Foundation19MutableDataProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Encodable", + "printedName": "Encodable", + "children": [ + { + "kind": "Function", + "name": "toJSON", + "printedName": "toJSON()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:SE11VideoSDKRTCE6toJSONSDySSypGyF", + "mangledName": "$sSE11VideoSDKRTCE6toJSONSDySSypGyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toJSONArray", + "printedName": "toJSONArray()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:SE11VideoSDKRTCE11toJSONArraySayypGyF", + "mangledName": "$sSE11VideoSDKRTCE11toJSONArraySayypGyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:SE", + "mangledName": "$sSE", + "moduleName": "Swift", + "isExternal": true + }, + { + "kind": "TypeDecl", + "name": "Double", + "printedName": "Double", + "children": [ + { + "kind": "Var", + "name": "toMilliseconds", + "printedName": "toMilliseconds", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:Sd11VideoSDKRTCE14toMillisecondss6UInt64Vvp", + "mangledName": "$sSd11VideoSDKRTCE14toMillisecondss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:Sd11VideoSDKRTCE14toMillisecondss6UInt64Vvg", + "mangledName": "$sSd11VideoSDKRTCE14toMillisecondss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "toMicroseconds", + "printedName": "toMicroseconds", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:Sd11VideoSDKRTCE14toMicrosecondss6UInt64Vvp", + "mangledName": "$sSd11VideoSDKRTCE14toMicrosecondss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:Sd11VideoSDKRTCE14toMicrosecondss6UInt64Vvg", + "mangledName": "$sSd11VideoSDKRTCE14toMicrosecondss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "toNanoseconds", + "printedName": "toNanoseconds", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:Sd11VideoSDKRTCE13toNanosecondss6UInt64Vvp", + "mangledName": "$sSd11VideoSDKRTCE13toNanosecondss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:Sd11VideoSDKRTCE13toNanosecondss6UInt64Vvg", + "mangledName": "$sSd11VideoSDKRTCE13toNanosecondss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "fromMilliseconds", + "printedName": "fromMilliseconds(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:Sd11VideoSDKRTCE16fromMillisecondsySds5Int64VFZ", + "mangledName": "$sSd11VideoSDKRTCE16fromMillisecondsySds5Int64VFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fromMicroseconds", + "printedName": "fromMicroseconds(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:Sd11VideoSDKRTCE16fromMicrosecondsySds5Int64VFZ", + "mangledName": "$sSd11VideoSDKRTCE16fromMicrosecondsySds5Int64VFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fromNanoseconds", + "printedName": "fromNanoseconds(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:Sd11VideoSDKRTCE15fromNanosecondsySds5Int64VFZ", + "mangledName": "$sSd11VideoSDKRTCE15fromNanosecondsySds5Int64VFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:Sd", + "mangledName": "$sSd", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_CVarArgPassedAsDouble", + "printedName": "_CVarArgPassedAsDouble", + "usr": "s:s22_CVarArgPassedAsDoubleP", + "mangledName": "$ss22_CVarArgPassedAsDoubleP" + }, + { + "kind": "Conformance", + "name": "_CVarArgAligned", + "printedName": "_CVarArgAligned", + "usr": "s:s15_CVarArgAlignedP", + "mangledName": "$ss15_CVarArgAlignedP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "BinaryFloatingPoint", + "printedName": "BinaryFloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "RawSignificand", + "printedName": "RawSignificand", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "RawExponent", + "printedName": "RawExponent", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + } + ], + "usr": "s:SB", + "mangledName": "$sSB" + }, + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "FloatingPoint", + "printedName": "FloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "Exponent", + "printedName": "Exponent", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SF", + "mangledName": "$sSF" + }, + { + "kind": "Conformance", + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinFloatLiteral", + "printedName": "_ExpressibleByBuiltinFloatLiteral", + "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", + "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ + { + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.Double.SIMD2Storage", + "usr": "s:Sd12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.Double.SIMD4Storage", + "usr": "s:Sd12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.Double.SIMD8Storage", + "usr": "s:Sd12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.Double.SIMD16Storage", + "usr": "s:Sd13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.Double.SIMD32Storage", + "usr": "s:Sd13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.Double.SIMD64Storage", + "usr": "s:Sd13SIMD64StorageV" + } + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "VectorArithmetic", + "printedName": "VectorArithmetic", + "usr": "s:7SwiftUI16VectorArithmeticP", + "mangledName": "$s7SwiftUI16VectorArithmeticP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:7SwiftUI18_FormatSpecifiableP", + "mangledName": "$s7SwiftUI18_FormatSpecifiableP" + }, + { + "kind": "Conformance", + "name": "Animatable", + "printedName": "Animatable", + "children": [ + { + "kind": "TypeWitness", + "name": "AnimatableData", + "printedName": "AnimatableData", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:7SwiftUI10AnimatableP", + "mangledName": "$s7SwiftUI10AnimatableP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/ActionEvent.swift", + "kind": "StringLiteral", + "offset": 1339, + "length": 26, + "value": "\"participant-mode-changed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/ActionEvent.swift", + "kind": "StringLiteral", + "offset": 1339, + "length": 26, + "value": "\"participant-mode-changed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Context\/ActivityContextManager.swift", + "kind": "IntegerLiteral", + "offset": 290, + "length": 2, + "value": "-2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Context\/ActivityContextManager.swift", + "kind": "StringLiteral", + "offset": 295, + "length": 22, + "value": "\"_os_activity_current\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Context\/ActivityContextManager.swift", + "kind": "IntegerLiteral", + "offset": 1419, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Context\/ActivityContextManager.swift", + "kind": "IntegerLiteral", + "offset": 1954, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Context\/ActivityContextManager.swift", + "kind": "StringLiteral", + "offset": 2706, + "length": 17, + "value": "\"ActivityContext\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Context\/ActivityContextManager.swift", + "kind": "BooleanLiteral", + "offset": 3309, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "StringLiteral", + "offset": 7502, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "StringLiteral", + "offset": 7678, + "length": 6, + "value": "\".Any\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "IntegerLiteral", + "offset": 7741, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "StringLiteral", + "offset": 7761, + "length": 10, + "value": "\"type_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "IntegerLiteral", + "offset": 7778, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "StringLiteral", + "offset": 7794, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "IntegerLiteral", + "offset": 8561, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "IntegerLiteral", + "offset": 8652, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "IntegerLiteral", + "offset": 9066, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "IntegerLiteral", + "offset": 9194, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "BooleanLiteral", + "offset": 9505, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "BooleanLiteral", + "offset": 9572, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "BooleanLiteral", + "offset": 9590, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 912, + "length": 7, + "value": "\"@type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 1077, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 1645, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 1694, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "IntegerLiteral", + "offset": 2405, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 2776, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 3850, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 4362, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 5432, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 6007, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 6290, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 6376, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 9690, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "IntegerLiteral", + "offset": 10003, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "IntegerLiteral", + "offset": 10120, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "IntegerLiteral", + "offset": 10965, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 12595, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 14083, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 14523, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 14899, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 15710, + "length": 4, + "value": "\"{}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 15805, + "length": 7, + "value": "\"@type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 16517, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 17069, + "length": 7, + "value": "\"@type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 17199, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 18192, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 18316, + "length": 7, + "value": "\"@type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "Array", + "offset": 3517, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "Array", + "offset": 3616, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "Array", + "offset": 5417, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 6188, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 6366, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "Array", + "offset": 6465, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10262, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10438, + "length": 6, + "value": "\".Api\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 10501, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10517, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 10530, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10546, + "length": 9, + "value": "\"methods\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 10562, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10578, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 10594, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10610, + "length": 9, + "value": "\"version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 10626, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10646, + "length": 16, + "value": "\"source_context\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 10669, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10685, + "length": 8, + "value": "\"mixins\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 10700, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10716, + "length": 8, + "value": "\"syntax\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 11139, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 11220, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 11305, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 11390, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 11474, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 11566, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 11650, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 12220, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 12338, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 12456, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 12573, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 12692, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 12812, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 12927, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13113, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13162, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13211, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13260, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13323, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13370, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13417, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13478, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13496, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13668, + "length": 9, + "value": "\".Method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 13734, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13750, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 13763, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13783, + "length": 18, + "value": "\"request_type_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 13808, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13828, + "length": 19, + "value": "\"request_streaming\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 13854, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13874, + "length": 19, + "value": "\"response_type_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 13900, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13920, + "length": 20, + "value": "\"response_streaming\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 13947, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13963, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 13979, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13995, + "length": 8, + "value": "\"syntax\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 14418, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 14499, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 14590, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 14681, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 14773, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 14865, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 14950, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 15224, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 15355, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 15396, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 15488, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 15621, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 15663, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 15756, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 15874, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 15989, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16181, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16244, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16311, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16376, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16445, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16494, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16541, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16602, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16620, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 16791, + "length": 8, + "value": "\".Mixin\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 16856, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 16872, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 16885, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 16901, + "length": 6, + "value": "\"root\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 17322, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 17403, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 17677, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 17788, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 17978, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 18021, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 18082, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 18100, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "BooleanLiteral", + "offset": 1998, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "BooleanLiteral", + "offset": 3941, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 4918, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 4946, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5038, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5077, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5099, + "length": 2, + "value": "35" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5212, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5220, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5290, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5921, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5926, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5933, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5975, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 6047, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 6079, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 6489, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 6568, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 7159, + "length": 10, + "value": "0x7fffffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 7276, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "Array", + "offset": 7329, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/AttributeProcessor.swift", + "kind": "StringLiteral", + "offset": 1465, + "length": 24, + "value": "\"VideoSDKRTC.SimpleAttributeProcessor\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/AttributeProcessor.swift", + "kind": "StringLiteral", + "offset": 1948, + "length": 24, + "value": "\"VideoSDKRTC.JoinedAttributeProcessor\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/AttributesDictionary.swift", + "kind": "IntegerLiteral", + "offset": 633, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/AttributesDictionary.swift", + "kind": "IntegerLiteral", + "offset": 1873, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/AttributesDictionary.swift", + "kind": "Array", + "offset": 2813, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/AttributesDictionary.swift", + "kind": "IntegerLiteral", + "offset": 3653, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/AttributesDictionary.swift", + "kind": "IntegerLiteral", + "offset": 3814, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/AttributesDictionary.swift", + "kind": "IntegerLiteral", + "offset": 3907, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Common\/AttributeValue.swift", + "kind": "StringLiteral", + "offset": 609, + "length": 6, + "value": "\"true\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Common\/AttributeValue.swift", + "kind": "StringLiteral", + "offset": 618, + "length": 7, + "value": "\"false\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Common\/AttributeValue.swift", + "kind": "StringLiteral", + "offset": 2566, + "length": 4, + "value": "\"_0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Common\/AttributeValue.swift", + "kind": "StringLiteral", + "offset": 2566, + "length": 4, + "value": "\"_0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Common\/AttributeValue.swift", + "kind": "IntegerLiteral", + "offset": 2824, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Common\/AttributeValue.swift", + "kind": "StringLiteral", + "offset": 2944, + "length": 45, + "value": "\"Invalid number of keys found, expected one.\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "BooleanLiteral", + "offset": 546, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 609, + "length": 43, + "value": "\"error setting the default audio: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 651, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "Array", + "offset": 793, + "length": 24, + "value": "[(\"Speaker\", \"Speaker\")]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 981, + "length": 19, + "value": "\"iPhone Microphone\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 1004, + "length": 10, + "value": "\"Receiver\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "BooleanLiteral", + "offset": 1272, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "IntegerLiteral", + "offset": 1347, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 1503, + "length": 17, + "value": "\"microphonewired\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 1561, + "length": 12, + "value": "\"Headphones\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 1612, + "length": 12, + "value": "\"Headphones\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 2536, + "length": 66, + "value": "\"error changing to bluetooth device \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 2601, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 3158, + "length": 65, + "value": "\"error changing to built-in device \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 3222, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 3785, + "length": 60, + "value": "\"error changing to headphones \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 3844, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 4392, + "length": 60, + "value": "\"error changing to headphones \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 4451, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 4898, + "length": 57, + "value": "\"error changing to speaker \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 4954, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 5145, + "length": 12, + "value": "\"headphones\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 5486, + "length": 57, + "value": "\"error changing to speaker \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 5542, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 5717, + "length": 9, + "value": "\"speaker\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 5967, + "length": 57, + "value": "\"error changing to speaker \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 6023, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 6126, + "length": 24, + "value": "\"Device was not changed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "BooleanLiteral", + "offset": 6940, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 7027, + "length": 56, + "value": "\"error adding new device: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 7082, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "BooleanLiteral", + "offset": 7369, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 7456, + "length": 65, + "value": "\"error setting back to old device: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 7520, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Baggage.swift", + "kind": "BooleanLiteral", + "offset": 914, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 300, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 333, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 357, + "length": 4, + "value": "2048" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 389, + "length": 3, + "value": "512" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 2229, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "StringLiteral", + "offset": 2285, + "length": 19, + "value": "\"BatchWorker Queue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 2349, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "BooleanLiteral", + "offset": 3432, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 4511, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 4772, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "StringLiteral", + "offset": 1221, + "length": 11, + "value": "\"VideoSDKRTC.BatchWorker\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 907, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 940, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 980, + "length": 4, + "value": "2048" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 1012, + "length": 3, + "value": "512" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 1513, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 1550, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 3005, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "StringLiteral", + "offset": 3167, + "length": 19, + "value": "\"BatchWorker Queue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 3231, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 4369, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 5439, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 5685, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "StringLiteral", + "offset": 2223, + "length": 11, + "value": "\"VideoSDKRTC.BatchWorker\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 1134, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 1316, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 1988, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 2824, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 2855, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 3013, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "StringLiteral", + "offset": 3241, + "length": 61, + "value": "\"Somehow BinaryDecoding unwound more objects than it started\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 3791, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 4665, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 4833, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 4890, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5036, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5045, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5066, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5093, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5132, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5186, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5195, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5224, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5329, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5353, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5362, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5387, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5418, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5462, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5525, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5534, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5567, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5684, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5727, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5736, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5764, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5773, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5802, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5837, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5899, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6028, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6075, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6084, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6116, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6125, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6158, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6197, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6267, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6408, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6443, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6594, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6603, + "length": 2, + "value": "25" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6635, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6674, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6766, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 6793, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 7625, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 7860, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 8110, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 8230, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 8394, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 8610, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 8733, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 9016, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 9254, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 9507, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 9627, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 9792, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 10008, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 10162, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 10497, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 10787, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 11074, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 11145, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 11603, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 11920, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 12202, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 12481, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 12552, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13002, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13340, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13633, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13923, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 13994, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 14443, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 14725, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 14962, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15224, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 15295, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15716, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 16087, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 16413, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 16740, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 16811, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17312, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17637, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17917, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18194, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 18265, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18712, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 18966, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 19071, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 19280, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 19385, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 19577, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 19700, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 19771, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 20016, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 20207, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 20461, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 20567, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 20776, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 20882, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 21074, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 21198, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 21269, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 21514, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 21706, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 21959, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 22063, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 22271, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 22375, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 22566, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 22688, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 22759, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 23002, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 23192, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 23445, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 23550, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 23758, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 23863, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 24054, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 24177, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 24248, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 24491, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 24682, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 24944, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 24965, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 25182, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 25203, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 25440, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 25466, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 25537, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 25923, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 25963, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 26221, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 26371, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 26661, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 26811, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 27084, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 27256, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 27600, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 27711, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 27921, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 28032, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 28225, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 28354, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 28769, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 29147, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 29525, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 29610, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "Array", + "offset": 30280, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 30555, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 30937, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 31368, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 31639, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 31918, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 32144, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 32423, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 33120, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 33386, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 33594, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 34281, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 34980, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 35372, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 35778, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 35871, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 36647, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 37056, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 37462, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 37579, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 38630, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 39013, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 39419, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 39536, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 40118, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 42556, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 42930, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 44274, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 44394, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 44771, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 44932, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 45268, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 46079, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 47389, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 47831, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 47992, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 48783, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 48870, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 48897, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 49246, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 50158, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 50245, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 50272, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51198, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51356, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51392, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51412, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51429, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51437, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51564, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51597, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 51614, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51645, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51658, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51780, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51820, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51844, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51878, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51912, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51920, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 52049, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 52636, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 53583, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 53763, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 53801, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 54038, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 54218, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 54256, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 54364, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 54525, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 54742, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 54906, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 55841, + "length": 10, + "value": "0x7fffffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecodingOptions.swift", + "kind": "IntegerLiteral", + "offset": 899, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecodingOptions.swift", + "kind": "BooleanLiteral", + "offset": 1717, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "BooleanLiteral", + "offset": 3202, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 3515, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 3670, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 3826, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 3948, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 4350, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "BooleanLiteral", + "offset": 5972, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "BooleanLiteral", + "offset": 7845, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8001, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8117, + "length": 10, + "value": "0x7fffffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8574, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8579, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8586, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8626, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8714, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8797, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8937, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 9118, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 9296, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 9448, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10092, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10224, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10259, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10286, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10298, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10363, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10535, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10559, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "BooleanLiteral", + "offset": 10569, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10634, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10773, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10799, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10807, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10849, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10866, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 993, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 1225, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 1629, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 2338, + "length": 3, + "value": "127" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 2373, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 2380, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 2405, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 2840, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 2844, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4548, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 944, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 3950, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 5557, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 5884, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6213, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6542, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6870, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 7214, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 8731, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 8991, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 9393, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 10519, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 10887, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11256, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11641, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 12027, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 12397, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 14990, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 15435, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 16377, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 16912, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 17268, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 17822, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 17898, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 18579, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 18660, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 19301, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 19385, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 20096, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 3351, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 3355, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 5684, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6060, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6430, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6829, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 7222, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 7601, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 9395, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 9399, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 9638, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 10253, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 10327, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 10484, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 10557, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11024, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11103, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11246, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11318, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11746, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11828, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11971, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 12046, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/BoundCounterMetricSdkBase.swift", + "kind": "StringLiteral", + "offset": 111, + "length": 25, + "value": "\"VideoSDKRTC.BoundCounterMetricSdkBase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/BoundRawCounterMetricSdkBase.swift", + "kind": "StringLiteral", + "offset": 112, + "length": 28, + "value": "\"VideoSDKRTC.BoundRawCounterMetricSdkBase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/BoundRawHistogramMetricSdkBase.swift", + "kind": "StringLiteral", + "offset": 112, + "length": 30, + "value": "\"VideoSDKRTC.BoundRawHistogramMetricSdkBase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "kind": "IntegerLiteral", + "offset": 244, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "kind": "IntegerLiteral", + "offset": 244, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "kind": "IntegerLiteral", + "offset": 244, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Array", + "offset": 289, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1170, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1200, + "length": 8, + "value": "\"roomId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1234, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1268, + "length": 7, + "value": "\"count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1319, + "length": 7, + "value": "\"count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 1338, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 1342, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 1412, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1540, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1593, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1745, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1868, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1913, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 2002, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Dictionary", + "offset": 2100, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 2105, + "length": 9, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 2113, + "length": 20, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 2361, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 2426, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 2530, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Dictionary", + "offset": 3087, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3130, + "length": 9, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3138, + "length": 15, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Dictionary", + "offset": 3342, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3658, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Dictionary", + "offset": 3822, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3839, + "length": 8, + "value": "\"roomId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3858, + "length": 8, + "value": "\"roomId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3881, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3900, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3923, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3940, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3961, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Array", + "offset": 3972, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3988, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Array", + "offset": 3999, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4046, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Array", + "offset": 4126, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Dictionary", + "offset": 4229, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4265, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4314, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4355, + "length": 16, + "value": "\"infrastructure\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 4384, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4428, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 4478, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4599, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4695, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4717, + "length": 10, + "value": "\"codec_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4759, + "length": 11, + "value": "\"mime_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4786, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4829, + "length": 8, + "value": "\"jitter\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4851, + "length": 20, + "value": "\"delta_jitter_ms_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4913, + "length": 9, + "value": "\"bitrate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4936, + "length": 14, + "value": "\"delta_kbs_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4992, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5019, + "length": 23, + "value": "\"delta_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5084, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5101, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5139, + "length": 27, + "value": "\"delta_rtt_connectivity_ms\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 5171, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5213, + "length": 14, + "value": "\"totalPackets\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5241, + "length": 18, + "value": "\"delta_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5301, + "length": 19, + "value": "\"concealmentEvents\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5334, + "length": 26, + "value": "\"delta_concealment_events\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5402, + "length": 30, + "value": "\"removedSampleForAccelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5446, + "length": 40, + "value": "\"delta_removed_samples_for_accelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5528, + "length": 32, + "value": "\"insertedSamplesForDecelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5574, + "length": 41, + "value": "\"delta_inserted_samples_for_decelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5657, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5680, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5735, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5832, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5854, + "length": 11, + "value": "\"codec_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5897, + "length": 11, + "value": "\"mime_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5924, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5967, + "length": 8, + "value": "\"jitter\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5989, + "length": 21, + "value": "\"delta_jitter_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6052, + "length": 9, + "value": "\"bitrate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6075, + "length": 15, + "value": "\"delta_kbs_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6132, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6159, + "length": 24, + "value": "\"delta_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6225, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6242, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6280, + "length": 27, + "value": "\"delta_rtt_connectivity_ms\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 6312, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6354, + "length": 14, + "value": "\"totalPackets\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6382, + "length": 19, + "value": "\"delta_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6443, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6466, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6604, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6700, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Array", + "offset": 6781, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6859, + "length": 6, + "value": "\"1234\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Dictionary", + "offset": 6967, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7002, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7051, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7092, + "length": 16, + "value": "\"infrastructure\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 7121, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7164, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 7214, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7335, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7430, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7452, + "length": 10, + "value": "\"codec_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7494, + "length": 11, + "value": "\"mime_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7521, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7563, + "length": 8, + "value": "\"jitter\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7585, + "length": 20, + "value": "\"delta_jitter_ms_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7646, + "length": 9, + "value": "\"bitrate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7669, + "length": 14, + "value": "\"delta_kbs_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7724, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7751, + "length": 23, + "value": "\"delta_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7815, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7832, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7870, + "length": 27, + "value": "\"delta_rtt_connectivity_ms\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 7902, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7943, + "length": 14, + "value": "\"totalPackets\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7971, + "length": 18, + "value": "\"delta_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8030, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8053, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8107, + "length": 6, + "value": "\"size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8127, + "length": 9, + "value": "\"size_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8178, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8274, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8296, + "length": 11, + "value": "\"codec_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8339, + "length": 11, + "value": "\"mime_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8366, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8408, + "length": 8, + "value": "\"jitter\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8430, + "length": 21, + "value": "\"delta_jitter_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8492, + "length": 9, + "value": "\"bitrate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8515, + "length": 15, + "value": "\"delta_kbs_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8571, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8598, + "length": 24, + "value": "\"delta_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8663, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8680, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8718, + "length": 27, + "value": "\"delta_rtt_connectivity_ms\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 8750, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8791, + "length": 14, + "value": "\"totalPackets\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8819, + "length": 19, + "value": "\"delta_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8879, + "length": 12, + "value": "\"limitation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8905, + "length": 16, + "value": "\"limitation_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8962, + "length": 6, + "value": "\"size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8982, + "length": 10, + "value": "\"size_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 9033, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 9056, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 9211, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 2389, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 2550, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 2713, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 5654, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "Array", + "offset": 6215, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "Array", + "offset": 7193, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "Array", + "offset": 8991, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 9041, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 9783, + "length": 31, + "value": "\"opentelemetry.proto.common.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 9992, + "length": 11, + "value": "\".AnyValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10060, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 10080, + "length": 14, + "value": "\"string_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10101, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 10121, + "length": 12, + "value": "\"bool_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10140, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 10160, + "length": 11, + "value": "\"int_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10178, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 10198, + "length": 14, + "value": "\"double_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10219, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 10239, + "length": 13, + "value": "\"array_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10259, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 10279, + "length": 14, + "value": "\"kvlist_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10300, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 10320, + "length": 13, + "value": "\"bytes_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10748, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 11000, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 11246, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 11493, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 11745, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 11839, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 11909, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 12195, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 12291, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 12361, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 12649, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 13486, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 13669, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 13851, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 14040, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 14228, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 14418, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 14604, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 14858, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 14919, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 14937, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 15128, + "length": 13, + "value": "\".ArrayValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 15199, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 15215, + "length": 8, + "value": "\"values\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 15638, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 15921, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 16153, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 16214, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 16232, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 16424, + "length": 15, + "value": "\".KeyValueList\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 16497, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 16513, + "length": 8, + "value": "\"values\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 16936, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 17219, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 17455, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 17516, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 17534, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 17722, + "length": 11, + "value": "\".KeyValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 17791, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 17807, + "length": 5, + "value": "\"key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 17819, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 17835, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 18257, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 18337, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 18909, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 19020, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 19246, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 19293, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 19354, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 19372, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 19575, + "length": 23, + "value": "\".InstrumentationScope\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 19656, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 19672, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 19685, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 19701, + "length": 9, + "value": "\"version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 19717, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 19733, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 19752, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 19772, + "length": 26, + "value": "\"dropped_attributes_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 20213, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 20294, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 20378, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 20466, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 20759, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 20876, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 21000, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 21047, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 21143, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 21391, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 21440, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 21495, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 21574, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 21635, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 21653, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/CounterMetricSdk.swift", + "kind": "BooleanLiteral", + "offset": 346, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/CounterMetricSdk.swift", + "kind": "BooleanLiteral", + "offset": 503, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/CounterMetricSdkBase.swift", + "kind": "BooleanLiteral", + "offset": 627, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/CounterMetricSdkBase.swift", + "kind": "BooleanLiteral", + "offset": 778, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/CounterSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 265, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/CounterSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 291, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/CounterSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 584, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 622, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 631, + "length": 3, + "value": "160" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 640, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 2, + "value": "90" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 658, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 669, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 674, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 684, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 697, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 705, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 720, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 760, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 769, + "length": 3, + "value": "320" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 788, + "length": 3, + "value": "180" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 797, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 808, + "length": 3, + "value": "120" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 814, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 824, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 837, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 845, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 860, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 900, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 909, + "length": 3, + "value": "384" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 918, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 928, + "length": 3, + "value": "216" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 937, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 948, + "length": 3, + "value": "180" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 954, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 964, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 977, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 985, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1000, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1040, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1049, + "length": 3, + "value": "640" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1058, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1068, + "length": 3, + "value": "360" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1077, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1088, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1094, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1104, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1117, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1125, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1140, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1180, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1189, + "length": 3, + "value": "960" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1198, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1208, + "length": 3, + "value": "540" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1217, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1228, + "length": 3, + "value": "600" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1234, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1244, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1257, + "length": 2, + "value": "25" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1265, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1280, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1321, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1330, + "length": 4, + "value": "1280" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1340, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1350, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1359, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1370, + "length": 4, + "value": "2000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1377, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1387, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1400, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1408, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1423, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1465, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1474, + "length": 4, + "value": "1920" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1484, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1494, + "length": 4, + "value": "1080" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1515, + "length": 4, + "value": "3000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1522, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1532, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1545, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1553, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1568, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1610, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1619, + "length": 4, + "value": "2560" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1629, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1639, + "length": 4, + "value": "1440" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1649, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1660, + "length": 4, + "value": "5000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1667, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1677, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1690, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1698, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1713, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1755, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1764, + "length": 4, + "value": "3840" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1774, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1784, + "length": 4, + "value": "2160" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1794, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1805, + "length": 4, + "value": "8000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1812, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1822, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1835, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1843, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1858, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1898, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1907, + "length": 3, + "value": "160" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1916, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1926, + "length": 3, + "value": "120" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1935, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1946, + "length": 2, + "value": "80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1951, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1961, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1974, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1982, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1997, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2036, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2045, + "length": 3, + "value": "240" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2054, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2064, + "length": 3, + "value": "180" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2073, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2084, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2090, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2100, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2113, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2121, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2136, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2175, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2184, + "length": 3, + "value": "320" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2193, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2203, + "length": 3, + "value": "240" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2212, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2223, + "length": 3, + "value": "150" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2229, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2239, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2252, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2260, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2275, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2314, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2323, + "length": 3, + "value": "480" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2332, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2342, + "length": 3, + "value": "360" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2351, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2362, + "length": 3, + "value": "225" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2368, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2378, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2391, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2399, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2414, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2453, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2462, + "length": 3, + "value": "640" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2471, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2481, + "length": 3, + "value": "480" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2490, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2501, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2507, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2517, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2530, + "length": 2, + "value": "25" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2538, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2553, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2592, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2601, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2620, + "length": 3, + "value": "540" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2629, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2640, + "length": 3, + "value": "450" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2646, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2656, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2669, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2677, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2692, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2731, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2740, + "length": 3, + "value": "960" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2749, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2759, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2768, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2779, + "length": 4, + "value": "1500" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2786, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2796, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2809, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2817, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2832, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2873, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2882, + "length": 4, + "value": "1440" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2892, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2902, + "length": 4, + "value": "1080" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2912, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2923, + "length": 4, + "value": "2500" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2930, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2940, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2953, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2961, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2976, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3017, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3026, + "length": 4, + "value": "1920" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3036, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3046, + "length": 4, + "value": "1440" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3056, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3067, + "length": 4, + "value": "3500" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3074, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3084, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3097, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3105, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3120, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3387, + "length": 12, + "value": "\"sampleRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3401, + "length": 5, + "value": "16000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3412, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3423, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 12, + "value": "\"sampleSize\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3445, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3453, + "length": 8, + "value": "\"stereo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3463, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3474, + "length": 5, + "value": "\"dtx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3481, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3491, + "length": 5, + "value": "\"fec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3498, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3508, + "length": 17, + "value": "\"maxPlaybackRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3527, + "length": 5, + "value": "16000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3538, + "length": 12, + "value": "\"packetTime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3552, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3560, + "length": 17, + "value": "\"autoGainControl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3579, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3589, + "length": 18, + "value": "\"echoCancellation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3609, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3619, + "length": 18, + "value": "\"noiseSuppression\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3639, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3649, + "length": 14, + "value": "\"channelCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3665, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3698, + "length": 12, + "value": "\"sampleRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3712, + "length": 5, + "value": "32000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3723, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3734, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3742, + "length": 12, + "value": "\"sampleSize\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3756, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3764, + "length": 8, + "value": "\"stereo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3774, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3785, + "length": 5, + "value": "\"dtx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3792, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3802, + "length": 5, + "value": "\"fec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3809, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3819, + "length": 17, + "value": "\"maxPlaybackRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3838, + "length": 5, + "value": "32000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3849, + "length": 12, + "value": "\"packetTime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3863, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3871, + "length": 17, + "value": "\"autoGainControl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3890, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3900, + "length": 18, + "value": "\"echoCancellation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3920, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3930, + "length": 18, + "value": "\"noiseSuppression\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3950, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3960, + "length": 14, + "value": "\"channelCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3976, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4008, + "length": 12, + "value": "\"sampleRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4022, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4033, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4044, + "length": 2, + "value": "40" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4052, + "length": 12, + "value": "\"sampleSize\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4066, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4074, + "length": 8, + "value": "\"stereo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4084, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4095, + "length": 5, + "value": "\"dtx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4102, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4113, + "length": 5, + "value": "\"fec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4120, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4130, + "length": 17, + "value": "\"maxPlaybackRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4149, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4160, + "length": 12, + "value": "\"packetTime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4174, + "length": 2, + "value": "40" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4182, + "length": 17, + "value": "\"autoGainControl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4201, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4212, + "length": 18, + "value": "\"echoCancellation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4232, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4243, + "length": 18, + "value": "\"noiseSuppression\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4263, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4274, + "length": 14, + "value": "\"channelCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4290, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4323, + "length": 12, + "value": "\"sampleRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4337, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4348, + "length": 12, + "value": "\"sampleSize\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4362, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4370, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4381, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4389, + "length": 8, + "value": "\"stereo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4399, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4409, + "length": 5, + "value": "\"dtx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4416, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4427, + "length": 5, + "value": "\"fec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4434, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4444, + "length": 17, + "value": "\"maxPlaybackRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4463, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4474, + "length": 12, + "value": "\"packetTime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4488, + "length": 2, + "value": "40" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4496, + "length": 17, + "value": "\"autoGainControl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4515, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4526, + "length": 18, + "value": "\"echoCancellation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4546, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4557, + "length": 18, + "value": "\"noiseSuppression\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4577, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4588, + "length": 14, + "value": "\"channelCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4604, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4634, + "length": 12, + "value": "\"sampleRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4648, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4659, + "length": 12, + "value": "\"sampleSize\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4673, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4681, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4692, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4701, + "length": 8, + "value": "\"stereo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4711, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4722, + "length": 5, + "value": "\"dtx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4729, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4740, + "length": 5, + "value": "\"fec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4747, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4757, + "length": 17, + "value": "\"maxPlaybackRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4776, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4787, + "length": 12, + "value": "\"packetTime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4801, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4809, + "length": 17, + "value": "\"autoGainControl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4828, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4839, + "length": 18, + "value": "\"echoCancellation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4859, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4870, + "length": 18, + "value": "\"noiseSuppression\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4890, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4901, + "length": 14, + "value": "\"channelCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4917, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4954, + "length": 12, + "value": "\"sampleRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4968, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4979, + "length": 12, + "value": "\"sampleSize\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4993, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5001, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5012, + "length": 3, + "value": "192" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5021, + "length": 8, + "value": "\"stereo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 5031, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5041, + "length": 5, + "value": "\"dtx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 5048, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5059, + "length": 5, + "value": "\"fec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 5066, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5076, + "length": 17, + "value": "\"maxPlaybackRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5095, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5106, + "length": 12, + "value": "\"packetTime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5120, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5128, + "length": 17, + "value": "\"autoGainControl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 5147, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5158, + "length": 18, + "value": "\"echoCancellation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 5178, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5189, + "length": 18, + "value": "\"noiseSuppression\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 5209, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5220, + "length": 14, + "value": "\"channelCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5236, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5463, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5472, + "length": 3, + "value": "640" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5481, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5491, + "length": 3, + "value": "360" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5500, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5511, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5517, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5527, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5540, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5568, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5577, + "length": 4, + "value": "1280" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5587, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5597, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5606, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5617, + "length": 3, + "value": "400" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5623, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5633, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5646, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5675, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5684, + "length": 4, + "value": "1280" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5694, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5704, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5713, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5724, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5731, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5741, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5754, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5785, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5794, + "length": 4, + "value": "1920" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5804, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5814, + "length": 4, + "value": "1080" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5824, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5835, + "length": 4, + "value": "1500" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5842, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5852, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5865, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5896, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5905, + "length": 4, + "value": "1920" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5915, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5925, + "length": 4, + "value": "1080" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5935, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5946, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5953, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5963, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5976, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 864, + "length": 10, + "value": "\"protocol\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 864, + "length": 10, + "value": "\"protocol\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 1565, + "length": 11, + "value": "\"succeeded\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 1565, + "length": 11, + "value": "\"succeeded\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 1917, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 1939, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 1963, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 1981, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 2005, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 2099, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 2123, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 2141, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 2165, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 2187, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 2404, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2465, + "length": 16, + "value": "\"candidate-pair\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2499, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2529, + "length": 13, + "value": "\"inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2569, + "length": 17, + "value": "\"local-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 14, + "value": "\"media-source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2648, + "length": 14, + "value": "\"outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2690, + "length": 18, + "value": "\"remote-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2737, + "length": 20, + "value": "\"remote-inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2787, + "length": 21, + "value": "\"remote-outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2826, + "length": 7, + "value": "\"track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2465, + "length": 16, + "value": "\"candidate-pair\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2499, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2529, + "length": 13, + "value": "\"inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2569, + "length": 17, + "value": "\"local-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 14, + "value": "\"media-source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2648, + "length": 14, + "value": "\"outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2690, + "length": 18, + "value": "\"remote-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2737, + "length": 20, + "value": "\"remote-inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2787, + "length": 21, + "value": "\"remote-outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2826, + "length": 7, + "value": "\"track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2913, + "length": 16, + "value": "\"candidate-pair\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2955, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2980, + "length": 13, + "value": "\"inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3016, + "length": 17, + "value": "\"local-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3060, + "length": 14, + "value": "\"media-source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3098, + "length": 14, + "value": "\"outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3136, + "length": 18, + "value": "\"remote-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3182, + "length": 20, + "value": "\"remote-inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3231, + "length": 21, + "value": "\"remote-outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3282, + "length": 7, + "value": "\"track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3376, + "length": 16, + "value": "\"candidate-pair\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3410, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3440, + "length": 13, + "value": "\"inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3480, + "length": 17, + "value": "\"local-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3521, + "length": 14, + "value": "\"media-source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3559, + "length": 14, + "value": "\"outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3601, + "length": 18, + "value": "\"remote-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3648, + "length": 20, + "value": "\"remote-inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3698, + "length": 21, + "value": "\"remote-outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3737, + "length": 7, + "value": "\"track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3919, + "length": 7, + "value": "\"track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4008, + "length": 13, + "value": "\"codec_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4023, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4035, + "length": 10, + "value": "\"codec_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 4047, + "length": 105, + "value": "[(\"mime_type\", nil), (\"clock_rate\", nil), (\"sdp_fmtp_line\", nil)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4162, + "length": 20, + "value": "\"delta_jitter_ms_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4184, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4195, + "length": 18, + "value": "\"delta_rtt_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 4215, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4228, + "length": 25, + "value": "\"percent_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4255, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4266, + "length": 18, + "value": "\"delta_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4286, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4297, + "length": 23, + "value": "\"delta_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4322, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4333, + "length": 18, + "value": "\"total_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4353, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4364, + "length": 23, + "value": "\"total_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4389, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4400, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4419, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4430, + "length": 17, + "value": "\"delta_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4449, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4460, + "length": 14, + "value": "\"delta_kbs_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4476, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4487, + "length": 14, + "value": "\"timestamp_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 4503, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4516, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4524, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4536, + "length": 26, + "value": "\"total_concealment_events\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4564, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4575, + "length": 26, + "value": "\"delta_concealment_events\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4603, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4614, + "length": 41, + "value": "\"total_inserted_samples_for_decelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4657, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4668, + "length": 41, + "value": "\"delta_inserted_samples_for_decelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4711, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4722, + "length": 40, + "value": "\"total_removed_samples_for_accelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4764, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4775, + "length": 40, + "value": "\"delta_removed_samples_for_accelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4817, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4828, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4877, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4889, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4901, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4916, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5002, + "length": 14, + "value": "\"codec_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5018, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5030, + "length": 11, + "value": "\"codec_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 5043, + "length": 105, + "value": "[(\"mime_type\", nil), (\"clock_rate\", nil), (\"sdp_fmtp_line\", nil)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5158, + "length": 21, + "value": "\"delta_jitter_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5181, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5192, + "length": 18, + "value": "\"delta_rtt_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 5212, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5225, + "length": 26, + "value": "\"percent_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5253, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5264, + "length": 19, + "value": "\"delta_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5285, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5296, + "length": 24, + "value": "\"delta_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5322, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5333, + "length": 19, + "value": "\"total_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5354, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5365, + "length": 24, + "value": "\"total_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5391, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5402, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5422, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5433, + "length": 18, + "value": "\"delta_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5453, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5464, + "length": 15, + "value": "\"delta_kbs_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5481, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5492, + "length": 15, + "value": "\"timestamp_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 5509, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5522, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5530, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5542, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5592, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5605, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5617, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5633, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5711, + "length": 13, + "value": "\"codec_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5726, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5734, + "length": 9, + "value": "\"size_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 5745, + "length": 77, + "value": "[(\"width\", nil), (\"height\", nil), (\"framerate\", nil)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5828, + "length": 10, + "value": "\"codec_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 5840, + "length": 59, + "value": "[(\"mime_type\", nil), (\"clock_rate\", nil)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5905, + "length": 20, + "value": "\"delta_jitter_ms_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5927, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5934, + "length": 25, + "value": "\"percent_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5961, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5968, + "length": 18, + "value": "\"delta_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5988, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5995, + "length": 23, + "value": "\"delta_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6020, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6027, + "length": 18, + "value": "\"total_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6047, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6054, + "length": 23, + "value": "\"total_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6079, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6086, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6105, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6112, + "length": 17, + "value": "\"delta_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6131, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6138, + "length": 14, + "value": "\"delta_kbs_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6154, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6161, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6169, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6177, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6222, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6234, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6242, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6257, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6341, + "length": 14, + "value": "\"codec_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6357, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6369, + "length": 10, + "value": "\"size_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 6381, + "length": 93, + "value": "[(\"width\", nil), (\"height\", nil), (\"framerate\", nil)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6484, + "length": 11, + "value": "\"codec_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 6497, + "length": 71, + "value": "[(\"mime_type\", nil), (\"clock_rate\", nil)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6578, + "length": 21, + "value": "\"delta_jitter_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6601, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6612, + "length": 18, + "value": "\"delta_rtt_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 6632, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6645, + "length": 26, + "value": "\"percent_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6673, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6684, + "length": 19, + "value": "\"delta_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6705, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6716, + "length": 24, + "value": "\"delta_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6742, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6753, + "length": 19, + "value": "\"total_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6774, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6785, + "length": 24, + "value": "\"total_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6811, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6822, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6842, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6853, + "length": 18, + "value": "\"delta_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6873, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6884, + "length": 15, + "value": "\"delta_kbs_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6901, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6912, + "length": 16, + "value": "\"limitation_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7001, + "length": 19, + "value": "\"resolutionChanges\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 7022, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7043, + "length": 15, + "value": "\"timestamp_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7060, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7073, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7081, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7093, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7143, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7156, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7168, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7184, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7320, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7328, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7340, + "length": 8, + "value": "\"roomId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7350, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7362, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7372, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7384, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 7397, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7408, + "length": 7, + "value": "\"count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 7417, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7428, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7437, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7450, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7459, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7472, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7483, + "length": 43, + "value": "[(\"infrastructure\", 3)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7536, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7544, + "length": 181, + "value": "[(\"delta_kbs_bandwidth_in\", 0), (\"delta_kbs_bandwidth_out\", 0), (\"delta_rtt_connectivity_ms\", 0), (\"total_rtt_connectivity_ms\", 0)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7832, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7843, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7863, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7874, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7894, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7918, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7947, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7967, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7994, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 8026, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 8081, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 8164, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 8322, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 8407, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 8490, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 8648, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/DefaultBaggageBuilder.swift", + "kind": "BooleanLiteral", + "offset": 216, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/DefaultBaggageBuilder.swift", + "kind": "BooleanLiteral", + "offset": 534, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/DefaultLogger.swift", + "kind": "BooleanLiteral", + "offset": 199, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/DefaultLogger.swift", + "kind": "BooleanLiteral", + "offset": 259, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/DefaultLoggerProvider.swift", + "kind": "BooleanLiteral", + "offset": 301, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/DefaultLoggerProvider.swift", + "kind": "BooleanLiteral", + "offset": 374, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/DefaultMeterProvider.swift", + "kind": "BooleanLiteral", + "offset": 298, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/DefaultMeterProvider.swift", + "kind": "StringLiteral", + "offset": 560, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/DefaultMeterProvider.swift", + "kind": "BooleanLiteral", + "offset": 616, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/DefaultMeterProvider.swift", + "kind": "BooleanLiteral", + "offset": 1138, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 3224, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 4470, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 4588, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 4750, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 4862, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 4929, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 4998, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 5069, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 8253, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 8324, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 8389, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 8456, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 8540, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 8609, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 9113, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 9282, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 9648, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 10027, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 11486, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 11865, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 12857, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 13118, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 14635, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 14669, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 14815, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 14848, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 15231, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 16864, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 17394, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 19014, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 22594, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 25469, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27200, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27229, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27257, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27285, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27314, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27342, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27372, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27402, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27429, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27458, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27487, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27518, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27547, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27577, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27605, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27637, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27669, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27699, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27837, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27865, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27893, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27922, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27950, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27980, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28010, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28037, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28066, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28094, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28125, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28154, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28184, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28212, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28244, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28276, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28306, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28336, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28656, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28687, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28718, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28859, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28890, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28921, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 30929, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 31605, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 31751, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 32436, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 32815, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 34085, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 35718, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 38448, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 38949, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 42056, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 42605, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 43539, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 45967, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 46472, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 46987, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 47490, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 48232, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 48801, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 55072, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 55100, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 55131, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 55272, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 55303, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 55337, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 56663, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 57400, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 58165, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 59447, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 60402, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 61522, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 63469, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 66852, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 67389, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 68050, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 68488, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 68990, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 69841, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 69923, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 70546, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71306, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71335, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71362, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71504, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71531, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71565, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71944, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71975, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72006, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72147, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72178, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72209, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72726, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72765, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72804, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72960, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72999, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 73037, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 73905, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 73945, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 73982, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74029, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74069, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74107, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74145, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74182, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74224, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74264, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74422, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74459, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74506, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74546, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74584, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74622, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74659, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74701, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74741, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74780, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 77495, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 78120, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 78750, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 79550, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 80670, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 81613, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 82660, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 83144, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 84485, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 84962, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 85780, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 87238, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 87899, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 87940, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 87976, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 88129, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 88165, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 88198, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 89228, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 89906, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 90353, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 90791, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 93056, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98518, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98548, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98579, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98610, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98756, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98787, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98818, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98855, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99133, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99163, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99190, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99328, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99355, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99384, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99677, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99707, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99736, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99876, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99905, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99936, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100249, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100279, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100311, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100338, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100474, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100506, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100533, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100560, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100856, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100886, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100923, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101064, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101101, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101133, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101422, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101452, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101480, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101628, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101656, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101695, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 104673, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 106036, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 106427, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 109300, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 110178, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 110635, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 111301, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 111884, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 113200, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 113229, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 113257, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 113403, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 113431, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 113461, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 116085, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 116275, + "length": 20, + "value": "\".FileDescriptorSet\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 116352, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 116368, + "length": 6, + "value": "\"file\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 116471, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 116489, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 116906, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117182, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 117396, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 117457, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 117475, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117660, + "length": 22, + "value": "\".FileDescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117739, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117755, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117768, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117784, + "length": 9, + "value": "\"package\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117800, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117816, + "length": 12, + "value": "\"dependency\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117835, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117856, + "length": 19, + "value": "\"public_dependency\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117882, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117903, + "length": 17, + "value": "\"weak_dependency\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117927, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117947, + "length": 14, + "value": "\"message_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117968, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117988, + "length": 11, + "value": "\"enum_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 118006, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 118022, + "length": 9, + "value": "\"service\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 118038, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 118054, + "length": 11, + "value": "\"extension\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 118072, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 118088, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 118104, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 118124, + "length": 18, + "value": "\"source_code_info\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 118149, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 118166, + "length": 8, + "value": "\"syntax\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 118181, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 118198, + "length": 9, + "value": "\"edition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 118311, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 118376, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 118440, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 118508, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 118570, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 118588, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119005, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119087, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119172, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119259, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119348, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119434, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119519, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119608, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119694, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119787, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119880, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119971, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 120056, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 120629, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 120745, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 120872, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 120998, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121118, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121236, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121362, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121475, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121599, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121737, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121868, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121980, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 122097, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122322, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122373, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122428, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122495, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122558, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122615, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122666, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122715, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122772, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122823, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122888, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122937, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122988, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 123049, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 123067, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123248, + "length": 18, + "value": "\".DescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123323, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123339, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123352, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123368, + "length": 7, + "value": "\"field\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123382, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123398, + "length": 11, + "value": "\"extension\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123416, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123436, + "length": 13, + "value": "\"nested_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123456, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123476, + "length": 11, + "value": "\"enum_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123494, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123514, + "length": 17, + "value": "\"extension_range\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123538, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123558, + "length": 12, + "value": "\"oneof_decl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123577, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123593, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123609, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123629, + "length": 16, + "value": "\"reserved_range\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123652, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123673, + "length": 15, + "value": "\"reserved_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 123786, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 123854, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 123921, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 123986, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 124057, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 124123, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 124185, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 124203, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 124620, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 124702, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 124785, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 124873, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 124959, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 125051, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 125140, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 125226, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 125313, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 125404, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 125981, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126099, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126223, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126343, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126475, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126601, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126714, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126840, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126970, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 127097, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127310, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127355, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127412, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127467, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127518, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127581, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127634, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127685, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127746, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127805, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127866, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127884, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 128111, + "length": 17, + "value": "\".ExtensionRange\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 128185, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 128201, + "length": 7, + "value": "\"start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 128215, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 128231, + "length": 5, + "value": "\"end\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 128243, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 128259, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 128366, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 128384, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 128801, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 128883, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 128963, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 129536, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 129647, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 129764, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 130012, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 130055, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 130106, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 130167, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 130185, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 130411, + "length": 16, + "value": "\".ReservedRange\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 130484, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 130500, + "length": 7, + "value": "\"start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 130514, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 130530, + "length": 5, + "value": "\"end\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 130950, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 131032, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 131599, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 131710, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 131956, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 131999, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 132060, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 132078, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 132265, + "length": 24, + "value": "\".ExtensionRangeOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 132346, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 132368, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 132397, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 132413, + "length": 13, + "value": "\"declaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 132433, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 132450, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 132467, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 132483, + "length": 14, + "value": "\"verification\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 132601, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 132677, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 132740, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 132758, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 133175, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 133264, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 133352, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 133440, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 133539, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 133546, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 134247, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 134362, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 134480, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 134627, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 134722, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 134733, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 134987, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 135044, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 135097, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 135158, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 135219, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 135314, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 135332, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 135489, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 135505, + "length": 13, + "value": "\"DECLARATION\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 135525, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 135541, + "length": 12, + "value": "\"UNVERIFIED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 135787, + "length": 14, + "value": "\".Declaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 135858, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 135874, + "length": 8, + "value": "\"number\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 135889, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 135909, + "length": 11, + "value": "\"full_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 135927, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 135943, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 135956, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 135972, + "length": 10, + "value": "\"reserved\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 135989, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 136005, + "length": 10, + "value": "\"repeated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 136430, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 136513, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 136599, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 136681, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 136765, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 137337, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 137454, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 137567, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 137682, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 137797, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 138053, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 138106, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 138151, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 138204, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 138257, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 138318, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 138336, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138522, + "length": 23, + "value": "\".FieldDescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138602, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138618, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138631, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138647, + "length": 8, + "value": "\"number\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138662, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138678, + "length": 7, + "value": "\"label\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138692, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138708, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138721, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138741, + "length": 11, + "value": "\"type_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138759, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138775, + "length": 10, + "value": "\"extendee\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138792, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138812, + "length": 15, + "value": "\"default_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138834, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138854, + "length": 13, + "value": "\"oneof_index\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138874, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138895, + "length": 11, + "value": "\"json_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138913, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138929, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138945, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138966, + "length": 17, + "value": "\"proto3_optional\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 140350, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 140370, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 140900, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 140988, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141080, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141169, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141256, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141342, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141434, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141530, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141622, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141715, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141808, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 142488, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 142615, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 142739, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 142861, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 142982, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 143109, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 143240, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 143367, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 143495, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 143622, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 143754, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144241, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144307, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144371, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144433, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144503, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144573, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144651, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144725, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144795, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144863, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144945, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144967, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 145015, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 145082, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 145100, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145247, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145263, + "length": 13, + "value": "\"TYPE_DOUBLE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145283, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145299, + "length": 12, + "value": "\"TYPE_FLOAT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145318, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145334, + "length": 12, + "value": "\"TYPE_INT64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145353, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145369, + "length": 13, + "value": "\"TYPE_UINT64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145389, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145405, + "length": 12, + "value": "\"TYPE_INT32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145424, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145440, + "length": 14, + "value": "\"TYPE_FIXED64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145461, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145477, + "length": 14, + "value": "\"TYPE_FIXED32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145498, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145514, + "length": 11, + "value": "\"TYPE_BOOL\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145532, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145548, + "length": 13, + "value": "\"TYPE_STRING\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145568, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145585, + "length": 12, + "value": "\"TYPE_GROUP\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145604, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145621, + "length": 14, + "value": "\"TYPE_MESSAGE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145642, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145659, + "length": 12, + "value": "\"TYPE_BYTES\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145678, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145695, + "length": 13, + "value": "\"TYPE_UINT32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145715, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145732, + "length": 11, + "value": "\"TYPE_ENUM\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145750, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145767, + "length": 15, + "value": "\"TYPE_SFIXED32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145789, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145806, + "length": 15, + "value": "\"TYPE_SFIXED64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145828, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145845, + "length": 13, + "value": "\"TYPE_SINT32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145865, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145882, + "length": 13, + "value": "\"TYPE_SINT64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 146037, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 146053, + "length": 16, + "value": "\"LABEL_OPTIONAL\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 146076, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 146092, + "length": 16, + "value": "\"LABEL_REQUIRED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 146115, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 146131, + "length": 16, + "value": "\"LABEL_REPEATED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 146331, + "length": 23, + "value": "\".OneofDescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 146411, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 146427, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 146440, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 146456, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 146563, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 146581, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 146998, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 147080, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 147653, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 147770, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 147996, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 148047, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 148108, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 148126, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 148311, + "length": 22, + "value": "\".EnumDescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 148390, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 148406, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 148419, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 148435, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 148449, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 148465, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 148481, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 148501, + "length": 16, + "value": "\"reserved_range\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 148524, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 148544, + "length": 15, + "value": "\"reserved_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 148657, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 148719, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 148737, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 149154, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 149236, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 149319, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 149405, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 149496, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 150072, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 150190, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 150303, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 150437, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 150564, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 150784, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 150829, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 150880, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 150941, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 151000, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 151061, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 151079, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 151317, + "length": 20, + "value": "\".EnumReservedRange\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 151394, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 151410, + "length": 7, + "value": "\"start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 151424, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 151440, + "length": 5, + "value": "\"end\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 151860, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 151942, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 152509, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 152620, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 152882, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 152925, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 152986, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 153004, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 153194, + "length": 27, + "value": "\".EnumValueDescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 153278, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 153294, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 153307, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 153323, + "length": 8, + "value": "\"number\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 153338, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 153354, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 153461, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 153479, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 153896, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 153978, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 154061, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 154634, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 154748, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 154865, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155099, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155148, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155199, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155260, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155278, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 155466, + "length": 25, + "value": "\".ServiceDescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 155548, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 155564, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 155577, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 155593, + "length": 8, + "value": "\"method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 155608, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 155624, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155732, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155794, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155812, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 156229, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 156311, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 156395, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 156968, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 157088, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 157201, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 157431, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 157478, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 157529, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 157590, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 157608, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 157795, + "length": 24, + "value": "\".MethodDescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 157876, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 157892, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 157905, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 157925, + "length": 12, + "value": "\"input_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 157944, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 157964, + "length": 13, + "value": "\"output_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 157984, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 158000, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 158016, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 158036, + "length": 18, + "value": "\"client_streaming\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 158061, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 158081, + "length": 18, + "value": "\"server_streaming\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 158197, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 158215, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 158632, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 158714, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 158801, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 158889, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 158975, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 159066, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 159644, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 159762, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 159881, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 159998, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 160120, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 160242, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160470, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160525, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160582, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160633, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160700, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160767, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160828, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160846, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161023, + "length": 14, + "value": "\".FileOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161094, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161114, + "length": 14, + "value": "\"java_package\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161135, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161155, + "length": 22, + "value": "\"java_outer_classname\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161184, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161205, + "length": 21, + "value": "\"java_multiple_files\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161233, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161254, + "length": 31, + "value": "\"java_generate_equals_and_hash\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161292, + "length": 2, + "value": "27" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161313, + "length": 24, + "value": "\"java_string_check_utf8\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161344, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161364, + "length": 14, + "value": "\"optimize_for\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161385, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161406, + "length": 12, + "value": "\"go_package\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161425, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161446, + "length": 21, + "value": "\"cc_generic_services\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161474, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161495, + "length": 23, + "value": "\"java_generic_services\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161525, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161546, + "length": 21, + "value": "\"py_generic_services\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161574, + "length": 2, + "value": "42" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161595, + "length": 22, + "value": "\"php_generic_services\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161624, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161641, + "length": 12, + "value": "\"deprecated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161660, + "length": 2, + "value": "31" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161681, + "length": 18, + "value": "\"cc_enable_arenas\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161706, + "length": 2, + "value": "36" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161727, + "length": 19, + "value": "\"objc_class_prefix\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161753, + "length": 2, + "value": "37" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161774, + "length": 18, + "value": "\"csharp_namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161799, + "length": 2, + "value": "39" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161820, + "length": 14, + "value": "\"swift_prefix\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161841, + "length": 2, + "value": "40" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161862, + "length": 18, + "value": "\"php_class_prefix\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161887, + "length": 2, + "value": "41" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161908, + "length": 15, + "value": "\"php_namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161930, + "length": 2, + "value": "44" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161951, + "length": 24, + "value": "\"php_metadata_namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161982, + "length": 2, + "value": "45" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 162003, + "length": 14, + "value": "\"ruby_package\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 162024, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 162041, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 162058, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 162080, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 163088, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 164584, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 164726, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 164809, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 164829, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 165359, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 165454, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 165556, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 165649, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 165749, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 165843, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 165943, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166045, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166145, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166253, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166346, + "length": 2, + "value": "27" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166448, + "length": 2, + "value": "31" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166545, + "length": 2, + "value": "36" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166645, + "length": 2, + "value": "37" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166745, + "length": 2, + "value": "39" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166841, + "length": 2, + "value": "40" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166940, + "length": 2, + "value": "41" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 167037, + "length": 2, + "value": "42" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 167138, + "length": 2, + "value": "44" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 167243, + "length": 2, + "value": "45" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 167339, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 167433, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 167539, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 167546, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 168327, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 168464, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 168592, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 168726, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 168855, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 168990, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 169127, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 169262, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 169405, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 169533, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 169670, + "length": 2, + "value": "27" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 169802, + "length": 2, + "value": "31" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 169937, + "length": 2, + "value": "36" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 170072, + "length": 2, + "value": "37" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 170203, + "length": 2, + "value": "39" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 170337, + "length": 2, + "value": "40" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 170469, + "length": 2, + "value": "41" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 170605, + "length": 2, + "value": "42" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 170745, + "length": 2, + "value": "44" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 170876, + "length": 2, + "value": "45" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 171005, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 171168, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 171267, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 171278, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 171756, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 171846, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 171934, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172038, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172130, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172206, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172278, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172366, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172458, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172546, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172636, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172710, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172792, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172876, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172960, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173036, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173118, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173196, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173290, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173366, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173436, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173528, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173550, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173598, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173665, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173760, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173778, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 173920, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 173936, + "length": 7, + "value": "\"SPEED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 173950, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 173966, + "length": 11, + "value": "\"CODE_SIZE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 173984, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174000, + "length": 14, + "value": "\"LITE_RUNTIME\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174192, + "length": 17, + "value": "\".MessageOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 174266, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174286, + "length": 25, + "value": "\"message_set_wire_format\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 174318, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174338, + "length": 33, + "value": "\"no_standard_descriptor_accessor\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 174378, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174394, + "length": 12, + "value": "\"deprecated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 174413, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174433, + "length": 11, + "value": "\"map_entry\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 174451, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174472, + "length": 40, + "value": "\"deprecated_legacy_json_field_conflicts\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 174519, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174536, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 174553, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174575, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 174701, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 174764, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 174840, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 174858, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175275, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175371, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175475, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175561, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175645, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175756, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175844, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175943, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175950, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 176641, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 176776, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 176893, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 177008, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 177149, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 177268, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 177415, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 177510, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 177521, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 177765, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 177858, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 177915, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 177968, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 178073, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 178126, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 178199, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 178260, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 178355, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 178373, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178551, + "length": 15, + "value": "\".FieldOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178623, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178639, + "length": 7, + "value": "\"ctype\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178653, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178669, + "length": 8, + "value": "\"packed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178684, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178700, + "length": 8, + "value": "\"jstype\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178715, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178731, + "length": 6, + "value": "\"lazy\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178744, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178765, + "length": 17, + "value": "\"unverified_lazy\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178789, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178805, + "length": 12, + "value": "\"deprecated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178824, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178841, + "length": 6, + "value": "\"weak\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178854, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178875, + "length": 14, + "value": "\"debug_redact\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178896, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178913, + "length": 11, + "value": "\"retention\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178931, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178948, + "length": 9, + "value": "\"targets\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178964, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178985, + "length": 18, + "value": "\"edition_defaults\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 179010, + "length": 2, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 179027, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 179044, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 179066, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 179192, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 179255, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 179331, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 179349, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 179766, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 179847, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 179929, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180015, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180095, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180177, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180258, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180349, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180437, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180523, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180606, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180700, + "length": 2, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180788, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180887, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180894, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 181568, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 181681, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 181798, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 181909, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182022, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182133, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182255, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182374, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182491, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182611, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182746, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182861, + "length": 2, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 183008, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 183103, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 183114, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183324, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183373, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183422, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183467, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183532, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183589, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183634, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183693, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183748, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183797, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183862, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183915, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183988, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 184049, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 184144, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 184162, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184298, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184314, + "length": 8, + "value": "\"STRING\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184329, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184345, + "length": 6, + "value": "\"CORD\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184358, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184374, + "length": 14, + "value": "\"STRING_PIECE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184523, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184539, + "length": 11, + "value": "\"JS_NORMAL\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184557, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184573, + "length": 11, + "value": "\"JS_STRING\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184591, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184607, + "length": 11, + "value": "\"JS_NUMBER\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184762, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184778, + "length": 19, + "value": "\"RETENTION_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184804, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184820, + "length": 19, + "value": "\"RETENTION_RUNTIME\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184846, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184862, + "length": 18, + "value": "\"RETENTION_SOURCE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185025, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185041, + "length": 21, + "value": "\"TARGET_TYPE_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185069, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185085, + "length": 18, + "value": "\"TARGET_TYPE_FILE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185110, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185126, + "length": 29, + "value": "\"TARGET_TYPE_EXTENSION_RANGE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185162, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185178, + "length": 21, + "value": "\"TARGET_TYPE_MESSAGE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185206, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185222, + "length": 19, + "value": "\"TARGET_TYPE_FIELD\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185248, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185264, + "length": 19, + "value": "\"TARGET_TYPE_ONEOF\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185290, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185306, + "length": 18, + "value": "\"TARGET_TYPE_ENUM\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185331, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185347, + "length": 24, + "value": "\"TARGET_TYPE_ENUM_ENTRY\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185378, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185394, + "length": 21, + "value": "\"TARGET_TYPE_SERVICE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185422, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185438, + "length": 20, + "value": "\"TARGET_TYPE_METHOD\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185677, + "length": 17, + "value": "\".EditionDefault\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185751, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185767, + "length": 9, + "value": "\"edition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185783, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185799, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 186221, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 186306, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 186879, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 186993, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187239, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187286, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187347, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187365, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 187543, + "length": 15, + "value": "\".OneofOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 187615, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 187631, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 187648, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 187670, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187796, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187859, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187935, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187953, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 188370, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 188457, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 188556, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 188563, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 189243, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 189389, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 189484, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 189495, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 189711, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 189784, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 189845, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 189940, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 189958, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 190135, + "length": 14, + "value": "\".EnumOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 190206, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 190226, + "length": 13, + "value": "\"allow_alias\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 190246, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 190262, + "length": 12, + "value": "\"deprecated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 190281, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 190301, + "length": 40, + "value": "\"deprecated_legacy_json_field_conflicts\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 190348, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 190364, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 190381, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 190403, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 190529, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 190592, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 190668, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 190686, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 191103, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 191189, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 191275, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 191385, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 191472, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 191571, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 191578, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 192256, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 192373, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 192514, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 192632, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 192778, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 192873, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 192884, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193102, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193159, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193264, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193317, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193390, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193451, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193546, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193564, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 193746, + "length": 19, + "value": "\".EnumValueOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 193822, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 193838, + "length": 12, + "value": "\"deprecated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 193857, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 193873, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 193890, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 193910, + "length": 14, + "value": "\"debug_redact\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 193931, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 193953, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 194079, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 194142, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 194218, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 194236, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 194653, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 194739, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 194826, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 194913, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 195012, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 195019, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 195702, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 195820, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 195938, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 196084, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 196179, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 196190, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 196418, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 196471, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 196530, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 196603, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 196664, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 196759, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 196777, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 196957, + "length": 17, + "value": "\".ServiceOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 197031, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 197048, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 197065, + "length": 2, + "value": "33" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 197082, + "length": 12, + "value": "\"deprecated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 197101, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 197123, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 197249, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 197312, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 197388, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 197406, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 197823, + "length": 2, + "value": "33" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 197910, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 197998, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 198097, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 198104, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 198785, + "length": 2, + "value": "33" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 198904, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 199051, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 199146, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 199157, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 199377, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 199434, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 199507, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 199568, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 199663, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 199681, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 199860, + "length": 16, + "value": "\".MethodOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 199933, + "length": 2, + "value": "33" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 199950, + "length": 12, + "value": "\"deprecated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 199969, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 199990, + "length": 19, + "value": "\"idempotency_level\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 200016, + "length": 2, + "value": "35" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 200033, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 200050, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 200072, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 200198, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 200261, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 200337, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 200355, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 200772, + "length": 2, + "value": "33" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 200859, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 200952, + "length": 2, + "value": "35" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 201040, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 201139, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 201146, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 201826, + "length": 2, + "value": "33" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 201950, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 202069, + "length": 2, + "value": "35" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 202216, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 202311, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 202322, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 202544, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 202613, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 202666, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 202739, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 202800, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 202895, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 202913, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203061, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203077, + "length": 21, + "value": "\"IDEMPOTENCY_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203105, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203121, + "length": 17, + "value": "\"NO_SIDE_EFFECTS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203145, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203161, + "length": 12, + "value": "\"IDEMPOTENT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203356, + "length": 22, + "value": "\".UninterpretedOption\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203435, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203451, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203464, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203484, + "length": 18, + "value": "\"identifier_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203509, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203529, + "length": 20, + "value": "\"positive_int_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203556, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203576, + "length": 20, + "value": "\"negative_int_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203603, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203623, + "length": 14, + "value": "\"double_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203644, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203664, + "length": 14, + "value": "\"string_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203685, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203705, + "length": 17, + "value": "\"aggregate_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 203819, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 203837, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 204254, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 204336, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 204429, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 204523, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 204616, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 204705, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 204793, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 205375, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 205495, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 205620, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 205744, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 205864, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 205983, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 206106, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206328, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206395, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206464, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206533, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206592, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206651, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206716, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206777, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206795, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 207024, + "length": 11, + "value": "\".NamePart\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 207092, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 207112, + "length": 11, + "value": "\"name_part\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 207130, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 207150, + "length": 14, + "value": "\"is_extension\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 207244, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 207291, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 207309, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 207726, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 207812, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 208390, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 208508, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 208758, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 208817, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 208878, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 208896, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209072, + "length": 13, + "value": "\".FeatureSet\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 209142, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209162, + "length": 16, + "value": "\"field_presence\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 209185, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209205, + "length": 11, + "value": "\"enum_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 209223, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209243, + "length": 25, + "value": "\"repeated_field_encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 209275, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209295, + "length": 25, + "value": "\"string_field_validation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 209327, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209347, + "length": 18, + "value": "\"message_encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 209372, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209392, + "length": 13, + "value": "\"json_format\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 209412, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209434, + "length": 14, + "value": "\"raw_features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 210746, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 210891, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 210911, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 211441, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 211536, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 211626, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 211729, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 211832, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 211929, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 212021, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 212119, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 212126, + "length": 4, + "value": "1002" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 212132, + "length": 4, + "value": "9995" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 212139, + "length": 5, + "value": "10000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 212915, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213040, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213178, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213316, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213448, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213575, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213706, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213809, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213820, + "length": 5, + "value": "10000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214296, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214366, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214462, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214558, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214642, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214716, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214792, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214814, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214862, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214929, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 215024, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 215042, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215184, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215200, + "length": 24, + "value": "\"FIELD_PRESENCE_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215231, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215247, + "length": 10, + "value": "\"EXPLICIT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215264, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215280, + "length": 10, + "value": "\"IMPLICIT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215297, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215313, + "length": 17, + "value": "\"LEGACY_REQUIRED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215465, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215481, + "length": 19, + "value": "\"ENUM_TYPE_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215507, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215523, + "length": 6, + "value": "\"OPEN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215536, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215552, + "length": 8, + "value": "\"CLOSED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215708, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215724, + "length": 33, + "value": "\"REPEATED_FIELD_ENCODING_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215764, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215780, + "length": 8, + "value": "\"PACKED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215795, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215811, + "length": 10, + "value": "\"EXPANDED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215969, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215985, + "length": 33, + "value": "\"STRING_FIELD_VALIDATION_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216025, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216041, + "length": 11, + "value": "\"MANDATORY\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216059, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216075, + "length": 6, + "value": "\"HINT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216088, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216104, + "length": 6, + "value": "\"NONE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216252, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216268, + "length": 26, + "value": "\"MESSAGE_ENCODING_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216301, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216317, + "length": 17, + "value": "\"LENGTH_PREFIXED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216341, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216357, + "length": 11, + "value": "\"DELIMITED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216505, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216521, + "length": 21, + "value": "\"JSON_FORMAT_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216549, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216565, + "length": 7, + "value": "\"ALLOW\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216579, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216595, + "length": 20, + "value": "\"LEGACY_BEST_EFFORT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216793, + "length": 17, + "value": "\".SourceCodeInfo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216867, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216883, + "length": 10, + "value": "\"location\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 217308, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 217596, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 217812, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 217873, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 217891, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 218110, + "length": 11, + "value": "\".Location\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218178, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 218194, + "length": 6, + "value": "\"path\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218207, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 218223, + "length": 6, + "value": "\"span\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218236, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 218256, + "length": 18, + "value": "\"leading_comments\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218281, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 218301, + "length": 19, + "value": "\"trailing_comments\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218327, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 218347, + "length": 27, + "value": "\"leading_detached_comments\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218789, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218869, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218949, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 219042, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 219136, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 219722, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 219830, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 219950, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 220075, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 220228, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 220454, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 220497, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 220564, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 220633, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 220714, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 220775, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 220793, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 220976, + "length": 20, + "value": "\".GeneratedCodeInfo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 221053, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 221069, + "length": 12, + "value": "\"annotation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 221496, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 221790, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 222016, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 222077, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 222095, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 222322, + "length": 13, + "value": "\".Annotation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 222392, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 222408, + "length": 6, + "value": "\"path\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 222421, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 222441, + "length": 13, + "value": "\"source_file\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 222461, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 222477, + "length": 7, + "value": "\"begin\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 222491, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 222507, + "length": 5, + "value": "\"end\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 222519, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 222535, + "length": 10, + "value": "\"semantic\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 222960, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 223040, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 223128, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 223210, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 223290, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 223860, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 223975, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 224088, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 224199, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 224314, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 224554, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 224611, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 224658, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 224701, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 224754, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 224815, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 224833, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 224988, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 225004, + "length": 6, + "value": "\"NONE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 225017, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 225033, + "length": 5, + "value": "\"SET\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 225045, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 225061, + "length": 7, + "value": "\"ALIAS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 214, + "length": 28, + "value": "\"CFBundleShortVersionString\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 456, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 593, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 696, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 743, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 943, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1049, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1071, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1337, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "IntegerLiteral", + "offset": 1429, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1653, + "length": 9, + "value": "\"sdkType\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1664, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1683, + "length": 12, + "value": "\"sdkVersion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1722, + "length": 10, + "value": "\"platform\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1734, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1753, + "length": 17, + "value": "\"deviceUserAgent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1790, + "length": 7, + "value": "\"model\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1799, + "length": 25, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1823, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1876, + "length": 11, + "value": "\"osVersion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 497, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 576, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 649, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 678, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1511, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1530, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1591, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1668, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1695, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1739, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1768, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 2127, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 2358, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 2563, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 2600, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "StringLiteral", + "offset": 274, + "length": 6, + "value": "\"VideoSDKRTC.Handle\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "StringLiteral", + "offset": 3082, + "length": 40, + "value": "\"This aggregator does not support diff.\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "StringLiteral", + "offset": 3267, + "length": 43, + "value": "\"This aggregator does not support toPoint.\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/DoubleGaugeBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 442, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/DoubleGaugeBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 473, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/DoubleHistogramMeterBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 822, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/DoubleHistogramMeterBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 845, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleLastValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1455, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleLastValueAggregator.swift", + "kind": "FloatLiteral", + "offset": 1708, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleLastValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1835, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/DoubleParser.swift", + "kind": "IntegerLiteral", + "offset": 1062, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/DoubleParser.swift", + "kind": "IntegerLiteral", + "offset": 1569, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/DoubleParser.swift", + "kind": "IntegerLiteral", + "offset": 1703, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/Internal\/DoublePointData.swift", + "kind": "StringLiteral", + "offset": 117, + "length": 15, + "value": "\"VideoSDKRTC.DoublePointData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1614, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleSumAggregator.swift", + "kind": "FloatLiteral", + "offset": 1865, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1989, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleSumAggregator.swift", + "kind": "StringLiteral", + "offset": 117, + "length": 19, + "value": "\"VideoSDKRTC.DoubleSumAggregator\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DropAggregation.swift", + "kind": "BooleanLiteral", + "offset": 463, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DropAggregator.swift", + "kind": "IntegerLiteral", + "offset": 228, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DropAggregator.swift", + "kind": "IntegerLiteral", + "offset": 246, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 5180, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 5614, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "StringLiteral", + "offset": 5947, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "StringLiteral", + "offset": 6128, + "length": 11, + "value": "\".Duration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 6196, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "StringLiteral", + "offset": 6212, + "length": 9, + "value": "\"seconds\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 6228, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "StringLiteral", + "offset": 6244, + "length": 7, + "value": "\"nanos\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 6666, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 6749, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 6944, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 7024, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 7054, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 7132, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "BooleanLiteral", + "offset": 7334, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "BooleanLiteral", + "offset": 7379, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "BooleanLiteral", + "offset": 7440, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "BooleanLiteral", + "offset": 7458, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/empty.pb.swift", + "kind": "StringLiteral", + "offset": 3336, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/empty.pb.swift", + "kind": "StringLiteral", + "offset": 3514, + "length": 8, + "value": "\".Empty\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/empty.pb.swift", + "kind": "BooleanLiteral", + "offset": 3976, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/empty.pb.swift", + "kind": "BooleanLiteral", + "offset": 3994, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/EmptyMetricStorage.swift", + "kind": "StringLiteral", + "offset": 496, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/EmptyMetricStorage.swift", + "kind": "StringLiteral", + "offset": 513, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/EmptyMetricStorage.swift", + "kind": "StringLiteral", + "offset": 523, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/EmptyMetricStorage.swift", + "kind": "BooleanLiteral", + "offset": 762, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/EntryKey.swift", + "kind": "IntegerLiteral", + "offset": 566, + "length": 3, + "value": "255" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/EntryKey.swift", + "kind": "StringLiteral", + "offset": 642, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/EntryKey.swift", + "kind": "IntegerLiteral", + "offset": 1342, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/EntryMetadata.swift", + "kind": "IntegerLiteral", + "offset": 348, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/EntryValue.swift", + "kind": "IntegerLiteral", + "offset": 380, + "length": 3, + "value": "255" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/EntryValue.swift", + "kind": "StringLiteral", + "offset": 464, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Propagation\/EnvironmentContextPropagator.swift", + "kind": "StringLiteral", + "offset": 305, + "length": 13, + "value": "\"TRACEPARENT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Propagation\/EnvironmentContextPropagator.swift", + "kind": "StringLiteral", + "offset": 347, + "length": 12, + "value": "\"TRACESTATE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Propagation\/EnvironmentContextPropagator.swift", + "kind": "StringLiteral", + "offset": 821, + "length": 13, + "value": "\"traceparent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Propagation\/EnvironmentContextPropagator.swift", + "kind": "StringLiteral", + "offset": 906, + "length": 12, + "value": "\"tracestate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Propagation\/EnvironmentContextPropagator.swift", + "kind": "StringLiteral", + "offset": 1089, + "length": 13, + "value": "\"traceparent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Propagation\/EnvironmentContextPropagator.swift", + "kind": "StringLiteral", + "offset": 1175, + "length": 12, + "value": "\"tracestate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "StringLiteral", + "offset": 281, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "StringLiteral", + "offset": 343, + "length": 3, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "StringLiteral", + "offset": 621, + "length": 28, + "value": "\"OTEL_EXPORTER_OTLP_HEADERS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "StringLiteral", + "offset": 868, + "length": 54, + "value": "\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "StringLiteral", + "offset": 971, + "length": 12, + "value": "\"0123456789\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "StringLiteral", + "offset": 1034, + "length": 17, + "value": "\"!#$%&'*+-.^_`|~\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "IntegerLiteral", + "offset": 1308, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "IntegerLiteral", + "offset": 1329, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "StringLiteral", + "offset": 1385, + "length": 9, + "value": "\"^\"|\"$\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "IntegerLiteral", + "offset": 2164, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "IntegerLiteral", + "offset": 2234, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "IntegerLiteral", + "offset": 2357, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "IntegerLiteral", + "offset": 2535, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/EnvVarResource.swift", + "kind": "StringLiteral", + "offset": 302, + "length": 26, + "value": "\"OTEL_RESOURCE_ATTRIBUTES\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/EnvVarResource.swift", + "kind": "StringLiteral", + "offset": 382, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/EnvVarResource.swift", + "kind": "StringLiteral", + "offset": 444, + "length": 3, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/EnvVarResource.swift", + "kind": "IntegerLiteral", + "offset": 2116, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/EnvVarResource.swift", + "kind": "IntegerLiteral", + "offset": 2185, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/EnvVarResource.swift", + "kind": "IntegerLiteral", + "offset": 2277, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/EnvVarResource.swift", + "kind": "StringLiteral", + "offset": 2330, + "length": 9, + "value": "\"^\"|\"$\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/ExemplarData.swift", + "kind": "StringLiteral", + "offset": 936, + "length": 18, + "value": "\"VideoSDKRTC.DoubleExemplarData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/ExemplarData.swift", + "kind": "StringLiteral", + "offset": 1489, + "length": 16, + "value": "\"VideoSDKRTC.LongExemplarData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarFilter.swift", + "kind": "BooleanLiteral", + "offset": 493, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarFilter.swift", + "kind": "BooleanLiteral", + "offset": 625, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarFilter.swift", + "kind": "BooleanLiteral", + "offset": 823, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarFilter.swift", + "kind": "BooleanLiteral", + "offset": 952, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "BooleanLiteral", + "offset": 1422, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 1770, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 2110, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "BooleanLiteral", + "offset": 2232, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 2515, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "BooleanLiteral", + "offset": 2639, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "BooleanLiteral", + "offset": 3089, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "StringLiteral", + "offset": 1177, + "length": 27, + "value": "\"VideoSDKRTC.FixedSizedExemplarReservoir\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 4141, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 4567, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 4692, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 4754, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 4766, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 4798, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 4899, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "StringLiteral", + "offset": 3140, + "length": 33, + "value": "\"VideoSDKRTC.RandomFixedSizedExemplarReservoir\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/ExplicitBucketHistogramAggregation.swift", + "kind": "Array", + "offset": 233, + "length": 70, + "value": "[0, 5, 10, 25, 50, 75, 100, 250, 500, 750, 1000, 2500, 5000, 7500]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/ExplicitBucketHistogramAggregation.swift", + "kind": "BooleanLiteral", + "offset": 1155, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/ExplicitBucketHistogramAggregation.swift", + "kind": "BooleanLiteral", + "offset": 1196, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "BooleanLiteral", + "offset": 1753, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "Array", + "offset": 4799, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "IntegerLiteral", + "offset": 5004, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "Array", + "offset": 6496, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "IntegerLiteral", + "offset": 6701, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "Array", + "offset": 9764, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "IntegerLiteral", + "offset": 9968, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "Array", + "offset": 11507, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "IntegerLiteral", + "offset": 11711, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "Array", + "offset": 14910, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "IntegerLiteral", + "offset": 15117, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "Array", + "offset": 18488, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "IntegerLiteral", + "offset": 18693, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "BooleanLiteral", + "offset": 1099, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "BooleanLiteral", + "offset": 1240, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "BooleanLiteral", + "offset": 1307, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "BooleanLiteral", + "offset": 1353, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "BooleanLiteral", + "offset": 1384, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "IntegerLiteral", + "offset": 1731, + "length": 8, + "value": "16777619" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "BooleanLiteral", + "offset": 2814, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "BooleanLiteral", + "offset": 2845, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 279, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 365, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 370, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 476, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 525, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 629, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 679, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 708, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 811, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 872, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 906, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 951, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "FloatLiteral", + "offset": 973, + "length": 5, + "value": "0.008" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 981, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 1007, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 1072, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "FloatLiteral", + "offset": 1090, + "length": 5, + "value": "0.008" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 1098, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 1124, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1152, + "length": 23, + "value": "\"total_KBytes_received\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 19, + "value": "\"total_KBytes_sent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1252, + "length": 23, + "value": "\"delta_KBytes_received\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1301, + "length": 19, + "value": "\"delta_KBytes_sent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1342, + "length": 20, + "value": "\"kbs_speed_received\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1390, + "length": 16, + "value": "\"kbs_speed_sent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 1688, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1822, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1829, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1845, + "length": 10, + "value": "\"totalRTT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1875, + "length": 27, + "value": "\"total_rtt_connectivity_ms\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 1915, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1930, + "length": 22, + "value": "\"totalRTTMeasurements\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1972, + "length": 32, + "value": "\"total_rtt_connectivity_measure\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 2017, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 2061, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 2140, + "length": 27, + "value": "\"total_rtt_connectivity_ms\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 2180, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 2250, + "length": 32, + "value": "\"total_rtt_connectivity_measure\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 2295, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 2300, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 2462, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 2707, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 2734, + "length": 10, + "value": "\"totalRTT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 2771, + "length": 22, + "value": "\"totalRTTMeasurements\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 2995, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 3033, + "length": 7, + "value": "\"relay\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 3058, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 3132, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 3306, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 3311, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 3412, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 3417, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 3444, + "length": 24, + "value": "\"kbs_incoming_bandwidth\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 3500, + "length": 24, + "value": "\"kbs_outgoing_bandwidth\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 3755, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 3833, + "length": 9, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 3841, + "length": 9, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 3847, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 3890, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 3903, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 4157, + "length": 9, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 4165, + "length": 9, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 4171, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 4214, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 4227, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 4626, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 4836, + "length": 20, + "value": "\"percentPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 4876, + "length": 25, + "value": "\"percent_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 4906, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 4921, + "length": 17, + "value": "\"packetsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 4958, + "length": 18, + "value": "\"total_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 4981, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 4996, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 5029, + "length": 23, + "value": "\"total_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5057, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 5072, + "length": 15, + "value": "\"bytesReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 5107, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5129, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5230, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5302, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 5364, + "length": 23, + "value": "\"total_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5400, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 5471, + "length": 18, + "value": "\"total_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5502, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 5572, + "length": 18, + "value": "\"total_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5603, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5644, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "FloatLiteral", + "offset": 5719, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5802, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5807, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 5878, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5911, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 6015, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6064, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 6189, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 6223, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "FloatLiteral", + "offset": 6258, + "length": 5, + "value": "0.008" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 6266, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 6330, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6358, + "length": 20, + "value": "\"percentPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6408, + "length": 17, + "value": "\"packetsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6452, + "length": 22, + "value": "\"deltaPacketsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6506, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6542, + "length": 18, + "value": "\"deltaPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6588, + "length": 16, + "value": "\"KBytesReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6630, + "length": 21, + "value": "\"deltaKBytesReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6682, + "length": 13, + "value": "\"kbsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 6918, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 6972, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 7162, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 7253, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 7332, + "length": 26, + "value": "\"total_concealment_events\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 7371, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 7488, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 7593, + "length": 41, + "value": "\"total_inserted_samples_for_deceleration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 7647, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 7762, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 7865, + "length": 40, + "value": "\"total_removed_samples_for_acceleration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 7918, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 7943, + "length": 24, + "value": "\"totalConcealmentEvents\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8001, + "length": 24, + "value": "\"deltaConcealmentEvents\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8059, + "length": 37, + "value": "\"totalInsertedSamplesForDeceleration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8143, + "length": 37, + "value": "\"deltaInsertedSamplesForDeceleration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8227, + "length": 36, + "value": "\"totalRemovedSamplesForAcceleration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8309, + "length": 36, + "value": "\"deltaRemovedSamplesForAcceleration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 8577, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8779, + "length": 23, + "value": "\"delta_ms_decode_frame\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8827, + "length": 26, + "value": "\"delta_ms_decode_frame_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 8858, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8873, + "length": 16, + "value": "\"frames_decoded\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8914, + "length": 25, + "value": "\"total_frames_decoded_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 8944, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8959, + "length": 19, + "value": "\"total_decode_time\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9003, + "length": 23, + "value": "\"total_time_decoded_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 9031, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9107, + "length": 23, + "value": "\"total_time_decoded_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 9146, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9203, + "length": 25, + "value": "\"total_frames_decoded_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 9241, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 9414, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 9437, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 9466, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9490, + "length": 23, + "value": "\"delta_ms_decode_frame\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9543, + "length": 16, + "value": "\"frames_decoded\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9584, + "length": 19, + "value": "\"total_decode_time\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9715, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9776, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9839, + "length": 11, + "value": "\"framerate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10200, + "length": 10, + "value": "\"pliCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10228, + "length": 19, + "value": "\"total_pli_sent_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 10252, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10267, + "length": 11, + "value": "\"nackCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10296, + "length": 20, + "value": "\"total_nack_sent_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 10321, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10336, + "length": 15, + "value": "\"deltaPliCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 10353, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10368, + "length": 16, + "value": "\"deltaNackCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 10386, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 10497, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10551, + "length": 19, + "value": "\"total_pli_sent_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 10583, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10636, + "length": 20, + "value": "\"total_nack_sent_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 10669, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10801, + "length": 10, + "value": "\"pliCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10831, + "length": 11, + "value": "\"nackCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10863, + "length": 15, + "value": "\"deltaPliCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10903, + "length": 16, + "value": "\"deltaNackCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 11134, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11317, + "length": 13, + "value": "\"packetsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11350, + "length": 19, + "value": "\"total_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 11374, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11389, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11422, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 11440, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11481, + "length": 11, + "value": "\"bytesSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11512, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 11535, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11602, + "length": 19, + "value": "\"total_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 11634, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 11731, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11783, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 11814, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 11976, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12025, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 12130, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 12160, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "FloatLiteral", + "offset": 12191, + "length": 5, + "value": "0.008" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 12199, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 12225, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12249, + "length": 13, + "value": "\"packetsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12285, + "length": 18, + "value": "\"deltaPacketsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12331, + "length": 12, + "value": "\"KBytesSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12365, + "length": 17, + "value": "\"deltaKBytesSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12409, + "length": 9, + "value": "\"kbsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 12626, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12670, + "length": 24, + "value": "\"total_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 12707, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 12736, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "FloatLiteral", + "offset": 12761, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12942, + "length": 24, + "value": "\"total_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 12979, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 13094, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 13146, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 13182, + "length": 18, + "value": "\"deltaPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 13228, + "length": 14, + "value": "\"fractionLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 14031, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 14066, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14166, + "length": 8, + "value": "\"reason\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14193, + "length": 11, + "value": "\"durations\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14226, + "length": 19, + "value": "\"resolutionChanges\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14361, + "length": 10, + "value": "\"channels\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 14410, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14421, + "length": 12, + "value": "\"clock_rate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 14473, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14484, + "length": 11, + "value": "\"mime_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14534, + "length": 12, + "value": "\"audio\/opus\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14556, + "length": 15, + "value": "\"sdp_fmtp_line\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14613, + "length": 9, + "value": "\"apt=100\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14718, + "length": 12, + "value": "\"clock_rate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 14770, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14781, + "length": 11, + "value": "\"mime_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14831, + "length": 11, + "value": "\"video\/rtx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 15035, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 15079, + "length": 18, + "value": "\"total_rtt_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 15110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 15158, + "length": 23, + "value": "\"total_rtt_measure_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 15194, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 15256, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 15263, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 15275, + "length": 10, + "value": "\"totalRTT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 15308, + "length": 22, + "value": "\"totalRTTMeasurements\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 15428, + "length": 15, + "value": "\"timestamp_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 15802, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 15964, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 16099, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 16268, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 16378, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 16405, + "length": 10, + "value": "\"totalRTT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 16442, + "length": 22, + "value": "\"totalRTTMeasurements\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 16662, + "length": 16, + "value": "\"candidate-pair\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "BooleanLiteral", + "offset": 16707, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "BooleanLiteral", + "offset": 16853, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "BooleanLiteral", + "offset": 17053, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17372, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17482, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17534, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17569, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17606, + "length": 23, + "value": "\"total_KBytes_received\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17710, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17762, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17797, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17835, + "length": 19, + "value": "\"total_KBytes_sent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17935, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17987, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18022, + "length": 17, + "value": "\"delta_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18059, + "length": 23, + "value": "\"delta_KBytes_received\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18163, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18215, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18250, + "length": 18, + "value": "\"delta_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18288, + "length": 19, + "value": "\"delta_KBytes_sent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18388, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18440, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18475, + "length": 14, + "value": "\"delta_kbs_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18509, + "length": 20, + "value": "\"kbs_speed_received\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18610, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18662, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18697, + "length": 15, + "value": "\"delta_kbs_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18732, + "length": 16, + "value": "\"kbs_speed_sent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18829, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18881, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18916, + "length": 27, + "value": "\"delta_rtt_connectivity_ms\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18961, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19050, + "length": 17, + "value": "\"local-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19160, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19235, + "length": 20, + "value": "\"local_candidate_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19392, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19450, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19488, + "length": 16, + "value": "\"infrastructure\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19546, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19640, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19698, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19733, + "length": 26, + "value": "\"local_candidate_protocol\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19801, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19895, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19953, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19988, + "length": 32, + "value": "\"local_candidate_relay_protocol\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 20155, + "length": 13, + "value": "\"inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Array", + "offset": 20398, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 20505, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 20534, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 20994, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21206, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21242, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21297, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21307, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21411, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21447, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21502, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21512, + "length": 13, + "value": "\"codec_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21609, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21645, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21700, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21710, + "length": 18, + "value": "\"total_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21735, + "length": 17, + "value": "\"packetsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21818, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21854, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21909, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21919, + "length": 18, + "value": "\"delta_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21944, + "length": 22, + "value": "\"deltaPacketsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22033, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22069, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22124, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22134, + "length": 23, + "value": "\"total_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22164, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22244, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22280, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22335, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22345, + "length": 23, + "value": "\"delta_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22375, + "length": 18, + "value": "\"deltaPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22460, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22496, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22551, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22561, + "length": 25, + "value": "\"percent_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22593, + "length": 20, + "value": "\"percentPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22680, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22716, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22771, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22781, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22805, + "length": 16, + "value": "\"KBytesReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22888, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22924, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22979, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22989, + "length": 17, + "value": "\"delta_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23013, + "length": 21, + "value": "\"deltaKBytesReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23099, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23133, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23186, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23196, + "length": 14, + "value": "\"delta_kbs_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23217, + "length": 13, + "value": "\"kbsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23295, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23329, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23382, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23392, + "length": 20, + "value": "\"delta_jitter_ms_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23484, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23518, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23571, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23604, + "length": 26, + "value": "\"total_concealment_events\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23642, + "length": 24, + "value": "\"totalConcealmentEvents\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23753, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23787, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23840, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23873, + "length": 26, + "value": "\"delta_concealment_events\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23911, + "length": 24, + "value": "\"deltaConcealmentEvents\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24022, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24056, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24109, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24142, + "length": 41, + "value": "\"total_inserted_samples_for_decelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24221, + "length": 37, + "value": "\"totalInsertedSamplesForDecelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24345, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24379, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24432, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24465, + "length": 41, + "value": "\"delta_inserted_samples_for_decelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24544, + "length": 37, + "value": "\"deltaInsertedSamplesForDecelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24668, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24702, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24755, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24788, + "length": 40, + "value": "\"total_removed_samples_for_accelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24866, + "length": 36, + "value": "\"totalRemovedSamplesForAccelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24989, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25023, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25076, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25109, + "length": 40, + "value": "\"delta_removed_samples_for_accelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25187, + "length": 35, + "value": "\"deltaRemovedSampleForAccelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25309, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25343, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25396, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25406, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25514, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25548, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25601, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25636, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25776, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25810, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25863, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25898, + "length": 17, + "value": "\"media_source_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26470, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26615, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26651, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26706, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26716, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26820, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26856, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26911, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26921, + "length": 13, + "value": "\"codec_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27018, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27054, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27109, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27119, + "length": 18, + "value": "\"total_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27151, + "length": 17, + "value": "\"packetsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27234, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27270, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27325, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27362, + "length": 18, + "value": "\"delta_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27394, + "length": 22, + "value": "\"deltaPacketsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27502, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27536, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27589, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27599, + "length": 23, + "value": "\"total_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27636, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27714, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27748, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27801, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27834, + "length": 23, + "value": "\"delta_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27871, + "length": 18, + "value": "\"deltaPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27975, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28009, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28062, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28095, + "length": 25, + "value": "\"percent_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28134, + "length": 20, + "value": "\"percentPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28240, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28274, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28327, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28337, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28368, + "length": 16, + "value": "\"KBytesReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28449, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28483, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28536, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28546, + "length": 17, + "value": "\"delta_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28577, + "length": 21, + "value": "\"deltaKBytesReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28663, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28697, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28750, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28760, + "length": 14, + "value": "\"delta_kbs_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28788, + "length": 13, + "value": "\"kbsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28866, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28900, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28953, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28963, + "length": 20, + "value": "\"delta_jitter_ms_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29055, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29089, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29142, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29152, + "length": 9, + "value": "\"size_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29237, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29271, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29324, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29334, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29442, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29476, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29529, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29539, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29658, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29692, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29745, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29755, + "length": 17, + "value": "\"media_source_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29882, + "length": 14, + "value": "\"outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 30251, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 30281, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 30297, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 30715, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 30802, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 30839, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 30895, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 30905, + "length": 14, + "value": "\"codec_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31007, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31044, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31100, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31110, + "length": 19, + "value": "\"total_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31136, + "length": 13, + "value": "\"packetsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31216, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31251, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31305, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31315, + "length": 19, + "value": "\"delta_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31341, + "length": 18, + "value": "\"deltaPacketsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31427, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31462, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31516, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31526, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31551, + "length": 12, + "value": "\"KBytesSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31631, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31666, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31720, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31730, + "length": 18, + "value": "\"delta_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31755, + "length": 17, + "value": "\"deltaKBytesSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31840, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31875, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31929, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31939, + "length": 15, + "value": "\"delta_kbs_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31961, + "length": 9, + "value": "\"kbsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32038, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32073, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32127, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32137, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32249, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32284, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32338, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32348, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32471, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32506, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32560, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32570, + "length": 17, + "value": "\"media_source_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33089, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33418, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33455, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33511, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33521, + "length": 14, + "value": "\"codec_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33623, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33660, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33716, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33726, + "length": 19, + "value": "\"total_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33756, + "length": 13, + "value": "\"packetsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33836, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33871, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33925, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33935, + "length": 19, + "value": "\"delta_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33965, + "length": 18, + "value": "\"deltaPacketsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34051, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34086, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34140, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34150, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34179, + "length": 12, + "value": "\"KBytesSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34259, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34294, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34348, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34358, + "length": 18, + "value": "\"delta_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34387, + "length": 17, + "value": "\"deltaKBytesSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34472, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34507, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34561, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34571, + "length": 15, + "value": "\"delta_kbs_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34597, + "length": 9, + "value": "\"kbsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34674, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34709, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34763, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34773, + "length": 10, + "value": "\"size_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34863, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34898, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34952, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34962, + "length": 16, + "value": "\"limitation_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35060, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35095, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35149, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35159, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35271, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35306, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35360, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35370, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35493, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35528, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35582, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35592, + "length": 17, + "value": "\"media_source_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35722, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Array", + "offset": 35769, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36093, + "length": 13, + "value": "\"codec_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36175, + "length": 14, + "value": "\"codec_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36400, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36423, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36434, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36470, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36535, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36545, + "length": 10, + "value": "\"codec_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36743, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36766, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36777, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36813, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36878, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36888, + "length": 11, + "value": "\"codec_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37340, + "length": 13, + "value": "\"codec_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37422, + "length": 14, + "value": "\"codec_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37647, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37670, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37681, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37717, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37782, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37792, + "length": 10, + "value": "\"codec_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37990, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 38013, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 38024, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 38060, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 38125, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 38135, + "length": 11, + "value": "\"codec_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 38323, + "length": 20, + "value": "\"remote-inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 38445, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 38638, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39237, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39271, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39324, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39334, + "length": 18, + "value": "\"delta_rtt_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39359, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39424, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39458, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39511, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39521, + "length": 21, + "value": "\"delta_jitter_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39609, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39643, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39696, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39706, + "length": 15, + "value": "\"timestamp_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39816, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39850, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39903, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39913, + "length": 24, + "value": "\"total_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39947, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40020, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40054, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40107, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40117, + "length": 24, + "value": "\"delta_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40151, + "length": 18, + "value": "\"deltaPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40229, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40263, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40316, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40326, + "length": 26, + "value": "\"percent_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40362, + "length": 14, + "value": "\"fractionLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40486, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41085, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41119, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41172, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41182, + "length": 18, + "value": "\"delta_rtt_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41207, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41272, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41306, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41359, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41369, + "length": 21, + "value": "\"delta_jitter_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41457, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41491, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41544, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41554, + "length": 15, + "value": "\"timestamp_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41664, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41698, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41751, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41761, + "length": 24, + "value": "\"total_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41795, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41868, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41902, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41955, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41965, + "length": 24, + "value": "\"delta_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41999, + "length": 18, + "value": "\"deltaPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42080, + "length": 21, + "value": "\"remote-outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 42203, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42397, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42665, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42699, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42752, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42762, + "length": 17, + "value": "\"delta_rtt_ms_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42786, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42851, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42885, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42938, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42948, + "length": 14, + "value": "\"timestamp_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43065, + "length": 14, + "value": "\"media-source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Array", + "offset": 43119, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 43319, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 43402, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43436, + "length": 17, + "value": "\"media_source_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43598, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43621, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43643, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43667, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43720, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43730, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 44005, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 44088, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44135, + "length": 17, + "value": "\"media_source_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44297, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44320, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44342, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44366, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44419, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44429, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44539, + "length": 7, + "value": "\"track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Array", + "offset": 44586, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 44787, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 44870, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44917, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44964, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45081, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45124, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45209, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45232, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45251, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45279, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45336, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45346, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45440, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45526, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45549, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45568, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45596, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45653, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45663, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 45973, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 46056, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46103, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46150, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46267, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46310, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46395, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46418, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46437, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46465, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46522, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46532, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46626, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46712, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46735, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46754, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46782, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46839, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46849, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Array", + "offset": 47026, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "Array", + "offset": 9025, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "StringLiteral", + "offset": 9360, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "StringLiteral", + "offset": 9542, + "length": 12, + "value": "\".FieldMask\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "IntegerLiteral", + "offset": 9611, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "StringLiteral", + "offset": 9627, + "length": 7, + "value": "\"paths\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "IntegerLiteral", + "offset": 10049, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "IntegerLiteral", + "offset": 10326, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "BooleanLiteral", + "offset": 10526, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "BooleanLiteral", + "offset": 10587, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "BooleanLiteral", + "offset": 10605, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTag.swift", + "kind": "IntegerLiteral", + "offset": 1267, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTag.swift", + "kind": "IntegerLiteral", + "offset": 1660, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTag.swift", + "kind": "IntegerLiteral", + "offset": 2198, + "length": 4, + "value": "0x07" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTag.swift", + "kind": "IntegerLiteral", + "offset": 2206, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTag.swift", + "kind": "IntegerLiteral", + "offset": 2261, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTag.swift", + "kind": "IntegerLiteral", + "offset": 2520, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "FloatLiteral", + "offset": 3383, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "FloatLiteral", + "offset": 4531, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 5692, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 6847, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 8005, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 9169, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 10330, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 11492, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 12657, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 13827, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 14997, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 16172, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "BooleanLiteral", + "offset": 17337, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "BooleanLiteral", + "offset": 18506, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "BooleanLiteral", + "offset": 19614, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "BooleanLiteral", + "offset": 20699, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/FilteredExemplarReservoir.swift", + "kind": "StringLiteral", + "offset": 118, + "length": 25, + "value": "\"VideoSDKRTC.FilteredExemplarReservoir\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Extensions.swift", + "kind": "StringLiteral", + "offset": 749, + "length": 21, + "value": "\"type.googleapis.com\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Extensions.swift", + "kind": "BooleanLiteral", + "offset": 1788, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3036, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Extensions.swift", + "kind": "StringLiteral", + "offset": 5272, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 743, + "length": 33, + "value": "\"org.swift.protobuf.typeRegistry\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 1107, + "length": 3, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 1140, + "length": 3, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 1526, + "length": 3, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 1763, + "length": 21, + "value": "\"google.protobuf.Any\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 1814, + "length": 27, + "value": "\"google.protobuf.BoolValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 1877, + "length": 28, + "value": "\"google.protobuf.BytesValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 1942, + "length": 29, + "value": "\"google.protobuf.DoubleValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2009, + "length": 26, + "value": "\"google.protobuf.Duration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2070, + "length": 23, + "value": "\"google.protobuf.Empty\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2125, + "length": 27, + "value": "\"google.protobuf.FieldMask\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2188, + "length": 28, + "value": "\"google.protobuf.FloatValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2253, + "length": 28, + "value": "\"google.protobuf.Int32Value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2318, + "length": 28, + "value": "\"google.protobuf.Int64Value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2383, + "length": 27, + "value": "\"google.protobuf.ListValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2446, + "length": 29, + "value": "\"google.protobuf.StringValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2513, + "length": 24, + "value": "\"google.protobuf.Struct\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2570, + "length": 27, + "value": "\"google.protobuf.Timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2633, + "length": 29, + "value": "\"google.protobuf.UInt32Value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2700, + "length": 29, + "value": "\"google.protobuf.UInt64Value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2767, + "length": 23, + "value": "\"google.protobuf.Value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "BooleanLiteral", + "offset": 4291, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "BooleanLiteral", + "offset": 4764, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 771, + "length": 12, + "value": "315576000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 901, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 917, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 996, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "BooleanLiteral", + "offset": 1017, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1078, + "length": 3, + "value": "\"-\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1149, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "BooleanLiteral", + "offset": 1253, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1267, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1277, + "length": 3, + "value": "\"2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1282, + "length": 3, + "value": "\"3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1287, + "length": 3, + "value": "\"4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1292, + "length": 3, + "value": "\"5\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 3, + "value": "\"6\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1302, + "length": 3, + "value": "\"7\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1307, + "length": 3, + "value": "\"8\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1312, + "length": 3, + "value": "\"9\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1360, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1371, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1735, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1746, + "length": 3, + "value": "\"s\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1857, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1896, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1926, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1965, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2023, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2900, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3297, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3310, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 3325, + "length": 19, + "value": "\"-0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 3342, + "length": 1, + "value": "\"s\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 3358, + "length": 27, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 3369, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 3383, + "length": 1, + "value": "\"s\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3672, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3690, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 4158, + "length": 18, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 4173, + "length": 1, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5958, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5967, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 6004, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 6022, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 6031, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 6068, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1154, + "length": 4, + "value": "0x20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1167, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "BooleanLiteral", + "offset": 1187, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "BooleanLiteral", + "offset": 1212, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1438, + "length": 3, + "value": "\"_\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1519, + "length": 3, + "value": "\"a\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1525, + "length": 3, + "value": "\"z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1685, + "length": 3, + "value": "\"A\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1691, + "length": 3, + "value": "\"Z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1722, + "length": 3, + "value": "\"a\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1728, + "length": 3, + "value": "\"z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1732, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1738, + "length": 3, + "value": "\"9\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1742, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1746, + "length": 3, + "value": "\"(\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1750, + "length": 3, + "value": "\")\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2125, + "length": 3, + "value": "\"_\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2156, + "length": 3, + "value": "\"A\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2162, + "length": 3, + "value": "\"Z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2195, + "length": 3, + "value": "\"_\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2252, + "length": 3, + "value": "\"a\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2258, + "length": 3, + "value": "\"z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2262, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2268, + "length": 3, + "value": "\"9\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2272, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2276, + "length": 3, + "value": "\"(\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2280, + "length": 3, + "value": "\")\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "Array", + "offset": 2633, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2661, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2758, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2790, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2995, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3060, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3095, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 5655, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 5690, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 5697, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_ListValue+Extensions.swift", + "kind": "StringLiteral", + "offset": 1283, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_ListValue+Extensions.swift", + "kind": "StringLiteral", + "offset": 1322, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_ListValue+Extensions.swift", + "kind": "StringLiteral", + "offset": 1480, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_ListValue+Extensions.swift", + "kind": "StringLiteral", + "offset": 1519, + "length": 3, + "value": "\"]\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_ListValue+Extensions.swift", + "kind": "BooleanLiteral", + "offset": 2036, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_NullValue+Extensions.swift", + "kind": "StringLiteral", + "offset": 766, + "length": 6, + "value": "\"null\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Struct+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1458, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Struct+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1531, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Struct+Extensions.swift", + "kind": "BooleanLiteral", + "offset": 1829, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 697, + "length": 12, + "value": "-62135596800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 776, + "length": 12, + "value": "253402300799" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1308, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1465, + "length": 2, + "value": "48" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1486, + "length": 2, + "value": "57" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1507, + "length": 2, + "value": "45" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1529, + "length": 2, + "value": "58" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1550, + "length": 2, + "value": "43" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1574, + "length": 2, + "value": "84" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1598, + "length": 2, + "value": "90" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1621, + "length": 2, + "value": "46" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1839, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1853, + "length": 3, + "value": "528" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2213, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2229, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2244, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2258, + "length": 5, + "value": "53328" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2339, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2349, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2359, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2369, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2384, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2409, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2426, + "length": 4, + "value": "9999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2558, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2568, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2583, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2609, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2627, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2754, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2764, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2779, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2808, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2825, + "length": 2, + "value": "31" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2953, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2964, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2980, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3007, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3139, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3150, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3166, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3195, + "length": 2, + "value": "59" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3345, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3356, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3379, + "length": 2, + "value": "61" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "Array", + "offset": 3769, + "length": 55, + "value": "[0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3862, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3889, + "length": 3, + "value": "400" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3896, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3911, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3918, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3932, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3937, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3965, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3982, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4011, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4122, + "length": 3, + "value": "365" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4142, + "length": 6, + "value": "719527" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4184, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4189, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4226, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4231, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4270, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4275, + "length": 3, + "value": "400" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4343, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4384, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4481, + "length": 5, + "value": "86400" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4558, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4583, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4657, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4680, + "length": 9, + "value": "100000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4839, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4855, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4891, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5080, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5201, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5217, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5271, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5287, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5315, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5341, + "length": 2, + "value": "59" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5360, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5529, + "length": 4, + "value": "3600" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5581, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5642, + "length": 4, + "value": "3600" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5694, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5867, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5957, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6540, + "length": 50, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6557, + "length": 1, + "value": "\"-\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6573, + "length": 1, + "value": "\"-\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6589, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6610, + "length": 49, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6626, + "length": 1, + "value": "\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6642, + "length": 1, + "value": "\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6658, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6752, + "length": 44, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6766, + "length": 1, + "value": "\"T\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6780, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6794, + "length": 1, + "value": "\"Z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 7085, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 7103, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 7572, + "length": 18, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 7587, + "length": 1, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Value+Extensions.swift", + "kind": "StringLiteral", + "offset": 2826, + "length": 3, + "value": "\"n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Value+Extensions.swift", + "kind": "StringLiteral", + "offset": 2971, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Value+Extensions.swift", + "kind": "StringLiteral", + "offset": 3093, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Value+Extensions.swift", + "kind": "StringLiteral", + "offset": 3214, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Value+Extensions.swift", + "kind": "StringLiteral", + "offset": 3219, + "length": 3, + "value": "\"f\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Value+Extensions.swift", + "kind": "StringLiteral", + "offset": 3305, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Wrappers+Extensions.swift", + "kind": "StringLiteral", + "offset": 3726, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Wrappers+Extensions.swift", + "kind": "StringLiteral", + "offset": 3743, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Wrappers+Extensions.swift", + "kind": "StringLiteral", + "offset": 4344, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Wrappers+Extensions.swift", + "kind": "StringLiteral", + "offset": 4361, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Wrappers+Extensions.swift", + "kind": "StringLiteral", + "offset": 5858, + "length": 6, + "value": "\"true\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Wrappers+Extensions.swift", + "kind": "StringLiteral", + "offset": 5867, + "length": 7, + "value": "\"false\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/HashVisitor.swift", + "kind": "IntegerLiteral", + "offset": 660, + "length": 10, + "value": "2166136261" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/HashVisitor.swift", + "kind": "IntegerLiteral", + "offset": 701, + "length": 8, + "value": "16777619" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/Headers.swift", + "kind": "StringLiteral", + "offset": 512, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/Headers.swift", + "kind": "IntegerLiteral", + "offset": 566, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/Headers.swift", + "kind": "StringLiteral", + "offset": 604, + "length": 37, + "value": "\"OTel-OTLP-Exporter-Swift\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/Headers.swift", + "kind": "StringLiteral", + "offset": 640, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 305, + "length": 3, + "value": "180" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 329, + "length": 3, + "value": "180" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 346, + "length": 3, + "value": "180" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 352, + "length": 3, + "value": "360" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 376, + "length": 3, + "value": "360" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 393, + "length": 3, + "value": "360" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 399, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 423, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 440, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 446, + "length": 4, + "value": "1080" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 471, + "length": 4, + "value": "1080" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 489, + "length": 4, + "value": "1080" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 496, + "length": 4, + "value": "1440" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 521, + "length": 4, + "value": "1440" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 560, + "length": 4, + "value": "1440" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 585, + "length": 4, + "value": "2160" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 626, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "BooleanLiteral", + "offset": 793, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 1207, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "StringLiteral", + "offset": 1268, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "StringLiteral", + "offset": 1290, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "StringLiteral", + "offset": 1296, + "length": 7, + "value": "\"track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "StringLiteral", + "offset": 1350, + "length": 13, + "value": "\"frameHeight\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 1376, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "StringLiteral", + "offset": 1420, + "length": 12, + "value": "\"frameWidth\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 1445, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "Array", + "offset": 488, + "length": 119, + "value": "[5, 10, 25, 50, 75, 100, 250, 500, 750, 1000, 2500, 5000, 7500, 10000]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 758, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1310, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1386, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1518, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1701, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "StringLiteral", + "offset": 209, + "length": 19, + "value": "\"VideoSDKRTC.HistogramAggregator\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 3385, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 3403, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 3498, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 3527, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/HistogramExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 283, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/HistogramExemplarReservoir.swift", + "kind": "StringLiteral", + "offset": 118, + "length": 26, + "value": "\"VideoSDKRTC.HistogramExemplarReservoir\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/Internal\/HistogramPointData.swift", + "kind": "StringLiteral", + "offset": 117, + "length": 18, + "value": "\"VideoSDKRTC.HistogramPointData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 749, + "length": 8, + "value": "\"layout\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 788, + "length": 7, + "value": "\"theme\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 825, + "length": 6, + "value": "\"mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 860, + "length": 9, + "value": "\"quality\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 901, + "length": 13, + "value": "\"orientation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1602, + "length": 8, + "value": "\"layout\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1641, + "length": 7, + "value": "\"theme\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 6, + "value": "\"mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1713, + "length": 9, + "value": "\"quality\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1754, + "length": 13, + "value": "\"orientation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1875, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1918, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1960, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2123, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2174, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2223, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2310, + "length": 15, + "value": "\"downstreamUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2359, + "length": 16, + "value": "\"playbackHlsUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2410, + "length": 15, + "value": "\"livestreamUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "IntegerLiteral", + "offset": 2633, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2904, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2939, + "length": 10, + "value": "\"priority\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2982, + "length": 10, + "value": "\"gridSize\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3084, + "length": 9, + "value": "\"SPEAKER\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3101, + "length": 5, + "value": "\"PIN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3084, + "length": 9, + "value": "\"SPEAKER\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3101, + "length": 5, + "value": "\"PIN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3165, + "length": 6, + "value": "\"GRID\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3185, + "length": 11, + "value": "\"SPOTLIGHT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3208, + "length": 9, + "value": "\"SIDEBAR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3165, + "length": 6, + "value": "\"GRID\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3185, + "length": 11, + "value": "\"SPOTLIGHT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3208, + "length": 9, + "value": "\"SIDEBAR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3274, + "length": 9, + "value": "\"DEFAULT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3293, + "length": 7, + "value": "\"LIGHT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3309, + "length": 6, + "value": "\"DARK\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3274, + "length": 9, + "value": "\"DEFAULT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3293, + "length": 7, + "value": "\"LIGHT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3309, + "length": 6, + "value": "\"DARK\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3379, + "length": 17, + "value": "\"video-and-audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3406, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3379, + "length": 17, + "value": "\"video-and-audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3406, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3469, + "length": 6, + "value": "\"high\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3469, + "length": 6, + "value": "\"high\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3550, + "length": 11, + "value": "\"landscape\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3550, + "length": 11, + "value": "\"landscape\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Export\/InMemoryLogRecordExporter.swift", + "kind": "BooleanLiteral", + "offset": 253, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Export\/InMemoryLogRecordExporter.swift", + "kind": "BooleanLiteral", + "offset": 689, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Common\/InstrumentationLibraryInfo.swift", + "kind": "StringLiteral", + "offset": 353, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/InstrumentSelectorBuilder.swift", + "kind": "StringLiteral", + "offset": 221, + "length": 4, + "value": "\".*\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Internal.swift", + "kind": "BooleanLiteral", + "offset": 1493, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Internal.swift", + "kind": "BooleanLiteral", + "offset": 1524, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Internal.swift", + "kind": "BooleanLiteral", + "offset": 1855, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Internal.swift", + "kind": "BooleanLiteral", + "offset": 1886, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSBroadcastScreenCapturer.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 10, + "value": "\"rtc_SSFD\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSBroadcastScreenCapturer.swift", + "kind": "StringLiteral", + "offset": 408, + "length": 23, + "value": "\"RTCAppGroupIdentifier\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSBroadcastScreenCapturer.swift", + "kind": "StringLiteral", + "offset": 476, + "length": 27, + "value": "\"RTCScreenSharingExtension\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSBroadcastScreenCapturer.swift", + "kind": "BooleanLiteral", + "offset": 774, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSBroadcastScreenCapturer.swift", + "kind": "BooleanLiteral", + "offset": 1705, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSBroadcastScreenCapturer.swift", + "kind": "BooleanLiteral", + "offset": 1869, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 610, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 805, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 839, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 866, + "length": 31, + "value": "\"DEBUG::failure: create socket\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 979, + "length": 31, + "value": "\"DEBUG::open socket connection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 1045, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 1075, + "length": 34, + "value": "\"DEBUG::failed setting up address\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 1131, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 1178, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 1209, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 1314, + "length": 37, + "value": "\"DEBUG::failure: socket file missing\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 1372, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 1430, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 1437, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 1464, + "length": 52, + "value": "\"DEBUG::failure: socket failed listening connection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 1537, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 1795, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 1826, + "length": 52, + "value": "\"DEBUG::failure: socket failed accepting connection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 2071, + "length": 21, + "value": "\"DEBUG::streams open\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 2200, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 2462, + "length": 30, + "value": "\"DEBUG::closing server socket\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 2713, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 2942, + "length": 37, + "value": "\"DEBUG::failure: fd path is too long\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 3000, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 3301, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 3411, + "length": 29, + "value": "\"DEBUG::failure: no address?\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 3461, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 3600, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 3774, + "length": 27, + "value": "\"DEBUG::failure: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 3800, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 3822, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 3854, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 4636, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 4918, + "length": 26, + "value": "\"DEBUG::streams scheduled\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 4974, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 5057, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 5175, + "length": 24, + "value": "\"DEBUG::streams stopped\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 5271, + "length": 26, + "value": "\"DEBUG::unscheduleStreams\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 5527, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 25, + "value": "\"VideoSDKRTC.BroadcastSocketConnection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "BooleanLiteral", + "offset": 805, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 901, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 1057, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 1157, + "length": 16, + "value": "\"Content-Length\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 1326, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 1550, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 1981, + "length": 14, + "value": "\"Buffer-Width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 2110, + "length": 15, + "value": "\"Buffer-Height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 2250, + "length": 20, + "value": "\"Buffer-Orientation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "BooleanLiteral", + "offset": 2430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 2895, + "length": 37, + "value": "\"Warning::CVPixelBufferCreate failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "BooleanLiteral", + "offset": 2953, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "BooleanLiteral", + "offset": 3046, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "Array", + "offset": 3221, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "Array", + "offset": 3531, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 3648, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 3653, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 3687, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 5285, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 5414, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 5436, + "length": 40, + "value": "\"DEBUG::error reading bytes from stream\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 5613, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 3560, + "length": 27, + "value": "\"VideoSDKRTC.SocketConnectionFrameReader\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 6720, + "length": 37, + "value": "\"DEBUG::server stream open completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 6893, + "length": 38, + "value": "\"DEBUG::server stream end encountered\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 7006, + "length": 92, + "value": "\"DEBUG::server stream error encountered: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 7094, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 7097, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "StringLiteral", + "offset": 345, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Array", + "offset": 539, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Dictionary", + "offset": 586, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Array", + "offset": 767, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Array", + "offset": 805, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Dictionary", + "offset": 1012, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Array", + "offset": 1270, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "StringLiteral", + "offset": 1313, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Array", + "offset": 1529, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "StringLiteral", + "offset": 1572, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Dictionary", + "offset": 1805, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Array", + "offset": 2025, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 686, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 713, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 1567, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 1822, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 1995, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 2479, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 2782, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 3272, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 3574, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 4342, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 4777, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 5259, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5561, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 6291, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6707, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 7193, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 9771, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 10417, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 11228, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 12032, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13409, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15423, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15491, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15712, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 16875, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "StringLiteral", + "offset": 17044, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17123, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17247, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18070, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "StringLiteral", + "offset": 18239, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18318, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18547, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 19451, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "StringLiteral", + "offset": 19620, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 19699, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 19823, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecodingOptions.swift", + "kind": "IntegerLiteral", + "offset": 888, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecodingOptions.swift", + "kind": "BooleanLiteral", + "offset": 1166, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 576, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 617, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 658, + "length": 3, + "value": "\"2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 701, + "length": 3, + "value": "\"3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 743, + "length": 3, + "value": "\"4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 785, + "length": 3, + "value": "\"5\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 826, + "length": 3, + "value": "\"6\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 869, + "length": 3, + "value": "\"7\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 912, + "length": 3, + "value": "\"8\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 954, + "length": 3, + "value": "\"9\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 997, + "length": 3, + "value": "\"-\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1039, + "length": 3, + "value": "\"+\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1083, + "length": 3, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1126, + "length": 3, + "value": "\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1169, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1218, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1266, + "length": 4, + "value": "\"\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1317, + "length": 3, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1372, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1428, + "length": 3, + "value": "\"]\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1482, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1537, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1581, + "length": 3, + "value": "\"A\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1625, + "length": 3, + "value": "\"B\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1669, + "length": 3, + "value": "\"C\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1713, + "length": 3, + "value": "\"D\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1757, + "length": 3, + "value": "\"E\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1801, + "length": 3, + "value": "\"F\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1845, + "length": 3, + "value": "\"Z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1889, + "length": 3, + "value": "\"a\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1933, + "length": 3, + "value": "\"z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 4809, + "length": 5, + "value": "\"\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 5048, + "length": 5, + "value": "\"\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 5125, + "length": 6, + "value": "\"]\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 6403, + "length": 6, + "value": "\"null\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 6665, + "length": 9, + "value": "\"\"NaN\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6735, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 6774, + "length": 15, + "value": "\"\"-Infinity\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 6847, + "length": 14, + "value": "\"\"Infinity\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 7226, + "length": 9, + "value": "\"\"NaN\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7296, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 7335, + "length": 15, + "value": "\"\"-Infinity\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 7408, + "length": 14, + "value": "\"\"Infinity\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7668, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7711, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7771, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7911, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8136, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10365, + "length": 6, + "value": "\"true\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10421, + "length": 7, + "value": "\"false\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 10739, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10761, + "length": 5, + "value": "\"\\b\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 10785, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10807, + "length": 5, + "value": "\"\\t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 10831, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10854, + "length": 5, + "value": "\"\\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 10878, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10901, + "length": 5, + "value": "\"\\f\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 10925, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10948, + "length": 5, + "value": "\"\\r\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 10972, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10995, + "length": 6, + "value": "\"\\\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11020, + "length": 2, + "value": "92" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 11043, + "length": 6, + "value": "\"\\\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11068, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11072, + "length": 2, + "value": "31" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11076, + "length": 3, + "value": "127" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11082, + "length": 3, + "value": "159" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 11155, + "length": 7, + "value": "\"\\u00\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11216, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11274, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11297, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11302, + "length": 3, + "value": "126" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11388, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11395, + "length": 5, + "value": "0x7ff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11430, + "length": 4, + "value": "0xc0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11474, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11506, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11549, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11573, + "length": 5, + "value": "0x800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11581, + "length": 6, + "value": "0xffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11617, + "length": 4, + "value": "0xe0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11661, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11694, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11739, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11744, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11779, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11822, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11878, + "length": 4, + "value": "0xf0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11922, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11955, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12000, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12006, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12041, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12086, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12091, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12126, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12169, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12469, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12599, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12632, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12674, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12701, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12757, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12816, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12822, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12882, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12888, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12948, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12953, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13011, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13044, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13085, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13139, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13190, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13269, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13323, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13329, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13385, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13391, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13447, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13452, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13506, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13532, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13561, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13614, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13620, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13676, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13682, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13738, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13743, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13814, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13843, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13897, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13903, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13959, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13965, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingOptions.swift", + "kind": "BooleanLiteral", + "offset": 854, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingOptions.swift", + "kind": "BooleanLiteral", + "offset": 979, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingOptions.swift", + "kind": "BooleanLiteral", + "offset": 1143, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4654, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4771, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 10995, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 11172, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 12470, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 12646, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 12727, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 12834, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 13124, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 13299, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 13388, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 13476, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 13739, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 13915, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 14009, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 14097, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 1416, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 1505, + "length": 3, + "value": "\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 1683, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 1922, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 2097, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 2375, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 2755, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 3037, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 4392, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 4680, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 4957, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 5189, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 5589, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 570, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 608, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 640, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 676, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 717, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 755, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 799, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 840, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 881, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 924, + "length": 3, + "value": "\"7\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 966, + "length": 3, + "value": "\"9\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1009, + "length": 3, + "value": "\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1053, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1095, + "length": 3, + "value": "\"+\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1138, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1185, + "length": 3, + "value": "\";\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1234, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1284, + "length": 4, + "value": "\"'\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1332, + "length": 4, + "value": "\"\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1383, + "length": 3, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1425, + "length": 3, + "value": "\"#\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1472, + "length": 3, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1520, + "length": 3, + "value": "\"_\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1570, + "length": 3, + "value": "\"?\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1613, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1668, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1724, + "length": 3, + "value": "\"]\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1778, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1833, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 3, + "value": "\"<\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1942, + "length": 3, + "value": "\">\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1985, + "length": 3, + "value": "\"-\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2029, + "length": 3, + "value": "\"a\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2073, + "length": 3, + "value": "\"A\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2117, + "length": 3, + "value": "\"b\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2161, + "length": 3, + "value": "\"e\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2205, + "length": 3, + "value": "\"E\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2249, + "length": 3, + "value": "\"f\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2293, + "length": 3, + "value": "\"I\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2337, + "length": 3, + "value": "\"l\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2381, + "length": 3, + "value": "\"n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2425, + "length": 3, + "value": "\"N\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2469, + "length": 3, + "value": "\"r\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2513, + "length": 3, + "value": "\"s\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2557, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2601, + "length": 3, + "value": "\"u\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2645, + "length": 3, + "value": "\"z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2689, + "length": 3, + "value": "\"Z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2782, + "length": 2, + "value": "48" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2793, + "length": 2, + "value": "57" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2820, + "length": 2, + "value": "48" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2848, + "length": 2, + "value": "65" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2852, + "length": 2, + "value": "97" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2863, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2873, + "length": 2, + "value": "66" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2877, + "length": 2, + "value": "98" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2888, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2898, + "length": 2, + "value": "67" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2902, + "length": 2, + "value": "99" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2913, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2923, + "length": 2, + "value": "68" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2927, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2939, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2949, + "length": 2, + "value": "69" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2953, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2965, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2975, + "length": 2, + "value": "70" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2979, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2991, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "Array", + "offset": 3319, + "length": 1203, + "value": "[-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, 62, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -1, -1, -1, -1, 0, 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, -1, -1, -1, -1, 63, -1, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 5611, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 5645, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 5683, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 6695, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 6804, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 6876, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 6904, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 7333, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 7337, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 7779, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 7799, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 7821, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 7873, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 7920, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 8029, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 8856, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9102, + "length": 2, + "value": "61" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9145, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9524, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9566, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9592, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9614, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9650, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9672, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9708, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9729, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9784, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9810, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9832, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9938, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9955, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9991, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10009, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10045, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10074, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10090, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10144, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10161, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10197, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10226, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10242, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10296, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10325, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 11396, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 11407, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 11418, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 11548, + "length": 6, + "value": "0xD800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 11571, + "length": 6, + "value": "0xE000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 11685, + "length": 6, + "value": "0xDC00" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 11984, + "length": 4, + "value": "\"\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 12006, + "length": 3, + "value": "\"u\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12541, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12552, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12563, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12593, + "length": 6, + "value": "0xDC00" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12626, + "length": 6, + "value": "0xE000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12799, + "length": 6, + "value": "0xD800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12843, + "length": 6, + "value": "0xDC00" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12881, + "length": 7, + "value": "0x10000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12899, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 13426, + "length": 8, + "value": "\"\b\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 13497, + "length": 8, + "value": "\"\f\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 13568, + "length": 8, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 13639, + "length": 8, + "value": "\"\r\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 13710, + "length": 8, + "value": "\"\t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 15463, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 15490, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 15629, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 15839, + "length": 59, + "value": "\"Somehow JSONDecoding unwound more objects than it started\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 19179, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 19212, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 19268, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 19485, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 19495, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 19639, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 21544, + "length": 18, + "value": "0x8000000000000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "FloatLiteral", + "offset": 24047, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 27511, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 28095, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 29619, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 31665, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 33499, + "length": 5, + "value": "\"NaN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 33536, + "length": 5, + "value": "\"Inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 33578, + "length": 6, + "value": "\"-Inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 33622, + "length": 10, + "value": "\"Infinity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 33669, + "length": 11, + "value": "\"-Infinity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 33907, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 35893, + "length": 5, + "value": "\"NaN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 35931, + "length": 5, + "value": "\"Inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 35974, + "length": 6, + "value": "\"-Inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 36019, + "length": 10, + "value": "\"Infinity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 36067, + "length": 11, + "value": "\"-Infinity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 36307, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 39077, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 39172, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 39395, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 39426, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 39770, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 40285, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 40449, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 41013, + "length": 7, + "value": "\"false\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 41029, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 41046, + "length": 6, + "value": "\"true\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 41061, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 42533, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 43354, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 43422, + "length": 3, + "value": "\"]\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 46421, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 46443, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 48192, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 48204, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 48236, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 48305, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 48696, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 48846, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 48906, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 49814, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 49875, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 49916, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 50219, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/LabelSetSdk.swift", + "kind": "StringLiteral", + "offset": 469, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/LabelSetSdk.swift", + "kind": "BooleanLiteral", + "offset": 499, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/LabelSetSdk.swift", + "kind": "StringLiteral", + "offset": 526, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/LabelSetSdk.swift", + "kind": "StringLiteral", + "offset": 532, + "length": 1, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/LabelSetSdk.swift", + "kind": "StringLiteral", + "offset": 538, + "length": 22, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/LabelSetSdk.swift", + "kind": "StringLiteral", + "offset": 618, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/LabelSetSdk.swift", + "kind": "BooleanLiteral", + "offset": 688, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LastValueAggregation.swift", + "kind": "IntegerLiteral", + "offset": 621, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LastValueAggregation.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/LastValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 246, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/LastValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 272, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 1592, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 1725, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 1728, + "length": 45, + "value": "\"pthread_mutex_init failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 1772, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 1875, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 1878, + "length": 48, + "value": "\"pthread_mutex_destroy failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 1925, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 2228, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 2231, + "length": 45, + "value": "\"pthread_mutex_lock failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 2275, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 2548, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 2551, + "length": 47, + "value": "\"pthread_mutex_unlock failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 2597, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 3779, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 3914, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 3917, + "length": 46, + "value": "\"pthread_rwlock_init failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 3962, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 4067, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 4070, + "length": 49, + "value": "\"pthread_rwlock_destroy failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 4118, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 4435, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 4438, + "length": 48, + "value": "\"pthread_rwlock_rdlock failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 4485, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 4770, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 4773, + "length": 48, + "value": "\"pthread_rwlock_wrlock failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 4820, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 5095, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 5098, + "length": 48, + "value": "\"pthread_rwlock_unlock failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 5145, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerBuilderSdk.swift", + "kind": "BooleanLiteral", + "offset": 425, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerProviderBuilder.swift", + "kind": "Array", + "offset": 393, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerProviderSdk.swift", + "kind": "Array", + "offset": 481, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "BooleanLiteral", + "offset": 478, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 817, + "length": 140, + "value": "\"Events cannot be emitted from Logger without an event domain. Use `LoggerBuilder.setEventDomain(_ domain: String) when obtaining a Logger.\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1049, + "length": 8, + "value": "\"unused\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1074, + "length": 8, + "value": "\"unused\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1099, + "length": 14, + "value": "\"event.domain\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1137, + "length": 8, + "value": "\"unused\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1148, + "length": 12, + "value": "\"event.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1219, + "length": 8, + "value": "\"unused\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "BooleanLiteral", + "offset": 1364, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1385, + "length": 14, + "value": "\"event.domain\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1583, + "length": 12, + "value": "\"event.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "BooleanLiteral", + "offset": 1820, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "BooleanLiteral", + "offset": 2341, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSharedState.swift", + "kind": "BooleanLiteral", + "offset": 291, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 587, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 790, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 849, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 1208, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 1413, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSharedState.swift", + "kind": "BooleanLiteral", + "offset": 1587, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LogLimits.swift", + "kind": "IntegerLiteral", + "offset": 180, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LogRecordBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 1809, + "length": 12, + "value": "\"event.data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2287, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2319, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2345, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2372, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2399, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2426, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2452, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2479, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2506, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2533, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2558, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2585, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2612, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2639, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2665, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2692, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2719, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2746, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2773, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2801, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2829, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2857, + "length": 2, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2884, + "length": 2, + "value": "22" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2912, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2940, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3091, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3117, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3144, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3171, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3198, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3224, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3251, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3278, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3305, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3330, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3356, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3383, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3410, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3436, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3463, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3490, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3517, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3544, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3572, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3600, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3628, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3655, + "length": 2, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3683, + "length": 2, + "value": "22" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3711, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3739, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 5136, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 5165, + "length": 3, + "value": "255" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 5322, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 5357, + "length": 3, + "value": "255" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "Array", + "offset": 6816, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "Array", + "offset": 7866, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "Array", + "offset": 9260, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 10147, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 11198, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "Array", + "offset": 12516, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 12566, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 12991, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15008, + "length": 29, + "value": "\"opentelemetry.proto.logs.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15173, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15189, + "length": 29, + "value": "\"SEVERITY_NUMBER_UNSPECIFIED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15225, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15241, + "length": 23, + "value": "\"SEVERITY_NUMBER_TRACE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15271, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15287, + "length": 24, + "value": "\"SEVERITY_NUMBER_TRACE2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15318, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15334, + "length": 24, + "value": "\"SEVERITY_NUMBER_TRACE3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15365, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15381, + "length": 24, + "value": "\"SEVERITY_NUMBER_TRACE4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15412, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15428, + "length": 23, + "value": "\"SEVERITY_NUMBER_DEBUG\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15458, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15474, + "length": 24, + "value": "\"SEVERITY_NUMBER_DEBUG2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15505, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15521, + "length": 24, + "value": "\"SEVERITY_NUMBER_DEBUG3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15552, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15568, + "length": 24, + "value": "\"SEVERITY_NUMBER_DEBUG4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15599, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15615, + "length": 22, + "value": "\"SEVERITY_NUMBER_INFO\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15644, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15661, + "length": 23, + "value": "\"SEVERITY_NUMBER_INFO2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15691, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15708, + "length": 23, + "value": "\"SEVERITY_NUMBER_INFO3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15738, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15755, + "length": 23, + "value": "\"SEVERITY_NUMBER_INFO4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15785, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15802, + "length": 22, + "value": "\"SEVERITY_NUMBER_WARN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15831, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15848, + "length": 23, + "value": "\"SEVERITY_NUMBER_WARN2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15878, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15895, + "length": 23, + "value": "\"SEVERITY_NUMBER_WARN3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15925, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15942, + "length": 23, + "value": "\"SEVERITY_NUMBER_WARN4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15972, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15989, + "length": 23, + "value": "\"SEVERITY_NUMBER_ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16019, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16036, + "length": 24, + "value": "\"SEVERITY_NUMBER_ERROR2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16067, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16084, + "length": 24, + "value": "\"SEVERITY_NUMBER_ERROR3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16115, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16132, + "length": 24, + "value": "\"SEVERITY_NUMBER_ERROR4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16163, + "length": 2, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16180, + "length": 23, + "value": "\"SEVERITY_NUMBER_FATAL\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16210, + "length": 2, + "value": "22" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16227, + "length": 24, + "value": "\"SEVERITY_NUMBER_FATAL2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16258, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16275, + "length": 24, + "value": "\"SEVERITY_NUMBER_FATAL3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16306, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16323, + "length": 24, + "value": "\"SEVERITY_NUMBER_FATAL4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16491, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16507, + "length": 29, + "value": "\"LOG_RECORD_FLAGS_DO_NOT_USE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16543, + "length": 3, + "value": "255" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16561, + "length": 35, + "value": "\"LOG_RECORD_FLAGS_TRACE_FLAGS_MASK\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16783, + "length": 11, + "value": "\".LogsData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16852, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16872, + "length": 15, + "value": "\"resource_logs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 17303, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 17604, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 17840, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 17901, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 17919, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 18112, + "length": 15, + "value": "\".ResourceLogs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 18185, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 18201, + "length": 10, + "value": "\"resource\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 18218, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 18238, + "length": 12, + "value": "\"scope_logs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 18257, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 18277, + "length": 12, + "value": "\"schema_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 18705, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 18792, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 18879, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 19458, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 19584, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 19705, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 19943, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 19996, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 20049, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 20110, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 20128, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 20315, + "length": 12, + "value": "\".ScopeLogs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 20385, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 20401, + "length": 7, + "value": "\"scope\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 20415, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 20435, + "length": 13, + "value": "\"log_records\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 20455, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 20475, + "length": 12, + "value": "\"schema_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 20902, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 20986, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 21074, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 21650, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 21778, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 21899, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 22125, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 22180, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 22233, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 22294, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 22312, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22499, + "length": 12, + "value": "\".LogRecord\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22569, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22589, + "length": 16, + "value": "\"time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22612, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22633, + "length": 25, + "value": "\"observed_time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22665, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22685, + "length": 17, + "value": "\"severity_number\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22709, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22729, + "length": 15, + "value": "\"severity_text\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22751, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22767, + "length": 6, + "value": "\"body\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22780, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22796, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22815, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22835, + "length": 26, + "value": "\"dropped_attributes_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22868, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22884, + "length": 7, + "value": "\"flags\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22898, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22918, + "length": 10, + "value": "\"trace_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22935, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22956, + "length": 9, + "value": "\"span_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 23380, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 23470, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 23559, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 23648, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 23731, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 23819, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 23918, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 24001, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 24084, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 24167, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 24682, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 24769, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 24905, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25032, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25142, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25270, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25317, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25413, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25443, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25523, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25639, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25753, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25799, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25894, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26133, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26208, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26271, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26330, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26375, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26509, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26554, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26603, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26650, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26711, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26729, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "Array", + "offset": 2101, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 4474, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 5522, + "length": 39, + "value": "\"opentelemetry.proto.collector.logs.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 5766, + "length": 27, + "value": "\".ExportLogsServiceRequest\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 5851, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 5871, + "length": 15, + "value": "\"resource_logs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 6302, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 6603, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 6891, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 6952, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 6970, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 7186, + "length": 28, + "value": "\".ExportLogsServiceResponse\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 7272, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 7292, + "length": 17, + "value": "\"partial_success\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 7725, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 8317, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8617, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8678, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8696, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 8911, + "length": 27, + "value": "\".ExportLogsPartialSuccess\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 8996, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 9016, + "length": 22, + "value": "\"rejected_log_records\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9045, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 9065, + "length": 15, + "value": "\"error_message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9496, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9590, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9805, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9896, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 10023, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10323, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10382, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10443, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10461, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongCounterMeterBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 418, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongCounterMeterBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 449, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongCounterSdk.swift", + "kind": "IntegerLiteral", + "offset": 646, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongCounterSdk.swift", + "kind": "IntegerLiteral", + "offset": 1352, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongGaugeBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 436, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongGaugeBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 467, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongHistogramMeterSdk.swift", + "kind": "IntegerLiteral", + "offset": 661, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LongLastValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1440, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LongLastValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1693, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LongLastValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1818, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/Internal\/LongPointData.swift", + "kind": "StringLiteral", + "offset": 117, + "length": 13, + "value": "\"VideoSDKRTC.LongPointData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LongSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1588, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LongSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1839, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LongSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1961, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LongSumAggregator.swift", + "kind": "StringLiteral", + "offset": 117, + "length": 17, + "value": "\"VideoSDKRTC.LongSumAggregator\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongUpDownCounterBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 490, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongUpDownCounterBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/MathUtils.swift", + "kind": "IntegerLiteral", + "offset": 999, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/MathUtils.swift", + "kind": "IntegerLiteral", + "offset": 1036, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/MathUtils.swift", + "kind": "IntegerLiteral", + "offset": 1474, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/MathUtils.swift", + "kind": "IntegerLiteral", + "offset": 1493, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/MathUtils.swift", + "kind": "IntegerLiteral", + "offset": 1510, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/MathUtils.swift", + "kind": "IntegerLiteral", + "offset": 1519, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MaxValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 204, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MaxValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 230, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MaxValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 603, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Measurement.swift", + "kind": "BooleanLiteral", + "offset": 1205, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Measurement.swift", + "kind": "FloatLiteral", + "offset": 1242, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Measurement.swift", + "kind": "BooleanLiteral", + "offset": 1263, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Measurement.swift", + "kind": "BooleanLiteral", + "offset": 1550, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Measurement.swift", + "kind": "IntegerLiteral", + "offset": 1568, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Measurement.swift", + "kind": "BooleanLiteral", + "offset": 1607, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MeasureMinMaxSumCountAggregator.swift", + "kind": "IntegerLiteral", + "offset": 500, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MeasureMinMaxSumCountAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1255, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MeasureMinMaxSumCountAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1311, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MeasureMinMaxSumCountAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1673, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MeasureMinMaxSumCountAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1691, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 260, + "length": 8, + "value": "\"ARDAMS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 291, + "length": 10, + "value": "\"ARDAMSv0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 324, + "length": 10, + "value": "\"ARDAMSa0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 10, + "value": "\"ARDAMSb0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 260, + "length": 8, + "value": "\"ARDAMS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 291, + "length": 10, + "value": "\"ARDAMSv0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 324, + "length": 10, + "value": "\"ARDAMSa0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 10, + "value": "\"ARDAMSb0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 1125, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "IntegerLiteral", + "offset": 2552, + "length": 10, + "value": "1000000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 3064, + "length": 9, + "value": "\"started\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 3304, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 3323, + "length": 147, + "value": "\"trackId: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 3358, + "length": 2, + "value": "\" || kind: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 3390, + "length": 2, + "value": "\" || source: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 3426, + "length": 2, + "value": "\" || isEnabled: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 3469, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 3963, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 5757, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 6003, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "IntegerLiteral", + "offset": 6443, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 6618, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "IntegerLiteral", + "offset": 7131, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 7549, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 7755, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 7939, + "length": 59, + "value": "\"Error in PeerConnectionUtils :: stopCapture() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 7997, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 8010, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 9181, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "IntegerLiteral", + "offset": 9201, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 9291, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "IntegerLiteral", + "offset": 9312, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 9405, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "IntegerLiteral", + "offset": 9429, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "IntegerLiteral", + "offset": 9716, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 9891, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 11045, + "length": 12, + "value": "\"authorised\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 12309, + "length": 12, + "value": "\"authorised\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "Array", + "offset": 13053, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "IntegerLiteral", + "offset": 1179, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "StringLiteral", + "offset": 1190, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "BooleanLiteral", + "offset": 1211, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "BooleanLiteral", + "offset": 1221, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "StringLiteral", + "offset": 1492, + "length": 43, + "value": "\"Error in Stream() :: producer \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "StringLiteral", + "offset": 1534, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "StringLiteral", + "offset": 1547, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "BooleanLiteral", + "offset": 1622, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "StringLiteral", + "offset": 2118, + "length": 43, + "value": "\"Error in Stream() :: consumer \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "StringLiteral", + "offset": 2160, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "StringLiteral", + "offset": 2173, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "Dictionary", + "offset": 600, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "Dictionary", + "offset": 753, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 1578, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 1764, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 1800, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 2314, + "length": 7, + "value": "\"Guest\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 2408, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 2526, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 2564, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 2607, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "IntegerLiteral", + "offset": 7728, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "IntegerLiteral", + "offset": 7734, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "IntegerLiteral", + "offset": 7744, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "IntegerLiteral", + "offset": 7755, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 7887, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 7964, + "length": 27, + "value": "\"RTCScreenSharingExtension\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 8362, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 8513, + "length": 35, + "value": "\"videosdk.flutter.startScreenShare\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 8600, + "length": 34, + "value": "\"videosdk.flutter.stopScreenShare\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 10429, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 11162, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "Dictionary", + "offset": 14314, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 14378, + "length": 13, + "value": "\"multiStream\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 14428, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 14457, + "length": 13, + "value": "\"customTrack\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 14543, + "length": 13, + "value": "\"customTrack\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 14560, + "length": 26, + "value": "\"Not Specify Custom Track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 14706, + "length": 46, + "value": "\"startVideo() Calling With Custom Video Track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 14755, + "length": 49, + "value": "\"startVideo() Calling Without Custom Video Track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 15834, + "length": 26, + "value": "\"Enable Webcam Successful\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 22445, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 22477, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 22588, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 22620, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 22824, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 22865, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 23174, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 23212, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 23299, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 203, + "length": 12, + "value": "\"CONNECTING\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 203, + "length": 12, + "value": "\"CONNECTING\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 336, + "length": 12, + "value": "\"CONFERENCE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 336, + "length": 12, + "value": "\"CONFERENCE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 470, + "length": 4, + "value": "4000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 502, + "length": 4, + "value": "4001" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 4, + "value": "4002" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 567, + "length": 4, + "value": "4003" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 606, + "length": 4, + "value": "4004" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 644, + "length": 4, + "value": "4005" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 680, + "length": 4, + "value": "4006" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 717, + "length": 4, + "value": "4007" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 753, + "length": 4, + "value": "4008" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 792, + "length": 4, + "value": "4009" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 4, + "value": "4010" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 867, + "length": 4, + "value": "4011" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 905, + "length": 4, + "value": "4012" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 945, + "length": 4, + "value": "4013" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 984, + "length": 4, + "value": "4014" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1026, + "length": 4, + "value": "4015" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1059, + "length": 4, + "value": "4016" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1091, + "length": 4, + "value": "4017" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1155, + "length": 4, + "value": "5001" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1189, + "length": 4, + "value": "5002" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1216, + "length": 4, + "value": "5003" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1273, + "length": 4, + "value": "3011" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1311, + "length": 4, + "value": "3012" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1351, + "length": 4, + "value": "3013" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1407, + "length": 4, + "value": "3014" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1463, + "length": 4, + "value": "3015" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1521, + "length": 4, + "value": "3016" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 470, + "length": 4, + "value": "4000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 502, + "length": 4, + "value": "4001" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 4, + "value": "4002" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 567, + "length": 4, + "value": "4003" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 606, + "length": 4, + "value": "4004" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 644, + "length": 4, + "value": "4005" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 680, + "length": 4, + "value": "4006" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 717, + "length": 4, + "value": "4007" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 753, + "length": 4, + "value": "4008" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 792, + "length": 4, + "value": "4009" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 4, + "value": "4010" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 867, + "length": 4, + "value": "4011" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 905, + "length": 4, + "value": "4012" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 945, + "length": 4, + "value": "4013" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 984, + "length": 4, + "value": "4014" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1026, + "length": 4, + "value": "4015" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1059, + "length": 4, + "value": "4016" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1091, + "length": 4, + "value": "4017" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1155, + "length": 4, + "value": "5001" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1189, + "length": 4, + "value": "5002" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1216, + "length": 4, + "value": "5003" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1273, + "length": 4, + "value": "3011" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1311, + "length": 4, + "value": "3012" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1351, + "length": 4, + "value": "3013" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1407, + "length": 4, + "value": "3014" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1463, + "length": 4, + "value": "3015" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1521, + "length": 4, + "value": "3016" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 470, + "length": 4, + "value": "4000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 502, + "length": 4, + "value": "4001" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 4, + "value": "4002" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 567, + "length": 4, + "value": "4003" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 606, + "length": 4, + "value": "4004" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 644, + "length": 4, + "value": "4005" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 680, + "length": 4, + "value": "4006" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 717, + "length": 4, + "value": "4007" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 753, + "length": 4, + "value": "4008" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 792, + "length": 4, + "value": "4009" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 4, + "value": "4010" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 867, + "length": 4, + "value": "4011" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 905, + "length": 4, + "value": "4012" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 945, + "length": 4, + "value": "4013" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 984, + "length": 4, + "value": "4014" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1026, + "length": 4, + "value": "4015" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1059, + "length": 4, + "value": "4016" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1091, + "length": 4, + "value": "4017" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1155, + "length": 4, + "value": "5001" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1189, + "length": 4, + "value": "5002" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1216, + "length": 4, + "value": "5003" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1273, + "length": 4, + "value": "3011" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1311, + "length": 4, + "value": "3012" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1351, + "length": 4, + "value": "3013" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1407, + "length": 4, + "value": "3014" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1463, + "length": 4, + "value": "3015" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1521, + "length": 4, + "value": "3016" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 1610, + "length": 13, + "value": "\"HLS_STARTED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 1610, + "length": 13, + "value": "\"HLS_STARTED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 1780, + "length": 19, + "value": "\"RECORDING_STARTED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 1780, + "length": 19, + "value": "\"RECORDING_STARTED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 1963, + "length": 20, + "value": "\"LIVESTREAM_STARTED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 1963, + "length": 20, + "value": "\"LIVESTREAM_STARTED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message.swift", + "kind": "BooleanLiteral", + "offset": 5374, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message.swift", + "kind": "BooleanLiteral", + "offset": 7865, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions.swift", + "kind": "BooleanLiteral", + "offset": 1359, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions.swift", + "kind": "IntegerLiteral", + "offset": 1964, + "length": 10, + "value": "0x7fffffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions.swift", + "kind": "IntegerLiteral", + "offset": 2062, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions.swift", + "kind": "IntegerLiteral", + "offset": 2223, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions.swift", + "kind": "BooleanLiteral", + "offset": 4172, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions.swift", + "kind": "BooleanLiteral", + "offset": 5547, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions.swift", + "kind": "IntegerLiteral", + "offset": 6368, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions_Data.swift", + "kind": "BooleanLiteral", + "offset": 1579, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions_Data.swift", + "kind": "BooleanLiteral", + "offset": 2888, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions_Data.swift", + "kind": "BooleanLiteral", + "offset": 3669, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+JSONAdditions.swift", + "kind": "IntegerLiteral", + "offset": 5136, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+JSONArrayAdditions.swift", + "kind": "IntegerLiteral", + "offset": 5679, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+TextFormatAdditions.swift", + "kind": "IntegerLiteral", + "offset": 3106, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/Meter.swift", + "kind": "BooleanLiteral", + "offset": 5781, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/Meter.swift", + "kind": "BooleanLiteral", + "offset": 5967, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/Meter.swift", + "kind": "BooleanLiteral", + "offset": 6143, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/Meter.swift", + "kind": "BooleanLiteral", + "offset": 6328, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/Meter.swift", + "kind": "BooleanLiteral", + "offset": 6551, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/Meter.swift", + "kind": "BooleanLiteral", + "offset": 6806, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/MeterProviderSdk.swift", + "kind": "IntegerLiteral", + "offset": 314, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/MeterProviderSdk.swift", + "kind": "BooleanLiteral", + "offset": 1365, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/MeterProviderSdk.swift", + "kind": "StringLiteral", + "offset": 3164, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/MeterProviderSdk.swift", + "kind": "StringLiteral", + "offset": 3227, + "length": 9, + "value": "\"version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "BooleanLiteral", + "offset": 1070, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "BooleanLiteral", + "offset": 2582, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 5541, + "length": 102, + "value": "\"Expected [SumData] type for doubleGauge aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 5642, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 6077, + "length": 96, + "value": "\"Expected [SumData] type for intGauge aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 6172, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 6609, + "length": 100, + "value": "\"Expected [SumData] type for doubleSum aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 6708, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 7155, + "length": 108, + "value": "\"Expected [SummaryData] type for doubleSummary aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 7262, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 7695, + "length": 94, + "value": "\"Expected [SumData] type for intSum aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 7788, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 8229, + "length": 102, + "value": "\"Expected [SummaryData] type for intSummary aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 8330, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 8785, + "length": 112, + "value": "\"Expected [HistogramData] type for doubleHistogram aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 8896, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 9345, + "length": 106, + "value": "\"Expected [HistogramData] type for intHistogram aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 9450, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 5449, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 5481, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 5507, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 5661, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 5687, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 5718, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 7157, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 7186, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 7346, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 7386, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 8880, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 9948, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 11396, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 20583, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 21098, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 21449, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 21996, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 22856, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 23999, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 24778, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 25030, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 25237, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 25568, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 25718, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 25941, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 26095, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 28415, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 28667, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 28874, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 29092, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 29672, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 30316, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 31009, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 31188, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 31342, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 31456, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 31847, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 33241, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 33493, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 33700, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 33953, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 34533, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 35511, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 35998, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 37309, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 37487, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 37602, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 37993, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 38682, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 39235, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 39767, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 40903, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 41155, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 41362, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 41471, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 42025, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 42287, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 42441, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 43238, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 43385, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 44279, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 44486, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 44849, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 44999, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 48542, + "length": 32, + "value": "\"opentelemetry.proto.metrics.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 48719, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 48735, + "length": 37, + "value": "\"AGGREGATION_TEMPORALITY_UNSPECIFIED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 48779, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 48795, + "length": 31, + "value": "\"AGGREGATION_TEMPORALITY_DELTA\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 48833, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 48849, + "length": 36, + "value": "\"AGGREGATION_TEMPORALITY_CUMULATIVE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 49030, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 49046, + "length": 29, + "value": "\"DATA_POINT_FLAGS_DO_NOT_USE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 49082, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 49098, + "length": 41, + "value": "\"DATA_POINT_FLAGS_NO_RECORDED_VALUE_MASK\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 49329, + "length": 14, + "value": "\".MetricsData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 49400, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 49420, + "length": 18, + "value": "\"resource_metrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 49853, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 50162, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 50416, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 50477, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 50495, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 50691, + "length": 18, + "value": "\".ResourceMetrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 50766, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 50782, + "length": 10, + "value": "\"resource\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 50799, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 50819, + "length": 15, + "value": "\"scope_metrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 50841, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 50861, + "length": 12, + "value": "\"schema_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 51288, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 51375, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 51465, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 52043, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 52175, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 52296, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 52546, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 52605, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 52658, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 52719, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 52737, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 52930, + "length": 15, + "value": "\".ScopeMetrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 53002, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 53018, + "length": 7, + "value": "\"scope\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 53032, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 53048, + "length": 9, + "value": "\"metrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 53064, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 53084, + "length": 12, + "value": "\"schema_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 53511, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 53595, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 53680, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 54255, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 54377, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 54498, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 54736, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 54785, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 54838, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 54899, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 54917, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55104, + "length": 9, + "value": "\".Metric\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55170, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55186, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55199, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55215, + "length": 13, + "value": "\"description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55235, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55251, + "length": 6, + "value": "\"unit\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55264, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55280, + "length": 7, + "value": "\"gauge\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55294, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55310, + "length": 5, + "value": "\"sum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55322, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55338, + "length": 11, + "value": "\"histogram\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55356, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55377, + "length": 23, + "value": "\"exponential_histogram\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55407, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55424, + "length": 9, + "value": "\"summary\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55848, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55929, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 56019, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 56100, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 56190, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 56259, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 56534, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 56622, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 56691, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 56962, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 57056, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 57125, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 57408, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 57514, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 57583, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 57888, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 57981, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 58050, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 58818, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 58947, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 59058, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 59256, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 59429, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 59614, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 59821, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 60003, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 60254, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 60315, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 60358, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 60401, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 60462, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 60480, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 60666, + "length": 8, + "value": "\".Gauge\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 60731, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 60751, + "length": 13, + "value": "\"data_points\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 61179, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 61473, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 61705, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 61766, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 61784, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 61968, + "length": 6, + "value": "\".Sum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 62031, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 62051, + "length": 13, + "value": "\"data_points\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 62071, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 62091, + "length": 25, + "value": "\"aggregation_temporality\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 62123, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 62143, + "length": 14, + "value": "\"is_monotonic\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 62572, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 62660, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 62757, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 63049, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 63201, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 63237, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 63324, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 63552, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 63631, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 63688, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 63749, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 63767, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 63957, + "length": 12, + "value": "\".Histogram\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 64026, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 64046, + "length": 13, + "value": "\"data_points\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 64066, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 64086, + "length": 25, + "value": "\"aggregation_temporality\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 64526, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 64614, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 64917, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 65069, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 65309, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 65388, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 65449, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 65467, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 65668, + "length": 23, + "value": "\".ExponentialHistogram\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 65748, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 65768, + "length": 13, + "value": "\"data_points\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 65788, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 65808, + "length": 25, + "value": "\"aggregation_temporality\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 66248, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 66336, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 66639, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 66791, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 67053, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 67132, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 67193, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 67211, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 67399, + "length": 10, + "value": "\".Summary\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 67466, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 67486, + "length": 13, + "value": "\"data_points\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 67914, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 68208, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 68444, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 68505, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 68523, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 68719, + "length": 18, + "value": "\".NumberDataPoint\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 68794, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 68810, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 68829, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 68849, + "length": 22, + "value": "\"start_time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 68878, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 68898, + "length": 16, + "value": "\"time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 68921, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 68941, + "length": 11, + "value": "\"as_double\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 68959, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 68979, + "length": 8, + "value": "\"as_int\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 68994, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 69010, + "length": 11, + "value": "\"exemplars\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 69028, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 69044, + "length": 7, + "value": "\"flags\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 69466, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 69561, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 69651, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 69900, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 69987, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 70234, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 70322, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 70824, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 70916, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 70953, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 71040, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 71166, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 71292, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 71417, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 71545, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 71575, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 71654, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 71906, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 71975, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 72034, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 72079, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 72132, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 72177, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 72238, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 72256, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72455, + "length": 21, + "value": "\".HistogramDataPoint\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72533, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72549, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72568, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72588, + "length": 22, + "value": "\"start_time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72617, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72637, + "length": 16, + "value": "\"time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72660, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72676, + "length": 7, + "value": "\"count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72690, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72706, + "length": 5, + "value": "\"sum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72718, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72738, + "length": 15, + "value": "\"bucket_counts\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72760, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72780, + "length": 17, + "value": "\"explicit_bounds\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72804, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72820, + "length": 11, + "value": "\"exemplars\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72838, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72855, + "length": 7, + "value": "\"flags\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72869, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72886, + "length": 5, + "value": "\"min\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72898, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72915, + "length": 5, + "value": "\"max\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73335, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73430, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73520, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73603, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73684, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73774, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73865, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73952, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74040, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74123, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74205, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74707, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74799, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74836, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74923, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74953, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75033, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75141, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75271, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75400, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75522, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75646, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75676, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75755, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75864, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75977, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76240, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76309, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76368, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76413, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76456, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76515, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76578, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76631, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76676, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76719, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76762, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76823, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76841, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77051, + "length": 32, + "value": "\".ExponentialHistogramDataPoint\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77140, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77156, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77175, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77195, + "length": 22, + "value": "\"start_time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77224, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77244, + "length": 16, + "value": "\"time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77267, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77283, + "length": 7, + "value": "\"count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77297, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77313, + "length": 5, + "value": "\"sum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77325, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77341, + "length": 7, + "value": "\"scale\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77355, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77375, + "length": 12, + "value": "\"zero_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77394, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77410, + "length": 10, + "value": "\"positive\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77427, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77443, + "length": 10, + "value": "\"negative\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77460, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77477, + "length": 7, + "value": "\"flags\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77491, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77508, + "length": 11, + "value": "\"exemplars\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77526, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77543, + "length": 5, + "value": "\"min\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77555, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77572, + "length": 5, + "value": "\"max\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77584, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77605, + "length": 16, + "value": "\"zero_threshold\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78036, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78124, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78219, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78309, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78392, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78473, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78555, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78642, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78729, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78816, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78899, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78987, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 79069, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 79151, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 79744, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 79786, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 79878, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 79915, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80002, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80032, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80112, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80220, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80254, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80333, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80367, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80451, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80565, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80683, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80717, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80796, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80919, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 81028, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 81141, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 81184, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 81271, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81552, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81621, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81680, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81725, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81768, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81813, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81866, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81919, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81972, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 82017, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 82070, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 82113, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 82156, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 82217, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 82278, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 82296, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 82574, + "length": 10, + "value": "\".Buckets\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 82641, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 82657, + "length": 8, + "value": "\"offset\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 82672, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 82692, + "length": 15, + "value": "\"bucket_counts\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 83122, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 83205, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 83407, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 83487, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 83612, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 83900, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 83959, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 84020, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 84038, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84235, + "length": 19, + "value": "\".SummaryDataPoint\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84311, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84327, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84346, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84366, + "length": 22, + "value": "\"start_time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84395, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84415, + "length": 16, + "value": "\"time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84438, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84454, + "length": 7, + "value": "\"count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84468, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84484, + "length": 5, + "value": "\"sum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84496, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84516, + "length": 17, + "value": "\"quantile_values\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84540, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84556, + "length": 7, + "value": "\"flags\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84978, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85073, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85163, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85246, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85326, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85418, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85506, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85712, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85804, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85841, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85928, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85958, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 86038, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 86066, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 86143, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 86275, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 86399, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 86429, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 86508, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 86762, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 86831, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 86890, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 86935, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 86976, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 87039, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 87084, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 87145, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 87163, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 87423, + "length": 18, + "value": "\".ValueAtQuantile\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 87498, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 87514, + "length": 10, + "value": "\"quantile\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 87531, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 87547, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 87969, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 88054, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 88251, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 88333, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 88363, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 88442, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 88724, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 88769, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 88830, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 88848, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 89037, + "length": 11, + "value": "\".Exemplar\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89105, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 89125, + "length": 21, + "value": "\"filtered_attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89153, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 89173, + "length": 16, + "value": "\"time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89196, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 89216, + "length": 11, + "value": "\"as_double\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89234, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 89254, + "length": 8, + "value": "\"as_int\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89269, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 89289, + "length": 9, + "value": "\"span_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89305, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 89325, + "length": 10, + "value": "\"trace_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89750, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89840, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 90089, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 90171, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 90254, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 90501, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 91012, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 91099, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 91225, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 91343, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 91459, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 91584, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 91728, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 91982, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 92041, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 92086, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 92133, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 92182, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 92243, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 92261, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "Array", + "offset": 2124, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 4525, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 5591, + "length": 42, + "value": "\"opentelemetry.proto.collector.metrics.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 5841, + "length": 30, + "value": "\".ExportMetricsServiceRequest\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 5928, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 5948, + "length": 18, + "value": "\"resource_metrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 6381, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 6690, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 6996, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 7057, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 7075, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 7294, + "length": 31, + "value": "\".ExportMetricsServiceResponse\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 7382, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 7402, + "length": 17, + "value": "\"partial_success\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 7834, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 8425, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8737, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8798, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8816, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 9034, + "length": 30, + "value": "\".ExportMetricsPartialSuccess\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9121, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 9141, + "length": 22, + "value": "\"rejected_data_points\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9170, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 9190, + "length": 15, + "value": "\"error_message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9620, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9714, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9928, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 10019, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 10146, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10458, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10517, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10578, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10596, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/metric\/MetricsAdapter.swift", + "kind": "StringLiteral", + "offset": 10456, + "length": 6, + "value": "\"unit\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/MetricStorage.swift", + "kind": "IntegerLiteral", + "offset": 177, + "length": 5, + "value": "2000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/MonitoringObject.swift", + "kind": "Array", + "offset": 591, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/MonitoringObject.swift", + "kind": "Array", + "offset": 717, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/MonitoringObject.swift", + "kind": "Array", + "offset": 745, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/MultiSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 829, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/MultiSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 916, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "BooleanLiteral", + "offset": 1131, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "StringLiteral", + "offset": 1170, + "length": 3, + "value": "\"_\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "BooleanLiteral", + "offset": 1205, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "BooleanLiteral", + "offset": 1324, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "StringLiteral", + "offset": 4754, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "BooleanLiteral", + "offset": 5430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "Dictionary", + "offset": 6716, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "Dictionary", + "offset": 6835, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "Dictionary", + "offset": 7065, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/NoopSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 188, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/NoopSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 218, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/metric\/OltpHTTPMetricExporter.swift", + "kind": "StringLiteral", + "offset": 174, + "length": 34, + "value": "\"http:\/\/localhost:4318\/v1\/metrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/metric\/OltpHTTPMetricExporter.swift", + "kind": "Array", + "offset": 325, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/metric\/OltpHTTPMetricExporter.swift", + "kind": "Array", + "offset": 781, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/metric\/OltpHTTPMetricExporter.swift", + "kind": "IntegerLiteral", + "offset": 1874, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/OpenTelemetry.swift", + "kind": "StringLiteral", + "offset": 374, + "length": 9, + "value": "\"v1.20.0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/OtlpConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 214, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/OtlpHttpExporterBase.swift", + "kind": "StringLiteral", + "offset": 773, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/OtlpHttpExporterBase.swift", + "kind": "StringLiteral", + "offset": 975, + "length": 24, + "value": "\"application\/x-protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/OtlpHttpExporterBase.swift", + "kind": "StringLiteral", + "offset": 1021, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/OtlpHttpExporterBase.swift", + "kind": "StringLiteral", + "offset": 1097, + "length": 15, + "value": "\"Authorization\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/OtlpHttpExporterBase.swift", + "kind": "StringLiteral", + "offset": 1150, + "length": 34, + "value": "\"Error serializing body: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/OtlpHttpExporterBase.swift", + "kind": "StringLiteral", + "offset": 1183, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/logs\/OtlpHttpLogExporter.swift", + "kind": "StringLiteral", + "offset": 175, + "length": 31, + "value": "\"http:\/\/localhost:4318\/v1\/logs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/logs\/OtlpHttpLogExporter.swift", + "kind": "Array", + "offset": 338, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/logs\/OtlpHttpLogExporter.swift", + "kind": "Array", + "offset": 782, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/logs\/OtlpHttpLogExporter.swift", + "kind": "IntegerLiteral", + "offset": 1977, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/trace\/OtlpHttpTraceExporter.swift", + "kind": "StringLiteral", + "offset": 173, + "length": 33, + "value": "\"http:\/\/localhost:4318\/v1\/traces\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/trace\/OtlpHttpTraceExporter.swift", + "kind": "Array", + "offset": 320, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/trace\/OtlpHttpTraceExporter.swift", + "kind": "Array", + "offset": 726, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/trace\/OtlpHttpTraceExporter.swift", + "kind": "IntegerLiteral", + "offset": 1743, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/OTPCConstants.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 12, + "value": "\"User-Agent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "Dictionary", + "offset": 1227, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 1744, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3229, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3268, + "length": 10, + "value": "\"ARDAMSa0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "Dictionary", + "offset": 3372, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3453, + "length": 26, + "value": "\"Error in getAudioStats()\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3490, + "length": 7, + "value": "\"DEBUG\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3703, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3742, + "length": 10, + "value": "\"ARDAMSv0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "Dictionary", + "offset": 3846, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3927, + "length": 26, + "value": "\"Error in getVideoStats()\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3964, + "length": 7, + "value": "\"DEBUG\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 5740, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 5861, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 5874, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 5996, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6009, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6097, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6111, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6197, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6210, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 6291, + "length": 48, + "value": "\"error in pin() \n Unknown pin type \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 6337, + "length": 1, + "value": "\")\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 6351, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6602, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6616, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6739, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6753, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6844, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6931, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 7012, + "length": 50, + "value": "\"error in pin() \n Unknown unpin type \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 7060, + "length": 1, + "value": "\")\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 7074, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 7245, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 7302, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 7350, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 7696, + "length": 36, + "value": "\"Error in setPinState() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 7731, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 7744, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "IntegerLiteral", + "offset": 8117, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "IntegerLiteral", + "offset": 8512, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "IntegerLiteral", + "offset": 8786, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "IntegerLiteral", + "offset": 8790, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/ParticipantPinState.swift", + "kind": "BooleanLiteral", + "offset": 298, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/ParticipantPinState.swift", + "kind": "BooleanLiteral", + "offset": 319, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/Peer.swift", + "kind": "StringLiteral", + "offset": 513, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/Peer.swift", + "kind": "StringLiteral", + "offset": 533, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/Peer.swift", + "kind": "StringLiteral", + "offset": 563, + "length": 13, + "value": "\"displayName\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/Peer.swift", + "kind": "StringLiteral", + "offset": 592, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/Peer.swift", + "kind": "StringLiteral", + "offset": 617, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/Peer.swift", + "kind": "StringLiteral", + "offset": 641, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Probe.swift", + "kind": "IntegerLiteral", + "offset": 1002, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Probe.swift", + "kind": "IntegerLiteral", + "offset": 1356, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Probe.swift", + "kind": "BooleanLiteral", + "offset": 1651, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/PropagatedSpan.swift", + "kind": "StringLiteral", + "offset": 901, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/PropagatedSpan.swift", + "kind": "StringLiteral", + "offset": 1130, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/PropagatedSpan.swift", + "kind": "StringLiteral", + "offset": 1426, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/PropagatedSpan.swift", + "kind": "BooleanLiteral", + "offset": 2130, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/PropagatedSpan.swift", + "kind": "StringLiteral", + "offset": 2288, + "length": 16, + "value": "\"PropagatedSpan\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/PropagatedSpanBuilder.swift", + "kind": "BooleanLiteral", + "offset": 258, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/PropagatedSpanBuilder.swift", + "kind": "BooleanLiteral", + "offset": 1450, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "Dictionary", + "offset": 307, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "Dictionary", + "offset": 387, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "Dictionary", + "offset": 800, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "StringLiteral", + "offset": 1207, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "StringLiteral", + "offset": 1253, + "length": 10, + "value": "\"messages\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "StringLiteral", + "offset": 1472, + "length": 37, + "value": "\"Error in subscribe() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "StringLiteral", + "offset": 1508, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "StringLiteral", + "offset": 1521, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "IntegerLiteral", + "offset": 2123, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "Array", + "offset": 2532, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "Array", + "offset": 2810, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 592, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 636, + "length": 7, + "value": "\"topic\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 659, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 685, + "length": 9, + "value": "\"message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 710, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 737, + "length": 10, + "value": "\"senderId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 763, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 792, + "length": 12, + "value": "\"senderName\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 820, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 848, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 875, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 124, + "length": 13, + "value": "\"VideoSDKRTC.PubSubMessage\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/PushMetricController.swift", + "kind": "StringLiteral", + "offset": 270, + "length": 56, + "value": "\"org.opentelemetry.PushMetricController.pushMetricQueue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/PushMetricController.swift", + "kind": "BooleanLiteral", + "offset": 975, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawCounterMetricSdk.swift", + "kind": "BooleanLiteral", + "offset": 436, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawCounterMetricSdk.swift", + "kind": "BooleanLiteral", + "offset": 644, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawCounterMetricSdkBase.swift", + "kind": "BooleanLiteral", + "offset": 708, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawCounterMetricSdkBase.swift", + "kind": "BooleanLiteral", + "offset": 2110, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawHistogramMetricSdk.swift", + "kind": "BooleanLiteral", + "offset": 503, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawHistogramMetricSdk.swift", + "kind": "BooleanLiteral", + "offset": 840, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawHistogramMetricSdkBase.swift", + "kind": "BooleanLiteral", + "offset": 844, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawHistogramMetricSdkBase.swift", + "kind": "BooleanLiteral", + "offset": 998, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "BooleanLiteral", + "offset": 253, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "StringLiteral", + "offset": 322, + "length": 64, + "value": "\"org.opentelemetry.RecordEventsReadableSpan.internalStatusQueue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "StringLiteral", + "offset": 570, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "IntegerLiteral", + "offset": 2686, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "IntegerLiteral", + "offset": 2773, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "BooleanLiteral", + "offset": 3659, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "BooleanLiteral", + "offset": 3717, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "IntegerLiteral", + "offset": 10458, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "IntegerLiteral", + "offset": 10550, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "IntegerLiteral", + "offset": 11947, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "BooleanLiteral", + "offset": 12197, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "BooleanLiteral", + "offset": 12243, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "BooleanLiteral", + "offset": 12267, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "BooleanLiteral", + "offset": 12454, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "StringLiteral", + "offset": 12680, + "length": 28, + "value": "\"RecordEventsReadableSpan{}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/RegisteredReader.swift", + "kind": "IntegerLiteral", + "offset": 208, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/RegisteredReader.swift", + "kind": "IntegerLiteral", + "offset": 374, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/RegisteredReader.swift", + "kind": "BooleanLiteral", + "offset": 798, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "IntegerLiteral", + "offset": 265, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "IntegerLiteral", + "offset": 302, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "IntegerLiteral", + "offset": 329, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "IntegerLiteral", + "offset": 1745, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "IntegerLiteral", + "offset": 1769, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "IntegerLiteral", + "offset": 1818, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "BooleanLiteral", + "offset": 2137, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "BooleanLiteral", + "offset": 2176, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "IntegerLiteral", + "offset": 342, + "length": 3, + "value": "255" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "StringLiteral", + "offset": 675, + "length": 35, + "value": "\"unknown_service:\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "StringLiteral", + "offset": 709, + "length": 3, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "StringLiteral", + "offset": 812, + "length": 15, + "value": "\"opentelemetry\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "StringLiteral", + "offset": 933, + "length": 7, + "value": "\"swift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "StringLiteral", + "offset": 1045, + "length": 7, + "value": "\"1.0.0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "BooleanLiteral", + "offset": 2521, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "BooleanLiteral", + "offset": 2566, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "Array", + "offset": 1908, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 2084, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "StringLiteral", + "offset": 2433, + "length": 33, + "value": "\"opentelemetry.proto.resource.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "StringLiteral", + "offset": 2646, + "length": 11, + "value": "\".Resource\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 2714, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "StringLiteral", + "offset": 2730, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 2749, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "StringLiteral", + "offset": 2769, + "length": 26, + "value": "\"dropped_attributes_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 3210, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 3298, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 3603, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 3650, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 3746, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "BooleanLiteral", + "offset": 3986, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "BooleanLiteral", + "offset": 4065, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "BooleanLiteral", + "offset": 4126, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "BooleanLiteral", + "offset": 4144, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 655, + "length": 16, + "value": "\"browser.brands\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 1719, + "length": 18, + "value": "\"browser.platform\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 2114, + "length": 16, + "value": "\"browser.mobile\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 2565, + "length": 18, + "value": "\"browser.language\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 21, + "value": "\"user_agent.original\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 3411, + "length": 16, + "value": "\"cloud.provider\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 3701, + "length": 18, + "value": "\"cloud.account.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 4464, + "length": 14, + "value": "\"cloud.region\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 6720, + "length": 19, + "value": "\"cloud.resource_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 7175, + "length": 25, + "value": "\"cloud.availability_zone\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 7504, + "length": 16, + "value": "\"cloud.platform\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 7914, + "length": 23, + "value": "\"aws.ecs.container.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 8260, + "length": 21, + "value": "\"aws.ecs.cluster.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 8590, + "length": 20, + "value": "\"aws.ecs.launchtype\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 8966, + "length": 18, + "value": "\"aws.ecs.task.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 9234, + "length": 21, + "value": "\"aws.ecs.task.family\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 9508, + "length": 23, + "value": "\"aws.ecs.task.revision\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 9777, + "length": 21, + "value": "\"aws.eks.cluster.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 10287, + "length": 21, + "value": "\"aws.log.group.names\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 10756, + "length": 20, + "value": "\"aws.log.group.arns\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 11052, + "length": 22, + "value": "\"aws.log.stream.names\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 11676, + "length": 21, + "value": "\"aws.log.stream.arns\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 11950, + "length": 35, + "value": "\"heroku.release.creation_timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 12231, + "length": 23, + "value": "\"heroku.release.commit\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 12485, + "length": 15, + "value": "\"heroku.app.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 12724, + "length": 16, + "value": "\"container.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13094, + "length": 14, + "value": "\"container.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13418, + "length": 19, + "value": "\"container.runtime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13682, + "length": 22, + "value": "\"container.image.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13896, + "length": 21, + "value": "\"container.image.tag\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 14268, + "length": 24, + "value": "\"deployment.environment\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 15345, + "length": 11, + "value": "\"device.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 15797, + "length": 25, + "value": "\"device.model.identifier\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 16237, + "length": 19, + "value": "\"device.model.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 16692, + "length": 21, + "value": "\"device.manufacturer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 18004, + "length": 11, + "value": "\"faas.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 18942, + "length": 14, + "value": "\"faas.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 19364, + "length": 15, + "value": "\"faas.instance\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 19905, + "length": 17, + "value": "\"faas.max_memory\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 20352, + "length": 9, + "value": "\"host.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 20686, + "length": 11, + "value": "\"host.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 20916, + "length": 11, + "value": "\"host.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 21150, + "length": 11, + "value": "\"host.arch\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 21480, + "length": 17, + "value": "\"host.image.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 21731, + "length": 15, + "value": "\"host.image.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22016, + "length": 20, + "value": "\"host.image.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22244, + "length": 18, + "value": "\"k8s.cluster.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22446, + "length": 15, + "value": "\"k8s.node.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22672, + "length": 14, + "value": "\"k8s.node.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22913, + "length": 20, + "value": "\"k8s.namespace.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 23141, + "length": 13, + "value": "\"k8s.pod.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 23355, + "length": 14, + "value": "\"k8s.pod.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 23701, + "length": 20, + "value": "\"k8s.container.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24088, + "length": 29, + "value": "\"k8s.container.restart_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24346, + "length": 20, + "value": "\"k8s.replicaset.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24575, + "length": 21, + "value": "\"k8s.replicaset.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24825, + "length": 20, + "value": "\"k8s.deployment.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25054, + "length": 21, + "value": "\"k8s.deployment.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25307, + "length": 21, + "value": "\"k8s.statefulset.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25540, + "length": 22, + "value": "\"k8s.statefulset.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25788, + "length": 19, + "value": "\"k8s.daemonset.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26013, + "length": 20, + "value": "\"k8s.daemonset.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26241, + "length": 13, + "value": "\"k8s.job.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26442, + "length": 14, + "value": "\"k8s.job.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26676, + "length": 17, + "value": "\"k8s.cronjob.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26893, + "length": 18, + "value": "\"k8s.cronjob.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 27103, + "length": 9, + "value": "\"os.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 27493, + "length": 16, + "value": "\"os.description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 27767, + "length": 9, + "value": "\"os.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28118, + "length": 12, + "value": "\"os.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28304, + "length": 13, + "value": "\"process.pid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28509, + "length": 20, + "value": "\"process.parent_pid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28892, + "length": 25, + "value": "\"process.executable.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 29292, + "length": 25, + "value": "\"process.executable.path\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 29715, + "length": 17, + "value": "\"process.command\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 30206, + "length": 22, + "value": "\"process.command_line\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 30805, + "length": 22, + "value": "\"process.command_args\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 31037, + "length": 15, + "value": "\"process.owner\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 31361, + "length": 22, + "value": "\"process.runtime.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 31658, + "length": 25, + "value": "\"process.runtime.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 32045, + "length": 29, + "value": "\"process.runtime.description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 32612, + "length": 14, + "value": "\"service.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 33347, + "length": 19, + "value": "\"service.namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 34518, + "length": 21, + "value": "\"service.instance.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 34763, + "length": 17, + "value": "\"service.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35007, + "length": 20, + "value": "\"telemetry.sdk.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35269, + "length": 24, + "value": "\"telemetry.sdk.language\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35511, + "length": 23, + "value": "\"telemetry.sdk.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35776, + "length": 24, + "value": "\"telemetry.auto.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35995, + "length": 16, + "value": "\"webengine.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 36214, + "length": 19, + "value": "\"webengine.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 36564, + "length": 23, + "value": "\"webengine.description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 36858, + "length": 17, + "value": "\"otel.scope.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 37131, + "length": 20, + "value": "\"otel.scope.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 37396, + "length": 19, + "value": "\"otel.library.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 37642, + "length": 22, + "value": "\"otel.library.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 37928, + "length": 15, + "value": "\"alibaba_cloud\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 38049, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 38158, + "length": 7, + "value": "\"azure\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 38273, + "length": 5, + "value": "\"gcp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 38396, + "length": 8, + "value": "\"heroku\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 38505, + "length": 11, + "value": "\"ibm_cloud\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 38625, + "length": 15, + "value": "\"tencent_cloud\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 39143, + "length": 19, + "value": "\"alibaba_cloud_ecs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 39290, + "length": 18, + "value": "\"alibaba_cloud_fc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 39447, + "length": 25, + "value": "\"alibaba_cloud_openshift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 39587, + "length": 9, + "value": "\"aws_ec2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 39715, + "length": 9, + "value": "\"aws_ecs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 39844, + "length": 9, + "value": "\"aws_eks\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 39956, + "length": 12, + "value": "\"aws_lambda\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 40092, + "length": 23, + "value": "\"aws_elastic_beanstalk\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 40225, + "length": 16, + "value": "\"aws_app_runner\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 40368, + "length": 15, + "value": "\"aws_openshift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 40496, + "length": 10, + "value": "\"azure_vm\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 40638, + "length": 27, + "value": "\"azure_container_instances\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 40781, + "length": 11, + "value": "\"azure_aks\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 40905, + "length": 17, + "value": "\"azure_functions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 41038, + "length": 19, + "value": "\"azure_app_service\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 41178, + "length": 17, + "value": "\"azure_openshift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 41328, + "length": 20, + "value": "\"gcp_compute_engine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 41459, + "length": 15, + "value": "\"gcp_cloud_run\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 41613, + "length": 23, + "value": "\"gcp_kubernetes_engine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 41765, + "length": 21, + "value": "\"gcp_cloud_functions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 41911, + "length": 16, + "value": "\"gcp_app_engine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 42056, + "length": 15, + "value": "\"gcp_openshift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 42202, + "length": 21, + "value": "\"ibm_cloud_openshift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 42363, + "length": 19, + "value": "\"tencent_cloud_cvm\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 42527, + "length": 19, + "value": "\"tencent_cloud_eks\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 42690, + "length": 19, + "value": "\"tencent_cloud_scf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43207, + "length": 5, + "value": "\"ec2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43276, + "length": 9, + "value": "\"fargate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43207, + "length": 5, + "value": "\"ec2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43276, + "length": 9, + "value": "\"fargate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43549, + "length": 7, + "value": "\"amd64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43645, + "length": 7, + "value": "\"arm32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43741, + "length": 7, + "value": "\"arm64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43838, + "length": 6, + "value": "\"ia64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43942, + "length": 7, + "value": "\"ppc32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 44047, + "length": 7, + "value": "\"ppc64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 44156, + "length": 7, + "value": "\"s390x\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 44255, + "length": 5, + "value": "\"x86\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 44714, + "length": 9, + "value": "\"windows\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 44810, + "length": 7, + "value": "\"linux\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 44912, + "length": 8, + "value": "\"darwin\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45011, + "length": 9, + "value": "\"freebsd\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45109, + "length": 8, + "value": "\"netbsd\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45208, + "length": 9, + "value": "\"openbsd\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45319, + "length": 14, + "value": "\"dragonflybsd\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45442, + "length": 6, + "value": "\"hpux\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45564, + "length": 5, + "value": "\"aix\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45674, + "length": 9, + "value": "\"solaris\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45771, + "length": 6, + "value": "\"z_os\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 46263, + "length": 5, + "value": "\"cpp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 46371, + "length": 8, + "value": "\"dotnet\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 46482, + "length": 8, + "value": "\"erlang\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 46585, + "length": 4, + "value": "\"go\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 46688, + "length": 6, + "value": "\"java\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 46797, + "length": 8, + "value": "\"nodejs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 46902, + "length": 5, + "value": "\"php\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 47010, + "length": 8, + "value": "\"python\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 47117, + "length": 6, + "value": "\"ruby\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 47224, + "length": 7, + "value": "\"webjs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 47332, + "length": 7, + "value": "\"swift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 655, + "length": 16, + "value": "\"browser.brands\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 1719, + "length": 18, + "value": "\"browser.platform\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 2114, + "length": 16, + "value": "\"browser.mobile\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 2565, + "length": 18, + "value": "\"browser.language\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 21, + "value": "\"user_agent.original\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 3411, + "length": 16, + "value": "\"cloud.provider\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 3701, + "length": 18, + "value": "\"cloud.account.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 4464, + "length": 14, + "value": "\"cloud.region\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 6720, + "length": 19, + "value": "\"cloud.resource_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 7175, + "length": 25, + "value": "\"cloud.availability_zone\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 7504, + "length": 16, + "value": "\"cloud.platform\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 7914, + "length": 23, + "value": "\"aws.ecs.container.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 8260, + "length": 21, + "value": "\"aws.ecs.cluster.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 8590, + "length": 20, + "value": "\"aws.ecs.launchtype\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 8966, + "length": 18, + "value": "\"aws.ecs.task.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 9234, + "length": 21, + "value": "\"aws.ecs.task.family\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 9508, + "length": 23, + "value": "\"aws.ecs.task.revision\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 9777, + "length": 21, + "value": "\"aws.eks.cluster.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 10287, + "length": 21, + "value": "\"aws.log.group.names\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 10756, + "length": 20, + "value": "\"aws.log.group.arns\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 11052, + "length": 22, + "value": "\"aws.log.stream.names\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 11676, + "length": 21, + "value": "\"aws.log.stream.arns\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 11950, + "length": 35, + "value": "\"heroku.release.creation_timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 12231, + "length": 23, + "value": "\"heroku.release.commit\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 12485, + "length": 15, + "value": "\"heroku.app.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 12724, + "length": 16, + "value": "\"container.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13094, + "length": 14, + "value": "\"container.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13418, + "length": 19, + "value": "\"container.runtime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13682, + "length": 22, + "value": "\"container.image.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13896, + "length": 21, + "value": "\"container.image.tag\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 14268, + "length": 24, + "value": "\"deployment.environment\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 15345, + "length": 11, + "value": "\"device.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 15797, + "length": 25, + "value": "\"device.model.identifier\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 16237, + "length": 19, + "value": "\"device.model.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 16692, + "length": 21, + "value": "\"device.manufacturer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 18004, + "length": 11, + "value": "\"faas.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 18942, + "length": 14, + "value": "\"faas.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 19364, + "length": 15, + "value": "\"faas.instance\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 19905, + "length": 17, + "value": "\"faas.max_memory\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 20352, + "length": 9, + "value": "\"host.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 20686, + "length": 11, + "value": "\"host.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 20916, + "length": 11, + "value": "\"host.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 21150, + "length": 11, + "value": "\"host.arch\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 21480, + "length": 17, + "value": "\"host.image.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 21731, + "length": 15, + "value": "\"host.image.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22016, + "length": 20, + "value": "\"host.image.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22244, + "length": 18, + "value": "\"k8s.cluster.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22446, + "length": 15, + "value": "\"k8s.node.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22672, + "length": 14, + "value": "\"k8s.node.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22913, + "length": 20, + "value": "\"k8s.namespace.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 23141, + "length": 13, + "value": "\"k8s.pod.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 23355, + "length": 14, + "value": "\"k8s.pod.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 23701, + "length": 20, + "value": "\"k8s.container.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24088, + "length": 29, + "value": "\"k8s.container.restart_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24346, + "length": 20, + "value": "\"k8s.replicaset.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24575, + "length": 21, + "value": "\"k8s.replicaset.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24825, + "length": 20, + "value": "\"k8s.deployment.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25054, + "length": 21, + "value": "\"k8s.deployment.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25307, + "length": 21, + "value": "\"k8s.statefulset.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25540, + "length": 22, + "value": "\"k8s.statefulset.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25788, + "length": 19, + "value": "\"k8s.daemonset.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26013, + "length": 20, + "value": "\"k8s.daemonset.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26241, + "length": 13, + "value": "\"k8s.job.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26442, + "length": 14, + "value": "\"k8s.job.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26676, + "length": 17, + "value": "\"k8s.cronjob.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26893, + "length": 18, + "value": "\"k8s.cronjob.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 27103, + "length": 9, + "value": "\"os.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 27493, + "length": 16, + "value": "\"os.description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 27767, + "length": 9, + "value": "\"os.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28118, + "length": 12, + "value": "\"os.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28304, + "length": 13, + "value": "\"process.pid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28509, + "length": 20, + "value": "\"process.parent_pid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28892, + "length": 25, + "value": "\"process.executable.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 29292, + "length": 25, + "value": "\"process.executable.path\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 29715, + "length": 17, + "value": "\"process.command\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 30206, + "length": 22, + "value": "\"process.command_line\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 30805, + "length": 22, + "value": "\"process.command_args\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 31037, + "length": 15, + "value": "\"process.owner\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 31361, + "length": 22, + "value": "\"process.runtime.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 31658, + "length": 25, + "value": "\"process.runtime.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 32045, + "length": 29, + "value": "\"process.runtime.description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 32612, + "length": 14, + "value": "\"service.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 33347, + "length": 19, + "value": "\"service.namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 34518, + "length": 21, + "value": "\"service.instance.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 34763, + "length": 17, + "value": "\"service.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35007, + "length": 20, + "value": "\"telemetry.sdk.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35269, + "length": 24, + "value": "\"telemetry.sdk.language\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35511, + "length": 23, + "value": "\"telemetry.sdk.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35776, + "length": 24, + "value": "\"telemetry.auto.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35995, + "length": 16, + "value": "\"webengine.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 36214, + "length": 19, + "value": "\"webengine.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 36564, + "length": 23, + "value": "\"webengine.description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 36858, + "length": 17, + "value": "\"otel.scope.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 37131, + "length": 20, + "value": "\"otel.scope.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 37396, + "length": 19, + "value": "\"otel.library.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 37642, + "length": 22, + "value": "\"otel.library.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 942, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 1689, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 1733, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 1920, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 1958, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 2042, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 2083, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 2115, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 2148, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 2619, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 2651, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 2846, + "length": 13, + "value": "\"RoomMetrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 773, + "length": 10, + "value": "\"VideoSDKRTC.RoomClient\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3087, + "length": 15, + "value": "\"consumerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 3125, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3168, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3290, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3417, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3491, + "length": 18, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3508, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3576, + "length": 15, + "value": "\"consumerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3640, + "length": 15, + "value": "\"consumerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 3659, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 3843, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 3989, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 4118, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 4216, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 4336, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 4461, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 4466, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 4851, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 4967, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 5094, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 5168, + "length": 18, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 5185, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 5253, + "length": 15, + "value": "\"consumerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 5317, + "length": 15, + "value": "\"consumerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 5336, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 5549, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 5724, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 5853, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 5951, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 6060, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 6196, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 6201, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 6583, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 6621, + "length": 38, + "value": "\"ERR :: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 6658, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 6789, + "length": 15, + "value": "\"producerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 6842, + "length": 15, + "value": "\"producerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 6861, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 6917, + "length": 15, + "value": "\"producerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 6955, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 6988, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7036, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 7047, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7164, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 7170, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7225, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7397, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 7538, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 7543, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7589, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7703, + "length": 15, + "value": "\"producerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7790, + "length": 15, + "value": "\"producerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7840, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7888, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 7899, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7966, + "length": 15, + "value": "\"producerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8016, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8064, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 8075, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8203, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 8209, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8264, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8436, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 8632, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 8637, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8834, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8874, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8911, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 8959, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8990, + "length": 7, + "value": "\"stats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 9111, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9149, + "length": 38, + "value": "\"ERR :: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9186, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9549, + "length": 31, + "value": "\"Meeting is in CONNECTED State\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9834, + "length": 9, + "value": "\"baseUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9859, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9911, + "length": 15, + "value": "\"observability\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 9949, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9954, + "length": 5, + "value": "\"jwt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9975, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 10032, + "length": 15, + "value": "\"observability\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 10070, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 10075, + "length": 8, + "value": "\"traces\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 10106, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 10162, + "length": 15, + "value": "\"observability\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 10200, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 10205, + "length": 6, + "value": "\"logs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 10234, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 10294, + "length": 15, + "value": "\"observability\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 10332, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 10337, + "length": 10, + "value": "\"metaData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 10370, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 10992, + "length": 12, + "value": "\"iOS(2.1.0)\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11247, + "length": 32, + "value": "\"Meeting is in CONNECTING State\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 11293, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 11384, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11419, + "length": 11, + "value": "\"modelName\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11486, + "length": 7, + "value": "\"brand\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11497, + "length": 7, + "value": "\"Apple\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11536, + "length": 11, + "value": "\"osVersion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 11634, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11669, + "length": 9, + "value": "\"sdkType\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11682, + "length": 5, + "value": "\"iOS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11719, + "length": 12, + "value": "\"sdkVersion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11778, + "length": 10, + "value": "\"platform\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11792, + "length": 5, + "value": "\"iOS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11829, + "length": 17, + "value": "\"deviceUserAgent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11876, + "length": 7, + "value": "\"model\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11885, + "length": 25, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11909, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11978, + "length": 11, + "value": "\"osVersion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 12075, + "length": 12, + "value": "\"deviceInfo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 12133, + "length": 13, + "value": "\"displayName\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 12274, + "length": 24, + "value": "\"customCameraVideoTrack\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 12377, + "length": 13, + "value": "\"multiStream\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 12438, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 12497, + "length": 6, + "value": "\"mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 12616, + "length": 16, + "value": "\"Join() Calling\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 12978, + "length": 28, + "value": "\"Meeting is in FAILED State\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 13036, + "length": 26, + "value": "\"Protoo Connection Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 13402, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 13932, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14095, + "length": 29, + "value": "\"Loading Router Capabilities\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14139, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14331, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 14360, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14410, + "length": 18, + "value": "\"headerExtensions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14503, + "length": 5, + "value": "\"uri\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14524, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14531, + "length": 28, + "value": "\"urn:3gpp:video-orientation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14586, + "length": 18, + "value": "\"headerExtensions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14653, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14757, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 15093, + "length": 47, + "value": "\"Router Capabilities Loaded \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 15139, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 15493, + "length": 42, + "value": "\"setupDeviceAndTransports Error: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 15534, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 15696, + "length": 23, + "value": "\"Create Send Transport\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 16760, + "length": 15, + "value": "\"sendTransport\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 16972, + "length": 37, + "value": "\"Send Transport Created Successfully\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 17061, + "length": 38, + "value": "\"createSendTransport Error : \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 17098, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 17213, + "length": 46, + "value": "\"error while creating sendTransport: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 17258, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 17271, + "length": 46, + "value": "\"error while creating sendTransport: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 17316, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 17481, + "length": 26, + "value": "\"Create Receive Transport\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18452, + "length": 11, + "value": "\"transport\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18643, + "length": 40, + "value": "\"Receive Transport Created Successfully\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18733, + "length": 40, + "value": "\"createReceiveTransport Error: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18772, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18887, + "length": 46, + "value": "\"error while creating recvTransport: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18932, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18945, + "length": 46, + "value": "\"error while creating recvTransport: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18990, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 19736, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 19803, + "length": 33, + "value": "\"Error in joinRoom() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 19835, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 19848, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 19875, + "length": 22, + "value": "\"join Error: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 19896, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 20017, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 20043, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20262, + "length": 15, + "value": "\"Changing Mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20309, + "length": 18, + "value": "\"peer.currentMode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20383, + "length": 20, + "value": "\"peer.requestedMode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20559, + "length": 46, + "value": "\"error in changeMode() \n You are already in \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20624, + "length": 7, + "value": "\" mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20643, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20759, + "length": 38, + "value": "\"Already in the \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20791, + "length": 4, + "value": "\" mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20809, + "length": 38, + "value": "\"Already in the \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20841, + "length": 4, + "value": "\" mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21037, + "length": 36, + "value": "\"Starting mode change to CONFERENCE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 21106, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 21142, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 21220, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21391, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 21408, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 21414, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21470, + "length": 60, + "value": "\"Error in changeMode() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21529, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21541, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21656, + "length": 57, + "value": "\"Change Mode Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21712, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21866, + "length": 32, + "value": "\"Starting mode change to VIEWER\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22053, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 22070, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 22076, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22132, + "length": 60, + "value": "\"Error in changeMode() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22191, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22203, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22318, + "length": 57, + "value": "\"Change Mode Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22374, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 22443, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 22480, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22725, + "length": 52, + "value": "\"Error in changeMode() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22758, + "length": 2, + "value": "\" is not valid mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22789, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22899, + "length": 58, + "value": "\"Change Mode Failed \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22938, + "length": 2, + "value": "\" is not valid mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23018, + "length": 31, + "value": "\"Error Changing Mode: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23048, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23293, + "length": 24, + "value": "\"startRecording() Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23400, + "length": 12, + "value": "\"webhookUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23435, + "length": 24, + "value": "\"webhookUrl Not Specify\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23555, + "length": 12, + "value": "\"awsDirPath\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23583, + "length": 26, + "value": "\"awsDirPath not specified\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23692, + "length": 8, + "value": "\"config\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23722, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23955, + "length": 64, + "value": "\"startRecordScreenResp: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24018, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24055, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 24072, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 24078, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24126, + "length": 68, + "value": "\"Error in startRecording() ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24193, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24205, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24321, + "length": 69, + "value": "\"startRecording() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24389, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24402, + "length": 69, + "value": "\"startRecording() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24470, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24580, + "length": 22, + "value": "\"startRecording() End\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24718, + "length": 23, + "value": "\"stopRecording() Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 24755, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24876, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 24893, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 24899, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24947, + "length": 67, + "value": "\"Error in stopRecording() ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25013, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25025, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25140, + "length": 64, + "value": "\"stopRecording() Failed ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25203, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25216, + "length": 67, + "value": "\"stopRecording() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25282, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25391, + "length": 21, + "value": "\"stopRecording() End\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25590, + "length": 25, + "value": "\"startLivestream() Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 25629, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25766, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 25783, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 25789, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25837, + "length": 70, + "value": "\"Error in startLivestream() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25906, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25918, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26035, + "length": 68, + "value": "\"startLivestream() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26102, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26115, + "length": 68, + "value": "\"startLivestream() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26182, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26293, + "length": 23, + "value": "\"startLivestream() End\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26434, + "length": 24, + "value": "\"stopLivestream() Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 26472, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26590, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 26607, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 26613, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26661, + "length": 68, + "value": "\"Error in stopLivestream() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26728, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26741, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26857, + "length": 66, + "value": "\"stopLivestream() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26922, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26935, + "length": 66, + "value": "\"stopLivestream() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27000, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27110, + "length": 22, + "value": "\"stopLivestream() End\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27303, + "length": 16, + "value": "\"close() called\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 27333, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27436, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 27453, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 27459, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27507, + "length": 58, + "value": "\"Error in closeRoom() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27564, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27577, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27688, + "length": 15, + "value": "\"Already close\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27769, + "length": 34, + "value": "\"Meeting is in DISCONNECTED State\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27975, + "length": 18, + "value": "\"startHls() Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28008, + "length": 8, + "value": "\"config\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28153, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 28170, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 28176, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28224, + "length": 56, + "value": "\"Error in startHls() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28279, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28292, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28402, + "length": 54, + "value": "\"startHls() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28455, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28468, + "length": 54, + "value": "\"startHls() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28521, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28625, + "length": 16, + "value": "\"startHls() End\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28750, + "length": 17, + "value": "\"stopHls() Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 28781, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28878, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 28895, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 28901, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28949, + "length": 54, + "value": "\"Error in stopHls() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29002, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29015, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29124, + "length": 53, + "value": "\"stopHls() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29176, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29189, + "length": 52, + "value": "\"stopHls() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29240, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29343, + "length": 15, + "value": "\"stopHls() End\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 29479, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29615, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 29632, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 29638, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29686, + "length": 38, + "value": "\"error in publish() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29723, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29736, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29917, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 29934, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 29940, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29988, + "length": 42, + "value": "\"error in subscribe() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 30029, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 30042, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 30244, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 30261, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 30267, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 30315, + "length": 46, + "value": "\"error in unsubscribe() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 30360, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 30373, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 30769, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 31041, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 32299, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 32641, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 32867, + "length": 15, + "value": "[(\"share\", true)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 33019, + "length": 8, + "value": "\"peerid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 33260, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 33900, + "length": 29, + "value": "\"SendTransport doesn't ready\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 33941, + "length": 29, + "value": "\"SendTransport doesn't ready\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 34145, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 34253, + "length": 39, + "value": "\"MediaSoup device cannot produce video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 34304, + "length": 39, + "value": "\"MediaSoup device cannot produce video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 34599, + "length": 16, + "value": "\"Creating Track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 34629, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 34978, + "length": 30, + "value": "\"WebCam Track Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 35020, + "length": 30, + "value": "\"WebCam Track Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 35159, + "length": 24, + "value": "\"WebCam Track Generated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 35265, + "length": 35, + "value": "\"Generating Producer Configuration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 35314, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 35383, + "length": 25, + "value": "\"videoGoogleStartBitrate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 35410, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 35675, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 35695, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 35787, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 35808, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 35939, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 35986, + "length": 11, + "value": "\"simulcast\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 36033, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 36139, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36186, + "length": 11, + "value": "\"simulcast\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 36199, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36307, + "length": 34, + "value": "\"Producer Configuration Generated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36399, + "length": 61, + "value": "\" with multiStream \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 36454, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36459, + "length": 5, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36463, + "length": 61, + "value": "\" with multiStream \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 36518, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36523, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36589, + "length": 76, + "value": "\"Track Generated with height \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36627, + "length": 3, + "value": "\" and width \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36646, + "length": 1, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36664, + "length": 53, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 36679, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36831, + "length": 26, + "value": "\"Creating Webcam Producer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 36871, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 36932, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 37326, + "length": 33, + "value": "\"WebCam Producer Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 37371, + "length": 33, + "value": "\"WebCam Producer Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 37512, + "length": 22, + "value": "\"Enable WebCam Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 37546, + "length": 22, + "value": "\"Enable WebCam Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 37856, + "length": 25, + "value": "\"Webcam Producer Created\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 38052, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 38832, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 38849, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 38855, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 38911, + "length": 45, + "value": "\"Error in restartIce \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 38955, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 38968, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39139, + "length": 47, + "value": "\"Error in restartICE() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39185, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39198, + "length": 47, + "value": "\"Error in restartICE() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39244, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39590, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 39607, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 39613, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39669, + "length": 45, + "value": "\"Error in restartIce \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39713, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39726, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39897, + "length": 47, + "value": "\"Error in restartICE() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39943, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39956, + "length": 47, + "value": "\"Error in restartICE() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40002, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40121, + "length": 35, + "value": "\"Error in restartIce() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40155, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40167, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40194, + "length": 30, + "value": "\"error in iceRestart \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40223, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40366, + "length": 19, + "value": "\"Transport::closed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40565, + "length": 11, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40575, + "length": 26, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 40598, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40732, + "length": 37, + "value": "\"Enable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40762, + "length": 5, + "value": "\" Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 40783, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40896, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 40913, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 40919, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40967, + "length": 62, + "value": "\"Error in enablePeerMic() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41028, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41041, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41156, + "length": 74, + "value": "\"Enable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41186, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41229, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41242, + "length": 74, + "value": "\"Enable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41272, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41315, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41424, + "length": 41, + "value": "\"Enable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41454, + "length": 9, + "value": "\" Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41599, + "length": 38, + "value": "\"Disable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41630, + "length": 5, + "value": "\" Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 41651, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41767, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 41784, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 41790, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41838, + "length": 64, + "value": "\"Error in disablePeerMic() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41901, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41914, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42030, + "length": 75, + "value": "\"Enable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42060, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42104, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42117, + "length": 76, + "value": "\"Disable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42148, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42192, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42302, + "length": 42, + "value": "\"Disable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42333, + "length": 9, + "value": "\" Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42482, + "length": 40, + "value": "\"Enable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42515, + "length": 5, + "value": "\" Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 42536, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42658, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 42675, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 42681, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42729, + "length": 68, + "value": "\"Error in enablePeerWebcam() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42796, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42809, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42927, + "length": 80, + "value": "\"Enable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42960, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43006, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43019, + "length": 80, + "value": "\"Enable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43052, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43098, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43210, + "length": 44, + "value": "\"Enable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43243, + "length": 9, + "value": "\" Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43394, + "length": 41, + "value": "\"Disable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43428, + "length": 5, + "value": "\" Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 43449, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43574, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 43591, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 43597, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43645, + "length": 70, + "value": "\"Error in disablePeerWebcam() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43714, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43727, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43846, + "length": 82, + "value": "\"Disable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43880, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43927, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43940, + "length": 82, + "value": "\"Disable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43974, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44021, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44134, + "length": 45, + "value": "\"Disable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44168, + "length": 9, + "value": "\" Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44305, + "length": 29, + "value": "\"Remove \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44322, + "length": 4, + "value": "\" Peer Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44432, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 44449, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 44455, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44503, + "length": 60, + "value": "\"Error in removePeer() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44562, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44575, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44687, + "length": 67, + "value": "\"Remove \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44704, + "length": 4, + "value": "\" Peer Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44753, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44766, + "length": 67, + "value": "\"Remove \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44783, + "length": 4, + "value": "\" Peer Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44832, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44938, + "length": 33, + "value": "\"Remove \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44955, + "length": 4, + "value": "\" Peer Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45148, + "length": 29, + "value": "\"Protoo REQ: pinStateChanged\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45205, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45223, + "length": 7, + "value": "\"state\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45383, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 45400, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 45406, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45454, + "length": 55, + "value": "\"error in onPinStateChanged() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45508, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45521, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45637, + "length": 56, + "value": "\"PinStateChange Request Failed \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45692, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45705, + "length": 56, + "value": "\"PinStateChange Request Failed \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45760, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45837, + "length": 33, + "value": "\"Emitted `pinStateChanged` Event\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46008, + "length": 34, + "value": "\"PinStateChange Request Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46415, + "length": 31, + "value": "\"Sending PauseConsumer Request\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46565, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 46582, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 46588, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46636, + "length": 66, + "value": "\"error in pauseConsumer() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46701, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46714, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46829, + "length": 61, + "value": "\"Error while pausing consumer \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46868, + "length": 1, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46889, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46902, + "length": 61, + "value": "\"Error while pausing consumer \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46941, + "length": 1, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46962, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47071, + "length": 41, + "value": "\"PauseConsumer Request Sent Successfully\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47246, + "length": 32, + "value": "\"Sending ResumeConsumer Request\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47400, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 47417, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 47423, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47471, + "length": 68, + "value": "\"error in resumeConsumer() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47538, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47551, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47667, + "length": 63, + "value": "\"Error while resuming consumer \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47707, + "length": 1, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47729, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47742, + "length": 63, + "value": "\"Error while resuming consumer \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47782, + "length": 1, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47804, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47914, + "length": 42, + "value": "\"ResumeConsumer Request Sent Successfully\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48087, + "length": 4, + "value": "\"hd\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48171, + "length": 3, + "value": "\"s\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 48179, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48260, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 48268, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48499, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 48516, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 48522, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48570, + "length": 72, + "value": "\"Error in setConsumerPreferredLayers() ProtooException: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48641, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48654, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48737, + "length": 55, + "value": "\"Setting \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48765, + "length": 7, + "value": "\" Quality for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48791, + "length": 15, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48995, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 49043, + "length": 6, + "value": "\"kind\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 49099, + "length": 12, + "value": "\"producerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 49164, + "length": 15, + "value": "\"rtpParameters\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 49233, + "length": 9, + "value": "\"appData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 49414, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 49493, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 50691, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 50755, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 50821, + "length": 15, + "value": "\"iceParameters\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 50905, + "length": 15, + "value": "\"iceCandidates\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 50992, + "length": 16, + "value": "\"dtlsParameters\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 51362, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 51420, + "length": 7, + "value": "\"peers\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 51483, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 51639, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 51780, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 51901, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 1760, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "Dictionary", + "offset": 1788, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 1818, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2127, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2220, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2270, + "length": 9, + "value": "\"appData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2301, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "BooleanLiteral", + "offset": 2322, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2410, + "length": 25, + "value": "\"Protoo REQ: newConsumer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2583, + "length": 19, + "value": "\"Creating Consumer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2838, + "length": 18, + "value": "\"Consumer Created\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2972, + "length": 35, + "value": "\"New Consumer Created Successfully\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3189, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3286, + "length": 42, + "value": "\"error in onNewConsumer :: onStatsChanged\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3340, + "length": 7, + "value": "\"DEBUG\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3459, + "length": 26, + "value": "\"Consumer Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3497, + "length": 26, + "value": "\"Consumer Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3644, + "length": 30, + "value": "\"New Consumer Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3686, + "length": 30, + "value": "\"New Consumer Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3885, + "length": 24, + "value": "\"Do not want to consume\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 4041, + "length": 12, + "value": "\"consumerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 4850, + "length": 23, + "value": "\"Protoo REQ: enableMic\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 5051, + "length": 29, + "value": "\"EnableMic Request Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 5160, + "length": 40, + "value": "\"error in enableMic request \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 5199, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 5211, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 5486, + "length": 26, + "value": "\"Protoo REQ: enableWebcam\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 5712, + "length": 32, + "value": "\"EnableWebCam Request Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6206, + "length": 6, + "value": "\"code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "IntegerLiteral", + "offset": 6225, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6397, + "length": 8, + "value": "\"status\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6421, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6610, + "length": 15, + "value": "\"downstreamUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6641, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6694, + "length": 16, + "value": "\"playbackHlsUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6726, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6778, + "length": 15, + "value": "\"livestreamUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6809, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6996, + "length": 12, + "value": "\"isPlayable\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "BooleanLiteral", + "offset": 7022, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7159, + "length": 15, + "value": "\"downstreamUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7190, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7214, + "length": 16, + "value": "\"playbackHlsUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7246, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7270, + "length": 15, + "value": "\"livestreamUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7301, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7450, + "length": 8, + "value": "\"status\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7474, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7697, + "length": 8, + "value": "\"status\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7721, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7924, + "length": 7, + "value": "\"state\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "Dictionary", + "offset": 7954, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8045, + "length": 5, + "value": "\"cam\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "BooleanLiteral", + "offset": 8064, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8084, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "BooleanLiteral", + "offset": 8105, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8183, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8222, + "length": 10, + "value": "\"pinnedBy\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8248, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8328, + "length": 38, + "value": "\"Pin state Change for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8362, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8365, + "length": 17, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8381, + "length": 7, + "value": "\"state\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8507, + "length": 40, + "value": "\"error in pinStateChanged() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8546, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8559, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8685, + "length": 6, + "value": "\"mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8707, + "length": 12, + "value": "\"CONFERENCE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8810, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8908, + "length": 13, + "value": "\"transportId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8937, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8981, + "length": 15, + "value": "\"iceParameters\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "Dictionary", + "offset": 9019, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9104, + "length": 58, + "value": "\"Protoo Noti: restartIce for transportId : \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9161, + "length": 17, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9177, + "length": 15, + "value": "\"iceParameters\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9416, + "length": 82, + "value": "\"handleNotificationError \n data: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9457, + "length": 1, + "value": "\" & peerId: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9497, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9509, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9891, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9919, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9929, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 10186, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 10241, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 10367, + "length": 85, + "value": "\"transport `connect` Event : Transport is about to establish the ICE+DTLS connection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 10978, + "length": 85, + "value": "\"transport `connect` Event : Transport is about to establish the ICE+DTLS connection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 11370, + "length": 59, + "value": "\"Transport Event connectionStateChange: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 11428, + "length": 15, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "BooleanLiteral", + "offset": 1821, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "BooleanLiteral", + "offset": 1897, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 2328, + "length": 17, + "value": "\"AlwaysOnSampler\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 2778, + "length": 18, + "value": "\"AlwaysOffSampler\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "FloatLiteral", + "offset": 3415, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "FloatLiteral", + "offset": 3484, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "BooleanLiteral", + "offset": 4026, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 5210, + "length": 25, + "value": "\"TraceIdRatioBased{%.6f}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 7970, + "length": 215, + "value": "\"ParentBasedSampler{root:\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 8002, + "length": 1, + "value": "\", remoteParentSampled:\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 8046, + "length": 22, + "value": "\" remoteParentNotSampled:\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 8095, + "length": 18, + "value": "\" localParentSampled:\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 8136, + "length": 21, + "value": "\" localParentNotSampled:\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 8183, + "length": 1, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "Array", + "offset": 180, + "length": 15, + "value": "[\"q\", \"h\", \"f\"]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "Array", + "offset": 331, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 373, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 464, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 500, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 523, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 589, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 613, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "BooleanLiteral", + "offset": 745, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "BooleanLiteral", + "offset": 919, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 970, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 1008, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "FloatLiteral", + "offset": 1075, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 1177, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 1243, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 1275, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 1703, + "length": 11, + "value": "\"simulcast\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 2048, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 2076, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 2106, + "length": 10, + "value": "\"encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 2374, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 2377, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 2409, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 2445, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 2525, + "length": 3, + "value": "960" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "Array", + "offset": 2606, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 2860, + "length": 3, + "value": "480" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "Array", + "offset": 3249, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 3278, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 3541, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 3566, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 3732, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 3762, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 3823, + "length": 10, + "value": "\"encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 3915, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "BooleanLiteral", + "offset": 3950, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 4191, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 4219, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 4255, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 4291, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 4328, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 4365, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "FloatLiteral", + "offset": 4412, + "length": 4, + "value": "16.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 4419, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "FloatLiteral", + "offset": 4442, + "length": 3, + "value": "4.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 4448, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 5129, + "length": 10, + "value": "\"encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 5278, + "length": 10, + "value": "\"encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 5348, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 5368, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "FloatLiteral", + "offset": 5827, + "length": 4, + "value": "16.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "FloatLiteral", + "offset": 5832, + "length": 3, + "value": "9.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "FloatLiteral", + "offset": 5857, + "length": 3, + "value": "4.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "FloatLiteral", + "offset": 5861, + "length": 3, + "value": "3.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "Dictionary", + "offset": 6090, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6196, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6225, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6409, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 6438, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6506, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 6533, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6605, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6637, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 6658, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6681, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6712, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 6732, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6755, + "length": 10, + "value": "\"encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "Dictionary", + "offset": 6994, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7084, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7113, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7296, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 7325, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7393, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 7420, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7492, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7524, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 7545, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7568, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7599, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 7619, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7642, + "length": 10, + "value": "\"encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SDKConstants.swift", + "kind": "StringLiteral", + "offset": 216, + "length": 31, + "value": "\"wss:\/\/call-api.videosdk.live\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 1227, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 1342, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 1455, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 1568, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 1683, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 1798, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 1912, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2026, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2142, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2258, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2374, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2490, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2601, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2716, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2828, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2945, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3068, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3189, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3304, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3421, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3536, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3651, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3768, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3885, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4001, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4117, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4235, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4353, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4471, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4589, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4702, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4819, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4933, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5052, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5177, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5300, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5413, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5528, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5641, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5754, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5869, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5984, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6098, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6212, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6328, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6444, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6560, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6676, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6787, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6904, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7140, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7405, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7644, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7776, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7936, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 8019, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 611, + "length": 16, + "value": "\"exception.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 915, + "length": 19, + "value": "\"exception.message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 1515, + "length": 22, + "value": "\"exception.stacktrace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 1789, + "length": 13, + "value": "\"http.method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 2033, + "length": 18, + "value": "\"http.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 2339, + "length": 19, + "value": "\"net.protocol.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 2941, + "length": 22, + "value": "\"net.protocol.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 3596, + "length": 15, + "value": "\"net.peer.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 4160, + "length": 15, + "value": "\"net.peer.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 4417, + "length": 13, + "value": "\"http.scheme\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 5079, + "length": 12, + "value": "\"http.route\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 5873, + "length": 15, + "value": "\"net.host.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 6520, + "length": 15, + "value": "\"net.host.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 6764, + "length": 12, + "value": "\"event.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 7119, + "length": 14, + "value": "\"event.domain\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 7738, + "length": 16, + "value": "\"log.record.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 7969, + "length": 18, + "value": "\"feature_flag.key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 8247, + "length": 28, + "value": "\"feature_flag.provider_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 9171, + "length": 22, + "value": "\"feature_flag.variant\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 9675, + "length": 24, + "value": "\"aws.lambda.invoked_arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 10068, + "length": 22, + "value": "\"cloudevents.event_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 10566, + "length": 26, + "value": "\"cloudevents.event_source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 10933, + "length": 32, + "value": "\"cloudevents.event_spec_version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 11417, + "length": 24, + "value": "\"cloudevents.event_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 11799, + "length": 27, + "value": "\"cloudevents.event_subject\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 12133, + "length": 22, + "value": "\"opentracing.ref_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 12450, + "length": 11, + "value": "\"db.system\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 12784, + "length": 22, + "value": "\"db.connection_string\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 13045, + "length": 9, + "value": "\"db.user\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 13499, + "length": 26, + "value": "\"db.jdbc.driver_classname\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 14192, + "length": 9, + "value": "\"db.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 14476, + "length": 14, + "value": "\"db.statement\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 15284, + "length": 14, + "value": "\"db.operation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 15689, + "length": 20, + "value": "\"net.sock.peer.addr\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 15893, + "length": 20, + "value": "\"net.sock.peer.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 16340, + "length": 17, + "value": "\"net.sock.family\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 16563, + "length": 20, + "value": "\"net.sock.peer.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 16807, + "length": 15, + "value": "\"net.transport\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 17354, + "length": 24, + "value": "\"db.mssql.instance_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 17621, + "length": 24, + "value": "\"db.cassandra.page_size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 18037, + "length": 32, + "value": "\"db.cassandra.consistency_level\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 18727, + "length": 20, + "value": "\"db.cassandra.table\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 18885, + "length": 26, + "value": "\"db.cassandra.idempotence\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 19277, + "length": 42, + "value": "\"db.cassandra.speculative_execution_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 19582, + "length": 29, + "value": "\"db.cassandra.coordinator.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 19856, + "length": 29, + "value": "\"db.cassandra.coordinator.dc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 20314, + "length": 25, + "value": "\"db.redis.database_index\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 20641, + "length": 23, + "value": "\"db.mongodb.collection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 21275, + "length": 14, + "value": "\"db.sql.table\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 21529, + "length": 23, + "value": "\"db.cosmosdb.client_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 21793, + "length": 28, + "value": "\"db.cosmosdb.operation_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 22963, + "length": 21, + "value": "\"user_agent.original\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23234, + "length": 29, + "value": "\"db.cosmosdb.connection_mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23470, + "length": 23, + "value": "\"db.cosmosdb.container\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23629, + "length": 36, + "value": "\"db.cosmosdb.request_content_length\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23894, + "length": 25, + "value": "\"db.cosmosdb.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 24163, + "length": 29, + "value": "\"db.cosmosdb.sub_status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 24444, + "length": 28, + "value": "\"db.cosmosdb.request_charge\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 24748, + "length": 18, + "value": "\"otel.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 25024, + "length": 25, + "value": "\"otel.status_description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 25799, + "length": 14, + "value": "\"faas.trigger\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 26069, + "length": 20, + "value": "\"faas.invocation_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 28331, + "length": 19, + "value": "\"cloud.resource_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 28772, + "length": 26, + "value": "\"faas.document.collection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 29076, + "length": 25, + "value": "\"faas.document.operation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 29481, + "length": 20, + "value": "\"faas.document.time\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 29873, + "length": 20, + "value": "\"faas.document.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 30139, + "length": 13, + "value": "\"http.target\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 31188, + "length": 16, + "value": "\"http.client_ip\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 31436, + "length": 20, + "value": "\"net.sock.host.addr\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 31641, + "length": 20, + "value": "\"net.sock.host.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 32058, + "length": 18, + "value": "\"messaging.system\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 32470, + "length": 21, + "value": "\"messaging.operation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 33192, + "length": 31, + "value": "\"messaging.batch.message_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 33521, + "length": 22, + "value": "\"messaging.message.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 33910, + "length": 35, + "value": "\"messaging.message.conversation_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 34300, + "length": 38, + "value": "\"messaging.message.payload_size_bytes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 34603, + "length": 49, + "value": "\"messaging.message.payload_compressed_size_bytes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35009, + "length": 11, + "value": "\"faas.time\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35324, + "length": 11, + "value": "\"faas.cron\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35523, + "length": 16, + "value": "\"faas.coldstart\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35840, + "length": 19, + "value": "\"faas.invoked_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 36204, + "length": 23, + "value": "\"faas.invoked_provider\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 36544, + "length": 21, + "value": "\"faas.invoked_region\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 36919, + "length": 26, + "value": "\"net.host.connection.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 37425, + "length": 29, + "value": "\"net.host.connection.subtype\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 37662, + "length": 23, + "value": "\"net.host.carrier.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 37889, + "length": 22, + "value": "\"net.host.carrier.mcc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 38115, + "length": 22, + "value": "\"net.host.carrier.mnc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 38399, + "length": 22, + "value": "\"net.host.carrier.icc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 38784, + "length": 14, + "value": "\"peer.service\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 39135, + "length": 12, + "value": "\"enduser.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 39421, + "length": 14, + "value": "\"enduser.role\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 39994, + "length": 15, + "value": "\"enduser.scope\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 40209, + "length": 11, + "value": "\"thread.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 40399, + "length": 13, + "value": "\"thread.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 40675, + "length": 15, + "value": "\"code.function\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 41082, + "length": 16, + "value": "\"code.namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 41423, + "length": 15, + "value": "\"code.filepath\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 41715, + "length": 13, + "value": "\"code.lineno\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 42007, + "length": 13, + "value": "\"code.column\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 42512, + "length": 29, + "value": "\"http.request_content_length\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 43036, + "length": 30, + "value": "\"http.response_content_length\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 43649, + "length": 10, + "value": "\"http.url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 44149, + "length": 19, + "value": "\"http.resend_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 44435, + "length": 12, + "value": "\"rpc.system\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 45113, + "length": 13, + "value": "\"rpc.service\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 45738, + "length": 12, + "value": "\"rpc.method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 46091, + "length": 16, + "value": "\"aws.request_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 46369, + "length": 26, + "value": "\"aws.dynamodb.table_names\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 47122, + "length": 32, + "value": "\"aws.dynamodb.consumed_capacity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 47759, + "length": 38, + "value": "\"aws.dynamodb.item_collection_metrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 48126, + "length": 40, + "value": "\"aws.dynamodb.provisioned_read_capacity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 48499, + "length": 41, + "value": "\"aws.dynamodb.provisioned_write_capacity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 48694, + "length": 30, + "value": "\"aws.dynamodb.consistent_read\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49119, + "length": 25, + "value": "\"aws.dynamodb.projection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49346, + "length": 20, + "value": "\"aws.dynamodb.limit\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49650, + "length": 32, + "value": "\"aws.dynamodb.attributes_to_get\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49917, + "length": 25, + "value": "\"aws.dynamodb.index_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 50214, + "length": 21, + "value": "\"aws.dynamodb.select\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 50778, + "length": 39, + "value": "\"aws.dynamodb.global_secondary_indexes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 51338, + "length": 38, + "value": "\"aws.dynamodb.local_secondary_indexes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 51699, + "length": 36, + "value": "\"aws.dynamodb.exclusive_start_table\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 51967, + "length": 26, + "value": "\"aws.dynamodb.table_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52146, + "length": 27, + "value": "\"aws.dynamodb.scan_forward\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52381, + "length": 22, + "value": "\"aws.dynamodb.segment\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52630, + "length": 29, + "value": "\"aws.dynamodb.total_segments\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52862, + "length": 20, + "value": "\"aws.dynamodb.count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 53106, + "length": 28, + "value": "\"aws.dynamodb.scanned_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 53465, + "length": 36, + "value": "\"aws.dynamodb.attribute_definitions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 54075, + "length": 45, + "value": "\"aws.dynamodb.global_secondary_index_updates\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 54695, + "length": 15, + "value": "\"aws.s3.bucket\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 56595, + "length": 12, + "value": "\"aws.s3.key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 57367, + "length": 20, + "value": "\"aws.s3.copy_source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 58469, + "length": 18, + "value": "\"aws.s3.upload_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 59165, + "length": 15, + "value": "\"aws.s3.delete\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 59944, + "length": 20, + "value": "\"aws.s3.part_number\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 60192, + "length": 24, + "value": "\"graphql.operation.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 60652, + "length": 24, + "value": "\"graphql.operation.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 60998, + "length": 18, + "value": "\"graphql.document\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 61508, + "length": 28, + "value": "\"messaging.destination.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 61999, + "length": 23, + "value": "\"messaging.source.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 62616, + "length": 32, + "value": "\"messaging.destination.template\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 62874, + "length": 33, + "value": "\"messaging.destination.temporary\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 63123, + "length": 33, + "value": "\"messaging.destination.anonymous\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 63720, + "length": 27, + "value": "\"messaging.source.template\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 63963, + "length": 28, + "value": "\"messaging.source.temporary\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 64197, + "length": 28, + "value": "\"messaging.source.anonymous\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 64724, + "length": 23, + "value": "\"messaging.consumer.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 64992, + "length": 44, + "value": "\"messaging.rabbitmq.destination.routing_key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 65642, + "length": 29, + "value": "\"messaging.kafka.message.key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 65972, + "length": 32, + "value": "\"messaging.kafka.consumer.group\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 66259, + "length": 27, + "value": "\"messaging.kafka.client_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 66513, + "length": 39, + "value": "\"messaging.kafka.destination.partition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 66775, + "length": 34, + "value": "\"messaging.kafka.source.partition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67050, + "length": 32, + "value": "\"messaging.kafka.message.offset\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67242, + "length": 35, + "value": "\"messaging.kafka.message.tombstone\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67557, + "length": 30, + "value": "\"messaging.rocketmq.namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67914, + "length": 33, + "value": "\"messaging.rocketmq.client_group\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 68189, + "length": 30, + "value": "\"messaging.rocketmq.client_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 68532, + "length": 47, + "value": "\"messaging.rocketmq.message.delivery_timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 68861, + "length": 45, + "value": "\"messaging.rocketmq.message.delay_time_level\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 69257, + "length": 34, + "value": "\"messaging.rocketmq.message.group\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 69539, + "length": 33, + "value": "\"messaging.rocketmq.message.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 69815, + "length": 32, + "value": "\"messaging.rocketmq.message.tag\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 70151, + "length": 33, + "value": "\"messaging.rocketmq.message.keys\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 70497, + "length": 38, + "value": "\"messaging.rocketmq.consumption_model\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 70839, + "length": 22, + "value": "\"rpc.grpc.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 71206, + "length": 21, + "value": "\"rpc.jsonrpc.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 71753, + "length": 24, + "value": "\"rpc.jsonrpc.request_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72045, + "length": 24, + "value": "\"rpc.jsonrpc.error_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72387, + "length": 27, + "value": "\"rpc.jsonrpc.error_message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72638, + "length": 14, + "value": "\"message.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72956, + "length": 12, + "value": "\"message.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 73105, + "length": 25, + "value": "\"message.compressed_size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 73271, + "length": 27, + "value": "\"message.uncompressed_size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 73641, + "length": 28, + "value": "\"rpc.connect_rpc.error_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 74924, + "length": 19, + "value": "\"exception.escaped\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 75370, + "length": 11, + "value": "\"exception\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 75677, + "length": 9, + "value": "\"browser\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 75797, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 75912, + "length": 5, + "value": "\"k8s\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 76394, + "length": 10, + "value": "\"child_of\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 76540, + "length": 14, + "value": "\"follows_from\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 76394, + "length": 10, + "value": "\"child_of\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 76540, + "length": 14, + "value": "\"follows_from\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 76937, + "length": 11, + "value": "\"other_sql\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77052, + "length": 7, + "value": "\"mssql\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77178, + "length": 14, + "value": "\"mssqlcompact\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77281, + "length": 7, + "value": "\"mysql\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77388, + "length": 8, + "value": "\"oracle\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77485, + "length": 5, + "value": "\"db2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77589, + "length": 12, + "value": "\"postgresql\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77703, + "length": 10, + "value": "\"redshift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77807, + "length": 6, + "value": "\"hive\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77912, + "length": 12, + "value": "\"cloudscape\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78026, + "length": 8, + "value": "\"hsqldb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78138, + "length": 10, + "value": "\"progress\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78241, + "length": 7, + "value": "\"maxdb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78341, + "length": 8, + "value": "\"hanadb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78440, + "length": 8, + "value": "\"ingres\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78543, + "length": 10, + "value": "\"firstsql\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78647, + "length": 5, + "value": "\"edb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78755, + "length": 7, + "value": "\"cache\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78881, + "length": 8, + "value": "\"adabas\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78984, + "length": 10, + "value": "\"firebird\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79090, + "length": 7, + "value": "\"derby\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79194, + "length": 11, + "value": "\"filemaker\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79300, + "length": 10, + "value": "\"informix\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79407, + "length": 11, + "value": "\"instantdb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79515, + "length": 11, + "value": "\"interbase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79619, + "length": 9, + "value": "\"mariadb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79721, + "length": 9, + "value": "\"netezza\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79832, + "length": 11, + "value": "\"pervasive\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79940, + "length": 11, + "value": "\"pointbase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80042, + "length": 8, + "value": "\"sqlite\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80141, + "length": 8, + "value": "\"sybase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80244, + "length": 10, + "value": "\"teradata\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80347, + "length": 9, + "value": "\"vertica\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80439, + "length": 4, + "value": "\"h2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80546, + "length": 12, + "value": "\"coldfusion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80662, + "length": 11, + "value": "\"cassandra\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80769, + "length": 7, + "value": "\"hbase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80869, + "length": 9, + "value": "\"mongodb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80967, + "length": 7, + "value": "\"redis\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81071, + "length": 11, + "value": "\"couchbase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81175, + "length": 9, + "value": "\"couchdb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81296, + "length": 10, + "value": "\"cosmosdb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81408, + "length": 10, + "value": "\"dynamodb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81507, + "length": 7, + "value": "\"neo4j\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81610, + "length": 7, + "value": "\"geode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81722, + "length": 15, + "value": "\"elasticsearch\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81834, + "length": 11, + "value": "\"memcached\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81946, + "length": 13, + "value": "\"cockroachdb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 82058, + "length": 12, + "value": "\"opensearch\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 82169, + "length": 12, + "value": "\"clickhouse\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 82280, + "length": 9, + "value": "\"spanner\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 82378, + "length": 7, + "value": "\"trino\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 82947, + "length": 6, + "value": "\"inet\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 83054, + "length": 7, + "value": "\"inet6\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 83172, + "length": 6, + "value": "\"unix\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 83651, + "length": 8, + "value": "\"ip_tcp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 83753, + "length": 8, + "value": "\"ip_udp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 83887, + "length": 6, + "value": "\"pipe\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84006, + "length": 8, + "value": "\"inproc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84131, + "length": 7, + "value": "\"other\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84708, + "length": 5, + "value": "\"all\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84785, + "length": 13, + "value": "\"each_quorum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84860, + "length": 8, + "value": "\"quorum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84942, + "length": 14, + "value": "\"local_quorum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85012, + "length": 5, + "value": "\"one\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85073, + "length": 5, + "value": "\"two\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85138, + "length": 7, + "value": "\"three\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85213, + "length": 11, + "value": "\"local_one\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85280, + "length": 5, + "value": "\"any\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85347, + "length": 8, + "value": "\"serial\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85429, + "length": 14, + "value": "\"local_serial\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84708, + "length": 5, + "value": "\"all\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84785, + "length": 13, + "value": "\"each_quorum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84860, + "length": 8, + "value": "\"quorum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84942, + "length": 14, + "value": "\"local_quorum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85012, + "length": 5, + "value": "\"one\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85073, + "length": 5, + "value": "\"two\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85138, + "length": 7, + "value": "\"three\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85213, + "length": 11, + "value": "\"local_one\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85280, + "length": 5, + "value": "\"any\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85347, + "length": 8, + "value": "\"serial\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85429, + "length": 14, + "value": "\"local_serial\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85729, + "length": 9, + "value": "\"Invalid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85844, + "length": 8, + "value": "\"Create\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85956, + "length": 7, + "value": "\"Patch\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86065, + "length": 6, + "value": "\"Read\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86182, + "length": 10, + "value": "\"ReadFeed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86298, + "length": 8, + "value": "\"Delete\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86414, + "length": 9, + "value": "\"Replace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86531, + "length": 9, + "value": "\"Execute\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86644, + "length": 7, + "value": "\"Query\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86753, + "length": 6, + "value": "\"Head\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86870, + "length": 10, + "value": "\"HeadFeed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86986, + "length": 8, + "value": "\"Upsert\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 87098, + "length": 7, + "value": "\"Batch\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 87218, + "length": 11, + "value": "\"QueryPlan\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 87358, + "length": 19, + "value": "\"ExecuteJavaScript\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 87840, + "length": 9, + "value": "\"gateway\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 87922, + "length": 8, + "value": "\"direct\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 87840, + "length": 9, + "value": "\"gateway\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 87922, + "length": 8, + "value": "\"direct\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88289, + "length": 4, + "value": "\"OK\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88379, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88289, + "length": 4, + "value": "\"OK\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88379, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88700, + "length": 12, + "value": "\"datasource\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88813, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88952, + "length": 8, + "value": "\"pubsub\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 89063, + "length": 7, + "value": "\"timer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 89152, + "length": 7, + "value": "\"other\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88700, + "length": 12, + "value": "\"datasource\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88813, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88952, + "length": 8, + "value": "\"pubsub\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 89063, + "length": 7, + "value": "\"timer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 89152, + "length": 7, + "value": "\"other\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 89502, + "length": 8, + "value": "\"insert\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 89632, + "length": 6, + "value": "\"edit\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 89761, + "length": 8, + "value": "\"delete\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 90344, + "length": 9, + "value": "\"publish\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 90456, + "length": 9, + "value": "\"receive\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 90568, + "length": 9, + "value": "\"process\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 91088, + "length": 15, + "value": "\"alibaba_cloud\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 91215, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 91330, + "length": 7, + "value": "\"azure\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 91451, + "length": 5, + "value": "\"gcp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 91571, + "length": 15, + "value": "\"tencent_cloud\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 92105, + "length": 6, + "value": "\"wifi\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 92213, + "length": 7, + "value": "\"wired\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 92320, + "length": 6, + "value": "\"cell\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 92440, + "length": 13, + "value": "\"unavailable\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 92559, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 93211, + "length": 6, + "value": "\"gprs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 93320, + "length": 6, + "value": "\"edge\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 93429, + "length": 6, + "value": "\"umts\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 93538, + "length": 6, + "value": "\"cdma\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 93655, + "length": 8, + "value": "\"evdo_0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 93774, + "length": 8, + "value": "\"evdo_a\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 93904, + "length": 16, + "value": "\"cdma2000_1xrtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94025, + "length": 7, + "value": "\"hsdpa\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94137, + "length": 7, + "value": "\"hsupa\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94247, + "length": 6, + "value": "\"hspa\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94356, + "length": 6, + "value": "\"iden\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94473, + "length": 8, + "value": "\"evdo_b\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94582, + "length": 5, + "value": "\"lte\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94692, + "length": 7, + "value": "\"ehrpd\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94804, + "length": 7, + "value": "\"hspap\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94912, + "length": 5, + "value": "\"gsm\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 95027, + "length": 10, + "value": "\"td_scdma\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 95142, + "length": 7, + "value": "\"iwlan\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 95263, + "length": 4, + "value": "\"nr\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 95402, + "length": 7, + "value": "\"nrnsa\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 95515, + "length": 8, + "value": "\"lte_ca\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 95964, + "length": 6, + "value": "\"grpc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96065, + "length": 10, + "value": "\"java_rmi\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96172, + "length": 12, + "value": "\"dotnet_wcf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96287, + "length": 14, + "value": "\"apache_dubbo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96402, + "length": 13, + "value": "\"connect_rpc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96861, + "length": 7, + "value": "\"query\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96942, + "length": 10, + "value": "\"mutation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97034, + "length": 14, + "value": "\"subscription\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96861, + "length": 7, + "value": "\"query\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96942, + "length": 10, + "value": "\"mutation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97034, + "length": 14, + "value": "\"subscription\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97280, + "length": 8, + "value": "\"normal\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97354, + "length": 6, + "value": "\"fifo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97428, + "length": 7, + "value": "\"delay\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97515, + "length": 13, + "value": "\"transaction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97280, + "length": 8, + "value": "\"normal\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97354, + "length": 6, + "value": "\"fifo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97428, + "length": 7, + "value": "\"delay\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97515, + "length": 13, + "value": "\"transaction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97838, + "length": 12, + "value": "\"clustering\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97942, + "length": 14, + "value": "\"broadcasting\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97838, + "length": 12, + "value": "\"clustering\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97942, + "length": 14, + "value": "\"broadcasting\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98239, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98308, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98373, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98456, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98541, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98610, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98689, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98774, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98861, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98950, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99015, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99091, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99169, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99239, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99313, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99383, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99465, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98239, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98308, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98373, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98456, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98541, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98610, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98689, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98774, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98861, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98950, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99015, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99091, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99169, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99239, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99313, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99383, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99465, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98239, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98308, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98373, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98456, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98541, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98610, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98689, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98774, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98861, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98950, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99015, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99091, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99169, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99239, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99313, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99383, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99465, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 99680, + "length": 6, + "value": "\"SENT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 99752, + "length": 10, + "value": "\"RECEIVED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 99680, + "length": 6, + "value": "\"SENT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 99752, + "length": 10, + "value": "\"RECEIVED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100093, + "length": 11, + "value": "\"cancelled\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100168, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100259, + "length": 18, + "value": "\"invalid_argument\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100361, + "length": 19, + "value": "\"deadline_exceeded\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100448, + "length": 11, + "value": "\"not_found\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100537, + "length": 16, + "value": "\"already_exists\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100637, + "length": 19, + "value": "\"permission_denied\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100742, + "length": 20, + "value": "\"resource_exhausted\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100850, + "length": 21, + "value": "\"failed_precondition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100935, + "length": 9, + "value": "\"aborted\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101018, + "length": 14, + "value": "\"out_of_range\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101108, + "length": 15, + "value": "\"unimplemented\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101191, + "length": 10, + "value": "\"internal\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101273, + "length": 13, + "value": "\"unavailable\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101354, + "length": 11, + "value": "\"data_loss\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101445, + "length": 17, + "value": "\"unauthenticated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100093, + "length": 11, + "value": "\"cancelled\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100168, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100259, + "length": 18, + "value": "\"invalid_argument\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100361, + "length": 19, + "value": "\"deadline_exceeded\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100448, + "length": 11, + "value": "\"not_found\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100537, + "length": 16, + "value": "\"already_exists\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100637, + "length": 19, + "value": "\"permission_denied\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100742, + "length": 20, + "value": "\"resource_exhausted\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100850, + "length": 21, + "value": "\"failed_precondition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100935, + "length": 9, + "value": "\"aborted\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101018, + "length": 14, + "value": "\"out_of_range\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101108, + "length": 15, + "value": "\"unimplemented\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101191, + "length": 10, + "value": "\"internal\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101273, + "length": 13, + "value": "\"unavailable\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101354, + "length": 11, + "value": "\"data_loss\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101445, + "length": 17, + "value": "\"unauthenticated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 611, + "length": 16, + "value": "\"exception.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 915, + "length": 19, + "value": "\"exception.message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 1515, + "length": 22, + "value": "\"exception.stacktrace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 1789, + "length": 13, + "value": "\"http.method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 2033, + "length": 18, + "value": "\"http.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 2339, + "length": 19, + "value": "\"net.protocol.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 2941, + "length": 22, + "value": "\"net.protocol.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 3596, + "length": 15, + "value": "\"net.peer.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 4160, + "length": 15, + "value": "\"net.peer.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 4417, + "length": 13, + "value": "\"http.scheme\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 5079, + "length": 12, + "value": "\"http.route\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 5873, + "length": 15, + "value": "\"net.host.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 6520, + "length": 15, + "value": "\"net.host.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 6764, + "length": 12, + "value": "\"event.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 7119, + "length": 14, + "value": "\"event.domain\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 7738, + "length": 16, + "value": "\"log.record.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 7969, + "length": 18, + "value": "\"feature_flag.key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 8247, + "length": 28, + "value": "\"feature_flag.provider_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 9171, + "length": 22, + "value": "\"feature_flag.variant\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 9675, + "length": 24, + "value": "\"aws.lambda.invoked_arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 10068, + "length": 22, + "value": "\"cloudevents.event_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 10566, + "length": 26, + "value": "\"cloudevents.event_source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 10933, + "length": 32, + "value": "\"cloudevents.event_spec_version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 11417, + "length": 24, + "value": "\"cloudevents.event_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 11799, + "length": 27, + "value": "\"cloudevents.event_subject\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 12133, + "length": 22, + "value": "\"opentracing.ref_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 12450, + "length": 11, + "value": "\"db.system\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 12784, + "length": 22, + "value": "\"db.connection_string\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 13045, + "length": 9, + "value": "\"db.user\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 13499, + "length": 26, + "value": "\"db.jdbc.driver_classname\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 14192, + "length": 9, + "value": "\"db.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 14476, + "length": 14, + "value": "\"db.statement\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 15284, + "length": 14, + "value": "\"db.operation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 15689, + "length": 20, + "value": "\"net.sock.peer.addr\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 15893, + "length": 20, + "value": "\"net.sock.peer.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 16340, + "length": 17, + "value": "\"net.sock.family\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 16563, + "length": 20, + "value": "\"net.sock.peer.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 16807, + "length": 15, + "value": "\"net.transport\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 17354, + "length": 24, + "value": "\"db.mssql.instance_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 17621, + "length": 24, + "value": "\"db.cassandra.page_size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 18037, + "length": 32, + "value": "\"db.cassandra.consistency_level\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 18727, + "length": 20, + "value": "\"db.cassandra.table\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 18885, + "length": 26, + "value": "\"db.cassandra.idempotence\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 19277, + "length": 42, + "value": "\"db.cassandra.speculative_execution_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 19582, + "length": 29, + "value": "\"db.cassandra.coordinator.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 19856, + "length": 29, + "value": "\"db.cassandra.coordinator.dc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 20314, + "length": 25, + "value": "\"db.redis.database_index\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 20641, + "length": 23, + "value": "\"db.mongodb.collection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 21275, + "length": 14, + "value": "\"db.sql.table\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 21529, + "length": 23, + "value": "\"db.cosmosdb.client_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 21793, + "length": 28, + "value": "\"db.cosmosdb.operation_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 22963, + "length": 21, + "value": "\"user_agent.original\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23234, + "length": 29, + "value": "\"db.cosmosdb.connection_mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23470, + "length": 23, + "value": "\"db.cosmosdb.container\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23629, + "length": 36, + "value": "\"db.cosmosdb.request_content_length\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23894, + "length": 25, + "value": "\"db.cosmosdb.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 24163, + "length": 29, + "value": "\"db.cosmosdb.sub_status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 24444, + "length": 28, + "value": "\"db.cosmosdb.request_charge\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 24748, + "length": 18, + "value": "\"otel.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 25024, + "length": 25, + "value": "\"otel.status_description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 25799, + "length": 14, + "value": "\"faas.trigger\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 26069, + "length": 20, + "value": "\"faas.invocation_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 28331, + "length": 19, + "value": "\"cloud.resource_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 28772, + "length": 26, + "value": "\"faas.document.collection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 29076, + "length": 25, + "value": "\"faas.document.operation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 29481, + "length": 20, + "value": "\"faas.document.time\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 29873, + "length": 20, + "value": "\"faas.document.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 30139, + "length": 13, + "value": "\"http.target\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 31188, + "length": 16, + "value": "\"http.client_ip\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 31436, + "length": 20, + "value": "\"net.sock.host.addr\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 31641, + "length": 20, + "value": "\"net.sock.host.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 32058, + "length": 18, + "value": "\"messaging.system\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 32470, + "length": 21, + "value": "\"messaging.operation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 33192, + "length": 31, + "value": "\"messaging.batch.message_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 33521, + "length": 22, + "value": "\"messaging.message.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 33910, + "length": 35, + "value": "\"messaging.message.conversation_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 34300, + "length": 38, + "value": "\"messaging.message.payload_size_bytes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 34603, + "length": 49, + "value": "\"messaging.message.payload_compressed_size_bytes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35009, + "length": 11, + "value": "\"faas.time\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35324, + "length": 11, + "value": "\"faas.cron\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35523, + "length": 16, + "value": "\"faas.coldstart\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35840, + "length": 19, + "value": "\"faas.invoked_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 36204, + "length": 23, + "value": "\"faas.invoked_provider\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 36544, + "length": 21, + "value": "\"faas.invoked_region\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 36919, + "length": 26, + "value": "\"net.host.connection.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 37425, + "length": 29, + "value": "\"net.host.connection.subtype\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 37662, + "length": 23, + "value": "\"net.host.carrier.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 37889, + "length": 22, + "value": "\"net.host.carrier.mcc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 38115, + "length": 22, + "value": "\"net.host.carrier.mnc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 38399, + "length": 22, + "value": "\"net.host.carrier.icc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 38784, + "length": 14, + "value": "\"peer.service\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 39135, + "length": 12, + "value": "\"enduser.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 39421, + "length": 14, + "value": "\"enduser.role\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 39994, + "length": 15, + "value": "\"enduser.scope\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 40209, + "length": 11, + "value": "\"thread.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 40399, + "length": 13, + "value": "\"thread.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 40675, + "length": 15, + "value": "\"code.function\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 41082, + "length": 16, + "value": "\"code.namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 41423, + "length": 15, + "value": "\"code.filepath\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 41715, + "length": 13, + "value": "\"code.lineno\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 42007, + "length": 13, + "value": "\"code.column\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 42512, + "length": 29, + "value": "\"http.request_content_length\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 43036, + "length": 30, + "value": "\"http.response_content_length\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 43649, + "length": 10, + "value": "\"http.url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 44149, + "length": 19, + "value": "\"http.resend_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 44435, + "length": 12, + "value": "\"rpc.system\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 45113, + "length": 13, + "value": "\"rpc.service\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 45738, + "length": 12, + "value": "\"rpc.method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 46091, + "length": 16, + "value": "\"aws.request_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 46369, + "length": 26, + "value": "\"aws.dynamodb.table_names\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 47122, + "length": 32, + "value": "\"aws.dynamodb.consumed_capacity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 47759, + "length": 38, + "value": "\"aws.dynamodb.item_collection_metrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 48126, + "length": 40, + "value": "\"aws.dynamodb.provisioned_read_capacity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 48499, + "length": 41, + "value": "\"aws.dynamodb.provisioned_write_capacity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 48694, + "length": 30, + "value": "\"aws.dynamodb.consistent_read\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49119, + "length": 25, + "value": "\"aws.dynamodb.projection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49346, + "length": 20, + "value": "\"aws.dynamodb.limit\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49650, + "length": 32, + "value": "\"aws.dynamodb.attributes_to_get\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49917, + "length": 25, + "value": "\"aws.dynamodb.index_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 50214, + "length": 21, + "value": "\"aws.dynamodb.select\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 50778, + "length": 39, + "value": "\"aws.dynamodb.global_secondary_indexes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 51338, + "length": 38, + "value": "\"aws.dynamodb.local_secondary_indexes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 51699, + "length": 36, + "value": "\"aws.dynamodb.exclusive_start_table\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 51967, + "length": 26, + "value": "\"aws.dynamodb.table_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52146, + "length": 27, + "value": "\"aws.dynamodb.scan_forward\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52381, + "length": 22, + "value": "\"aws.dynamodb.segment\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52630, + "length": 29, + "value": "\"aws.dynamodb.total_segments\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52862, + "length": 20, + "value": "\"aws.dynamodb.count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 53106, + "length": 28, + "value": "\"aws.dynamodb.scanned_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 53465, + "length": 36, + "value": "\"aws.dynamodb.attribute_definitions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 54075, + "length": 45, + "value": "\"aws.dynamodb.global_secondary_index_updates\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 54695, + "length": 15, + "value": "\"aws.s3.bucket\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 56595, + "length": 12, + "value": "\"aws.s3.key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 57367, + "length": 20, + "value": "\"aws.s3.copy_source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 58469, + "length": 18, + "value": "\"aws.s3.upload_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 59165, + "length": 15, + "value": "\"aws.s3.delete\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 59944, + "length": 20, + "value": "\"aws.s3.part_number\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 60192, + "length": 24, + "value": "\"graphql.operation.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 60652, + "length": 24, + "value": "\"graphql.operation.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 60998, + "length": 18, + "value": "\"graphql.document\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 61508, + "length": 28, + "value": "\"messaging.destination.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 61999, + "length": 23, + "value": "\"messaging.source.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 62616, + "length": 32, + "value": "\"messaging.destination.template\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 62874, + "length": 33, + "value": "\"messaging.destination.temporary\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 63123, + "length": 33, + "value": "\"messaging.destination.anonymous\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 63720, + "length": 27, + "value": "\"messaging.source.template\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 63963, + "length": 28, + "value": "\"messaging.source.temporary\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 64197, + "length": 28, + "value": "\"messaging.source.anonymous\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 64724, + "length": 23, + "value": "\"messaging.consumer.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 64992, + "length": 44, + "value": "\"messaging.rabbitmq.destination.routing_key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 65642, + "length": 29, + "value": "\"messaging.kafka.message.key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 65972, + "length": 32, + "value": "\"messaging.kafka.consumer.group\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 66259, + "length": 27, + "value": "\"messaging.kafka.client_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 66513, + "length": 39, + "value": "\"messaging.kafka.destination.partition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 66775, + "length": 34, + "value": "\"messaging.kafka.source.partition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67050, + "length": 32, + "value": "\"messaging.kafka.message.offset\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67242, + "length": 35, + "value": "\"messaging.kafka.message.tombstone\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67557, + "length": 30, + "value": "\"messaging.rocketmq.namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67914, + "length": 33, + "value": "\"messaging.rocketmq.client_group\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 68189, + "length": 30, + "value": "\"messaging.rocketmq.client_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 68532, + "length": 47, + "value": "\"messaging.rocketmq.message.delivery_timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 68861, + "length": 45, + "value": "\"messaging.rocketmq.message.delay_time_level\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 69257, + "length": 34, + "value": "\"messaging.rocketmq.message.group\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 69539, + "length": 33, + "value": "\"messaging.rocketmq.message.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 69815, + "length": 32, + "value": "\"messaging.rocketmq.message.tag\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 70151, + "length": 33, + "value": "\"messaging.rocketmq.message.keys\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 70497, + "length": 38, + "value": "\"messaging.rocketmq.consumption_model\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 70839, + "length": 22, + "value": "\"rpc.grpc.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 71206, + "length": 21, + "value": "\"rpc.jsonrpc.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 71753, + "length": 24, + "value": "\"rpc.jsonrpc.request_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72045, + "length": 24, + "value": "\"rpc.jsonrpc.error_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72387, + "length": 27, + "value": "\"rpc.jsonrpc.error_message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72638, + "length": 14, + "value": "\"message.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72956, + "length": 12, + "value": "\"message.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 73105, + "length": 25, + "value": "\"message.compressed_size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 73271, + "length": 27, + "value": "\"message.uncompressed_size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 73641, + "length": 28, + "value": "\"rpc.connect_rpc.error_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 74924, + "length": 19, + "value": "\"exception.escaped\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 75370, + "length": 11, + "value": "\"exception\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 197, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 209, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 226, + "length": 6, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 243, + "length": 6, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 260, + "length": 5, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 276, + "length": 6, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 293, + "length": 6, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 6, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 327, + "length": 4, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 342, + "length": 5, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 358, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 374, + "length": 5, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 390, + "length": 4, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 405, + "length": 5, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 5, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 437, + "length": 5, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 453, + "length": 5, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 6, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 486, + "length": 6, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 503, + "length": 6, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 520, + "length": 5, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 536, + "length": 6, + "value": "22" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 553, + "length": 6, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 570, + "length": 6, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 685, + "length": 7, + "value": "\"TRACE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 742, + "length": 8, + "value": "\"TRACE2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 800, + "length": 8, + "value": "\"TRACE3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 858, + "length": 8, + "value": "\"TRACE4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 915, + "length": 7, + "value": "\"DEBUG\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 972, + "length": 8, + "value": "\"DEBUG2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1030, + "length": 8, + "value": "\"DEBUG3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1088, + "length": 8, + "value": "\"DEBUG4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1144, + "length": 6, + "value": "\"INFO\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1199, + "length": 7, + "value": "\"INFO2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1255, + "length": 7, + "value": "\"INFO3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1311, + "length": 7, + "value": "\"INFO4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 6, + "value": "\"WARN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1421, + "length": 7, + "value": "\"WARN2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1477, + "length": 7, + "value": "\"WARN3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1533, + "length": 7, + "value": "\"WARN4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1589, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1646, + "length": 8, + "value": "\"ERROR2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1704, + "length": 8, + "value": "\"ERROR3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1762, + "length": 8, + "value": "\"ERROR4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1819, + "length": 7, + "value": "\"FATAL\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1876, + "length": 8, + "value": "\"FATAL2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1934, + "length": 8, + "value": "\"FATAL3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1992, + "length": 8, + "value": "\"FATAL4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 197, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 209, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 226, + "length": 6, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 243, + "length": 6, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 260, + "length": 5, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 276, + "length": 6, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 293, + "length": 6, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 6, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 327, + "length": 4, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 342, + "length": 5, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 358, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 374, + "length": 5, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 390, + "length": 4, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 405, + "length": 5, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 5, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 437, + "length": 5, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 453, + "length": 5, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 6, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 486, + "length": 6, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 503, + "length": 6, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 520, + "length": 5, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 536, + "length": 6, + "value": "22" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 553, + "length": 6, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 570, + "length": 6, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 197, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 209, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 226, + "length": 6, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 243, + "length": 6, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 260, + "length": 5, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 276, + "length": 6, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 293, + "length": 6, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 6, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 327, + "length": 4, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 342, + "length": 5, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 358, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 374, + "length": 5, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 390, + "length": 4, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 405, + "length": 5, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 5, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 437, + "length": 5, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 453, + "length": 5, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 6, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 486, + "length": 6, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 503, + "length": 6, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 520, + "length": 5, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 536, + "length": 6, + "value": "22" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 553, + "length": 6, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 570, + "length": 6, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SimpleExtensionMap.swift", + "kind": "BooleanLiteral", + "offset": 2728, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SimpleExtensionMap.swift", + "kind": "BooleanLiteral", + "offset": 2785, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/SimpleSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 457, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/SimpleSpanProcessor.swift", + "kind": "StringLiteral", + "offset": 516, + "length": 38, + "value": "\"io.opentelemetry.simplespanprocessor\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/SimpleSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 590, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/SimpleSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 627, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 997, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "Dictionary", + "offset": 1095, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1226, + "length": 31, + "value": "\"wss:\/\/call-api.videosdk.live\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1260, + "length": 10, + "value": "\"?roomId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1286, + "length": 10, + "value": "\"&peerId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1328, + "length": 10, + "value": "\"&secret=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1449, + "length": 8, + "value": "\"protoo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1479, + "length": 24, + "value": "\"Sec-WebSocket-Protocol\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1774, + "length": 8, + "value": "\"wss:\/\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1791, + "length": 11, + "value": "\"\/?roomId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1818, + "length": 10, + "value": "\"&peerId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1860, + "length": 10, + "value": "\"&secret=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1895, + "length": 8, + "value": "\"&mode=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2014, + "length": 8, + "value": "\"protoo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2044, + "length": 24, + "value": "\"Sec-WebSocket-Protocol\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2772, + "length": 13, + "value": "\"displayName\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2829, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2839, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2858, + "length": 8, + "value": "\"secret\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2901, + "length": 17, + "value": "\"rtpCapabilities\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2958, + "length": 12, + "value": "\"deviceInfo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2990, + "length": 9, + "value": "\"sdkType\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3001, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3024, + "length": 12, + "value": "\"sdkVersion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3067, + "length": 10, + "value": "\"platform\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3079, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3102, + "length": 17, + "value": "\"deviceUserAgent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3143, + "length": 7, + "value": "\"model\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3152, + "length": 25, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3237, + "length": 11, + "value": "\"osVersion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 3551, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 3558, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3610, + "length": 10, + "value": "\"forceTcp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 3622, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3641, + "length": 11, + "value": "\"producing\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3677, + "length": 11, + "value": "\"consuming\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3950, + "length": 13, + "value": "\"transportId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3990, + "length": 16, + "value": "\"dtlsParameters\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 4340, + "length": 13, + "value": "\"transportId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 4380, + "length": 6, + "value": "\"kind\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 4406, + "length": 15, + "value": "\"rtpParameters\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 4459, + "length": 9, + "value": "\"appData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 4682, + "length": 12, + "value": "\"producerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "Dictionary", + "offset": 4983, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 5000, + "length": 12, + "value": "\"webhookUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 5075, + "length": 12, + "value": "\"awsDirPath\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 5156, + "length": 8, + "value": "\"config\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 5518, + "length": 9, + "value": "\"outputs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "Dictionary", + "offset": 5914, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 5987, + "length": 8, + "value": "\"config\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 6217, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 6405, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 6596, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 6790, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 6978, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 7245, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 7263, + "length": 7, + "value": "\"state\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "Dictionary", + "offset": 7637, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 7708, + "length": 7, + "value": "\"topic\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 7736, + "length": 9, + "value": "\"message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 7768, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 7959, + "length": 7, + "value": "\"topic\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 8141, + "length": 7, + "value": "\"topic\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 8469, + "length": 12, + "value": "\"consumerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 8667, + "length": 12, + "value": "\"consumerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 8930, + "length": 12, + "value": "\"consumerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 8968, + "length": 14, + "value": "\"spatialLayer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 9010, + "length": 15, + "value": "\"temporalLayer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 9294, + "length": 6, + "value": "\"mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 9535, + "length": 15, + "value": "\"participantId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 9568, + "length": 6, + "value": "\"mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 9808, + "length": 13, + "value": "\"transportId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "Dictionary", + "offset": 10101, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 10233, + "length": 8, + "value": "\"method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 10271, + "length": 8, + "value": "\"roomId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 10305, + "length": 9, + "value": "\"request\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 10316, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 10334, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 10363, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "Dictionary", + "offset": 10432, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "IntegerLiteral", + "offset": 10490, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "Dictionary", + "offset": 11070, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11129, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11158, + "length": 10, + "value": "\"response\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 11170, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11188, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 11194, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11212, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11583, + "length": 36, + "value": "\"websocket is connected: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11618, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 11647, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11813, + "length": 57, + "value": "\"websocket is disconnected: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11850, + "length": 4, + "value": "\" with code: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11869, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 11942, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12095, + "length": 10, + "value": "\"response\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12150, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12274, + "length": 8, + "value": "\"method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12482, + "length": 42, + "value": "\"unknown protoo request.method \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12523, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12535, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 12623, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 12747, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12818, + "length": 46, + "value": "\"websocket encountered an error: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12863, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12897, + "length": 41, + "value": "\"Meeting failed to connect. \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12937, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 13000, + "length": 59, + "value": "\"websocket encountered an error: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 13058, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 13092, + "length": 54, + "value": "\"Meeting failed to connect. \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 13145, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 13191, + "length": 32, + "value": "\"websocket encountered an error\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 13256, + "length": 28, + "value": "\"Meeting failed to connect.\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "StringLiteral", + "offset": 3364, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "StringLiteral", + "offset": 3550, + "length": 16, + "value": "\".SourceContext\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "IntegerLiteral", + "offset": 3623, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "StringLiteral", + "offset": 3643, + "length": 11, + "value": "\"file_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "IntegerLiteral", + "offset": 4069, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "IntegerLiteral", + "offset": 4355, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "BooleanLiteral", + "offset": 4569, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "BooleanLiteral", + "offset": 4630, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "BooleanLiteral", + "offset": 4648, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Span.swift", + "kind": "IntegerLiteral", + "offset": 4850, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Span.swift", + "kind": "IntegerLiteral", + "offset": 4858, + "length": 3, + "value": "400" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Span.swift", + "kind": "IntegerLiteral", + "offset": 4904, + "length": 3, + "value": "400" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Span.swift", + "kind": "IntegerLiteral", + "offset": 4912, + "length": 3, + "value": "600" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanBuilderSdk.swift", + "kind": "BooleanLiteral", + "offset": 411, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanBuilderSdk.swift", + "kind": "BooleanLiteral", + "offset": 487, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanBuilderSdk.swift", + "kind": "IntegerLiteral", + "offset": 944, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanBuilderSdk.swift", + "kind": "BooleanLiteral", + "offset": 1039, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanBuilderSdk.swift", + "kind": "IntegerLiteral", + "offset": 2514, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanBuilderSdk.swift", + "kind": "BooleanLiteral", + "offset": 3522, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanBuilderSdk.swift", + "kind": "BooleanLiteral", + "offset": 5380, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanContext.swift", + "kind": "BooleanLiteral", + "offset": 2021, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanContext.swift", + "kind": "BooleanLiteral", + "offset": 2940, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanContext.swift", + "kind": "StringLiteral", + "offset": 3447, + "length": 99, + "value": "\"SpanContext{traceId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanContext.swift", + "kind": "StringLiteral", + "offset": 3478, + "length": 1, + "value": "\", spanId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanContext.swift", + "kind": "StringLiteral", + "offset": 3496, + "length": 1, + "value": "\", traceFlags=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanContext.swift", + "kind": "StringLiteral", + "offset": 3522, + "length": 1, + "value": "\"}, isRemote=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanContext.swift", + "kind": "StringLiteral", + "offset": 3545, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Data\/SpanData.swift", + "kind": "BooleanLiteral", + "offset": 1806, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Data\/SpanData.swift", + "kind": "BooleanLiteral", + "offset": 1921, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Data\/SpanData.swift", + "kind": "IntegerLiteral", + "offset": 2279, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Data\/SpanData.swift", + "kind": "IntegerLiteral", + "offset": 2611, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Data\/SpanData.swift", + "kind": "IntegerLiteral", + "offset": 2958, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 352, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 396, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 1796, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 1826, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 2391, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 2838, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 3296, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 5065, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 5197, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 5229, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 5310, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "StringLiteral", + "offset": 5525, + "length": 9, + "value": "\"%016llx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "StringLiteral", + "offset": 5982, + "length": 29, + "value": "\"SpanId{spanId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "StringLiteral", + "offset": 6009, + "length": 1, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 545, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 664, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 795, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 923, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1156, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1174, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1369, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1387, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1580, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1598, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1817, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1835, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 2052, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 2070, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "IntegerLiteral", + "offset": 1200, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "StringLiteral", + "offset": 1308, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "IntegerLiteral", + "offset": 1459, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "IntegerLiteral", + "offset": 1561, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "IntegerLiteral", + "offset": 1662, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "IntegerLiteral", + "offset": 1762, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "IntegerLiteral", + "offset": 1863, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "IntegerLiteral", + "offset": 2771, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "BooleanLiteral", + "offset": 3039, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/StableMeterProviderSdk.swift", + "kind": "StringLiteral", + "offset": 249, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/StableMeterSharedState.swift", + "kind": "IntegerLiteral", + "offset": 2320, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/StableMeterSharedState.swift", + "kind": "IntegerLiteral", + "offset": 2362, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 800, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 817, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 827, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 4738, + "length": 19, + "value": "\"VideoSDKRTC.StableHistogramData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 5065, + "length": 30, + "value": "\"VideoSDKRTC.StableExponentialHistogramData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 5394, + "length": 15, + "value": "\"VideoSDKRTC.StableGaugeData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 5708, + "length": 13, + "value": "\"VideoSDKRTC.StableSumData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 6020, + "length": 17, + "value": "\"VideoSDKRTC.StableSummaryData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/StableObservableMeasurement.swift", + "kind": "IntegerLiteral", + "offset": 485, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/StableObservableMeasurement.swift", + "kind": "IntegerLiteral", + "offset": 517, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exporter\/StablePeriodicMeterReaderBuilder.swift", + "kind": "FloatLiteral", + "offset": 277, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exporter\/StablePeriodicMetricReaderSdk.swift", + "kind": "StringLiteral", + "offset": 300, + "length": 63, + "value": "\"org.opentelemetry.StablePeriodicMetricReaderSdk.scheduleQueue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exporter\/StablePeriodicMetricReaderSdk.swift", + "kind": "FloatLiteral", + "offset": 550, + "length": 4, + "value": "60.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/StableViewRegistry.swift", + "kind": "StringLiteral", + "offset": 545, + "length": 4, + "value": "\".*\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/StableViewRegistry.swift", + "kind": "BooleanLiteral", + "offset": 1085, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/StableViewRegistry.swift", + "kind": "BooleanLiteral", + "offset": 1275, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/StableViewRegistry.swift", + "kind": "BooleanLiteral", + "offset": 1405, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/StableViewRegistry.swift", + "kind": "BooleanLiteral", + "offset": 1548, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/StableViewRegistry.swift", + "kind": "BooleanLiteral", + "offset": 1693, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/StableViewRegistry.swift", + "kind": "BooleanLiteral", + "offset": 1733, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "BooleanLiteral", + "offset": 767, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "BooleanLiteral", + "offset": 797, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 907, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 960, + "length": 7, + "value": "\"unset\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 1032, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "IntegerLiteral", + "offset": 1151, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "IntegerLiteral", + "offset": 1201, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "IntegerLiteral", + "offset": 1267, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 1443, + "length": 56, + "value": "\"Status{statusCode=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 1469, + "length": 1, + "value": "\", description=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 1, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 1536, + "length": 28, + "value": "\"Status{statusCode=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 1562, + "length": 1, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "IntegerLiteral", + "offset": 2126, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 2268, + "length": 45, + "value": "\"Invalid number of keys found, expected one.\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/StringUtils.swift", + "kind": "BooleanLiteral", + "offset": 536, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/StringUtils.swift", + "kind": "BooleanLiteral", + "offset": 581, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/StringUtils.swift", + "kind": "StringLiteral", + "offset": 704, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/StringUtils.swift", + "kind": "StringLiteral", + "offset": 734, + "length": 3, + "value": "\"~\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/StringUtils.swift", + "kind": "StringLiteral", + "offset": 984, + "length": 25, + "value": "\"[aA-zZ][aA-zZ0-9_\\-.]*\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/StringUtils.swift", + "kind": "BooleanLiteral", + "offset": 1093, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/StringUtils.swift", + "kind": "BooleanLiteral", + "offset": 1123, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 2874, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 3025, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "Dictionary", + "offset": 4032, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 5118, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 5514, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "Array", + "offset": 7089, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 7604, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 7738, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 7754, + "length": 12, + "value": "\"NULL_VALUE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 7936, + "length": 9, + "value": "\".Struct\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 8002, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 8018, + "length": 8, + "value": "\"fields\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 8441, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 8849, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 9045, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 9106, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 9124, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 9295, + "length": 8, + "value": "\".Value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 9360, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 9380, + "length": 12, + "value": "\"null_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 9399, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 9419, + "length": 14, + "value": "\"number_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 9440, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 9460, + "length": 14, + "value": "\"string_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 9481, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 9501, + "length": 12, + "value": "\"bool_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 9520, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 9540, + "length": 14, + "value": "\"struct_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 9561, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 9581, + "length": 12, + "value": "\"list_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 10008, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 10273, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 10523, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 10773, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 11017, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 11093, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 11162, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 11449, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 11528, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 11597, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 12461, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 12649, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 12837, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 13019, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 13208, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 13393, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 13611, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 13672, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 13690, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 13865, + "length": 12, + "value": "\".ListValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 13934, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 13950, + "length": 8, + "value": "\"values\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 14373, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 14655, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 14857, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 14918, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 14936, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/SumAggregation.swift", + "kind": "BooleanLiteral", + "offset": 438, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/SumAggregation.swift", + "kind": "BooleanLiteral", + "offset": 479, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/SumAggregation.swift", + "kind": "IntegerLiteral", + "offset": 959, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/SumAggregation.swift", + "kind": "IntegerLiteral", + "offset": 1288, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/Internal\/SummaryPointData.swift", + "kind": "StringLiteral", + "offset": 117, + "length": 16, + "value": "\"VideoSDKRTC.SummaryPointData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/SwiftExtensions.swift", + "kind": "IntegerLiteral", + "offset": 281, + "length": 5, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/SwiftExtensions.swift", + "kind": "IntegerLiteral", + "offset": 428, + "length": 9, + "value": "1000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/SwiftExtensions.swift", + "kind": "IntegerLiteral", + "offset": 653, + "length": 13, + "value": "1000000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/SwiftExtensions.swift", + "kind": "IntegerLiteral", + "offset": 840, + "length": 5, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/SwiftExtensions.swift", + "kind": "IntegerLiteral", + "offset": 953, + "length": 9, + "value": "1000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/SwiftExtensions.swift", + "kind": "IntegerLiteral", + "offset": 1067, + "length": 13, + "value": "1000000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "IntegerLiteral", + "offset": 2664, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "BooleanLiteral", + "offset": 3913, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4232, + "length": 157, + "value": "\"max cardinality (\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4291, + "length": 1, + "value": "\") reached for metric store. Discarding recorded value \"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4355, + "length": 1, + "value": "\"\" with attributes: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4388, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4773, + "length": 157, + "value": "\"max cardinality (\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4832, + "length": 1, + "value": "\") reached for metric store. Discarding recorded value \"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4896, + "length": 1, + "value": "\"\" with attributes: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4929, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "IntegerLiteral", + "offset": 895, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "IntegerLiteral", + "offset": 2462, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "IntegerLiteral", + "offset": 2799, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "IntegerLiteral", + "offset": 3044, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 3730, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 3753, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 3920, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 4733, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 4756, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 4923, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 6070, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 6093, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 6260, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 7403, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 7426, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 7593, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 8700, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 8723, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 8890, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 9997, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 10020, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 10187, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13388, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13411, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13578, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 14399, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 14422, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 14589, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15413, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15436, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15603, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17269, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17292, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17459, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "IntegerLiteral", + "offset": 18420, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18704, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18727, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18894, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "IntegerLiteral", + "offset": 19648, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "IntegerLiteral", + "offset": 20371, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 21097, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 21533, + "length": 5, + "value": "\"key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 21540, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 21644, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 21653, + "length": 3, + "value": "\"2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 22302, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 22325, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 22492, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 23135, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 23571, + "length": 5, + "value": "\"key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 23578, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 23682, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 23691, + "length": 3, + "value": "\"2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 24352, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 24375, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 24542, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 25159, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 25595, + "length": 5, + "value": "\"key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 25602, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 25706, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 25715, + "length": 3, + "value": "\"2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 26353, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 26376, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 26543, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecodingOptions.swift", + "kind": "IntegerLiteral", + "offset": 920, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 597, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 640, + "length": 3, + "value": "\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 683, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 726, + "length": 3, + "value": "\"-\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 773, + "length": 4, + "value": "\"\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 823, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 866, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 920, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 975, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 1030, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 1086, + "length": 3, + "value": "\"]\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 1131, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 1176, + "length": 3, + "value": "\"A\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 1204, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "Array", + "offset": 1426, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 2998, + "length": 4, + "value": "\": \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 6, + "value": "\" {\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 3484, + "length": 5, + "value": "\"}\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 3646, + "length": 4, + "value": "\", \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 4072, + "length": 5, + "value": "\"nan\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4138, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 6, + "value": "\"-inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 4241, + "length": 5, + "value": "\"inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 4467, + "length": 5, + "value": "\"nan\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4533, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 4572, + "length": 6, + "value": "\"-inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 4636, + "length": 5, + "value": "\"inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4830, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4875, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4911, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4968, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4975, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5010, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5066, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5072, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5133, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5215, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5440, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5813, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 5848, + "length": 4, + "value": "\"0x\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5913, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5933, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5990, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6022, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6061, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6283, + "length": 6, + "value": "\"true\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6292, + "length": 7, + "value": "\"false\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6522, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6560, + "length": 5, + "value": "\"\\b\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6584, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6622, + "length": 5, + "value": "\"\\t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6646, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6685, + "length": 5, + "value": "\"\\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6709, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6748, + "length": 5, + "value": "\"\\v\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6772, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6811, + "length": 5, + "value": "\"\\f\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6835, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6874, + "length": 5, + "value": "\"\\r\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6898, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6937, + "length": 6, + "value": "\"\\\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6962, + "length": 2, + "value": "92" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 7001, + "length": 6, + "value": "\"\\\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7026, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7030, + "length": 2, + "value": "31" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7034, + "length": 3, + "value": "127" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7174, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7235, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7239, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7299, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7320, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7324, + "length": 3, + "value": "127" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7420, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7427, + "length": 5, + "value": "0x7ff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7462, + "length": 4, + "value": "0xc0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7485, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7518, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7541, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7563, + "length": 5, + "value": "0x800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7571, + "length": 6, + "value": "0xffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7607, + "length": 4, + "value": "0xe0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7651, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7684, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7729, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7734, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7769, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7812, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7868, + "length": 4, + "value": "0xf0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7912, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7945, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7990, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7996, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8031, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8076, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8081, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8116, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8159, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8438, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8463, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8593, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 8631, + "length": 5, + "value": "\"\\b\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8657, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 8695, + "length": 5, + "value": "\"\\t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8721, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 8760, + "length": 5, + "value": "\"\\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8786, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 8825, + "length": 5, + "value": "\"\\v\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8851, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 8890, + "length": 5, + "value": "\"\\f\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8916, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 8955, + "length": 5, + "value": "\"\\r\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8981, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 9020, + "length": 6, + "value": "\"\\\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 9047, + "length": 2, + "value": "92" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 9086, + "length": 6, + "value": "\"\\\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 9113, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 9118, + "length": 3, + "value": "126" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 9329, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 9384, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 9388, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 9442, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingOptions.swift", + "kind": "BooleanLiteral", + "offset": 734, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "Dictionary", + "offset": 617, + "length": 22, + "value": "[(1, \"key\"), (2, \"value\")]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "Dictionary", + "offset": 1572, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 2707, + "length": 3, + "value": "\"]\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 3597, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3946, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 4936, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "Array", + "offset": 5431, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 5635, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 5954, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6123, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6510, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6604, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7206, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 7670, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7811, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7917, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 8836, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 9013, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "Dictionary", + "offset": 11847, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "Dictionary", + "offset": 13001, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 13688, + "length": 9, + "value": "\"#json: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 13774, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "Dictionary", + "offset": 19363, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 20959, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 21143, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 25670, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 25754, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 26257, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 26348, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 26809, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 26903, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 576, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 614, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 646, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 682, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 723, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 761, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 805, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 846, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 887, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 3, + "value": "\"3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 973, + "length": 3, + "value": "\"7\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1015, + "length": 3, + "value": "\"9\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1058, + "length": 3, + "value": "\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1102, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1144, + "length": 3, + "value": "\"+\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1187, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1234, + "length": 3, + "value": "\";\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1283, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1333, + "length": 4, + "value": "\"'\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1381, + "length": 4, + "value": "\"\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1432, + "length": 3, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1474, + "length": 3, + "value": "\"#\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1522, + "length": 3, + "value": "\"_\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1572, + "length": 3, + "value": "\"?\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1615, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1670, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1726, + "length": 3, + "value": "\"]\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1780, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1889, + "length": 3, + "value": "\"<\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1944, + "length": 3, + "value": "\">\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1987, + "length": 3, + "value": "\"-\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2031, + "length": 3, + "value": "\"a\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2075, + "length": 3, + "value": "\"A\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2119, + "length": 3, + "value": "\"b\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2163, + "length": 3, + "value": "\"e\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2207, + "length": 3, + "value": "\"E\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2251, + "length": 3, + "value": "\"f\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2295, + "length": 3, + "value": "\"F\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2339, + "length": 3, + "value": "\"i\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2383, + "length": 3, + "value": "\"l\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2427, + "length": 3, + "value": "\"n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2471, + "length": 3, + "value": "\"r\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2515, + "length": 3, + "value": "\"s\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2559, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2603, + "length": 3, + "value": "\"T\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2647, + "length": 3, + "value": "\"u\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2691, + "length": 3, + "value": "\"U\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2735, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2779, + "length": 3, + "value": "\"x\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2823, + "length": 3, + "value": "\"y\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2867, + "length": 3, + "value": "\"z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2911, + "length": 3, + "value": "\"Z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 3117, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 3206, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 4077, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 4090, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 4102, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 5221, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 5242, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 5344, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 5914, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 5983, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 5987, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6100, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6107, + "length": 5, + "value": "0x7ff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6168, + "length": 4, + "value": "0xC0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6214, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6241, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6286, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6308, + "length": 5, + "value": "0x800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6316, + "length": 6, + "value": "0xffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6378, + "length": 4, + "value": "0xE0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6424, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6452, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6499, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6504, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6534, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6579, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6601, + "length": 7, + "value": "0x10000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6611, + "length": 8, + "value": "0x10FFFF" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6675, + "length": 4, + "value": "0xF0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6721, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6749, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6796, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6802, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6832, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6879, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6884, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6914, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6959, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 7352, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 9627, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 9749, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 9780, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 9942, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 10170, + "length": 65, + "value": "\"Somehow TextFormatDecoding unwound more objects than it started\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 10370, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 10564, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 10628, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 10739, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 10767, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 11298, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 11507, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 12396, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 12502, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 12601, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 12876, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 13354, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 13397, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 13447, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 13463, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 13804, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 13861, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 13881, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14061, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14080, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14122, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14157, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14176, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14447, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14512, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14647, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14651, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14859, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14886, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15008, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15257, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15261, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15331, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15354, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15361, + "length": 5, + "value": "0x7ff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15432, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15455, + "length": 6, + "value": "0xD800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15464, + "length": 6, + "value": "0xDFFF" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15648, + "length": 5, + "value": "0x800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15656, + "length": 6, + "value": "0xffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15728, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15751, + "length": 7, + "value": "0x10000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15761, + "length": 8, + "value": "0x10FFFF" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15835, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 16081, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 16117, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 16167, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 16205, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 16398, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 16872, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 17042, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 17646, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 17668, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 17712, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 17732, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 17832, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 17854, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18090, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18179, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18269, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18362, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18445, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18465, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18484, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18527, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18580, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18599, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18642, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18711, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18753, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18877, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18881, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18923, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18950, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19010, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19146, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19150, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19215, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19282, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19305, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19312, + "length": 5, + "value": "0x7ff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19378, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19383, + "length": 4, + "value": "0xC0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19429, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19454, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19459, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19504, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19535, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19558, + "length": 5, + "value": "0x800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19566, + "length": 6, + "value": "0xffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19633, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19638, + "length": 4, + "value": "0xE0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19684, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19710, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19715, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19762, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19767, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19795, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19800, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19845, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19876, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19899, + "length": 7, + "value": "0x10000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19909, + "length": 8, + "value": "0x10FFFF" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19978, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19983, + "length": 4, + "value": "0xF0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20029, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20055, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20060, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20107, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20113, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20141, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20146, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20193, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20198, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20226, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20231, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20276, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20307, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20604, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20630, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20678, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20711, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20746, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20786, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20816, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20886, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20924, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20984, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21027, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21087, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21129, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21189, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21230, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21290, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21338, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21398, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21435, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21495, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21540, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21585, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21621, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21678, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21709, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21752, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 21987, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 22040, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 22166, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 22392, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 22547, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 22573, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 22995, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23011, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23195, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23228, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23283, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23317, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23386, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23693, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23808, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23895, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 24136, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 24258, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 24288, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 24435, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 24504, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 24598, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 24972, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25093, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25123, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25383, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25469, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25802, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25812, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25941, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25967, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 26275, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 26329, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 26508, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 26710, + "length": 18, + "value": "0x8000000000000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 27540, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 27682, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 27860, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 27959, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 28087, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 28795, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 28937, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 28966, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 29269, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 29417, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 29545, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 29673, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 29706, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30068, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30386, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30435, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30511, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30643, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30703, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30913, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30989, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 31285, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 31543, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 31816, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 32296, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 32386, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 32723, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 32765, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 33062, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 33099, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 33152, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 33185, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 33337, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 33393, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 33893, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 33973, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 33995, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 34036, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 35345, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 35361, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 35452, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 35502, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 35739, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 35962, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 36125, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 36790, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 37906, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 37959, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 38039, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 38200, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 38893, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 39763, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 40266, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 40321, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 40415, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 40527, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 41241, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 41268, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 41702, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 41729, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 41779, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 41809, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 42505, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 42607, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 42929, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 42949, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 6934, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 7199, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "StringLiteral", + "offset": 7533, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "StringLiteral", + "offset": 7715, + "length": 12, + "value": "\".Timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 7784, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "StringLiteral", + "offset": 7800, + "length": 9, + "value": "\"seconds\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 7816, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "StringLiteral", + "offset": 7832, + "length": 7, + "value": "\"nanos\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 8254, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 8337, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 8532, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 8612, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 8642, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 8720, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "BooleanLiteral", + "offset": 8924, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "BooleanLiteral", + "offset": 8969, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "BooleanLiteral", + "offset": 9030, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "BooleanLiteral", + "offset": 9048, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 592, + "length": 4, + "value": "1440" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 625, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 655, + "length": 5, + "value": "86400" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 689, + "length": 4, + "value": "3600" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 724, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 755, + "length": 10, + "value": "1000000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1390, + "length": 7, + "value": "2440588" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1853, + "length": 4, + "value": "1401" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1868, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1877, + "length": 6, + "value": "274277" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1885, + "length": 6, + "value": "146097" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1895, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1898, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1903, + "length": 2, + "value": "38" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1918, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1926, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1957, + "length": 4, + "value": "1461" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1964, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1980, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1988, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2014, + "length": 3, + "value": "153" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2020, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2025, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2051, + "length": 3, + "value": "153" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2058, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2061, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2067, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2089, + "length": 4, + "value": "1461" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2097, + "length": 4, + "value": "4716" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2108, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2113, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2121, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2254, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "StringLiteral", + "offset": 2269, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2292, + "length": 7, + "value": "1000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2303, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "StringLiteral", + "offset": 2318, + "length": 38, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2346, + "length": 7, + "value": "1000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "StringLiteral", + "offset": 2355, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2377, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2385, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "StringLiteral", + "offset": 2400, + "length": 33, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2426, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "StringLiteral", + "offset": 2432, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "StringLiteral", + "offset": 2456, + "length": 27, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "StringLiteral", + "offset": 2482, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 2509, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 3566, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 5009, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 8247, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 8717, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 9547, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 9844, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 9957, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 10117, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 10305, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 10498, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 12740, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 12774, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 12805, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 12834, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 12863, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 12894, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 13058, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 13089, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 13118, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 13147, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 13178, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 13209, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 13707, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 14117, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 14299, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 15525, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 15707, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 17480, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 17508, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 17533, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 17688, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 17713, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 17741, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 19007, + "length": 30, + "value": "\"opentelemetry.proto.trace.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 19216, + "length": 13, + "value": "\".TracesData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 19286, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 19306, + "length": 16, + "value": "\"resource_spans\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 19737, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 20040, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 20284, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 20345, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 20363, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 20555, + "length": 16, + "value": "\".ResourceSpans\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 20628, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 20644, + "length": 10, + "value": "\"resource\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 20661, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 20681, + "length": 13, + "value": "\"scope_spans\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 20701, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 20721, + "length": 12, + "value": "\"schema_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 21148, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 21235, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 21323, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 21901, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 22029, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 22150, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 22392, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 22447, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 22500, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 22561, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 22579, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 22768, + "length": 13, + "value": "\".ScopeSpans\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 22838, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 22854, + "length": 7, + "value": "\"scope\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 22868, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 22884, + "length": 7, + "value": "\"spans\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 22898, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 22918, + "length": 12, + "value": "\"schema_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 23345, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 23429, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 23512, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 24087, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 24205, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 24326, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 24556, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 24601, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 24654, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 24715, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 24733, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 24916, + "length": 7, + "value": "\".Span\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 24980, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25000, + "length": 10, + "value": "\"trace_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25017, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25037, + "length": 9, + "value": "\"span_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25053, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25073, + "length": 13, + "value": "\"trace_state\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25093, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25113, + "length": 16, + "value": "\"parent_span_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25136, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25152, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25165, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25181, + "length": 6, + "value": "\"kind\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25194, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25214, + "length": 22, + "value": "\"start_time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25243, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25263, + "length": 20, + "value": "\"end_time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25290, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25306, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25325, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25346, + "length": 26, + "value": "\"dropped_attributes_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25379, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25396, + "length": 8, + "value": "\"events\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25411, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25432, + "length": 22, + "value": "\"dropped_events_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25461, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25478, + "length": 7, + "value": "\"links\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25492, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25513, + "length": 21, + "value": "\"dropped_links_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25541, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25558, + "length": 8, + "value": "\"status\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25981, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26064, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26146, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26233, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26321, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26402, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26481, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26576, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26669, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26757, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26857, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26942, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 27038, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 27122, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 27217, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 27797, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 27911, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28034, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28160, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28271, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28387, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28429, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28521, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28561, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28651, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28775, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28822, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28918, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 29035, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 29079, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 29171, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 29286, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 29329, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 29420, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 29533, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 29758, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 29805, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 29860, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 29919, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 29962, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30005, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30074, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30139, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30194, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30273, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30320, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30391, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30436, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30505, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30554, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30615, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30633, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 30777, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 30793, + "length": 23, + "value": "\"SPAN_KIND_UNSPECIFIED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 30823, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 30839, + "length": 20, + "value": "\"SPAN_KIND_INTERNAL\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 30866, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 30882, + "length": 18, + "value": "\"SPAN_KIND_SERVER\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 30907, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 30923, + "length": 18, + "value": "\"SPAN_KIND_CLIENT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 30948, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 30964, + "length": 20, + "value": "\"SPAN_KIND_PRODUCER\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 30991, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 31007, + "length": 20, + "value": "\"SPAN_KIND_CONSUMER\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 31247, + "length": 8, + "value": "\".Event\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 31312, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 31332, + "length": 16, + "value": "\"time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 31355, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 31371, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 31384, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 31400, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 31419, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 31439, + "length": 26, + "value": "\"dropped_attributes_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 31880, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 31970, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32051, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32139, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32357, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32444, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32555, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32679, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32726, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32822, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 33064, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 33107, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 33162, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 33241, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 33302, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 33320, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 33541, + "length": 7, + "value": "\".Link\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 33605, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 33625, + "length": 10, + "value": "\"trace_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 33642, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 33662, + "length": 9, + "value": "\"span_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 33678, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 33698, + "length": 13, + "value": "\"trace_state\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 33718, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 33734, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 33753, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 33773, + "length": 26, + "value": "\"dropped_attributes_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 34214, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 34297, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 34379, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 34466, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 34554, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 34851, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 34965, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 35088, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 35212, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 35259, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 35355, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 35585, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 35632, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 35687, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 35742, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 35821, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 35882, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 35900, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 36085, + "length": 9, + "value": "\".Status\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 36151, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 36167, + "length": 9, + "value": "\"message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 36183, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 36199, + "length": 6, + "value": "\"code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 36620, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 36704, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 36982, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 37092, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 37316, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 37359, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 37420, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 37438, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 37586, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 37602, + "length": 19, + "value": "\"STATUS_CODE_UNSET\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 37628, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 37644, + "length": 16, + "value": "\"STATUS_CODE_OK\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 37667, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 37683, + "length": 19, + "value": "\"STATUS_CODE_ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "Array", + "offset": 2107, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 4477, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 5531, + "length": 40, + "value": "\"opentelemetry.proto.collector.trace.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 5775, + "length": 28, + "value": "\".ExportTraceServiceRequest\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 5860, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 5880, + "length": 16, + "value": "\"resource_spans\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 6311, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 6614, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 6908, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 6969, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 6987, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 7202, + "length": 29, + "value": "\".ExportTraceServiceResponse\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 7288, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 7308, + "length": 17, + "value": "\"partial_success\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 7740, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 8331, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8635, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8696, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8714, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 8928, + "length": 28, + "value": "\".ExportTracePartialSuccess\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9013, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 9033, + "length": 16, + "value": "\"rejected_spans\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9056, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 9076, + "length": 15, + "value": "\"error_message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9506, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9595, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9804, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9890, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 10017, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10311, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10370, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10431, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10449, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 468, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 570, + "length": 3, + "value": "0x1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 642, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 681, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 799, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "StringLiteral", + "offset": 1054, + "length": 6, + "value": "\"%02x\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 1651, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 1783, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 1813, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 1894, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 2213, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "StringLiteral", + "offset": 3006, + "length": 32, + "value": "\"TraceFlags{sampled=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "StringLiteral", + "offset": 3036, + "length": 1, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 355, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 400, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 1988, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 2017, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 3853, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 4543, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 5243, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 5648, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 5677, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 5826, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 5892, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 5969, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 6048, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 6172, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 6321, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 6398, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 6436, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "StringLiteral", + "offset": 6892, + "length": 16, + "value": "\"%016llx%016llx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "StringLiteral", + "offset": 7394, + "length": 31, + "value": "\"TraceId{traceId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "StringLiteral", + "offset": 7423, + "length": 1, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "BooleanLiteral", + "offset": 7549, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "BooleanLiteral", + "offset": 7635, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "BooleanLiteral", + "offset": 7676, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/trace\/utils\/TraceProtoUtils.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/trace\/utils\/TraceProtoUtils.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerProviderBuilder.swift", + "kind": "Array", + "offset": 561, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerProviderSdk.swift", + "kind": "StringLiteral", + "offset": 359, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerProviderSdk.swift", + "kind": "Array", + "offset": 812, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerProviderSdk.swift", + "kind": "StringLiteral", + "offset": 1668, + "length": 48, + "value": "\"Tracer requested without instrumentation name.\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerProviderSdk.swift", + "kind": "StringLiteral", + "offset": 1916, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerProviderSdk.swift", + "kind": "IntegerLiteral", + "offset": 1970, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerProviderSdk.swift", + "kind": "IntegerLiteral", + "offset": 2358, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "BooleanLiteral", + "offset": 439, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 949, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 1139, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 1197, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 1979, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 2154, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "BooleanLiteral", + "offset": 2400, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 2748, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 2841, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceState.swift", + "kind": "IntegerLiteral", + "offset": 819, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 166, + "length": 3, + "value": "256" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 208, + "length": 3, + "value": "256" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 259, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 683, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 825, + "length": 4, + "value": "\" ,\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 1014, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 1284, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 1425, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 1702, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 1866, + "length": 30, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 1879, + "length": 1, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 1894, + "length": 1, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 2368, + "length": 43, + "value": "\"abcdefghijklmnopqrstuvwxyz0123456789_-*\/@\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 2572, + "length": 3, + "value": "\"z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 2597, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 2710, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 2757, + "length": 3, + "value": "\"@\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 2783, + "length": 3, + "value": "\"@\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 2809, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 2841, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 3127, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 3152, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 3244, + "length": 4, + "value": "0x20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 3267, + "length": 4, + "value": "0x7E" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 3285, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 3302, + "length": 3, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 3331, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 3377, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 3524, + "length": 3, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 3557, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 3622, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 3638, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 2857, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 2884, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 2911, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 3058, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 3085, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 3114, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "Array", + "offset": 3769, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "Array", + "offset": 3876, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "Array", + "offset": 3964, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 5319, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 5762, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 5854, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "Array", + "offset": 5945, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7516, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7550, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7583, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7615, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7647, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7680, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7712, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7746, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7780, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7811, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7844, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7877, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7912, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7945, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7979, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8011, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8047, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8083, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8117, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8284, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8317, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8349, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8381, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8414, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8446, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8480, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8514, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8545, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8578, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8610, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8645, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8678, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8712, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8744, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8780, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8816, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8850, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8884, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 9987, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 10017, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 10048, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 10079, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 10239, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 10270, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 10301, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 10332, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "Array", + "offset": 11043, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "Array", + "offset": 11127, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 12352, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "Array", + "offset": 12435, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14419, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 14550, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14566, + "length": 15, + "value": "\"SYNTAX_PROTO2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 14588, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14604, + "length": 15, + "value": "\"SYNTAX_PROTO3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 14626, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14642, + "length": 17, + "value": "\"SYNTAX_EDITIONS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14827, + "length": 7, + "value": "\".Type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 14891, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14907, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 14920, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14936, + "length": 8, + "value": "\"fields\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 14951, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14967, + "length": 8, + "value": "\"oneofs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 14982, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14998, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 15014, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 15034, + "length": 16, + "value": "\"source_context\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 15057, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 15073, + "length": 8, + "value": "\"syntax\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 15088, + "length": 1, + "value": "7" + }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 15104, + "length": 9, + "value": "\"edition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 244, + "offset": 15528, "length": 1, "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 263, + "offset": 15609, "length": 1, "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 244, + "offset": 15693, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 15776, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 15861, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 15953, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 16034, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 16607, "length": 1, "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 263, + "offset": 16723, "length": 1, "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 244, + "offset": 16838, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 16956, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 17075, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 17194, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 17311, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17499, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17546, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17593, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17642, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17705, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17752, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17801, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17862, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17880, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 18051, + "length": 8, + "value": "\".Field\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 18116, "length": 1, "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 18132, + "length": 6, + "value": "\"kind\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 263, + "offset": 18145, "length": 1, "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Constants.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 213, - "length": 31, - "value": "\"wss:\/\/call-api.videosdk.live\/\"" + "offset": 18161, + "length": 13, + "value": "\"cardinality\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 18181, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 214, - "length": 28, - "value": "\"CFBundleShortVersionString\"" + "offset": 18197, + "length": 8, + "value": "\"number\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 18212, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 696, - "length": 5, - "value": "\"ios\"" + "offset": 18228, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 18241, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 743, - "length": 9, - "value": "\"unknown\"" + "offset": 18261, + "length": 10, + "value": "\"type_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 18278, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 622, - "length": 7, - "value": "\"width\"" + "offset": 18298, + "length": 13, + "value": "\"oneof_index\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 631, - "length": 3, - "value": "160" + "offset": 18318, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 640, + "offset": 18334, "length": 8, - "value": "\"height\"" + "value": "\"packed\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 650, - "length": 2, - "value": "90" + "offset": 18349, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 658, + "offset": 18365, "length": 9, - "value": "\"bitRate\"" + "value": "\"options\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 669, + "offset": 18381, "length": 2, - "value": "60" + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 18402, + "length": 11, + "value": "\"json_name\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 674, - "length": 4, - "value": "1000" + "offset": 18420, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 684, - "length": 11, - "value": "\"frameRate\"" + "offset": 18441, + "length": 15, + "value": "\"default_value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 697, + "offset": 18871, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 18950, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19036, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19118, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19199, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19283, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19369, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19450, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19535, "length": 2, - "value": "15" + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19621, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19909, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20035, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20066, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20145, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20256, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20373, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20408, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20491, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 20522, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20604, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20722, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20841, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20969, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21160, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21217, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21264, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21307, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21356, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21411, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21458, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21507, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21558, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21617, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21678, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21696, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 21824, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 705, + "offset": 21840, + "length": 14, + "value": "\"TYPE_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 21861, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 21877, "length": 13, - "value": "\"aspectRatio\"" + "value": "\"TYPE_DOUBLE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 21897, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 720, + "offset": 21913, "length": 12, - "value": "\"oneSixNine\"" + "value": "\"TYPE_FLOAT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 21932, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 760, - "length": 7, - "value": "\"width\"" + "offset": 21948, + "length": 12, + "value": "\"TYPE_INT64\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 769, - "length": 3, - "value": "320" + "offset": 21967, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 778, - "length": 8, - "value": "\"height\"" + "offset": 21983, + "length": 13, + "value": "\"TYPE_UINT64\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 788, - "length": 3, - "value": "180" + "offset": 22003, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 797, - "length": 9, - "value": "\"bitRate\"" + "offset": 22019, + "length": 12, + "value": "\"TYPE_INT32\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 808, - "length": 3, - "value": "120" + "offset": 22038, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 22054, + "length": 14, + "value": "\"TYPE_FIXED64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 814, - "length": 4, - "value": "1000" + "offset": 22075, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 824, + "offset": 22091, + "length": 14, + "value": "\"TYPE_FIXED32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 22112, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 22128, "length": 11, - "value": "\"frameRate\"" + "value": "\"TYPE_BOOL\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 837, - "length": 2, - "value": "15" + "offset": 22146, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 845, + "offset": 22162, "length": 13, - "value": "\"aspectRatio\"" + "value": "\"TYPE_STRING\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 860, - "length": 12, - "value": "\"oneSixNine\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 22182, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 900, - "length": 7, - "value": "\"width\"" + "offset": 22199, + "length": 12, + "value": "\"TYPE_GROUP\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 909, - "length": 3, - "value": "384" + "offset": 22218, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 918, - "length": 8, - "value": "\"height\"" + "offset": 22235, + "length": 14, + "value": "\"TYPE_MESSAGE\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 928, - "length": 3, - "value": "216" + "offset": 22256, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 937, - "length": 9, - "value": "\"bitRate\"" + "offset": 22273, + "length": 12, + "value": "\"TYPE_BYTES\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 948, - "length": 3, - "value": "180" + "offset": 22292, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 22309, + "length": 13, + "value": "\"TYPE_UINT32\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 954, - "length": 4, - "value": "1000" + "offset": 22329, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 964, + "offset": 22346, "length": 11, - "value": "\"frameRate\"" + "value": "\"TYPE_ENUM\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 977, + "offset": 22364, "length": 2, "value": "15" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 985, + "offset": 22381, + "length": 15, + "value": "\"TYPE_SFIXED32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 22403, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 22420, + "length": 15, + "value": "\"TYPE_SFIXED64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 22442, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 22459, "length": 13, - "value": "\"aspectRatio\"" + "value": "\"TYPE_SINT32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 22479, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1000, - "length": 12, - "value": "\"oneSixNine\"" + "offset": 22496, + "length": 13, + "value": "\"TYPE_SINT64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 22642, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1040, - "length": 7, - "value": "\"width\"" + "offset": 22658, + "length": 21, + "value": "\"CARDINALITY_UNKNOWN\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1049, - "length": 3, - "value": "640" + "offset": 22686, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1058, - "length": 8, - "value": "\"height\"" + "offset": 22702, + "length": 22, + "value": "\"CARDINALITY_OPTIONAL\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1068, - "length": 3, - "value": "360" + "offset": 22731, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1077, - "length": 9, - "value": "\"bitRate\"" + "offset": 22747, + "length": 22, + "value": "\"CARDINALITY_REQUIRED\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1088, - "length": 3, - "value": "300" + "offset": 22776, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 22792, + "length": 22, + "value": "\"CARDINALITY_REPEATED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 22982, + "length": 7, + "value": "\".Enum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1094, - "length": 4, - "value": "1000" + "offset": 23046, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 23062, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 23075, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1104, + "offset": 23091, "length": 11, - "value": "\"frameRate\"" + "value": "\"enumvalue\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1117, - "length": 2, - "value": "20" + "offset": 23109, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1125, - "length": 13, - "value": "\"aspectRatio\"" + "offset": 23125, + "length": 9, + "value": "\"options\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1140, - "length": 12, - "value": "\"oneSixNine\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 23141, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1180, - "length": 7, - "value": "\"width\"" + "offset": 23161, + "length": 16, + "value": "\"source_context\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1189, - "length": 3, - "value": "960" + "offset": 23184, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1198, + "offset": 23200, "length": 8, - "value": "\"height\"" + "value": "\"syntax\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1208, - "length": 3, - "value": "540" + "offset": 23215, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1217, + "offset": 23231, "length": 9, - "value": "\"bitRate\"" + "value": "\"edition\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1228, - "length": 3, - "value": "600" + "offset": 23655, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1234, - "length": 4, - "value": "1000" + "offset": 23736, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1244, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 23823, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1257, - "length": 2, - "value": "25" + "offset": 23908, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1265, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 24000, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1280, - "length": 12, - "value": "\"oneSixNine\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 24081, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1321, - "length": 7, - "value": "\"width\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 24654, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1330, - "length": 4, - "value": "1280" + "offset": 24776, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1340, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 24894, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1350, - "length": 3, - "value": "720" + "offset": 25013, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1359, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 25132, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1370, - "length": 4, - "value": "2000" + "offset": 25249, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1377, - "length": 4, - "value": "1000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25437, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1387, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25490, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1400, - "length": 2, - "value": "30" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25539, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1408, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25602, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25649, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25698, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25759, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25777, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1423, + "offset": 25952, "length": 12, - "value": "\"oneSixNine\"" + "value": "\".EnumValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 26021, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1465, - "length": 7, - "value": "\"width\"" + "offset": 26037, + "length": 6, + "value": "\"name\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1474, - "length": 4, - "value": "1920" + "offset": 26050, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1484, + "offset": 26066, "length": 8, - "value": "\"height\"" + "value": "\"number\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1494, - "length": 4, - "value": "1080" + "offset": 26081, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1504, + "offset": 26097, "length": 9, - "value": "\"bitRate\"" + "value": "\"options\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1515, - "length": 4, - "value": "3000" + "offset": 26521, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1522, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1532, - "length": 11, - "value": "\"frameRate\"" + "offset": 26602, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1545, - "length": 2, - "value": "30" + "offset": 26684, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1553, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 26962, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1568, - "length": 12, - "value": "\"oneSixNine\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 26993, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1610, - "length": 7, - "value": "\"width\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 27072, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1619, - "length": 4, - "value": "2560" + "offset": 27190, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1629, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 27388, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1639, - "length": 4, - "value": "1440" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 27435, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1649, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 27484, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1660, - "length": 4, - "value": "5000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 27545, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1667, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 27563, "length": 4, - "value": "1000" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1677, - "length": 11, - "value": "\"frameRate\"" + "offset": 27735, + "length": 9, + "value": "\".Option\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1690, - "length": 2, - "value": "30" + "offset": 27801, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1698, - "length": 13, - "value": "\"aspectRatio\"" + "offset": 27817, + "length": 6, + "value": "\"name\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1713, - "length": 12, - "value": "\"oneSixNine\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 27830, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1755, + "offset": 27846, "length": 7, - "value": "\"width\"" + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1764, - "length": 4, - "value": "3840" + "offset": 28268, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1774, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 28349, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1784, - "length": 4, - "value": "2160" + "offset": 28922, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1794, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 29033, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1805, - "length": 4, - "value": "8000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 29229, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1812, - "length": 4, - "value": "1000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 29276, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1822, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 29337, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1835, - "length": 2, - "value": "30" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 29355, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 1843, - "length": 13, - "value": "\"aspectRatio\"" + "offset": 309, + "length": 57, + "value": "\"https:\/\/api.videosdk.live\/infra\/v1\/meetings\/init-config\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 1858, - "length": 12, - "value": "\"oneSixNine\"" + "offset": 423, + "length": 15, + "value": "\"Authorization\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 1898, - "length": 7, - "value": "\"width\"" + "offset": 465, + "length": 18, + "value": "\"application\/json\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1907, - "length": 3, - "value": "160" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", + "kind": "StringLiteral", + "offset": 505, + "length": 14, + "value": "\"Content-Type\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 1916, + "offset": 593, "length": 8, - "value": "\"height\"" + "value": "\"roomId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1926, - "length": 3, - "value": "120" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", + "kind": "Array", + "offset": 621, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 1935, - "length": 9, - "value": "\"bitRate\"" + "offset": 654, + "length": 6, + "value": "\"POST\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1946, - "length": 2, - "value": "80" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", + "kind": "StringLiteral", + "offset": 959, + "length": 20, + "value": "\"YourAppErrorDomain\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "IntegerLiteral", - "offset": 1951, - "length": 4, - "value": "1000" + "offset": 987, + "length": 2, + "value": "-1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 1961, - "length": 11, - "value": "\"frameRate\"" + "offset": 1029, + "length": 35, + "value": "\"No data received from the server.\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1974, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", + "kind": "Array", + "offset": 1253, "length": 2, - "value": "15" + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 1982, - "length": 13, - "value": "\"aspectRatio\"" + "offset": 1365, + "length": 6, + "value": "\"data\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1997, - "length": 11, - "value": "\"fourThree\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", + "kind": "Dictionary", + "offset": 1394, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 2036, - "length": 7, - "value": "\"width\"" + "offset": 1480, + "length": 20, + "value": "\"YourAppErrorDomain\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "IntegerLiteral", - "offset": 2045, - "length": 3, - "value": "240" + "offset": 1508, + "length": 2, + "value": "-2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 2054, - "length": 8, - "value": "\"height\"" + "offset": 1550, + "length": 32, + "value": "\"Failed to parse JSON response.\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "IntegerLiteral", - "offset": 2064, - "length": 3, - "value": "180" + "offset": 273, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", + "kind": "IntegerLiteral", + "offset": 280, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "StringLiteral", - "offset": 2073, - "length": 9, - "value": "\"bitRate\"" + "offset": 360, + "length": 64, + "value": "\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "IntegerLiteral", - "offset": 2084, - "length": 3, - "value": "100" + "offset": 448, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "IntegerLiteral", - "offset": 2090, - "length": 4, - "value": "1000" + "offset": 452, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2100, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", + "kind": "IntegerLiteral", + "offset": 580, + "length": 2, + "value": "89" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "IntegerLiteral", - "offset": 2113, - "length": 2, - "value": "15" + "offset": 585, + "length": 3, + "value": "122" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2121, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", + "kind": "IntegerLiteral", + "offset": 651, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2136, - "length": 11, - "value": "\"fourThree\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", + "kind": "IntegerLiteral", + "offset": 864, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "StringLiteral", - "offset": 2175, - "length": 7, - "value": "\"width\"" + "offset": 899, + "length": 26, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "IntegerLiteral", - "offset": 2184, - "length": 3, - "value": "320" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2193, - "length": 8, - "value": "\"height\"" + "offset": 917, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "IntegerLiteral", - "offset": 2203, - "length": 3, - "value": "240" + "offset": 921, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "StringLiteral", - "offset": 2212, - "length": 9, - "value": "\"bitRate\"" + "offset": 924, + "length": 1, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2223, - "length": 3, - "value": "150" + "offset": 939, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2229, - "length": 4, - "value": "1000" + "offset": 944, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2239, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 951, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2252, - "length": 2, - "value": "15" + "offset": 968, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2260, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 994, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2275, - "length": 11, - "value": "\"fourThree\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 999, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2314, - "length": 7, - "value": "\"width\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 1007, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2323, - "length": 3, - "value": "480" + "offset": 1024, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2332, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 1050, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 1055, + "length": 2, + "value": "21" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2342, - "length": 3, - "value": "360" + "offset": 1063, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2351, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 1080, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2362, - "length": 3, - "value": "225" + "offset": 1106, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2368, - "length": 4, - "value": "1000" + "offset": 1111, + "length": 2, + "value": "28" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2378, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 1119, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2391, - "length": 2, - "value": "20" + "offset": 1136, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2399, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 1155, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2414, - "length": 11, - "value": "\"fourThree\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 1535, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2453, - "length": 7, - "value": "\"width\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2031, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2462, - "length": 3, - "value": "640" + "offset": 2036, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2471, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2043, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2481, - "length": 3, - "value": "480" + "offset": 2060, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2490, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2083, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2501, - "length": 3, - "value": "300" + "offset": 2100, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2507, - "length": 4, - "value": "1000" + "offset": 2197, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2517, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2218, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2530, + "offset": 2223, "length": 2, - "value": "25" + "value": "35" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2538, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2231, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2553, - "length": 11, - "value": "\"fourThree\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2246, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2592, - "length": 7, - "value": "\"width\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2264, + "length": 2, + "value": "28" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2601, - "length": 3, - "value": "720" + "offset": 2291, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2610, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2296, + "length": 2, + "value": "21" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2620, - "length": 3, - "value": "540" + "offset": 2304, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2629, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2319, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2640, - "length": 3, - "value": "450" + "offset": 2337, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2646, - "length": 4, - "value": "1000" + "offset": 2364, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2656, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2369, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2669, - "length": 2, - "value": "30" + "offset": 2377, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2677, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2392, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2692, - "length": 11, - "value": "\"fourThree\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 3183, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2731, - "length": 7, - "value": "\"width\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 3200, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2740, + "offset": 3281, "length": 3, - "value": "960" + "value": "128" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2749, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 3303, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2759, - "length": 3, - "value": "720" + "offset": 3324, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2768, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Version.swift", + "kind": "IntegerLiteral", + "offset": 682, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Version.swift", "kind": "IntegerLiteral", - "offset": 2779, - "length": 4, - "value": "1500" + "offset": 733, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Version.swift", "kind": "IntegerLiteral", - "offset": 2786, - "length": 4, - "value": "1000" + "offset": 789, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Version.swift", "kind": "StringLiteral", - "offset": 2796, - "length": 11, - "value": "\"frameRate\"" + "offset": 869, + "length": 31, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 2809, - "length": 2, - "value": "30" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Version.swift", + "kind": "StringLiteral", + "offset": 878, + "length": 1, + "value": "\".\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Version.swift", "kind": "StringLiteral", - "offset": 2817, - "length": 13, - "value": "\"aspectRatio\"" + "offset": 887, + "length": 1, + "value": "\".\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Version.swift", "kind": "StringLiteral", - "offset": 2832, - "length": 11, - "value": "\"fourThree\"" + "offset": 899, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/VideoQuality.swift", + "kind": "Dictionary", + "offset": 294, + "length": 961, + "value": "[(\"sd\", [(\"low\", [(\"s\", 0), (\"t\", 2)]), (\"medium\", [(\"s\", 0), (\"t\", 2)]), (\"high\", [(\"s\", 1), (\"t\", 2)]), (\"s0t0\", [(\"s\", 0), (\"t\", 0)]), (\"s0t1\", [(\"s\", 0), (\"t\", 1)]), (\"s0t2\", [(\"s\", 0), (\"t\", 2)]), (\"s1t0\", [(\"s\", 1), (\"t\", 0)]), (\"s1t1\", [(\"s\", 1), (\"t\", 1)]), (\"s1t2\", [(\"s\", 1), (\"t\", 2)]), (\"s2t0\", [(\"s\", 2), (\"t\", 0)]), (\"s2t1\", [(\"s\", 2), (\"t\", 1)]), (\"s2t2\", [(\"s\", 2), (\"t\", 2)])]), (\"hd\", [(\"low\", [(\"s\", 0), (\"t\", 2)]), (\"medium\", [(\"s\", 1), (\"t\", 2)]), (\"high\", [(\"s\", 2), (\"t\", 2)]), (\"s0t0\", [(\"s\", 0), (\"t\", 0)]), (\"s0t1\", [(\"s\", 0), (\"t\", 1)]), (\"s0t2\", [(\"s\", 0), (\"t\", 2)]), (\"s1t0\", [(\"s\", 1), (\"t\", 0)]), (\"s1t1\", [(\"s\", 1), (\"t\", 1)]), (\"s1t2\", [(\"s\", 1), (\"t\", 2)]), (\"s2t0\", [(\"s\", 2), (\"t\", 0)]), (\"s2t1\", [(\"s\", 2), (\"t\", 1)]), (\"s2t2\", [(\"s\", 2), (\"t\", 2)])])]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", "kind": "StringLiteral", - "offset": 2873, + "offset": 1045, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", + "kind": "StringLiteral", + "offset": 1083, "length": 7, - "value": "\"width\"" + "value": "\"Guest\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 2882, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", + "kind": "BooleanLiteral", + "offset": 1119, "length": 4, - "value": "1440" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", + "kind": "BooleanLiteral", + "offset": 1155, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 2902, - "length": 4, - "value": "1080" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", + "kind": "StringLiteral", + "offset": 1369, + "length": 34, + "value": "\"JWT server token is not provided\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", "kind": "StringLiteral", - "offset": 2912, - "length": 9, - "value": "\"bitRate\"" + "offset": 1478, + "length": 27, + "value": "\"meetingId is not provided\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 2923, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", + "kind": "BooleanLiteral", + "offset": 2093, "length": 4, - "value": "2500" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 2930, - "length": 4, - "value": "1000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", + "kind": "Array", + "offset": 3290, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2940, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "Dictionary", + "offset": 404, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 2953, - "length": 2, - "value": "30" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "Dictionary", + "offset": 446, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 2961, - "length": 13, - "value": "\"aspectRatio\"" + "offset": 689, + "length": 9, + "value": "\"enabled\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "BooleanLiteral", + "offset": 712, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 2976, - "length": 11, - "value": "\"fourThree\"" + "offset": 817, + "length": 10, + "value": "\"endPoint\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3017, - "length": 7, - "value": "\"width\"" + "offset": 863, + "length": 5, + "value": "\"SDK\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3026, - "length": 4, - "value": "1920" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 872, + "length": 5, + "value": "\"iOS\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3036, + "offset": 900, "length": 8, - "value": "\"height\"" + "value": "\"roomId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3046, - "length": 4, - "value": "1440" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 944, + "length": 12, + "value": "\"customerId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3056, + "offset": 1179, "length": 9, - "value": "\"bitRate\"" + "value": "\"logText\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3067, - "length": 4, - "value": "3500" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 1221, + "length": 10, + "value": "\"logLevel\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3074, - "length": 4, - "value": "1000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 1265, + "length": 12, + "value": "\"attributes\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3084, - "length": 11, - "value": "\"frameRate\"" + "offset": 1389, + "length": 66, + "value": "\"Error in VideoSDKLogs :: createLog \"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3097, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 1454, "length": 2, - "value": "30" + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3105, - "length": 13, - "value": "\"aspectRatio\"" + "offset": 1645, + "length": 6, + "value": "\"POST\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3120, - "length": 11, - "value": "\"fourThree\"" + "offset": 1680, + "length": 18, + "value": "\"application\/json\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3387, - "length": 12, - "value": "\"sampleRate\"" + "offset": 1720, + "length": 14, + "value": "\"Content-Type\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3401, - "length": 5, - "value": "16000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 1774, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3412, - "length": 9, - "value": "\"bitRate\"" + "offset": 1798, + "length": 15, + "value": "\"Authorization\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3423, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "Array", + "offset": 1935, "length": 2, - "value": "24" + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3431, - "length": 12, - "value": "\"sampleSize\"" + "offset": 2024, + "length": 55, + "value": "\"pushLog: response error \"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3445, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 2078, "length": 2, - "value": "16" + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3453, - "length": 8, - "value": "\"stereo\"" + "offset": 2282, + "length": 55, + "value": "\"pushLog: response error \"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3463, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 2336, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/VideoSDKMetrics.swift", + "kind": "IntegerLiteral", + "offset": 548, + "length": 4, + "value": "2000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/VideoSDKMetrics.swift", + "kind": "IntegerLiteral", + "offset": 581, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/VideoSDKMetrics.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 2, + "value": "-1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/VideoSDKMetrics.swift", "kind": "StringLiteral", - "offset": 3474, - "length": 5, - "value": "\"dtx\"" + "offset": 640, + "length": 8, + "value": "\"peerId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3481, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/VideoSDKMetrics.swift", + "kind": "StringLiteral", + "offset": 676, + "length": 8, + "value": "\"roomId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/VideoSDKMetrics.swift", "kind": "StringLiteral", - "offset": 3491, - "length": 5, - "value": "\"fec\"" + "offset": 710, + "length": 6, + "value": "\"name\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3498, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/VideoSDKMetrics.swift", + "kind": "Dictionary", + "offset": 1044, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3508, - "length": 17, - "value": "\"maxPlaybackRate\"" + "offset": 778, + "length": 9, + "value": "\"enabled\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3527, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "BooleanLiteral", + "offset": 801, "length": 5, - "value": "16000" + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3538, + "offset": 843, "length": 12, - "value": "\"packetTime\"" + "value": "\"pbEndPoint\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3552, - "length": 2, - "value": "20" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 1043, + "length": 14, + "value": "\"service-name\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3560, - "length": 17, - "value": "\"autoGainControl\"" + "offset": 1075, + "length": 15, + "value": "\"videosdk-otel\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3579, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 1093, + "length": 13, + "value": "\"sdk-version\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3589, - "length": 18, - "value": "\"echoCancellation\"" + "offset": 1123, + "length": 7, + "value": "\"2.1.0\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 1977, + "length": 46, + "value": "\"room_\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3619, - "length": 18, - "value": "\"noiseSuppression\"" + "offset": 1992, + "length": 6, + "value": "\"_peer_\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3639, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 2007, + "length": 5, + "value": "\"_sdk_\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3649, + "offset": 2022, "length": 14, - "value": "\"channelCount\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3665, - "length": 1, - "value": "1" + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3698, - "length": 12, - "value": "\"sampleRate\"" + "offset": 2076, + "length": 8, + "value": "\"roomId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3712, - "length": 5, - "value": "32000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 2140, + "length": 8, + "value": "\"peerId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3723, + "offset": 2204, "length": 9, - "value": "\"bitRate\"" + "value": "\"sdkName\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3734, - "length": 2, - "value": "24" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 2270, + "length": 8, + "value": "\"userId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3742, - "length": 12, - "value": "\"sampleSize\"" + "offset": 2311, + "length": 8, + "value": "\"userId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3756, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 2335, "length": 2, - "value": "24" + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3764, - "length": 8, - "value": "\"stereo\"" + "offset": 2379, + "length": 7, + "value": "\"email\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3774, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 2419, + "length": 7, + "value": "\"email\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 2442, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3785, - "length": 5, - "value": "\"dtx\"" + "offset": 2586, + "length": 41, + "value": "\"Error in VideoSDKTelemetry \n \"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3792, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 2626, + "length": 14, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3802, - "length": 5, - "value": "\"fec\"" + "offset": 2639, + "length": 7, + "value": "\"DEBUG\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3809, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "Dictionary", + "offset": 2730, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3819, - "length": 17, - "value": "\"maxPlaybackRate\"" + "offset": 3370, + "length": 51, + "value": "\"Error in VideoSDKTelemetry :: trace() \n \"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3838, - "length": 5, - "value": "32000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 3420, + "length": 14, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3849, - "length": 12, - "value": "\"packetTime\"" + "offset": 3433, + "length": 7, + "value": "\"DEBUG\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3863, - "length": 2, - "value": "30" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "Dictionary", + "offset": 3536, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3871, - "length": 17, - "value": "\"autoGainControl\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3890, - "length": 4, - "value": "true" + "offset": 4173, + "length": 63, + "value": "\"Error in VideoSDKTelemetry :: traceAutoComplete() \n \"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3900, - "length": 18, - "value": "\"echoCancellation\"" + "offset": 4235, + "length": 14, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3920, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 4248, + "length": 7, + "value": "\"DEBUG\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3930, - "length": 18, - "value": "\"noiseSuppression\"" + "offset": 4460, + "length": 9, + "value": "\"message\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3950, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "StringLiteral", + "offset": 201, "length": 4, - "value": "true" + "value": "\"00\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "StringLiteral", - "offset": 3960, - "length": 14, - "value": "\"channelCount\"" + "offset": 252, + "length": 3, + "value": "\"-\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "IntegerLiteral", - "offset": 3976, + "offset": 295, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4008, - "length": 12, - "value": "\"sampleRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "IntegerLiteral", + "offset": 338, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "IntegerLiteral", - "offset": 4022, - "length": 5, - "value": "48000" + "offset": 458, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4033, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "IntegerLiteral", - "offset": 4044, - "length": 2, - "value": "40" + "offset": 798, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "StringLiteral", - "offset": 4052, - "length": 12, - "value": "\"sampleSize\"" + "offset": 926, + "length": 9, + "value": "\"baggage\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 4066, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "StringLiteral", + "offset": 1147, "length": 2, - "value": "32" + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "StringLiteral", - "offset": 4074, - "length": 8, - "value": "\"stereo\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4084, - "length": 5, - "value": "false" + "offset": 1232, + "length": 3, + "value": "\"=\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "StringLiteral", - "offset": 4095, - "length": 5, - "value": "\"dtx\"" + "offset": 1331, + "length": 3, + "value": "\";\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4102, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "StringLiteral", + "offset": 1398, + "length": 3, + "value": "\",\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "StringLiteral", - "offset": 4113, - "length": 5, - "value": "\"fec\"" + "offset": 2140, + "length": 3, + "value": "\",\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4120, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "StringLiteral", + "offset": 2179, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "StringLiteral", - "offset": 4130, - "length": 17, - "value": "\"maxPlaybackRate\"" + "offset": 2209, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 4149, - "length": 5, - "value": "48000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "StringLiteral", + "offset": 2261, + "length": 3, + "value": "\";\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "StringLiteral", - "offset": 4160, - "length": 12, - "value": "\"packetTime\"" + "offset": 2522, + "length": 3, + "value": "\"=\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "IntegerLiteral", - "offset": 4174, - "length": 2, - "value": "40" + "offset": 2560, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4182, - "length": 17, - "value": "\"autoGainControl\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "IntegerLiteral", + "offset": 2657, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4201, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "IntegerLiteral", + "offset": 2726, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "StringLiteral", - "offset": 4212, - "length": 18, - "value": "\"echoCancellation\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4232, - "length": 5, - "value": "false" + "offset": 311, + "length": 4, + "value": "\"00\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "StringLiteral", - "offset": 4243, - "length": 18, - "value": "\"noiseSuppression\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4263, - "length": 5, - "value": "false" + "offset": 362, + "length": 3, + "value": "\"-\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4274, - "length": 14, - "value": "\"channelCount\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 405, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4290, + "offset": 448, "length": 1, "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4323, - "length": 12, - "value": "\"sampleRate\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4337, - "length": 5, - "value": "48000" + "offset": 568, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4348, - "length": 12, - "value": "\"sampleSize\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 738, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4362, - "length": 2, - "value": "32" + "offset": 909, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "StringLiteral", - "offset": 4370, - "length": 9, - "value": "\"bitRate\"" + "offset": 1035, + "length": 13, + "value": "\"traceparent\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 4381, - "length": 2, - "value": "64" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "StringLiteral", + "offset": 1077, + "length": 12, + "value": "\"tracestate\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "StringLiteral", - "offset": 4389, - "length": 8, - "value": "\"stereo\"" + "offset": 1719, + "length": 4, + "value": "\"01\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4399, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "StringLiteral", + "offset": 1726, "length": 4, - "value": "true" + "value": "\"00\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4409, - "length": 5, - "value": "\"dtx\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 2396, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "BooleanLiteral", - "offset": 4416, + "offset": 3503, "length": 5, "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4427, - "length": 5, - "value": "\"fec\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4434, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 3888, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4444, - "length": 17, - "value": "\"maxPlaybackRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 4019, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4463, - "length": 5, - "value": "48000" + "offset": 4031, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4474, - "length": 12, - "value": "\"packetTime\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 4089, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4488, + "offset": 4101, "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4496, - "length": 17, - "value": "\"autoGainControl\"" + "value": "16" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4515, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 4130, + "length": 3, + "value": "0xF" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4526, - "length": 18, - "value": "\"echoCancellation\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 4149, + "length": 3, + "value": "0xF" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4546, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 4211, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4557, - "length": 18, - "value": "\"noiseSuppression\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 4227, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "BooleanLiteral", - "offset": 4577, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4588, - "length": 14, - "value": "\"channelCount\"" + "offset": 4380, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4604, + "offset": 4476, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4634, - "length": 12, - "value": "\"sampleRate\"" + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4648, - "length": 5, - "value": "48000" + "offset": 4919, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4659, - "length": 12, - "value": "\"sampleSize\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 5517, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4673, + "offset": 5529, "length": 2, - "value": "32" + "value": "16" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4681, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 5597, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4692, - "length": 3, - "value": "128" + "offset": 5603, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4701, - "length": 8, - "value": "\"stereo\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "BooleanLiteral", + "offset": 5645, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4711, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 677, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4722, - "length": 5, - "value": "\"dtx\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4729, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 723, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4740, - "length": 5, - "value": "\"fec\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 745, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4747, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 765, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4757, - "length": 17, - "value": "\"maxPlaybackRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 784, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", "kind": "IntegerLiteral", - "offset": 4776, - "length": 5, - "value": "48000" + "offset": 677, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4787, - "length": 12, - "value": "\"packetTime\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", "kind": "IntegerLiteral", - "offset": 4801, - "length": 2, - "value": "60" + "offset": 723, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4809, - "length": 17, - "value": "\"autoGainControl\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 745, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4828, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 765, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4839, - "length": 18, - "value": "\"echoCancellation\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 784, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4859, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 677, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4870, - "length": 18, - "value": "\"noiseSuppression\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4890, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 723, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4901, - "length": 14, - "value": "\"channelCount\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 745, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", "kind": "IntegerLiteral", - "offset": 4917, + "offset": 765, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4954, - "length": 12, - "value": "\"sampleRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 784, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", "kind": "IntegerLiteral", - "offset": 4968, - "length": 5, - "value": "48000" + "offset": 2209, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4979, - "length": 12, - "value": "\"sampleSize\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 2238, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", "kind": "IntegerLiteral", - "offset": 4993, - "length": 2, - "value": "32" + "offset": 2268, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5001, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 3393, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5012, - "length": 3, - "value": "192" + "offset": 3856, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5021, - "length": 8, - "value": "\"stereo\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 4319, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 5031, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 4787, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5041, - "length": 5, - "value": "\"dtx\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 5250, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 5718, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 5048, + "offset": 6188, "length": 5, "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5059, - "length": 5, - "value": "\"fec\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 5066, - "length": 4, - "value": "true" + "offset": 7960, + "length": 17, + "value": "\"google.protobuf\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5076, - "length": 17, - "value": "\"maxPlaybackRate\"" + "offset": 8144, + "length": 14, + "value": "\".DoubleValue\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5095, - "length": 5, - "value": "48000" + "offset": 8215, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5106, - "length": 12, - "value": "\"packetTime\"" + "offset": 8231, + "length": 7, + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5120, - "length": 2, - "value": "60" + "offset": 8653, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5128, - "length": 17, - "value": "\"autoGainControl\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 8847, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 8926, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 5147, + "offset": 9130, "length": 5, "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5158, - "length": 18, - "value": "\"echoCancellation\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 5178, + "offset": 9191, "length": 5, "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5189, - "length": 18, - "value": "\"noiseSuppression\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 5209, - "length": 5, - "value": "false" + "offset": 9209, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5220, - "length": 14, - "value": "\"channelCount\"" + "offset": 9385, + "length": 13, + "value": "\".FloatValue\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5236, + "offset": 9455, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5463, + "offset": 9471, "length": 7, - "value": "\"width\"" + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5472, - "length": 3, - "value": "640" + "offset": 9893, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5481, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 10086, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5491, - "length": 3, - "value": "360" + "offset": 10164, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5500, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 10366, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5511, - "length": 3, - "value": "200" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 10427, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5517, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 10445, "length": 4, - "value": "1000" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5527, - "length": 11, - "value": "\"frameRate\"" + "offset": 10621, + "length": 13, + "value": "\".Int64Value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5540, + "offset": 10691, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5568, + "offset": 10707, "length": 7, - "value": "\"width\"" + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5577, - "length": 4, - "value": "1280" + "offset": 11129, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5587, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 11322, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5597, - "length": 3, - "value": "720" + "offset": 11400, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5606, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 11602, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5617, - "length": 3, - "value": "400" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 11663, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5623, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 11681, "length": 4, - "value": "1000" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5633, - "length": 11, - "value": "\"frameRate\"" + "offset": 11858, + "length": 14, + "value": "\".UInt64Value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5646, + "offset": 11929, "length": 1, - "value": "5" + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5675, + "offset": 11945, "length": 7, - "value": "\"width\"" + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5684, - "length": 4, - "value": "1280" + "offset": 12367, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5694, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 12561, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5704, - "length": 3, - "value": "720" + "offset": 12640, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5713, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 12844, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5724, - "length": 4, - "value": "1000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 12905, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5731, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 12923, "length": 4, - "value": "1000" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5741, - "length": 11, - "value": "\"frameRate\"" + "offset": 13099, + "length": 13, + "value": "\".Int32Value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5754, - "length": 2, - "value": "15" + "offset": 13169, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5785, + "offset": 13185, "length": 7, - "value": "\"width\"" + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5794, - "length": 4, - "value": "1920" + "offset": 13607, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5804, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 13800, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5814, - "length": 4, - "value": "1080" + "offset": 13878, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5824, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 14080, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5835, - "length": 4, - "value": "1500" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 14141, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5842, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 14159, "length": 4, - "value": "1000" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5852, - "length": 11, - "value": "\"frameRate\"" + "offset": 14336, + "length": 14, + "value": "\".UInt32Value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5865, - "length": 2, - "value": "15" + "offset": 14407, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5896, + "offset": 14423, "length": 7, - "value": "\"width\"" + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5905, - "length": 4, - "value": "1920" + "offset": 14845, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5915, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 15039, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5925, - "length": 4, - "value": "1080" + "offset": 15118, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5935, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 15322, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5946, - "length": 4, - "value": "1000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 15383, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5953, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 15401, "length": 4, - "value": "1000" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5963, - "length": 11, - "value": "\"frameRate\"" + "offset": 15576, + "length": 12, + "value": "\".BoolValue\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5976, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", - "kind": "StringLiteral", - "offset": 260, - "length": 8, - "value": "\"ARDAMS\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", - "kind": "StringLiteral", - "offset": 291, - "length": 10, - "value": "\"ARDAMSv0\"" + "offset": 15645, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 324, - "length": 10, - "value": "\"ARDAMSa0\"" + "offset": 15661, + "length": 7, + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", - "kind": "StringLiteral", - "offset": 260, - "length": 8, - "value": "\"ARDAMS\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 16083, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", - "kind": "StringLiteral", - "offset": 291, - "length": 10, - "value": "\"ARDAMSv0\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 16275, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", - "kind": "StringLiteral", - "offset": 324, - "length": 10, - "value": "\"ARDAMSa0\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 16356, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 1256, + "offset": 16556, "length": 5, "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", - "kind": "Dictionary", - "offset": 570, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 951, - "length": 4, - "value": "true" + "offset": 16617, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 987, + "offset": 16635, "length": 4, "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 1597, - "length": 2, - "value": "\"\"" + "offset": 16812, + "length": 14, + "value": "\".StringValue\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", - "kind": "BooleanLiteral", - "offset": 1635, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 16883, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", - "kind": "BooleanLiteral", - "offset": 1678, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "StringLiteral", + "offset": 16899, + "length": 7, + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", - "kind": "Array", - "offset": 180, - "length": 15, - "value": "[\"q\", \"h\", \"f\"]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 17321, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", - "kind": "Dictionary", - "offset": 1025, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 17598, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", - "kind": "Dictionary", - "offset": 307, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 17802, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", - "kind": "Dictionary", - "offset": 387, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 17863, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", - "kind": "Dictionary", - "offset": 800, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 17881, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 124, + "offset": 18057, "length": 13, - "value": "\"VideoSDKRTC.PubSubMessage\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", - "kind": "BooleanLiteral", - "offset": 935, - "length": 5, - "value": "false" + "value": "\".BytesValue\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", - "kind": "Dictionary", - "offset": 1591, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 18127, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", - "kind": "Dictionary", - "offset": 1635, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "StringLiteral", + "offset": 18143, + "length": 7, + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", - "kind": "StringLiteral", - "offset": 766, - "length": 10, - "value": "\"VideoSDKRTC.RoomClient\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 18565, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", - "kind": "Dictionary", - "offset": 6809, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 18840, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 830, + "offset": 19042, "length": 5, "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", - "kind": "Dictionary", - "offset": 928, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 19103, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", - "kind": "Dictionary", - "offset": 6323, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 19121, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", - "kind": "Dictionary", - "offset": 8007, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 1186, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", - "kind": "Dictionary", - "offset": 8976, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 1201, + "length": 2, + "value": "31" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/VideoQuality.swift", - "kind": "Dictionary", - "offset": 294, - "length": 961, - "value": "[(\"sd\", [(\"low\", [(\"s\", 0), (\"t\", 2)]), (\"medium\", [(\"s\", 0), (\"t\", 2)]), (\"high\", [(\"s\", 1), (\"t\", 2)]), (\"s0t0\", [(\"s\", 0), (\"t\", 0)]), (\"s0t1\", [(\"s\", 0), (\"t\", 1)]), (\"s0t2\", [(\"s\", 0), (\"t\", 2)]), (\"s1t0\", [(\"s\", 1), (\"t\", 0)]), (\"s1t1\", [(\"s\", 1), (\"t\", 1)]), (\"s1t2\", [(\"s\", 1), (\"t\", 2)]), (\"s2t0\", [(\"s\", 2), (\"t\", 0)]), (\"s2t1\", [(\"s\", 2), (\"t\", 1)]), (\"s2t2\", [(\"s\", 2), (\"t\", 2)])]), (\"hd\", [(\"low\", [(\"s\", 0), (\"t\", 2)]), (\"medium\", [(\"s\", 1), (\"t\", 2)]), (\"high\", [(\"s\", 2), (\"t\", 2)]), (\"s0t0\", [(\"s\", 0), (\"t\", 0)]), (\"s0t1\", [(\"s\", 0), (\"t\", 1)]), (\"s0t2\", [(\"s\", 0), (\"t\", 2)]), (\"s1t0\", [(\"s\", 1), (\"t\", 0)]), (\"s1t1\", [(\"s\", 1), (\"t\", 1)]), (\"s1t2\", [(\"s\", 1), (\"t\", 2)]), (\"s2t0\", [(\"s\", 2), (\"t\", 0)]), (\"s2t1\", [(\"s\", 2), (\"t\", 1)]), (\"s2t2\", [(\"s\", 2), (\"t\", 2)])])]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 1740, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", - "kind": "StringLiteral", - "offset": 1044, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 1755, "length": 2, - "value": "\"\"" + "value": "63" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", - "kind": "StringLiteral", - "offset": 1082, - "length": 7, - "value": "\"Guest\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 2265, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", - "kind": "BooleanLiteral", - "offset": 1118, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 2285, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", - "kind": "BooleanLiteral", - "offset": 1154, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 2793, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", - "kind": "BooleanLiteral", - "offset": 1909, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 2813, + "length": 1, + "value": "1" } ] } \ No newline at end of file diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface index de8def6..eb3f475 100644 --- a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +++ b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -1,16 +1,554 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) +// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) // swift-module-flags: -target arm64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name VideoSDKRTC // swift-module-flags-ignorable: -enable-bare-slash-regex import AVFoundation +import AVKit +import CoreMedia +import Darwin +import Dispatch import Foundation import Mediasoup +import ReplayKit import Swift +import UIKit @_exported import VideoSDKRTC import VideosdkWebSocket import WebRTC import _Concurrency import _StringProcessing +import _SwiftConcurrencyShims +import os.activity +import os.log +import os +public enum Aggregations { + public static func drop() -> any VideoSDKRTC.Aggregation + public static func defaultAggregation() -> any VideoSDKRTC.Aggregation + public static func sum() -> any VideoSDKRTC.Aggregation + public static func lastValue() -> any VideoSDKRTC.Aggregation + public static func explicitBucketHistogram() -> any VideoSDKRTC.Aggregation + public static func explicitBucketHistogram(buckets: [Swift.Double]) -> any VideoSDKRTC.Aggregation +} +public typealias AggregationResolver = (VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +public protocol DefaultAggregationSelector { + func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +} +@_hasMissingDesignatedInitializers public class AggregationSelector : VideoSDKRTC.DefaultAggregationSelector { + public static let instance: VideoSDKRTC.AggregationSelector + final public let selector: VideoSDKRTC.AggregationResolver + public func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation + public static func defaultSelector() -> VideoSDKRTC.AggregationResolver + public func with(instrumentType: VideoSDKRTC.InstrumentType, aggregation: any VideoSDKRTC.Aggregation) -> VideoSDKRTC.AggregationResolver + @objc deinit +} +public protocol AggregationTemporalitySelectorProtocol { + func getAggregationTemporality(for instrument: VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality +} +@_hasMissingDesignatedInitializers public class AggregationTemporalitySelector : VideoSDKRTC.AggregationTemporalitySelectorProtocol { + public func getAggregationTemporality(for instrument: VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality + public var aggregationTemporalitySelector: (VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality + @objc deinit +} +public enum AggregationTemporality { + case delta + case cumulative + public static func alwaysCumulative() -> VideoSDKRTC.AggregationTemporalitySelector + public static func deltaPreferred() -> VideoSDKRTC.AggregationTemporalitySelector + public static func == (a: VideoSDKRTC.AggregationTemporality, b: VideoSDKRTC.AggregationTemporality) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public enum AggregationType : Swift.String, Swift.Codable { + case intGauge + case doubleGauge + case doubleSum + case intSum + case doubleSummary + case intSummary + case doubleHistogram + case intHistogram + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +@_hasMissingDesignatedInitializers public class Aggregator { + public func update(value: T) + public func checkpoint() + public func toMetricData() -> any VideoSDKRTC.MetricData + public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public protocol Aggregation : AnyObject { + func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class AggregatorHandle { + public func aggregateThenMaybeReset(startEpochNano: Swift.UInt64, endEpochNano: Swift.UInt64, attributes: [Swift.String : VideoSDKRTC.AttributeValue], reset: Swift.Bool) -> VideoSDKRTC.PointData + public func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordLong(value: Swift.Int) + public func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordDouble(value: Swift.Double) + @objc deinit +} +public struct Google_Protobuf_Any { + public var typeURL: Swift.String { + get + set + } + public var value: Foundation.Data { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Any : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Any : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Any, rhs: VideoSDKRTC.Google_Protobuf_Any) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public enum AnyUnpackError : Swift.Error { + case typeMismatch + case malformedWellKnownTypeJSON + case malformedAnyField + public static func == (a: VideoSDKRTC.AnyUnpackError, b: VideoSDKRTC.AnyUnpackError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct Google_Protobuf_Api { + public var name: Swift.String + public var methods: [VideoSDKRTC.Google_Protobuf_Method] + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var version: Swift.String + public var sourceContext: VideoSDKRTC.Google_Protobuf_SourceContext { + get + set + } + public var hasSourceContext: Swift.Bool { + get + } + public mutating func clearSourceContext() + public var mixins: [VideoSDKRTC.Google_Protobuf_Mixin] + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Method { + public var name: Swift.String + public var requestTypeURL: Swift.String + public var requestStreaming: Swift.Bool + public var responseTypeURL: Swift.String + public var responseStreaming: Swift.Bool + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Mixin { + public var name: Swift.String + public var root: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Api : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Method : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Mixin : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Api : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Api, rhs: VideoSDKRTC.Google_Protobuf_Api) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Method : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Method, rhs: VideoSDKRTC.Google_Protobuf_Method) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Mixin : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Mixin, rhs: VideoSDKRTC.Google_Protobuf_Mixin) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol APIDoubleObserverMetricHandle { + func observe(value: Swift.Double) +} +public protocol APIIntObserverMetricHandle { + func observe(value: Swift.Int) +} +public struct ArrayWithCapacity { + public let capacity: Swift.Int + public init(capacity: Swift.Int) + public mutating func append(_ item: T) +} +extension VideoSDKRTC.ArrayWithCapacity : Swift.MutableCollection { + public var startIndex: Swift.Int { + get + } + public var endIndex: Swift.Int { + get + } + public subscript(index: Swift.Int) -> T { + get + set + } + public func index(after i: Swift.Int) -> Swift.Int + public typealias Element = T + public typealias Index = Swift.Int + public typealias Indices = Swift.DefaultIndices> + public typealias Iterator = Swift.IndexingIterator> + public typealias SubSequence = Swift.Slice> +} +@_hasMissingDesignatedInitializers public class AsynchronousMetricStorage : VideoSDKRTC.MetricStorage { + public var registeredReader: VideoSDKRTC.RegisteredReader { + get + } + public var metricDescriptor: VideoSDKRTC.MetricDescriptor { + get + } + public func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + public func isEmpty() -> Swift.Bool + @objc deinit +} +#if compiler(>=5.3) && $RethrowsProtocol +@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +extension _Concurrency.AsyncSequence where Self.Element == Swift.UInt8 { + @inlinable public func binaryProtobufDelimitedMessages(of messageType: M.Type = M.self, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) -> VideoSDKRTC.AsyncMessageSequence where M : VideoSDKRTC.Message { + AsyncMessageSequence( + base: self, + extensions: extensions, + partial: partial, + options: options + ) + } +} +#endif +#if compiler(>=5.3) && $RethrowsProtocol +@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +public struct AsyncMessageSequence : _Concurrency.AsyncSequence where Base : _Concurrency.AsyncSequence, M : VideoSDKRTC.Message, Base.Element == Swift.UInt8 { + public typealias Element = M + public init(base: Base, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) + public struct AsyncIterator : _Concurrency.AsyncIteratorProtocol { + @usableFromInline + internal var iterator: Base.AsyncIterator? + @usableFromInline + internal let extensions: (any VideoSDKRTC.ExtensionMap)? + @usableFromInline + internal let partial: Swift.Bool + @usableFromInline + internal let options: VideoSDKRTC.BinaryDecodingOptions + #if compiler(>=5.3) && $AsyncAwait + @inlinable internal mutating func nextVarInt() async throws -> Swift.UInt64? { + var messageSize: UInt64 = 0 + var shift: UInt64 = 0 + + while let byte = try await iterator?.next() { + messageSize |= UInt64(byte & 0x7f) << shift + shift += UInt64(7) + if shift > 35 { + iterator = nil + throw BinaryDelimited.Error.malformedLength + } + if (byte & 0x80 == 0) { + return messageSize + } + } + if (shift > 0) { + // The stream has ended inside a varint. + iterator = nil + throw BinaryDelimited.Error.truncated + } + return nil // End of stream reached. + } + #endif + #if compiler(>=5.3) && $AsyncAwait + @usableFromInline + internal mutating func readBytes(_ size: Swift.Int) async throws -> [Swift.UInt8] + #endif + #if compiler(>=5.3) && $AsyncAwait + @inlinable public mutating func next() async throws -> M? { + guard let messageSize = try await nextVarInt() else { + iterator = nil + return nil + } + guard messageSize <= UInt64(0x7fffffff) else { + iterator = nil + throw BinaryDecodingError.tooLarge + } + if messageSize == 0 { + return try M( + serializedBytes: [], + extensions: extensions, + partial: partial, + options: options + ) + } + let buffer = try await readBytes(Int(messageSize)) + return try M( + serializedBytes: buffer, + extensions: extensions, + partial: partial, + options: options + ) + } + #endif + public typealias Element = M + } + public func makeAsyncIterator() -> VideoSDKRTC.AsyncMessageSequence.AsyncIterator +} +#endif +#if compiler(>=5.3) && $RethrowsProtocol +@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +extension VideoSDKRTC.AsyncMessageSequence : Swift.Sendable where Base : Swift.Sendable { +} +#endif +#if compiler(>=5.3) && $RethrowsProtocol +@available(*, unavailable) +extension VideoSDKRTC.AsyncMessageSequence.AsyncIterator : Swift.Sendable { +} +#endif +public protocol AttributeProcessorProtocol { + func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] +} +@_hasMissingDesignatedInitializers public class AttributeProcessor : VideoSDKRTC.AttributeProcessorProtocol { + public func then(other: VideoSDKRTC.AttributeProcessor) -> VideoSDKRTC.AttributeProcessor + public func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] + public static func filterByKeyName(nameFilter: @escaping (Swift.String) -> Swift.Bool) -> VideoSDKRTC.AttributeProcessor + public static func append(attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.AttributeProcessor + @objc deinit +} +@_hasMissingDesignatedInitializers public class JoinedAttributeProcessor : VideoSDKRTC.AttributeProcessor { + override public func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] + override public func then(other: VideoSDKRTC.AttributeProcessor) -> VideoSDKRTC.AttributeProcessor + public func prepend(processor: VideoSDKRTC.AttributeProcessor) -> VideoSDKRTC.AttributeProcessor + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class NoopAttributeProcessor : VideoSDKRTC.AttributeProcessor { + override public func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] + @objc deinit +} +public struct AttributesDictionary { + public init(capacity: Swift.Int, valueLengthLimit: Swift.Int = Int.max) + public subscript(key: Swift.String) -> VideoSDKRTC.AttributeValue? { + get + set + } + @discardableResult + public mutating func updateValue(value: VideoSDKRTC.AttributeValue, forKey key: Swift.String) -> VideoSDKRTC.AttributeValue? + public mutating func updateValues(attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public mutating func updateValues(attributes: VideoSDKRTC.AttributesDictionary) + public mutating func removeValueForKey(key: Swift.String) -> VideoSDKRTC.AttributeValue? + public mutating func removeAll(keepCapacity: Swift.Int) + public var count: Swift.Int { + get + } + public var numberOfDroppedAttributes: Swift.Int { + get + } + public var values: [VideoSDKRTC.AttributeValue] { + get + } +} +extension VideoSDKRTC.AttributesDictionary : Swift.Sequence { + public func makeIterator() -> VideoSDKRTC.AttributesWithCapacityIterator + public typealias Element = (Swift.String, VideoSDKRTC.AttributeValue) + public typealias Iterator = VideoSDKRTC.AttributesWithCapacityIterator +} +public struct AttributesWithCapacityIterator : Swift.IteratorProtocol { + public mutating func next() -> (Swift.String, VideoSDKRTC.AttributeValue)? + public typealias Element = (Swift.String, VideoSDKRTC.AttributeValue) +} +@_hasMissingDesignatedInitializers open class AttributeSet : Swift.Hashable, Swift.Codable { + public var labels: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public static var empty: VideoSDKRTC.AttributeSet + required public init(labels: [Swift.String : VideoSDKRTC.AttributeValue]) + public static func == (lhs: VideoSDKRTC.AttributeSet, rhs: VideoSDKRTC.AttributeSet) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + @objc deinit + open func encode(to encoder: any Swift.Encoder) throws + open var hashValue: Swift.Int { + get + } + required public init(from decoder: any Swift.Decoder) throws +} +public enum AttributeValue : Swift.Equatable, Swift.CustomStringConvertible, Swift.Hashable { + case string(Swift.String) + case bool(Swift.Bool) + case int(Swift.Int) + case double(Swift.Double) + case stringArray([Swift.String]) + case boolArray([Swift.Bool]) + case intArray([Swift.Int]) + case doubleArray([Swift.Double]) + case set(VideoSDKRTC.AttributeSet) + public var description: Swift.String { + get + } + public init?(_ value: Any) + public static func == (a: VideoSDKRTC.AttributeValue, b: VideoSDKRTC.AttributeValue) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.AttributeValue { + public init(_ value: Swift.String) + public init(_ value: Swift.Bool) + public init(_ value: Swift.Int) + public init(_ value: Swift.Double) + public init(_ value: [Swift.String]) + public init(_ value: [Swift.Int]) + public init(_ value: [Swift.Double]) + public init(_ value: VideoSDKRTC.AttributeSet) +} +extension VideoSDKRTC.AttributeValue : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public protocol Baggage : AnyObject { + static func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder + func getEntries() -> [VideoSDKRTC.Entry] + func getEntryValue(key: VideoSDKRTC.EntryKey) -> VideoSDKRTC.EntryValue? +} +public func == (lhs: any VideoSDKRTC.Baggage, rhs: any VideoSDKRTC.Baggage) -> Swift.Bool +public protocol BaggageBuilder : AnyObject { + @discardableResult + func setParent(_ parent: (any VideoSDKRTC.Baggage)?) -> Self + @discardableResult + func setNoParent() -> Self + @discardableResult + func put(key: VideoSDKRTC.EntryKey, value: VideoSDKRTC.EntryValue, metadata: VideoSDKRTC.EntryMetadata?) -> Self + @discardableResult + func remove(key: VideoSDKRTC.EntryKey) -> Self + func build() -> any VideoSDKRTC.Baggage +} +public protocol BaggageManager : AnyObject { + func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder +} +public class BatchLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public init(logRecordExporter: any VideoSDKRTC.LogRecordExporter, scheduleDelay: Foundation.TimeInterval = 5, exportTimeout: Foundation.TimeInterval = 30, maxQueueSize: Swift.Int = 2048, maxExportBatchSize: Swift.Int = 512, willExportCallback: ((inout [VideoSDKRTC.ReadableLogRecord]) -> Swift.Void)? = nil) + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func forceFlush(timeout: Foundation.TimeInterval?) + public func shutdown() -> VideoSDKRTC.ExportResult + @objc deinit +} +public struct BatchSpanProcessor : VideoSDKRTC.SpanProcessor { + public init(spanExporter: any VideoSDKRTC.SpanExporter, scheduleDelay: Foundation.TimeInterval = 5, exportTimeout: Foundation.TimeInterval = 30, maxQueueSize: Swift.Int = 2048, maxExportBatchSize: Swift.Int = 512, willExportCallback: ((inout [VideoSDKRTC.SpanData]) -> Swift.Void)? = nil) + public let isStartRequired: Swift.Bool + public let isEndRequired: Swift.Bool + public func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + public func onEnd(span: any VideoSDKRTC.ReadableSpan) + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) +} +public enum BinaryDecodingError : Swift.Error { + case trailingGarbage + case truncated + case invalidUTF8 + case malformedProtobuf + case missingRequiredFields + case internalExtensionError + case messageDepthLimit + case tooLarge + public static func == (a: VideoSDKRTC.BinaryDecodingError, b: VideoSDKRTC.BinaryDecodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct BinaryDecodingOptions : Swift.Sendable { + public var messageDepthLimit: Swift.Int + public var discardUnknownFields: Swift.Bool + public init() +} +public enum BinaryDelimited { + public enum Error : Swift.Error { + case unknownStreamError + case truncated + case tooLarge + case malformedLength + case noBytesAvailable + public static func == (a: VideoSDKRTC.BinaryDelimited.Error, b: VideoSDKRTC.BinaryDelimited.Error) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } + public static func serialize(message: any VideoSDKRTC.Message, to stream: Foundation.OutputStream, partial: Swift.Bool = false) throws + public static func parse(messageType: M.Type, from stream: Foundation.InputStream, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws -> M where M : VideoSDKRTC.Message + public static func merge(into message: inout M, from stream: Foundation.InputStream, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws where M : VideoSDKRTC.Message +} +public enum BinaryEncodingError : Swift.Error { + case anyTranscodeFailure + case missingRequiredFields + case tooLarge + public static func == (a: VideoSDKRTC.BinaryEncodingError, b: VideoSDKRTC.BinaryEncodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +open class BoundCounterMetric { + public init() + open func add(value: T) + @objc deinit +} +open class BoundHistogramMetric { + public init(explicitBoundaries: Swift.Array? = nil) + open func record(value: T) + @objc deinit +} +open class BoundMeasureMetric { + public init() + open func record(value: T) + @objc deinit +} +open class BoundRawCounterMetric { + public init() + open func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date) + @objc deinit +} +open class BoundRawHistogramMetric { + public init() + open func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T) + @objc deinit +} +@_hasMissingDesignatedInitializers public class CallbackRegistration { + public func execute(reader: VideoSDKRTC.RegisteredReader, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) + @objc deinit +} public enum CameraPosition : Swift.Int { case back case front @@ -21,6 +559,197 @@ public enum CameraPosition : Swift.Int { get } } +public protocol Clock : AnyObject { + var now: Foundation.Date { get } +} +extension VideoSDKRTC.Clock { + public var nanoTime: Swift.UInt64 { + get + } +} +public func == (lhs: any VideoSDKRTC.Clock, rhs: any VideoSDKRTC.Clock) -> Swift.Bool +public protocol CollectionRegistration { +} +public struct Opentelemetry_Proto_Common_V1_AnyValue { + public var value: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value? + public var stringValue: Swift.String { + get + set + } + public var boolValue: Swift.Bool { + get + set + } + public var intValue: Swift.Int64 { + get + set + } + public var doubleValue: Swift.Double { + get + set + } + public var arrayValue: VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue { + get + set + } + public var kvlistValue: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList { + get + set + } + public var bytesValue: Foundation.Data { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Value : Swift.Equatable { + case stringValue(Swift.String) + case boolValue(Swift.Bool) + case intValue(Swift.Int64) + case doubleValue(Swift.Double) + case arrayValue(VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue) + case kvlistValue(VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList) + case bytesValue(Foundation.Data) + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value) -> Swift.Bool + } + public init() +} +public struct Opentelemetry_Proto_Common_V1_ArrayValue { + public var values: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Common_V1_KeyValueList { + public var values: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Common_V1_KeyValue { + public var key: Swift.String + public var value: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue { + get + set + } + public var hasValue: Swift.Bool { + get + } + public mutating func clearValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Common_V1_InstrumentationScope { + public var name: Swift.String + public var version: Swift.String + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct CommonAdapter { + public static func toProtoAttribute(key: Swift.String, attributeValue: VideoSDKRTC.AttributeValue) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue + public static func toProtoInstrumentationScope(instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope +} +public protocol ContextManager : AnyObject { + func getCurrentContextValue(forKey: VideoSDKRTC.OpenTelemetryContextKeys) -> Swift.AnyObject? + func setCurrentContextValue(forKey: VideoSDKRTC.OpenTelemetryContextKeys, value: Swift.AnyObject) + func removeContextValue(forKey: VideoSDKRTC.OpenTelemetryContextKeys, value: Swift.AnyObject) +} +public protocol ContextPropagators { + var textMapPropagator: any VideoSDKRTC.TextMapPropagator { get } + var textMapBaggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator { get } +} +public protocol CounterMetric { + associatedtype T + func add(value: Self.T, labelset: VideoSDKRTC.LabelSet) + func add(value: Self.T, labels: [Swift.String : Swift.String]) + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundCounterMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundCounterMetric +} +public struct AnyCounterMetric : VideoSDKRTC.CounterMetric { + public init(_ countable: U) where T == U.T, U : VideoSDKRTC.CounterMetric + public func add(value: T, labelset: VideoSDKRTC.LabelSet) + public func add(value: T, labels: [Swift.String : Swift.String]) + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundCounterMetric +} +public struct NoopCounterMetric : VideoSDKRTC.CounterMetric { + public init() + public func add(value: T, labelset: VideoSDKRTC.LabelSet) + public func add(value: T, labels: [Swift.String : Swift.String]) + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundCounterMetric +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class CounterSumAggregator : VideoSDKRTC.Aggregator where T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +@_hasMissingDesignatedInitializers public class CustomRTCMediaStream { + @objc deinit +} public enum CustomVideoTrackConfig { case h90p_w160p, h180p_w320p, h216p_w384p, h360p_w640p, h540p_w960p, h720p_w1280p, h1080p_w1920p, h1440p_w2560p, h2160p_w3840p, h120p_w160p, h180p_w240p, h240p_w320p, h360p_w480p, h480p_w640p, h540p_w720p, h720p_w960p, h1080p_w1440p, h1440p_w1920p public static func == (a: VideoSDKRTC.CustomVideoTrackConfig, b: VideoSDKRTC.CustomVideoTrackConfig) -> Swift.Bool @@ -29,196 +758,7653 @@ public enum CustomVideoTrackConfig { get } } -@_hasMissingDesignatedInitializers public class CustomRTCMediaStream { - @objc deinit -} -extension Foundation.Data { - public func toJSONString() -> Swift.String - public func toJSON() -> [Swift.String : Any] - public func toJSONArray() -> [Any] +@_hasMissingDesignatedInitializers public class DefaultAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.DefaultAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +final public class DefaultBaggage : VideoSDKRTC.Baggage, Swift.Equatable { + public init(entries: [VideoSDKRTC.EntryKey : VideoSDKRTC.Entry?]) + public static func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder + final public func getEntries() -> [VideoSDKRTC.Entry] + final public func getEntryValue(key: VideoSDKRTC.EntryKey) -> VideoSDKRTC.EntryValue? + public static func == (lhs: VideoSDKRTC.DefaultBaggage, rhs: VideoSDKRTC.DefaultBaggage) -> Swift.Bool + @objc deinit +} +public class DefaultBaggageBuilder : VideoSDKRTC.BaggageBuilder { + public init() + @discardableResult + public func setParent(_ parent: (any VideoSDKRTC.Baggage)?) -> Self + @discardableResult + public func setNoParent() -> Self + @discardableResult + public func put(key: VideoSDKRTC.EntryKey, value: VideoSDKRTC.EntryValue, metadata: VideoSDKRTC.EntryMetadata?) -> Self + @discardableResult + public func put(key: Swift.String, value: Swift.String, metadata: Swift.String? = nil) -> Self + @discardableResult + public func remove(key: VideoSDKRTC.EntryKey) -> Self + public func build() -> any VideoSDKRTC.Baggage + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultBaggageManager : VideoSDKRTC.BaggageManager { + public static var instance: VideoSDKRTC.DefaultBaggageManager + public func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder + public func getCurrentBaggage() -> (any VideoSDKRTC.Baggage)? + @objc deinit +} +public struct DefaultContextPropagators : VideoSDKRTC.ContextPropagators { + public var textMapPropagator: any VideoSDKRTC.TextMapPropagator + public var textMapBaggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator + public init() + public init(textPropagators: [any VideoSDKRTC.TextMapPropagator], baggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator) + public mutating func addTextMapPropagator(textFormat: any VideoSDKRTC.TextMapPropagator) +} +@_hasMissingDesignatedInitializers public class DefaultLogger : VideoSDKRTC.Logger { + public func eventBuilder(name: Swift.String) -> any VideoSDKRTC.EventBuilder + public func logRecordBuilder() -> any VideoSDKRTC.LogRecordBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultLoggerProvider : VideoSDKRTC.LoggerProvider { + public static let instance: any VideoSDKRTC.LoggerProvider + public func get(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.Logger + public func loggerBuilder(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.LoggerBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultMeterProvider : VideoSDKRTC.MeterProvider { + public static var instance: any VideoSDKRTC.MeterProvider + public static func setDefault(meterFactory: any VideoSDKRTC.MeterProvider) + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Meter + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultStableMeter : VideoSDKRTC.StableMeter { + public func counterBuilder(name: Swift.String) -> any VideoSDKRTC.LongCounterBuilder + public func upDownCounterBuilder(name: Swift.String) -> any VideoSDKRTC.LongUpDownCounterBuilder + public func histogramBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleHistogramBuilder + public func gaugeBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleGaugeBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultStableMeterProvider : VideoSDKRTC.StableMeterProvider { + public static func noop() -> any VideoSDKRTC.MeterBuilder + public func get(name: Swift.String) -> any VideoSDKRTC.StableMeter + public func meterBuilder(name: Swift.String) -> any VideoSDKRTC.MeterBuilder + public static var instance: any VideoSDKRTC.StableMeterProvider + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultTracer : VideoSDKRTC.Tracer { + public static var instance: VideoSDKRTC.DefaultTracer + public func spanBuilder(spanName: Swift.String) -> any VideoSDKRTC.SpanBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultTracerProvider : VideoSDKRTC.TracerProvider { + public static let instance: VideoSDKRTC.DefaultTracerProvider + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Tracer + @objc deinit +} +public struct Google_Protobuf_FileDescriptorSet { + public var file: [VideoSDKRTC.Google_Protobuf_FileDescriptorProto] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_FileDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var package: Swift.String { + get + set + } + public var hasPackage: Swift.Bool { + get + } + public mutating func clearPackage() + public var dependency: [Swift.String] + public var publicDependency: [Swift.Int32] + public var weakDependency: [Swift.Int32] + public var messageType: [VideoSDKRTC.Google_Protobuf_DescriptorProto] + public var enumType: [VideoSDKRTC.Google_Protobuf_EnumDescriptorProto] + public var service: [VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto] + public var `extension`: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_FileOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var sourceCodeInfo: VideoSDKRTC.Google_Protobuf_SourceCodeInfo { + get + set + } + public var hasSourceCodeInfo: Swift.Bool { + get + } + public mutating func clearSourceCodeInfo() + public var syntax: Swift.String { + get + set + } + public var hasSyntax: Swift.Bool { + get + } + public mutating func clearSyntax() + public var edition: Swift.String { + get + set + } + public var hasEdition: Swift.Bool { + get + } + public mutating func clearEdition() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_DescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var field: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto] + public var `extension`: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto] + public var nestedType: [VideoSDKRTC.Google_Protobuf_DescriptorProto] + public var enumType: [VideoSDKRTC.Google_Protobuf_EnumDescriptorProto] + public var extensionRange: [VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange] + public var oneofDecl: [VideoSDKRTC.Google_Protobuf_OneofDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_MessageOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var reservedRange: [VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange] + public var reservedName: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct ExtensionRange { + public var start: Swift.Int32 { + get + set + } + public var hasStart: Swift.Bool { + get + } + public mutating func clearStart() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var options: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public struct ReservedRange { + public var start: Swift.Int32 { + get + set + } + public var hasStart: Swift.Bool { + get + } + public mutating func clearStart() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_ExtensionRangeOptions : VideoSDKRTC.ExtensibleMessage { + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var declaration: [VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration] + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var verification: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState { + get + set + } + public var hasVerification: Swift.Bool { + get + } + public mutating func clearVerification() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum VerificationState : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case declaration + case unverified + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState] + public static var allCases: [VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState] { + get + } + } + public struct Declaration { + public var number: Swift.Int32 { + get + set + } + public var hasNumber: Swift.Bool { + get + } + public mutating func clearNumber() + public var fullName: Swift.String { + get + set + } + public var hasFullName: Swift.Bool { + get + } + public mutating func clearFullName() + public var type: Swift.String { + get + set + } + public var hasType: Swift.Bool { + get + } + public mutating func clearType() + public var reserved: Swift.Bool { + get + set + } + public var hasReserved: Swift.Bool { + get + } + public mutating func clearReserved() + public var repeated: Swift.Bool { + get + set + } + public var hasRepeated: Swift.Bool { + get + } + public mutating func clearRepeated() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_FieldDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var number: Swift.Int32 { + get + set + } + public var hasNumber: Swift.Bool { + get + } + public mutating func clearNumber() + public var label: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label { + get + set + } + public var hasLabel: Swift.Bool { + get + } + public mutating func clearLabel() + public var type: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum { + get + set + } + public var hasType: Swift.Bool { + get + } + public mutating func clearType() + public var typeName: Swift.String { + get + set + } + public var hasTypeName: Swift.Bool { + get + } + public mutating func clearTypeName() + public var extendee: Swift.String { + get + set + } + public var hasExtendee: Swift.Bool { + get + } + public mutating func clearExtendee() + public var defaultValue: Swift.String { + get + set + } + public var hasDefaultValue: Swift.Bool { + get + } + public mutating func clearDefaultValue() + public var oneofIndex: Swift.Int32 { + get + set + } + public var hasOneofIndex: Swift.Bool { + get + } + public mutating func clearOneofIndex() + public var jsonName: Swift.String { + get + set + } + public var hasJsonName: Swift.Bool { + get + } + public mutating func clearJsonName() + public var options: VideoSDKRTC.Google_Protobuf_FieldOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var proto3Optional: Swift.Bool { + get + set + } + public var hasProto3Optional: Swift.Bool { + get + } + public mutating func clearProto3Optional() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum TypeEnum : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case double + case float + case int64 + case uint64 + case int32 + case fixed64 + case fixed32 + case bool + case string + case group + case message + case bytes + case uint32 + case `enum` + case sfixed32 + case sfixed64 + case sint32 + case sint64 + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum] { + get + } + } + public enum Label : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case optional + case required + case repeated + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label] { + get + } + } + public init() +} +public struct Google_Protobuf_OneofDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var options: VideoSDKRTC.Google_Protobuf_OneofOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_EnumDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var value: [VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_EnumOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var reservedRange: [VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange] + public var reservedName: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct EnumReservedRange { + public var start: Swift.Int32 { + get + set + } + public var hasStart: Swift.Bool { + get + } + public mutating func clearStart() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_EnumValueDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var number: Swift.Int32 { + get + set + } + public var hasNumber: Swift.Bool { + get + } + public mutating func clearNumber() + public var options: VideoSDKRTC.Google_Protobuf_EnumValueOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_ServiceDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var method: [VideoSDKRTC.Google_Protobuf_MethodDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_ServiceOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_MethodDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var inputType: Swift.String { + get + set + } + public var hasInputType: Swift.Bool { + get + } + public mutating func clearInputType() + public var outputType: Swift.String { + get + set + } + public var hasOutputType: Swift.Bool { + get + } + public mutating func clearOutputType() + public var options: VideoSDKRTC.Google_Protobuf_MethodOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var clientStreaming: Swift.Bool { + get + set + } + public var hasClientStreaming: Swift.Bool { + get + } + public mutating func clearClientStreaming() + public var serverStreaming: Swift.Bool { + get + set + } + public var hasServerStreaming: Swift.Bool { + get + } + public mutating func clearServerStreaming() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_FileOptions : VideoSDKRTC.ExtensibleMessage { + public var javaPackage: Swift.String { + get + set + } + public var hasJavaPackage: Swift.Bool { + get + } + public mutating func clearJavaPackage() + public var javaOuterClassname: Swift.String { + get + set + } + public var hasJavaOuterClassname: Swift.Bool { + get + } + public mutating func clearJavaOuterClassname() + public var javaMultipleFiles: Swift.Bool { + get + set + } + public var hasJavaMultipleFiles: Swift.Bool { + get + } + public mutating func clearJavaMultipleFiles() + public var javaGenerateEqualsAndHash: Swift.Bool { + get + set + } + public var hasJavaGenerateEqualsAndHash: Swift.Bool { + get + } + public mutating func clearJavaGenerateEqualsAndHash() + public var javaStringCheckUtf8: Swift.Bool { + get + set + } + public var hasJavaStringCheckUtf8: Swift.Bool { + get + } + public mutating func clearJavaStringCheckUtf8() + public var optimizeFor: VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode { + get + set + } + public var hasOptimizeFor: Swift.Bool { + get + } + public mutating func clearOptimizeFor() + public var goPackage: Swift.String { + get + set + } + public var hasGoPackage: Swift.Bool { + get + } + public mutating func clearGoPackage() + public var ccGenericServices: Swift.Bool { + get + set + } + public var hasCcGenericServices: Swift.Bool { + get + } + public mutating func clearCcGenericServices() + public var javaGenericServices: Swift.Bool { + get + set + } + public var hasJavaGenericServices: Swift.Bool { + get + } + public mutating func clearJavaGenericServices() + public var pyGenericServices: Swift.Bool { + get + set + } + public var hasPyGenericServices: Swift.Bool { + get + } + public mutating func clearPyGenericServices() + public var phpGenericServices: Swift.Bool { + get + set + } + public var hasPhpGenericServices: Swift.Bool { + get + } + public mutating func clearPhpGenericServices() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var ccEnableArenas: Swift.Bool { + get + set + } + public var hasCcEnableArenas: Swift.Bool { + get + } + public mutating func clearCcEnableArenas() + public var objcClassPrefix: Swift.String { + get + set + } + public var hasObjcClassPrefix: Swift.Bool { + get + } + public mutating func clearObjcClassPrefix() + public var csharpNamespace: Swift.String { + get + set + } + public var hasCsharpNamespace: Swift.Bool { + get + } + public mutating func clearCsharpNamespace() + public var swiftPrefix: Swift.String { + get + set + } + public var hasSwiftPrefix: Swift.Bool { + get + } + public mutating func clearSwiftPrefix() + public var phpClassPrefix: Swift.String { + get + set + } + public var hasPhpClassPrefix: Swift.Bool { + get + } + public mutating func clearPhpClassPrefix() + public var phpNamespace: Swift.String { + get + set + } + public var hasPhpNamespace: Swift.Bool { + get + } + public mutating func clearPhpNamespace() + public var phpMetadataNamespace: Swift.String { + get + set + } + public var hasPhpMetadataNamespace: Swift.Bool { + get + } + public mutating func clearPhpMetadataNamespace() + public var rubyPackage: Swift.String { + get + set + } + public var hasRubyPackage: Swift.Bool { + get + } + public mutating func clearRubyPackage() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OptimizeMode : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case speed + case codeSize + case liteRuntime + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode] { + get + } + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_MessageOptions : VideoSDKRTC.ExtensibleMessage { + public var messageSetWireFormat: Swift.Bool { + get + set + } + public var hasMessageSetWireFormat: Swift.Bool { + get + } + public mutating func clearMessageSetWireFormat() + public var noStandardDescriptorAccessor: Swift.Bool { + get + set + } + public var hasNoStandardDescriptorAccessor: Swift.Bool { + get + } + public mutating func clearNoStandardDescriptorAccessor() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var mapEntry: Swift.Bool { + get + set + } + public var hasMapEntry: Swift.Bool { + get + } + public mutating func clearMapEntry() + public var deprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + set + } + public var hasDeprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + } + public mutating func clearDeprecatedLegacyJsonFieldConflicts() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_FieldOptions : VideoSDKRTC.ExtensibleMessage { + public var ctype: VideoSDKRTC.Google_Protobuf_FieldOptions.CType { + get + set + } + public var hasCtype: Swift.Bool { + get + } + public mutating func clearCtype() + public var packed: Swift.Bool { + get + set + } + public var hasPacked: Swift.Bool { + get + } + public mutating func clearPacked() + public var jstype: VideoSDKRTC.Google_Protobuf_FieldOptions.JSType { + get + set + } + public var hasJstype: Swift.Bool { + get + } + public mutating func clearJstype() + public var lazy: Swift.Bool { + get + set + } + public var hasLazy: Swift.Bool { + get + } + public mutating func clearLazy() + public var unverifiedLazy: Swift.Bool { + get + set + } + public var hasUnverifiedLazy: Swift.Bool { + get + } + public mutating func clearUnverifiedLazy() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var weak: Swift.Bool { + get + set + } + public var hasWeak: Swift.Bool { + get + } + public mutating func clearWeak() + public var debugRedact: Swift.Bool { + get + set + } + public var hasDebugRedact: Swift.Bool { + get + } + public mutating func clearDebugRedact() + public var retention: VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention { + get + set + } + public var hasRetention: Swift.Bool { + get + } + public mutating func clearRetention() + public var targets: [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType] + public var editionDefaults: [VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault] + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum CType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case string + case cord + case stringPiece + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.CType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.CType] { + get + } + } + public enum JSType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case jsNormal + case jsString + case jsNumber + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.JSType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.JSType] { + get + } + } + public enum OptionRetention : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case retentionUnknown + case retentionRuntime + case retentionSource + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention] { + get + } + } + public enum OptionTargetType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case targetTypeUnknown + case targetTypeFile + case targetTypeExtensionRange + case targetTypeMessage + case targetTypeField + case targetTypeOneof + case targetTypeEnum + case targetTypeEnumEntry + case targetTypeService + case targetTypeMethod + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType] { + get + } + } + public struct EditionDefault { + public var edition: Swift.String { + get + set + } + public var hasEdition: Swift.Bool { + get + } + public mutating func clearEdition() + public var value: Swift.String { + get + set + } + public var hasValue: Swift.Bool { + get + } + public mutating func clearValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_OneofOptions : VideoSDKRTC.ExtensibleMessage { + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_EnumOptions : VideoSDKRTC.ExtensibleMessage { + public var allowAlias: Swift.Bool { + get + set + } + public var hasAllowAlias: Swift.Bool { + get + } + public mutating func clearAllowAlias() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var deprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + set + } + public var hasDeprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + } + public mutating func clearDeprecatedLegacyJsonFieldConflicts() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_EnumValueOptions : VideoSDKRTC.ExtensibleMessage { + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var debugRedact: Swift.Bool { + get + set + } + public var hasDebugRedact: Swift.Bool { + get + } + public mutating func clearDebugRedact() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_ServiceOptions : VideoSDKRTC.ExtensibleMessage { + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_MethodOptions : VideoSDKRTC.ExtensibleMessage { + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var idempotencyLevel: VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel { + get + set + } + public var hasIdempotencyLevel: Swift.Bool { + get + } + public mutating func clearIdempotencyLevel() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum IdempotencyLevel : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case idempotencyUnknown + case noSideEffects + case idempotent + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel] + public static var allCases: [VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel] { + get + } + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_UninterpretedOption { + public var name: [VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart] + public var identifierValue: Swift.String { + get + set + } + public var hasIdentifierValue: Swift.Bool { + get + } + public mutating func clearIdentifierValue() + public var positiveIntValue: Swift.UInt64 { + get + set + } + public var hasPositiveIntValue: Swift.Bool { + get + } + public mutating func clearPositiveIntValue() + public var negativeIntValue: Swift.Int64 { + get + set + } + public var hasNegativeIntValue: Swift.Bool { + get + } + public mutating func clearNegativeIntValue() + public var doubleValue: Swift.Double { + get + set + } + public var hasDoubleValue: Swift.Bool { + get + } + public mutating func clearDoubleValue() + public var stringValue: Foundation.Data { + get + set + } + public var hasStringValue: Swift.Bool { + get + } + public mutating func clearStringValue() + public var aggregateValue: Swift.String { + get + set + } + public var hasAggregateValue: Swift.Bool { + get + } + public mutating func clearAggregateValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct NamePart { + public var namePart: Swift.String { + get + set + } + public var hasNamePart: Swift.Bool { + get + } + public mutating func clearNamePart() + public var isExtension: Swift.Bool { + get + set + } + public var hasIsExtension: Swift.Bool { + get + } + public mutating func clearIsExtension() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_FeatureSet : VideoSDKRTC.ExtensibleMessage { + public var fieldPresence: VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence { + get + set + } + public var hasFieldPresence: Swift.Bool { + get + } + public mutating func clearFieldPresence() + public var enumType: VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType { + get + set + } + public var hasEnumType: Swift.Bool { + get + } + public mutating func clearEnumType() + public var repeatedFieldEncoding: VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding { + get + set + } + public var hasRepeatedFieldEncoding: Swift.Bool { + get + } + public mutating func clearRepeatedFieldEncoding() + public var stringFieldValidation: VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation { + get + set + } + public var hasStringFieldValidation: Swift.Bool { + get + } + public mutating func clearStringFieldValidation() + public var messageEncoding: VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding { + get + set + } + public var hasMessageEncoding: Swift.Bool { + get + } + public mutating func clearMessageEncoding() + public var jsonFormat: VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat { + get + set + } + public var hasJsonFormat: Swift.Bool { + get + } + public mutating func clearJsonFormat() + public var rawFeatures: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasRawFeatures: Swift.Bool { + get + } + public mutating func clearRawFeatures() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum FieldPresence : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case explicit + case implicit + case legacyRequired + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence] { + get + } + } + public enum EnumType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case open + case closed + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType] { + get + } + } + public enum RepeatedFieldEncoding : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case packed + case expanded + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding] { + get + } + } + public enum StringFieldValidation : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case mandatory + case hint + case none + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation] { + get + } + } + public enum MessageEncoding : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case lengthPrefixed + case delimited + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding] { + get + } + } + public enum JsonFormat : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case allow + case legacyBestEffort + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat] { + get + } + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_SourceCodeInfo { + public var location: [VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct Location { + public var path: [Swift.Int32] + public var span: [Swift.Int32] + public var leadingComments: Swift.String { + get + set + } + public var hasLeadingComments: Swift.Bool { + get + } + public mutating func clearLeadingComments() + public var trailingComments: Swift.String { + get + set + } + public var hasTrailingComments: Swift.Bool { + get + } + public mutating func clearTrailingComments() + public var leadingDetachedComments: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_GeneratedCodeInfo { + public var annotation: [VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct Annotation { + public var path: [Swift.Int32] + public var sourceFile: Swift.String { + get + set + } + public var hasSourceFile: Swift.Bool { + get + } + public mutating func clearSourceFile() + public var begin: Swift.Int32 { + get + set + } + public var hasBegin: Swift.Bool { + get + } + public mutating func clearBegin() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var semantic: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic { + get + set + } + public var hasSemantic: Swift.Bool { + get + } + public mutating func clearSemantic() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum Semantic : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case none + case set + case alias + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic] + public static var allCases: [VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic] { + get + } + } + public init() + } + public init() +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorSet : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_OneofDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_MethodDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FileOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_MessageOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_OneofOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumValueOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ServiceOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_MethodOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorSet : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FileDescriptorSet, rhs: VideoSDKRTC.Google_Protobuf_FileDescriptorSet) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FileDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_FileDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_DescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange, rhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange, rhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions, rhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration, rhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_OneofDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_OneofDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_OneofDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange, rhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_MethodDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_MethodDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_MethodDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FileOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FileOptions, rhs: VideoSDKRTC.Google_Protobuf_FileOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_MessageOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_MessageOptions, rhs: VideoSDKRTC.Google_Protobuf_MessageOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldOptions, rhs: VideoSDKRTC.Google_Protobuf_FieldOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.CType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.JSType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault, rhs: VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_OneofOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_OneofOptions, rhs: VideoSDKRTC.Google_Protobuf_OneofOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumOptions, rhs: VideoSDKRTC.Google_Protobuf_EnumOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumValueOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumValueOptions, rhs: VideoSDKRTC.Google_Protobuf_EnumValueOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ServiceOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ServiceOptions, rhs: VideoSDKRTC.Google_Protobuf_ServiceOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_MethodOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_MethodOptions, rhs: VideoSDKRTC.Google_Protobuf_MethodOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption, rhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart, rhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FeatureSet, rhs: VideoSDKRTC.Google_Protobuf_FeatureSet) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo, rhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location, rhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo, rhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation, rhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +public protocol DoubleCounter { + mutating func add(value: Swift.Double) + mutating func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol DoubleCounterBuilder : AnyObject { + func build() -> any VideoSDKRTC.DoubleCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleCounter +} +@_hasMissingDesignatedInitializers public class DoubleCounterMeterBuilderSdk : VideoSDKRTC.DoubleCounterBuilder { + public func build() -> any VideoSDKRTC.DoubleCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleCounter + @objc deinit +} +public enum HistogramAggregatorError : Swift.Error { + case unsupportedOperation(Swift.String) +} +public class DoubleExplicitBucketHistogramAggregator : VideoSDKRTC.StableAggregator { + public init(boundaries: [Swift.Double], reservoirSupplier: @escaping () -> VideoSDKRTC.ExemplarReservoir) + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol DoubleGaugeBuilder : AnyObject { + func ofLongs() -> any VideoSDKRTC.LongGaugeBuilder + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleGauge +} +@_hasMissingDesignatedInitializers public class DoubleGaugeBuilderSdk : VideoSDKRTC.DoubleGaugeBuilder { + public func ofLongs() -> any VideoSDKRTC.LongGaugeBuilder + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleGauge + @objc deinit +} +public protocol DoubleHistogram { + mutating func record(value: Swift.Double) + mutating func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol DoubleHistogramBuilder : AnyObject { + func ofLongs() -> any VideoSDKRTC.LongHistogramBuilder + func build() -> any VideoSDKRTC.DoubleHistogram +} +@_hasMissingDesignatedInitializers public class DoubleHistogramMeterBuilderSdk : VideoSDKRTC.DoubleHistogramBuilder { + public func ofLongs() -> any VideoSDKRTC.LongHistogramBuilder + public func build() -> any VideoSDKRTC.DoubleHistogram + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleHistogramMeterSdk : VideoSDKRTC.DoubleHistogram, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public var storage: any VideoSDKRTC.WritableMetricStorage + public func record(value: Swift.Double) + public func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleLastValueAggregator : VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol DoubleObserverMetric { + func observe(value: Swift.Double, labelset: VideoSDKRTC.LabelSet) + func observe(value: Swift.Double, labels: [Swift.String : Swift.String]) +} +public struct NoopDoubleObserverMetric : VideoSDKRTC.DoubleObserverMetric { + public init() + public func observe(value: Swift.Double, labelset: VideoSDKRTC.LabelSet) + public func observe(value: Swift.Double, labels: [Swift.String : Swift.String]) +} +@_hasMissingDesignatedInitializers public class DoublePointData : VideoSDKRTC.PointData { + public var value: Swift.Double + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleSumAggregator : VideoSDKRTC.SumAggregator, VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol DoubleUpDownCounter { + mutating func add(value: Swift.Double) + mutating func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol DoubleUpDownCounterBuilder : AnyObject { + func build() -> any VideoSDKRTC.DoubleUpDownCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleUpDownCounter +} +@_hasMissingDesignatedInitializers public class DoubleUpDownCounterBuilderSdk : VideoSDKRTC.DoubleUpDownCounterBuilder { + public func build() -> any VideoSDKRTC.DoubleUpDownCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleUpDownCounter + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleUpDownCounterSdk : VideoSDKRTC.DoubleUpDownCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor { + get + } + public func add(value: Swift.Double) + public func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_hasMissingDesignatedInitializers public class DropAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.DropAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +@_hasMissingDesignatedInitializers public class DropAggregator : VideoSDKRTC.StableAggregator { + public static var POINT_DATA: VideoSDKRTC.PointData { + get + } + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) -> VideoSDKRTC.PointData + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public struct Google_Protobuf_Duration { + public var seconds: Swift.Int64 + public var nanos: Swift.Int32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Duration : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Duration : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Google_Protobuf_Empty { + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Empty : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Empty : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Empty, rhs: VideoSDKRTC.Google_Protobuf_Empty) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class EmptyMetricStorage { + public func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public static var instance: VideoSDKRTC.EmptyMetricStorage + public var metricDescriptor: VideoSDKRTC.MetricDescriptor + public func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + public func isEmpty() -> Swift.Bool + @objc deinit +} +public struct Entry : Swift.Equatable, Swift.Comparable { + public var key: VideoSDKRTC.EntryKey { + get + } + public var value: VideoSDKRTC.EntryValue { + get + } + public var metadata: VideoSDKRTC.EntryMetadata? { + get + } + public init(key: VideoSDKRTC.EntryKey, value: VideoSDKRTC.EntryValue, metadata: VideoSDKRTC.EntryMetadata?) + public static func < (lhs: VideoSDKRTC.Entry, rhs: VideoSDKRTC.Entry) -> Swift.Bool + public static func == (a: VideoSDKRTC.Entry, b: VideoSDKRTC.Entry) -> Swift.Bool +} +public struct EntryKey : Swift.Equatable, Swift.Comparable, Swift.Hashable { + public var name: Swift.String { + get + } + public init?(name: Swift.String) + public static func < (lhs: VideoSDKRTC.EntryKey, rhs: VideoSDKRTC.EntryKey) -> Swift.Bool + public static func == (a: VideoSDKRTC.EntryKey, b: VideoSDKRTC.EntryKey) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct EntryMetadata : Swift.Equatable { + public var metadata: Swift.String + public init?(metadata: Swift.String?) + public static func == (a: VideoSDKRTC.EntryMetadata, b: VideoSDKRTC.EntryMetadata) -> Swift.Bool +} +public struct EntryValue : Swift.Equatable { + public var string: Swift.String { + get + } + public init?(string: Swift.String) + public static func == (a: VideoSDKRTC.EntryValue, b: VideoSDKRTC.EntryValue) -> Swift.Bool +} +public protocol Enum : Swift.CaseIterable, Swift.Hashable, Swift.RawRepresentable, Swift.Sendable { + init() + init?(rawValue: Swift.Int) + var rawValue: Swift.Int { get } +} +extension VideoSDKRTC.Enum { + public func hash(into hasher: inout Swift.Hasher) +} +public struct EnvironmentContextPropagator : VideoSDKRTC.TextMapPropagator { + public let fields: Swift.Set + public init() + public func inject(spanContext: VideoSDKRTC.SpanContext, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + public func extract(carrier: [Swift.String : Swift.String], getter: G) -> VideoSDKRTC.SpanContext? where G : VideoSDKRTC.Getter +} +public struct EnvVarHeaders { + public static let attributes: [(Swift.String, Swift.String)]? + public static func attributes(for rawEnvAttributes: Swift.String? = ProcessInfo.processInfo.environment["OTEL_EXPORTER_OTLP_HEADERS"]) -> [(Swift.String, Swift.String)]? +} +public struct EnvVarResource { + public static let resource: VideoSDKRTC.Resource + public static func get(environment: [Swift.String : Swift.String] = ProcessInfo.processInfo.environment) -> VideoSDKRTC.Resource +} +public protocol EventBuilder : VideoSDKRTC.LogRecordBuilder { + func setData(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self +} +@_hasMissingDesignatedInitializers public class ExemplarData : Swift.Equatable { + public var filteredAttributes: [Swift.String : VideoSDKRTC.AttributeValue] + public var epochNanos: Swift.UInt64 + public var spanContext: VideoSDKRTC.SpanContext? + public static func == (lhs: VideoSDKRTC.ExemplarData, rhs: VideoSDKRTC.ExemplarData) -> Swift.Bool + @objc deinit +} +@_hasMissingDesignatedInitializers final public class DoubleExemplarData : VideoSDKRTC.ExemplarData { + final public var value: Swift.Double + @objc deinit +} +@_hasMissingDesignatedInitializers final public class LongExemplarData : VideoSDKRTC.ExemplarData { + final public var value: Swift.Int + @objc deinit +} +public protocol ExemplarFilter { + func shouldSampleMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool + func shouldSampleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool +} +public struct AlwaysOnFilter : VideoSDKRTC.ExemplarFilter { + public func shouldSampleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool + public func shouldSampleMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool +} +public struct AlwaysOffFilter : VideoSDKRTC.ExemplarFilter { + public init() + public func shouldSampleMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool + public func shouldSampleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class ExemplarReservoir { + public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class NoopExemplarReservoir : VideoSDKRTC.ExemplarReservoir { + override public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + @objc deinit +} +public enum ExemplarReservoirCollection { +} +@_hasMissingDesignatedInitializers public class FixedSizedExemplarReservoir : VideoSDKRTC.ExemplarReservoir { + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + @objc deinit +} +@_hasMissingDesignatedInitializers public class RandomFixedSizedExemplarReservoir : VideoSDKRTC.FixedSizedExemplarReservoir { + @objc deinit +} +@_hasMissingDesignatedInitializers public class ExplicitBucketHistogramAggregation : VideoSDKRTC.Aggregation { + public static var DEFAULT_BOUNDARIES: [Swift.Double] { + get + } + public static var instance: VideoSDKRTC.ExplicitBucketHistogramAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +public protocol ExponentialHistogramBuckets { + var scale: Swift.Int { get } + var offset: Swift.Int { get } + var bucketCounts: [Swift.Int] { get } + var totalCount: Swift.Int { get } +} +public enum ExportResult { + case success + case failure + public static func == (a: VideoSDKRTC.ExportResult, b: VideoSDKRTC.ExportResult) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public protocol ExtensibleMessage : VideoSDKRTC.Message { + var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet { get set } +} +extension VideoSDKRTC.ExtensibleMessage { + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, value: F.ValueType) where F : VideoSDKRTC.ExtensionField + public func getExtensionValue(ext: VideoSDKRTC.MessageExtension) -> F.ValueType? where F : VideoSDKRTC.ExtensionField + public func hasExtensionValue(ext: VideoSDKRTC.MessageExtension) -> Swift.Bool where F : VideoSDKRTC.ExtensionField + public mutating func clearExtensionValue(ext: VideoSDKRTC.MessageExtension) where F : VideoSDKRTC.ExtensionField +} +extension VideoSDKRTC.ExtensibleMessage { + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [T.BaseType]) where T : VideoSDKRTC.FieldType + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [T.BaseType]) where T : VideoSDKRTC.FieldType + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [E]) where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [E]) where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [M]) where M : Swift.Equatable, M : VideoSDKRTC.Message + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [M]) where M : Swift.Hashable, M : VideoSDKRTC.Message +} +public protocol AnyExtensionField { + func hash(into hasher: inout Swift.Hasher) + var protobufExtension: any VideoSDKRTC.AnyMessageExtension { get } + func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + mutating func decodeExtensionField(decoder: inout T) throws where T : VideoSDKRTC.SPBDecoder + func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + var isInitialized: Swift.Bool { get } +} +extension VideoSDKRTC.AnyExtensionField { + public var isInitialized: Swift.Bool { + get + } +} +public protocol ExtensionField : Swift.Hashable, VideoSDKRTC.AnyExtensionField { + associatedtype ValueType + var value: Self.ValueType { get set } + init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: Self.ValueType) + init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder +} +public struct OptionalExtensionField : VideoSDKRTC.ExtensionField where T : VideoSDKRTC.FieldType { + public typealias BaseType = T.BaseType + public typealias ValueType = VideoSDKRTC.OptionalExtensionField.BaseType + public var value: VideoSDKRTC.OptionalExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalExtensionField, rhs: VideoSDKRTC.OptionalExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedExtensionField : VideoSDKRTC.ExtensionField where T : VideoSDKRTC.FieldType { + public typealias BaseType = T.BaseType + public typealias ValueType = [VideoSDKRTC.RepeatedExtensionField.BaseType] + public var value: VideoSDKRTC.RepeatedExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedExtensionField, rhs: VideoSDKRTC.RepeatedExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct PackedExtensionField : VideoSDKRTC.ExtensionField where T : VideoSDKRTC.FieldType { + public typealias BaseType = T.BaseType + public typealias ValueType = [VideoSDKRTC.PackedExtensionField.BaseType] + public var value: VideoSDKRTC.PackedExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.PackedExtensionField, rhs: VideoSDKRTC.PackedExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.PackedExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct OptionalEnumExtensionField : VideoSDKRTC.ExtensionField where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int { + public typealias BaseType = E + public typealias ValueType = E + public var value: VideoSDKRTC.OptionalEnumExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalEnumExtensionField, rhs: VideoSDKRTC.OptionalEnumExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalEnumExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedEnumExtensionField : VideoSDKRTC.ExtensionField where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int { + public typealias BaseType = E + public typealias ValueType = [E] + public var value: VideoSDKRTC.RepeatedEnumExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedEnumExtensionField, rhs: VideoSDKRTC.RepeatedEnumExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedEnumExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct PackedEnumExtensionField : VideoSDKRTC.ExtensionField where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int { + public typealias BaseType = E + public typealias ValueType = [E] + public var value: VideoSDKRTC.PackedEnumExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.PackedEnumExtensionField, rhs: VideoSDKRTC.PackedEnumExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.PackedEnumExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct OptionalMessageExtensionField : VideoSDKRTC.ExtensionField where M : Swift.Equatable, M : VideoSDKRTC.Message { + public typealias BaseType = M + public typealias ValueType = VideoSDKRTC.OptionalMessageExtensionField.BaseType + public var value: VideoSDKRTC.OptionalMessageExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalMessageExtensionField, rhs: VideoSDKRTC.OptionalMessageExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalMessageExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedMessageExtensionField : VideoSDKRTC.ExtensionField where M : Swift.Equatable, M : VideoSDKRTC.Message { + public typealias BaseType = M + public typealias ValueType = [VideoSDKRTC.RepeatedMessageExtensionField.BaseType] + public var value: VideoSDKRTC.RepeatedMessageExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedMessageExtensionField, rhs: VideoSDKRTC.RepeatedMessageExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedMessageExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct OptionalGroupExtensionField : VideoSDKRTC.ExtensionField where G : Swift.Hashable, G : VideoSDKRTC.Message { + public typealias BaseType = G + public typealias ValueType = VideoSDKRTC.OptionalGroupExtensionField.BaseType + public var value: G + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalGroupExtensionField, rhs: VideoSDKRTC.OptionalGroupExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalGroupExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedGroupExtensionField : VideoSDKRTC.ExtensionField where G : Swift.Hashable, G : VideoSDKRTC.Message { + public typealias BaseType = G + public typealias ValueType = [VideoSDKRTC.RepeatedGroupExtensionField.BaseType] + public var value: VideoSDKRTC.RepeatedGroupExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedGroupExtensionField, rhs: VideoSDKRTC.RepeatedGroupExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedGroupExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct ExtensionFieldValueSet : Swift.Hashable { + public static func == (lhs: VideoSDKRTC.ExtensionFieldValueSet, rhs: VideoSDKRTC.ExtensionFieldValueSet) -> Swift.Bool + public init() + public func hash(into hasher: inout Swift.Hasher) + public func traverse(visitor: inout V, start: Swift.Int, end: Swift.Int) throws where V : VideoSDKRTC.Visitor + public subscript(index: Swift.Int) -> (any VideoSDKRTC.AnyExtensionField)? { + get + set + } + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public protocol ExtensionMap : Swift.Sendable { + subscript(messageType: any VideoSDKRTC.Message.Type, fieldNumber: Swift.Int) -> (any VideoSDKRTC.AnyMessageExtension)? { get } + func fieldNumberForProto(messageType: any VideoSDKRTC.Message.Type, protoFieldName: Swift.String) -> Swift.Int? +} +public struct Google_Protobuf_FieldMask { + public var paths: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_FieldMask : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldMask : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldMask, rhs: VideoSDKRTC.Google_Protobuf_FieldMask) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol FieldType { + associatedtype BaseType : Swift.Hashable + static var proto3DefaultValue: Self.BaseType { get } + static func decodeSingular(value: inout Self.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + static func decodeRepeated(value: inout [Self.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + static func visitSingular(value: Self.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + static func visitRepeated(value: [Self.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + static func visitPacked(value: [Self.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public protocol MapKeyType : VideoSDKRTC.FieldType { + static func _lessThan(lhs: Self.BaseType, rhs: Self.BaseType) -> Swift.Bool +} +extension VideoSDKRTC.MapKeyType where Self.BaseType : Swift.Comparable { + public static func _lessThan(lhs: Self.BaseType, rhs: Self.BaseType) -> Swift.Bool +} +public protocol MapValueType : VideoSDKRTC.FieldType { +} +public struct ProtobufFloat : VideoSDKRTC.FieldType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Float + public static var proto3DefaultValue: Swift.Float { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufFloat.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufFloat.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufFloat.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufFloat.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufFloat.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufDouble : VideoSDKRTC.FieldType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Double + public static var proto3DefaultValue: Swift.Double { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufDouble.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufDouble.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufDouble.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufDouble.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufDouble.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufInt32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int32 + public static var proto3DefaultValue: Swift.Int32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufInt32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufInt32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufInt32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufInt64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int64 + public static var proto3DefaultValue: Swift.Int64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufInt64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufInt64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufInt64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufUInt32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt32 + public static var proto3DefaultValue: Swift.UInt32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufUInt32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufUInt32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufUInt32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufUInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufUInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufUInt64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt64 + public static var proto3DefaultValue: Swift.UInt64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufUInt64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufUInt64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufUInt64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufUInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufUInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSInt32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int32 + public static var proto3DefaultValue: Swift.Int32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSInt32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSInt32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSInt32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSInt64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int64 + public static var proto3DefaultValue: Swift.Int64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSInt64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSInt64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSInt64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufFixed32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt32 + public static var proto3DefaultValue: Swift.UInt32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufFixed32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufFixed32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufFixed32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufFixed64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt64 + public static var proto3DefaultValue: Swift.UInt64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufFixed64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufFixed64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufFixed64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSFixed32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int32 + public static var proto3DefaultValue: Swift.Int32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSFixed32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSFixed32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSFixed32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSFixed64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int64 + public static var proto3DefaultValue: Swift.Int64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSFixed64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSFixed64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSFixed64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufBool : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Bool + public static var proto3DefaultValue: Swift.Bool { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufBool.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufBool.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufBool.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufBool.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufBool.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func _lessThan(lhs: VideoSDKRTC.ProtobufBool.BaseType, rhs: VideoSDKRTC.ProtobufBool.BaseType) -> Swift.Bool +} +public struct ProtobufString : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.String + public static var proto3DefaultValue: Swift.String { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufString.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufString.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufString.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufString.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufString.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufBytes : VideoSDKRTC.FieldType, VideoSDKRTC.MapValueType { + public typealias BaseType = Foundation.Data + public static var proto3DefaultValue: Foundation.Data { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufBytes.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufBytes.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufBytes.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufBytes.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufBytes.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +@_hasMissingDesignatedInitializers public class FilteredExemplarReservoir : VideoSDKRTC.ExemplarReservoir { + override public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + @objc deinit +} +public let defaultAnyTypeURLPrefix: Swift.String +extension VideoSDKRTC.Google_Protobuf_Any { + public init(message: any VideoSDKRTC.Message, partial: Swift.Bool = false, typePrefix: Swift.String = defaultAnyTypeURLPrefix) throws + public init(textFormatString: Swift.String, options: VideoSDKRTC.TextFormatDecodingOptions = TextFormatDecodingOptions(), extensions: (any VideoSDKRTC.ExtensionMap)? = nil) throws + public func isA(_ type: M.Type) -> Swift.Bool where M : VideoSDKRTC.Message + public func hash(into hasher: inout Swift.Hasher) +} +extension VideoSDKRTC.Google_Protobuf_Any { + @discardableResult + public static func register(messageType: any VideoSDKRTC.Message.Type) -> Swift.Bool + public static func messageType(forTypeURL url: Swift.String) -> (any VideoSDKRTC.Message.Type)? + public static func messageType(forMessageName name: Swift.String) -> (any VideoSDKRTC.Message.Type)? +} +extension VideoSDKRTC.Google_Protobuf_Duration { + public init(seconds: Swift.Int64 = 0, nanos: Swift.Int32 = 0) +} +extension VideoSDKRTC.Google_Protobuf_Duration : Swift.ExpressibleByFloatLiteral { + public typealias FloatLiteralType = Swift.Double + public init(floatLiteral value: Swift.Double) +} +extension VideoSDKRTC.Google_Protobuf_Duration { + public init(timeInterval: Foundation.TimeInterval) + public var timeInterval: Foundation.TimeInterval { + get + } +} +prefix public func - (operand: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Duration +public func + (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Duration +public func - (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Duration +public func - (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Timestamp) -> VideoSDKRTC.Google_Protobuf_Duration +extension VideoSDKRTC.Google_Protobuf_FieldMask { + public init(protoPaths: [Swift.String]) + public init(protoPaths: Swift.String...) + public init?(jsonPaths: Swift.String...) +} +extension VideoSDKRTC.Google_Protobuf_ListValue : Swift.ExpressibleByArrayLiteral { + public typealias Element = VideoSDKRTC.Google_Protobuf_Value + public init(arrayLiteral elements: VideoSDKRTC.Google_Protobuf_ListValue.Element...) + public typealias ArrayLiteralElement = VideoSDKRTC.Google_Protobuf_ListValue.Element +} +extension VideoSDKRTC.Google_Protobuf_ListValue { + public init(values: [VideoSDKRTC.Google_Protobuf_Value]) + public subscript(index: Swift.Int) -> VideoSDKRTC.Google_Protobuf_Value { + get + set(newValue) + } +} +extension VideoSDKRTC.Google_Protobuf_Struct : Swift.ExpressibleByDictionaryLiteral { + public typealias Key = Swift.String + public typealias Value = VideoSDKRTC.Google_Protobuf_Value + public init(dictionaryLiteral: (Swift.String, VideoSDKRTC.Google_Protobuf_Value)...) +} +extension VideoSDKRTC.Google_Protobuf_Struct { + public init(fields: [Swift.String : VideoSDKRTC.Google_Protobuf_Value]) + public subscript(key: Swift.String) -> VideoSDKRTC.Google_Protobuf_Value? { + get + set(newValue) + } +} +extension VideoSDKRTC.Google_Protobuf_Timestamp { + public init(seconds: Swift.Int64 = 0, nanos: Swift.Int32 = 0) +} +extension VideoSDKRTC.Google_Protobuf_Timestamp { + public init(timeIntervalSince1970: Foundation.TimeInterval) + public init(timeIntervalSinceReferenceDate: Foundation.TimeInterval) + public init(date: Foundation.Date) + public var timeIntervalSince1970: Foundation.TimeInterval { + get + } + public var timeIntervalSinceReferenceDate: Foundation.TimeInterval { + get + } + public var date: Foundation.Date { + get + } +} +public func + (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Timestamp +public func + (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Timestamp) -> VideoSDKRTC.Google_Protobuf_Timestamp +public func - (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Timestamp +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByIntegerLiteral { + public typealias IntegerLiteralType = Swift.Int64 + public init(integerLiteral value: Swift.Int64) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByFloatLiteral { + public typealias FloatLiteralType = Swift.Double + public init(floatLiteral value: Swift.Double) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByBooleanLiteral { + public typealias BooleanLiteralType = Swift.Bool + public init(booleanLiteral value: Swift.Bool) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByStringLiteral { + public typealias StringLiteralType = Swift.String + public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias UnicodeScalarLiteralType = Swift.String + public init(stringLiteral value: Swift.String) + public init(unicodeScalarLiteral value: Swift.String) + public init(extendedGraphemeClusterLiteral value: Swift.String) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByNilLiteral { + public init(nilLiteral: ()) +} +extension VideoSDKRTC.Google_Protobuf_Value { + public init(numberValue: Swift.Double) + public init(stringValue: Swift.String) + public init(boolValue: Swift.Bool) + public init(structValue: VideoSDKRTC.Google_Protobuf_Struct) + public init(listValue: VideoSDKRTC.Google_Protobuf_ListValue) +} +extension VideoSDKRTC.Google_Protobuf_DoubleValue : Swift.ExpressibleByFloatLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufDouble + public typealias FloatLiteralType = VideoSDKRTC.Google_Protobuf_DoubleValue.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_DoubleValue.WrappedType.BaseType) + public init(floatLiteral: VideoSDKRTC.Google_Protobuf_DoubleValue.FloatLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_FloatValue : Swift.ExpressibleByFloatLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufFloat + public typealias FloatLiteralType = Swift.Float + public init(_ value: VideoSDKRTC.Google_Protobuf_FloatValue.WrappedType.BaseType) + public init(floatLiteral: VideoSDKRTC.Google_Protobuf_FloatValue.FloatLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_Int64Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufInt64 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_Int64Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_Int64Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_Int64Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_UInt64Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufUInt64 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_UInt64Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_UInt64Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_UInt64Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_Int32Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufInt32 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_Int32Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_Int32Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_Int32Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_UInt32Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufUInt32 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_UInt32Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_UInt32Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_UInt32Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_BoolValue : Swift.ExpressibleByBooleanLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufBool + public typealias BooleanLiteralType = Swift.Bool + public init(_ value: VideoSDKRTC.Google_Protobuf_BoolValue.WrappedType.BaseType) + public init(booleanLiteral: Swift.Bool) +} +extension VideoSDKRTC.Google_Protobuf_StringValue : Swift.ExpressibleByStringLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufString + public typealias StringLiteralType = Swift.String + public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias UnicodeScalarLiteralType = Swift.String + public init(_ value: VideoSDKRTC.Google_Protobuf_StringValue.WrappedType.BaseType) + public init(stringLiteral: Swift.String) + public init(extendedGraphemeClusterLiteral: Swift.String) + public init(unicodeScalarLiteral: Swift.String) +} +extension VideoSDKRTC.Google_Protobuf_BytesValue { + public typealias WrappedType = VideoSDKRTC.ProtobufBytes + public init(_ value: VideoSDKRTC.Google_Protobuf_BytesValue.WrappedType.BaseType) +} +public struct Headers { + public static func getUserAgentHeader() -> Swift.String +} +@_hasMissingDesignatedInitializers public class HistogramAggregator : VideoSDKRTC.Aggregator where T : Swift.Comparable, T : Swift.SignedNumeric { + public init(explicitBoundaries: Swift.Array? = nil) throws + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +@_hasMissingDesignatedInitializers public class HistogramExemplarReservoir : VideoSDKRTC.FixedSizedExemplarReservoir { + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public protocol HistogramMetric { + associatedtype T + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundHistogramMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundHistogramMetric +} +extension VideoSDKRTC.HistogramMetric { + public func record(value: Self.T, labelset: VideoSDKRTC.LabelSet) + public func record(value: Self.T, labels: [Swift.String : Swift.String]) +} +public struct AnyHistogramMetric : VideoSDKRTC.HistogramMetric { + public init(_ histogram: U) where T == U.T, U : VideoSDKRTC.HistogramMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundHistogramMetric +} +public struct NoopHistogramMetric : VideoSDKRTC.HistogramMetric { + public init() + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundHistogramMetric +} +@_hasMissingDesignatedInitializers public class HistogramPointData : VideoSDKRTC.PointData { + public var sum: Swift.Double + public var count: Swift.UInt64 + public var min: Swift.Double + public var max: Swift.Double + public var boundaries: [Swift.Double] + public var counts: [Swift.Int] + public var hasMin: Swift.Bool + public var hasMax: Swift.Bool + @objc deinit +} +public class HLSConfig { + public var layout: VideoSDKRTC.ConfigLayout + public var theme: VideoSDKRTC.ConfigTheme + public var mode: VideoSDKRTC.ConfigMode + public var quality: VideoSDKRTC.ConfigQuality + public var orientation: VideoSDKRTC.ConfigOrientation + public init(layout: VideoSDKRTC.ConfigLayout, theme: VideoSDKRTC.ConfigTheme, mode: VideoSDKRTC.ConfigMode, quality: VideoSDKRTC.ConfigQuality, orientation: VideoSDKRTC.ConfigOrientation) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public class RecordingConfig { + public var layout: VideoSDKRTC.ConfigLayout + public var theme: VideoSDKRTC.ConfigTheme + public var mode: VideoSDKRTC.ConfigMode + public var quality: VideoSDKRTC.ConfigQuality + public var orientation: VideoSDKRTC.ConfigOrientation + public init(layout: VideoSDKRTC.ConfigLayout, theme: VideoSDKRTC.ConfigTheme, mode: VideoSDKRTC.ConfigMode, quality: VideoSDKRTC.ConfigQuality, orientation: VideoSDKRTC.ConfigOrientation) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public class HLSUrl { + public var downstreamUrl: Swift.String + public var playbackHlsUrl: Swift.String + public var livestreamUrl: Swift.String + public init(downstreamUrl: Swift.String? = nil, playbackHlsUrl: Swift.String? = nil, livestreamUrl: Swift.String? = nil) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public class ConfigLayout { + public var type: VideoSDKRTC.ConfigLayoutGrid + public var priority: VideoSDKRTC.ConfigLayoutPriority + public var gridSize: Swift.Int + public init(type: VideoSDKRTC.ConfigLayoutGrid, priority: VideoSDKRTC.ConfigLayoutPriority, gridSize: Swift.Int) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public enum ConfigLayoutPriority : Swift.String { + case SPEAKER, PIN + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigLayoutGrid : Swift.String { + case GRID, SPOTLIGHT, SIDEBAR + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigTheme : Swift.String { + case DEFAULT, LIGHT, DARK + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigMode : Swift.String { + case video_and_audio, audio + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigQuality : Swift.String { + case high, med, low + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigOrientation : Swift.String { + case landscape, portrait + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public protocol IdGenerator { + func generateSpanId() -> VideoSDKRTC.SpanId + func generateTraceId() -> VideoSDKRTC.TraceId +} +@_hasMissingDesignatedInitializers public class InMemoryLogRecordExporter : VideoSDKRTC.LogRecordExporter { + public func getFinishedLogRecords() -> [VideoSDKRTC.ReadableLogRecord] + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func shutdown() + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public protocol Instrument : Swift.Equatable { + var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor { get } +} +extension VideoSDKRTC.Instrument { + public static func == (lhs: Self, rhs: Self) -> Swift.Bool +} +public struct InstrumentationScopeInfo : Swift.Hashable, Swift.Codable, Swift.Equatable { + public var name: Swift.String { + get + } + public var version: Swift.String? { + get + } + public var schemaUrl: Swift.String? { + get + } + public init() + public init(name: Swift.String, version: Swift.String? = nil, schemaUrl: Swift.String? = nil) + public func hash(into hasher: inout Swift.Hasher) + public static func == (a: VideoSDKRTC.InstrumentationScopeInfo, b: VideoSDKRTC.InstrumentationScopeInfo) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public struct InstrumentDescriptor : Swift.Equatable { + public let name: Swift.String + public let description: Swift.String + public let unit: Swift.String + public let type: VideoSDKRTC.InstrumentType + public let valueType: VideoSDKRTC.InstrumentValueType + public init(name: Swift.String, description: Swift.String, unit: Swift.String, type: VideoSDKRTC.InstrumentType, valueType: VideoSDKRTC.InstrumentValueType) + public static func == (lhs: VideoSDKRTC.InstrumentDescriptor, rhs: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class InstrumentSelector { + public static func builder() -> VideoSDKRTC.InstrumentSelectorBuilder + @objc deinit +} +public class InstrumentSelectorBuilder { + public init() + public func setInstrument(type: VideoSDKRTC.InstrumentType) -> Self + public func setInstrument(name: Swift.String) -> Self + public func setMeter(name: Swift.String) -> Self + public func setMeter(version: Swift.String) -> Self + public func setMeter(schemaUrl: Swift.String) -> Self + public func build() -> VideoSDKRTC.InstrumentSelector + @objc deinit +} +public enum InstrumentType : Swift.CaseIterable { + case counter + case upDownCounter + case histogram + case observableCounter + case observableUpDownCounter + case observableGauge + public static func == (a: VideoSDKRTC.InstrumentType, b: VideoSDKRTC.InstrumentType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public typealias AllCases = [VideoSDKRTC.InstrumentType] + public static var allCases: [VideoSDKRTC.InstrumentType] { + get + } + public var hashValue: Swift.Int { + get + } +} +public enum InstrumentValueType { + case long + case double + public static func == (a: VideoSDKRTC.InstrumentValueType, b: VideoSDKRTC.InstrumentValueType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public enum Internal { + public static let emptyData: Foundation.Data + public static func areAllInitialized(_ listOfMessages: [any VideoSDKRTC.Message]) -> Swift.Bool + public static func areAllInitialized(_ mapToMessages: [K : any VideoSDKRTC.Message]) -> Swift.Bool where K : Swift.Hashable +} +public protocol IntObserverMetric { + func observe(value: Swift.Int, labelset: VideoSDKRTC.LabelSet) + func observe(value: Swift.Int, labels: [Swift.String : Swift.String]) +} +public struct NoopIntObserverMetric : VideoSDKRTC.IntObserverMetric { + public init() + public func observe(value: Swift.Int, labelset: VideoSDKRTC.LabelSet) + public func observe(value: Swift.Int, labels: [Swift.String : Swift.String]) +} +extension Foundation.Data { + public func toJSONString() -> Swift.String + public func toJSON() -> [Swift.String : Any] + public func toJSONArray() -> [Any] +} +extension Swift.String { + public func toJSON() -> [Swift.String : Any] +} +extension Swift.Dictionary { + public func toJSONString() -> Swift.String +} +extension Swift.Array { + public func toJSONString() -> Swift.String +} +extension Swift.Encodable { + public func toJSON() -> [Swift.String : Any] + public func toJSONArray() -> [Any] +} +public enum JSONDecodingError : Swift.Error { + case failure + case malformedNumber + case numberRange + case malformedMap + case malformedBool + case malformedString + case invalidUTF8 + case missingFieldNames + case schemaMismatch + case unrecognizedEnumValue + case illegalNull + case unquotedMapKey + case leadingZero + case truncated + case malformedDuration + case malformedTimestamp + case malformedFieldMask + case trailingGarbage + case conflictingOneOf + case messageDepthLimit + case unknownField(Swift.String) +} +public struct JSONDecodingOptions : Swift.Sendable { + public var messageDepthLimit: Swift.Int + public var ignoreUnknownFields: Swift.Bool + public init() +} +public enum JSONEncodingError : Swift.Error { + case anyTranscodeFailure + case timestampRange + case durationRange + case fieldMaskConversion + case missingFieldNames + case missingValue + case valueNumberNotFinite + public static func == (a: VideoSDKRTC.JSONEncodingError, b: VideoSDKRTC.JSONEncodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct JSONEncodingOptions : Swift.Sendable { + public var alwaysPrintInt64sAsNumbers: Swift.Bool + public var alwaysPrintEnumsAsInts: Swift.Bool + public var preserveProtoFieldNames: Swift.Bool + public init() +} +@_hasMissingDesignatedInitializers open class LabelSet : Swift.Hashable { + public var labels: [Swift.String : Swift.String] { + get + } + public static var empty: VideoSDKRTC.LabelSet + required public init(labels: [Swift.String : Swift.String]) + public static func == (lhs: VideoSDKRTC.LabelSet, rhs: VideoSDKRTC.LabelSet) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + @objc deinit + open var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class LastValueAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.LastValueAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class LastValueAggregator : VideoSDKRTC.Aggregator where T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public struct LivestreamOutput : Swift.Codable { + public let url: Swift.String + public let streamKey: Swift.String + public init(url: Swift.String, streamKey: Swift.String) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public protocol Logger { + func eventBuilder(name: Swift.String) -> any VideoSDKRTC.EventBuilder + func logRecordBuilder() -> any VideoSDKRTC.LogRecordBuilder +} +public protocol LoggerBuilder { + func setEventDomain(_ eventDomain: Swift.String) -> Self + func setSchemaUrl(_ schemaUrl: Swift.String) -> Self + func setInstrumentationVersion(_ instrumentationVersion: Swift.String) -> Self + func setIncludeTraceContext(_ includeTraceContext: Swift.Bool) -> Self + func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + func build() -> any VideoSDKRTC.Logger +} +@_hasMissingDesignatedInitializers public class LoggerBuilderSdk : VideoSDKRTC.LoggerBuilder { + public func setEventDomain(_ eventDomain: Swift.String) -> Self + public func setSchemaUrl(_ schemaUrl: Swift.String) -> Self + public func setInstrumentationVersion(_ instrumentationVersion: Swift.String) -> Self + public func setIncludeTraceContext(_ includeTraceContext: Swift.Bool) -> Self + public func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + public func build() -> any VideoSDKRTC.Logger + @objc deinit +} +public protocol LoggerProvider : AnyObject { + func get(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.Logger + func loggerBuilder(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.LoggerBuilder +} +public class LoggerProviderBuilder { + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var logLimits: VideoSDKRTC.LogLimits { + get + } + public var logProcessors: [any VideoSDKRTC.LogRecordProcessor] { + get + } + public init() + public func with(clock: any VideoSDKRTC.Clock) -> Self + public func with(resource: VideoSDKRTC.Resource) -> Self + public func with(logLimits: VideoSDKRTC.LogLimits) -> Self + public func with(processors: [any VideoSDKRTC.LogRecordProcessor]) -> Self + public func build() -> VideoSDKRTC.LoggerProviderSdk + @objc deinit +} +public class LoggerProviderSdk : VideoSDKRTC.LoggerProvider { + public init(clock: any VideoSDKRTC.Clock = MillisClock(), resource: VideoSDKRTC.Resource = EnvVarResource.get(), logLimits: VideoSDKRTC.LogLimits = LogLimits(), logRecordProcessors: [any VideoSDKRTC.LogRecordProcessor] = []) + public func get(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.Logger + public func loggerBuilder(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.LoggerBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class LoggerSdk : VideoSDKRTC.Logger { + public func eventBuilder(name: Swift.String) -> any VideoSDKRTC.EventBuilder + public func logRecordBuilder() -> any VideoSDKRTC.LogRecordBuilder + @objc deinit +} +public struct LogLimits { + public static let defaultMaxAttributeCount: Swift.Int + public static let defaultMaxAtributeLength: Swift.Int + public let maxAttributeCount: Swift.Int + public let maxAttributeLength: Swift.Int + public init(maxAttributeCount: Swift.Int = Self.defaultMaxAttributeCount, maxAttributeLength: Swift.Int = Self.defaultMaxAtributeLength) +} +@_hasMissingDesignatedInitializers public class LogRecordAdapter { + public static func toProtoResourceRecordLog(logRecordList: [VideoSDKRTC.ReadableLogRecord]) -> [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs] + @objc deinit +} +public protocol LogRecordBuilder { + func setTimestamp(_ timestamp: Foundation.Date) -> Self + func setObservedTimestamp(_ observed: Foundation.Date) -> Self + func setSpanContext(_ context: VideoSDKRTC.SpanContext) -> Self + func setSeverity(_ severity: VideoSDKRTC.Severity) -> Self + func setBody(_ body: Swift.String) -> Self + func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + func emit() +} +@_hasMissingDesignatedInitializers public class LogRecordBuilderSdk : VideoSDKRTC.EventBuilder { + public func setTimestamp(_ timestamp: Foundation.Date) -> Self + public func setObservedTimestamp(_ observed: Foundation.Date) -> Self + public func setSpanContext(_ context: VideoSDKRTC.SpanContext) -> Self + public func setSeverity(_ severity: VideoSDKRTC.Severity) -> Self + public func setBody(_ body: Swift.String) -> Self + public func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + public func setData(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + public func emit() + @objc deinit +} +public protocol LogRecordExporter { + func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + func shutdown() + func forceFlush() -> VideoSDKRTC.ExportResult +} +public protocol LogRecordProcessor { + func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + func forceFlush() -> VideoSDKRTC.ExportResult + func shutdown() -> VideoSDKRTC.ExportResult +} +public enum Opentelemetry_Proto_Logs_V1_SeverityNumber : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unspecified + case trace + case trace2 + case trace3 + case trace4 + case debug + case debug2 + case debug3 + case debug4 + case info + case info2 + case info3 + case info4 + case warn + case warn2 + case warn3 + case warn4 + case error + case error2 + case error3 + case error4 + case fatal + case fatal2 + case fatal3 + case fatal4 + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber] +} +public enum Opentelemetry_Proto_Logs_V1_LogRecordFlags : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case doNotUse + case traceFlagsMask + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags] +} +public struct Opentelemetry_Proto_Logs_V1_LogsData { + public var resourceLogs: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Logs_V1_ResourceLogs { + public var resource: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource { + get + set + } + public var hasResource: Swift.Bool { + get + } + public mutating func clearResource() + public var scopeLogs: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Logs_V1_ScopeLogs { + public var scope: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope { + get + set + } + public var hasScope: Swift.Bool { + get + } + public mutating func clearScope() + public var logRecords: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Logs_V1_LogRecord { + public var timeUnixNano: Swift.UInt64 + public var observedTimeUnixNano: Swift.UInt64 + public var severityNumber: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber + public var severityText: Swift.String + public var body: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue { + get + set + } + public var hasBody: Swift.Bool { + get + } + public mutating func clearBody() + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var flags: Swift.UInt32 + public var traceID: Foundation.Data + public var spanID: Foundation.Data + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest { + public var resourceLogs: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse { + public var partialSuccess: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess { + get + set + } + public var hasPartialSuccess: Swift.Bool { + get + } + public mutating func clearPartialSuccess() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess { + public var rejectedLogRecords: Swift.Int64 + public var errorMessage: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol LongCounter { + mutating func add(value: Swift.Int) + mutating func add(value: Swift.Int, attribute: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongCounterBuilder : AnyObject { + func ofDoubles() -> any VideoSDKRTC.DoubleCounterBuilder + func build() -> any VideoSDKRTC.LongCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongCounter +} +@_hasMissingDesignatedInitializers public class LongCounterMeterBuilderSdk : VideoSDKRTC.LongCounterBuilder { + public func ofDoubles() -> any VideoSDKRTC.DoubleCounterBuilder + public func build() -> any VideoSDKRTC.LongCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongCounter + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongCounterSdk : VideoSDKRTC.LongCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public func add(value: Swift.Int) + public func add(value: Swift.Int, attribute: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public struct DoubleCounterSdk : VideoSDKRTC.DoubleCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public mutating func add(value: Swift.Double) + public mutating func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongGaugeBuilder : AnyObject { + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongGauge +} +@_hasMissingDesignatedInitializers public class LongGaugeBuilderSdk : VideoSDKRTC.LongGaugeBuilder { + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongGauge + @objc deinit +} +public protocol LongHistogram { + mutating func record(value: Swift.Int) + mutating func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongHistogramBuilder : AnyObject { + func build() -> any VideoSDKRTC.LongHistogram +} +@_hasMissingDesignatedInitializers public class LongHistogramMeterBuilderSdk : VideoSDKRTC.LongHistogramBuilder { + public func build() -> any VideoSDKRTC.LongHistogram + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongHistogramMeterSdk : VideoSDKRTC.LongHistogram, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public func record(value: Swift.Int) + public func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongLastValueAggregator : VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongPointData : VideoSDKRTC.PointData { + public var value: Swift.Int + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongSumAggregator : VideoSDKRTC.SumAggregator, VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol LongUpDownCounter { + mutating func add(value: Swift.Int) + mutating func add(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongUpDownCounterBuilder : AnyObject { + func ofDoubles() -> any VideoSDKRTC.DoubleUpDownCounterBuilder + func build() -> any VideoSDKRTC.LongUpDownCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongUpDownCounter +} +@_hasMissingDesignatedInitializers public class LongUpDownCounterBuilderSdk : VideoSDKRTC.LongUpDownCounterBuilder { + public func ofDoubles() -> any VideoSDKRTC.DoubleUpDownCounterBuilder + public func build() -> any VideoSDKRTC.LongUpDownCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongUpDownCounter + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongUpDownCounterSdk : VideoSDKRTC.LongUpDownCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor { + get + } + public func add(value: Swift.Int) + public func add(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class MaxValueAggregator : VideoSDKRTC.Aggregator where T : Swift.Comparable, T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public struct Measurement { + public var startEpochNano: Swift.UInt64 { + get + } + public var epochNano: Swift.UInt64 { + get + } + public var hasLongValue: Swift.Bool { + get + } + public var longValue: Swift.Int { + get + } + public var doubleValue: Swift.Double { + get + } + public var hasDoubleValue: Swift.Bool { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public static func longMeasurement(startEpochNano: Swift.UInt64, endEpochNano: Swift.UInt64, value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.Measurement + public static func doubleMeasurement(startEpochNano: Swift.UInt64, endEpochNano: Swift.UInt64, value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.Measurement +} +public protocol MeasureMetric { + associatedtype T + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundMeasureMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundMeasureMetric +} +extension VideoSDKRTC.MeasureMetric { + public func record(value: Self.T, labelset: VideoSDKRTC.LabelSet) + public func record(value: Self.T, labels: [Swift.String : Swift.String]) +} +public struct AnyMeasureMetric : VideoSDKRTC.MeasureMetric { + public init(_ measurable: U) where T == U.T, U : VideoSDKRTC.MeasureMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundMeasureMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundMeasureMetric +} +public struct NoopMeasureMetric : VideoSDKRTC.MeasureMetric { + public init() + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundMeasureMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundMeasureMetric +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class MeasureMinMaxSumCountAggregator : VideoSDKRTC.Aggregator where T : Swift.Comparable, T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public enum authorisationStatus { + case notDetermined + case authorised + case denied + case restricted + public static func == (a: VideoSDKRTC.authorisationStatus, b: VideoSDKRTC.authorisationStatus) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public protocol AuthorisationDelegate : AnyObject { + func handlePermission() +} +@_hasMissingDesignatedInitializers public class MediaStream : Swift.Equatable { + public var id: Swift.String { + get + } + public var kind: VideoSDKRTC.MediaType { + get + } + public var track: WebRTC.RTCMediaStreamTrack { + get + } + public var producer: Mediasoup.Producer? { + get + } + public var consumer: Mediasoup.Consumer? { + get + } + @objc deinit +} +extension VideoSDKRTC.MediaStream { + public func pause() + public func resume() +} +extension VideoSDKRTC.MediaStream { + public static func == (lhs: VideoSDKRTC.MediaStream, rhs: VideoSDKRTC.MediaStream) -> Swift.Bool +} +public enum MediaType : Swift.Equatable { + case share + case state(value: Mediasoup.MediaKind) + public static func == (a: VideoSDKRTC.MediaType, b: VideoSDKRTC.MediaType) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class Meeting : Swift.Equatable { + public var id: Swift.String { + get + } + public var localParticipant: VideoSDKRTC.Participant { + get + } + public var participants: [Swift.String : VideoSDKRTC.Participant] { + get + } + public var pinnedParticipants: [Swift.String : VideoSDKRTC.ParticipantPinState] { + get + } + public var hlsUrls: VideoSDKRTC.HLSUrl? + public var hlsState: VideoSDKRTC.HLSState + public var liveStreamState: VideoSDKRTC.LiveStreamState + public var recordingState: VideoSDKRTC.RecordingState + public var pubsub: VideoSDKRTC.PubSub { + get + } + public var customVideoMediaStream: VideoSDKRTC.CustomRTCMediaStream? { + get + } + public var meetingMode: VideoSDKRTC.Mode? { + get + } + @objc deinit +} +extension VideoSDKRTC.Meeting { + public func join(cameraPosition: AVFoundation.AVCaptureDevice.Position) + public func leave() + public func end() + public func enableWebcam(customVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil) + public func disableWebcam() + public func switchWebcam() + public func muteMic() + public func unmuteMic() + public func startRecording(webhookUrl: Swift.String, awsDirPath: Swift.String? = nil, config: VideoSDKRTC.RecordingConfig? = nil) + public func stopRecording() + public func startLivestream(outputs: [VideoSDKRTC.LivestreamOutput]) + public func stopLivestream() + public func startHLS(config: VideoSDKRTC.HLSConfig? = nil) + public func stopHLS() + public func changeMode(_ mode: VideoSDKRTC.Mode) + #if compiler(>=5.3) && $AsyncAwait + @available(iOS 13.0.0, *) + public func enableScreenShare() async + #endif + #if compiler(>=5.3) && $AsyncAwait + @available(iOS 13.0.0, *) + public func disableScreenShare() async + #endif + public func changeMic(selectedDevice: Swift.String) + public func getMics() -> [(deviceName: Swift.String, deviceType: Swift.String)] + public func removeOberver() +} +extension VideoSDKRTC.Meeting { + public func addEventListener(_ meetingEventListener: any VideoSDKRTC.MeetingEventListener) + public func removeEventListener(_ meetingEventListener: any VideoSDKRTC.MeetingEventListener) +} +extension VideoSDKRTC.Meeting { + public static func == (lhs: VideoSDKRTC.Meeting, rhs: VideoSDKRTC.Meeting) -> Swift.Bool +} +public protocol MeetingEventListener : AnyObject { + func onMeetingJoined() + func onMeetingLeft() + func onParticipantJoined(_ participant: VideoSDKRTC.Participant) + func onParticipantLeft(_ participant: VideoSDKRTC.Participant) + func onRecordingStarted() + func onRecordingStoppped() + func onLivestreamStarted() + func onLivestreamStopped() + func onSpeakerChanged(participantId: Swift.String?) + func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + func onSocketError(message: Swift.String) + func onMeetingStateChanged(meetingState: VideoSDKRTC.MeetingState) + func onError(error: VideoSDKRTC.VideoSDKError) + func onHlsStateChanged(state: VideoSDKRTC.HLSState, hlsUrl: VideoSDKRTC.HLSUrl?) + func onLivestreamStateChanged(state: VideoSDKRTC.LiveStreamState) + func onRecordingStateChanged(state: VideoSDKRTC.RecordingState) + func onPinStateChanged(participantId: Swift.String, pinType: VideoSDKRTC.PinType) + func onParticipantModeChanged(participantId: Swift.String, mode: VideoSDKRTC.Mode) + func onMicChanged(selectedDevice: Swift.String) +} +extension VideoSDKRTC.MeetingEventListener { + public func onMeetingJoined() + public func onMeetingLeft() + public func onParticipantJoined(_ participant: VideoSDKRTC.Participant) + public func onParticipantLeft(_ participant: VideoSDKRTC.Participant) + public func onRecordingStarted() + public func onRecordingStoppped() + public func onLivestreamStarted() + public func onLivestreamStopped() + public func onSpeakerChanged(participantId: Swift.String?) + public func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + public func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + public func onSocketError(message: Swift.String) + public func onMeetingStateChanged(meetingState: VideoSDKRTC.MeetingState) + public func onError(error: VideoSDKRTC.VideoSDKError) + public func onHlsStateChanged(state: VideoSDKRTC.HLSState, hlsUrl: VideoSDKRTC.HLSUrl?) + public func onLivestreamStateChanged(state: VideoSDKRTC.LiveStreamState) + public func onRecordingStateChanged(state: VideoSDKRTC.RecordingState) + public func onPinStateChanged(participantId: Swift.String, pinType: VideoSDKRTC.PinType) + public func onParticipantModeChanged(participantId: Swift.String, mode: VideoSDKRTC.Mode) + public func onMicChanged(selectedDevice: Swift.String) +} +public enum MeetingState : Swift.String { + case CONNECTING, CONNECTED, CLOSING, CLOSED, CANCELLED + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum Mode : Swift.String { + case CONFERENCE, VIEWER + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum VideoSDKError : Swift.Int { + case UNKNOWN_ERROR + case INVALID_API_KEY + case INVALID_TOKEN + case INVALID_MEETING_ID + case INVALID_PARTICIPANT_ID + case DUPLICATE_PARTICIPANT + case ACCOUNT_DEACTIVATED + case ACCOUNT_DISCONTINUED + case INVALID_PERMISSIONS + case MAX_PARTCIPANT_REACHED + case MAX_SPEAKER_REACHED + case START_RECORDING_FAILED + case STOP_RECORDING_FAILED + case START_LIVESTREAM_FAILED + case STOP_LIVESTREAM_FAILED + case INVALID_LIVESTREAM_CONFIG + case START_HLS_FAILED + case STOP_HLS_FAILED + case RECORDING_FAILED + case LIVESTREAM_FAILED + case HLS_FAILED + case ERROR_GET_VIDEO_MEDIA + case ERROR_GET_AUDIO_MEDIA + case ERROR_GET_DISPLAY_MEDIA + case ERROR_GET_VIDEO_MEDIA_PERMISSION_DENIED + case ERROR_GET_AUDIO_MEDIA_PERMISSION_DENIED + case ERROR_GET_DISPLAY_MEDIA_PERMISSION_DENIED + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public enum HLSState : Swift.String { + case HLS_STARTED, HLS_STARTING, HLS_STOPPED, HLS_STOPPING, HLS_PLAYABLE + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum RecordingState : Swift.String { + case RECORDING_STARTED, RECORDING_STARTING, RECORDING_STOPPED, RECORDING_STOPPING + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum LiveStreamState : Swift.String { + case LIVESTREAM_STARTED, LIVESTREAM_STARTING, LIVESTREAM_STOPPED, LIVESTREAM_STOPPING + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public protocol Message : VideoSDKRTC._MessageBase { + init() + static var protoMessageName: Swift.String { get } + var isInitialized: Swift.Bool { get } + var unknownFields: VideoSDKRTC.UnknownStorage { get set } + mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + func hash(into hasher: inout Swift.Hasher) + func isEqualTo(message: any VideoSDKRTC.Message) -> Swift.Bool +} +public protocol _MessageBase : Swift.Sendable { +} +extension VideoSDKRTC.Message { + public var isInitialized: Swift.Bool { + get + } + public func hash(into hasher: inout Swift.Hasher) + public static func with(_ populator: (inout Self) throws -> ()) rethrows -> Self +} +public protocol _MessageImplementationBase : Swift.Hashable, VideoSDKRTC.Message { + func _protobuf_generated_isEqualTo(other: Self) -> Swift.Bool +} +extension VideoSDKRTC._MessageImplementationBase { + public func isEqualTo(message: any VideoSDKRTC.Message) -> Swift.Bool + public static func == (lhs: Self, rhs: Self) -> Swift.Bool + public func _protobuf_generated_isEqualTo(other: Self) -> Swift.Bool +} +extension VideoSDKRTC.Message { + public init(unpackingAny: VideoSDKRTC.Google_Protobuf_Any, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws +} +extension VideoSDKRTC.Message { + public func serializedBytes(partial: Swift.Bool = false) throws -> Bytes where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + @inlinable public init(serializedBytes bytes: Bytes, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes { + self.init() + try merge(serializedBytes: bytes, extensions: extensions, partial: partial, options: options) + } + @inlinable public mutating func merge(serializedBytes bytes: Bytes, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes { + try bytes.withUnsafeBytes { (body: UnsafeRawBufferPointer) in + try _merge(rawBuffer: body, extensions: extensions, partial: partial, options: options) + } + } + @usableFromInline + internal mutating func _merge(rawBuffer body: Swift.UnsafeRawBufferPointer, extensions: (any VideoSDKRTC.ExtensionMap)?, partial: Swift.Bool, options: VideoSDKRTC.BinaryDecodingOptions) throws +} +extension VideoSDKRTC.Message { + @inlinable public init(serializedData data: Foundation.Data, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws { + self.init() + try merge(serializedBytes: data, extensions: extensions, partial: partial, options: options) + } + @inlinable public mutating func merge(serializedData data: Foundation.Data, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws { + try merge(serializedBytes: data, extensions: extensions, partial: partial, options: options) + } + public func serializedData(partial: Swift.Bool = false) throws -> Foundation.Data +} +extension VideoSDKRTC.Message { + public func jsonString(options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Swift.String + public func jsonUTF8Bytes(options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Bytes where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public init(jsonString: Swift.String, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public init(jsonString: Swift.String, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public init(jsonUTF8Bytes: Bytes, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public init(jsonUTF8Bytes: Bytes, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes +} +extension VideoSDKRTC.Message { + public init(jsonUTF8Data: Foundation.Data, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public init(jsonUTF8Data: Foundation.Data, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public func jsonUTF8Data(options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Foundation.Data +} +extension VideoSDKRTC.Message { + public static func jsonString(from collection: C, options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Swift.String where Self == C.Element, C : Swift.Collection + public static func jsonUTF8Bytes(from collection: C, options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Bytes where Self == C.Element, C : Swift.Collection, Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public static func array(fromJSONString jsonString: Swift.String, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func array(fromJSONString jsonString: Swift.String, extensions: any VideoSDKRTC.ExtensionMap = SimpleExtensionMap(), options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func array(fromJSONUTF8Bytes jsonUTF8Bytes: Bytes, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public static func array(fromJSONUTF8Bytes jsonUTF8Bytes: Bytes, extensions: any VideoSDKRTC.ExtensionMap = SimpleExtensionMap(), options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes +} +extension VideoSDKRTC.Message { + public static func array(fromJSONUTF8Data jsonUTF8Data: Foundation.Data, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func array(fromJSONUTF8Data jsonUTF8Data: Foundation.Data, extensions: any VideoSDKRTC.ExtensionMap = SimpleExtensionMap(), options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func jsonUTF8Data(from collection: C, options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Foundation.Data where Self == C.Element, C : Swift.Collection +} +extension VideoSDKRTC.Message { + public func textFormatString() -> Swift.String + public func textFormatString(options: VideoSDKRTC.TextFormatEncodingOptions) -> Swift.String + public init(textFormatString: Swift.String, options: VideoSDKRTC.TextFormatDecodingOptions = TextFormatDecodingOptions(), extensions: (any VideoSDKRTC.ExtensionMap)? = nil) throws +} +public protocol AnyMessageExtension : Swift.Sendable { + var fieldNumber: Swift.Int { get } + var fieldName: Swift.String { get } + var messageType: any VideoSDKRTC.Message.Type { get } + func _protobuf_newField(decoder: inout D) throws -> (any VideoSDKRTC.AnyExtensionField)? where D : VideoSDKRTC.SPBDecoder +} +final public class MessageExtension : VideoSDKRTC.AnyMessageExtension where FieldType : VideoSDKRTC.ExtensionField, MessageType : VideoSDKRTC.Message { + final public let fieldNumber: Swift.Int + final public let fieldName: Swift.String + final public let messageType: any VideoSDKRTC.Message.Type + public init(_protobuf_fieldNumber: Swift.Int, fieldName: Swift.String) + final public func _protobuf_newField(decoder: inout D) throws -> (any VideoSDKRTC.AnyExtensionField)? where D : VideoSDKRTC.SPBDecoder + @objc deinit +} +public protocol Meter { + func createIntCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + func createDoubleCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + func createIntMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + func createDoubleMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + func createIntHistogram(name: Swift.String, explicitBoundaries: Swift.Array?, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + func createDoubleHistogram(name: Swift.String, explicitBoundaries: Swift.Array?, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + func createRawDoubleHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + func createRawIntHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + func createRawDoubleCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + func createRawIntCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + func createIntObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + func createDoubleObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric + func createIntObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + func createDoubleObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric + func getLabelSet(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.LabelSet +} +extension VideoSDKRTC.Meter { + public func createIntCounter(name: Swift.String) -> VideoSDKRTC.AnyCounterMetric + public func createDoubleCounter(name: Swift.String) -> VideoSDKRTC.AnyCounterMetric + public func createIntMeasure(name: Swift.String) -> VideoSDKRTC.AnyMeasureMetric + public func createDoubleMeasure(name: Swift.String) -> VideoSDKRTC.AnyMeasureMetric + public func createIntObserver(name: Swift.String, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + public func createDoubleObserver(name: Swift.String, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric +} +public protocol MeterBuilder : AnyObject { + func setSchemaUrl(schemaUrl: Swift.String) -> Self + func setInstrumentationVersion(instrumentationVersion: Swift.String) -> Self + func build() -> any VideoSDKRTC.StableMeter +} +@_hasMissingDesignatedInitializers public class MeterBuilderSdk : VideoSDKRTC.MeterBuilder { + public func setSchemaUrl(schemaUrl: Swift.String) -> Self + public func setInstrumentationVersion(instrumentationVersion: Swift.String) -> Self + public func build() -> any VideoSDKRTC.StableMeter + @objc deinit +} +public protocol MeterProvider : AnyObject { + func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String?) -> any VideoSDKRTC.Meter +} +public class MeterProviderBuilder { + public var resource: VideoSDKRTC.Resource { + get + } + public var metricExporter: any VideoSDKRTC.MetricExporter { + get + } + public var metricPushInterval: Foundation.TimeInterval { + get + } + public var metricProcessor: any VideoSDKRTC.MetricProcessor { + get + } + public init() + public func with(processor: any VideoSDKRTC.MetricProcessor) -> Self + public func with(exporter: any VideoSDKRTC.MetricExporter) -> Self + public func with(pushInterval: Foundation.TimeInterval) -> Self + public func with(resource: VideoSDKRTC.Resource) -> Self + public func build() -> any VideoSDKRTC.MeterProvider + @objc deinit +} +public class MeterProviderSdk : VideoSDKRTC.MeterProvider { + public static let defaultPushInterval: Swift.Double + convenience public init() + public init(metricProcessor: any VideoSDKRTC.MetricProcessor, metricExporter: any VideoSDKRTC.MetricExporter, metricPushInterval: Foundation.TimeInterval = MeterProviderSdk.defaultPushInterval, resource: VideoSDKRTC.Resource = EnvVarResource.get()) + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Meter + public func setMetricProcessor(_ metricProcessor: any VideoSDKRTC.MetricProcessor) + public func addMetricExporter(_ metricExporter: any VideoSDKRTC.MetricExporter) + public func setMetricPushInterval(_ interval: Foundation.TimeInterval) + public func setResource(_ resource: VideoSDKRTC.Resource) + @objc deinit +} +extension VideoSDKRTC.Meter { + public func addMetric(name _: Swift.String, type _: VideoSDKRTC.AggregationType, data _: [any VideoSDKRTC.MetricData]) +} +public struct Metric { + public var namespace: Swift.String { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var name: Swift.String { + get + } + public var description: Swift.String { + get + } + public var aggregationType: VideoSDKRTC.AggregationType { + get + } + public var data: [any VideoSDKRTC.MetricData] { + get + } +} +extension VideoSDKRTC.Metric : Swift.Equatable { + public static func == (lhs: VideoSDKRTC.Metric, rhs: VideoSDKRTC.Metric) -> Swift.Bool +} +extension VideoSDKRTC.Metric : Swift.Codable { + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public protocol MetricData { + var startTimestamp: Foundation.Date { get set } + var timestamp: Foundation.Date { get set } + var labels: [Swift.String : Swift.String] { get set } +} +public struct NoopMetricData : VideoSDKRTC.MetricData { + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] +} +public struct SumData : VideoSDKRTC.MetricData { + public init(startTimestamp: Foundation.Date, timestamp: Foundation.Date, labels: [Swift.String : Swift.String] = [String: String](), sum: T) + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] + public var sum: T +} +public struct SummaryData : VideoSDKRTC.MetricData { + public init(startTimestamp: Foundation.Date, timestamp: Foundation.Date, labels: [Swift.String : Swift.String] = [String: String](), count: Swift.Int, sum: T, min: T, max: T) + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] + public var count: Swift.Int + public var sum: T + public var min: T + public var max: T +} +public struct HistogramData : VideoSDKRTC.MetricData { + public init(startTimestamp: Foundation.Date, timestamp: Foundation.Date, labels: [Swift.String : Swift.String] = [String: String](), buckets: (boundaries: Swift.Array, counts: Swift.Array), count: Swift.Int, sum: T) + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] + public var buckets: (boundaries: Swift.Array, counts: Swift.Array) + public var count: Swift.Int + public var sum: T +} +extension VideoSDKRTC.NoopMetricData : Swift.Equatable, Swift.Codable { + public static func == (a: VideoSDKRTC.NoopMetricData, b: VideoSDKRTC.NoopMetricData) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.SumData : Swift.Equatable where T : Swift.Equatable { + public static func == (a: VideoSDKRTC.SumData, b: VideoSDKRTC.SumData) -> Swift.Bool +} +extension VideoSDKRTC.SumData : Swift.Codable where T : Swift.Decodable, T : Swift.Encodable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.SummaryData : Swift.Equatable where T : Swift.Equatable { + public static func == (a: VideoSDKRTC.SummaryData, b: VideoSDKRTC.SummaryData) -> Swift.Bool +} +extension VideoSDKRTC.SummaryData : Swift.Codable where T : Swift.Decodable, T : Swift.Encodable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.HistogramData : Swift.Equatable where T : Swift.Equatable { + public static func == (lhs: VideoSDKRTC.HistogramData, rhs: VideoSDKRTC.HistogramData) -> Swift.Bool +} +extension VideoSDKRTC.HistogramData : Swift.Codable where T : Swift.Decodable, T : Swift.Encodable { + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public struct MetricDescriptor : Swift.Hashable { + public var name: Swift.String { + get + } + public var description: Swift.String { + get + } + public var view: VideoSDKRTC.StableView { + get + } + public var instrument: VideoSDKRTC.InstrumentDescriptor { + get + } + public func aggregationName() -> Swift.String + public static func == (lhs: VideoSDKRTC.MetricDescriptor, rhs: VideoSDKRTC.MetricDescriptor) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public enum MetricExporterResultCode { + case success + case failureNotRetryable + case failureRetryable + public static func == (a: VideoSDKRTC.MetricExporterResultCode, b: VideoSDKRTC.MetricExporterResultCode) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public protocol MetricExporter { + func export(metrics: [VideoSDKRTC.Metric], shouldCancel: (() -> Swift.Bool)?) -> VideoSDKRTC.MetricExporterResultCode +} +public protocol MetricProcessor { + func finishCollectionCycle() -> [VideoSDKRTC.Metric] + func process(metric: VideoSDKRTC.Metric) +} +public class MetricProcessorSdk : VideoSDKRTC.MetricProcessor { + public init() + public func finishCollectionCycle() -> [VideoSDKRTC.Metric] + public func process(metric: VideoSDKRTC.Metric) + @objc deinit +} +public protocol MetricProducer : VideoSDKRTC.CollectionRegistration { + func collectAllMetrics() -> [VideoSDKRTC.StableMetricData] +} +public struct NoopMetricProducer : VideoSDKRTC.MetricProducer { + public func collectAllMetrics() -> [VideoSDKRTC.StableMetricData] +} +public enum Opentelemetry_Proto_Metrics_V1_AggregationTemporality : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unspecified + case delta + case cumulative + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality] +} +public enum Opentelemetry_Proto_Metrics_V1_DataPointFlags : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case doNotUse + case noRecordedValueMask + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags] +} +public struct Opentelemetry_Proto_Metrics_V1_MetricsData { + public var resourceMetrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ResourceMetrics { + public var resource: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource { + get + set + } + public var hasResource: Swift.Bool { + get + } + public mutating func clearResource() + public var scopeMetrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ScopeMetrics { + public var scope: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope { + get + set + } + public var hasScope: Swift.Bool { + get + } + public mutating func clearScope() + public var metrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Metric { + public var name: Swift.String + public var description_p: Swift.String + public var unit: Swift.String + public var data: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data? + public var gauge: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge { + get + set + } + public var sum: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum { + get + set + } + public var histogram: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram { + get + set + } + public var exponentialHistogram: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram { + get + set + } + public var summary: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Data : Swift.Equatable { + case gauge(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge) + case sum(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum) + case histogram(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram) + case exponentialHistogram(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram) + case summary(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary) + public static func == (a: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data, b: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data) -> Swift.Bool + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Gauge { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Sum { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint] + public var aggregationTemporality: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality + public var isMonotonic: Swift.Bool + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Histogram { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint] + public var aggregationTemporality: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ExponentialHistogram { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint] + public var aggregationTemporality: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Summary { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_NumberDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var value: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value? + public var asDouble: Swift.Double { + get + set + } + public var asInt: Swift.Int64 { + get + set + } + public var exemplars: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar] + public var flags: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Value : Swift.Equatable { + case asDouble(Swift.Double) + case asInt(Swift.Int64) + public static func == (a: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value, b: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value) -> Swift.Bool + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_HistogramDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var count: Swift.UInt64 + public var sum: Swift.Double { + get + set + } + public var hasSum: Swift.Bool { + get + } + public mutating func clearSum() + public var bucketCounts: [Swift.UInt64] + public var explicitBounds: [Swift.Double] + public var exemplars: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar] + public var flags: Swift.UInt32 + public var min: Swift.Double { + get + set + } + public var hasMin: Swift.Bool { + get + } + public mutating func clearMin() + public var max: Swift.Double { + get + set + } + public var hasMax: Swift.Bool { + get + } + public mutating func clearMax() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var count: Swift.UInt64 + public var sum: Swift.Double { + get + set + } + public var hasSum: Swift.Bool { + get + } + public mutating func clearSum() + public var scale: Swift.Int32 + public var zeroCount: Swift.UInt64 + public var positive: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets { + get + set + } + public var hasPositive: Swift.Bool { + get + } + public mutating func clearPositive() + public var negative: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets { + get + set + } + public var hasNegative: Swift.Bool { + get + } + public mutating func clearNegative() + public var flags: Swift.UInt32 + public var exemplars: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar] + public var min: Swift.Double { + get + set + } + public var hasMin: Swift.Bool { + get + } + public mutating func clearMin() + public var max: Swift.Double { + get + set + } + public var hasMax: Swift.Bool { + get + } + public mutating func clearMax() + public var zeroThreshold: Swift.Double + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct Buckets { + public var offset: Swift.Int32 + public var bucketCounts: [Swift.UInt64] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_SummaryDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var count: Swift.UInt64 + public var sum: Swift.Double + public var quantileValues: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile] + public var flags: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct ValueAtQuantile { + public var quantile: Swift.Double + public var value: Swift.Double + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Exemplar { + public var filteredAttributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var timeUnixNano: Swift.UInt64 + public var value: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value? + public var asDouble: Swift.Double { + get + set + } + public var asInt: Swift.Int64 { + get + set + } + public var spanID: Foundation.Data + public var traceID: Foundation.Data + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Value : Swift.Equatable { + case asDouble(Swift.Double) + case asInt(Swift.Int64) + public static func == (a: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value, b: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value) -> Swift.Bool + } + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest { + public var resourceMetrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse { + public var partialSuccess: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess { + get + set + } + public var hasPartialSuccess: Swift.Bool { + get + } + public mutating func clearPartialSuccess() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess { + public var rejectedDataPoints: Swift.Int64 + public var errorMessage: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public enum MetricsAdapter { + public static func toProtoResourceMetrics(stableMetricData: [VideoSDKRTC.StableMetricData]) -> [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public static func toProtoResourceMetrics(metricDataList: [VideoSDKRTC.Metric]) -> [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public static func toProtoMetric(stableMetric: VideoSDKRTC.StableMetricData) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric? + public static func toProtoMetric(metric: VideoSDKRTC.Metric) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric? +} +public struct MetricStorageConstants { +} +public protocol MetricStorage { + var metricDescriptor: VideoSDKRTC.MetricDescriptor { get } + mutating func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + func isEmpty() -> Swift.Bool +} +public protocol WritableMetricStorage { + mutating func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + mutating func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +@_hasMissingDesignatedInitializers public class MetricStorageRegistry { + @objc deinit +} +public class MillisClock : VideoSDKRTC.Clock { + public init() + public var now: Foundation.Date { + get + } + @objc deinit +} +public class MonotonicClock : VideoSDKRTC.Clock { + public init(clock: any VideoSDKRTC.Clock) + public var now: Foundation.Date { + get + } + @objc deinit +} +public class MultiLogRecordExporter : VideoSDKRTC.LogRecordExporter { + public init(logRecordExporters: [any VideoSDKRTC.LogRecordExporter]) + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func shutdown() + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public class MultiLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + public init(logRecordProcessors: [any VideoSDKRTC.LogRecordProcessor]) + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + @objc deinit +} +public class MultiSpanExporter : VideoSDKRTC.SpanExporter { + public init(spanExporters: [any VideoSDKRTC.SpanExporter]) + public func export(spans: [VideoSDKRTC.SpanData]) -> VideoSDKRTC.SpanExporterResultCode + public func flush() -> VideoSDKRTC.SpanExporterResultCode + public func shutdown() + @objc deinit +} +public struct MultiSpanProcessor : VideoSDKRTC.SpanProcessor { + public init(spanProcessors: [any VideoSDKRTC.SpanProcessor]) + public var isStartRequired: Swift.Bool { + get + } + public var isEndRequired: Swift.Bool { + get + } + public func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + public func onEnd(span: any VideoSDKRTC.ReadableSpan) + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) +} +public struct _NameMap : Swift.ExpressibleByDictionaryLiteral { + public enum NameDescription { + case same(proto: Swift.StaticString) + case standard(proto: Swift.StaticString) + case unique(proto: Swift.StaticString, json: Swift.StaticString) + case aliased(proto: Swift.StaticString, aliases: [Swift.StaticString]) + } + public init() + public init(dictionaryLiteral elements: (Swift.Int, VideoSDKRTC._NameMap.NameDescription)...) + public typealias Key = Swift.Int + public typealias Value = VideoSDKRTC._NameMap.NameDescription +} +@_hasMissingDesignatedInitializers public class NoopLogRecordExporter : VideoSDKRTC.LogRecordExporter { + public static let instance: VideoSDKRTC.NoopLogRecordExporter + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func shutdown() + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +@_hasMissingDesignatedInitializers public class NoopLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public static let noopLogRecordProcessor: VideoSDKRTC.NoopLogRecordProcessor + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + @objc deinit +} +public protocol ObservableDoubleCounter { +} +public protocol ObservableDoubleGauge { +} +public protocol ObservableDoubleMeasurement { + func record(value: Swift.Double) + func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol ObservableDoubleUpDownCounter { +} +public struct ObservableInstrumentSdk : VideoSDKRTC.ObservableDoubleCounter, VideoSDKRTC.ObservableLongCounter, VideoSDKRTC.ObservableLongGauge, VideoSDKRTC.ObservableLongUpDownCounter, VideoSDKRTC.ObservableDoubleGauge, VideoSDKRTC.ObservableDoubleUpDownCounter { +} +public protocol ObservableLongCounter { +} +public protocol ObservableLongGauge { +} +public protocol ObservableLongMeasurement { + func record(value: Swift.Int) + func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol ObservableLongUpDownCounter { +} +public func defaultOltpHTTPMetricsEndpoint() -> Foundation.URL +@_inheritsConvenienceInitializers public class OtlpHttpMetricExporter : VideoSDKRTC.OtlpHttpExporterBase, VideoSDKRTC.MetricExporter { + override public init(endpoint: Foundation.URL = defaultOltpHTTPMetricsEndpoint(), useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func export(metrics: [VideoSDKRTC.Metric], shouldCancel: (() -> Swift.Bool)?) -> VideoSDKRTC.MetricExporterResultCode + public func flush() -> VideoSDKRTC.MetricExporterResultCode + @objc deinit +} +public struct OpenTelemetry { + public static var version: Swift.String + public static var instance: VideoSDKRTC.OpenTelemetry + public var tracerProvider: any VideoSDKRTC.TracerProvider { + get + } + public var meterProvider: any VideoSDKRTC.MeterProvider { + get + } + public var stableMeterProvider: (any VideoSDKRTC.StableMeterProvider)? { + get + } + public var loggerProvider: any VideoSDKRTC.LoggerProvider { + get + } + public var baggageManager: any VideoSDKRTC.BaggageManager { + get + } + public var propagators: any VideoSDKRTC.ContextPropagators { + get + } + public var contextProvider: VideoSDKRTC.OpenTelemetryContextProvider { + get + } + public static func registerStableMeterProvider(meterProvider: any VideoSDKRTC.StableMeterProvider) + public static func registerTracerProvider(tracerProvider: any VideoSDKRTC.TracerProvider) + public static func registerMeterProvider(meterProvider: any VideoSDKRTC.MeterProvider) + public static func registerLoggerProvider(loggerProvider: any VideoSDKRTC.LoggerProvider) + public static func registerBaggageManager(baggageManager: any VideoSDKRTC.BaggageManager) + public static func registerPropagators(textPropagators: [any VideoSDKRTC.TextMapPropagator], baggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator) + public static func registerContextManager(contextManager: any VideoSDKRTC.ContextManager) +} +public enum OpenTelemetryContextKeys : Swift.String { + case span + case baggage + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct OpenTelemetryContextProvider { + public var activeSpan: (any VideoSDKRTC.Span)? { + get + } + public var activeBaggage: (any VideoSDKRTC.Baggage)? { + get + } + public func setActiveSpan(_ span: any VideoSDKRTC.Span) + public func setActiveBaggage(_ baggage: any VideoSDKRTC.Baggage) + public func removeContextForSpan(_ span: any VideoSDKRTC.Span) + public func removeContextForBaggage(_ baggage: any VideoSDKRTC.Baggage) +} +public struct OtlpConfiguration { + public static let DefaultTimeoutInterval: Foundation.TimeInterval + public let headers: [(Swift.String, Swift.String)]? + public let timeout: Foundation.TimeInterval + public init(timeout: Foundation.TimeInterval = OtlpConfiguration.DefaultTimeoutInterval, headers: [(Swift.String, Swift.String)]? = nil) +} +public class OtlpHttpExporterBase { + public init(endpoint: Foundation.URL, useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func createRequest(body: any VideoSDKRTC.Message, endpoint: Foundation.URL, authToken: Swift.String) -> Foundation.URLRequest + public func shutdown() + @objc deinit +} +public func defaultOltpHttpLoggingEndpoint() -> Foundation.URL +@_inheritsConvenienceInitializers public class OtlpHttpLogExporter : VideoSDKRTC.OtlpHttpExporterBase, VideoSDKRTC.LogRecordExporter { + override public init(endpoint: Foundation.URL = defaultOltpHttpLoggingEndpoint(), useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func forceFlush() -> VideoSDKRTC.ExportResult + public func flush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public func defaultOltpHttpTracesEndpoint() -> Foundation.URL +@_inheritsConvenienceInitializers public class OtlpHttpTraceExporter : VideoSDKRTC.OtlpHttpExporterBase, VideoSDKRTC.SpanExporter { + override public init(endpoint: Foundation.URL = defaultOltpHttpTracesEndpoint(), useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func export(spans: [VideoSDKRTC.SpanData]) -> VideoSDKRTC.SpanExporterResultCode + public func flush() -> VideoSDKRTC.SpanExporterResultCode + @objc deinit +} +public struct OtlpSpan : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct Attribute : Swift.Codable { + public struct Value : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public enum OTPCConstants { + public enum HTTP { + public static let userAgent: Swift.String + } +} +@_hasMissingDesignatedInitializers public class Participant : Swift.Equatable { + public var id: Swift.String { + get + } + public var displayName: Swift.String { + get + } + public var videoQuality: VideoSDKRTC.VideoQuality { + get + } + public var isLocal: Swift.Bool { + get + } + public var streams: [Swift.String : VideoSDKRTC.MediaStream] { + get + } + public var pinState: VideoSDKRTC.ParticipantPinState + public var mode: VideoSDKRTC.Mode + @objc deinit +} +extension VideoSDKRTC.Participant { + public func enableMic() + public func disableMic() + public func enableWebcam() + public func disableWebcam() + public func remove() + public func participantPinStateChanged(pinState: VideoSDKRTC.ParticipantPinState) + public func participantModeChanged(mode: VideoSDKRTC.Mode) + public func getAudioStats() -> [Swift.String : Any]? + public func getVideoStats() -> [Swift.String : Any]? +} +extension VideoSDKRTC.Participant { + public func addStream(_ stream: VideoSDKRTC.MediaStream) + @discardableResult + public func removeStream(_ streamId: Swift.String) -> VideoSDKRTC.MediaStream? + public func removeAllStreams() + public func setQuality(_ quality: VideoSDKRTC.VideoQuality) + public func pin(_ peerId: Swift.String = "", _ pinType: VideoSDKRTC.PinType = .SHARE_AND_CAM) + public func unpin(_ pinType: VideoSDKRTC.PinType = .SHARE_AND_CAM) + public func setPinState(pinState: VideoSDKRTC.ParticipantPinState, peerId: Swift.String = "") +} +extension VideoSDKRTC.Participant { + public func addEventListener(_ listener: any VideoSDKRTC.ParticipantEventListener) + public func removeEventListener(_ listener: any VideoSDKRTC.ParticipantEventListener) +} +extension VideoSDKRTC.Participant { + public static func == (lhs: VideoSDKRTC.Participant, rhs: VideoSDKRTC.Participant) -> Swift.Bool +} +public protocol ParticipantEventListener { + func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) + func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +} +extension VideoSDKRTC.ParticipantEventListener { + public func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) + public func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +} +public enum PinType : Swift.String { + case SHARE_AND_CAM, CAM, SHARE + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct ParticipantPinState : Swift.Codable { + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +@_hasMissingDesignatedInitializers public class PointData : Swift.Equatable { + public var startEpochNanos: Swift.UInt64 + public var endEpochNanos: Swift.UInt64 + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] + public var exemplars: [VideoSDKRTC.ExemplarData] + public static func - (left: VideoSDKRTC.PointData, right: VideoSDKRTC.PointData) -> Self + public static func == (lhs: VideoSDKRTC.PointData, rhs: VideoSDKRTC.PointData) -> Swift.Bool + @objc deinit +} +public protocol ProtobufAPIVersion_3 { +} +public protocol ProtobufAPIVersionCheck { + associatedtype Version : VideoSDKRTC.ProtobufAPIVersion_3 +} +public struct _ProtobufMap where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.FieldType { + public typealias Key = KeyType.BaseType + public typealias Value = ValueType.BaseType + public typealias BaseType = Swift.Dictionary.Key, VideoSDKRTC._ProtobufMap.Value> +} +public struct _ProtobufMessageMap where KeyType : VideoSDKRTC.MapKeyType, ValueType : Swift.Hashable, ValueType : VideoSDKRTC.Message { + public typealias Key = KeyType.BaseType + public typealias Value = ValueType + public typealias BaseType = Swift.Dictionary.Key, VideoSDKRTC._ProtobufMessageMap.Value> +} +public struct _ProtobufEnumMap where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.Enum { + public typealias Key = KeyType.BaseType + public typealias Value = ValueType + public typealias BaseType = Swift.Dictionary.Key, VideoSDKRTC._ProtobufEnumMap.Value> +} +public protocol _ProtoNameProviding { + static var _protobuf_nameMap: VideoSDKRTC._NameMap { get } +} +public struct ProxyMeter : VideoSDKRTC.Meter { + public func createRawDoubleCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + public func createRawIntCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + public func createRawDoubleHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + public func createRawIntHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + public func getLabelSet(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.LabelSet + public func createIntCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + public func createDoubleCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + public func createIntMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + public func createDoubleMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + public func createIntHistogram(name: Swift.String, explicitBoundaries: Swift.Array? = nil, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + public func createDoubleHistogram(name: Swift.String, explicitBoundaries: Swift.Array?, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + public func createIntObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + public func createDoubleObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric + public func createIntObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + public func createDoubleObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric +} +@_hasMissingDesignatedInitializers public class PubSub { + @objc deinit +} +extension VideoSDKRTC.PubSub { + public func publish(topic: Swift.String, message: Swift.String, options: [Swift.String : Any] = [:]) + public func subscribe(topic: Swift.String, forListener listener: any VideoSDKRTC.PubSubMessageListener) + public func unsubscribe(topic: Swift.String, forListener listener: any VideoSDKRTC.PubSubMessageListener) + public func getMessagesForTopic(_ topic: Swift.String) -> [VideoSDKRTC.PubSubMessage] +} +@objc @_hasMissingDesignatedInitializers public class PubSubMessage : ObjectiveC.NSObject { + public var id: Swift.String + public var topic: Swift.String + public var message: Swift.String + public var senderId: Swift.String + public var senderName: Swift.String + public var timestamp: Swift.String + @objc deinit +} +public protocol PubSubMessageListener { + func onMessageReceived(_ message: VideoSDKRTC.PubSubMessage) +} +public struct RandomIdGenerator : VideoSDKRTC.IdGenerator { + public init() + public func generateSpanId() -> VideoSDKRTC.SpanId + public func generateTraceId() -> VideoSDKRTC.TraceId +} +public protocol RawCounterMetric { + associatedtype T + func record(sum: Self.T, startDate: Foundation.Date, endDate: Foundation.Date, labels: [Swift.String : Swift.String]) + func record(sum: Self.T, startDate: Foundation.Date, endDate: Foundation.Date, labelset: VideoSDKRTC.LabelSet) + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawCounterMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawCounterMetric +} +public struct AnyRawCounterMetric : VideoSDKRTC.RawCounterMetric { + public init(_ countable: U) where T == U.T, U : VideoSDKRTC.RawCounterMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawCounterMetric + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labelset: VideoSDKRTC.LabelSet) + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labels: [Swift.String : Swift.String]) +} +public struct NoopRawCounterMetric : VideoSDKRTC.RawCounterMetric { + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labels: [Swift.String : Swift.String]) + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labelset: VideoSDKRTC.LabelSet) + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawCounterMetric +} +public protocol RawHistogramMetric { + associatedtype T + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawHistogramMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawHistogramMetric + func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: Self.T, labelset: VideoSDKRTC.LabelSet) + func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: Self.T, labels: [Swift.String : Swift.String]) +} +public struct AnyRawHistogramMetric : VideoSDKRTC.RawHistogramMetric { + public init(_ histogram: U) where T == U.T, U : VideoSDKRTC.RawHistogramMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawHistogramMetric + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labels: [Swift.String : Swift.String]) + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labelset: VideoSDKRTC.LabelSet) +} +public struct NoopRawHistogramMetric : VideoSDKRTC.RawHistogramMetric { + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labelset: VideoSDKRTC.LabelSet) + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labels: [Swift.String : Swift.String]) + public init() + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawHistogramMetric +} +public struct ReadableLogRecord : Swift.Codable { + public init(resource: VideoSDKRTC.Resource, instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo, timestamp: Foundation.Date, observedTimestamp: Foundation.Date? = nil, spanContext: VideoSDKRTC.SpanContext? = nil, severity: VideoSDKRTC.Severity? = nil, body: Swift.String? = nil, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var timestamp: Foundation.Date { + get + } + public var observedTimestamp: Foundation.Date? { + get + } + public var spanContext: VideoSDKRTC.SpanContext? { + get + } + public var severity: VideoSDKRTC.Severity? { + get + } + public var body: Swift.String? { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public protocol ReadableSpan : VideoSDKRTC.Span { + var name: Swift.String { get set } + var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { get } + func toSpanData() -> VideoSDKRTC.SpanData + var hasEnded: Swift.Bool { get } + var latency: Foundation.TimeInterval { get } +} +@_hasMissingDesignatedInitializers public class RecordEventsReadableSpan : VideoSDKRTC.ReadableSpan { + public var isRecording: Swift.Bool + public var name: Swift.String { + get + set + } + public var spanLimits: VideoSDKRTC.SpanLimits { + get + } + public var context: VideoSDKRTC.SpanContext { + get + } + public var parentContext: VideoSDKRTC.SpanContext? { + get + } + public var hasRemoteParent: Swift.Bool { + get + } + public var spanProcessor: any VideoSDKRTC.SpanProcessor { + get + } + public var links: [VideoSDKRTC.SpanData.Link] { + get + } + public var totalRecordedLinks: Swift.Int { + get + } + public var maxNumberOfAttributes: Swift.Int { + get + } + public var maxNumberOfAttributesPerEvent: Swift.Int { + get + } + public var kind: VideoSDKRTC.SpanKind { + get + } + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var startTime: Foundation.Date { + get + } + public var events: VideoSDKRTC.ArrayWithCapacity { + get + } + public var totalAttributeCount: Swift.Int { + get + } + public var totalRecordedEvents: Swift.Int { + get + } + public var status: VideoSDKRTC.Status { + get + set + } + public var latency: Foundation.TimeInterval { + get + } + public var endTime: Foundation.Date? { + get + } + public var hasEnded: Swift.Bool { + get + } + public static func startSpan(context: VideoSDKRTC.SpanContext, name: Swift.String, instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo, kind: VideoSDKRTC.SpanKind, parentContext: VideoSDKRTC.SpanContext?, hasRemoteParent: Swift.Bool, spanLimits: VideoSDKRTC.SpanLimits, spanProcessor: any VideoSDKRTC.SpanProcessor, clock: any VideoSDKRTC.Clock, resource: VideoSDKRTC.Resource, attributes: VideoSDKRTC.AttributesDictionary, links: [VideoSDKRTC.SpanData.Link], totalRecordedLinks: Swift.Int, startTime: Foundation.Date?) -> VideoSDKRTC.RecordEventsReadableSpan + public func toSpanData() -> VideoSDKRTC.SpanData + public func setAttribute(key: Swift.String, value: VideoSDKRTC.AttributeValue?) + public func addEvent(name: Swift.String) + public func addEvent(name: Swift.String, timestamp: Foundation.Date) + public func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue], timestamp: Foundation.Date) + public func end() + public func end(time: Foundation.Date) + public var description: Swift.String { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class RegisteredReader : Swift.Equatable, Swift.Hashable { + final public let id: Swift.Int32 + final public let reader: any VideoSDKRTC.StableMetricReader + final public let registry: VideoSDKRTC.StableViewRegistry + public var lastCollectedEpochNanos: Swift.UInt64 + public func hash(into hasher: inout Swift.Hasher) + public static func == (lhs: VideoSDKRTC.RegisteredReader, rhs: VideoSDKRTC.RegisteredReader) -> Swift.Bool + @objc deinit + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class RegisteredView { + public var selector: VideoSDKRTC.InstrumentSelector { + get + } + public var view: VideoSDKRTC.StableView { + get + } + public var attributeProcessor: VideoSDKRTC.AttributeProcessor { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class ReservoirCell { + @objc deinit +} +public protocol ReservoirCellSelector { + func reservoirCellIndex(for cells: [VideoSDKRTC.ReservoirCell], value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Int + func reservoirCellIndex(for cells: [VideoSDKRTC.ReservoirCell], value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Int + func reset() +} +public struct Resource : Swift.Equatable, Swift.Hashable, Swift.Codable { + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] + public init() + public init(attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public mutating func merge(other: VideoSDKRTC.Resource) + public func merging(other: VideoSDKRTC.Resource) -> VideoSDKRTC.Resource + public static func == (a: VideoSDKRTC.Resource, b: VideoSDKRTC.Resource) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public struct Opentelemetry_Proto_Resource_V1_Resource { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource, rhs: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct ResourceAdapter { + public static func toProtoResource(resource: VideoSDKRTC.Resource) -> VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource +} +public enum ResourceAttributes : Swift.String { + case browserBrands + case browserPlatform + case browserMobile + case browserLanguage + case userAgentOriginal + case cloudProvider + case cloudAccountId + case cloudRegion + case cloudResourceId + case cloudAvailabilityZone + case cloudPlatform + case awsEcsContainerArn + case awsEcsClusterArn + case awsEcsLaunchtype + case awsEcsTaskArn + case awsEcsTaskFamily + case awsEcsTaskRevision + case awsEksClusterArn + case awsLogGroupNames + case awsLogGroupArns + case awsLogStreamNames + case awsLogStreamArns + case herokuReleaseCreationTimestamp + case herokuReleaseCommit + case herokuAppId + case containerName + case containerId + case containerRuntime + case containerImageName + case containerImageTag + case deploymentEnvironment + case deviceId + case deviceModelIdentifier + case deviceModelName + case deviceManufacturer + case faasName + case faasVersion + case faasInstance + case faasMaxMemory + case hostId + case hostName + case hostType + case hostArch + case hostImageName + case hostImageId + case hostImageVersion + case k8sClusterName + case k8sNodeName + case k8sNodeUid + case k8sNamespaceName + case k8sPodUid + case k8sPodName + case k8sContainerName + case k8sContainerRestartCount + case k8sReplicasetUid + case k8sReplicasetName + case k8sDeploymentUid + case k8sDeploymentName + case k8sStatefulsetUid + case k8sStatefulsetName + case k8sDaemonsetUid + case k8sDaemonsetName + case k8sJobUid + case k8sJobName + case k8sCronjobUid + case k8sCronjobName + case osType + case osDescription + case osName + case osVersion + case processPid + case processParentPid + case processExecutableName + case processExecutablePath + case processCommand + case processCommandLine + case processCommandArgs + case processOwner + case processRuntimeName + case processRuntimeVersion + case processRuntimeDescription + case serviceName + case serviceNamespace + case serviceInstanceId + case serviceVersion + case telemetrySdkName + case telemetrySdkLanguage + case telemetrySdkVersion + case telemetryAutoVersion + case webengineName + case webengineVersion + case webengineDescription + case otelScopeName + case otelScopeVersion + case otelLibraryName + case otelLibraryVersion + public struct CloudProviderValues : Swift.CustomStringConvertible { + public static let alibabaCloud: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let aws: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let azure: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let gcp: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let heroku: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let ibmCloud: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let tencentCloud: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct CloudPlatformValues : Swift.CustomStringConvertible { + public static let alibabaCloudEcs: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let alibabaCloudFc: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let alibabaCloudOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsEc2: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsEcs: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsEks: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsLambda: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsElasticBeanstalk: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsAppRunner: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureVm: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureContainerInstances: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureAks: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureFunctions: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureAppService: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpComputeEngine: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpCloudRun: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpKubernetesEngine: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpCloudFunctions: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpAppEngine: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let ibmCloudOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let tencentCloudCvm: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let tencentCloudEks: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let tencentCloudScf: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum AwsEcsLaunchtypeValues : Swift.String { + case ec2 + case fargate + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct HostArchValues : Swift.CustomStringConvertible { + public static let amd64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let arm32: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let arm64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let ia64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let ppc32: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let ppc64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let s390x: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let x86: VideoSDKRTC.ResourceAttributes.HostArchValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct OsTypeValues : Swift.CustomStringConvertible { + public static let windows: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let linux: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let darwin: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let freebsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let netbsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let openbsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let dragonflybsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let hpux: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let aix: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let solaris: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let zOs: VideoSDKRTC.ResourceAttributes.OsTypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct TelemetrySdkLanguageValues : Swift.CustomStringConvertible { + public static let cpp: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let dotnet: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let erlang: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let go: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let java: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let nodejs: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let php: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let python: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let ruby: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let webjs: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let swift: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public func == (left: VideoSDKRTC.ResourceAttributes, right: Swift.String) -> Swift.Bool +public func == (left: Swift.String, right: VideoSDKRTC.ResourceAttributes) -> Swift.Bool +public protocol Sampler : AnyObject, Swift.CustomStringConvertible { + func shouldSample(parentContext: VideoSDKRTC.SpanContext?, traceId: VideoSDKRTC.TraceId, name: Swift.String, kind: VideoSDKRTC.SpanKind, attributes: [Swift.String : VideoSDKRTC.AttributeValue], parentLinks: [VideoSDKRTC.SpanData.Link]) -> any VideoSDKRTC.Decision +} +public protocol Decision { + var isSampled: Swift.Bool { get } + var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { get } +} +public enum Samplers { + public static var alwaysOn: any VideoSDKRTC.Sampler + public static var alwaysOff: any VideoSDKRTC.Sampler + public static func traceIdRatio(ratio: Swift.Double) -> any VideoSDKRTC.Sampler + public static func parentBased(root: any VideoSDKRTC.Sampler, remoteParentSampled: (any VideoSDKRTC.Sampler)? = nil, remoteParentNotSampled: (any VideoSDKRTC.Sampler)? = nil, localParentSampled: (any VideoSDKRTC.Sampler)? = nil, localParentNotSampled: (any VideoSDKRTC.Sampler)? = nil) -> any VideoSDKRTC.Sampler +} +public enum SemanticAttributes : Swift.String { + case exceptionType + case exceptionMessage + case exceptionStacktrace + case httpMethod + case httpStatusCode + case netProtocolName + case netProtocolVersion + case netPeerName + case netPeerPort + case httpScheme + case httpRoute + case netHostName + case netHostPort + case eventName + case eventDomain + case logRecordUid + case featureFlagKey + case featureFlagProviderName + case featureFlagVariant + case awsLambdaInvokedArn + case cloudeventsEventId + case cloudeventsEventSource + case cloudeventsEventSpecVersion + case cloudeventsEventType + case cloudeventsEventSubject + case opentracingRefType + case dbSystem + case dbConnectionString + case dbUser + case dbJdbcDriverClassname + case dbName + case dbStatement + case dbOperation + case netSockPeerAddr + case netSockPeerPort + case netSockFamily + case netSockPeerName + case netTransport + case dbMssqlInstanceName + case dbCassandraPageSize + case dbCassandraConsistencyLevel + case dbCassandraTable + case dbCassandraIdempotence + case dbCassandraSpeculativeExecutionCount + case dbCassandraCoordinatorId + case dbCassandraCoordinatorDc + case dbRedisDatabaseIndex + case dbMongodbCollection + case dbSqlTable + case dbCosmosdbClientId + case dbCosmosdbOperationType + case userAgentOriginal + case dbCosmosdbConnectionMode + case dbCosmosdbContainer + case dbCosmosdbRequestContentLength + case dbCosmosdbStatusCode + case dbCosmosdbSubStatusCode + case dbCosmosdbRequestCharge + case otelStatusCode + case otelStatusDescription + case faasTrigger + case faasInvocationId + case cloudResourceId + case faasDocumentCollection + case faasDocumentOperation + case faasDocumentTime + case faasDocumentName + case httpTarget + case httpClientIp + case netSockHostAddr + case netSockHostPort + case messagingSystem + case messagingOperation + case messagingBatchMessageCount + case messagingMessageId + case messagingMessageConversationId + case messagingMessagePayloadSizeBytes + case messagingMessagePayloadCompressedSizeBytes + case faasTime + case faasCron + case faasColdstart + case faasInvokedName + case faasInvokedProvider + case faasInvokedRegion + case netHostConnectionType + case netHostConnectionSubtype + case netHostCarrierName + case netHostCarrierMcc + case netHostCarrierMnc + case netHostCarrierIcc + case peerService + case enduserId + case enduserRole + case enduserScope + case threadId + case threadName + case codeFunction + case codeNamespace + case codeFilepath + case codeLineno + case codeColumn + case httpRequestContentLength + case httpResponseContentLength + case httpUrl + case httpResendCount + case rpcSystem + case rpcService + case rpcMethod + case awsRequestId + case awsDynamodbTableNames + case awsDynamodbConsumedCapacity + case awsDynamodbItemCollectionMetrics + case awsDynamodbProvisionedReadCapacity + case awsDynamodbProvisionedWriteCapacity + case awsDynamodbConsistentRead + case awsDynamodbProjection + case awsDynamodbLimit + case awsDynamodbAttributesToGet + case awsDynamodbIndexName + case awsDynamodbSelect + case awsDynamodbGlobalSecondaryIndexes + case awsDynamodbLocalSecondaryIndexes + case awsDynamodbExclusiveStartTable + case awsDynamodbTableCount + case awsDynamodbScanForward + case awsDynamodbSegment + case awsDynamodbTotalSegments + case awsDynamodbCount + case awsDynamodbScannedCount + case awsDynamodbAttributeDefinitions + case awsDynamodbGlobalSecondaryIndexUpdates + case awsS3Bucket + case awsS3Key + case awsS3CopySource + case awsS3UploadId + case awsS3Delete + case awsS3PartNumber + case graphqlOperationName + case graphqlOperationType + case graphqlDocument + case messagingDestinationName + case messagingSourceName + case messagingDestinationTemplate + case messagingDestinationTemporary + case messagingDestinationAnonymous + case messagingSourceTemplate + case messagingSourceTemporary + case messagingSourceAnonymous + case messagingConsumerId + case messagingRabbitmqDestinationRoutingKey + case messagingKafkaMessageKey + case messagingKafkaConsumerGroup + case messagingKafkaClientId + case messagingKafkaDestinationPartition + case messagingKafkaSourcePartition + case messagingKafkaMessageOffset + case messagingKafkaMessageTombstone + case messagingRocketmqNamespace + case messagingRocketmqClientGroup + case messagingRocketmqClientId + case messagingRocketmqMessageDeliveryTimestamp + case messagingRocketmqMessageDelayTimeLevel + case messagingRocketmqMessageGroup + case messagingRocketmqMessageType + case messagingRocketmqMessageTag + case messagingRocketmqMessageKeys + case messagingRocketmqConsumptionModel + case rpcGrpcStatusCode + case rpcJsonrpcVersion + case rpcJsonrpcRequestId + case rpcJsonrpcErrorCode + case rpcJsonrpcErrorMessage + case messageType + case messageId + case messageCompressedSize + case messageUncompressedSize + case rpcConnectRpcErrorCode + case exceptionEscaped + case exception + public struct EventDomainValues : Swift.CustomStringConvertible { + public static let browser: VideoSDKRTC.SemanticAttributes.EventDomainValues + public static let device: VideoSDKRTC.SemanticAttributes.EventDomainValues + public static let k8s: VideoSDKRTC.SemanticAttributes.EventDomainValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum OpentracingRefTypeValues : Swift.String { + case child_of + case follows_from + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct DbSystemValues : Swift.CustomStringConvertible { + public static let otherSql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mssql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mssqlcompact: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mysql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let oracle: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let db2: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let postgresql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let redshift: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hive: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cloudscape: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hsqldb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let progress: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let maxdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hanadb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let ingres: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let firstsql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let edb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cache: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let adabas: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let firebird: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let derby: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let filemaker: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let informix: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let instantdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let interbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mariadb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let netezza: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let pervasive: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let pointbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let sqlite: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let sybase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let teradata: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let vertica: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let h2: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let coldfusion: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cassandra: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mongodb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let redis: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let couchbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let couchdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cosmosdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let dynamodb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let neo4j: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let geode: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let elasticsearch: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let memcached: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cockroachdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let opensearch: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let clickhouse: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let spanner: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let trino: VideoSDKRTC.SemanticAttributes.DbSystemValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetSockFamilyValues : Swift.CustomStringConvertible { + public static let inet: VideoSDKRTC.SemanticAttributes.NetSockFamilyValues + public static let inet6: VideoSDKRTC.SemanticAttributes.NetSockFamilyValues + public static let unix: VideoSDKRTC.SemanticAttributes.NetSockFamilyValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetTransportValues : Swift.CustomStringConvertible { + public static let ipTcp: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let ipUdp: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let pipe: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let inproc: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let other: VideoSDKRTC.SemanticAttributes.NetTransportValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum DbCassandraConsistencyLevelValues : Swift.String { + case all + case each_quorum + case quorum + case local_quorum + case one + case two + case three + case local_one + case any + case serial + case local_serial + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct DbCosmosdbOperationTypeValues : Swift.CustomStringConvertible { + public static let invalid: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let create: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let patch: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let read: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let readFeed: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let delete: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let replace: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let execute: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let query: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let head: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let headFeed: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let upsert: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let batch: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let queryPlan: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let executeJavascript: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum DbCosmosdbConnectionModeValues : Swift.String { + case gateway + case direct + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum OtelStatusCodeValues : Swift.String { + case ok + case error + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum FaasTriggerValues : Swift.String { + case datasource + case http + case pubsub + case timer + case other + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct FaasDocumentOperationValues : Swift.CustomStringConvertible { + public static let insert: VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues + public static let edit: VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues + public static let delete: VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct MessagingOperationValues : Swift.CustomStringConvertible { + public static let publish: VideoSDKRTC.SemanticAttributes.MessagingOperationValues + public static let receive: VideoSDKRTC.SemanticAttributes.MessagingOperationValues + public static let process: VideoSDKRTC.SemanticAttributes.MessagingOperationValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct FaasInvokedProviderValues : Swift.CustomStringConvertible { + public static let alibabaCloud: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let aws: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let azure: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let gcp: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let tencentCloud: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetHostConnectionTypeValues : Swift.CustomStringConvertible { + public static let wifi: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let wired: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let cell: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let unavailable: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let unknown: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetHostConnectionSubtypeValues : Swift.CustomStringConvertible { + public static let gprs: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let edge: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let umts: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let cdma: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let evdo0: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let evdoA: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let cdma20001xrtt: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hsdpa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hsupa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hspa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let iden: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let evdoB: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let lte: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let ehrpd: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hspap: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let gsm: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let tdScdma: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let iwlan: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let nr: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let nrnsa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let lteCa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct RpcSystemValues : Swift.CustomStringConvertible { + public static let grpc: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let javaRmi: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let dotnetWcf: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let apacheDubbo: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let connectRpc: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum GraphqlOperationTypeValues : Swift.String { + case query + case mutation + case subscription + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum MessagingRocketmqMessageTypeValues : Swift.String { + case normal + case fifo + case delay + case transaction + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum MessagingRocketmqConsumptionModelValues : Swift.String { + case clustering + case broadcasting + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum RpcGrpcStatusCodeValues : Swift.Int { + case ok + case cancelled + case unknown + case invalid_argument + case deadline_exceeded + case not_found + case already_exists + case permission_denied + case resource_exhausted + case failed_precondition + case aborted + case out_of_range + case unimplemented + case `internal` + case unavailable + case data_loss + case unauthenticated + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } + } + public enum MessageTypeValues : Swift.String { + case sent + case received + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum RpcConnectRpcErrorCodeValues : Swift.String { + case cancelled + case unknown + case invalid_argument + case deadline_exceeded + case not_found + case already_exists + case permission_denied + case resource_exhausted + case failed_precondition + case aborted + case out_of_range + case unimplemented + case `internal` + case unavailable + case data_loss + case unauthenticated + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum Severity : Swift.Int, Swift.Comparable, Swift.CustomStringConvertible, Swift.Codable { + case trace, trace2, trace3, trace4, debug, debug2, debug3, debug4, info, info2, info3, info4, warn, warn2, warn3, warn4, error, error2, error3, error4, fatal, fatal2, fatal3, fatal4 + public var description: Swift.String { + get + } + public static func < (lhs: VideoSDKRTC.Severity, rhs: VideoSDKRTC.Severity) -> Swift.Bool + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public struct SimpleExtensionMap : VideoSDKRTC.ExtensionMap, Swift.ExpressibleByArrayLiteral { + public typealias Element = VideoSDKRTC.AnyMessageExtension + public init() + public init(arrayLiteral: any VideoSDKRTC.AnyMessageExtension...) + public init(_ others: VideoSDKRTC.SimpleExtensionMap...) + public subscript(messageType: any VideoSDKRTC.Message.Type, fieldNumber: Swift.Int) -> (any VideoSDKRTC.AnyMessageExtension)? { + get + } + public func fieldNumberForProto(messageType: any VideoSDKRTC.Message.Type, protoFieldName: Swift.String) -> Swift.Int? + public mutating func insert(_ newValue: any VideoSDKRTC.AnyMessageExtension) + public mutating func insert(contentsOf: [any VideoSDKRTC.AnyMessageExtension]) + public mutating func formUnion(_ other: VideoSDKRTC.SimpleExtensionMap) + public func union(_ other: VideoSDKRTC.SimpleExtensionMap) -> VideoSDKRTC.SimpleExtensionMap + public typealias ArrayLiteralElement = any VideoSDKRTC.AnyMessageExtension +} +public class SimpleLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public init(logRecordExporter: any VideoSDKRTC.LogRecordExporter) + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + @objc deinit +} +public struct SimpleSpanProcessor : VideoSDKRTC.SpanProcessor { + public let isStartRequired: Swift.Bool + public let isEndRequired: Swift.Bool + public func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + public mutating func onEnd(span: any VideoSDKRTC.ReadableSpan) + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) + public init(spanExporter: any VideoSDKRTC.SpanExporter) + public func reportingOnlySampled(sampled: Swift.Bool) -> VideoSDKRTC.SimpleSpanProcessor +} +public struct Google_Protobuf_SourceContext { + public var fileName: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_SourceContext : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_SourceContext : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_SourceContext, rhs: VideoSDKRTC.Google_Protobuf_SourceContext) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol Span : AnyObject, Swift.CustomStringConvertible { + var kind: VideoSDKRTC.SpanKind { get } + var context: VideoSDKRTC.SpanContext { get } + var isRecording: Swift.Bool { get } + var status: VideoSDKRTC.Status { get set } + var name: Swift.String { get set } + func setAttribute(key: Swift.String, value: VideoSDKRTC.AttributeValue?) + func addEvent(name: Swift.String) + func addEvent(name: Swift.String, timestamp: Foundation.Date) + func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue], timestamp: Foundation.Date) + func end() + func end(time: Foundation.Date) +} +extension VideoSDKRTC.Span { + public func hash(into hasher: inout Swift.Hasher) + public static func == (lhs: any VideoSDKRTC.Span, rhs: any VideoSDKRTC.Span) -> Swift.Bool +} +extension VideoSDKRTC.Span { + public func setAttribute(key: Swift.String, value: Swift.String) + public func setAttribute(key: Swift.String, value: Swift.Int) + public func setAttribute(key: Swift.String, value: Swift.Double) + public func setAttribute(key: Swift.String, value: Swift.Bool) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.String) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.Int) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.Double) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.Bool) +} +extension VideoSDKRTC.Span { + public func putHttpHostAttribute(string hostName: Swift.String, int port: Swift.Int) + public func putHttpStatusCode(statusCode: Swift.Int, reasonPhrase: Swift.String) +} +public struct SpanAdapter { + public static func toProtoResourceSpans(spanDataList: [VideoSDKRTC.SpanData]) -> [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans] + public static func toProtoSpan(spanData: VideoSDKRTC.SpanData) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span +} +public protocol SpanBuilder : AnyObject { + @discardableResult + func setParent(_ parent: any VideoSDKRTC.Span) -> Self + @discardableResult + func setParent(_ parent: VideoSDKRTC.SpanContext) -> Self + @discardableResult + func setNoParent() -> Self + @discardableResult + func addLink(spanContext: VideoSDKRTC.SpanContext) -> Self + @discardableResult + func addLink(spanContext: VideoSDKRTC.SpanContext, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.String) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.Int) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.Double) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.Bool) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: VideoSDKRTC.AttributeValue) -> Self + @discardableResult + func setSpanKind(spanKind: VideoSDKRTC.SpanKind) -> Self + @discardableResult + func setStartTime(time: Foundation.Date) -> Self + @discardableResult + func setActive(_ active: Swift.Bool) -> Self + func startSpan() -> any VideoSDKRTC.Span +} +extension VideoSDKRTC.SpanBuilder { + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.String) -> Self + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.Int) -> Self + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.Double) -> Self + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.Bool) -> Self +} +public struct SpanContext : Swift.Equatable, Swift.CustomStringConvertible, Swift.Hashable, Swift.Codable { + public var traceId: VideoSDKRTC.TraceId { + get + } + public var spanId: VideoSDKRTC.SpanId { + get + } + public var traceFlags: VideoSDKRTC.TraceFlags { + get + } + public var traceState: VideoSDKRTC.TraceState + public let isRemote: Swift.Bool + public static func create(traceId: VideoSDKRTC.TraceId, spanId: VideoSDKRTC.SpanId, traceFlags: VideoSDKRTC.TraceFlags, traceState: VideoSDKRTC.TraceState) -> VideoSDKRTC.SpanContext + public static func createFromRemoteParent(traceId: VideoSDKRTC.TraceId, spanId: VideoSDKRTC.SpanId, traceFlags: VideoSDKRTC.TraceFlags, traceState: VideoSDKRTC.TraceState) -> VideoSDKRTC.SpanContext + public var isValid: Swift.Bool { + get + } + public var isSampled: Swift.Bool { + get + } + public static func == (lhs: VideoSDKRTC.SpanContext, rhs: VideoSDKRTC.SpanContext) -> Swift.Bool + public var description: Swift.String { + get + } + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public struct SpanData : Swift.Equatable, Swift.Codable { + public var traceId: VideoSDKRTC.TraceId { + get + } + public var spanId: VideoSDKRTC.SpanId { + get + } + public var traceFlags: VideoSDKRTC.TraceFlags { + get + } + public var traceState: VideoSDKRTC.TraceState { + get + } + public var parentSpanId: VideoSDKRTC.SpanId? { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScope: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var name: Swift.String { + get + } + public var kind: VideoSDKRTC.SpanKind { + get + } + public var startTime: Foundation.Date { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public var events: [VideoSDKRTC.SpanData.Event] { + get + } + public var links: [VideoSDKRTC.SpanData.Link] { + get + } + public var status: VideoSDKRTC.Status { + get + } + public var endTime: Foundation.Date { + get + } + public var hasRemoteParent: Swift.Bool { + get + } + public var hasEnded: Swift.Bool { + get + } + public var totalRecordedEvents: Swift.Int { + get + } + public var totalRecordedLinks: Swift.Int { + get + } + public var totalAttributeCount: Swift.Int { + get + } + public static func == (lhs: VideoSDKRTC.SpanData, rhs: VideoSDKRTC.SpanData) -> Swift.Bool + @discardableResult + public mutating func settingName(_ name: Swift.String) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTraceId(_ traceId: VideoSDKRTC.TraceId) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingSpanId(_ spanId: VideoSDKRTC.SpanId) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTraceFlags(_ traceFlags: VideoSDKRTC.TraceFlags) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTraceState(_ traceState: VideoSDKRTC.TraceState) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingStartTime(_ time: Foundation.Date) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingEndTime(_ time: Foundation.Date) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingKind(_ kind: VideoSDKRTC.SpanKind) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingLinks(_ links: [VideoSDKRTC.SpanData.Link]) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingParentSpanId(_ parentSpanId: VideoSDKRTC.SpanId) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingResource(_ resource: VideoSDKRTC.Resource) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingStatus(_ status: VideoSDKRTC.Status) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingEvents(_ events: [VideoSDKRTC.SpanData.Event]) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingHasRemoteParent(_ hasRemoteParent: Swift.Bool) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingHasEnded(_ hasEnded: Swift.Bool) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTotalRecordedEvents(_ totalRecordedEvents: Swift.Int) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTotalRecordedLinks(_ totalRecordedLinks: Swift.Int) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTotalAttributeCount(_ totalAttributeCount: Swift.Int) -> VideoSDKRTC.SpanData + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.SpanData { + public struct Event : Swift.Equatable, Swift.Codable { + public var timestamp: Foundation.Date { + get + } + public var name: Swift.String { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public init(name: Swift.String, timestamp: Foundation.Date, attributes: [Swift.String : VideoSDKRTC.AttributeValue]? = nil) + public init(timestamp: Foundation.Date, event: VideoSDKRTC.SpanData.Event) + public static func == (a: VideoSDKRTC.SpanData.Event, b: VideoSDKRTC.SpanData.Event) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } +} +extension VideoSDKRTC.SpanData { + public struct Link : Swift.Codable { + public let context: VideoSDKRTC.SpanContext + public let attributes: [Swift.String : VideoSDKRTC.AttributeValue] + public init(context: VideoSDKRTC.SpanContext, attributes: [Swift.String : VideoSDKRTC.AttributeValue] = [String: AttributeValue]()) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } +} +public func == (lhs: VideoSDKRTC.SpanData.Link, rhs: VideoSDKRTC.SpanData.Link) -> Swift.Bool +public func == (lhs: [VideoSDKRTC.SpanData.Link], rhs: [VideoSDKRTC.SpanData.Link]) -> Swift.Bool +public protocol SpanExporter : AnyObject { + @discardableResult + func export(spans: [VideoSDKRTC.SpanData]) -> VideoSDKRTC.SpanExporterResultCode + func flush() -> VideoSDKRTC.SpanExporterResultCode + func shutdown() +} +public enum SpanExporterResultCode { + case success + case failure + public static func == (a: VideoSDKRTC.SpanExporterResultCode, b: VideoSDKRTC.SpanExporterResultCode) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct SpanId : Swift.Equatable, Swift.Comparable, Swift.Hashable, Swift.CustomStringConvertible, Swift.Codable { + public static let size: Swift.Int + public static let invalidId: Swift.UInt64 + public static let invalid: VideoSDKRTC.SpanId + public static func getSize() -> Swift.Int + public init(id: Swift.UInt64) + public init() + public static func random() -> VideoSDKRTC.SpanId + public init(fromBytes bytes: Swift.Array, withOffset offset: Swift.Int = 0) + public init(fromBytes bytes: Swift.ArraySlice, withOffset offset: Swift.Int = 0) + public init(fromBytes bytes: Swift.ArraySlice, withOffset offset: Swift.Int = 0) + public func copyBytesTo(dest: inout Foundation.Data, destOffset: Swift.Int) + public func copyBytesTo(dest: inout Swift.Array, destOffset: Swift.Int) + public func copyBytesTo(dest: inout Swift.ArraySlice, destOffset: Swift.Int) + public init(fromHexString hex: Swift.String, withOffset offset: Swift.Int = 0) + public var hexString: Swift.String { + get + } + public var rawValue: Swift.UInt64 { + get + } + public var isValid: Swift.Bool { + get + } + public var description: Swift.String { + get + } + public static func < (lhs: VideoSDKRTC.SpanId, rhs: VideoSDKRTC.SpanId) -> Swift.Bool + public static func == (lhs: VideoSDKRTC.SpanId, rhs: VideoSDKRTC.SpanId) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public enum SpanKind : Swift.String, Swift.Equatable, Swift.Codable { + case `internal` + case server + case client + case producer + case consumer + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct SpanLimits : Swift.Equatable { + public var attributeCountLimit: Swift.Int { + get + } + public var eventCountLimit: Swift.Int { + get + } + public var linkCountLimit: Swift.Int { + get + } + public var attributePerEventCountLimit: Swift.Int { + get + } + public var attributePerLinkCountLimit: Swift.Int { + get + } + public init() + @discardableResult + public func settingAttributeCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingEventCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingLinkCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingAttributePerEventCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingAttributePerLinkCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + public static func == (lhs: VideoSDKRTC.SpanLimits, rhs: VideoSDKRTC.SpanLimits) -> Swift.Bool +} +public protocol SpanProcessor { + var isStartRequired: Swift.Bool { get } + var isEndRequired: Swift.Bool { get } + func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + mutating func onEnd(span: any VideoSDKRTC.ReadableSpan) + mutating func shutdown() + func forceFlush(timeout: Foundation.TimeInterval?) +} +public protocol SPBDecoder { + mutating func handleConflictingOneOf() throws + mutating func nextFieldNumber() throws -> Swift.Int? + mutating func decodeSingularFloatField(value: inout Swift.Float) throws + mutating func decodeSingularFloatField(value: inout Swift.Float?) throws + mutating func decodeRepeatedFloatField(value: inout [Swift.Float]) throws + mutating func decodeSingularDoubleField(value: inout Swift.Double) throws + mutating func decodeSingularDoubleField(value: inout Swift.Double?) throws + mutating func decodeRepeatedDoubleField(value: inout [Swift.Double]) throws + mutating func decodeSingularInt32Field(value: inout Swift.Int32) throws + mutating func decodeSingularInt32Field(value: inout Swift.Int32?) throws + mutating func decodeRepeatedInt32Field(value: inout [Swift.Int32]) throws + mutating func decodeSingularInt64Field(value: inout Swift.Int64) throws + mutating func decodeSingularInt64Field(value: inout Swift.Int64?) throws + mutating func decodeRepeatedInt64Field(value: inout [Swift.Int64]) throws + mutating func decodeSingularUInt32Field(value: inout Swift.UInt32) throws + mutating func decodeSingularUInt32Field(value: inout Swift.UInt32?) throws + mutating func decodeRepeatedUInt32Field(value: inout [Swift.UInt32]) throws + mutating func decodeSingularUInt64Field(value: inout Swift.UInt64) throws + mutating func decodeSingularUInt64Field(value: inout Swift.UInt64?) throws + mutating func decodeRepeatedUInt64Field(value: inout [Swift.UInt64]) throws + mutating func decodeSingularSInt32Field(value: inout Swift.Int32) throws + mutating func decodeSingularSInt32Field(value: inout Swift.Int32?) throws + mutating func decodeRepeatedSInt32Field(value: inout [Swift.Int32]) throws + mutating func decodeSingularSInt64Field(value: inout Swift.Int64) throws + mutating func decodeSingularSInt64Field(value: inout Swift.Int64?) throws + mutating func decodeRepeatedSInt64Field(value: inout [Swift.Int64]) throws + mutating func decodeSingularFixed32Field(value: inout Swift.UInt32) throws + mutating func decodeSingularFixed32Field(value: inout Swift.UInt32?) throws + mutating func decodeRepeatedFixed32Field(value: inout [Swift.UInt32]) throws + mutating func decodeSingularFixed64Field(value: inout Swift.UInt64) throws + mutating func decodeSingularFixed64Field(value: inout Swift.UInt64?) throws + mutating func decodeRepeatedFixed64Field(value: inout [Swift.UInt64]) throws + mutating func decodeSingularSFixed32Field(value: inout Swift.Int32) throws + mutating func decodeSingularSFixed32Field(value: inout Swift.Int32?) throws + mutating func decodeRepeatedSFixed32Field(value: inout [Swift.Int32]) throws + mutating func decodeSingularSFixed64Field(value: inout Swift.Int64) throws + mutating func decodeSingularSFixed64Field(value: inout Swift.Int64?) throws + mutating func decodeRepeatedSFixed64Field(value: inout [Swift.Int64]) throws + mutating func decodeSingularBoolField(value: inout Swift.Bool) throws + mutating func decodeSingularBoolField(value: inout Swift.Bool?) throws + mutating func decodeRepeatedBoolField(value: inout [Swift.Bool]) throws + mutating func decodeSingularStringField(value: inout Swift.String) throws + mutating func decodeSingularStringField(value: inout Swift.String?) throws + mutating func decodeRepeatedStringField(value: inout [Swift.String]) throws + mutating func decodeSingularBytesField(value: inout Foundation.Data) throws + mutating func decodeSingularBytesField(value: inout Foundation.Data?) throws + mutating func decodeRepeatedBytesField(value: inout [Foundation.Data]) throws + mutating func decodeSingularEnumField(value: inout E) throws where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + mutating func decodeSingularEnumField(value: inout E?) throws where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + mutating func decodeRepeatedEnumField(value: inout [E]) throws where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + mutating func decodeSingularMessageField(value: inout M?) throws where M : VideoSDKRTC.Message + mutating func decodeRepeatedMessageField(value: inout [M]) throws where M : VideoSDKRTC.Message + mutating func decodeSingularGroupField(value: inout G?) throws where G : VideoSDKRTC.Message + mutating func decodeRepeatedGroupField(value: inout [G]) throws where G : VideoSDKRTC.Message + mutating func decodeMapField(fieldType: VideoSDKRTC._ProtobufMap.Type, value: inout VideoSDKRTC._ProtobufMap.BaseType) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.MapValueType + mutating func decodeMapField(fieldType: VideoSDKRTC._ProtobufEnumMap.Type, value: inout VideoSDKRTC._ProtobufEnumMap.BaseType) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.Enum, ValueType.RawValue == Swift.Int + mutating func decodeMapField(fieldType: VideoSDKRTC._ProtobufMessageMap.Type, value: inout VideoSDKRTC._ProtobufMessageMap.BaseType) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : Swift.Hashable, ValueType : VideoSDKRTC.Message + mutating func decodeExtensionField(values: inout VideoSDKRTC.ExtensionFieldValueSet, messageType: any VideoSDKRTC.Message.Type, fieldNumber: Swift.Int) throws + mutating func decodeExtensionFieldsAsMessageSet(values: inout VideoSDKRTC.ExtensionFieldValueSet, messageType: any VideoSDKRTC.Message.Type) throws +} +extension VideoSDKRTC.SPBDecoder { + public mutating func decodeExtensionFieldsAsMessageSet(values: inout VideoSDKRTC.ExtensionFieldValueSet, messageType: any VideoSDKRTC.Message.Type) throws +} +public protocol StableAggregator { + func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + func createHandle() -> VideoSDKRTC.AggregatorHandle + func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData +} +public protocol StableMeter { + func counterBuilder(name: Swift.String) -> any VideoSDKRTC.LongCounterBuilder + func upDownCounterBuilder(name: Swift.String) -> any VideoSDKRTC.LongUpDownCounterBuilder + func histogramBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleHistogramBuilder + func gaugeBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleGaugeBuilder +} +public protocol StableMeterProvider : AnyObject { + func get(name: Swift.String) -> any VideoSDKRTC.StableMeter + func meterBuilder(name: Swift.String) -> any VideoSDKRTC.MeterBuilder +} +public class StableMeterProviderBuilder { + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var metricReaders: [any VideoSDKRTC.StableMetricReader] { + get + } + public var registeredViews: [VideoSDKRTC.RegisteredView] { + get + } + public var exemplarFilter: any VideoSDKRTC.ExemplarFilter { + get + } + public init() + public func setClock(clock: any VideoSDKRTC.Clock) -> Self + public func setResource(resource: VideoSDKRTC.Resource) -> Self + public func registerView(selector: VideoSDKRTC.InstrumentSelector, view: VideoSDKRTC.StableView) -> Self + public func registerMetricReader(reader: any VideoSDKRTC.StableMetricReader) -> Self + public func build() -> VideoSDKRTC.StableMeterProviderSdk + @objc deinit +} +@_hasMissingDesignatedInitializers public class MeterProviderError : Swift.Error { + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableMeterProviderSdk : VideoSDKRTC.StableMeterProvider { + public func get(name: Swift.String) -> any VideoSDKRTC.StableMeter + public func meterBuilder(name: Swift.String) -> any VideoSDKRTC.MeterBuilder + public static func builder() -> VideoSDKRTC.StableMeterProviderBuilder + public func shutdown() -> VideoSDKRTC.ExportResult + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public class MeterProviderSharedState { + public init(clock: any VideoSDKRTC.Clock, resource: VideoSDKRTC.Resource, startEpochNanos: Swift.UInt64, exemplarFilter: any VideoSDKRTC.ExemplarFilter) + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var startEpochNanos: Swift.UInt64 { + get + } + public var exemplarFilter: any VideoSDKRTC.ExemplarFilter { + get + } + @objc deinit +} +public enum MetricDataType { + case LongGauge + case DoubleGauge + case LongSum + case DoubleSum + case Summary + case Histogram + case ExponentialHistogram + public static func == (a: VideoSDKRTC.MetricDataType, b: VideoSDKRTC.MetricDataType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct StableMetricData : Swift.Equatable { + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var name: Swift.String { + get + } + public var description: Swift.String { + get + } + public var unit: Swift.String { + get + } + public var type: VideoSDKRTC.MetricDataType { + get + } + public var data: VideoSDKRTC.StableMetricData.Data { + get + } + public static let empty: VideoSDKRTC.StableMetricData + @_hasMissingDesignatedInitializers public class Data : Swift.Equatable { + public var points: [VideoSDKRTC.PointData] { + get + } + public static func == (lhs: VideoSDKRTC.StableMetricData.Data, rhs: VideoSDKRTC.StableMetricData.Data) -> Swift.Bool + @objc deinit + } + public static func == (lhs: VideoSDKRTC.StableMetricData, rhs: VideoSDKRTC.StableMetricData) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class StableHistogramData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableExponentialHistogramData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableGaugeData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableSumData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableSummaryData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +public protocol StableMetricExporter : VideoSDKRTC.AggregationTemporalitySelectorProtocol, VideoSDKRTC.DefaultAggregationSelector { + func export(metrics: [VideoSDKRTC.StableMetricData]) -> VideoSDKRTC.ExportResult + func flush() -> VideoSDKRTC.ExportResult + func shutdown() -> VideoSDKRTC.ExportResult +} +extension VideoSDKRTC.StableMetricExporter { + public func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +} +public protocol StableMetricReader : VideoSDKRTC.AggregationTemporalitySelectorProtocol, VideoSDKRTC.DefaultAggregationSelector { + func forceFlush() -> VideoSDKRTC.ExportResult + func shutdown() -> VideoSDKRTC.ExportResult + func register(registration: any VideoSDKRTC.CollectionRegistration) +} +@_hasMissingDesignatedInitializers public class StableObservableMeasurementSdk : VideoSDKRTC.ObservableLongMeasurement, VideoSDKRTC.ObservableDoubleMeasurement { + public var descriptor: VideoSDKRTC.InstrumentDescriptor { + get + } + public var storages: [VideoSDKRTC.AsynchronousMetricStorage] { + get + } + public func clearActiveReader() + public func record(value: Swift.Int) + public func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func record(value: Swift.Double) + public func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public class StablePeriodicMetricReaderBuilder { + public var exporter: any VideoSDKRTC.StableMetricExporter { + get + } + public var exporterInterval: Swift.Double { + get + } + public init(exporter: any VideoSDKRTC.StableMetricExporter) + public func setInterval(timeInterval: Foundation.TimeInterval) -> Self + public func build() -> VideoSDKRTC.StablePeriodicMetricReaderSdk + @objc deinit +} +@_hasMissingDesignatedInitializers public class StablePeriodicMetricReaderSdk : VideoSDKRTC.StableMetricReader { + @objc deinit + public func register(registration: any VideoSDKRTC.CollectionRegistration) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + public func getAggregationTemporality(for instrument: VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality + public func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +} +@_hasMissingDesignatedInitializers public class StableView { + public var name: Swift.String? { + get + } + public var description: Swift.String? { + get + } + public var aggregation: any VideoSDKRTC.Aggregation { + get + } + public var attributeProcessor: VideoSDKRTC.AttributeProcessor { + get + } + public static func builder() -> VideoSDKRTC.ViewBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableViewRegistry { + public func findViews(descriptor: VideoSDKRTC.InstrumentDescriptor, meterScope: VideoSDKRTC.InstrumentationScopeInfo) -> [VideoSDKRTC.RegisteredView] + @objc deinit +} +public enum Status : Swift.Equatable { + case ok + case unset + case error(description: Swift.String) + public var isOk: Swift.Bool { + get + } + public var isError: Swift.Bool { + get + } + public var name: Swift.String { + get + } + public var code: Swift.Int { + get + } + public static func == (a: VideoSDKRTC.Status, b: VideoSDKRTC.Status) -> Swift.Bool +} +extension VideoSDKRTC.Status : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} +extension VideoSDKRTC.Status : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct StringUtils { + public static func isPrintableString(_ string: Swift.String) -> Swift.Bool + public static func isValidMetricName(_ metricName: Swift.String) -> Swift.Bool +} +public enum Google_Protobuf_NullValue : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case nullValue + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_NullValue] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_NullValue] +} +public struct Google_Protobuf_Struct { + public var fields: [Swift.String : VideoSDKRTC.Google_Protobuf_Value] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Value { + public var kind: VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind? + public var nullValue: VideoSDKRTC.Google_Protobuf_NullValue { + get + set + } + public var numberValue: Swift.Double { + get + set + } + public var stringValue: Swift.String { + get + set + } + public var boolValue: Swift.Bool { + get + set + } + public var structValue: VideoSDKRTC.Google_Protobuf_Struct { + get + set + } + public var listValue: VideoSDKRTC.Google_Protobuf_ListValue { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Kind : Swift.Equatable { + case nullValue(VideoSDKRTC.Google_Protobuf_NullValue) + case numberValue(Swift.Double) + case stringValue(Swift.String) + case boolValue(Swift.Bool) + case structValue(VideoSDKRTC.Google_Protobuf_Struct) + case listValue(VideoSDKRTC.Google_Protobuf_ListValue) + public static func == (a: VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind, b: VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind) -> Swift.Bool + } + public init() +} +public struct Google_Protobuf_ListValue { + public var values: [VideoSDKRTC.Google_Protobuf_Value] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Struct : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ListValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_NullValue : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_Struct : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Struct, rhs: VideoSDKRTC.Google_Protobuf_Struct) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Value, rhs: VideoSDKRTC.Google_Protobuf_Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ListValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ListValue, rhs: VideoSDKRTC.Google_Protobuf_ListValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class SumAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.SumAggregation { + get + } + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + @objc deinit +} +@_hasMissingDesignatedInitializers public class SumAggregator { + final public let isMonotonic: Swift.Bool + @objc deinit +} +@_hasMissingDesignatedInitializers public class SummaryPointData : VideoSDKRTC.PointData { + public var count: Swift.UInt64 + public var sum: Swift.Double + public var values: [any VideoSDKRTC.ValueAtQuantile] + @objc deinit +} +extension Swift.Double { + public var toMilliseconds: Swift.UInt64 { + get + } + public var toMicroseconds: Swift.UInt64 { + get + } + public var toNanoseconds: Swift.UInt64 { + get + } + public static func fromMilliseconds(_ millis: Swift.Int64) -> Foundation.TimeInterval + public static func fromMicroseconds(_ micros: Swift.Int64) -> Foundation.TimeInterval + public static func fromNanoseconds(_ nanos: Swift.Int64) -> Foundation.TimeInterval +} +public protocol SwiftProtobufContiguousBytes { + init(repeating: Swift.UInt8, count: Swift.Int) + init(_ sequence: S) where S : Swift.Sequence, S.Element == Swift.UInt8 + var count: Swift.Int { get } + func withUnsafeBytes(_ body: (Swift.UnsafeRawBufferPointer) throws -> R) rethrows -> R + mutating func withUnsafeMutableBytes(_ body: (Swift.UnsafeMutableRawBufferPointer) throws -> R) rethrows -> R +} +extension Swift.Array : VideoSDKRTC.SwiftProtobufContiguousBytes where Element == Swift.UInt8 { +} +extension Foundation.Data : VideoSDKRTC.SwiftProtobufContiguousBytes { +} +@_hasMissingDesignatedInitializers public class SynchronousMetricStorage { + public var metricDescriptor: VideoSDKRTC.MetricDescriptor { + get + } + public func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + public func isEmpty() -> Swift.Bool + public func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public enum TextFormatDecodingError : Swift.Error { + case malformedText + case malformedNumber + case trailingGarbage + case truncated + case invalidUTF8 + case schemaMismatch + case missingFieldNames + case unknownField + case unrecognizedEnumValue + case conflictingOneOf + case internalExtensionError + case messageDepthLimit + public static func == (a: VideoSDKRTC.TextFormatDecodingError, b: VideoSDKRTC.TextFormatDecodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct TextFormatDecodingOptions : Swift.Sendable { + public var messageDepthLimit: Swift.Int + public init() +} +public struct TextFormatEncodingOptions : Swift.Sendable { + public var printUnknownFields: Swift.Bool + public init() +} +public protocol TextMapBaggagePropagator { + var fields: Swift.Set { get } + func inject(baggage: any VideoSDKRTC.Baggage, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + @discardableResult + func extract(carrier: [Swift.String : Swift.String], getter: G) -> (any VideoSDKRTC.Baggage)? where G : VideoSDKRTC.Getter +} +public protocol TextMapPropagator { + var fields: Swift.Set { get } + func inject(spanContext: VideoSDKRTC.SpanContext, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + @discardableResult + func extract(carrier: [Swift.String : Swift.String], getter: G) -> VideoSDKRTC.SpanContext? where G : VideoSDKRTC.Getter +} +public protocol Setter { + func set(carrier: inout [Swift.String : Swift.String], key: Swift.String, value: Swift.String) +} +public protocol Getter { + func get(carrier: [Swift.String : Swift.String], key: Swift.String) -> [Swift.String]? +} +public struct Google_Protobuf_Timestamp { + public var seconds: Swift.Int64 + public var nanos: Swift.Int32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Timestamp : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Timestamp : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Timestamp) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Opentelemetry_Proto_Trace_V1_TracesData { + public var resourceSpans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Trace_V1_ResourceSpans { + public var resource: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource { + get + set + } + public var hasResource: Swift.Bool { + get + } + public mutating func clearResource() + public var scopeSpans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Trace_V1_ScopeSpans { + public var scope: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope { + get + set + } + public var hasScope: Swift.Bool { + get + } + public mutating func clearScope() + public var spans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Trace_V1_Span { + public var traceID: Foundation.Data + public var spanID: Foundation.Data + public var traceState: Swift.String + public var parentSpanID: Foundation.Data + public var name: Swift.String + public var kind: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind + public var startTimeUnixNano: Swift.UInt64 + public var endTimeUnixNano: Swift.UInt64 + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var events: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event] + public var droppedEventsCount: Swift.UInt32 + public var links: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link] + public var droppedLinksCount: Swift.UInt32 + public var status: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status { + get + set + } + public var hasStatus: Swift.Bool { + get + } + public mutating func clearStatus() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum SpanKind : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unspecified + case `internal` + case server + case client + case producer + case consumer + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + } + public struct Event { + public var timeUnixNano: Swift.UInt64 + public var name: Swift.String + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public struct Link { + public var traceID: Foundation.Data + public var spanID: Foundation.Data + public var traceState: Swift.String + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind] +} +public struct Opentelemetry_Proto_Trace_V1_Status { + public var message: Swift.String + public var code: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum StatusCode : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unset + case ok + case error + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + } + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode] +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +public struct Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest { + public var resourceSpans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse { + public var partialSuccess: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess { + get + set + } + public var hasPartialSuccess: Swift.Bool { + get + } + public mutating func clearPartialSuccess() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess { + public var rejectedSpans: Swift.Int64 + public var errorMessage: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() } -extension Swift.String { - public func toJSON() -> [Swift.String : Any] +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest : @unchecked Swift.Sendable { } -extension Swift.Dictionary { - public func toJSONString() -> Swift.String +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse : @unchecked Swift.Sendable { } -extension Swift.Array { - public func toJSONString() -> Swift.String +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess : @unchecked Swift.Sendable { } -extension Swift.Encodable { - public func toJSON() -> [Swift.String : Any] - public func toJSONArray() -> [Any] +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -public struct LivestreamOutput : Swift.Codable { - public let url: Swift.String - public let streamKey: Swift.String - public init(url: Swift.String, streamKey: Swift.String) - public func encode(to encoder: Swift.Encoder) throws - public init(from decoder: Swift.Decoder) throws +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -@_hasMissingDesignatedInitializers public class MediaStream : Swift.Equatable { - public var id: Swift.String { +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess) -> Swift.Bool + public var hashValue: Swift.Int { get } - public var kind: VideoSDKRTC.MediaType { +} +public struct TraceFlags : Swift.Equatable, Swift.CustomStringConvertible, Swift.Codable { + public var byte: Swift.UInt8 { get } - public var track: WebRTC.RTCMediaStreamTrack { + public var hexString: Swift.String { get } - public var producer: Mediasoup.Producer? { + public init() + public init(fromByte src: Swift.UInt8) + public init(fromHexString hex: Swift.String, withOffset offset: Swift.Int = 0) + public var sampled: Swift.Bool { get } - public var consumer: Mediasoup.Consumer? { + public mutating func setIsSampled(_ isSampled: Swift.Bool) + public func settingIsSampled(_ isSampled: Swift.Bool) -> VideoSDKRTC.TraceFlags + public var description: Swift.String { get } - @objc deinit + public static func == (a: VideoSDKRTC.TraceFlags, b: VideoSDKRTC.TraceFlags) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -extension VideoSDKRTC.MediaStream { - public func pause() - public func resume() +public struct TraceId : Swift.Comparable, Swift.Hashable, Swift.CustomStringConvertible, Swift.Equatable, Swift.Codable { + public static let size: Swift.Int + public static let invalidId: Swift.UInt64 + public static let invalid: VideoSDKRTC.TraceId + public var idHi: Swift.UInt64 { + get + } + public var idLo: Swift.UInt64 { + get + } + public init(idHi: Swift.UInt64, idLo: Swift.UInt64) + public init() + public static func random() -> VideoSDKRTC.TraceId + public init(fromData data: Foundation.Data) + public init(fromBytes bytes: [Swift.UInt8]) + public init(fromBytes bytes: Swift.ArraySlice) + public init(fromBytes bytes: Swift.ArraySlice) + public func copyBytesTo(dest: inout Foundation.Data, destOffset: Swift.Int) + public func copyBytesTo(dest: inout [Swift.UInt8], destOffset: Swift.Int) + public func copyBytesTo(dest: inout Swift.ArraySlice, destOffset: Swift.Int) + public init(fromHexString hex: Swift.String, withOffset offset: Swift.Int = 0) + public var isValid: Swift.Bool { + get + } + public var hexString: Swift.String { + get + } + public var rawHigherLong: Swift.UInt64 { + get + } + public var rawLowerLong: Swift.UInt64 { + get + } + public var description: Swift.String { + get + } + public static func < (lhs: VideoSDKRTC.TraceId, rhs: VideoSDKRTC.TraceId) -> Swift.Bool + public static func == (lhs: VideoSDKRTC.TraceId, rhs: VideoSDKRTC.TraceId) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws } -extension VideoSDKRTC.MediaStream { - public static func == (lhs: VideoSDKRTC.MediaStream, rhs: VideoSDKRTC.MediaStream) -> Swift.Bool +public protocol Tracer : AnyObject { + func spanBuilder(spanName: Swift.String) -> any VideoSDKRTC.SpanBuilder } -public enum MediaType : Swift.Equatable { - case share - case state(value: Mediasoup.MediaKind) - public static func == (a: VideoSDKRTC.MediaType, b: VideoSDKRTC.MediaType) -> Swift.Bool +public protocol TracerProvider { + func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String?) -> any VideoSDKRTC.Tracer } -@_hasMissingDesignatedInitializers public class Meeting : Swift.Equatable { - public var id: Swift.String { +public class TracerProviderBuilder { + public var clock: any VideoSDKRTC.Clock { get } - public var localParticipant: VideoSDKRTC.Participant { + public var idGenerator: any VideoSDKRTC.IdGenerator { get } - public var participants: [Swift.String : VideoSDKRTC.Participant] { + public var resource: VideoSDKRTC.Resource { get } - public var pubsub: VideoSDKRTC.PubSub { + public var spanLimits: VideoSDKRTC.SpanLimits { get } - public var customVideoMediaStream: VideoSDKRTC.CustomRTCMediaStream? { + public var sampler: any VideoSDKRTC.Sampler { + get + } + public var spanProcessors: [any VideoSDKRTC.SpanProcessor] { get } + public init() + public func with(clock: any VideoSDKRTC.Clock) -> Self + public func with(idGenerator: any VideoSDKRTC.IdGenerator) -> Self + public func with(resource: VideoSDKRTC.Resource) -> Self + public func with(spanLimits: VideoSDKRTC.SpanLimits) -> Self + public func with(sampler: any VideoSDKRTC.Sampler) -> Self + public func add(spanProcessor: any VideoSDKRTC.SpanProcessor) -> Self + public func add(spanProcessors: [any VideoSDKRTC.SpanProcessor]) -> Self + public func build() -> VideoSDKRTC.TracerProviderSdk @objc deinit } -extension VideoSDKRTC.Meeting { - public func join(cameraPosition: AVFoundation.AVCaptureDevice.Position) - public func leave() - public func end() - public func enableWebcam(customVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil) - public func disableWebcam() - public func switchWebcam() - public func muteMic() - public func unmuteMic() - public func startRecording(webhookUrl: Swift.String) - public func stopRecording() - public func startLivestream(outputs: [VideoSDKRTC.LivestreamOutput]) - public func stopLivestream() +public class TracerProviderSdk : VideoSDKRTC.TracerProvider { + public init(clock: any VideoSDKRTC.Clock = MillisClock(), idGenerator: any VideoSDKRTC.IdGenerator = RandomIdGenerator(), resource: VideoSDKRTC.Resource = EnvVarResource.get(), spanLimits: VideoSDKRTC.SpanLimits = SpanLimits(), sampler: any VideoSDKRTC.Sampler = Samplers.parentBased(root: Samplers.alwaysOn), spanProcessors: [any VideoSDKRTC.SpanProcessor] = []) + @objc deinit + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Tracer + public func getActiveClock() -> any VideoSDKRTC.Clock + public func updateActiveClock(_ newClock: any VideoSDKRTC.Clock) + public func getActiveIdGenerator() -> any VideoSDKRTC.IdGenerator + public func updateActiveIdGenerator(_ newGenerator: any VideoSDKRTC.IdGenerator) + public func getActiveResource() -> VideoSDKRTC.Resource + public func updateActiveResource(_ newResource: VideoSDKRTC.Resource) + public func getActiveSpanLimits() -> VideoSDKRTC.SpanLimits + public func updateActiveSpanLimits(_ spanLimits: VideoSDKRTC.SpanLimits) + public func getActiveSampler() -> any VideoSDKRTC.Sampler + public func updateActiveSampler(_ newSampler: any VideoSDKRTC.Sampler) + public func getActiveSpanProcessors() -> [any VideoSDKRTC.SpanProcessor] + public func addSpanProcessor(_ spanProcessor: any VideoSDKRTC.SpanProcessor) + public func resetSpanProcessors() + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) } -extension VideoSDKRTC.Meeting { - public func addEventListener(_ meetingEventListener: VideoSDKRTC.MeetingEventListener) - public func removeEventListener(_ meetingEventListener: VideoSDKRTC.MeetingEventListener) +@_hasMissingDesignatedInitializers public class TracerSdk : VideoSDKRTC.Tracer { + final public let instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo + public func spanBuilder(spanName: Swift.String) -> any VideoSDKRTC.SpanBuilder + @objc deinit } -extension VideoSDKRTC.Meeting { - public static func == (lhs: VideoSDKRTC.Meeting, rhs: VideoSDKRTC.Meeting) -> Swift.Bool +public struct TraceState : Swift.Equatable, Swift.Codable { + public var entries: [VideoSDKRTC.TraceState.Entry] { + get + } + public init() + public init?(entries: [VideoSDKRTC.TraceState.Entry]) + public func get(key: Swift.String) -> Swift.String? + public func setting(key: Swift.String, value: Swift.String) -> VideoSDKRTC.TraceState + public func removing(key: Swift.String) -> VideoSDKRTC.TraceState + public struct Entry : Swift.Equatable, Swift.Codable { + public var key: Swift.String { + get + } + public var value: Swift.String { + get + } + public init?(key: Swift.String, value: Swift.String) + public static func == (a: VideoSDKRTC.TraceState.Entry, b: VideoSDKRTC.TraceState.Entry) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } + public static func == (a: VideoSDKRTC.TraceState, b: VideoSDKRTC.TraceState) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public protocol MeetingEventListener : AnyObject { - func onMeetingJoined() - func onMeetingLeft() - func onParticipantJoined(_ participant: VideoSDKRTC.Participant) - func onParticipantLeft(_ participant: VideoSDKRTC.Participant) - func onRecordingStarted() - func onRecordingStoppped() - func onLivestreamStarted() - func onLivestreamStopped() - func onSpeakerChanged(participantId: Swift.String?) - func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) - func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) +public enum Google_Protobuf_Syntax : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case proto2 + case proto3 + case editions + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_Syntax] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_Syntax] } -extension VideoSDKRTC.MeetingEventListener { - public func onMeetingJoined() - public func onMeetingLeft() - public func onParticipantJoined(_ participant: VideoSDKRTC.Participant) - public func onParticipantLeft(_ participant: VideoSDKRTC.Participant) - public func onRecordingStarted() - public func onRecordingStoppped() - public func onLivestreamStarted() - public func onLivestreamStopped() - public func onSpeakerChanged(participantId: Swift.String?) - public func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) - public func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) +public struct Google_Protobuf_Type { + public var name: Swift.String + public var fields: [VideoSDKRTC.Google_Protobuf_Field] + public var oneofs: [Swift.String] + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var sourceContext: VideoSDKRTC.Google_Protobuf_SourceContext { + get + set + } + public var hasSourceContext: Swift.Bool { + get + } + public mutating func clearSourceContext() + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var edition: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() } -@_hasMissingDesignatedInitializers public class Participant : Swift.Equatable { - public var id: Swift.String { +public struct Google_Protobuf_Field { + public var kind: VideoSDKRTC.Google_Protobuf_Field.Kind + public var cardinality: VideoSDKRTC.Google_Protobuf_Field.Cardinality + public var number: Swift.Int32 + public var name: Swift.String + public var typeURL: Swift.String + public var oneofIndex: Swift.Int32 + public var packed: Swift.Bool + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var jsonName: Swift.String + public var defaultValue: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum Kind : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case typeUnknown + case typeDouble + case typeFloat + case typeInt64 + case typeUint64 + case typeInt32 + case typeFixed64 + case typeFixed32 + case typeBool + case typeString + case typeGroup + case typeMessage + case typeBytes + case typeUint32 + case typeEnum + case typeSfixed32 + case typeSfixed64 + case typeSint32 + case typeSint64 + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_Field.Kind] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_Field.Kind] + } + public enum Cardinality : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case optional + case required + case repeated + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_Field.Cardinality] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_Field.Cardinality] + } + public init() +} +public struct Google_Protobuf_Enum { + public var name: Swift.String + public var enumvalue: [VideoSDKRTC.Google_Protobuf_EnumValue] + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var sourceContext: VideoSDKRTC.Google_Protobuf_SourceContext { get + set } - public var displayName: Swift.String { + public var hasSourceContext: Swift.Bool { get } - public var videoQuality: VideoSDKRTC.VideoQuality { + public mutating func clearSourceContext() + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var edition: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_EnumValue { + public var name: Swift.String + public var number: Swift.Int32 + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Option { + public var name: Swift.String + public var value: VideoSDKRTC.Google_Protobuf_Any { get + set } - public var isLocal: Swift.Bool { + public var hasValue: Swift.Bool { get } - public var streams: [Swift.String : VideoSDKRTC.MediaStream] { + public mutating func clearValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Type : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Field : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Enum : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Option : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Syntax : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_Type : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Type, rhs: VideoSDKRTC.Google_Protobuf_Type) -> Swift.Bool + public var hashValue: Swift.Int { get } - @objc deinit } -extension VideoSDKRTC.Participant { - public func enableMic() - public func disableMic() - public func enableWebcam() - public func disableWebcam() - public func remove() +extension VideoSDKRTC.Google_Protobuf_Field : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Field, rhs: VideoSDKRTC.Google_Protobuf_Field) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -extension VideoSDKRTC.Participant { - public func addStream(_ stream: VideoSDKRTC.MediaStream) - @discardableResult - public func removeStream(_ streamId: Swift.String) -> VideoSDKRTC.MediaStream? - public func removeAllStreams() - public func setQuality(_ quality: VideoSDKRTC.VideoQuality) +extension VideoSDKRTC.Google_Protobuf_Field.Kind : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap } -extension VideoSDKRTC.Participant { - public func addEventListener(_ listener: VideoSDKRTC.ParticipantEventListener) - public func removeEventListener(_ listener: VideoSDKRTC.ParticipantEventListener) +extension VideoSDKRTC.Google_Protobuf_Field.Cardinality : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap } -extension VideoSDKRTC.Participant { - public static func == (lhs: VideoSDKRTC.Participant, rhs: VideoSDKRTC.Participant) -> Swift.Bool +extension VideoSDKRTC.Google_Protobuf_Enum : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Enum, rhs: VideoSDKRTC.Google_Protobuf_Enum) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -public protocol ParticipantEventListener { - func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) - func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +extension VideoSDKRTC.Google_Protobuf_EnumValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumValue, rhs: VideoSDKRTC.Google_Protobuf_EnumValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -extension VideoSDKRTC.ParticipantEventListener { - public func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) - public func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +extension VideoSDKRTC.Google_Protobuf_Option : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Option, rhs: VideoSDKRTC.Google_Protobuf_Option) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -@_hasMissingDesignatedInitializers public class PubSub { +@available(*, deprecated, message: "Use MetricProcessorSdk instead") +public class UngroupedBatcher : VideoSDKRTC.MetricProcessor { + public init() + public func finishCollectionCycle() -> [VideoSDKRTC.Metric] + public func process(metric: VideoSDKRTC.Metric) @objc deinit } -extension VideoSDKRTC.PubSub { - public func publish(topic: Swift.String, message: Swift.String, options: [Swift.String : Any] = [:]) - public func subscribe(topic: Swift.String, forListener listener: VideoSDKRTC.PubSubMessageListener) - public func unsubscribe(topic: Swift.String, forListener listener: VideoSDKRTC.PubSubMessageListener) - public func getMessagesForTopic(_ topic: Swift.String) -> [VideoSDKRTC.PubSubMessage] +public struct UnknownStorage : Swift.Equatable, @unchecked Swift.Sendable { + public var data: Foundation.Data { + get + } + public init() + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (a: VideoSDKRTC.UnknownStorage, b: VideoSDKRTC.UnknownStorage) -> Swift.Bool } -@objc @_hasMissingDesignatedInitializers public class PubSubMessage : ObjectiveC.NSObject { - public var id: Swift.String - public var topic: Swift.String - public var message: Swift.String - public var senderId: Swift.String - public var senderName: Swift.String - public var timestamp: Swift.String - @objc deinit +public protocol ValueAtQuantile { + func quantile() -> Swift.Double + func value() -> Swift.Double } -public protocol PubSubMessageListener { - func onMessageReceived(_ message: VideoSDKRTC.PubSubMessage) +public struct Version { + public static let major: Swift.Int + public static let minor: Swift.Int + public static let revision: Swift.Int + public static let versionString: Swift.String } public enum VideoQuality : Swift.String, Swift.CaseIterable { case high, medium, low @@ -234,15 +8420,424 @@ public enum VideoQuality : Swift.String, Swift.CaseIterable { } @_hasMissingDesignatedInitializers final public class VideoSDK { public static func config(token: Swift.String) - public static func initMeeting(meetingId: Swift.String, participantId: Swift.String = "", participantName: Swift.String = "Guest", micEnabled: Swift.Bool = true, webcamEnabled: Swift.Bool = true, customCameraVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil) -> VideoSDKRTC.Meeting + public static func initMeeting(meetingId: Swift.String, participantId: Swift.String = "", participantName: Swift.String = "Guest", micEnabled: Swift.Bool = true, webcamEnabled: Swift.Bool = true, customCameraVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil, mode: VideoSDKRTC.Mode? = .CONFERENCE) -> VideoSDKRTC.Meeting public static func createCameraVideoTrack(encoderConfig: VideoSDKRTC.CustomVideoTrackConfig? = .h360p_w640p, facingMode: AVFoundation.AVCaptureDevice.Position? = .front, multiStream: Swift.Bool? = true) throws -> VideoSDKRTC.CustomRTCMediaStream? @objc deinit } +extension VideoSDKRTC.VideoSDK { + public static func getAudioPermissionStatus() -> VideoSDKRTC.authorisationStatus + public static func getVideoPermissionStatus() -> VideoSDKRTC.authorisationStatus + public static func getAudioPermission() + public static func getVideoPermission() + public static func getCameras() -> [Swift.String] + public static func getAudioDevices() -> [Swift.String] +} +@_hasMissingDesignatedInitializers public class ViewBuilder { + public func withName(name: Swift.String) -> Self + public func withDescription(description: Swift.String) -> Self + public func withAggregation(aggregation: any VideoSDKRTC.Aggregation) -> Self + public func addAttributeFilter(keyFilter: @escaping (Swift.String) -> Swift.Bool) -> Self + public func addAttributeProcessor(processor: VideoSDKRTC.AttributeProcessor) -> Self + public func build() -> VideoSDKRTC.StableView + @objc deinit +} +public protocol Visitor { + mutating func visitSingularFloatField(value: Swift.Float, fieldNumber: Swift.Int) throws + mutating func visitSingularDoubleField(value: Swift.Double, fieldNumber: Swift.Int) throws + mutating func visitSingularInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + mutating func visitSingularInt64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + mutating func visitSingularUInt32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + mutating func visitSingularUInt64Field(value: Swift.UInt64, fieldNumber: Swift.Int) throws + mutating func visitSingularSInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + mutating func visitSingularSInt64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + mutating func visitSingularFixed32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + mutating func visitSingularFixed64Field(value: Swift.UInt64, fieldNumber: Swift.Int) throws + mutating func visitSingularSFixed32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + mutating func visitSingularSFixed64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + mutating func visitSingularBoolField(value: Swift.Bool, fieldNumber: Swift.Int) throws + mutating func visitSingularStringField(value: Swift.String, fieldNumber: Swift.Int) throws + mutating func visitSingularBytesField(value: Foundation.Data, fieldNumber: Swift.Int) throws + mutating func visitSingularEnumField(value: E, fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + mutating func visitSingularMessageField(value: M, fieldNumber: Swift.Int) throws where M : VideoSDKRTC.Message + mutating func visitSingularGroupField(value: G, fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + mutating func visitRepeatedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + mutating func visitRepeatedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + mutating func visitRepeatedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + mutating func visitRepeatedStringField(value: [Swift.String], fieldNumber: Swift.Int) throws + mutating func visitRepeatedBytesField(value: [Foundation.Data], fieldNumber: Swift.Int) throws + mutating func visitRepeatedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + mutating func visitRepeatedMessageField(value: [M], fieldNumber: Swift.Int) throws where M : VideoSDKRTC.Message + mutating func visitRepeatedGroupField(value: [G], fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + mutating func visitPackedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + mutating func visitPackedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + mutating func visitPackedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitPackedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitPackedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitPackedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitPackedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitPackedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitPackedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitPackedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitPackedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitPackedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitPackedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + mutating func visitPackedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + mutating func visitMapField(fieldType: VideoSDKRTC._ProtobufMap.Type, value: VideoSDKRTC._ProtobufMap.BaseType, fieldNumber: Swift.Int) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.MapValueType + mutating func visitMapField(fieldType: VideoSDKRTC._ProtobufEnumMap.Type, value: VideoSDKRTC._ProtobufEnumMap.BaseType, fieldNumber: Swift.Int) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.Enum, ValueType.RawValue == Swift.Int + mutating func visitMapField(fieldType: VideoSDKRTC._ProtobufMessageMap.Type, value: VideoSDKRTC._ProtobufMessageMap.BaseType, fieldNumber: Swift.Int) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : Swift.Hashable, ValueType : VideoSDKRTC.Message + mutating func visitExtensionFields(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws + mutating func visitExtensionFieldsAsMessageSet(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws + mutating func visitUnknown(bytes: Foundation.Data) throws +} +extension VideoSDKRTC.Visitor { + public mutating func visitSingularFloatField(value: Swift.Float, fieldNumber: Swift.Int) throws + public mutating func visitSingularInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + public mutating func visitSingularUInt32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + public mutating func visitSingularSInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + public mutating func visitSingularSInt64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + public mutating func visitSingularFixed32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + public mutating func visitSingularFixed64Field(value: Swift.UInt64, fieldNumber: Swift.Int) throws + public mutating func visitSingularSFixed32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + public mutating func visitSingularSFixed64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + public mutating func visitRepeatedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedStringField(value: [Swift.String], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedBytesField(value: [Foundation.Data], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + public mutating func visitRepeatedMessageField(value: [M], fieldNumber: Swift.Int) throws where M : VideoSDKRTC.Message + public mutating func visitRepeatedGroupField(value: [G], fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + public mutating func visitPackedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + public mutating func visitPackedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + public mutating func visitPackedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitPackedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitPackedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitPackedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitPackedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitPackedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitPackedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitPackedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitPackedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitPackedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitPackedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + public mutating func visitPackedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + public mutating func visitSingularGroupField(value: G, fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + public mutating func visitExtensionFieldsAsMessageSet(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws + public mutating func visitExtensionFields(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws +} +public struct W3CBaggagePropagator : VideoSDKRTC.TextMapBaggagePropagator { + public init() + public let fields: Swift.Set + public func inject(baggage: any VideoSDKRTC.Baggage, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + public func extract(carrier: [Swift.String : Swift.String], getter: G) -> (any VideoSDKRTC.Baggage)? where G : VideoSDKRTC.Getter +} +public struct W3CTraceContextPropagator : VideoSDKRTC.TextMapPropagator { + public init() + public let fields: Swift.Set + public func inject(spanContext: VideoSDKRTC.SpanContext, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + public func extract(carrier: [Swift.String : Swift.String], getter: G) -> VideoSDKRTC.SpanContext? where G : VideoSDKRTC.Getter +} +public struct Google_Protobuf_DoubleValue { + public var value: Swift.Double + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_FloatValue { + public var value: Swift.Float + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Int64Value { + public var value: Swift.Int64 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_UInt64Value { + public var value: Swift.UInt64 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Int32Value { + public var value: Swift.Int32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_UInt32Value { + public var value: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_BoolValue { + public var value: Swift.Bool + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_StringValue { + public var value: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_BytesValue { + public var value: Foundation.Data + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_DoubleValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FloatValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Int64Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UInt64Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Int32Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UInt32Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_BoolValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_StringValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_BytesValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DoubleValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DoubleValue, rhs: VideoSDKRTC.Google_Protobuf_DoubleValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FloatValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FloatValue, rhs: VideoSDKRTC.Google_Protobuf_FloatValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Int64Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Int64Value, rhs: VideoSDKRTC.Google_Protobuf_Int64Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_UInt64Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UInt64Value, rhs: VideoSDKRTC.Google_Protobuf_UInt64Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Int32Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Int32Value, rhs: VideoSDKRTC.Google_Protobuf_Int32Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_UInt32Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UInt32Value, rhs: VideoSDKRTC.Google_Protobuf_UInt32Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_BoolValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_BoolValue, rhs: VideoSDKRTC.Google_Protobuf_BoolValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_StringValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_StringValue, rhs: VideoSDKRTC.Google_Protobuf_StringValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_BytesValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_BytesValue, rhs: VideoSDKRTC.Google_Protobuf_BytesValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.AggregationTemporality : Swift.Equatable {} +extension VideoSDKRTC.AggregationTemporality : Swift.Hashable {} +extension VideoSDKRTC.AggregationType : Swift.Equatable {} +extension VideoSDKRTC.AggregationType : Swift.Hashable {} +extension VideoSDKRTC.AggregationType : Swift.RawRepresentable {} +extension VideoSDKRTC.AnyUnpackError : Swift.Equatable {} +extension VideoSDKRTC.AnyUnpackError : Swift.Hashable {} +extension VideoSDKRTC.BinaryDecodingError : Swift.Equatable {} +extension VideoSDKRTC.BinaryDecodingError : Swift.Hashable {} +extension VideoSDKRTC.BinaryDelimited.Error : Swift.Equatable {} +extension VideoSDKRTC.BinaryDelimited.Error : Swift.Hashable {} +extension VideoSDKRTC.BinaryEncodingError : Swift.Equatable {} +extension VideoSDKRTC.BinaryEncodingError : Swift.Hashable {} extension VideoSDKRTC.CameraPosition : Swift.Equatable {} extension VideoSDKRTC.CameraPosition : Swift.Hashable {} extension VideoSDKRTC.CameraPosition : Swift.RawRepresentable {} extension VideoSDKRTC.CustomVideoTrackConfig : Swift.Equatable {} extension VideoSDKRTC.CustomVideoTrackConfig : Swift.Hashable {} +extension VideoSDKRTC.EmptyMetricStorage : VideoSDKRTC.MetricStorage {} +extension VideoSDKRTC.EmptyMetricStorage : VideoSDKRTC.WritableMetricStorage {} +extension VideoSDKRTC.ExportResult : Swift.Equatable {} +extension VideoSDKRTC.ExportResult : Swift.Hashable {} +extension VideoSDKRTC.ConfigLayoutPriority : Swift.Equatable {} +extension VideoSDKRTC.ConfigLayoutPriority : Swift.Hashable {} +extension VideoSDKRTC.ConfigLayoutPriority : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigLayoutGrid : Swift.Equatable {} +extension VideoSDKRTC.ConfigLayoutGrid : Swift.Hashable {} +extension VideoSDKRTC.ConfigLayoutGrid : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigTheme : Swift.Equatable {} +extension VideoSDKRTC.ConfigTheme : Swift.Hashable {} +extension VideoSDKRTC.ConfigTheme : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigMode : Swift.Equatable {} +extension VideoSDKRTC.ConfigMode : Swift.Hashable {} +extension VideoSDKRTC.ConfigMode : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigQuality : Swift.Equatable {} +extension VideoSDKRTC.ConfigQuality : Swift.Hashable {} +extension VideoSDKRTC.ConfigQuality : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigOrientation : Swift.Equatable {} +extension VideoSDKRTC.ConfigOrientation : Swift.Hashable {} +extension VideoSDKRTC.ConfigOrientation : Swift.RawRepresentable {} +extension VideoSDKRTC.InstrumentType : Swift.Equatable {} +extension VideoSDKRTC.InstrumentType : Swift.Hashable {} +extension VideoSDKRTC.InstrumentValueType : Swift.Equatable {} +extension VideoSDKRTC.InstrumentValueType : Swift.Hashable {} +extension VideoSDKRTC.JSONEncodingError : Swift.Equatable {} +extension VideoSDKRTC.JSONEncodingError : Swift.Hashable {} +extension VideoSDKRTC.authorisationStatus : Swift.Equatable {} +extension VideoSDKRTC.authorisationStatus : Swift.Hashable {} +extension VideoSDKRTC.MeetingState : Swift.Equatable {} +extension VideoSDKRTC.MeetingState : Swift.Hashable {} +extension VideoSDKRTC.MeetingState : Swift.RawRepresentable {} +extension VideoSDKRTC.Mode : Swift.Equatable {} +extension VideoSDKRTC.Mode : Swift.Hashable {} +extension VideoSDKRTC.Mode : Swift.RawRepresentable {} +extension VideoSDKRTC.VideoSDKError : Swift.Equatable {} +extension VideoSDKRTC.VideoSDKError : Swift.Hashable {} +extension VideoSDKRTC.VideoSDKError : Swift.RawRepresentable {} +extension VideoSDKRTC.HLSState : Swift.Equatable {} +extension VideoSDKRTC.HLSState : Swift.Hashable {} +extension VideoSDKRTC.HLSState : Swift.RawRepresentable {} +extension VideoSDKRTC.RecordingState : Swift.Equatable {} +extension VideoSDKRTC.RecordingState : Swift.Hashable {} +extension VideoSDKRTC.RecordingState : Swift.RawRepresentable {} +extension VideoSDKRTC.LiveStreamState : Swift.Equatable {} +extension VideoSDKRTC.LiveStreamState : Swift.Hashable {} +extension VideoSDKRTC.LiveStreamState : Swift.RawRepresentable {} +extension VideoSDKRTC.MetricExporterResultCode : Swift.Equatable {} +extension VideoSDKRTC.MetricExporterResultCode : Swift.Hashable {} +extension VideoSDKRTC.OpenTelemetryContextKeys : Swift.Equatable {} +extension VideoSDKRTC.OpenTelemetryContextKeys : Swift.Hashable {} +extension VideoSDKRTC.OpenTelemetryContextKeys : Swift.RawRepresentable {} +extension VideoSDKRTC.PinType : Swift.Equatable {} +extension VideoSDKRTC.PinType : Swift.Hashable {} +extension VideoSDKRTC.PinType : Swift.RawRepresentable {} +extension VideoSDKRTC.ResourceAttributes : Swift.Equatable {} +extension VideoSDKRTC.ResourceAttributes : Swift.Hashable {} +extension VideoSDKRTC.ResourceAttributes : Swift.RawRepresentable {} +extension VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues : Swift.Equatable {} +extension VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues : Swift.Hashable {} +extension VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.FaasTriggerValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.FaasTriggerValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.FaasTriggerValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.MessageTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.MessageTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.MessageTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.Severity : Swift.Hashable {} +extension VideoSDKRTC.Severity : Swift.RawRepresentable {} +extension VideoSDKRTC.SpanExporterResultCode : Swift.Equatable {} +extension VideoSDKRTC.SpanExporterResultCode : Swift.Hashable {} +extension VideoSDKRTC.SpanKind : Swift.Hashable {} +extension VideoSDKRTC.SpanKind : Swift.RawRepresentable {} +extension VideoSDKRTC.MetricDataType : Swift.Equatable {} +extension VideoSDKRTC.MetricDataType : Swift.Hashable {} +extension VideoSDKRTC.SynchronousMetricStorage : VideoSDKRTC.MetricStorage {} +extension VideoSDKRTC.SynchronousMetricStorage : VideoSDKRTC.WritableMetricStorage {} +extension VideoSDKRTC.TextFormatDecodingError : Swift.Equatable {} +extension VideoSDKRTC.TextFormatDecodingError : Swift.Hashable {} extension VideoSDKRTC.VideoQuality : Swift.Equatable {} extension VideoSDKRTC.VideoQuality : Swift.Hashable {} extension VideoSDKRTC.VideoQuality : Swift.RawRepresentable {} diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.swiftdoc index c1f4417..4ee8f3f 100644 Binary files a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.swiftinterface index de8def6..eb3f475 100644 --- a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,16 +1,554 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) +// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) // swift-module-flags: -target arm64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name VideoSDKRTC // swift-module-flags-ignorable: -enable-bare-slash-regex import AVFoundation +import AVKit +import CoreMedia +import Darwin +import Dispatch import Foundation import Mediasoup +import ReplayKit import Swift +import UIKit @_exported import VideoSDKRTC import VideosdkWebSocket import WebRTC import _Concurrency import _StringProcessing +import _SwiftConcurrencyShims +import os.activity +import os.log +import os +public enum Aggregations { + public static func drop() -> any VideoSDKRTC.Aggregation + public static func defaultAggregation() -> any VideoSDKRTC.Aggregation + public static func sum() -> any VideoSDKRTC.Aggregation + public static func lastValue() -> any VideoSDKRTC.Aggregation + public static func explicitBucketHistogram() -> any VideoSDKRTC.Aggregation + public static func explicitBucketHistogram(buckets: [Swift.Double]) -> any VideoSDKRTC.Aggregation +} +public typealias AggregationResolver = (VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +public protocol DefaultAggregationSelector { + func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +} +@_hasMissingDesignatedInitializers public class AggregationSelector : VideoSDKRTC.DefaultAggregationSelector { + public static let instance: VideoSDKRTC.AggregationSelector + final public let selector: VideoSDKRTC.AggregationResolver + public func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation + public static func defaultSelector() -> VideoSDKRTC.AggregationResolver + public func with(instrumentType: VideoSDKRTC.InstrumentType, aggregation: any VideoSDKRTC.Aggregation) -> VideoSDKRTC.AggregationResolver + @objc deinit +} +public protocol AggregationTemporalitySelectorProtocol { + func getAggregationTemporality(for instrument: VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality +} +@_hasMissingDesignatedInitializers public class AggregationTemporalitySelector : VideoSDKRTC.AggregationTemporalitySelectorProtocol { + public func getAggregationTemporality(for instrument: VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality + public var aggregationTemporalitySelector: (VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality + @objc deinit +} +public enum AggregationTemporality { + case delta + case cumulative + public static func alwaysCumulative() -> VideoSDKRTC.AggregationTemporalitySelector + public static func deltaPreferred() -> VideoSDKRTC.AggregationTemporalitySelector + public static func == (a: VideoSDKRTC.AggregationTemporality, b: VideoSDKRTC.AggregationTemporality) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public enum AggregationType : Swift.String, Swift.Codable { + case intGauge + case doubleGauge + case doubleSum + case intSum + case doubleSummary + case intSummary + case doubleHistogram + case intHistogram + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +@_hasMissingDesignatedInitializers public class Aggregator { + public func update(value: T) + public func checkpoint() + public func toMetricData() -> any VideoSDKRTC.MetricData + public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public protocol Aggregation : AnyObject { + func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class AggregatorHandle { + public func aggregateThenMaybeReset(startEpochNano: Swift.UInt64, endEpochNano: Swift.UInt64, attributes: [Swift.String : VideoSDKRTC.AttributeValue], reset: Swift.Bool) -> VideoSDKRTC.PointData + public func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordLong(value: Swift.Int) + public func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordDouble(value: Swift.Double) + @objc deinit +} +public struct Google_Protobuf_Any { + public var typeURL: Swift.String { + get + set + } + public var value: Foundation.Data { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Any : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Any : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Any, rhs: VideoSDKRTC.Google_Protobuf_Any) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public enum AnyUnpackError : Swift.Error { + case typeMismatch + case malformedWellKnownTypeJSON + case malformedAnyField + public static func == (a: VideoSDKRTC.AnyUnpackError, b: VideoSDKRTC.AnyUnpackError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct Google_Protobuf_Api { + public var name: Swift.String + public var methods: [VideoSDKRTC.Google_Protobuf_Method] + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var version: Swift.String + public var sourceContext: VideoSDKRTC.Google_Protobuf_SourceContext { + get + set + } + public var hasSourceContext: Swift.Bool { + get + } + public mutating func clearSourceContext() + public var mixins: [VideoSDKRTC.Google_Protobuf_Mixin] + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Method { + public var name: Swift.String + public var requestTypeURL: Swift.String + public var requestStreaming: Swift.Bool + public var responseTypeURL: Swift.String + public var responseStreaming: Swift.Bool + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Mixin { + public var name: Swift.String + public var root: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Api : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Method : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Mixin : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Api : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Api, rhs: VideoSDKRTC.Google_Protobuf_Api) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Method : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Method, rhs: VideoSDKRTC.Google_Protobuf_Method) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Mixin : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Mixin, rhs: VideoSDKRTC.Google_Protobuf_Mixin) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol APIDoubleObserverMetricHandle { + func observe(value: Swift.Double) +} +public protocol APIIntObserverMetricHandle { + func observe(value: Swift.Int) +} +public struct ArrayWithCapacity { + public let capacity: Swift.Int + public init(capacity: Swift.Int) + public mutating func append(_ item: T) +} +extension VideoSDKRTC.ArrayWithCapacity : Swift.MutableCollection { + public var startIndex: Swift.Int { + get + } + public var endIndex: Swift.Int { + get + } + public subscript(index: Swift.Int) -> T { + get + set + } + public func index(after i: Swift.Int) -> Swift.Int + public typealias Element = T + public typealias Index = Swift.Int + public typealias Indices = Swift.DefaultIndices> + public typealias Iterator = Swift.IndexingIterator> + public typealias SubSequence = Swift.Slice> +} +@_hasMissingDesignatedInitializers public class AsynchronousMetricStorage : VideoSDKRTC.MetricStorage { + public var registeredReader: VideoSDKRTC.RegisteredReader { + get + } + public var metricDescriptor: VideoSDKRTC.MetricDescriptor { + get + } + public func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + public func isEmpty() -> Swift.Bool + @objc deinit +} +#if compiler(>=5.3) && $RethrowsProtocol +@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +extension _Concurrency.AsyncSequence where Self.Element == Swift.UInt8 { + @inlinable public func binaryProtobufDelimitedMessages(of messageType: M.Type = M.self, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) -> VideoSDKRTC.AsyncMessageSequence where M : VideoSDKRTC.Message { + AsyncMessageSequence( + base: self, + extensions: extensions, + partial: partial, + options: options + ) + } +} +#endif +#if compiler(>=5.3) && $RethrowsProtocol +@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +public struct AsyncMessageSequence : _Concurrency.AsyncSequence where Base : _Concurrency.AsyncSequence, M : VideoSDKRTC.Message, Base.Element == Swift.UInt8 { + public typealias Element = M + public init(base: Base, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) + public struct AsyncIterator : _Concurrency.AsyncIteratorProtocol { + @usableFromInline + internal var iterator: Base.AsyncIterator? + @usableFromInline + internal let extensions: (any VideoSDKRTC.ExtensionMap)? + @usableFromInline + internal let partial: Swift.Bool + @usableFromInline + internal let options: VideoSDKRTC.BinaryDecodingOptions + #if compiler(>=5.3) && $AsyncAwait + @inlinable internal mutating func nextVarInt() async throws -> Swift.UInt64? { + var messageSize: UInt64 = 0 + var shift: UInt64 = 0 + + while let byte = try await iterator?.next() { + messageSize |= UInt64(byte & 0x7f) << shift + shift += UInt64(7) + if shift > 35 { + iterator = nil + throw BinaryDelimited.Error.malformedLength + } + if (byte & 0x80 == 0) { + return messageSize + } + } + if (shift > 0) { + // The stream has ended inside a varint. + iterator = nil + throw BinaryDelimited.Error.truncated + } + return nil // End of stream reached. + } + #endif + #if compiler(>=5.3) && $AsyncAwait + @usableFromInline + internal mutating func readBytes(_ size: Swift.Int) async throws -> [Swift.UInt8] + #endif + #if compiler(>=5.3) && $AsyncAwait + @inlinable public mutating func next() async throws -> M? { + guard let messageSize = try await nextVarInt() else { + iterator = nil + return nil + } + guard messageSize <= UInt64(0x7fffffff) else { + iterator = nil + throw BinaryDecodingError.tooLarge + } + if messageSize == 0 { + return try M( + serializedBytes: [], + extensions: extensions, + partial: partial, + options: options + ) + } + let buffer = try await readBytes(Int(messageSize)) + return try M( + serializedBytes: buffer, + extensions: extensions, + partial: partial, + options: options + ) + } + #endif + public typealias Element = M + } + public func makeAsyncIterator() -> VideoSDKRTC.AsyncMessageSequence.AsyncIterator +} +#endif +#if compiler(>=5.3) && $RethrowsProtocol +@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +extension VideoSDKRTC.AsyncMessageSequence : Swift.Sendable where Base : Swift.Sendable { +} +#endif +#if compiler(>=5.3) && $RethrowsProtocol +@available(*, unavailable) +extension VideoSDKRTC.AsyncMessageSequence.AsyncIterator : Swift.Sendable { +} +#endif +public protocol AttributeProcessorProtocol { + func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] +} +@_hasMissingDesignatedInitializers public class AttributeProcessor : VideoSDKRTC.AttributeProcessorProtocol { + public func then(other: VideoSDKRTC.AttributeProcessor) -> VideoSDKRTC.AttributeProcessor + public func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] + public static func filterByKeyName(nameFilter: @escaping (Swift.String) -> Swift.Bool) -> VideoSDKRTC.AttributeProcessor + public static func append(attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.AttributeProcessor + @objc deinit +} +@_hasMissingDesignatedInitializers public class JoinedAttributeProcessor : VideoSDKRTC.AttributeProcessor { + override public func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] + override public func then(other: VideoSDKRTC.AttributeProcessor) -> VideoSDKRTC.AttributeProcessor + public func prepend(processor: VideoSDKRTC.AttributeProcessor) -> VideoSDKRTC.AttributeProcessor + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class NoopAttributeProcessor : VideoSDKRTC.AttributeProcessor { + override public func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] + @objc deinit +} +public struct AttributesDictionary { + public init(capacity: Swift.Int, valueLengthLimit: Swift.Int = Int.max) + public subscript(key: Swift.String) -> VideoSDKRTC.AttributeValue? { + get + set + } + @discardableResult + public mutating func updateValue(value: VideoSDKRTC.AttributeValue, forKey key: Swift.String) -> VideoSDKRTC.AttributeValue? + public mutating func updateValues(attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public mutating func updateValues(attributes: VideoSDKRTC.AttributesDictionary) + public mutating func removeValueForKey(key: Swift.String) -> VideoSDKRTC.AttributeValue? + public mutating func removeAll(keepCapacity: Swift.Int) + public var count: Swift.Int { + get + } + public var numberOfDroppedAttributes: Swift.Int { + get + } + public var values: [VideoSDKRTC.AttributeValue] { + get + } +} +extension VideoSDKRTC.AttributesDictionary : Swift.Sequence { + public func makeIterator() -> VideoSDKRTC.AttributesWithCapacityIterator + public typealias Element = (Swift.String, VideoSDKRTC.AttributeValue) + public typealias Iterator = VideoSDKRTC.AttributesWithCapacityIterator +} +public struct AttributesWithCapacityIterator : Swift.IteratorProtocol { + public mutating func next() -> (Swift.String, VideoSDKRTC.AttributeValue)? + public typealias Element = (Swift.String, VideoSDKRTC.AttributeValue) +} +@_hasMissingDesignatedInitializers open class AttributeSet : Swift.Hashable, Swift.Codable { + public var labels: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public static var empty: VideoSDKRTC.AttributeSet + required public init(labels: [Swift.String : VideoSDKRTC.AttributeValue]) + public static func == (lhs: VideoSDKRTC.AttributeSet, rhs: VideoSDKRTC.AttributeSet) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + @objc deinit + open func encode(to encoder: any Swift.Encoder) throws + open var hashValue: Swift.Int { + get + } + required public init(from decoder: any Swift.Decoder) throws +} +public enum AttributeValue : Swift.Equatable, Swift.CustomStringConvertible, Swift.Hashable { + case string(Swift.String) + case bool(Swift.Bool) + case int(Swift.Int) + case double(Swift.Double) + case stringArray([Swift.String]) + case boolArray([Swift.Bool]) + case intArray([Swift.Int]) + case doubleArray([Swift.Double]) + case set(VideoSDKRTC.AttributeSet) + public var description: Swift.String { + get + } + public init?(_ value: Any) + public static func == (a: VideoSDKRTC.AttributeValue, b: VideoSDKRTC.AttributeValue) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.AttributeValue { + public init(_ value: Swift.String) + public init(_ value: Swift.Bool) + public init(_ value: Swift.Int) + public init(_ value: Swift.Double) + public init(_ value: [Swift.String]) + public init(_ value: [Swift.Int]) + public init(_ value: [Swift.Double]) + public init(_ value: VideoSDKRTC.AttributeSet) +} +extension VideoSDKRTC.AttributeValue : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public protocol Baggage : AnyObject { + static func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder + func getEntries() -> [VideoSDKRTC.Entry] + func getEntryValue(key: VideoSDKRTC.EntryKey) -> VideoSDKRTC.EntryValue? +} +public func == (lhs: any VideoSDKRTC.Baggage, rhs: any VideoSDKRTC.Baggage) -> Swift.Bool +public protocol BaggageBuilder : AnyObject { + @discardableResult + func setParent(_ parent: (any VideoSDKRTC.Baggage)?) -> Self + @discardableResult + func setNoParent() -> Self + @discardableResult + func put(key: VideoSDKRTC.EntryKey, value: VideoSDKRTC.EntryValue, metadata: VideoSDKRTC.EntryMetadata?) -> Self + @discardableResult + func remove(key: VideoSDKRTC.EntryKey) -> Self + func build() -> any VideoSDKRTC.Baggage +} +public protocol BaggageManager : AnyObject { + func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder +} +public class BatchLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public init(logRecordExporter: any VideoSDKRTC.LogRecordExporter, scheduleDelay: Foundation.TimeInterval = 5, exportTimeout: Foundation.TimeInterval = 30, maxQueueSize: Swift.Int = 2048, maxExportBatchSize: Swift.Int = 512, willExportCallback: ((inout [VideoSDKRTC.ReadableLogRecord]) -> Swift.Void)? = nil) + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func forceFlush(timeout: Foundation.TimeInterval?) + public func shutdown() -> VideoSDKRTC.ExportResult + @objc deinit +} +public struct BatchSpanProcessor : VideoSDKRTC.SpanProcessor { + public init(spanExporter: any VideoSDKRTC.SpanExporter, scheduleDelay: Foundation.TimeInterval = 5, exportTimeout: Foundation.TimeInterval = 30, maxQueueSize: Swift.Int = 2048, maxExportBatchSize: Swift.Int = 512, willExportCallback: ((inout [VideoSDKRTC.SpanData]) -> Swift.Void)? = nil) + public let isStartRequired: Swift.Bool + public let isEndRequired: Swift.Bool + public func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + public func onEnd(span: any VideoSDKRTC.ReadableSpan) + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) +} +public enum BinaryDecodingError : Swift.Error { + case trailingGarbage + case truncated + case invalidUTF8 + case malformedProtobuf + case missingRequiredFields + case internalExtensionError + case messageDepthLimit + case tooLarge + public static func == (a: VideoSDKRTC.BinaryDecodingError, b: VideoSDKRTC.BinaryDecodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct BinaryDecodingOptions : Swift.Sendable { + public var messageDepthLimit: Swift.Int + public var discardUnknownFields: Swift.Bool + public init() +} +public enum BinaryDelimited { + public enum Error : Swift.Error { + case unknownStreamError + case truncated + case tooLarge + case malformedLength + case noBytesAvailable + public static func == (a: VideoSDKRTC.BinaryDelimited.Error, b: VideoSDKRTC.BinaryDelimited.Error) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } + public static func serialize(message: any VideoSDKRTC.Message, to stream: Foundation.OutputStream, partial: Swift.Bool = false) throws + public static func parse(messageType: M.Type, from stream: Foundation.InputStream, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws -> M where M : VideoSDKRTC.Message + public static func merge(into message: inout M, from stream: Foundation.InputStream, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws where M : VideoSDKRTC.Message +} +public enum BinaryEncodingError : Swift.Error { + case anyTranscodeFailure + case missingRequiredFields + case tooLarge + public static func == (a: VideoSDKRTC.BinaryEncodingError, b: VideoSDKRTC.BinaryEncodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +open class BoundCounterMetric { + public init() + open func add(value: T) + @objc deinit +} +open class BoundHistogramMetric { + public init(explicitBoundaries: Swift.Array? = nil) + open func record(value: T) + @objc deinit +} +open class BoundMeasureMetric { + public init() + open func record(value: T) + @objc deinit +} +open class BoundRawCounterMetric { + public init() + open func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date) + @objc deinit +} +open class BoundRawHistogramMetric { + public init() + open func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T) + @objc deinit +} +@_hasMissingDesignatedInitializers public class CallbackRegistration { + public func execute(reader: VideoSDKRTC.RegisteredReader, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) + @objc deinit +} public enum CameraPosition : Swift.Int { case back case front @@ -21,6 +559,197 @@ public enum CameraPosition : Swift.Int { get } } +public protocol Clock : AnyObject { + var now: Foundation.Date { get } +} +extension VideoSDKRTC.Clock { + public var nanoTime: Swift.UInt64 { + get + } +} +public func == (lhs: any VideoSDKRTC.Clock, rhs: any VideoSDKRTC.Clock) -> Swift.Bool +public protocol CollectionRegistration { +} +public struct Opentelemetry_Proto_Common_V1_AnyValue { + public var value: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value? + public var stringValue: Swift.String { + get + set + } + public var boolValue: Swift.Bool { + get + set + } + public var intValue: Swift.Int64 { + get + set + } + public var doubleValue: Swift.Double { + get + set + } + public var arrayValue: VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue { + get + set + } + public var kvlistValue: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList { + get + set + } + public var bytesValue: Foundation.Data { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Value : Swift.Equatable { + case stringValue(Swift.String) + case boolValue(Swift.Bool) + case intValue(Swift.Int64) + case doubleValue(Swift.Double) + case arrayValue(VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue) + case kvlistValue(VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList) + case bytesValue(Foundation.Data) + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value) -> Swift.Bool + } + public init() +} +public struct Opentelemetry_Proto_Common_V1_ArrayValue { + public var values: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Common_V1_KeyValueList { + public var values: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Common_V1_KeyValue { + public var key: Swift.String + public var value: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue { + get + set + } + public var hasValue: Swift.Bool { + get + } + public mutating func clearValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Common_V1_InstrumentationScope { + public var name: Swift.String + public var version: Swift.String + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct CommonAdapter { + public static func toProtoAttribute(key: Swift.String, attributeValue: VideoSDKRTC.AttributeValue) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue + public static func toProtoInstrumentationScope(instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope +} +public protocol ContextManager : AnyObject { + func getCurrentContextValue(forKey: VideoSDKRTC.OpenTelemetryContextKeys) -> Swift.AnyObject? + func setCurrentContextValue(forKey: VideoSDKRTC.OpenTelemetryContextKeys, value: Swift.AnyObject) + func removeContextValue(forKey: VideoSDKRTC.OpenTelemetryContextKeys, value: Swift.AnyObject) +} +public protocol ContextPropagators { + var textMapPropagator: any VideoSDKRTC.TextMapPropagator { get } + var textMapBaggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator { get } +} +public protocol CounterMetric { + associatedtype T + func add(value: Self.T, labelset: VideoSDKRTC.LabelSet) + func add(value: Self.T, labels: [Swift.String : Swift.String]) + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundCounterMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundCounterMetric +} +public struct AnyCounterMetric : VideoSDKRTC.CounterMetric { + public init(_ countable: U) where T == U.T, U : VideoSDKRTC.CounterMetric + public func add(value: T, labelset: VideoSDKRTC.LabelSet) + public func add(value: T, labels: [Swift.String : Swift.String]) + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundCounterMetric +} +public struct NoopCounterMetric : VideoSDKRTC.CounterMetric { + public init() + public func add(value: T, labelset: VideoSDKRTC.LabelSet) + public func add(value: T, labels: [Swift.String : Swift.String]) + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundCounterMetric +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class CounterSumAggregator : VideoSDKRTC.Aggregator where T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +@_hasMissingDesignatedInitializers public class CustomRTCMediaStream { + @objc deinit +} public enum CustomVideoTrackConfig { case h90p_w160p, h180p_w320p, h216p_w384p, h360p_w640p, h540p_w960p, h720p_w1280p, h1080p_w1920p, h1440p_w2560p, h2160p_w3840p, h120p_w160p, h180p_w240p, h240p_w320p, h360p_w480p, h480p_w640p, h540p_w720p, h720p_w960p, h1080p_w1440p, h1440p_w1920p public static func == (a: VideoSDKRTC.CustomVideoTrackConfig, b: VideoSDKRTC.CustomVideoTrackConfig) -> Swift.Bool @@ -29,196 +758,7653 @@ public enum CustomVideoTrackConfig { get } } -@_hasMissingDesignatedInitializers public class CustomRTCMediaStream { - @objc deinit -} -extension Foundation.Data { - public func toJSONString() -> Swift.String - public func toJSON() -> [Swift.String : Any] - public func toJSONArray() -> [Any] +@_hasMissingDesignatedInitializers public class DefaultAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.DefaultAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +final public class DefaultBaggage : VideoSDKRTC.Baggage, Swift.Equatable { + public init(entries: [VideoSDKRTC.EntryKey : VideoSDKRTC.Entry?]) + public static func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder + final public func getEntries() -> [VideoSDKRTC.Entry] + final public func getEntryValue(key: VideoSDKRTC.EntryKey) -> VideoSDKRTC.EntryValue? + public static func == (lhs: VideoSDKRTC.DefaultBaggage, rhs: VideoSDKRTC.DefaultBaggage) -> Swift.Bool + @objc deinit +} +public class DefaultBaggageBuilder : VideoSDKRTC.BaggageBuilder { + public init() + @discardableResult + public func setParent(_ parent: (any VideoSDKRTC.Baggage)?) -> Self + @discardableResult + public func setNoParent() -> Self + @discardableResult + public func put(key: VideoSDKRTC.EntryKey, value: VideoSDKRTC.EntryValue, metadata: VideoSDKRTC.EntryMetadata?) -> Self + @discardableResult + public func put(key: Swift.String, value: Swift.String, metadata: Swift.String? = nil) -> Self + @discardableResult + public func remove(key: VideoSDKRTC.EntryKey) -> Self + public func build() -> any VideoSDKRTC.Baggage + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultBaggageManager : VideoSDKRTC.BaggageManager { + public static var instance: VideoSDKRTC.DefaultBaggageManager + public func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder + public func getCurrentBaggage() -> (any VideoSDKRTC.Baggage)? + @objc deinit +} +public struct DefaultContextPropagators : VideoSDKRTC.ContextPropagators { + public var textMapPropagator: any VideoSDKRTC.TextMapPropagator + public var textMapBaggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator + public init() + public init(textPropagators: [any VideoSDKRTC.TextMapPropagator], baggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator) + public mutating func addTextMapPropagator(textFormat: any VideoSDKRTC.TextMapPropagator) +} +@_hasMissingDesignatedInitializers public class DefaultLogger : VideoSDKRTC.Logger { + public func eventBuilder(name: Swift.String) -> any VideoSDKRTC.EventBuilder + public func logRecordBuilder() -> any VideoSDKRTC.LogRecordBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultLoggerProvider : VideoSDKRTC.LoggerProvider { + public static let instance: any VideoSDKRTC.LoggerProvider + public func get(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.Logger + public func loggerBuilder(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.LoggerBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultMeterProvider : VideoSDKRTC.MeterProvider { + public static var instance: any VideoSDKRTC.MeterProvider + public static func setDefault(meterFactory: any VideoSDKRTC.MeterProvider) + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Meter + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultStableMeter : VideoSDKRTC.StableMeter { + public func counterBuilder(name: Swift.String) -> any VideoSDKRTC.LongCounterBuilder + public func upDownCounterBuilder(name: Swift.String) -> any VideoSDKRTC.LongUpDownCounterBuilder + public func histogramBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleHistogramBuilder + public func gaugeBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleGaugeBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultStableMeterProvider : VideoSDKRTC.StableMeterProvider { + public static func noop() -> any VideoSDKRTC.MeterBuilder + public func get(name: Swift.String) -> any VideoSDKRTC.StableMeter + public func meterBuilder(name: Swift.String) -> any VideoSDKRTC.MeterBuilder + public static var instance: any VideoSDKRTC.StableMeterProvider + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultTracer : VideoSDKRTC.Tracer { + public static var instance: VideoSDKRTC.DefaultTracer + public func spanBuilder(spanName: Swift.String) -> any VideoSDKRTC.SpanBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultTracerProvider : VideoSDKRTC.TracerProvider { + public static let instance: VideoSDKRTC.DefaultTracerProvider + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Tracer + @objc deinit +} +public struct Google_Protobuf_FileDescriptorSet { + public var file: [VideoSDKRTC.Google_Protobuf_FileDescriptorProto] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_FileDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var package: Swift.String { + get + set + } + public var hasPackage: Swift.Bool { + get + } + public mutating func clearPackage() + public var dependency: [Swift.String] + public var publicDependency: [Swift.Int32] + public var weakDependency: [Swift.Int32] + public var messageType: [VideoSDKRTC.Google_Protobuf_DescriptorProto] + public var enumType: [VideoSDKRTC.Google_Protobuf_EnumDescriptorProto] + public var service: [VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto] + public var `extension`: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_FileOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var sourceCodeInfo: VideoSDKRTC.Google_Protobuf_SourceCodeInfo { + get + set + } + public var hasSourceCodeInfo: Swift.Bool { + get + } + public mutating func clearSourceCodeInfo() + public var syntax: Swift.String { + get + set + } + public var hasSyntax: Swift.Bool { + get + } + public mutating func clearSyntax() + public var edition: Swift.String { + get + set + } + public var hasEdition: Swift.Bool { + get + } + public mutating func clearEdition() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_DescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var field: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto] + public var `extension`: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto] + public var nestedType: [VideoSDKRTC.Google_Protobuf_DescriptorProto] + public var enumType: [VideoSDKRTC.Google_Protobuf_EnumDescriptorProto] + public var extensionRange: [VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange] + public var oneofDecl: [VideoSDKRTC.Google_Protobuf_OneofDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_MessageOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var reservedRange: [VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange] + public var reservedName: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct ExtensionRange { + public var start: Swift.Int32 { + get + set + } + public var hasStart: Swift.Bool { + get + } + public mutating func clearStart() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var options: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public struct ReservedRange { + public var start: Swift.Int32 { + get + set + } + public var hasStart: Swift.Bool { + get + } + public mutating func clearStart() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_ExtensionRangeOptions : VideoSDKRTC.ExtensibleMessage { + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var declaration: [VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration] + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var verification: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState { + get + set + } + public var hasVerification: Swift.Bool { + get + } + public mutating func clearVerification() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum VerificationState : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case declaration + case unverified + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState] + public static var allCases: [VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState] { + get + } + } + public struct Declaration { + public var number: Swift.Int32 { + get + set + } + public var hasNumber: Swift.Bool { + get + } + public mutating func clearNumber() + public var fullName: Swift.String { + get + set + } + public var hasFullName: Swift.Bool { + get + } + public mutating func clearFullName() + public var type: Swift.String { + get + set + } + public var hasType: Swift.Bool { + get + } + public mutating func clearType() + public var reserved: Swift.Bool { + get + set + } + public var hasReserved: Swift.Bool { + get + } + public mutating func clearReserved() + public var repeated: Swift.Bool { + get + set + } + public var hasRepeated: Swift.Bool { + get + } + public mutating func clearRepeated() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_FieldDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var number: Swift.Int32 { + get + set + } + public var hasNumber: Swift.Bool { + get + } + public mutating func clearNumber() + public var label: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label { + get + set + } + public var hasLabel: Swift.Bool { + get + } + public mutating func clearLabel() + public var type: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum { + get + set + } + public var hasType: Swift.Bool { + get + } + public mutating func clearType() + public var typeName: Swift.String { + get + set + } + public var hasTypeName: Swift.Bool { + get + } + public mutating func clearTypeName() + public var extendee: Swift.String { + get + set + } + public var hasExtendee: Swift.Bool { + get + } + public mutating func clearExtendee() + public var defaultValue: Swift.String { + get + set + } + public var hasDefaultValue: Swift.Bool { + get + } + public mutating func clearDefaultValue() + public var oneofIndex: Swift.Int32 { + get + set + } + public var hasOneofIndex: Swift.Bool { + get + } + public mutating func clearOneofIndex() + public var jsonName: Swift.String { + get + set + } + public var hasJsonName: Swift.Bool { + get + } + public mutating func clearJsonName() + public var options: VideoSDKRTC.Google_Protobuf_FieldOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var proto3Optional: Swift.Bool { + get + set + } + public var hasProto3Optional: Swift.Bool { + get + } + public mutating func clearProto3Optional() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum TypeEnum : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case double + case float + case int64 + case uint64 + case int32 + case fixed64 + case fixed32 + case bool + case string + case group + case message + case bytes + case uint32 + case `enum` + case sfixed32 + case sfixed64 + case sint32 + case sint64 + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum] { + get + } + } + public enum Label : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case optional + case required + case repeated + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label] { + get + } + } + public init() +} +public struct Google_Protobuf_OneofDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var options: VideoSDKRTC.Google_Protobuf_OneofOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_EnumDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var value: [VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_EnumOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var reservedRange: [VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange] + public var reservedName: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct EnumReservedRange { + public var start: Swift.Int32 { + get + set + } + public var hasStart: Swift.Bool { + get + } + public mutating func clearStart() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_EnumValueDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var number: Swift.Int32 { + get + set + } + public var hasNumber: Swift.Bool { + get + } + public mutating func clearNumber() + public var options: VideoSDKRTC.Google_Protobuf_EnumValueOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_ServiceDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var method: [VideoSDKRTC.Google_Protobuf_MethodDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_ServiceOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_MethodDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var inputType: Swift.String { + get + set + } + public var hasInputType: Swift.Bool { + get + } + public mutating func clearInputType() + public var outputType: Swift.String { + get + set + } + public var hasOutputType: Swift.Bool { + get + } + public mutating func clearOutputType() + public var options: VideoSDKRTC.Google_Protobuf_MethodOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var clientStreaming: Swift.Bool { + get + set + } + public var hasClientStreaming: Swift.Bool { + get + } + public mutating func clearClientStreaming() + public var serverStreaming: Swift.Bool { + get + set + } + public var hasServerStreaming: Swift.Bool { + get + } + public mutating func clearServerStreaming() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_FileOptions : VideoSDKRTC.ExtensibleMessage { + public var javaPackage: Swift.String { + get + set + } + public var hasJavaPackage: Swift.Bool { + get + } + public mutating func clearJavaPackage() + public var javaOuterClassname: Swift.String { + get + set + } + public var hasJavaOuterClassname: Swift.Bool { + get + } + public mutating func clearJavaOuterClassname() + public var javaMultipleFiles: Swift.Bool { + get + set + } + public var hasJavaMultipleFiles: Swift.Bool { + get + } + public mutating func clearJavaMultipleFiles() + public var javaGenerateEqualsAndHash: Swift.Bool { + get + set + } + public var hasJavaGenerateEqualsAndHash: Swift.Bool { + get + } + public mutating func clearJavaGenerateEqualsAndHash() + public var javaStringCheckUtf8: Swift.Bool { + get + set + } + public var hasJavaStringCheckUtf8: Swift.Bool { + get + } + public mutating func clearJavaStringCheckUtf8() + public var optimizeFor: VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode { + get + set + } + public var hasOptimizeFor: Swift.Bool { + get + } + public mutating func clearOptimizeFor() + public var goPackage: Swift.String { + get + set + } + public var hasGoPackage: Swift.Bool { + get + } + public mutating func clearGoPackage() + public var ccGenericServices: Swift.Bool { + get + set + } + public var hasCcGenericServices: Swift.Bool { + get + } + public mutating func clearCcGenericServices() + public var javaGenericServices: Swift.Bool { + get + set + } + public var hasJavaGenericServices: Swift.Bool { + get + } + public mutating func clearJavaGenericServices() + public var pyGenericServices: Swift.Bool { + get + set + } + public var hasPyGenericServices: Swift.Bool { + get + } + public mutating func clearPyGenericServices() + public var phpGenericServices: Swift.Bool { + get + set + } + public var hasPhpGenericServices: Swift.Bool { + get + } + public mutating func clearPhpGenericServices() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var ccEnableArenas: Swift.Bool { + get + set + } + public var hasCcEnableArenas: Swift.Bool { + get + } + public mutating func clearCcEnableArenas() + public var objcClassPrefix: Swift.String { + get + set + } + public var hasObjcClassPrefix: Swift.Bool { + get + } + public mutating func clearObjcClassPrefix() + public var csharpNamespace: Swift.String { + get + set + } + public var hasCsharpNamespace: Swift.Bool { + get + } + public mutating func clearCsharpNamespace() + public var swiftPrefix: Swift.String { + get + set + } + public var hasSwiftPrefix: Swift.Bool { + get + } + public mutating func clearSwiftPrefix() + public var phpClassPrefix: Swift.String { + get + set + } + public var hasPhpClassPrefix: Swift.Bool { + get + } + public mutating func clearPhpClassPrefix() + public var phpNamespace: Swift.String { + get + set + } + public var hasPhpNamespace: Swift.Bool { + get + } + public mutating func clearPhpNamespace() + public var phpMetadataNamespace: Swift.String { + get + set + } + public var hasPhpMetadataNamespace: Swift.Bool { + get + } + public mutating func clearPhpMetadataNamespace() + public var rubyPackage: Swift.String { + get + set + } + public var hasRubyPackage: Swift.Bool { + get + } + public mutating func clearRubyPackage() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OptimizeMode : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case speed + case codeSize + case liteRuntime + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode] { + get + } + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_MessageOptions : VideoSDKRTC.ExtensibleMessage { + public var messageSetWireFormat: Swift.Bool { + get + set + } + public var hasMessageSetWireFormat: Swift.Bool { + get + } + public mutating func clearMessageSetWireFormat() + public var noStandardDescriptorAccessor: Swift.Bool { + get + set + } + public var hasNoStandardDescriptorAccessor: Swift.Bool { + get + } + public mutating func clearNoStandardDescriptorAccessor() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var mapEntry: Swift.Bool { + get + set + } + public var hasMapEntry: Swift.Bool { + get + } + public mutating func clearMapEntry() + public var deprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + set + } + public var hasDeprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + } + public mutating func clearDeprecatedLegacyJsonFieldConflicts() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_FieldOptions : VideoSDKRTC.ExtensibleMessage { + public var ctype: VideoSDKRTC.Google_Protobuf_FieldOptions.CType { + get + set + } + public var hasCtype: Swift.Bool { + get + } + public mutating func clearCtype() + public var packed: Swift.Bool { + get + set + } + public var hasPacked: Swift.Bool { + get + } + public mutating func clearPacked() + public var jstype: VideoSDKRTC.Google_Protobuf_FieldOptions.JSType { + get + set + } + public var hasJstype: Swift.Bool { + get + } + public mutating func clearJstype() + public var lazy: Swift.Bool { + get + set + } + public var hasLazy: Swift.Bool { + get + } + public mutating func clearLazy() + public var unverifiedLazy: Swift.Bool { + get + set + } + public var hasUnverifiedLazy: Swift.Bool { + get + } + public mutating func clearUnverifiedLazy() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var weak: Swift.Bool { + get + set + } + public var hasWeak: Swift.Bool { + get + } + public mutating func clearWeak() + public var debugRedact: Swift.Bool { + get + set + } + public var hasDebugRedact: Swift.Bool { + get + } + public mutating func clearDebugRedact() + public var retention: VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention { + get + set + } + public var hasRetention: Swift.Bool { + get + } + public mutating func clearRetention() + public var targets: [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType] + public var editionDefaults: [VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault] + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum CType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case string + case cord + case stringPiece + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.CType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.CType] { + get + } + } + public enum JSType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case jsNormal + case jsString + case jsNumber + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.JSType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.JSType] { + get + } + } + public enum OptionRetention : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case retentionUnknown + case retentionRuntime + case retentionSource + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention] { + get + } + } + public enum OptionTargetType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case targetTypeUnknown + case targetTypeFile + case targetTypeExtensionRange + case targetTypeMessage + case targetTypeField + case targetTypeOneof + case targetTypeEnum + case targetTypeEnumEntry + case targetTypeService + case targetTypeMethod + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType] { + get + } + } + public struct EditionDefault { + public var edition: Swift.String { + get + set + } + public var hasEdition: Swift.Bool { + get + } + public mutating func clearEdition() + public var value: Swift.String { + get + set + } + public var hasValue: Swift.Bool { + get + } + public mutating func clearValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_OneofOptions : VideoSDKRTC.ExtensibleMessage { + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_EnumOptions : VideoSDKRTC.ExtensibleMessage { + public var allowAlias: Swift.Bool { + get + set + } + public var hasAllowAlias: Swift.Bool { + get + } + public mutating func clearAllowAlias() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var deprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + set + } + public var hasDeprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + } + public mutating func clearDeprecatedLegacyJsonFieldConflicts() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_EnumValueOptions : VideoSDKRTC.ExtensibleMessage { + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var debugRedact: Swift.Bool { + get + set + } + public var hasDebugRedact: Swift.Bool { + get + } + public mutating func clearDebugRedact() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_ServiceOptions : VideoSDKRTC.ExtensibleMessage { + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_MethodOptions : VideoSDKRTC.ExtensibleMessage { + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var idempotencyLevel: VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel { + get + set + } + public var hasIdempotencyLevel: Swift.Bool { + get + } + public mutating func clearIdempotencyLevel() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum IdempotencyLevel : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case idempotencyUnknown + case noSideEffects + case idempotent + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel] + public static var allCases: [VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel] { + get + } + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_UninterpretedOption { + public var name: [VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart] + public var identifierValue: Swift.String { + get + set + } + public var hasIdentifierValue: Swift.Bool { + get + } + public mutating func clearIdentifierValue() + public var positiveIntValue: Swift.UInt64 { + get + set + } + public var hasPositiveIntValue: Swift.Bool { + get + } + public mutating func clearPositiveIntValue() + public var negativeIntValue: Swift.Int64 { + get + set + } + public var hasNegativeIntValue: Swift.Bool { + get + } + public mutating func clearNegativeIntValue() + public var doubleValue: Swift.Double { + get + set + } + public var hasDoubleValue: Swift.Bool { + get + } + public mutating func clearDoubleValue() + public var stringValue: Foundation.Data { + get + set + } + public var hasStringValue: Swift.Bool { + get + } + public mutating func clearStringValue() + public var aggregateValue: Swift.String { + get + set + } + public var hasAggregateValue: Swift.Bool { + get + } + public mutating func clearAggregateValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct NamePart { + public var namePart: Swift.String { + get + set + } + public var hasNamePart: Swift.Bool { + get + } + public mutating func clearNamePart() + public var isExtension: Swift.Bool { + get + set + } + public var hasIsExtension: Swift.Bool { + get + } + public mutating func clearIsExtension() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_FeatureSet : VideoSDKRTC.ExtensibleMessage { + public var fieldPresence: VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence { + get + set + } + public var hasFieldPresence: Swift.Bool { + get + } + public mutating func clearFieldPresence() + public var enumType: VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType { + get + set + } + public var hasEnumType: Swift.Bool { + get + } + public mutating func clearEnumType() + public var repeatedFieldEncoding: VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding { + get + set + } + public var hasRepeatedFieldEncoding: Swift.Bool { + get + } + public mutating func clearRepeatedFieldEncoding() + public var stringFieldValidation: VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation { + get + set + } + public var hasStringFieldValidation: Swift.Bool { + get + } + public mutating func clearStringFieldValidation() + public var messageEncoding: VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding { + get + set + } + public var hasMessageEncoding: Swift.Bool { + get + } + public mutating func clearMessageEncoding() + public var jsonFormat: VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat { + get + set + } + public var hasJsonFormat: Swift.Bool { + get + } + public mutating func clearJsonFormat() + public var rawFeatures: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasRawFeatures: Swift.Bool { + get + } + public mutating func clearRawFeatures() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum FieldPresence : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case explicit + case implicit + case legacyRequired + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence] { + get + } + } + public enum EnumType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case open + case closed + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType] { + get + } + } + public enum RepeatedFieldEncoding : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case packed + case expanded + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding] { + get + } + } + public enum StringFieldValidation : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case mandatory + case hint + case none + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation] { + get + } + } + public enum MessageEncoding : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case lengthPrefixed + case delimited + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding] { + get + } + } + public enum JsonFormat : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case allow + case legacyBestEffort + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat] { + get + } + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_SourceCodeInfo { + public var location: [VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct Location { + public var path: [Swift.Int32] + public var span: [Swift.Int32] + public var leadingComments: Swift.String { + get + set + } + public var hasLeadingComments: Swift.Bool { + get + } + public mutating func clearLeadingComments() + public var trailingComments: Swift.String { + get + set + } + public var hasTrailingComments: Swift.Bool { + get + } + public mutating func clearTrailingComments() + public var leadingDetachedComments: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_GeneratedCodeInfo { + public var annotation: [VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct Annotation { + public var path: [Swift.Int32] + public var sourceFile: Swift.String { + get + set + } + public var hasSourceFile: Swift.Bool { + get + } + public mutating func clearSourceFile() + public var begin: Swift.Int32 { + get + set + } + public var hasBegin: Swift.Bool { + get + } + public mutating func clearBegin() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var semantic: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic { + get + set + } + public var hasSemantic: Swift.Bool { + get + } + public mutating func clearSemantic() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum Semantic : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case none + case set + case alias + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic] + public static var allCases: [VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic] { + get + } + } + public init() + } + public init() +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorSet : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_OneofDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_MethodDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FileOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_MessageOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_OneofOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumValueOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ServiceOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_MethodOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorSet : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FileDescriptorSet, rhs: VideoSDKRTC.Google_Protobuf_FileDescriptorSet) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FileDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_FileDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_DescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange, rhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange, rhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions, rhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration, rhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_OneofDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_OneofDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_OneofDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange, rhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_MethodDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_MethodDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_MethodDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FileOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FileOptions, rhs: VideoSDKRTC.Google_Protobuf_FileOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_MessageOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_MessageOptions, rhs: VideoSDKRTC.Google_Protobuf_MessageOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldOptions, rhs: VideoSDKRTC.Google_Protobuf_FieldOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.CType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.JSType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault, rhs: VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_OneofOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_OneofOptions, rhs: VideoSDKRTC.Google_Protobuf_OneofOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumOptions, rhs: VideoSDKRTC.Google_Protobuf_EnumOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumValueOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumValueOptions, rhs: VideoSDKRTC.Google_Protobuf_EnumValueOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ServiceOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ServiceOptions, rhs: VideoSDKRTC.Google_Protobuf_ServiceOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_MethodOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_MethodOptions, rhs: VideoSDKRTC.Google_Protobuf_MethodOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption, rhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart, rhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FeatureSet, rhs: VideoSDKRTC.Google_Protobuf_FeatureSet) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo, rhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location, rhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo, rhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation, rhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +public protocol DoubleCounter { + mutating func add(value: Swift.Double) + mutating func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol DoubleCounterBuilder : AnyObject { + func build() -> any VideoSDKRTC.DoubleCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleCounter +} +@_hasMissingDesignatedInitializers public class DoubleCounterMeterBuilderSdk : VideoSDKRTC.DoubleCounterBuilder { + public func build() -> any VideoSDKRTC.DoubleCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleCounter + @objc deinit +} +public enum HistogramAggregatorError : Swift.Error { + case unsupportedOperation(Swift.String) +} +public class DoubleExplicitBucketHistogramAggregator : VideoSDKRTC.StableAggregator { + public init(boundaries: [Swift.Double], reservoirSupplier: @escaping () -> VideoSDKRTC.ExemplarReservoir) + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol DoubleGaugeBuilder : AnyObject { + func ofLongs() -> any VideoSDKRTC.LongGaugeBuilder + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleGauge +} +@_hasMissingDesignatedInitializers public class DoubleGaugeBuilderSdk : VideoSDKRTC.DoubleGaugeBuilder { + public func ofLongs() -> any VideoSDKRTC.LongGaugeBuilder + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleGauge + @objc deinit +} +public protocol DoubleHistogram { + mutating func record(value: Swift.Double) + mutating func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol DoubleHistogramBuilder : AnyObject { + func ofLongs() -> any VideoSDKRTC.LongHistogramBuilder + func build() -> any VideoSDKRTC.DoubleHistogram +} +@_hasMissingDesignatedInitializers public class DoubleHistogramMeterBuilderSdk : VideoSDKRTC.DoubleHistogramBuilder { + public func ofLongs() -> any VideoSDKRTC.LongHistogramBuilder + public func build() -> any VideoSDKRTC.DoubleHistogram + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleHistogramMeterSdk : VideoSDKRTC.DoubleHistogram, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public var storage: any VideoSDKRTC.WritableMetricStorage + public func record(value: Swift.Double) + public func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleLastValueAggregator : VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol DoubleObserverMetric { + func observe(value: Swift.Double, labelset: VideoSDKRTC.LabelSet) + func observe(value: Swift.Double, labels: [Swift.String : Swift.String]) +} +public struct NoopDoubleObserverMetric : VideoSDKRTC.DoubleObserverMetric { + public init() + public func observe(value: Swift.Double, labelset: VideoSDKRTC.LabelSet) + public func observe(value: Swift.Double, labels: [Swift.String : Swift.String]) +} +@_hasMissingDesignatedInitializers public class DoublePointData : VideoSDKRTC.PointData { + public var value: Swift.Double + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleSumAggregator : VideoSDKRTC.SumAggregator, VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol DoubleUpDownCounter { + mutating func add(value: Swift.Double) + mutating func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol DoubleUpDownCounterBuilder : AnyObject { + func build() -> any VideoSDKRTC.DoubleUpDownCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleUpDownCounter +} +@_hasMissingDesignatedInitializers public class DoubleUpDownCounterBuilderSdk : VideoSDKRTC.DoubleUpDownCounterBuilder { + public func build() -> any VideoSDKRTC.DoubleUpDownCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleUpDownCounter + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleUpDownCounterSdk : VideoSDKRTC.DoubleUpDownCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor { + get + } + public func add(value: Swift.Double) + public func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_hasMissingDesignatedInitializers public class DropAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.DropAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +@_hasMissingDesignatedInitializers public class DropAggregator : VideoSDKRTC.StableAggregator { + public static var POINT_DATA: VideoSDKRTC.PointData { + get + } + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) -> VideoSDKRTC.PointData + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public struct Google_Protobuf_Duration { + public var seconds: Swift.Int64 + public var nanos: Swift.Int32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Duration : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Duration : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Google_Protobuf_Empty { + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Empty : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Empty : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Empty, rhs: VideoSDKRTC.Google_Protobuf_Empty) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class EmptyMetricStorage { + public func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public static var instance: VideoSDKRTC.EmptyMetricStorage + public var metricDescriptor: VideoSDKRTC.MetricDescriptor + public func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + public func isEmpty() -> Swift.Bool + @objc deinit +} +public struct Entry : Swift.Equatable, Swift.Comparable { + public var key: VideoSDKRTC.EntryKey { + get + } + public var value: VideoSDKRTC.EntryValue { + get + } + public var metadata: VideoSDKRTC.EntryMetadata? { + get + } + public init(key: VideoSDKRTC.EntryKey, value: VideoSDKRTC.EntryValue, metadata: VideoSDKRTC.EntryMetadata?) + public static func < (lhs: VideoSDKRTC.Entry, rhs: VideoSDKRTC.Entry) -> Swift.Bool + public static func == (a: VideoSDKRTC.Entry, b: VideoSDKRTC.Entry) -> Swift.Bool +} +public struct EntryKey : Swift.Equatable, Swift.Comparable, Swift.Hashable { + public var name: Swift.String { + get + } + public init?(name: Swift.String) + public static func < (lhs: VideoSDKRTC.EntryKey, rhs: VideoSDKRTC.EntryKey) -> Swift.Bool + public static func == (a: VideoSDKRTC.EntryKey, b: VideoSDKRTC.EntryKey) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct EntryMetadata : Swift.Equatable { + public var metadata: Swift.String + public init?(metadata: Swift.String?) + public static func == (a: VideoSDKRTC.EntryMetadata, b: VideoSDKRTC.EntryMetadata) -> Swift.Bool +} +public struct EntryValue : Swift.Equatable { + public var string: Swift.String { + get + } + public init?(string: Swift.String) + public static func == (a: VideoSDKRTC.EntryValue, b: VideoSDKRTC.EntryValue) -> Swift.Bool +} +public protocol Enum : Swift.CaseIterable, Swift.Hashable, Swift.RawRepresentable, Swift.Sendable { + init() + init?(rawValue: Swift.Int) + var rawValue: Swift.Int { get } +} +extension VideoSDKRTC.Enum { + public func hash(into hasher: inout Swift.Hasher) +} +public struct EnvironmentContextPropagator : VideoSDKRTC.TextMapPropagator { + public let fields: Swift.Set + public init() + public func inject(spanContext: VideoSDKRTC.SpanContext, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + public func extract(carrier: [Swift.String : Swift.String], getter: G) -> VideoSDKRTC.SpanContext? where G : VideoSDKRTC.Getter +} +public struct EnvVarHeaders { + public static let attributes: [(Swift.String, Swift.String)]? + public static func attributes(for rawEnvAttributes: Swift.String? = ProcessInfo.processInfo.environment["OTEL_EXPORTER_OTLP_HEADERS"]) -> [(Swift.String, Swift.String)]? +} +public struct EnvVarResource { + public static let resource: VideoSDKRTC.Resource + public static func get(environment: [Swift.String : Swift.String] = ProcessInfo.processInfo.environment) -> VideoSDKRTC.Resource +} +public protocol EventBuilder : VideoSDKRTC.LogRecordBuilder { + func setData(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self +} +@_hasMissingDesignatedInitializers public class ExemplarData : Swift.Equatable { + public var filteredAttributes: [Swift.String : VideoSDKRTC.AttributeValue] + public var epochNanos: Swift.UInt64 + public var spanContext: VideoSDKRTC.SpanContext? + public static func == (lhs: VideoSDKRTC.ExemplarData, rhs: VideoSDKRTC.ExemplarData) -> Swift.Bool + @objc deinit +} +@_hasMissingDesignatedInitializers final public class DoubleExemplarData : VideoSDKRTC.ExemplarData { + final public var value: Swift.Double + @objc deinit +} +@_hasMissingDesignatedInitializers final public class LongExemplarData : VideoSDKRTC.ExemplarData { + final public var value: Swift.Int + @objc deinit +} +public protocol ExemplarFilter { + func shouldSampleMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool + func shouldSampleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool +} +public struct AlwaysOnFilter : VideoSDKRTC.ExemplarFilter { + public func shouldSampleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool + public func shouldSampleMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool +} +public struct AlwaysOffFilter : VideoSDKRTC.ExemplarFilter { + public init() + public func shouldSampleMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool + public func shouldSampleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class ExemplarReservoir { + public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class NoopExemplarReservoir : VideoSDKRTC.ExemplarReservoir { + override public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + @objc deinit +} +public enum ExemplarReservoirCollection { +} +@_hasMissingDesignatedInitializers public class FixedSizedExemplarReservoir : VideoSDKRTC.ExemplarReservoir { + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + @objc deinit +} +@_hasMissingDesignatedInitializers public class RandomFixedSizedExemplarReservoir : VideoSDKRTC.FixedSizedExemplarReservoir { + @objc deinit +} +@_hasMissingDesignatedInitializers public class ExplicitBucketHistogramAggregation : VideoSDKRTC.Aggregation { + public static var DEFAULT_BOUNDARIES: [Swift.Double] { + get + } + public static var instance: VideoSDKRTC.ExplicitBucketHistogramAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +public protocol ExponentialHistogramBuckets { + var scale: Swift.Int { get } + var offset: Swift.Int { get } + var bucketCounts: [Swift.Int] { get } + var totalCount: Swift.Int { get } +} +public enum ExportResult { + case success + case failure + public static func == (a: VideoSDKRTC.ExportResult, b: VideoSDKRTC.ExportResult) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public protocol ExtensibleMessage : VideoSDKRTC.Message { + var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet { get set } +} +extension VideoSDKRTC.ExtensibleMessage { + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, value: F.ValueType) where F : VideoSDKRTC.ExtensionField + public func getExtensionValue(ext: VideoSDKRTC.MessageExtension) -> F.ValueType? where F : VideoSDKRTC.ExtensionField + public func hasExtensionValue(ext: VideoSDKRTC.MessageExtension) -> Swift.Bool where F : VideoSDKRTC.ExtensionField + public mutating func clearExtensionValue(ext: VideoSDKRTC.MessageExtension) where F : VideoSDKRTC.ExtensionField +} +extension VideoSDKRTC.ExtensibleMessage { + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [T.BaseType]) where T : VideoSDKRTC.FieldType + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [T.BaseType]) where T : VideoSDKRTC.FieldType + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [E]) where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [E]) where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [M]) where M : Swift.Equatable, M : VideoSDKRTC.Message + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [M]) where M : Swift.Hashable, M : VideoSDKRTC.Message +} +public protocol AnyExtensionField { + func hash(into hasher: inout Swift.Hasher) + var protobufExtension: any VideoSDKRTC.AnyMessageExtension { get } + func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + mutating func decodeExtensionField(decoder: inout T) throws where T : VideoSDKRTC.SPBDecoder + func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + var isInitialized: Swift.Bool { get } +} +extension VideoSDKRTC.AnyExtensionField { + public var isInitialized: Swift.Bool { + get + } +} +public protocol ExtensionField : Swift.Hashable, VideoSDKRTC.AnyExtensionField { + associatedtype ValueType + var value: Self.ValueType { get set } + init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: Self.ValueType) + init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder +} +public struct OptionalExtensionField : VideoSDKRTC.ExtensionField where T : VideoSDKRTC.FieldType { + public typealias BaseType = T.BaseType + public typealias ValueType = VideoSDKRTC.OptionalExtensionField.BaseType + public var value: VideoSDKRTC.OptionalExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalExtensionField, rhs: VideoSDKRTC.OptionalExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedExtensionField : VideoSDKRTC.ExtensionField where T : VideoSDKRTC.FieldType { + public typealias BaseType = T.BaseType + public typealias ValueType = [VideoSDKRTC.RepeatedExtensionField.BaseType] + public var value: VideoSDKRTC.RepeatedExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedExtensionField, rhs: VideoSDKRTC.RepeatedExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct PackedExtensionField : VideoSDKRTC.ExtensionField where T : VideoSDKRTC.FieldType { + public typealias BaseType = T.BaseType + public typealias ValueType = [VideoSDKRTC.PackedExtensionField.BaseType] + public var value: VideoSDKRTC.PackedExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.PackedExtensionField, rhs: VideoSDKRTC.PackedExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.PackedExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct OptionalEnumExtensionField : VideoSDKRTC.ExtensionField where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int { + public typealias BaseType = E + public typealias ValueType = E + public var value: VideoSDKRTC.OptionalEnumExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalEnumExtensionField, rhs: VideoSDKRTC.OptionalEnumExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalEnumExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedEnumExtensionField : VideoSDKRTC.ExtensionField where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int { + public typealias BaseType = E + public typealias ValueType = [E] + public var value: VideoSDKRTC.RepeatedEnumExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedEnumExtensionField, rhs: VideoSDKRTC.RepeatedEnumExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedEnumExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct PackedEnumExtensionField : VideoSDKRTC.ExtensionField where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int { + public typealias BaseType = E + public typealias ValueType = [E] + public var value: VideoSDKRTC.PackedEnumExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.PackedEnumExtensionField, rhs: VideoSDKRTC.PackedEnumExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.PackedEnumExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct OptionalMessageExtensionField : VideoSDKRTC.ExtensionField where M : Swift.Equatable, M : VideoSDKRTC.Message { + public typealias BaseType = M + public typealias ValueType = VideoSDKRTC.OptionalMessageExtensionField.BaseType + public var value: VideoSDKRTC.OptionalMessageExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalMessageExtensionField, rhs: VideoSDKRTC.OptionalMessageExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalMessageExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedMessageExtensionField : VideoSDKRTC.ExtensionField where M : Swift.Equatable, M : VideoSDKRTC.Message { + public typealias BaseType = M + public typealias ValueType = [VideoSDKRTC.RepeatedMessageExtensionField.BaseType] + public var value: VideoSDKRTC.RepeatedMessageExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedMessageExtensionField, rhs: VideoSDKRTC.RepeatedMessageExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedMessageExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct OptionalGroupExtensionField : VideoSDKRTC.ExtensionField where G : Swift.Hashable, G : VideoSDKRTC.Message { + public typealias BaseType = G + public typealias ValueType = VideoSDKRTC.OptionalGroupExtensionField.BaseType + public var value: G + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalGroupExtensionField, rhs: VideoSDKRTC.OptionalGroupExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalGroupExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedGroupExtensionField : VideoSDKRTC.ExtensionField where G : Swift.Hashable, G : VideoSDKRTC.Message { + public typealias BaseType = G + public typealias ValueType = [VideoSDKRTC.RepeatedGroupExtensionField.BaseType] + public var value: VideoSDKRTC.RepeatedGroupExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedGroupExtensionField, rhs: VideoSDKRTC.RepeatedGroupExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedGroupExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct ExtensionFieldValueSet : Swift.Hashable { + public static func == (lhs: VideoSDKRTC.ExtensionFieldValueSet, rhs: VideoSDKRTC.ExtensionFieldValueSet) -> Swift.Bool + public init() + public func hash(into hasher: inout Swift.Hasher) + public func traverse(visitor: inout V, start: Swift.Int, end: Swift.Int) throws where V : VideoSDKRTC.Visitor + public subscript(index: Swift.Int) -> (any VideoSDKRTC.AnyExtensionField)? { + get + set + } + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public protocol ExtensionMap : Swift.Sendable { + subscript(messageType: any VideoSDKRTC.Message.Type, fieldNumber: Swift.Int) -> (any VideoSDKRTC.AnyMessageExtension)? { get } + func fieldNumberForProto(messageType: any VideoSDKRTC.Message.Type, protoFieldName: Swift.String) -> Swift.Int? +} +public struct Google_Protobuf_FieldMask { + public var paths: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_FieldMask : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldMask : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldMask, rhs: VideoSDKRTC.Google_Protobuf_FieldMask) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol FieldType { + associatedtype BaseType : Swift.Hashable + static var proto3DefaultValue: Self.BaseType { get } + static func decodeSingular(value: inout Self.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + static func decodeRepeated(value: inout [Self.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + static func visitSingular(value: Self.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + static func visitRepeated(value: [Self.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + static func visitPacked(value: [Self.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public protocol MapKeyType : VideoSDKRTC.FieldType { + static func _lessThan(lhs: Self.BaseType, rhs: Self.BaseType) -> Swift.Bool +} +extension VideoSDKRTC.MapKeyType where Self.BaseType : Swift.Comparable { + public static func _lessThan(lhs: Self.BaseType, rhs: Self.BaseType) -> Swift.Bool +} +public protocol MapValueType : VideoSDKRTC.FieldType { +} +public struct ProtobufFloat : VideoSDKRTC.FieldType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Float + public static var proto3DefaultValue: Swift.Float { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufFloat.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufFloat.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufFloat.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufFloat.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufFloat.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufDouble : VideoSDKRTC.FieldType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Double + public static var proto3DefaultValue: Swift.Double { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufDouble.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufDouble.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufDouble.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufDouble.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufDouble.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufInt32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int32 + public static var proto3DefaultValue: Swift.Int32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufInt32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufInt32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufInt32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufInt64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int64 + public static var proto3DefaultValue: Swift.Int64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufInt64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufInt64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufInt64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufUInt32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt32 + public static var proto3DefaultValue: Swift.UInt32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufUInt32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufUInt32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufUInt32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufUInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufUInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufUInt64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt64 + public static var proto3DefaultValue: Swift.UInt64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufUInt64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufUInt64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufUInt64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufUInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufUInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSInt32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int32 + public static var proto3DefaultValue: Swift.Int32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSInt32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSInt32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSInt32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSInt64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int64 + public static var proto3DefaultValue: Swift.Int64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSInt64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSInt64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSInt64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufFixed32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt32 + public static var proto3DefaultValue: Swift.UInt32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufFixed32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufFixed32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufFixed32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufFixed64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt64 + public static var proto3DefaultValue: Swift.UInt64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufFixed64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufFixed64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufFixed64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSFixed32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int32 + public static var proto3DefaultValue: Swift.Int32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSFixed32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSFixed32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSFixed32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSFixed64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int64 + public static var proto3DefaultValue: Swift.Int64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSFixed64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSFixed64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSFixed64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufBool : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Bool + public static var proto3DefaultValue: Swift.Bool { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufBool.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufBool.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufBool.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufBool.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufBool.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func _lessThan(lhs: VideoSDKRTC.ProtobufBool.BaseType, rhs: VideoSDKRTC.ProtobufBool.BaseType) -> Swift.Bool +} +public struct ProtobufString : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.String + public static var proto3DefaultValue: Swift.String { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufString.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufString.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufString.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufString.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufString.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufBytes : VideoSDKRTC.FieldType, VideoSDKRTC.MapValueType { + public typealias BaseType = Foundation.Data + public static var proto3DefaultValue: Foundation.Data { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufBytes.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufBytes.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufBytes.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufBytes.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufBytes.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +@_hasMissingDesignatedInitializers public class FilteredExemplarReservoir : VideoSDKRTC.ExemplarReservoir { + override public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + @objc deinit +} +public let defaultAnyTypeURLPrefix: Swift.String +extension VideoSDKRTC.Google_Protobuf_Any { + public init(message: any VideoSDKRTC.Message, partial: Swift.Bool = false, typePrefix: Swift.String = defaultAnyTypeURLPrefix) throws + public init(textFormatString: Swift.String, options: VideoSDKRTC.TextFormatDecodingOptions = TextFormatDecodingOptions(), extensions: (any VideoSDKRTC.ExtensionMap)? = nil) throws + public func isA(_ type: M.Type) -> Swift.Bool where M : VideoSDKRTC.Message + public func hash(into hasher: inout Swift.Hasher) +} +extension VideoSDKRTC.Google_Protobuf_Any { + @discardableResult + public static func register(messageType: any VideoSDKRTC.Message.Type) -> Swift.Bool + public static func messageType(forTypeURL url: Swift.String) -> (any VideoSDKRTC.Message.Type)? + public static func messageType(forMessageName name: Swift.String) -> (any VideoSDKRTC.Message.Type)? +} +extension VideoSDKRTC.Google_Protobuf_Duration { + public init(seconds: Swift.Int64 = 0, nanos: Swift.Int32 = 0) +} +extension VideoSDKRTC.Google_Protobuf_Duration : Swift.ExpressibleByFloatLiteral { + public typealias FloatLiteralType = Swift.Double + public init(floatLiteral value: Swift.Double) +} +extension VideoSDKRTC.Google_Protobuf_Duration { + public init(timeInterval: Foundation.TimeInterval) + public var timeInterval: Foundation.TimeInterval { + get + } +} +prefix public func - (operand: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Duration +public func + (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Duration +public func - (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Duration +public func - (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Timestamp) -> VideoSDKRTC.Google_Protobuf_Duration +extension VideoSDKRTC.Google_Protobuf_FieldMask { + public init(protoPaths: [Swift.String]) + public init(protoPaths: Swift.String...) + public init?(jsonPaths: Swift.String...) +} +extension VideoSDKRTC.Google_Protobuf_ListValue : Swift.ExpressibleByArrayLiteral { + public typealias Element = VideoSDKRTC.Google_Protobuf_Value + public init(arrayLiteral elements: VideoSDKRTC.Google_Protobuf_ListValue.Element...) + public typealias ArrayLiteralElement = VideoSDKRTC.Google_Protobuf_ListValue.Element +} +extension VideoSDKRTC.Google_Protobuf_ListValue { + public init(values: [VideoSDKRTC.Google_Protobuf_Value]) + public subscript(index: Swift.Int) -> VideoSDKRTC.Google_Protobuf_Value { + get + set(newValue) + } +} +extension VideoSDKRTC.Google_Protobuf_Struct : Swift.ExpressibleByDictionaryLiteral { + public typealias Key = Swift.String + public typealias Value = VideoSDKRTC.Google_Protobuf_Value + public init(dictionaryLiteral: (Swift.String, VideoSDKRTC.Google_Protobuf_Value)...) +} +extension VideoSDKRTC.Google_Protobuf_Struct { + public init(fields: [Swift.String : VideoSDKRTC.Google_Protobuf_Value]) + public subscript(key: Swift.String) -> VideoSDKRTC.Google_Protobuf_Value? { + get + set(newValue) + } +} +extension VideoSDKRTC.Google_Protobuf_Timestamp { + public init(seconds: Swift.Int64 = 0, nanos: Swift.Int32 = 0) +} +extension VideoSDKRTC.Google_Protobuf_Timestamp { + public init(timeIntervalSince1970: Foundation.TimeInterval) + public init(timeIntervalSinceReferenceDate: Foundation.TimeInterval) + public init(date: Foundation.Date) + public var timeIntervalSince1970: Foundation.TimeInterval { + get + } + public var timeIntervalSinceReferenceDate: Foundation.TimeInterval { + get + } + public var date: Foundation.Date { + get + } +} +public func + (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Timestamp +public func + (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Timestamp) -> VideoSDKRTC.Google_Protobuf_Timestamp +public func - (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Timestamp +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByIntegerLiteral { + public typealias IntegerLiteralType = Swift.Int64 + public init(integerLiteral value: Swift.Int64) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByFloatLiteral { + public typealias FloatLiteralType = Swift.Double + public init(floatLiteral value: Swift.Double) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByBooleanLiteral { + public typealias BooleanLiteralType = Swift.Bool + public init(booleanLiteral value: Swift.Bool) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByStringLiteral { + public typealias StringLiteralType = Swift.String + public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias UnicodeScalarLiteralType = Swift.String + public init(stringLiteral value: Swift.String) + public init(unicodeScalarLiteral value: Swift.String) + public init(extendedGraphemeClusterLiteral value: Swift.String) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByNilLiteral { + public init(nilLiteral: ()) +} +extension VideoSDKRTC.Google_Protobuf_Value { + public init(numberValue: Swift.Double) + public init(stringValue: Swift.String) + public init(boolValue: Swift.Bool) + public init(structValue: VideoSDKRTC.Google_Protobuf_Struct) + public init(listValue: VideoSDKRTC.Google_Protobuf_ListValue) +} +extension VideoSDKRTC.Google_Protobuf_DoubleValue : Swift.ExpressibleByFloatLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufDouble + public typealias FloatLiteralType = VideoSDKRTC.Google_Protobuf_DoubleValue.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_DoubleValue.WrappedType.BaseType) + public init(floatLiteral: VideoSDKRTC.Google_Protobuf_DoubleValue.FloatLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_FloatValue : Swift.ExpressibleByFloatLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufFloat + public typealias FloatLiteralType = Swift.Float + public init(_ value: VideoSDKRTC.Google_Protobuf_FloatValue.WrappedType.BaseType) + public init(floatLiteral: VideoSDKRTC.Google_Protobuf_FloatValue.FloatLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_Int64Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufInt64 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_Int64Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_Int64Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_Int64Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_UInt64Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufUInt64 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_UInt64Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_UInt64Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_UInt64Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_Int32Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufInt32 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_Int32Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_Int32Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_Int32Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_UInt32Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufUInt32 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_UInt32Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_UInt32Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_UInt32Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_BoolValue : Swift.ExpressibleByBooleanLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufBool + public typealias BooleanLiteralType = Swift.Bool + public init(_ value: VideoSDKRTC.Google_Protobuf_BoolValue.WrappedType.BaseType) + public init(booleanLiteral: Swift.Bool) +} +extension VideoSDKRTC.Google_Protobuf_StringValue : Swift.ExpressibleByStringLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufString + public typealias StringLiteralType = Swift.String + public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias UnicodeScalarLiteralType = Swift.String + public init(_ value: VideoSDKRTC.Google_Protobuf_StringValue.WrappedType.BaseType) + public init(stringLiteral: Swift.String) + public init(extendedGraphemeClusterLiteral: Swift.String) + public init(unicodeScalarLiteral: Swift.String) +} +extension VideoSDKRTC.Google_Protobuf_BytesValue { + public typealias WrappedType = VideoSDKRTC.ProtobufBytes + public init(_ value: VideoSDKRTC.Google_Protobuf_BytesValue.WrappedType.BaseType) +} +public struct Headers { + public static func getUserAgentHeader() -> Swift.String +} +@_hasMissingDesignatedInitializers public class HistogramAggregator : VideoSDKRTC.Aggregator where T : Swift.Comparable, T : Swift.SignedNumeric { + public init(explicitBoundaries: Swift.Array? = nil) throws + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +@_hasMissingDesignatedInitializers public class HistogramExemplarReservoir : VideoSDKRTC.FixedSizedExemplarReservoir { + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public protocol HistogramMetric { + associatedtype T + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundHistogramMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundHistogramMetric +} +extension VideoSDKRTC.HistogramMetric { + public func record(value: Self.T, labelset: VideoSDKRTC.LabelSet) + public func record(value: Self.T, labels: [Swift.String : Swift.String]) +} +public struct AnyHistogramMetric : VideoSDKRTC.HistogramMetric { + public init(_ histogram: U) where T == U.T, U : VideoSDKRTC.HistogramMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundHistogramMetric +} +public struct NoopHistogramMetric : VideoSDKRTC.HistogramMetric { + public init() + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundHistogramMetric +} +@_hasMissingDesignatedInitializers public class HistogramPointData : VideoSDKRTC.PointData { + public var sum: Swift.Double + public var count: Swift.UInt64 + public var min: Swift.Double + public var max: Swift.Double + public var boundaries: [Swift.Double] + public var counts: [Swift.Int] + public var hasMin: Swift.Bool + public var hasMax: Swift.Bool + @objc deinit +} +public class HLSConfig { + public var layout: VideoSDKRTC.ConfigLayout + public var theme: VideoSDKRTC.ConfigTheme + public var mode: VideoSDKRTC.ConfigMode + public var quality: VideoSDKRTC.ConfigQuality + public var orientation: VideoSDKRTC.ConfigOrientation + public init(layout: VideoSDKRTC.ConfigLayout, theme: VideoSDKRTC.ConfigTheme, mode: VideoSDKRTC.ConfigMode, quality: VideoSDKRTC.ConfigQuality, orientation: VideoSDKRTC.ConfigOrientation) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public class RecordingConfig { + public var layout: VideoSDKRTC.ConfigLayout + public var theme: VideoSDKRTC.ConfigTheme + public var mode: VideoSDKRTC.ConfigMode + public var quality: VideoSDKRTC.ConfigQuality + public var orientation: VideoSDKRTC.ConfigOrientation + public init(layout: VideoSDKRTC.ConfigLayout, theme: VideoSDKRTC.ConfigTheme, mode: VideoSDKRTC.ConfigMode, quality: VideoSDKRTC.ConfigQuality, orientation: VideoSDKRTC.ConfigOrientation) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public class HLSUrl { + public var downstreamUrl: Swift.String + public var playbackHlsUrl: Swift.String + public var livestreamUrl: Swift.String + public init(downstreamUrl: Swift.String? = nil, playbackHlsUrl: Swift.String? = nil, livestreamUrl: Swift.String? = nil) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public class ConfigLayout { + public var type: VideoSDKRTC.ConfigLayoutGrid + public var priority: VideoSDKRTC.ConfigLayoutPriority + public var gridSize: Swift.Int + public init(type: VideoSDKRTC.ConfigLayoutGrid, priority: VideoSDKRTC.ConfigLayoutPriority, gridSize: Swift.Int) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public enum ConfigLayoutPriority : Swift.String { + case SPEAKER, PIN + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigLayoutGrid : Swift.String { + case GRID, SPOTLIGHT, SIDEBAR + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigTheme : Swift.String { + case DEFAULT, LIGHT, DARK + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigMode : Swift.String { + case video_and_audio, audio + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigQuality : Swift.String { + case high, med, low + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigOrientation : Swift.String { + case landscape, portrait + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public protocol IdGenerator { + func generateSpanId() -> VideoSDKRTC.SpanId + func generateTraceId() -> VideoSDKRTC.TraceId +} +@_hasMissingDesignatedInitializers public class InMemoryLogRecordExporter : VideoSDKRTC.LogRecordExporter { + public func getFinishedLogRecords() -> [VideoSDKRTC.ReadableLogRecord] + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func shutdown() + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public protocol Instrument : Swift.Equatable { + var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor { get } +} +extension VideoSDKRTC.Instrument { + public static func == (lhs: Self, rhs: Self) -> Swift.Bool +} +public struct InstrumentationScopeInfo : Swift.Hashable, Swift.Codable, Swift.Equatable { + public var name: Swift.String { + get + } + public var version: Swift.String? { + get + } + public var schemaUrl: Swift.String? { + get + } + public init() + public init(name: Swift.String, version: Swift.String? = nil, schemaUrl: Swift.String? = nil) + public func hash(into hasher: inout Swift.Hasher) + public static func == (a: VideoSDKRTC.InstrumentationScopeInfo, b: VideoSDKRTC.InstrumentationScopeInfo) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public struct InstrumentDescriptor : Swift.Equatable { + public let name: Swift.String + public let description: Swift.String + public let unit: Swift.String + public let type: VideoSDKRTC.InstrumentType + public let valueType: VideoSDKRTC.InstrumentValueType + public init(name: Swift.String, description: Swift.String, unit: Swift.String, type: VideoSDKRTC.InstrumentType, valueType: VideoSDKRTC.InstrumentValueType) + public static func == (lhs: VideoSDKRTC.InstrumentDescriptor, rhs: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class InstrumentSelector { + public static func builder() -> VideoSDKRTC.InstrumentSelectorBuilder + @objc deinit +} +public class InstrumentSelectorBuilder { + public init() + public func setInstrument(type: VideoSDKRTC.InstrumentType) -> Self + public func setInstrument(name: Swift.String) -> Self + public func setMeter(name: Swift.String) -> Self + public func setMeter(version: Swift.String) -> Self + public func setMeter(schemaUrl: Swift.String) -> Self + public func build() -> VideoSDKRTC.InstrumentSelector + @objc deinit +} +public enum InstrumentType : Swift.CaseIterable { + case counter + case upDownCounter + case histogram + case observableCounter + case observableUpDownCounter + case observableGauge + public static func == (a: VideoSDKRTC.InstrumentType, b: VideoSDKRTC.InstrumentType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public typealias AllCases = [VideoSDKRTC.InstrumentType] + public static var allCases: [VideoSDKRTC.InstrumentType] { + get + } + public var hashValue: Swift.Int { + get + } +} +public enum InstrumentValueType { + case long + case double + public static func == (a: VideoSDKRTC.InstrumentValueType, b: VideoSDKRTC.InstrumentValueType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public enum Internal { + public static let emptyData: Foundation.Data + public static func areAllInitialized(_ listOfMessages: [any VideoSDKRTC.Message]) -> Swift.Bool + public static func areAllInitialized(_ mapToMessages: [K : any VideoSDKRTC.Message]) -> Swift.Bool where K : Swift.Hashable +} +public protocol IntObserverMetric { + func observe(value: Swift.Int, labelset: VideoSDKRTC.LabelSet) + func observe(value: Swift.Int, labels: [Swift.String : Swift.String]) +} +public struct NoopIntObserverMetric : VideoSDKRTC.IntObserverMetric { + public init() + public func observe(value: Swift.Int, labelset: VideoSDKRTC.LabelSet) + public func observe(value: Swift.Int, labels: [Swift.String : Swift.String]) +} +extension Foundation.Data { + public func toJSONString() -> Swift.String + public func toJSON() -> [Swift.String : Any] + public func toJSONArray() -> [Any] +} +extension Swift.String { + public func toJSON() -> [Swift.String : Any] +} +extension Swift.Dictionary { + public func toJSONString() -> Swift.String +} +extension Swift.Array { + public func toJSONString() -> Swift.String +} +extension Swift.Encodable { + public func toJSON() -> [Swift.String : Any] + public func toJSONArray() -> [Any] +} +public enum JSONDecodingError : Swift.Error { + case failure + case malformedNumber + case numberRange + case malformedMap + case malformedBool + case malformedString + case invalidUTF8 + case missingFieldNames + case schemaMismatch + case unrecognizedEnumValue + case illegalNull + case unquotedMapKey + case leadingZero + case truncated + case malformedDuration + case malformedTimestamp + case malformedFieldMask + case trailingGarbage + case conflictingOneOf + case messageDepthLimit + case unknownField(Swift.String) +} +public struct JSONDecodingOptions : Swift.Sendable { + public var messageDepthLimit: Swift.Int + public var ignoreUnknownFields: Swift.Bool + public init() +} +public enum JSONEncodingError : Swift.Error { + case anyTranscodeFailure + case timestampRange + case durationRange + case fieldMaskConversion + case missingFieldNames + case missingValue + case valueNumberNotFinite + public static func == (a: VideoSDKRTC.JSONEncodingError, b: VideoSDKRTC.JSONEncodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct JSONEncodingOptions : Swift.Sendable { + public var alwaysPrintInt64sAsNumbers: Swift.Bool + public var alwaysPrintEnumsAsInts: Swift.Bool + public var preserveProtoFieldNames: Swift.Bool + public init() +} +@_hasMissingDesignatedInitializers open class LabelSet : Swift.Hashable { + public var labels: [Swift.String : Swift.String] { + get + } + public static var empty: VideoSDKRTC.LabelSet + required public init(labels: [Swift.String : Swift.String]) + public static func == (lhs: VideoSDKRTC.LabelSet, rhs: VideoSDKRTC.LabelSet) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + @objc deinit + open var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class LastValueAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.LastValueAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class LastValueAggregator : VideoSDKRTC.Aggregator where T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public struct LivestreamOutput : Swift.Codable { + public let url: Swift.String + public let streamKey: Swift.String + public init(url: Swift.String, streamKey: Swift.String) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public protocol Logger { + func eventBuilder(name: Swift.String) -> any VideoSDKRTC.EventBuilder + func logRecordBuilder() -> any VideoSDKRTC.LogRecordBuilder +} +public protocol LoggerBuilder { + func setEventDomain(_ eventDomain: Swift.String) -> Self + func setSchemaUrl(_ schemaUrl: Swift.String) -> Self + func setInstrumentationVersion(_ instrumentationVersion: Swift.String) -> Self + func setIncludeTraceContext(_ includeTraceContext: Swift.Bool) -> Self + func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + func build() -> any VideoSDKRTC.Logger +} +@_hasMissingDesignatedInitializers public class LoggerBuilderSdk : VideoSDKRTC.LoggerBuilder { + public func setEventDomain(_ eventDomain: Swift.String) -> Self + public func setSchemaUrl(_ schemaUrl: Swift.String) -> Self + public func setInstrumentationVersion(_ instrumentationVersion: Swift.String) -> Self + public func setIncludeTraceContext(_ includeTraceContext: Swift.Bool) -> Self + public func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + public func build() -> any VideoSDKRTC.Logger + @objc deinit +} +public protocol LoggerProvider : AnyObject { + func get(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.Logger + func loggerBuilder(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.LoggerBuilder +} +public class LoggerProviderBuilder { + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var logLimits: VideoSDKRTC.LogLimits { + get + } + public var logProcessors: [any VideoSDKRTC.LogRecordProcessor] { + get + } + public init() + public func with(clock: any VideoSDKRTC.Clock) -> Self + public func with(resource: VideoSDKRTC.Resource) -> Self + public func with(logLimits: VideoSDKRTC.LogLimits) -> Self + public func with(processors: [any VideoSDKRTC.LogRecordProcessor]) -> Self + public func build() -> VideoSDKRTC.LoggerProviderSdk + @objc deinit +} +public class LoggerProviderSdk : VideoSDKRTC.LoggerProvider { + public init(clock: any VideoSDKRTC.Clock = MillisClock(), resource: VideoSDKRTC.Resource = EnvVarResource.get(), logLimits: VideoSDKRTC.LogLimits = LogLimits(), logRecordProcessors: [any VideoSDKRTC.LogRecordProcessor] = []) + public func get(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.Logger + public func loggerBuilder(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.LoggerBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class LoggerSdk : VideoSDKRTC.Logger { + public func eventBuilder(name: Swift.String) -> any VideoSDKRTC.EventBuilder + public func logRecordBuilder() -> any VideoSDKRTC.LogRecordBuilder + @objc deinit +} +public struct LogLimits { + public static let defaultMaxAttributeCount: Swift.Int + public static let defaultMaxAtributeLength: Swift.Int + public let maxAttributeCount: Swift.Int + public let maxAttributeLength: Swift.Int + public init(maxAttributeCount: Swift.Int = Self.defaultMaxAttributeCount, maxAttributeLength: Swift.Int = Self.defaultMaxAtributeLength) +} +@_hasMissingDesignatedInitializers public class LogRecordAdapter { + public static func toProtoResourceRecordLog(logRecordList: [VideoSDKRTC.ReadableLogRecord]) -> [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs] + @objc deinit +} +public protocol LogRecordBuilder { + func setTimestamp(_ timestamp: Foundation.Date) -> Self + func setObservedTimestamp(_ observed: Foundation.Date) -> Self + func setSpanContext(_ context: VideoSDKRTC.SpanContext) -> Self + func setSeverity(_ severity: VideoSDKRTC.Severity) -> Self + func setBody(_ body: Swift.String) -> Self + func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + func emit() +} +@_hasMissingDesignatedInitializers public class LogRecordBuilderSdk : VideoSDKRTC.EventBuilder { + public func setTimestamp(_ timestamp: Foundation.Date) -> Self + public func setObservedTimestamp(_ observed: Foundation.Date) -> Self + public func setSpanContext(_ context: VideoSDKRTC.SpanContext) -> Self + public func setSeverity(_ severity: VideoSDKRTC.Severity) -> Self + public func setBody(_ body: Swift.String) -> Self + public func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + public func setData(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + public func emit() + @objc deinit +} +public protocol LogRecordExporter { + func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + func shutdown() + func forceFlush() -> VideoSDKRTC.ExportResult +} +public protocol LogRecordProcessor { + func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + func forceFlush() -> VideoSDKRTC.ExportResult + func shutdown() -> VideoSDKRTC.ExportResult +} +public enum Opentelemetry_Proto_Logs_V1_SeverityNumber : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unspecified + case trace + case trace2 + case trace3 + case trace4 + case debug + case debug2 + case debug3 + case debug4 + case info + case info2 + case info3 + case info4 + case warn + case warn2 + case warn3 + case warn4 + case error + case error2 + case error3 + case error4 + case fatal + case fatal2 + case fatal3 + case fatal4 + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber] +} +public enum Opentelemetry_Proto_Logs_V1_LogRecordFlags : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case doNotUse + case traceFlagsMask + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags] +} +public struct Opentelemetry_Proto_Logs_V1_LogsData { + public var resourceLogs: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Logs_V1_ResourceLogs { + public var resource: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource { + get + set + } + public var hasResource: Swift.Bool { + get + } + public mutating func clearResource() + public var scopeLogs: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Logs_V1_ScopeLogs { + public var scope: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope { + get + set + } + public var hasScope: Swift.Bool { + get + } + public mutating func clearScope() + public var logRecords: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Logs_V1_LogRecord { + public var timeUnixNano: Swift.UInt64 + public var observedTimeUnixNano: Swift.UInt64 + public var severityNumber: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber + public var severityText: Swift.String + public var body: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue { + get + set + } + public var hasBody: Swift.Bool { + get + } + public mutating func clearBody() + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var flags: Swift.UInt32 + public var traceID: Foundation.Data + public var spanID: Foundation.Data + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest { + public var resourceLogs: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse { + public var partialSuccess: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess { + get + set + } + public var hasPartialSuccess: Swift.Bool { + get + } + public mutating func clearPartialSuccess() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess { + public var rejectedLogRecords: Swift.Int64 + public var errorMessage: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol LongCounter { + mutating func add(value: Swift.Int) + mutating func add(value: Swift.Int, attribute: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongCounterBuilder : AnyObject { + func ofDoubles() -> any VideoSDKRTC.DoubleCounterBuilder + func build() -> any VideoSDKRTC.LongCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongCounter +} +@_hasMissingDesignatedInitializers public class LongCounterMeterBuilderSdk : VideoSDKRTC.LongCounterBuilder { + public func ofDoubles() -> any VideoSDKRTC.DoubleCounterBuilder + public func build() -> any VideoSDKRTC.LongCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongCounter + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongCounterSdk : VideoSDKRTC.LongCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public func add(value: Swift.Int) + public func add(value: Swift.Int, attribute: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public struct DoubleCounterSdk : VideoSDKRTC.DoubleCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public mutating func add(value: Swift.Double) + public mutating func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongGaugeBuilder : AnyObject { + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongGauge +} +@_hasMissingDesignatedInitializers public class LongGaugeBuilderSdk : VideoSDKRTC.LongGaugeBuilder { + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongGauge + @objc deinit +} +public protocol LongHistogram { + mutating func record(value: Swift.Int) + mutating func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongHistogramBuilder : AnyObject { + func build() -> any VideoSDKRTC.LongHistogram +} +@_hasMissingDesignatedInitializers public class LongHistogramMeterBuilderSdk : VideoSDKRTC.LongHistogramBuilder { + public func build() -> any VideoSDKRTC.LongHistogram + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongHistogramMeterSdk : VideoSDKRTC.LongHistogram, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public func record(value: Swift.Int) + public func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongLastValueAggregator : VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongPointData : VideoSDKRTC.PointData { + public var value: Swift.Int + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongSumAggregator : VideoSDKRTC.SumAggregator, VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol LongUpDownCounter { + mutating func add(value: Swift.Int) + mutating func add(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongUpDownCounterBuilder : AnyObject { + func ofDoubles() -> any VideoSDKRTC.DoubleUpDownCounterBuilder + func build() -> any VideoSDKRTC.LongUpDownCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongUpDownCounter +} +@_hasMissingDesignatedInitializers public class LongUpDownCounterBuilderSdk : VideoSDKRTC.LongUpDownCounterBuilder { + public func ofDoubles() -> any VideoSDKRTC.DoubleUpDownCounterBuilder + public func build() -> any VideoSDKRTC.LongUpDownCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongUpDownCounter + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongUpDownCounterSdk : VideoSDKRTC.LongUpDownCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor { + get + } + public func add(value: Swift.Int) + public func add(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class MaxValueAggregator : VideoSDKRTC.Aggregator where T : Swift.Comparable, T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public struct Measurement { + public var startEpochNano: Swift.UInt64 { + get + } + public var epochNano: Swift.UInt64 { + get + } + public var hasLongValue: Swift.Bool { + get + } + public var longValue: Swift.Int { + get + } + public var doubleValue: Swift.Double { + get + } + public var hasDoubleValue: Swift.Bool { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public static func longMeasurement(startEpochNano: Swift.UInt64, endEpochNano: Swift.UInt64, value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.Measurement + public static func doubleMeasurement(startEpochNano: Swift.UInt64, endEpochNano: Swift.UInt64, value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.Measurement +} +public protocol MeasureMetric { + associatedtype T + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundMeasureMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundMeasureMetric +} +extension VideoSDKRTC.MeasureMetric { + public func record(value: Self.T, labelset: VideoSDKRTC.LabelSet) + public func record(value: Self.T, labels: [Swift.String : Swift.String]) +} +public struct AnyMeasureMetric : VideoSDKRTC.MeasureMetric { + public init(_ measurable: U) where T == U.T, U : VideoSDKRTC.MeasureMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundMeasureMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundMeasureMetric +} +public struct NoopMeasureMetric : VideoSDKRTC.MeasureMetric { + public init() + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundMeasureMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundMeasureMetric +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class MeasureMinMaxSumCountAggregator : VideoSDKRTC.Aggregator where T : Swift.Comparable, T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public enum authorisationStatus { + case notDetermined + case authorised + case denied + case restricted + public static func == (a: VideoSDKRTC.authorisationStatus, b: VideoSDKRTC.authorisationStatus) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public protocol AuthorisationDelegate : AnyObject { + func handlePermission() +} +@_hasMissingDesignatedInitializers public class MediaStream : Swift.Equatable { + public var id: Swift.String { + get + } + public var kind: VideoSDKRTC.MediaType { + get + } + public var track: WebRTC.RTCMediaStreamTrack { + get + } + public var producer: Mediasoup.Producer? { + get + } + public var consumer: Mediasoup.Consumer? { + get + } + @objc deinit +} +extension VideoSDKRTC.MediaStream { + public func pause() + public func resume() +} +extension VideoSDKRTC.MediaStream { + public static func == (lhs: VideoSDKRTC.MediaStream, rhs: VideoSDKRTC.MediaStream) -> Swift.Bool +} +public enum MediaType : Swift.Equatable { + case share + case state(value: Mediasoup.MediaKind) + public static func == (a: VideoSDKRTC.MediaType, b: VideoSDKRTC.MediaType) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class Meeting : Swift.Equatable { + public var id: Swift.String { + get + } + public var localParticipant: VideoSDKRTC.Participant { + get + } + public var participants: [Swift.String : VideoSDKRTC.Participant] { + get + } + public var pinnedParticipants: [Swift.String : VideoSDKRTC.ParticipantPinState] { + get + } + public var hlsUrls: VideoSDKRTC.HLSUrl? + public var hlsState: VideoSDKRTC.HLSState + public var liveStreamState: VideoSDKRTC.LiveStreamState + public var recordingState: VideoSDKRTC.RecordingState + public var pubsub: VideoSDKRTC.PubSub { + get + } + public var customVideoMediaStream: VideoSDKRTC.CustomRTCMediaStream? { + get + } + public var meetingMode: VideoSDKRTC.Mode? { + get + } + @objc deinit +} +extension VideoSDKRTC.Meeting { + public func join(cameraPosition: AVFoundation.AVCaptureDevice.Position) + public func leave() + public func end() + public func enableWebcam(customVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil) + public func disableWebcam() + public func switchWebcam() + public func muteMic() + public func unmuteMic() + public func startRecording(webhookUrl: Swift.String, awsDirPath: Swift.String? = nil, config: VideoSDKRTC.RecordingConfig? = nil) + public func stopRecording() + public func startLivestream(outputs: [VideoSDKRTC.LivestreamOutput]) + public func stopLivestream() + public func startHLS(config: VideoSDKRTC.HLSConfig? = nil) + public func stopHLS() + public func changeMode(_ mode: VideoSDKRTC.Mode) + #if compiler(>=5.3) && $AsyncAwait + @available(iOS 13.0.0, *) + public func enableScreenShare() async + #endif + #if compiler(>=5.3) && $AsyncAwait + @available(iOS 13.0.0, *) + public func disableScreenShare() async + #endif + public func changeMic(selectedDevice: Swift.String) + public func getMics() -> [(deviceName: Swift.String, deviceType: Swift.String)] + public func removeOberver() +} +extension VideoSDKRTC.Meeting { + public func addEventListener(_ meetingEventListener: any VideoSDKRTC.MeetingEventListener) + public func removeEventListener(_ meetingEventListener: any VideoSDKRTC.MeetingEventListener) +} +extension VideoSDKRTC.Meeting { + public static func == (lhs: VideoSDKRTC.Meeting, rhs: VideoSDKRTC.Meeting) -> Swift.Bool +} +public protocol MeetingEventListener : AnyObject { + func onMeetingJoined() + func onMeetingLeft() + func onParticipantJoined(_ participant: VideoSDKRTC.Participant) + func onParticipantLeft(_ participant: VideoSDKRTC.Participant) + func onRecordingStarted() + func onRecordingStoppped() + func onLivestreamStarted() + func onLivestreamStopped() + func onSpeakerChanged(participantId: Swift.String?) + func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + func onSocketError(message: Swift.String) + func onMeetingStateChanged(meetingState: VideoSDKRTC.MeetingState) + func onError(error: VideoSDKRTC.VideoSDKError) + func onHlsStateChanged(state: VideoSDKRTC.HLSState, hlsUrl: VideoSDKRTC.HLSUrl?) + func onLivestreamStateChanged(state: VideoSDKRTC.LiveStreamState) + func onRecordingStateChanged(state: VideoSDKRTC.RecordingState) + func onPinStateChanged(participantId: Swift.String, pinType: VideoSDKRTC.PinType) + func onParticipantModeChanged(participantId: Swift.String, mode: VideoSDKRTC.Mode) + func onMicChanged(selectedDevice: Swift.String) +} +extension VideoSDKRTC.MeetingEventListener { + public func onMeetingJoined() + public func onMeetingLeft() + public func onParticipantJoined(_ participant: VideoSDKRTC.Participant) + public func onParticipantLeft(_ participant: VideoSDKRTC.Participant) + public func onRecordingStarted() + public func onRecordingStoppped() + public func onLivestreamStarted() + public func onLivestreamStopped() + public func onSpeakerChanged(participantId: Swift.String?) + public func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + public func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + public func onSocketError(message: Swift.String) + public func onMeetingStateChanged(meetingState: VideoSDKRTC.MeetingState) + public func onError(error: VideoSDKRTC.VideoSDKError) + public func onHlsStateChanged(state: VideoSDKRTC.HLSState, hlsUrl: VideoSDKRTC.HLSUrl?) + public func onLivestreamStateChanged(state: VideoSDKRTC.LiveStreamState) + public func onRecordingStateChanged(state: VideoSDKRTC.RecordingState) + public func onPinStateChanged(participantId: Swift.String, pinType: VideoSDKRTC.PinType) + public func onParticipantModeChanged(participantId: Swift.String, mode: VideoSDKRTC.Mode) + public func onMicChanged(selectedDevice: Swift.String) +} +public enum MeetingState : Swift.String { + case CONNECTING, CONNECTED, CLOSING, CLOSED, CANCELLED + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum Mode : Swift.String { + case CONFERENCE, VIEWER + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum VideoSDKError : Swift.Int { + case UNKNOWN_ERROR + case INVALID_API_KEY + case INVALID_TOKEN + case INVALID_MEETING_ID + case INVALID_PARTICIPANT_ID + case DUPLICATE_PARTICIPANT + case ACCOUNT_DEACTIVATED + case ACCOUNT_DISCONTINUED + case INVALID_PERMISSIONS + case MAX_PARTCIPANT_REACHED + case MAX_SPEAKER_REACHED + case START_RECORDING_FAILED + case STOP_RECORDING_FAILED + case START_LIVESTREAM_FAILED + case STOP_LIVESTREAM_FAILED + case INVALID_LIVESTREAM_CONFIG + case START_HLS_FAILED + case STOP_HLS_FAILED + case RECORDING_FAILED + case LIVESTREAM_FAILED + case HLS_FAILED + case ERROR_GET_VIDEO_MEDIA + case ERROR_GET_AUDIO_MEDIA + case ERROR_GET_DISPLAY_MEDIA + case ERROR_GET_VIDEO_MEDIA_PERMISSION_DENIED + case ERROR_GET_AUDIO_MEDIA_PERMISSION_DENIED + case ERROR_GET_DISPLAY_MEDIA_PERMISSION_DENIED + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public enum HLSState : Swift.String { + case HLS_STARTED, HLS_STARTING, HLS_STOPPED, HLS_STOPPING, HLS_PLAYABLE + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum RecordingState : Swift.String { + case RECORDING_STARTED, RECORDING_STARTING, RECORDING_STOPPED, RECORDING_STOPPING + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum LiveStreamState : Swift.String { + case LIVESTREAM_STARTED, LIVESTREAM_STARTING, LIVESTREAM_STOPPED, LIVESTREAM_STOPPING + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public protocol Message : VideoSDKRTC._MessageBase { + init() + static var protoMessageName: Swift.String { get } + var isInitialized: Swift.Bool { get } + var unknownFields: VideoSDKRTC.UnknownStorage { get set } + mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + func hash(into hasher: inout Swift.Hasher) + func isEqualTo(message: any VideoSDKRTC.Message) -> Swift.Bool +} +public protocol _MessageBase : Swift.Sendable { +} +extension VideoSDKRTC.Message { + public var isInitialized: Swift.Bool { + get + } + public func hash(into hasher: inout Swift.Hasher) + public static func with(_ populator: (inout Self) throws -> ()) rethrows -> Self +} +public protocol _MessageImplementationBase : Swift.Hashable, VideoSDKRTC.Message { + func _protobuf_generated_isEqualTo(other: Self) -> Swift.Bool +} +extension VideoSDKRTC._MessageImplementationBase { + public func isEqualTo(message: any VideoSDKRTC.Message) -> Swift.Bool + public static func == (lhs: Self, rhs: Self) -> Swift.Bool + public func _protobuf_generated_isEqualTo(other: Self) -> Swift.Bool +} +extension VideoSDKRTC.Message { + public init(unpackingAny: VideoSDKRTC.Google_Protobuf_Any, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws +} +extension VideoSDKRTC.Message { + public func serializedBytes(partial: Swift.Bool = false) throws -> Bytes where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + @inlinable public init(serializedBytes bytes: Bytes, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes { + self.init() + try merge(serializedBytes: bytes, extensions: extensions, partial: partial, options: options) + } + @inlinable public mutating func merge(serializedBytes bytes: Bytes, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes { + try bytes.withUnsafeBytes { (body: UnsafeRawBufferPointer) in + try _merge(rawBuffer: body, extensions: extensions, partial: partial, options: options) + } + } + @usableFromInline + internal mutating func _merge(rawBuffer body: Swift.UnsafeRawBufferPointer, extensions: (any VideoSDKRTC.ExtensionMap)?, partial: Swift.Bool, options: VideoSDKRTC.BinaryDecodingOptions) throws +} +extension VideoSDKRTC.Message { + @inlinable public init(serializedData data: Foundation.Data, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws { + self.init() + try merge(serializedBytes: data, extensions: extensions, partial: partial, options: options) + } + @inlinable public mutating func merge(serializedData data: Foundation.Data, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws { + try merge(serializedBytes: data, extensions: extensions, partial: partial, options: options) + } + public func serializedData(partial: Swift.Bool = false) throws -> Foundation.Data +} +extension VideoSDKRTC.Message { + public func jsonString(options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Swift.String + public func jsonUTF8Bytes(options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Bytes where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public init(jsonString: Swift.String, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public init(jsonString: Swift.String, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public init(jsonUTF8Bytes: Bytes, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public init(jsonUTF8Bytes: Bytes, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes +} +extension VideoSDKRTC.Message { + public init(jsonUTF8Data: Foundation.Data, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public init(jsonUTF8Data: Foundation.Data, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public func jsonUTF8Data(options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Foundation.Data +} +extension VideoSDKRTC.Message { + public static func jsonString(from collection: C, options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Swift.String where Self == C.Element, C : Swift.Collection + public static func jsonUTF8Bytes(from collection: C, options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Bytes where Self == C.Element, C : Swift.Collection, Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public static func array(fromJSONString jsonString: Swift.String, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func array(fromJSONString jsonString: Swift.String, extensions: any VideoSDKRTC.ExtensionMap = SimpleExtensionMap(), options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func array(fromJSONUTF8Bytes jsonUTF8Bytes: Bytes, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public static func array(fromJSONUTF8Bytes jsonUTF8Bytes: Bytes, extensions: any VideoSDKRTC.ExtensionMap = SimpleExtensionMap(), options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes +} +extension VideoSDKRTC.Message { + public static func array(fromJSONUTF8Data jsonUTF8Data: Foundation.Data, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func array(fromJSONUTF8Data jsonUTF8Data: Foundation.Data, extensions: any VideoSDKRTC.ExtensionMap = SimpleExtensionMap(), options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func jsonUTF8Data(from collection: C, options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Foundation.Data where Self == C.Element, C : Swift.Collection +} +extension VideoSDKRTC.Message { + public func textFormatString() -> Swift.String + public func textFormatString(options: VideoSDKRTC.TextFormatEncodingOptions) -> Swift.String + public init(textFormatString: Swift.String, options: VideoSDKRTC.TextFormatDecodingOptions = TextFormatDecodingOptions(), extensions: (any VideoSDKRTC.ExtensionMap)? = nil) throws +} +public protocol AnyMessageExtension : Swift.Sendable { + var fieldNumber: Swift.Int { get } + var fieldName: Swift.String { get } + var messageType: any VideoSDKRTC.Message.Type { get } + func _protobuf_newField(decoder: inout D) throws -> (any VideoSDKRTC.AnyExtensionField)? where D : VideoSDKRTC.SPBDecoder +} +final public class MessageExtension : VideoSDKRTC.AnyMessageExtension where FieldType : VideoSDKRTC.ExtensionField, MessageType : VideoSDKRTC.Message { + final public let fieldNumber: Swift.Int + final public let fieldName: Swift.String + final public let messageType: any VideoSDKRTC.Message.Type + public init(_protobuf_fieldNumber: Swift.Int, fieldName: Swift.String) + final public func _protobuf_newField(decoder: inout D) throws -> (any VideoSDKRTC.AnyExtensionField)? where D : VideoSDKRTC.SPBDecoder + @objc deinit +} +public protocol Meter { + func createIntCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + func createDoubleCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + func createIntMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + func createDoubleMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + func createIntHistogram(name: Swift.String, explicitBoundaries: Swift.Array?, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + func createDoubleHistogram(name: Swift.String, explicitBoundaries: Swift.Array?, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + func createRawDoubleHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + func createRawIntHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + func createRawDoubleCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + func createRawIntCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + func createIntObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + func createDoubleObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric + func createIntObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + func createDoubleObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric + func getLabelSet(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.LabelSet +} +extension VideoSDKRTC.Meter { + public func createIntCounter(name: Swift.String) -> VideoSDKRTC.AnyCounterMetric + public func createDoubleCounter(name: Swift.String) -> VideoSDKRTC.AnyCounterMetric + public func createIntMeasure(name: Swift.String) -> VideoSDKRTC.AnyMeasureMetric + public func createDoubleMeasure(name: Swift.String) -> VideoSDKRTC.AnyMeasureMetric + public func createIntObserver(name: Swift.String, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + public func createDoubleObserver(name: Swift.String, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric +} +public protocol MeterBuilder : AnyObject { + func setSchemaUrl(schemaUrl: Swift.String) -> Self + func setInstrumentationVersion(instrumentationVersion: Swift.String) -> Self + func build() -> any VideoSDKRTC.StableMeter +} +@_hasMissingDesignatedInitializers public class MeterBuilderSdk : VideoSDKRTC.MeterBuilder { + public func setSchemaUrl(schemaUrl: Swift.String) -> Self + public func setInstrumentationVersion(instrumentationVersion: Swift.String) -> Self + public func build() -> any VideoSDKRTC.StableMeter + @objc deinit +} +public protocol MeterProvider : AnyObject { + func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String?) -> any VideoSDKRTC.Meter +} +public class MeterProviderBuilder { + public var resource: VideoSDKRTC.Resource { + get + } + public var metricExporter: any VideoSDKRTC.MetricExporter { + get + } + public var metricPushInterval: Foundation.TimeInterval { + get + } + public var metricProcessor: any VideoSDKRTC.MetricProcessor { + get + } + public init() + public func with(processor: any VideoSDKRTC.MetricProcessor) -> Self + public func with(exporter: any VideoSDKRTC.MetricExporter) -> Self + public func with(pushInterval: Foundation.TimeInterval) -> Self + public func with(resource: VideoSDKRTC.Resource) -> Self + public func build() -> any VideoSDKRTC.MeterProvider + @objc deinit +} +public class MeterProviderSdk : VideoSDKRTC.MeterProvider { + public static let defaultPushInterval: Swift.Double + convenience public init() + public init(metricProcessor: any VideoSDKRTC.MetricProcessor, metricExporter: any VideoSDKRTC.MetricExporter, metricPushInterval: Foundation.TimeInterval = MeterProviderSdk.defaultPushInterval, resource: VideoSDKRTC.Resource = EnvVarResource.get()) + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Meter + public func setMetricProcessor(_ metricProcessor: any VideoSDKRTC.MetricProcessor) + public func addMetricExporter(_ metricExporter: any VideoSDKRTC.MetricExporter) + public func setMetricPushInterval(_ interval: Foundation.TimeInterval) + public func setResource(_ resource: VideoSDKRTC.Resource) + @objc deinit +} +extension VideoSDKRTC.Meter { + public func addMetric(name _: Swift.String, type _: VideoSDKRTC.AggregationType, data _: [any VideoSDKRTC.MetricData]) +} +public struct Metric { + public var namespace: Swift.String { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var name: Swift.String { + get + } + public var description: Swift.String { + get + } + public var aggregationType: VideoSDKRTC.AggregationType { + get + } + public var data: [any VideoSDKRTC.MetricData] { + get + } +} +extension VideoSDKRTC.Metric : Swift.Equatable { + public static func == (lhs: VideoSDKRTC.Metric, rhs: VideoSDKRTC.Metric) -> Swift.Bool +} +extension VideoSDKRTC.Metric : Swift.Codable { + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public protocol MetricData { + var startTimestamp: Foundation.Date { get set } + var timestamp: Foundation.Date { get set } + var labels: [Swift.String : Swift.String] { get set } +} +public struct NoopMetricData : VideoSDKRTC.MetricData { + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] +} +public struct SumData : VideoSDKRTC.MetricData { + public init(startTimestamp: Foundation.Date, timestamp: Foundation.Date, labels: [Swift.String : Swift.String] = [String: String](), sum: T) + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] + public var sum: T +} +public struct SummaryData : VideoSDKRTC.MetricData { + public init(startTimestamp: Foundation.Date, timestamp: Foundation.Date, labels: [Swift.String : Swift.String] = [String: String](), count: Swift.Int, sum: T, min: T, max: T) + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] + public var count: Swift.Int + public var sum: T + public var min: T + public var max: T +} +public struct HistogramData : VideoSDKRTC.MetricData { + public init(startTimestamp: Foundation.Date, timestamp: Foundation.Date, labels: [Swift.String : Swift.String] = [String: String](), buckets: (boundaries: Swift.Array, counts: Swift.Array), count: Swift.Int, sum: T) + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] + public var buckets: (boundaries: Swift.Array, counts: Swift.Array) + public var count: Swift.Int + public var sum: T +} +extension VideoSDKRTC.NoopMetricData : Swift.Equatable, Swift.Codable { + public static func == (a: VideoSDKRTC.NoopMetricData, b: VideoSDKRTC.NoopMetricData) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.SumData : Swift.Equatable where T : Swift.Equatable { + public static func == (a: VideoSDKRTC.SumData, b: VideoSDKRTC.SumData) -> Swift.Bool +} +extension VideoSDKRTC.SumData : Swift.Codable where T : Swift.Decodable, T : Swift.Encodable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.SummaryData : Swift.Equatable where T : Swift.Equatable { + public static func == (a: VideoSDKRTC.SummaryData, b: VideoSDKRTC.SummaryData) -> Swift.Bool +} +extension VideoSDKRTC.SummaryData : Swift.Codable where T : Swift.Decodable, T : Swift.Encodable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.HistogramData : Swift.Equatable where T : Swift.Equatable { + public static func == (lhs: VideoSDKRTC.HistogramData, rhs: VideoSDKRTC.HistogramData) -> Swift.Bool +} +extension VideoSDKRTC.HistogramData : Swift.Codable where T : Swift.Decodable, T : Swift.Encodable { + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public struct MetricDescriptor : Swift.Hashable { + public var name: Swift.String { + get + } + public var description: Swift.String { + get + } + public var view: VideoSDKRTC.StableView { + get + } + public var instrument: VideoSDKRTC.InstrumentDescriptor { + get + } + public func aggregationName() -> Swift.String + public static func == (lhs: VideoSDKRTC.MetricDescriptor, rhs: VideoSDKRTC.MetricDescriptor) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public enum MetricExporterResultCode { + case success + case failureNotRetryable + case failureRetryable + public static func == (a: VideoSDKRTC.MetricExporterResultCode, b: VideoSDKRTC.MetricExporterResultCode) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public protocol MetricExporter { + func export(metrics: [VideoSDKRTC.Metric], shouldCancel: (() -> Swift.Bool)?) -> VideoSDKRTC.MetricExporterResultCode +} +public protocol MetricProcessor { + func finishCollectionCycle() -> [VideoSDKRTC.Metric] + func process(metric: VideoSDKRTC.Metric) +} +public class MetricProcessorSdk : VideoSDKRTC.MetricProcessor { + public init() + public func finishCollectionCycle() -> [VideoSDKRTC.Metric] + public func process(metric: VideoSDKRTC.Metric) + @objc deinit +} +public protocol MetricProducer : VideoSDKRTC.CollectionRegistration { + func collectAllMetrics() -> [VideoSDKRTC.StableMetricData] +} +public struct NoopMetricProducer : VideoSDKRTC.MetricProducer { + public func collectAllMetrics() -> [VideoSDKRTC.StableMetricData] +} +public enum Opentelemetry_Proto_Metrics_V1_AggregationTemporality : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unspecified + case delta + case cumulative + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality] +} +public enum Opentelemetry_Proto_Metrics_V1_DataPointFlags : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case doNotUse + case noRecordedValueMask + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags] +} +public struct Opentelemetry_Proto_Metrics_V1_MetricsData { + public var resourceMetrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ResourceMetrics { + public var resource: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource { + get + set + } + public var hasResource: Swift.Bool { + get + } + public mutating func clearResource() + public var scopeMetrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ScopeMetrics { + public var scope: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope { + get + set + } + public var hasScope: Swift.Bool { + get + } + public mutating func clearScope() + public var metrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Metric { + public var name: Swift.String + public var description_p: Swift.String + public var unit: Swift.String + public var data: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data? + public var gauge: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge { + get + set + } + public var sum: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum { + get + set + } + public var histogram: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram { + get + set + } + public var exponentialHistogram: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram { + get + set + } + public var summary: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Data : Swift.Equatable { + case gauge(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge) + case sum(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum) + case histogram(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram) + case exponentialHistogram(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram) + case summary(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary) + public static func == (a: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data, b: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data) -> Swift.Bool + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Gauge { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Sum { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint] + public var aggregationTemporality: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality + public var isMonotonic: Swift.Bool + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Histogram { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint] + public var aggregationTemporality: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ExponentialHistogram { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint] + public var aggregationTemporality: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Summary { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_NumberDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var value: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value? + public var asDouble: Swift.Double { + get + set + } + public var asInt: Swift.Int64 { + get + set + } + public var exemplars: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar] + public var flags: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Value : Swift.Equatable { + case asDouble(Swift.Double) + case asInt(Swift.Int64) + public static func == (a: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value, b: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value) -> Swift.Bool + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_HistogramDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var count: Swift.UInt64 + public var sum: Swift.Double { + get + set + } + public var hasSum: Swift.Bool { + get + } + public mutating func clearSum() + public var bucketCounts: [Swift.UInt64] + public var explicitBounds: [Swift.Double] + public var exemplars: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar] + public var flags: Swift.UInt32 + public var min: Swift.Double { + get + set + } + public var hasMin: Swift.Bool { + get + } + public mutating func clearMin() + public var max: Swift.Double { + get + set + } + public var hasMax: Swift.Bool { + get + } + public mutating func clearMax() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var count: Swift.UInt64 + public var sum: Swift.Double { + get + set + } + public var hasSum: Swift.Bool { + get + } + public mutating func clearSum() + public var scale: Swift.Int32 + public var zeroCount: Swift.UInt64 + public var positive: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets { + get + set + } + public var hasPositive: Swift.Bool { + get + } + public mutating func clearPositive() + public var negative: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets { + get + set + } + public var hasNegative: Swift.Bool { + get + } + public mutating func clearNegative() + public var flags: Swift.UInt32 + public var exemplars: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar] + public var min: Swift.Double { + get + set + } + public var hasMin: Swift.Bool { + get + } + public mutating func clearMin() + public var max: Swift.Double { + get + set + } + public var hasMax: Swift.Bool { + get + } + public mutating func clearMax() + public var zeroThreshold: Swift.Double + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct Buckets { + public var offset: Swift.Int32 + public var bucketCounts: [Swift.UInt64] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_SummaryDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var count: Swift.UInt64 + public var sum: Swift.Double + public var quantileValues: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile] + public var flags: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct ValueAtQuantile { + public var quantile: Swift.Double + public var value: Swift.Double + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Exemplar { + public var filteredAttributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var timeUnixNano: Swift.UInt64 + public var value: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value? + public var asDouble: Swift.Double { + get + set + } + public var asInt: Swift.Int64 { + get + set + } + public var spanID: Foundation.Data + public var traceID: Foundation.Data + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Value : Swift.Equatable { + case asDouble(Swift.Double) + case asInt(Swift.Int64) + public static func == (a: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value, b: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value) -> Swift.Bool + } + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest { + public var resourceMetrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse { + public var partialSuccess: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess { + get + set + } + public var hasPartialSuccess: Swift.Bool { + get + } + public mutating func clearPartialSuccess() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess { + public var rejectedDataPoints: Swift.Int64 + public var errorMessage: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public enum MetricsAdapter { + public static func toProtoResourceMetrics(stableMetricData: [VideoSDKRTC.StableMetricData]) -> [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public static func toProtoResourceMetrics(metricDataList: [VideoSDKRTC.Metric]) -> [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public static func toProtoMetric(stableMetric: VideoSDKRTC.StableMetricData) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric? + public static func toProtoMetric(metric: VideoSDKRTC.Metric) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric? +} +public struct MetricStorageConstants { +} +public protocol MetricStorage { + var metricDescriptor: VideoSDKRTC.MetricDescriptor { get } + mutating func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + func isEmpty() -> Swift.Bool +} +public protocol WritableMetricStorage { + mutating func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + mutating func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +@_hasMissingDesignatedInitializers public class MetricStorageRegistry { + @objc deinit +} +public class MillisClock : VideoSDKRTC.Clock { + public init() + public var now: Foundation.Date { + get + } + @objc deinit +} +public class MonotonicClock : VideoSDKRTC.Clock { + public init(clock: any VideoSDKRTC.Clock) + public var now: Foundation.Date { + get + } + @objc deinit +} +public class MultiLogRecordExporter : VideoSDKRTC.LogRecordExporter { + public init(logRecordExporters: [any VideoSDKRTC.LogRecordExporter]) + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func shutdown() + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public class MultiLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + public init(logRecordProcessors: [any VideoSDKRTC.LogRecordProcessor]) + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + @objc deinit +} +public class MultiSpanExporter : VideoSDKRTC.SpanExporter { + public init(spanExporters: [any VideoSDKRTC.SpanExporter]) + public func export(spans: [VideoSDKRTC.SpanData]) -> VideoSDKRTC.SpanExporterResultCode + public func flush() -> VideoSDKRTC.SpanExporterResultCode + public func shutdown() + @objc deinit +} +public struct MultiSpanProcessor : VideoSDKRTC.SpanProcessor { + public init(spanProcessors: [any VideoSDKRTC.SpanProcessor]) + public var isStartRequired: Swift.Bool { + get + } + public var isEndRequired: Swift.Bool { + get + } + public func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + public func onEnd(span: any VideoSDKRTC.ReadableSpan) + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) +} +public struct _NameMap : Swift.ExpressibleByDictionaryLiteral { + public enum NameDescription { + case same(proto: Swift.StaticString) + case standard(proto: Swift.StaticString) + case unique(proto: Swift.StaticString, json: Swift.StaticString) + case aliased(proto: Swift.StaticString, aliases: [Swift.StaticString]) + } + public init() + public init(dictionaryLiteral elements: (Swift.Int, VideoSDKRTC._NameMap.NameDescription)...) + public typealias Key = Swift.Int + public typealias Value = VideoSDKRTC._NameMap.NameDescription +} +@_hasMissingDesignatedInitializers public class NoopLogRecordExporter : VideoSDKRTC.LogRecordExporter { + public static let instance: VideoSDKRTC.NoopLogRecordExporter + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func shutdown() + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +@_hasMissingDesignatedInitializers public class NoopLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public static let noopLogRecordProcessor: VideoSDKRTC.NoopLogRecordProcessor + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + @objc deinit +} +public protocol ObservableDoubleCounter { +} +public protocol ObservableDoubleGauge { +} +public protocol ObservableDoubleMeasurement { + func record(value: Swift.Double) + func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol ObservableDoubleUpDownCounter { +} +public struct ObservableInstrumentSdk : VideoSDKRTC.ObservableDoubleCounter, VideoSDKRTC.ObservableLongCounter, VideoSDKRTC.ObservableLongGauge, VideoSDKRTC.ObservableLongUpDownCounter, VideoSDKRTC.ObservableDoubleGauge, VideoSDKRTC.ObservableDoubleUpDownCounter { +} +public protocol ObservableLongCounter { +} +public protocol ObservableLongGauge { +} +public protocol ObservableLongMeasurement { + func record(value: Swift.Int) + func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol ObservableLongUpDownCounter { +} +public func defaultOltpHTTPMetricsEndpoint() -> Foundation.URL +@_inheritsConvenienceInitializers public class OtlpHttpMetricExporter : VideoSDKRTC.OtlpHttpExporterBase, VideoSDKRTC.MetricExporter { + override public init(endpoint: Foundation.URL = defaultOltpHTTPMetricsEndpoint(), useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func export(metrics: [VideoSDKRTC.Metric], shouldCancel: (() -> Swift.Bool)?) -> VideoSDKRTC.MetricExporterResultCode + public func flush() -> VideoSDKRTC.MetricExporterResultCode + @objc deinit +} +public struct OpenTelemetry { + public static var version: Swift.String + public static var instance: VideoSDKRTC.OpenTelemetry + public var tracerProvider: any VideoSDKRTC.TracerProvider { + get + } + public var meterProvider: any VideoSDKRTC.MeterProvider { + get + } + public var stableMeterProvider: (any VideoSDKRTC.StableMeterProvider)? { + get + } + public var loggerProvider: any VideoSDKRTC.LoggerProvider { + get + } + public var baggageManager: any VideoSDKRTC.BaggageManager { + get + } + public var propagators: any VideoSDKRTC.ContextPropagators { + get + } + public var contextProvider: VideoSDKRTC.OpenTelemetryContextProvider { + get + } + public static func registerStableMeterProvider(meterProvider: any VideoSDKRTC.StableMeterProvider) + public static func registerTracerProvider(tracerProvider: any VideoSDKRTC.TracerProvider) + public static func registerMeterProvider(meterProvider: any VideoSDKRTC.MeterProvider) + public static func registerLoggerProvider(loggerProvider: any VideoSDKRTC.LoggerProvider) + public static func registerBaggageManager(baggageManager: any VideoSDKRTC.BaggageManager) + public static func registerPropagators(textPropagators: [any VideoSDKRTC.TextMapPropagator], baggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator) + public static func registerContextManager(contextManager: any VideoSDKRTC.ContextManager) +} +public enum OpenTelemetryContextKeys : Swift.String { + case span + case baggage + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct OpenTelemetryContextProvider { + public var activeSpan: (any VideoSDKRTC.Span)? { + get + } + public var activeBaggage: (any VideoSDKRTC.Baggage)? { + get + } + public func setActiveSpan(_ span: any VideoSDKRTC.Span) + public func setActiveBaggage(_ baggage: any VideoSDKRTC.Baggage) + public func removeContextForSpan(_ span: any VideoSDKRTC.Span) + public func removeContextForBaggage(_ baggage: any VideoSDKRTC.Baggage) +} +public struct OtlpConfiguration { + public static let DefaultTimeoutInterval: Foundation.TimeInterval + public let headers: [(Swift.String, Swift.String)]? + public let timeout: Foundation.TimeInterval + public init(timeout: Foundation.TimeInterval = OtlpConfiguration.DefaultTimeoutInterval, headers: [(Swift.String, Swift.String)]? = nil) +} +public class OtlpHttpExporterBase { + public init(endpoint: Foundation.URL, useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func createRequest(body: any VideoSDKRTC.Message, endpoint: Foundation.URL, authToken: Swift.String) -> Foundation.URLRequest + public func shutdown() + @objc deinit +} +public func defaultOltpHttpLoggingEndpoint() -> Foundation.URL +@_inheritsConvenienceInitializers public class OtlpHttpLogExporter : VideoSDKRTC.OtlpHttpExporterBase, VideoSDKRTC.LogRecordExporter { + override public init(endpoint: Foundation.URL = defaultOltpHttpLoggingEndpoint(), useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func forceFlush() -> VideoSDKRTC.ExportResult + public func flush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public func defaultOltpHttpTracesEndpoint() -> Foundation.URL +@_inheritsConvenienceInitializers public class OtlpHttpTraceExporter : VideoSDKRTC.OtlpHttpExporterBase, VideoSDKRTC.SpanExporter { + override public init(endpoint: Foundation.URL = defaultOltpHttpTracesEndpoint(), useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func export(spans: [VideoSDKRTC.SpanData]) -> VideoSDKRTC.SpanExporterResultCode + public func flush() -> VideoSDKRTC.SpanExporterResultCode + @objc deinit +} +public struct OtlpSpan : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct Attribute : Swift.Codable { + public struct Value : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public enum OTPCConstants { + public enum HTTP { + public static let userAgent: Swift.String + } +} +@_hasMissingDesignatedInitializers public class Participant : Swift.Equatable { + public var id: Swift.String { + get + } + public var displayName: Swift.String { + get + } + public var videoQuality: VideoSDKRTC.VideoQuality { + get + } + public var isLocal: Swift.Bool { + get + } + public var streams: [Swift.String : VideoSDKRTC.MediaStream] { + get + } + public var pinState: VideoSDKRTC.ParticipantPinState + public var mode: VideoSDKRTC.Mode + @objc deinit +} +extension VideoSDKRTC.Participant { + public func enableMic() + public func disableMic() + public func enableWebcam() + public func disableWebcam() + public func remove() + public func participantPinStateChanged(pinState: VideoSDKRTC.ParticipantPinState) + public func participantModeChanged(mode: VideoSDKRTC.Mode) + public func getAudioStats() -> [Swift.String : Any]? + public func getVideoStats() -> [Swift.String : Any]? +} +extension VideoSDKRTC.Participant { + public func addStream(_ stream: VideoSDKRTC.MediaStream) + @discardableResult + public func removeStream(_ streamId: Swift.String) -> VideoSDKRTC.MediaStream? + public func removeAllStreams() + public func setQuality(_ quality: VideoSDKRTC.VideoQuality) + public func pin(_ peerId: Swift.String = "", _ pinType: VideoSDKRTC.PinType = .SHARE_AND_CAM) + public func unpin(_ pinType: VideoSDKRTC.PinType = .SHARE_AND_CAM) + public func setPinState(pinState: VideoSDKRTC.ParticipantPinState, peerId: Swift.String = "") +} +extension VideoSDKRTC.Participant { + public func addEventListener(_ listener: any VideoSDKRTC.ParticipantEventListener) + public func removeEventListener(_ listener: any VideoSDKRTC.ParticipantEventListener) +} +extension VideoSDKRTC.Participant { + public static func == (lhs: VideoSDKRTC.Participant, rhs: VideoSDKRTC.Participant) -> Swift.Bool +} +public protocol ParticipantEventListener { + func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) + func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +} +extension VideoSDKRTC.ParticipantEventListener { + public func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) + public func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +} +public enum PinType : Swift.String { + case SHARE_AND_CAM, CAM, SHARE + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct ParticipantPinState : Swift.Codable { + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +@_hasMissingDesignatedInitializers public class PointData : Swift.Equatable { + public var startEpochNanos: Swift.UInt64 + public var endEpochNanos: Swift.UInt64 + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] + public var exemplars: [VideoSDKRTC.ExemplarData] + public static func - (left: VideoSDKRTC.PointData, right: VideoSDKRTC.PointData) -> Self + public static func == (lhs: VideoSDKRTC.PointData, rhs: VideoSDKRTC.PointData) -> Swift.Bool + @objc deinit +} +public protocol ProtobufAPIVersion_3 { +} +public protocol ProtobufAPIVersionCheck { + associatedtype Version : VideoSDKRTC.ProtobufAPIVersion_3 +} +public struct _ProtobufMap where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.FieldType { + public typealias Key = KeyType.BaseType + public typealias Value = ValueType.BaseType + public typealias BaseType = Swift.Dictionary.Key, VideoSDKRTC._ProtobufMap.Value> +} +public struct _ProtobufMessageMap where KeyType : VideoSDKRTC.MapKeyType, ValueType : Swift.Hashable, ValueType : VideoSDKRTC.Message { + public typealias Key = KeyType.BaseType + public typealias Value = ValueType + public typealias BaseType = Swift.Dictionary.Key, VideoSDKRTC._ProtobufMessageMap.Value> +} +public struct _ProtobufEnumMap where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.Enum { + public typealias Key = KeyType.BaseType + public typealias Value = ValueType + public typealias BaseType = Swift.Dictionary.Key, VideoSDKRTC._ProtobufEnumMap.Value> +} +public protocol _ProtoNameProviding { + static var _protobuf_nameMap: VideoSDKRTC._NameMap { get } +} +public struct ProxyMeter : VideoSDKRTC.Meter { + public func createRawDoubleCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + public func createRawIntCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + public func createRawDoubleHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + public func createRawIntHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + public func getLabelSet(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.LabelSet + public func createIntCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + public func createDoubleCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + public func createIntMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + public func createDoubleMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + public func createIntHistogram(name: Swift.String, explicitBoundaries: Swift.Array? = nil, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + public func createDoubleHistogram(name: Swift.String, explicitBoundaries: Swift.Array?, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + public func createIntObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + public func createDoubleObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric + public func createIntObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + public func createDoubleObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric +} +@_hasMissingDesignatedInitializers public class PubSub { + @objc deinit +} +extension VideoSDKRTC.PubSub { + public func publish(topic: Swift.String, message: Swift.String, options: [Swift.String : Any] = [:]) + public func subscribe(topic: Swift.String, forListener listener: any VideoSDKRTC.PubSubMessageListener) + public func unsubscribe(topic: Swift.String, forListener listener: any VideoSDKRTC.PubSubMessageListener) + public func getMessagesForTopic(_ topic: Swift.String) -> [VideoSDKRTC.PubSubMessage] +} +@objc @_hasMissingDesignatedInitializers public class PubSubMessage : ObjectiveC.NSObject { + public var id: Swift.String + public var topic: Swift.String + public var message: Swift.String + public var senderId: Swift.String + public var senderName: Swift.String + public var timestamp: Swift.String + @objc deinit +} +public protocol PubSubMessageListener { + func onMessageReceived(_ message: VideoSDKRTC.PubSubMessage) +} +public struct RandomIdGenerator : VideoSDKRTC.IdGenerator { + public init() + public func generateSpanId() -> VideoSDKRTC.SpanId + public func generateTraceId() -> VideoSDKRTC.TraceId +} +public protocol RawCounterMetric { + associatedtype T + func record(sum: Self.T, startDate: Foundation.Date, endDate: Foundation.Date, labels: [Swift.String : Swift.String]) + func record(sum: Self.T, startDate: Foundation.Date, endDate: Foundation.Date, labelset: VideoSDKRTC.LabelSet) + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawCounterMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawCounterMetric +} +public struct AnyRawCounterMetric : VideoSDKRTC.RawCounterMetric { + public init(_ countable: U) where T == U.T, U : VideoSDKRTC.RawCounterMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawCounterMetric + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labelset: VideoSDKRTC.LabelSet) + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labels: [Swift.String : Swift.String]) +} +public struct NoopRawCounterMetric : VideoSDKRTC.RawCounterMetric { + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labels: [Swift.String : Swift.String]) + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labelset: VideoSDKRTC.LabelSet) + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawCounterMetric +} +public protocol RawHistogramMetric { + associatedtype T + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawHistogramMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawHistogramMetric + func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: Self.T, labelset: VideoSDKRTC.LabelSet) + func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: Self.T, labels: [Swift.String : Swift.String]) +} +public struct AnyRawHistogramMetric : VideoSDKRTC.RawHistogramMetric { + public init(_ histogram: U) where T == U.T, U : VideoSDKRTC.RawHistogramMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawHistogramMetric + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labels: [Swift.String : Swift.String]) + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labelset: VideoSDKRTC.LabelSet) +} +public struct NoopRawHistogramMetric : VideoSDKRTC.RawHistogramMetric { + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labelset: VideoSDKRTC.LabelSet) + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labels: [Swift.String : Swift.String]) + public init() + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawHistogramMetric +} +public struct ReadableLogRecord : Swift.Codable { + public init(resource: VideoSDKRTC.Resource, instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo, timestamp: Foundation.Date, observedTimestamp: Foundation.Date? = nil, spanContext: VideoSDKRTC.SpanContext? = nil, severity: VideoSDKRTC.Severity? = nil, body: Swift.String? = nil, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var timestamp: Foundation.Date { + get + } + public var observedTimestamp: Foundation.Date? { + get + } + public var spanContext: VideoSDKRTC.SpanContext? { + get + } + public var severity: VideoSDKRTC.Severity? { + get + } + public var body: Swift.String? { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public protocol ReadableSpan : VideoSDKRTC.Span { + var name: Swift.String { get set } + var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { get } + func toSpanData() -> VideoSDKRTC.SpanData + var hasEnded: Swift.Bool { get } + var latency: Foundation.TimeInterval { get } +} +@_hasMissingDesignatedInitializers public class RecordEventsReadableSpan : VideoSDKRTC.ReadableSpan { + public var isRecording: Swift.Bool + public var name: Swift.String { + get + set + } + public var spanLimits: VideoSDKRTC.SpanLimits { + get + } + public var context: VideoSDKRTC.SpanContext { + get + } + public var parentContext: VideoSDKRTC.SpanContext? { + get + } + public var hasRemoteParent: Swift.Bool { + get + } + public var spanProcessor: any VideoSDKRTC.SpanProcessor { + get + } + public var links: [VideoSDKRTC.SpanData.Link] { + get + } + public var totalRecordedLinks: Swift.Int { + get + } + public var maxNumberOfAttributes: Swift.Int { + get + } + public var maxNumberOfAttributesPerEvent: Swift.Int { + get + } + public var kind: VideoSDKRTC.SpanKind { + get + } + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var startTime: Foundation.Date { + get + } + public var events: VideoSDKRTC.ArrayWithCapacity { + get + } + public var totalAttributeCount: Swift.Int { + get + } + public var totalRecordedEvents: Swift.Int { + get + } + public var status: VideoSDKRTC.Status { + get + set + } + public var latency: Foundation.TimeInterval { + get + } + public var endTime: Foundation.Date? { + get + } + public var hasEnded: Swift.Bool { + get + } + public static func startSpan(context: VideoSDKRTC.SpanContext, name: Swift.String, instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo, kind: VideoSDKRTC.SpanKind, parentContext: VideoSDKRTC.SpanContext?, hasRemoteParent: Swift.Bool, spanLimits: VideoSDKRTC.SpanLimits, spanProcessor: any VideoSDKRTC.SpanProcessor, clock: any VideoSDKRTC.Clock, resource: VideoSDKRTC.Resource, attributes: VideoSDKRTC.AttributesDictionary, links: [VideoSDKRTC.SpanData.Link], totalRecordedLinks: Swift.Int, startTime: Foundation.Date?) -> VideoSDKRTC.RecordEventsReadableSpan + public func toSpanData() -> VideoSDKRTC.SpanData + public func setAttribute(key: Swift.String, value: VideoSDKRTC.AttributeValue?) + public func addEvent(name: Swift.String) + public func addEvent(name: Swift.String, timestamp: Foundation.Date) + public func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue], timestamp: Foundation.Date) + public func end() + public func end(time: Foundation.Date) + public var description: Swift.String { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class RegisteredReader : Swift.Equatable, Swift.Hashable { + final public let id: Swift.Int32 + final public let reader: any VideoSDKRTC.StableMetricReader + final public let registry: VideoSDKRTC.StableViewRegistry + public var lastCollectedEpochNanos: Swift.UInt64 + public func hash(into hasher: inout Swift.Hasher) + public static func == (lhs: VideoSDKRTC.RegisteredReader, rhs: VideoSDKRTC.RegisteredReader) -> Swift.Bool + @objc deinit + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class RegisteredView { + public var selector: VideoSDKRTC.InstrumentSelector { + get + } + public var view: VideoSDKRTC.StableView { + get + } + public var attributeProcessor: VideoSDKRTC.AttributeProcessor { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class ReservoirCell { + @objc deinit +} +public protocol ReservoirCellSelector { + func reservoirCellIndex(for cells: [VideoSDKRTC.ReservoirCell], value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Int + func reservoirCellIndex(for cells: [VideoSDKRTC.ReservoirCell], value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Int + func reset() +} +public struct Resource : Swift.Equatable, Swift.Hashable, Swift.Codable { + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] + public init() + public init(attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public mutating func merge(other: VideoSDKRTC.Resource) + public func merging(other: VideoSDKRTC.Resource) -> VideoSDKRTC.Resource + public static func == (a: VideoSDKRTC.Resource, b: VideoSDKRTC.Resource) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public struct Opentelemetry_Proto_Resource_V1_Resource { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource, rhs: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct ResourceAdapter { + public static func toProtoResource(resource: VideoSDKRTC.Resource) -> VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource +} +public enum ResourceAttributes : Swift.String { + case browserBrands + case browserPlatform + case browserMobile + case browserLanguage + case userAgentOriginal + case cloudProvider + case cloudAccountId + case cloudRegion + case cloudResourceId + case cloudAvailabilityZone + case cloudPlatform + case awsEcsContainerArn + case awsEcsClusterArn + case awsEcsLaunchtype + case awsEcsTaskArn + case awsEcsTaskFamily + case awsEcsTaskRevision + case awsEksClusterArn + case awsLogGroupNames + case awsLogGroupArns + case awsLogStreamNames + case awsLogStreamArns + case herokuReleaseCreationTimestamp + case herokuReleaseCommit + case herokuAppId + case containerName + case containerId + case containerRuntime + case containerImageName + case containerImageTag + case deploymentEnvironment + case deviceId + case deviceModelIdentifier + case deviceModelName + case deviceManufacturer + case faasName + case faasVersion + case faasInstance + case faasMaxMemory + case hostId + case hostName + case hostType + case hostArch + case hostImageName + case hostImageId + case hostImageVersion + case k8sClusterName + case k8sNodeName + case k8sNodeUid + case k8sNamespaceName + case k8sPodUid + case k8sPodName + case k8sContainerName + case k8sContainerRestartCount + case k8sReplicasetUid + case k8sReplicasetName + case k8sDeploymentUid + case k8sDeploymentName + case k8sStatefulsetUid + case k8sStatefulsetName + case k8sDaemonsetUid + case k8sDaemonsetName + case k8sJobUid + case k8sJobName + case k8sCronjobUid + case k8sCronjobName + case osType + case osDescription + case osName + case osVersion + case processPid + case processParentPid + case processExecutableName + case processExecutablePath + case processCommand + case processCommandLine + case processCommandArgs + case processOwner + case processRuntimeName + case processRuntimeVersion + case processRuntimeDescription + case serviceName + case serviceNamespace + case serviceInstanceId + case serviceVersion + case telemetrySdkName + case telemetrySdkLanguage + case telemetrySdkVersion + case telemetryAutoVersion + case webengineName + case webengineVersion + case webengineDescription + case otelScopeName + case otelScopeVersion + case otelLibraryName + case otelLibraryVersion + public struct CloudProviderValues : Swift.CustomStringConvertible { + public static let alibabaCloud: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let aws: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let azure: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let gcp: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let heroku: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let ibmCloud: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let tencentCloud: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct CloudPlatformValues : Swift.CustomStringConvertible { + public static let alibabaCloudEcs: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let alibabaCloudFc: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let alibabaCloudOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsEc2: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsEcs: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsEks: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsLambda: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsElasticBeanstalk: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsAppRunner: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureVm: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureContainerInstances: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureAks: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureFunctions: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureAppService: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpComputeEngine: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpCloudRun: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpKubernetesEngine: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpCloudFunctions: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpAppEngine: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let ibmCloudOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let tencentCloudCvm: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let tencentCloudEks: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let tencentCloudScf: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum AwsEcsLaunchtypeValues : Swift.String { + case ec2 + case fargate + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct HostArchValues : Swift.CustomStringConvertible { + public static let amd64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let arm32: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let arm64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let ia64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let ppc32: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let ppc64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let s390x: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let x86: VideoSDKRTC.ResourceAttributes.HostArchValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct OsTypeValues : Swift.CustomStringConvertible { + public static let windows: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let linux: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let darwin: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let freebsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let netbsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let openbsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let dragonflybsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let hpux: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let aix: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let solaris: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let zOs: VideoSDKRTC.ResourceAttributes.OsTypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct TelemetrySdkLanguageValues : Swift.CustomStringConvertible { + public static let cpp: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let dotnet: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let erlang: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let go: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let java: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let nodejs: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let php: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let python: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let ruby: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let webjs: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let swift: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public func == (left: VideoSDKRTC.ResourceAttributes, right: Swift.String) -> Swift.Bool +public func == (left: Swift.String, right: VideoSDKRTC.ResourceAttributes) -> Swift.Bool +public protocol Sampler : AnyObject, Swift.CustomStringConvertible { + func shouldSample(parentContext: VideoSDKRTC.SpanContext?, traceId: VideoSDKRTC.TraceId, name: Swift.String, kind: VideoSDKRTC.SpanKind, attributes: [Swift.String : VideoSDKRTC.AttributeValue], parentLinks: [VideoSDKRTC.SpanData.Link]) -> any VideoSDKRTC.Decision +} +public protocol Decision { + var isSampled: Swift.Bool { get } + var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { get } +} +public enum Samplers { + public static var alwaysOn: any VideoSDKRTC.Sampler + public static var alwaysOff: any VideoSDKRTC.Sampler + public static func traceIdRatio(ratio: Swift.Double) -> any VideoSDKRTC.Sampler + public static func parentBased(root: any VideoSDKRTC.Sampler, remoteParentSampled: (any VideoSDKRTC.Sampler)? = nil, remoteParentNotSampled: (any VideoSDKRTC.Sampler)? = nil, localParentSampled: (any VideoSDKRTC.Sampler)? = nil, localParentNotSampled: (any VideoSDKRTC.Sampler)? = nil) -> any VideoSDKRTC.Sampler +} +public enum SemanticAttributes : Swift.String { + case exceptionType + case exceptionMessage + case exceptionStacktrace + case httpMethod + case httpStatusCode + case netProtocolName + case netProtocolVersion + case netPeerName + case netPeerPort + case httpScheme + case httpRoute + case netHostName + case netHostPort + case eventName + case eventDomain + case logRecordUid + case featureFlagKey + case featureFlagProviderName + case featureFlagVariant + case awsLambdaInvokedArn + case cloudeventsEventId + case cloudeventsEventSource + case cloudeventsEventSpecVersion + case cloudeventsEventType + case cloudeventsEventSubject + case opentracingRefType + case dbSystem + case dbConnectionString + case dbUser + case dbJdbcDriverClassname + case dbName + case dbStatement + case dbOperation + case netSockPeerAddr + case netSockPeerPort + case netSockFamily + case netSockPeerName + case netTransport + case dbMssqlInstanceName + case dbCassandraPageSize + case dbCassandraConsistencyLevel + case dbCassandraTable + case dbCassandraIdempotence + case dbCassandraSpeculativeExecutionCount + case dbCassandraCoordinatorId + case dbCassandraCoordinatorDc + case dbRedisDatabaseIndex + case dbMongodbCollection + case dbSqlTable + case dbCosmosdbClientId + case dbCosmosdbOperationType + case userAgentOriginal + case dbCosmosdbConnectionMode + case dbCosmosdbContainer + case dbCosmosdbRequestContentLength + case dbCosmosdbStatusCode + case dbCosmosdbSubStatusCode + case dbCosmosdbRequestCharge + case otelStatusCode + case otelStatusDescription + case faasTrigger + case faasInvocationId + case cloudResourceId + case faasDocumentCollection + case faasDocumentOperation + case faasDocumentTime + case faasDocumentName + case httpTarget + case httpClientIp + case netSockHostAddr + case netSockHostPort + case messagingSystem + case messagingOperation + case messagingBatchMessageCount + case messagingMessageId + case messagingMessageConversationId + case messagingMessagePayloadSizeBytes + case messagingMessagePayloadCompressedSizeBytes + case faasTime + case faasCron + case faasColdstart + case faasInvokedName + case faasInvokedProvider + case faasInvokedRegion + case netHostConnectionType + case netHostConnectionSubtype + case netHostCarrierName + case netHostCarrierMcc + case netHostCarrierMnc + case netHostCarrierIcc + case peerService + case enduserId + case enduserRole + case enduserScope + case threadId + case threadName + case codeFunction + case codeNamespace + case codeFilepath + case codeLineno + case codeColumn + case httpRequestContentLength + case httpResponseContentLength + case httpUrl + case httpResendCount + case rpcSystem + case rpcService + case rpcMethod + case awsRequestId + case awsDynamodbTableNames + case awsDynamodbConsumedCapacity + case awsDynamodbItemCollectionMetrics + case awsDynamodbProvisionedReadCapacity + case awsDynamodbProvisionedWriteCapacity + case awsDynamodbConsistentRead + case awsDynamodbProjection + case awsDynamodbLimit + case awsDynamodbAttributesToGet + case awsDynamodbIndexName + case awsDynamodbSelect + case awsDynamodbGlobalSecondaryIndexes + case awsDynamodbLocalSecondaryIndexes + case awsDynamodbExclusiveStartTable + case awsDynamodbTableCount + case awsDynamodbScanForward + case awsDynamodbSegment + case awsDynamodbTotalSegments + case awsDynamodbCount + case awsDynamodbScannedCount + case awsDynamodbAttributeDefinitions + case awsDynamodbGlobalSecondaryIndexUpdates + case awsS3Bucket + case awsS3Key + case awsS3CopySource + case awsS3UploadId + case awsS3Delete + case awsS3PartNumber + case graphqlOperationName + case graphqlOperationType + case graphqlDocument + case messagingDestinationName + case messagingSourceName + case messagingDestinationTemplate + case messagingDestinationTemporary + case messagingDestinationAnonymous + case messagingSourceTemplate + case messagingSourceTemporary + case messagingSourceAnonymous + case messagingConsumerId + case messagingRabbitmqDestinationRoutingKey + case messagingKafkaMessageKey + case messagingKafkaConsumerGroup + case messagingKafkaClientId + case messagingKafkaDestinationPartition + case messagingKafkaSourcePartition + case messagingKafkaMessageOffset + case messagingKafkaMessageTombstone + case messagingRocketmqNamespace + case messagingRocketmqClientGroup + case messagingRocketmqClientId + case messagingRocketmqMessageDeliveryTimestamp + case messagingRocketmqMessageDelayTimeLevel + case messagingRocketmqMessageGroup + case messagingRocketmqMessageType + case messagingRocketmqMessageTag + case messagingRocketmqMessageKeys + case messagingRocketmqConsumptionModel + case rpcGrpcStatusCode + case rpcJsonrpcVersion + case rpcJsonrpcRequestId + case rpcJsonrpcErrorCode + case rpcJsonrpcErrorMessage + case messageType + case messageId + case messageCompressedSize + case messageUncompressedSize + case rpcConnectRpcErrorCode + case exceptionEscaped + case exception + public struct EventDomainValues : Swift.CustomStringConvertible { + public static let browser: VideoSDKRTC.SemanticAttributes.EventDomainValues + public static let device: VideoSDKRTC.SemanticAttributes.EventDomainValues + public static let k8s: VideoSDKRTC.SemanticAttributes.EventDomainValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum OpentracingRefTypeValues : Swift.String { + case child_of + case follows_from + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct DbSystemValues : Swift.CustomStringConvertible { + public static let otherSql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mssql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mssqlcompact: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mysql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let oracle: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let db2: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let postgresql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let redshift: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hive: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cloudscape: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hsqldb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let progress: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let maxdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hanadb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let ingres: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let firstsql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let edb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cache: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let adabas: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let firebird: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let derby: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let filemaker: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let informix: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let instantdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let interbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mariadb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let netezza: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let pervasive: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let pointbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let sqlite: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let sybase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let teradata: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let vertica: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let h2: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let coldfusion: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cassandra: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mongodb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let redis: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let couchbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let couchdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cosmosdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let dynamodb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let neo4j: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let geode: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let elasticsearch: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let memcached: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cockroachdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let opensearch: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let clickhouse: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let spanner: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let trino: VideoSDKRTC.SemanticAttributes.DbSystemValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetSockFamilyValues : Swift.CustomStringConvertible { + public static let inet: VideoSDKRTC.SemanticAttributes.NetSockFamilyValues + public static let inet6: VideoSDKRTC.SemanticAttributes.NetSockFamilyValues + public static let unix: VideoSDKRTC.SemanticAttributes.NetSockFamilyValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetTransportValues : Swift.CustomStringConvertible { + public static let ipTcp: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let ipUdp: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let pipe: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let inproc: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let other: VideoSDKRTC.SemanticAttributes.NetTransportValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum DbCassandraConsistencyLevelValues : Swift.String { + case all + case each_quorum + case quorum + case local_quorum + case one + case two + case three + case local_one + case any + case serial + case local_serial + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct DbCosmosdbOperationTypeValues : Swift.CustomStringConvertible { + public static let invalid: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let create: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let patch: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let read: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let readFeed: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let delete: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let replace: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let execute: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let query: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let head: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let headFeed: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let upsert: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let batch: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let queryPlan: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let executeJavascript: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum DbCosmosdbConnectionModeValues : Swift.String { + case gateway + case direct + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum OtelStatusCodeValues : Swift.String { + case ok + case error + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum FaasTriggerValues : Swift.String { + case datasource + case http + case pubsub + case timer + case other + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct FaasDocumentOperationValues : Swift.CustomStringConvertible { + public static let insert: VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues + public static let edit: VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues + public static let delete: VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct MessagingOperationValues : Swift.CustomStringConvertible { + public static let publish: VideoSDKRTC.SemanticAttributes.MessagingOperationValues + public static let receive: VideoSDKRTC.SemanticAttributes.MessagingOperationValues + public static let process: VideoSDKRTC.SemanticAttributes.MessagingOperationValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct FaasInvokedProviderValues : Swift.CustomStringConvertible { + public static let alibabaCloud: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let aws: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let azure: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let gcp: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let tencentCloud: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetHostConnectionTypeValues : Swift.CustomStringConvertible { + public static let wifi: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let wired: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let cell: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let unavailable: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let unknown: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetHostConnectionSubtypeValues : Swift.CustomStringConvertible { + public static let gprs: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let edge: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let umts: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let cdma: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let evdo0: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let evdoA: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let cdma20001xrtt: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hsdpa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hsupa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hspa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let iden: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let evdoB: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let lte: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let ehrpd: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hspap: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let gsm: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let tdScdma: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let iwlan: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let nr: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let nrnsa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let lteCa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct RpcSystemValues : Swift.CustomStringConvertible { + public static let grpc: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let javaRmi: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let dotnetWcf: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let apacheDubbo: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let connectRpc: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum GraphqlOperationTypeValues : Swift.String { + case query + case mutation + case subscription + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum MessagingRocketmqMessageTypeValues : Swift.String { + case normal + case fifo + case delay + case transaction + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum MessagingRocketmqConsumptionModelValues : Swift.String { + case clustering + case broadcasting + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum RpcGrpcStatusCodeValues : Swift.Int { + case ok + case cancelled + case unknown + case invalid_argument + case deadline_exceeded + case not_found + case already_exists + case permission_denied + case resource_exhausted + case failed_precondition + case aborted + case out_of_range + case unimplemented + case `internal` + case unavailable + case data_loss + case unauthenticated + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } + } + public enum MessageTypeValues : Swift.String { + case sent + case received + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum RpcConnectRpcErrorCodeValues : Swift.String { + case cancelled + case unknown + case invalid_argument + case deadline_exceeded + case not_found + case already_exists + case permission_denied + case resource_exhausted + case failed_precondition + case aborted + case out_of_range + case unimplemented + case `internal` + case unavailable + case data_loss + case unauthenticated + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum Severity : Swift.Int, Swift.Comparable, Swift.CustomStringConvertible, Swift.Codable { + case trace, trace2, trace3, trace4, debug, debug2, debug3, debug4, info, info2, info3, info4, warn, warn2, warn3, warn4, error, error2, error3, error4, fatal, fatal2, fatal3, fatal4 + public var description: Swift.String { + get + } + public static func < (lhs: VideoSDKRTC.Severity, rhs: VideoSDKRTC.Severity) -> Swift.Bool + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public struct SimpleExtensionMap : VideoSDKRTC.ExtensionMap, Swift.ExpressibleByArrayLiteral { + public typealias Element = VideoSDKRTC.AnyMessageExtension + public init() + public init(arrayLiteral: any VideoSDKRTC.AnyMessageExtension...) + public init(_ others: VideoSDKRTC.SimpleExtensionMap...) + public subscript(messageType: any VideoSDKRTC.Message.Type, fieldNumber: Swift.Int) -> (any VideoSDKRTC.AnyMessageExtension)? { + get + } + public func fieldNumberForProto(messageType: any VideoSDKRTC.Message.Type, protoFieldName: Swift.String) -> Swift.Int? + public mutating func insert(_ newValue: any VideoSDKRTC.AnyMessageExtension) + public mutating func insert(contentsOf: [any VideoSDKRTC.AnyMessageExtension]) + public mutating func formUnion(_ other: VideoSDKRTC.SimpleExtensionMap) + public func union(_ other: VideoSDKRTC.SimpleExtensionMap) -> VideoSDKRTC.SimpleExtensionMap + public typealias ArrayLiteralElement = any VideoSDKRTC.AnyMessageExtension +} +public class SimpleLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public init(logRecordExporter: any VideoSDKRTC.LogRecordExporter) + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + @objc deinit +} +public struct SimpleSpanProcessor : VideoSDKRTC.SpanProcessor { + public let isStartRequired: Swift.Bool + public let isEndRequired: Swift.Bool + public func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + public mutating func onEnd(span: any VideoSDKRTC.ReadableSpan) + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) + public init(spanExporter: any VideoSDKRTC.SpanExporter) + public func reportingOnlySampled(sampled: Swift.Bool) -> VideoSDKRTC.SimpleSpanProcessor +} +public struct Google_Protobuf_SourceContext { + public var fileName: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_SourceContext : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_SourceContext : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_SourceContext, rhs: VideoSDKRTC.Google_Protobuf_SourceContext) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol Span : AnyObject, Swift.CustomStringConvertible { + var kind: VideoSDKRTC.SpanKind { get } + var context: VideoSDKRTC.SpanContext { get } + var isRecording: Swift.Bool { get } + var status: VideoSDKRTC.Status { get set } + var name: Swift.String { get set } + func setAttribute(key: Swift.String, value: VideoSDKRTC.AttributeValue?) + func addEvent(name: Swift.String) + func addEvent(name: Swift.String, timestamp: Foundation.Date) + func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue], timestamp: Foundation.Date) + func end() + func end(time: Foundation.Date) +} +extension VideoSDKRTC.Span { + public func hash(into hasher: inout Swift.Hasher) + public static func == (lhs: any VideoSDKRTC.Span, rhs: any VideoSDKRTC.Span) -> Swift.Bool +} +extension VideoSDKRTC.Span { + public func setAttribute(key: Swift.String, value: Swift.String) + public func setAttribute(key: Swift.String, value: Swift.Int) + public func setAttribute(key: Swift.String, value: Swift.Double) + public func setAttribute(key: Swift.String, value: Swift.Bool) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.String) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.Int) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.Double) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.Bool) +} +extension VideoSDKRTC.Span { + public func putHttpHostAttribute(string hostName: Swift.String, int port: Swift.Int) + public func putHttpStatusCode(statusCode: Swift.Int, reasonPhrase: Swift.String) +} +public struct SpanAdapter { + public static func toProtoResourceSpans(spanDataList: [VideoSDKRTC.SpanData]) -> [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans] + public static func toProtoSpan(spanData: VideoSDKRTC.SpanData) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span +} +public protocol SpanBuilder : AnyObject { + @discardableResult + func setParent(_ parent: any VideoSDKRTC.Span) -> Self + @discardableResult + func setParent(_ parent: VideoSDKRTC.SpanContext) -> Self + @discardableResult + func setNoParent() -> Self + @discardableResult + func addLink(spanContext: VideoSDKRTC.SpanContext) -> Self + @discardableResult + func addLink(spanContext: VideoSDKRTC.SpanContext, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.String) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.Int) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.Double) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.Bool) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: VideoSDKRTC.AttributeValue) -> Self + @discardableResult + func setSpanKind(spanKind: VideoSDKRTC.SpanKind) -> Self + @discardableResult + func setStartTime(time: Foundation.Date) -> Self + @discardableResult + func setActive(_ active: Swift.Bool) -> Self + func startSpan() -> any VideoSDKRTC.Span +} +extension VideoSDKRTC.SpanBuilder { + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.String) -> Self + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.Int) -> Self + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.Double) -> Self + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.Bool) -> Self +} +public struct SpanContext : Swift.Equatable, Swift.CustomStringConvertible, Swift.Hashable, Swift.Codable { + public var traceId: VideoSDKRTC.TraceId { + get + } + public var spanId: VideoSDKRTC.SpanId { + get + } + public var traceFlags: VideoSDKRTC.TraceFlags { + get + } + public var traceState: VideoSDKRTC.TraceState + public let isRemote: Swift.Bool + public static func create(traceId: VideoSDKRTC.TraceId, spanId: VideoSDKRTC.SpanId, traceFlags: VideoSDKRTC.TraceFlags, traceState: VideoSDKRTC.TraceState) -> VideoSDKRTC.SpanContext + public static func createFromRemoteParent(traceId: VideoSDKRTC.TraceId, spanId: VideoSDKRTC.SpanId, traceFlags: VideoSDKRTC.TraceFlags, traceState: VideoSDKRTC.TraceState) -> VideoSDKRTC.SpanContext + public var isValid: Swift.Bool { + get + } + public var isSampled: Swift.Bool { + get + } + public static func == (lhs: VideoSDKRTC.SpanContext, rhs: VideoSDKRTC.SpanContext) -> Swift.Bool + public var description: Swift.String { + get + } + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public struct SpanData : Swift.Equatable, Swift.Codable { + public var traceId: VideoSDKRTC.TraceId { + get + } + public var spanId: VideoSDKRTC.SpanId { + get + } + public var traceFlags: VideoSDKRTC.TraceFlags { + get + } + public var traceState: VideoSDKRTC.TraceState { + get + } + public var parentSpanId: VideoSDKRTC.SpanId? { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScope: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var name: Swift.String { + get + } + public var kind: VideoSDKRTC.SpanKind { + get + } + public var startTime: Foundation.Date { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public var events: [VideoSDKRTC.SpanData.Event] { + get + } + public var links: [VideoSDKRTC.SpanData.Link] { + get + } + public var status: VideoSDKRTC.Status { + get + } + public var endTime: Foundation.Date { + get + } + public var hasRemoteParent: Swift.Bool { + get + } + public var hasEnded: Swift.Bool { + get + } + public var totalRecordedEvents: Swift.Int { + get + } + public var totalRecordedLinks: Swift.Int { + get + } + public var totalAttributeCount: Swift.Int { + get + } + public static func == (lhs: VideoSDKRTC.SpanData, rhs: VideoSDKRTC.SpanData) -> Swift.Bool + @discardableResult + public mutating func settingName(_ name: Swift.String) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTraceId(_ traceId: VideoSDKRTC.TraceId) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingSpanId(_ spanId: VideoSDKRTC.SpanId) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTraceFlags(_ traceFlags: VideoSDKRTC.TraceFlags) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTraceState(_ traceState: VideoSDKRTC.TraceState) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingStartTime(_ time: Foundation.Date) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingEndTime(_ time: Foundation.Date) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingKind(_ kind: VideoSDKRTC.SpanKind) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingLinks(_ links: [VideoSDKRTC.SpanData.Link]) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingParentSpanId(_ parentSpanId: VideoSDKRTC.SpanId) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingResource(_ resource: VideoSDKRTC.Resource) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingStatus(_ status: VideoSDKRTC.Status) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingEvents(_ events: [VideoSDKRTC.SpanData.Event]) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingHasRemoteParent(_ hasRemoteParent: Swift.Bool) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingHasEnded(_ hasEnded: Swift.Bool) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTotalRecordedEvents(_ totalRecordedEvents: Swift.Int) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTotalRecordedLinks(_ totalRecordedLinks: Swift.Int) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTotalAttributeCount(_ totalAttributeCount: Swift.Int) -> VideoSDKRTC.SpanData + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.SpanData { + public struct Event : Swift.Equatable, Swift.Codable { + public var timestamp: Foundation.Date { + get + } + public var name: Swift.String { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public init(name: Swift.String, timestamp: Foundation.Date, attributes: [Swift.String : VideoSDKRTC.AttributeValue]? = nil) + public init(timestamp: Foundation.Date, event: VideoSDKRTC.SpanData.Event) + public static func == (a: VideoSDKRTC.SpanData.Event, b: VideoSDKRTC.SpanData.Event) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } +} +extension VideoSDKRTC.SpanData { + public struct Link : Swift.Codable { + public let context: VideoSDKRTC.SpanContext + public let attributes: [Swift.String : VideoSDKRTC.AttributeValue] + public init(context: VideoSDKRTC.SpanContext, attributes: [Swift.String : VideoSDKRTC.AttributeValue] = [String: AttributeValue]()) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } +} +public func == (lhs: VideoSDKRTC.SpanData.Link, rhs: VideoSDKRTC.SpanData.Link) -> Swift.Bool +public func == (lhs: [VideoSDKRTC.SpanData.Link], rhs: [VideoSDKRTC.SpanData.Link]) -> Swift.Bool +public protocol SpanExporter : AnyObject { + @discardableResult + func export(spans: [VideoSDKRTC.SpanData]) -> VideoSDKRTC.SpanExporterResultCode + func flush() -> VideoSDKRTC.SpanExporterResultCode + func shutdown() +} +public enum SpanExporterResultCode { + case success + case failure + public static func == (a: VideoSDKRTC.SpanExporterResultCode, b: VideoSDKRTC.SpanExporterResultCode) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct SpanId : Swift.Equatable, Swift.Comparable, Swift.Hashable, Swift.CustomStringConvertible, Swift.Codable { + public static let size: Swift.Int + public static let invalidId: Swift.UInt64 + public static let invalid: VideoSDKRTC.SpanId + public static func getSize() -> Swift.Int + public init(id: Swift.UInt64) + public init() + public static func random() -> VideoSDKRTC.SpanId + public init(fromBytes bytes: Swift.Array, withOffset offset: Swift.Int = 0) + public init(fromBytes bytes: Swift.ArraySlice, withOffset offset: Swift.Int = 0) + public init(fromBytes bytes: Swift.ArraySlice, withOffset offset: Swift.Int = 0) + public func copyBytesTo(dest: inout Foundation.Data, destOffset: Swift.Int) + public func copyBytesTo(dest: inout Swift.Array, destOffset: Swift.Int) + public func copyBytesTo(dest: inout Swift.ArraySlice, destOffset: Swift.Int) + public init(fromHexString hex: Swift.String, withOffset offset: Swift.Int = 0) + public var hexString: Swift.String { + get + } + public var rawValue: Swift.UInt64 { + get + } + public var isValid: Swift.Bool { + get + } + public var description: Swift.String { + get + } + public static func < (lhs: VideoSDKRTC.SpanId, rhs: VideoSDKRTC.SpanId) -> Swift.Bool + public static func == (lhs: VideoSDKRTC.SpanId, rhs: VideoSDKRTC.SpanId) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public enum SpanKind : Swift.String, Swift.Equatable, Swift.Codable { + case `internal` + case server + case client + case producer + case consumer + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct SpanLimits : Swift.Equatable { + public var attributeCountLimit: Swift.Int { + get + } + public var eventCountLimit: Swift.Int { + get + } + public var linkCountLimit: Swift.Int { + get + } + public var attributePerEventCountLimit: Swift.Int { + get + } + public var attributePerLinkCountLimit: Swift.Int { + get + } + public init() + @discardableResult + public func settingAttributeCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingEventCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingLinkCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingAttributePerEventCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingAttributePerLinkCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + public static func == (lhs: VideoSDKRTC.SpanLimits, rhs: VideoSDKRTC.SpanLimits) -> Swift.Bool +} +public protocol SpanProcessor { + var isStartRequired: Swift.Bool { get } + var isEndRequired: Swift.Bool { get } + func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + mutating func onEnd(span: any VideoSDKRTC.ReadableSpan) + mutating func shutdown() + func forceFlush(timeout: Foundation.TimeInterval?) +} +public protocol SPBDecoder { + mutating func handleConflictingOneOf() throws + mutating func nextFieldNumber() throws -> Swift.Int? + mutating func decodeSingularFloatField(value: inout Swift.Float) throws + mutating func decodeSingularFloatField(value: inout Swift.Float?) throws + mutating func decodeRepeatedFloatField(value: inout [Swift.Float]) throws + mutating func decodeSingularDoubleField(value: inout Swift.Double) throws + mutating func decodeSingularDoubleField(value: inout Swift.Double?) throws + mutating func decodeRepeatedDoubleField(value: inout [Swift.Double]) throws + mutating func decodeSingularInt32Field(value: inout Swift.Int32) throws + mutating func decodeSingularInt32Field(value: inout Swift.Int32?) throws + mutating func decodeRepeatedInt32Field(value: inout [Swift.Int32]) throws + mutating func decodeSingularInt64Field(value: inout Swift.Int64) throws + mutating func decodeSingularInt64Field(value: inout Swift.Int64?) throws + mutating func decodeRepeatedInt64Field(value: inout [Swift.Int64]) throws + mutating func decodeSingularUInt32Field(value: inout Swift.UInt32) throws + mutating func decodeSingularUInt32Field(value: inout Swift.UInt32?) throws + mutating func decodeRepeatedUInt32Field(value: inout [Swift.UInt32]) throws + mutating func decodeSingularUInt64Field(value: inout Swift.UInt64) throws + mutating func decodeSingularUInt64Field(value: inout Swift.UInt64?) throws + mutating func decodeRepeatedUInt64Field(value: inout [Swift.UInt64]) throws + mutating func decodeSingularSInt32Field(value: inout Swift.Int32) throws + mutating func decodeSingularSInt32Field(value: inout Swift.Int32?) throws + mutating func decodeRepeatedSInt32Field(value: inout [Swift.Int32]) throws + mutating func decodeSingularSInt64Field(value: inout Swift.Int64) throws + mutating func decodeSingularSInt64Field(value: inout Swift.Int64?) throws + mutating func decodeRepeatedSInt64Field(value: inout [Swift.Int64]) throws + mutating func decodeSingularFixed32Field(value: inout Swift.UInt32) throws + mutating func decodeSingularFixed32Field(value: inout Swift.UInt32?) throws + mutating func decodeRepeatedFixed32Field(value: inout [Swift.UInt32]) throws + mutating func decodeSingularFixed64Field(value: inout Swift.UInt64) throws + mutating func decodeSingularFixed64Field(value: inout Swift.UInt64?) throws + mutating func decodeRepeatedFixed64Field(value: inout [Swift.UInt64]) throws + mutating func decodeSingularSFixed32Field(value: inout Swift.Int32) throws + mutating func decodeSingularSFixed32Field(value: inout Swift.Int32?) throws + mutating func decodeRepeatedSFixed32Field(value: inout [Swift.Int32]) throws + mutating func decodeSingularSFixed64Field(value: inout Swift.Int64) throws + mutating func decodeSingularSFixed64Field(value: inout Swift.Int64?) throws + mutating func decodeRepeatedSFixed64Field(value: inout [Swift.Int64]) throws + mutating func decodeSingularBoolField(value: inout Swift.Bool) throws + mutating func decodeSingularBoolField(value: inout Swift.Bool?) throws + mutating func decodeRepeatedBoolField(value: inout [Swift.Bool]) throws + mutating func decodeSingularStringField(value: inout Swift.String) throws + mutating func decodeSingularStringField(value: inout Swift.String?) throws + mutating func decodeRepeatedStringField(value: inout [Swift.String]) throws + mutating func decodeSingularBytesField(value: inout Foundation.Data) throws + mutating func decodeSingularBytesField(value: inout Foundation.Data?) throws + mutating func decodeRepeatedBytesField(value: inout [Foundation.Data]) throws + mutating func decodeSingularEnumField(value: inout E) throws where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + mutating func decodeSingularEnumField(value: inout E?) throws where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + mutating func decodeRepeatedEnumField(value: inout [E]) throws where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + mutating func decodeSingularMessageField(value: inout M?) throws where M : VideoSDKRTC.Message + mutating func decodeRepeatedMessageField(value: inout [M]) throws where M : VideoSDKRTC.Message + mutating func decodeSingularGroupField(value: inout G?) throws where G : VideoSDKRTC.Message + mutating func decodeRepeatedGroupField(value: inout [G]) throws where G : VideoSDKRTC.Message + mutating func decodeMapField(fieldType: VideoSDKRTC._ProtobufMap.Type, value: inout VideoSDKRTC._ProtobufMap.BaseType) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.MapValueType + mutating func decodeMapField(fieldType: VideoSDKRTC._ProtobufEnumMap.Type, value: inout VideoSDKRTC._ProtobufEnumMap.BaseType) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.Enum, ValueType.RawValue == Swift.Int + mutating func decodeMapField(fieldType: VideoSDKRTC._ProtobufMessageMap.Type, value: inout VideoSDKRTC._ProtobufMessageMap.BaseType) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : Swift.Hashable, ValueType : VideoSDKRTC.Message + mutating func decodeExtensionField(values: inout VideoSDKRTC.ExtensionFieldValueSet, messageType: any VideoSDKRTC.Message.Type, fieldNumber: Swift.Int) throws + mutating func decodeExtensionFieldsAsMessageSet(values: inout VideoSDKRTC.ExtensionFieldValueSet, messageType: any VideoSDKRTC.Message.Type) throws +} +extension VideoSDKRTC.SPBDecoder { + public mutating func decodeExtensionFieldsAsMessageSet(values: inout VideoSDKRTC.ExtensionFieldValueSet, messageType: any VideoSDKRTC.Message.Type) throws +} +public protocol StableAggregator { + func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + func createHandle() -> VideoSDKRTC.AggregatorHandle + func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData +} +public protocol StableMeter { + func counterBuilder(name: Swift.String) -> any VideoSDKRTC.LongCounterBuilder + func upDownCounterBuilder(name: Swift.String) -> any VideoSDKRTC.LongUpDownCounterBuilder + func histogramBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleHistogramBuilder + func gaugeBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleGaugeBuilder +} +public protocol StableMeterProvider : AnyObject { + func get(name: Swift.String) -> any VideoSDKRTC.StableMeter + func meterBuilder(name: Swift.String) -> any VideoSDKRTC.MeterBuilder +} +public class StableMeterProviderBuilder { + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var metricReaders: [any VideoSDKRTC.StableMetricReader] { + get + } + public var registeredViews: [VideoSDKRTC.RegisteredView] { + get + } + public var exemplarFilter: any VideoSDKRTC.ExemplarFilter { + get + } + public init() + public func setClock(clock: any VideoSDKRTC.Clock) -> Self + public func setResource(resource: VideoSDKRTC.Resource) -> Self + public func registerView(selector: VideoSDKRTC.InstrumentSelector, view: VideoSDKRTC.StableView) -> Self + public func registerMetricReader(reader: any VideoSDKRTC.StableMetricReader) -> Self + public func build() -> VideoSDKRTC.StableMeterProviderSdk + @objc deinit +} +@_hasMissingDesignatedInitializers public class MeterProviderError : Swift.Error { + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableMeterProviderSdk : VideoSDKRTC.StableMeterProvider { + public func get(name: Swift.String) -> any VideoSDKRTC.StableMeter + public func meterBuilder(name: Swift.String) -> any VideoSDKRTC.MeterBuilder + public static func builder() -> VideoSDKRTC.StableMeterProviderBuilder + public func shutdown() -> VideoSDKRTC.ExportResult + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public class MeterProviderSharedState { + public init(clock: any VideoSDKRTC.Clock, resource: VideoSDKRTC.Resource, startEpochNanos: Swift.UInt64, exemplarFilter: any VideoSDKRTC.ExemplarFilter) + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var startEpochNanos: Swift.UInt64 { + get + } + public var exemplarFilter: any VideoSDKRTC.ExemplarFilter { + get + } + @objc deinit +} +public enum MetricDataType { + case LongGauge + case DoubleGauge + case LongSum + case DoubleSum + case Summary + case Histogram + case ExponentialHistogram + public static func == (a: VideoSDKRTC.MetricDataType, b: VideoSDKRTC.MetricDataType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct StableMetricData : Swift.Equatable { + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var name: Swift.String { + get + } + public var description: Swift.String { + get + } + public var unit: Swift.String { + get + } + public var type: VideoSDKRTC.MetricDataType { + get + } + public var data: VideoSDKRTC.StableMetricData.Data { + get + } + public static let empty: VideoSDKRTC.StableMetricData + @_hasMissingDesignatedInitializers public class Data : Swift.Equatable { + public var points: [VideoSDKRTC.PointData] { + get + } + public static func == (lhs: VideoSDKRTC.StableMetricData.Data, rhs: VideoSDKRTC.StableMetricData.Data) -> Swift.Bool + @objc deinit + } + public static func == (lhs: VideoSDKRTC.StableMetricData, rhs: VideoSDKRTC.StableMetricData) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class StableHistogramData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableExponentialHistogramData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableGaugeData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableSumData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableSummaryData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +public protocol StableMetricExporter : VideoSDKRTC.AggregationTemporalitySelectorProtocol, VideoSDKRTC.DefaultAggregationSelector { + func export(metrics: [VideoSDKRTC.StableMetricData]) -> VideoSDKRTC.ExportResult + func flush() -> VideoSDKRTC.ExportResult + func shutdown() -> VideoSDKRTC.ExportResult +} +extension VideoSDKRTC.StableMetricExporter { + public func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +} +public protocol StableMetricReader : VideoSDKRTC.AggregationTemporalitySelectorProtocol, VideoSDKRTC.DefaultAggregationSelector { + func forceFlush() -> VideoSDKRTC.ExportResult + func shutdown() -> VideoSDKRTC.ExportResult + func register(registration: any VideoSDKRTC.CollectionRegistration) +} +@_hasMissingDesignatedInitializers public class StableObservableMeasurementSdk : VideoSDKRTC.ObservableLongMeasurement, VideoSDKRTC.ObservableDoubleMeasurement { + public var descriptor: VideoSDKRTC.InstrumentDescriptor { + get + } + public var storages: [VideoSDKRTC.AsynchronousMetricStorage] { + get + } + public func clearActiveReader() + public func record(value: Swift.Int) + public func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func record(value: Swift.Double) + public func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public class StablePeriodicMetricReaderBuilder { + public var exporter: any VideoSDKRTC.StableMetricExporter { + get + } + public var exporterInterval: Swift.Double { + get + } + public init(exporter: any VideoSDKRTC.StableMetricExporter) + public func setInterval(timeInterval: Foundation.TimeInterval) -> Self + public func build() -> VideoSDKRTC.StablePeriodicMetricReaderSdk + @objc deinit +} +@_hasMissingDesignatedInitializers public class StablePeriodicMetricReaderSdk : VideoSDKRTC.StableMetricReader { + @objc deinit + public func register(registration: any VideoSDKRTC.CollectionRegistration) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + public func getAggregationTemporality(for instrument: VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality + public func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +} +@_hasMissingDesignatedInitializers public class StableView { + public var name: Swift.String? { + get + } + public var description: Swift.String? { + get + } + public var aggregation: any VideoSDKRTC.Aggregation { + get + } + public var attributeProcessor: VideoSDKRTC.AttributeProcessor { + get + } + public static func builder() -> VideoSDKRTC.ViewBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableViewRegistry { + public func findViews(descriptor: VideoSDKRTC.InstrumentDescriptor, meterScope: VideoSDKRTC.InstrumentationScopeInfo) -> [VideoSDKRTC.RegisteredView] + @objc deinit +} +public enum Status : Swift.Equatable { + case ok + case unset + case error(description: Swift.String) + public var isOk: Swift.Bool { + get + } + public var isError: Swift.Bool { + get + } + public var name: Swift.String { + get + } + public var code: Swift.Int { + get + } + public static func == (a: VideoSDKRTC.Status, b: VideoSDKRTC.Status) -> Swift.Bool +} +extension VideoSDKRTC.Status : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} +extension VideoSDKRTC.Status : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct StringUtils { + public static func isPrintableString(_ string: Swift.String) -> Swift.Bool + public static func isValidMetricName(_ metricName: Swift.String) -> Swift.Bool +} +public enum Google_Protobuf_NullValue : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case nullValue + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_NullValue] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_NullValue] +} +public struct Google_Protobuf_Struct { + public var fields: [Swift.String : VideoSDKRTC.Google_Protobuf_Value] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Value { + public var kind: VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind? + public var nullValue: VideoSDKRTC.Google_Protobuf_NullValue { + get + set + } + public var numberValue: Swift.Double { + get + set + } + public var stringValue: Swift.String { + get + set + } + public var boolValue: Swift.Bool { + get + set + } + public var structValue: VideoSDKRTC.Google_Protobuf_Struct { + get + set + } + public var listValue: VideoSDKRTC.Google_Protobuf_ListValue { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Kind : Swift.Equatable { + case nullValue(VideoSDKRTC.Google_Protobuf_NullValue) + case numberValue(Swift.Double) + case stringValue(Swift.String) + case boolValue(Swift.Bool) + case structValue(VideoSDKRTC.Google_Protobuf_Struct) + case listValue(VideoSDKRTC.Google_Protobuf_ListValue) + public static func == (a: VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind, b: VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind) -> Swift.Bool + } + public init() +} +public struct Google_Protobuf_ListValue { + public var values: [VideoSDKRTC.Google_Protobuf_Value] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Struct : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ListValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_NullValue : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_Struct : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Struct, rhs: VideoSDKRTC.Google_Protobuf_Struct) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Value, rhs: VideoSDKRTC.Google_Protobuf_Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ListValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ListValue, rhs: VideoSDKRTC.Google_Protobuf_ListValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class SumAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.SumAggregation { + get + } + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + @objc deinit +} +@_hasMissingDesignatedInitializers public class SumAggregator { + final public let isMonotonic: Swift.Bool + @objc deinit +} +@_hasMissingDesignatedInitializers public class SummaryPointData : VideoSDKRTC.PointData { + public var count: Swift.UInt64 + public var sum: Swift.Double + public var values: [any VideoSDKRTC.ValueAtQuantile] + @objc deinit +} +extension Swift.Double { + public var toMilliseconds: Swift.UInt64 { + get + } + public var toMicroseconds: Swift.UInt64 { + get + } + public var toNanoseconds: Swift.UInt64 { + get + } + public static func fromMilliseconds(_ millis: Swift.Int64) -> Foundation.TimeInterval + public static func fromMicroseconds(_ micros: Swift.Int64) -> Foundation.TimeInterval + public static func fromNanoseconds(_ nanos: Swift.Int64) -> Foundation.TimeInterval +} +public protocol SwiftProtobufContiguousBytes { + init(repeating: Swift.UInt8, count: Swift.Int) + init(_ sequence: S) where S : Swift.Sequence, S.Element == Swift.UInt8 + var count: Swift.Int { get } + func withUnsafeBytes(_ body: (Swift.UnsafeRawBufferPointer) throws -> R) rethrows -> R + mutating func withUnsafeMutableBytes(_ body: (Swift.UnsafeMutableRawBufferPointer) throws -> R) rethrows -> R +} +extension Swift.Array : VideoSDKRTC.SwiftProtobufContiguousBytes where Element == Swift.UInt8 { +} +extension Foundation.Data : VideoSDKRTC.SwiftProtobufContiguousBytes { +} +@_hasMissingDesignatedInitializers public class SynchronousMetricStorage { + public var metricDescriptor: VideoSDKRTC.MetricDescriptor { + get + } + public func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + public func isEmpty() -> Swift.Bool + public func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public enum TextFormatDecodingError : Swift.Error { + case malformedText + case malformedNumber + case trailingGarbage + case truncated + case invalidUTF8 + case schemaMismatch + case missingFieldNames + case unknownField + case unrecognizedEnumValue + case conflictingOneOf + case internalExtensionError + case messageDepthLimit + public static func == (a: VideoSDKRTC.TextFormatDecodingError, b: VideoSDKRTC.TextFormatDecodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct TextFormatDecodingOptions : Swift.Sendable { + public var messageDepthLimit: Swift.Int + public init() +} +public struct TextFormatEncodingOptions : Swift.Sendable { + public var printUnknownFields: Swift.Bool + public init() +} +public protocol TextMapBaggagePropagator { + var fields: Swift.Set { get } + func inject(baggage: any VideoSDKRTC.Baggage, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + @discardableResult + func extract(carrier: [Swift.String : Swift.String], getter: G) -> (any VideoSDKRTC.Baggage)? where G : VideoSDKRTC.Getter +} +public protocol TextMapPropagator { + var fields: Swift.Set { get } + func inject(spanContext: VideoSDKRTC.SpanContext, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + @discardableResult + func extract(carrier: [Swift.String : Swift.String], getter: G) -> VideoSDKRTC.SpanContext? where G : VideoSDKRTC.Getter +} +public protocol Setter { + func set(carrier: inout [Swift.String : Swift.String], key: Swift.String, value: Swift.String) +} +public protocol Getter { + func get(carrier: [Swift.String : Swift.String], key: Swift.String) -> [Swift.String]? +} +public struct Google_Protobuf_Timestamp { + public var seconds: Swift.Int64 + public var nanos: Swift.Int32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Timestamp : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Timestamp : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Timestamp) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Opentelemetry_Proto_Trace_V1_TracesData { + public var resourceSpans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Trace_V1_ResourceSpans { + public var resource: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource { + get + set + } + public var hasResource: Swift.Bool { + get + } + public mutating func clearResource() + public var scopeSpans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Trace_V1_ScopeSpans { + public var scope: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope { + get + set + } + public var hasScope: Swift.Bool { + get + } + public mutating func clearScope() + public var spans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Trace_V1_Span { + public var traceID: Foundation.Data + public var spanID: Foundation.Data + public var traceState: Swift.String + public var parentSpanID: Foundation.Data + public var name: Swift.String + public var kind: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind + public var startTimeUnixNano: Swift.UInt64 + public var endTimeUnixNano: Swift.UInt64 + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var events: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event] + public var droppedEventsCount: Swift.UInt32 + public var links: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link] + public var droppedLinksCount: Swift.UInt32 + public var status: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status { + get + set + } + public var hasStatus: Swift.Bool { + get + } + public mutating func clearStatus() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum SpanKind : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unspecified + case `internal` + case server + case client + case producer + case consumer + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + } + public struct Event { + public var timeUnixNano: Swift.UInt64 + public var name: Swift.String + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public struct Link { + public var traceID: Foundation.Data + public var spanID: Foundation.Data + public var traceState: Swift.String + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind] +} +public struct Opentelemetry_Proto_Trace_V1_Status { + public var message: Swift.String + public var code: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum StatusCode : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unset + case ok + case error + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + } + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode] +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +public struct Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest { + public var resourceSpans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse { + public var partialSuccess: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess { + get + set + } + public var hasPartialSuccess: Swift.Bool { + get + } + public mutating func clearPartialSuccess() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess { + public var rejectedSpans: Swift.Int64 + public var errorMessage: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() } -extension Swift.String { - public func toJSON() -> [Swift.String : Any] +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest : @unchecked Swift.Sendable { } -extension Swift.Dictionary { - public func toJSONString() -> Swift.String +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse : @unchecked Swift.Sendable { } -extension Swift.Array { - public func toJSONString() -> Swift.String +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess : @unchecked Swift.Sendable { } -extension Swift.Encodable { - public func toJSON() -> [Swift.String : Any] - public func toJSONArray() -> [Any] +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -public struct LivestreamOutput : Swift.Codable { - public let url: Swift.String - public let streamKey: Swift.String - public init(url: Swift.String, streamKey: Swift.String) - public func encode(to encoder: Swift.Encoder) throws - public init(from decoder: Swift.Decoder) throws +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -@_hasMissingDesignatedInitializers public class MediaStream : Swift.Equatable { - public var id: Swift.String { +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess) -> Swift.Bool + public var hashValue: Swift.Int { get } - public var kind: VideoSDKRTC.MediaType { +} +public struct TraceFlags : Swift.Equatable, Swift.CustomStringConvertible, Swift.Codable { + public var byte: Swift.UInt8 { get } - public var track: WebRTC.RTCMediaStreamTrack { + public var hexString: Swift.String { get } - public var producer: Mediasoup.Producer? { + public init() + public init(fromByte src: Swift.UInt8) + public init(fromHexString hex: Swift.String, withOffset offset: Swift.Int = 0) + public var sampled: Swift.Bool { get } - public var consumer: Mediasoup.Consumer? { + public mutating func setIsSampled(_ isSampled: Swift.Bool) + public func settingIsSampled(_ isSampled: Swift.Bool) -> VideoSDKRTC.TraceFlags + public var description: Swift.String { get } - @objc deinit + public static func == (a: VideoSDKRTC.TraceFlags, b: VideoSDKRTC.TraceFlags) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -extension VideoSDKRTC.MediaStream { - public func pause() - public func resume() +public struct TraceId : Swift.Comparable, Swift.Hashable, Swift.CustomStringConvertible, Swift.Equatable, Swift.Codable { + public static let size: Swift.Int + public static let invalidId: Swift.UInt64 + public static let invalid: VideoSDKRTC.TraceId + public var idHi: Swift.UInt64 { + get + } + public var idLo: Swift.UInt64 { + get + } + public init(idHi: Swift.UInt64, idLo: Swift.UInt64) + public init() + public static func random() -> VideoSDKRTC.TraceId + public init(fromData data: Foundation.Data) + public init(fromBytes bytes: [Swift.UInt8]) + public init(fromBytes bytes: Swift.ArraySlice) + public init(fromBytes bytes: Swift.ArraySlice) + public func copyBytesTo(dest: inout Foundation.Data, destOffset: Swift.Int) + public func copyBytesTo(dest: inout [Swift.UInt8], destOffset: Swift.Int) + public func copyBytesTo(dest: inout Swift.ArraySlice, destOffset: Swift.Int) + public init(fromHexString hex: Swift.String, withOffset offset: Swift.Int = 0) + public var isValid: Swift.Bool { + get + } + public var hexString: Swift.String { + get + } + public var rawHigherLong: Swift.UInt64 { + get + } + public var rawLowerLong: Swift.UInt64 { + get + } + public var description: Swift.String { + get + } + public static func < (lhs: VideoSDKRTC.TraceId, rhs: VideoSDKRTC.TraceId) -> Swift.Bool + public static func == (lhs: VideoSDKRTC.TraceId, rhs: VideoSDKRTC.TraceId) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws } -extension VideoSDKRTC.MediaStream { - public static func == (lhs: VideoSDKRTC.MediaStream, rhs: VideoSDKRTC.MediaStream) -> Swift.Bool +public protocol Tracer : AnyObject { + func spanBuilder(spanName: Swift.String) -> any VideoSDKRTC.SpanBuilder } -public enum MediaType : Swift.Equatable { - case share - case state(value: Mediasoup.MediaKind) - public static func == (a: VideoSDKRTC.MediaType, b: VideoSDKRTC.MediaType) -> Swift.Bool +public protocol TracerProvider { + func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String?) -> any VideoSDKRTC.Tracer } -@_hasMissingDesignatedInitializers public class Meeting : Swift.Equatable { - public var id: Swift.String { +public class TracerProviderBuilder { + public var clock: any VideoSDKRTC.Clock { get } - public var localParticipant: VideoSDKRTC.Participant { + public var idGenerator: any VideoSDKRTC.IdGenerator { get } - public var participants: [Swift.String : VideoSDKRTC.Participant] { + public var resource: VideoSDKRTC.Resource { get } - public var pubsub: VideoSDKRTC.PubSub { + public var spanLimits: VideoSDKRTC.SpanLimits { get } - public var customVideoMediaStream: VideoSDKRTC.CustomRTCMediaStream? { + public var sampler: any VideoSDKRTC.Sampler { + get + } + public var spanProcessors: [any VideoSDKRTC.SpanProcessor] { get } + public init() + public func with(clock: any VideoSDKRTC.Clock) -> Self + public func with(idGenerator: any VideoSDKRTC.IdGenerator) -> Self + public func with(resource: VideoSDKRTC.Resource) -> Self + public func with(spanLimits: VideoSDKRTC.SpanLimits) -> Self + public func with(sampler: any VideoSDKRTC.Sampler) -> Self + public func add(spanProcessor: any VideoSDKRTC.SpanProcessor) -> Self + public func add(spanProcessors: [any VideoSDKRTC.SpanProcessor]) -> Self + public func build() -> VideoSDKRTC.TracerProviderSdk @objc deinit } -extension VideoSDKRTC.Meeting { - public func join(cameraPosition: AVFoundation.AVCaptureDevice.Position) - public func leave() - public func end() - public func enableWebcam(customVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil) - public func disableWebcam() - public func switchWebcam() - public func muteMic() - public func unmuteMic() - public func startRecording(webhookUrl: Swift.String) - public func stopRecording() - public func startLivestream(outputs: [VideoSDKRTC.LivestreamOutput]) - public func stopLivestream() +public class TracerProviderSdk : VideoSDKRTC.TracerProvider { + public init(clock: any VideoSDKRTC.Clock = MillisClock(), idGenerator: any VideoSDKRTC.IdGenerator = RandomIdGenerator(), resource: VideoSDKRTC.Resource = EnvVarResource.get(), spanLimits: VideoSDKRTC.SpanLimits = SpanLimits(), sampler: any VideoSDKRTC.Sampler = Samplers.parentBased(root: Samplers.alwaysOn), spanProcessors: [any VideoSDKRTC.SpanProcessor] = []) + @objc deinit + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Tracer + public func getActiveClock() -> any VideoSDKRTC.Clock + public func updateActiveClock(_ newClock: any VideoSDKRTC.Clock) + public func getActiveIdGenerator() -> any VideoSDKRTC.IdGenerator + public func updateActiveIdGenerator(_ newGenerator: any VideoSDKRTC.IdGenerator) + public func getActiveResource() -> VideoSDKRTC.Resource + public func updateActiveResource(_ newResource: VideoSDKRTC.Resource) + public func getActiveSpanLimits() -> VideoSDKRTC.SpanLimits + public func updateActiveSpanLimits(_ spanLimits: VideoSDKRTC.SpanLimits) + public func getActiveSampler() -> any VideoSDKRTC.Sampler + public func updateActiveSampler(_ newSampler: any VideoSDKRTC.Sampler) + public func getActiveSpanProcessors() -> [any VideoSDKRTC.SpanProcessor] + public func addSpanProcessor(_ spanProcessor: any VideoSDKRTC.SpanProcessor) + public func resetSpanProcessors() + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) } -extension VideoSDKRTC.Meeting { - public func addEventListener(_ meetingEventListener: VideoSDKRTC.MeetingEventListener) - public func removeEventListener(_ meetingEventListener: VideoSDKRTC.MeetingEventListener) +@_hasMissingDesignatedInitializers public class TracerSdk : VideoSDKRTC.Tracer { + final public let instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo + public func spanBuilder(spanName: Swift.String) -> any VideoSDKRTC.SpanBuilder + @objc deinit } -extension VideoSDKRTC.Meeting { - public static func == (lhs: VideoSDKRTC.Meeting, rhs: VideoSDKRTC.Meeting) -> Swift.Bool +public struct TraceState : Swift.Equatable, Swift.Codable { + public var entries: [VideoSDKRTC.TraceState.Entry] { + get + } + public init() + public init?(entries: [VideoSDKRTC.TraceState.Entry]) + public func get(key: Swift.String) -> Swift.String? + public func setting(key: Swift.String, value: Swift.String) -> VideoSDKRTC.TraceState + public func removing(key: Swift.String) -> VideoSDKRTC.TraceState + public struct Entry : Swift.Equatable, Swift.Codable { + public var key: Swift.String { + get + } + public var value: Swift.String { + get + } + public init?(key: Swift.String, value: Swift.String) + public static func == (a: VideoSDKRTC.TraceState.Entry, b: VideoSDKRTC.TraceState.Entry) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } + public static func == (a: VideoSDKRTC.TraceState, b: VideoSDKRTC.TraceState) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public protocol MeetingEventListener : AnyObject { - func onMeetingJoined() - func onMeetingLeft() - func onParticipantJoined(_ participant: VideoSDKRTC.Participant) - func onParticipantLeft(_ participant: VideoSDKRTC.Participant) - func onRecordingStarted() - func onRecordingStoppped() - func onLivestreamStarted() - func onLivestreamStopped() - func onSpeakerChanged(participantId: Swift.String?) - func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) - func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) +public enum Google_Protobuf_Syntax : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case proto2 + case proto3 + case editions + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_Syntax] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_Syntax] } -extension VideoSDKRTC.MeetingEventListener { - public func onMeetingJoined() - public func onMeetingLeft() - public func onParticipantJoined(_ participant: VideoSDKRTC.Participant) - public func onParticipantLeft(_ participant: VideoSDKRTC.Participant) - public func onRecordingStarted() - public func onRecordingStoppped() - public func onLivestreamStarted() - public func onLivestreamStopped() - public func onSpeakerChanged(participantId: Swift.String?) - public func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) - public func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) +public struct Google_Protobuf_Type { + public var name: Swift.String + public var fields: [VideoSDKRTC.Google_Protobuf_Field] + public var oneofs: [Swift.String] + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var sourceContext: VideoSDKRTC.Google_Protobuf_SourceContext { + get + set + } + public var hasSourceContext: Swift.Bool { + get + } + public mutating func clearSourceContext() + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var edition: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() } -@_hasMissingDesignatedInitializers public class Participant : Swift.Equatable { - public var id: Swift.String { +public struct Google_Protobuf_Field { + public var kind: VideoSDKRTC.Google_Protobuf_Field.Kind + public var cardinality: VideoSDKRTC.Google_Protobuf_Field.Cardinality + public var number: Swift.Int32 + public var name: Swift.String + public var typeURL: Swift.String + public var oneofIndex: Swift.Int32 + public var packed: Swift.Bool + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var jsonName: Swift.String + public var defaultValue: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum Kind : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case typeUnknown + case typeDouble + case typeFloat + case typeInt64 + case typeUint64 + case typeInt32 + case typeFixed64 + case typeFixed32 + case typeBool + case typeString + case typeGroup + case typeMessage + case typeBytes + case typeUint32 + case typeEnum + case typeSfixed32 + case typeSfixed64 + case typeSint32 + case typeSint64 + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_Field.Kind] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_Field.Kind] + } + public enum Cardinality : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case optional + case required + case repeated + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_Field.Cardinality] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_Field.Cardinality] + } + public init() +} +public struct Google_Protobuf_Enum { + public var name: Swift.String + public var enumvalue: [VideoSDKRTC.Google_Protobuf_EnumValue] + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var sourceContext: VideoSDKRTC.Google_Protobuf_SourceContext { get + set } - public var displayName: Swift.String { + public var hasSourceContext: Swift.Bool { get } - public var videoQuality: VideoSDKRTC.VideoQuality { + public mutating func clearSourceContext() + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var edition: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_EnumValue { + public var name: Swift.String + public var number: Swift.Int32 + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Option { + public var name: Swift.String + public var value: VideoSDKRTC.Google_Protobuf_Any { get + set } - public var isLocal: Swift.Bool { + public var hasValue: Swift.Bool { get } - public var streams: [Swift.String : VideoSDKRTC.MediaStream] { + public mutating func clearValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Type : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Field : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Enum : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Option : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Syntax : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_Type : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Type, rhs: VideoSDKRTC.Google_Protobuf_Type) -> Swift.Bool + public var hashValue: Swift.Int { get } - @objc deinit } -extension VideoSDKRTC.Participant { - public func enableMic() - public func disableMic() - public func enableWebcam() - public func disableWebcam() - public func remove() +extension VideoSDKRTC.Google_Protobuf_Field : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Field, rhs: VideoSDKRTC.Google_Protobuf_Field) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -extension VideoSDKRTC.Participant { - public func addStream(_ stream: VideoSDKRTC.MediaStream) - @discardableResult - public func removeStream(_ streamId: Swift.String) -> VideoSDKRTC.MediaStream? - public func removeAllStreams() - public func setQuality(_ quality: VideoSDKRTC.VideoQuality) +extension VideoSDKRTC.Google_Protobuf_Field.Kind : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap } -extension VideoSDKRTC.Participant { - public func addEventListener(_ listener: VideoSDKRTC.ParticipantEventListener) - public func removeEventListener(_ listener: VideoSDKRTC.ParticipantEventListener) +extension VideoSDKRTC.Google_Protobuf_Field.Cardinality : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap } -extension VideoSDKRTC.Participant { - public static func == (lhs: VideoSDKRTC.Participant, rhs: VideoSDKRTC.Participant) -> Swift.Bool +extension VideoSDKRTC.Google_Protobuf_Enum : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Enum, rhs: VideoSDKRTC.Google_Protobuf_Enum) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -public protocol ParticipantEventListener { - func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) - func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +extension VideoSDKRTC.Google_Protobuf_EnumValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumValue, rhs: VideoSDKRTC.Google_Protobuf_EnumValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -extension VideoSDKRTC.ParticipantEventListener { - public func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) - public func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +extension VideoSDKRTC.Google_Protobuf_Option : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Option, rhs: VideoSDKRTC.Google_Protobuf_Option) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -@_hasMissingDesignatedInitializers public class PubSub { +@available(*, deprecated, message: "Use MetricProcessorSdk instead") +public class UngroupedBatcher : VideoSDKRTC.MetricProcessor { + public init() + public func finishCollectionCycle() -> [VideoSDKRTC.Metric] + public func process(metric: VideoSDKRTC.Metric) @objc deinit } -extension VideoSDKRTC.PubSub { - public func publish(topic: Swift.String, message: Swift.String, options: [Swift.String : Any] = [:]) - public func subscribe(topic: Swift.String, forListener listener: VideoSDKRTC.PubSubMessageListener) - public func unsubscribe(topic: Swift.String, forListener listener: VideoSDKRTC.PubSubMessageListener) - public func getMessagesForTopic(_ topic: Swift.String) -> [VideoSDKRTC.PubSubMessage] +public struct UnknownStorage : Swift.Equatable, @unchecked Swift.Sendable { + public var data: Foundation.Data { + get + } + public init() + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (a: VideoSDKRTC.UnknownStorage, b: VideoSDKRTC.UnknownStorage) -> Swift.Bool } -@objc @_hasMissingDesignatedInitializers public class PubSubMessage : ObjectiveC.NSObject { - public var id: Swift.String - public var topic: Swift.String - public var message: Swift.String - public var senderId: Swift.String - public var senderName: Swift.String - public var timestamp: Swift.String - @objc deinit +public protocol ValueAtQuantile { + func quantile() -> Swift.Double + func value() -> Swift.Double } -public protocol PubSubMessageListener { - func onMessageReceived(_ message: VideoSDKRTC.PubSubMessage) +public struct Version { + public static let major: Swift.Int + public static let minor: Swift.Int + public static let revision: Swift.Int + public static let versionString: Swift.String } public enum VideoQuality : Swift.String, Swift.CaseIterable { case high, medium, low @@ -234,15 +8420,424 @@ public enum VideoQuality : Swift.String, Swift.CaseIterable { } @_hasMissingDesignatedInitializers final public class VideoSDK { public static func config(token: Swift.String) - public static func initMeeting(meetingId: Swift.String, participantId: Swift.String = "", participantName: Swift.String = "Guest", micEnabled: Swift.Bool = true, webcamEnabled: Swift.Bool = true, customCameraVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil) -> VideoSDKRTC.Meeting + public static func initMeeting(meetingId: Swift.String, participantId: Swift.String = "", participantName: Swift.String = "Guest", micEnabled: Swift.Bool = true, webcamEnabled: Swift.Bool = true, customCameraVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil, mode: VideoSDKRTC.Mode? = .CONFERENCE) -> VideoSDKRTC.Meeting public static func createCameraVideoTrack(encoderConfig: VideoSDKRTC.CustomVideoTrackConfig? = .h360p_w640p, facingMode: AVFoundation.AVCaptureDevice.Position? = .front, multiStream: Swift.Bool? = true) throws -> VideoSDKRTC.CustomRTCMediaStream? @objc deinit } +extension VideoSDKRTC.VideoSDK { + public static func getAudioPermissionStatus() -> VideoSDKRTC.authorisationStatus + public static func getVideoPermissionStatus() -> VideoSDKRTC.authorisationStatus + public static func getAudioPermission() + public static func getVideoPermission() + public static func getCameras() -> [Swift.String] + public static func getAudioDevices() -> [Swift.String] +} +@_hasMissingDesignatedInitializers public class ViewBuilder { + public func withName(name: Swift.String) -> Self + public func withDescription(description: Swift.String) -> Self + public func withAggregation(aggregation: any VideoSDKRTC.Aggregation) -> Self + public func addAttributeFilter(keyFilter: @escaping (Swift.String) -> Swift.Bool) -> Self + public func addAttributeProcessor(processor: VideoSDKRTC.AttributeProcessor) -> Self + public func build() -> VideoSDKRTC.StableView + @objc deinit +} +public protocol Visitor { + mutating func visitSingularFloatField(value: Swift.Float, fieldNumber: Swift.Int) throws + mutating func visitSingularDoubleField(value: Swift.Double, fieldNumber: Swift.Int) throws + mutating func visitSingularInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + mutating func visitSingularInt64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + mutating func visitSingularUInt32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + mutating func visitSingularUInt64Field(value: Swift.UInt64, fieldNumber: Swift.Int) throws + mutating func visitSingularSInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + mutating func visitSingularSInt64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + mutating func visitSingularFixed32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + mutating func visitSingularFixed64Field(value: Swift.UInt64, fieldNumber: Swift.Int) throws + mutating func visitSingularSFixed32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + mutating func visitSingularSFixed64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + mutating func visitSingularBoolField(value: Swift.Bool, fieldNumber: Swift.Int) throws + mutating func visitSingularStringField(value: Swift.String, fieldNumber: Swift.Int) throws + mutating func visitSingularBytesField(value: Foundation.Data, fieldNumber: Swift.Int) throws + mutating func visitSingularEnumField(value: E, fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + mutating func visitSingularMessageField(value: M, fieldNumber: Swift.Int) throws where M : VideoSDKRTC.Message + mutating func visitSingularGroupField(value: G, fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + mutating func visitRepeatedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + mutating func visitRepeatedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + mutating func visitRepeatedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + mutating func visitRepeatedStringField(value: [Swift.String], fieldNumber: Swift.Int) throws + mutating func visitRepeatedBytesField(value: [Foundation.Data], fieldNumber: Swift.Int) throws + mutating func visitRepeatedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + mutating func visitRepeatedMessageField(value: [M], fieldNumber: Swift.Int) throws where M : VideoSDKRTC.Message + mutating func visitRepeatedGroupField(value: [G], fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + mutating func visitPackedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + mutating func visitPackedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + mutating func visitPackedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitPackedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitPackedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitPackedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitPackedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitPackedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitPackedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitPackedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitPackedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitPackedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitPackedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + mutating func visitPackedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + mutating func visitMapField(fieldType: VideoSDKRTC._ProtobufMap.Type, value: VideoSDKRTC._ProtobufMap.BaseType, fieldNumber: Swift.Int) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.MapValueType + mutating func visitMapField(fieldType: VideoSDKRTC._ProtobufEnumMap.Type, value: VideoSDKRTC._ProtobufEnumMap.BaseType, fieldNumber: Swift.Int) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.Enum, ValueType.RawValue == Swift.Int + mutating func visitMapField(fieldType: VideoSDKRTC._ProtobufMessageMap.Type, value: VideoSDKRTC._ProtobufMessageMap.BaseType, fieldNumber: Swift.Int) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : Swift.Hashable, ValueType : VideoSDKRTC.Message + mutating func visitExtensionFields(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws + mutating func visitExtensionFieldsAsMessageSet(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws + mutating func visitUnknown(bytes: Foundation.Data) throws +} +extension VideoSDKRTC.Visitor { + public mutating func visitSingularFloatField(value: Swift.Float, fieldNumber: Swift.Int) throws + public mutating func visitSingularInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + public mutating func visitSingularUInt32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + public mutating func visitSingularSInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + public mutating func visitSingularSInt64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + public mutating func visitSingularFixed32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + public mutating func visitSingularFixed64Field(value: Swift.UInt64, fieldNumber: Swift.Int) throws + public mutating func visitSingularSFixed32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + public mutating func visitSingularSFixed64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + public mutating func visitRepeatedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedStringField(value: [Swift.String], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedBytesField(value: [Foundation.Data], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + public mutating func visitRepeatedMessageField(value: [M], fieldNumber: Swift.Int) throws where M : VideoSDKRTC.Message + public mutating func visitRepeatedGroupField(value: [G], fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + public mutating func visitPackedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + public mutating func visitPackedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + public mutating func visitPackedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitPackedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitPackedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitPackedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitPackedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitPackedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitPackedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitPackedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitPackedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitPackedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitPackedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + public mutating func visitPackedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + public mutating func visitSingularGroupField(value: G, fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + public mutating func visitExtensionFieldsAsMessageSet(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws + public mutating func visitExtensionFields(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws +} +public struct W3CBaggagePropagator : VideoSDKRTC.TextMapBaggagePropagator { + public init() + public let fields: Swift.Set + public func inject(baggage: any VideoSDKRTC.Baggage, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + public func extract(carrier: [Swift.String : Swift.String], getter: G) -> (any VideoSDKRTC.Baggage)? where G : VideoSDKRTC.Getter +} +public struct W3CTraceContextPropagator : VideoSDKRTC.TextMapPropagator { + public init() + public let fields: Swift.Set + public func inject(spanContext: VideoSDKRTC.SpanContext, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + public func extract(carrier: [Swift.String : Swift.String], getter: G) -> VideoSDKRTC.SpanContext? where G : VideoSDKRTC.Getter +} +public struct Google_Protobuf_DoubleValue { + public var value: Swift.Double + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_FloatValue { + public var value: Swift.Float + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Int64Value { + public var value: Swift.Int64 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_UInt64Value { + public var value: Swift.UInt64 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Int32Value { + public var value: Swift.Int32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_UInt32Value { + public var value: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_BoolValue { + public var value: Swift.Bool + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_StringValue { + public var value: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_BytesValue { + public var value: Foundation.Data + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_DoubleValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FloatValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Int64Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UInt64Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Int32Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UInt32Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_BoolValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_StringValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_BytesValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DoubleValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DoubleValue, rhs: VideoSDKRTC.Google_Protobuf_DoubleValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FloatValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FloatValue, rhs: VideoSDKRTC.Google_Protobuf_FloatValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Int64Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Int64Value, rhs: VideoSDKRTC.Google_Protobuf_Int64Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_UInt64Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UInt64Value, rhs: VideoSDKRTC.Google_Protobuf_UInt64Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Int32Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Int32Value, rhs: VideoSDKRTC.Google_Protobuf_Int32Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_UInt32Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UInt32Value, rhs: VideoSDKRTC.Google_Protobuf_UInt32Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_BoolValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_BoolValue, rhs: VideoSDKRTC.Google_Protobuf_BoolValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_StringValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_StringValue, rhs: VideoSDKRTC.Google_Protobuf_StringValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_BytesValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_BytesValue, rhs: VideoSDKRTC.Google_Protobuf_BytesValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.AggregationTemporality : Swift.Equatable {} +extension VideoSDKRTC.AggregationTemporality : Swift.Hashable {} +extension VideoSDKRTC.AggregationType : Swift.Equatable {} +extension VideoSDKRTC.AggregationType : Swift.Hashable {} +extension VideoSDKRTC.AggregationType : Swift.RawRepresentable {} +extension VideoSDKRTC.AnyUnpackError : Swift.Equatable {} +extension VideoSDKRTC.AnyUnpackError : Swift.Hashable {} +extension VideoSDKRTC.BinaryDecodingError : Swift.Equatable {} +extension VideoSDKRTC.BinaryDecodingError : Swift.Hashable {} +extension VideoSDKRTC.BinaryDelimited.Error : Swift.Equatable {} +extension VideoSDKRTC.BinaryDelimited.Error : Swift.Hashable {} +extension VideoSDKRTC.BinaryEncodingError : Swift.Equatable {} +extension VideoSDKRTC.BinaryEncodingError : Swift.Hashable {} extension VideoSDKRTC.CameraPosition : Swift.Equatable {} extension VideoSDKRTC.CameraPosition : Swift.Hashable {} extension VideoSDKRTC.CameraPosition : Swift.RawRepresentable {} extension VideoSDKRTC.CustomVideoTrackConfig : Swift.Equatable {} extension VideoSDKRTC.CustomVideoTrackConfig : Swift.Hashable {} +extension VideoSDKRTC.EmptyMetricStorage : VideoSDKRTC.MetricStorage {} +extension VideoSDKRTC.EmptyMetricStorage : VideoSDKRTC.WritableMetricStorage {} +extension VideoSDKRTC.ExportResult : Swift.Equatable {} +extension VideoSDKRTC.ExportResult : Swift.Hashable {} +extension VideoSDKRTC.ConfigLayoutPriority : Swift.Equatable {} +extension VideoSDKRTC.ConfigLayoutPriority : Swift.Hashable {} +extension VideoSDKRTC.ConfigLayoutPriority : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigLayoutGrid : Swift.Equatable {} +extension VideoSDKRTC.ConfigLayoutGrid : Swift.Hashable {} +extension VideoSDKRTC.ConfigLayoutGrid : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigTheme : Swift.Equatable {} +extension VideoSDKRTC.ConfigTheme : Swift.Hashable {} +extension VideoSDKRTC.ConfigTheme : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigMode : Swift.Equatable {} +extension VideoSDKRTC.ConfigMode : Swift.Hashable {} +extension VideoSDKRTC.ConfigMode : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigQuality : Swift.Equatable {} +extension VideoSDKRTC.ConfigQuality : Swift.Hashable {} +extension VideoSDKRTC.ConfigQuality : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigOrientation : Swift.Equatable {} +extension VideoSDKRTC.ConfigOrientation : Swift.Hashable {} +extension VideoSDKRTC.ConfigOrientation : Swift.RawRepresentable {} +extension VideoSDKRTC.InstrumentType : Swift.Equatable {} +extension VideoSDKRTC.InstrumentType : Swift.Hashable {} +extension VideoSDKRTC.InstrumentValueType : Swift.Equatable {} +extension VideoSDKRTC.InstrumentValueType : Swift.Hashable {} +extension VideoSDKRTC.JSONEncodingError : Swift.Equatable {} +extension VideoSDKRTC.JSONEncodingError : Swift.Hashable {} +extension VideoSDKRTC.authorisationStatus : Swift.Equatable {} +extension VideoSDKRTC.authorisationStatus : Swift.Hashable {} +extension VideoSDKRTC.MeetingState : Swift.Equatable {} +extension VideoSDKRTC.MeetingState : Swift.Hashable {} +extension VideoSDKRTC.MeetingState : Swift.RawRepresentable {} +extension VideoSDKRTC.Mode : Swift.Equatable {} +extension VideoSDKRTC.Mode : Swift.Hashable {} +extension VideoSDKRTC.Mode : Swift.RawRepresentable {} +extension VideoSDKRTC.VideoSDKError : Swift.Equatable {} +extension VideoSDKRTC.VideoSDKError : Swift.Hashable {} +extension VideoSDKRTC.VideoSDKError : Swift.RawRepresentable {} +extension VideoSDKRTC.HLSState : Swift.Equatable {} +extension VideoSDKRTC.HLSState : Swift.Hashable {} +extension VideoSDKRTC.HLSState : Swift.RawRepresentable {} +extension VideoSDKRTC.RecordingState : Swift.Equatable {} +extension VideoSDKRTC.RecordingState : Swift.Hashable {} +extension VideoSDKRTC.RecordingState : Swift.RawRepresentable {} +extension VideoSDKRTC.LiveStreamState : Swift.Equatable {} +extension VideoSDKRTC.LiveStreamState : Swift.Hashable {} +extension VideoSDKRTC.LiveStreamState : Swift.RawRepresentable {} +extension VideoSDKRTC.MetricExporterResultCode : Swift.Equatable {} +extension VideoSDKRTC.MetricExporterResultCode : Swift.Hashable {} +extension VideoSDKRTC.OpenTelemetryContextKeys : Swift.Equatable {} +extension VideoSDKRTC.OpenTelemetryContextKeys : Swift.Hashable {} +extension VideoSDKRTC.OpenTelemetryContextKeys : Swift.RawRepresentable {} +extension VideoSDKRTC.PinType : Swift.Equatable {} +extension VideoSDKRTC.PinType : Swift.Hashable {} +extension VideoSDKRTC.PinType : Swift.RawRepresentable {} +extension VideoSDKRTC.ResourceAttributes : Swift.Equatable {} +extension VideoSDKRTC.ResourceAttributes : Swift.Hashable {} +extension VideoSDKRTC.ResourceAttributes : Swift.RawRepresentable {} +extension VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues : Swift.Equatable {} +extension VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues : Swift.Hashable {} +extension VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.FaasTriggerValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.FaasTriggerValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.FaasTriggerValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.MessageTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.MessageTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.MessageTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.Severity : Swift.Hashable {} +extension VideoSDKRTC.Severity : Swift.RawRepresentable {} +extension VideoSDKRTC.SpanExporterResultCode : Swift.Equatable {} +extension VideoSDKRTC.SpanExporterResultCode : Swift.Hashable {} +extension VideoSDKRTC.SpanKind : Swift.Hashable {} +extension VideoSDKRTC.SpanKind : Swift.RawRepresentable {} +extension VideoSDKRTC.MetricDataType : Swift.Equatable {} +extension VideoSDKRTC.MetricDataType : Swift.Hashable {} +extension VideoSDKRTC.SynchronousMetricStorage : VideoSDKRTC.MetricStorage {} +extension VideoSDKRTC.SynchronousMetricStorage : VideoSDKRTC.WritableMetricStorage {} +extension VideoSDKRTC.TextFormatDecodingError : Swift.Equatable {} +extension VideoSDKRTC.TextFormatDecodingError : Swift.Hashable {} extension VideoSDKRTC.VideoQuality : Swift.Equatable {} extension VideoSDKRTC.VideoQuality : Swift.Hashable {} extension VideoSDKRTC.VideoQuality : Swift.RawRepresentable {} diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.abi.json b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.abi.json index c97f791..69e4e21 100644 --- a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.abi.json +++ b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -24,236 +24,181 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "os.activity", + "printedName": "os.activity", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", - "name": "CameraPosition", - "printedName": "CameraPosition", + "name": "Aggregations", + "printedName": "Aggregations", "children": [ { - "kind": "Var", - "name": "back", - "printedName": "back", + "kind": "Function", + "name": "drop", + "printedName": "drop()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.CameraPosition.Type) -> VideoSDKRTC.CameraPosition", - "children": [ - { - "kind": "TypeNominal", - "name": "CameraPosition", - "printedName": "VideoSDKRTC.CameraPosition", - "usr": "s:11VideoSDKRTC14CameraPositionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CameraPosition.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CameraPosition", - "printedName": "VideoSDKRTC.CameraPosition", - "usr": "s:11VideoSDKRTC14CameraPositionO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC14CameraPositionO4backyA2CmF", - "mangledName": "$s11VideoSDKRTC14CameraPositionO4backyA2CmF", - "moduleName": "VideoSDKRTC" + "declKind": "Func", + "usr": "s:11VideoSDKRTC12AggregationsO4dropAA11Aggregation_pyFZ", + "mangledName": "$s11VideoSDKRTC12AggregationsO4dropAA11Aggregation_pyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "front", - "printedName": "front", + "kind": "Function", + "name": "defaultAggregation", + "printedName": "defaultAggregation()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.CameraPosition.Type) -> VideoSDKRTC.CameraPosition", - "children": [ - { - "kind": "TypeNominal", - "name": "CameraPosition", - "printedName": "VideoSDKRTC.CameraPosition", - "usr": "s:11VideoSDKRTC14CameraPositionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CameraPosition.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CameraPosition", - "printedName": "VideoSDKRTC.CameraPosition", - "usr": "s:11VideoSDKRTC14CameraPositionO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC14CameraPositionO5frontyA2CmF", - "mangledName": "$s11VideoSDKRTC14CameraPositionO5frontyA2CmF", - "moduleName": "VideoSDKRTC" + "declKind": "Func", + "usr": "s:11VideoSDKRTC12AggregationsO18defaultAggregationAA0E0_pyFZ", + "mangledName": "$s11VideoSDKRTC12AggregationsO18defaultAggregationAA0E0_pyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "toggle", - "printedName": "toggle()", + "name": "sum", + "printedName": "sum()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC14CameraPositionO6toggleyyF", - "mangledName": "$s11VideoSDKRTC14CameraPositionO6toggleyyF", + "usr": "s:11VideoSDKRTC12AggregationsO3sumAA11Aggregation_pyFZ", + "mangledName": "$s11VideoSDKRTC12AggregationsO3sumAA11Aggregation_pyFZ", "moduleName": "VideoSDKRTC", + "static": true, "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "funcSelfKind": "Mutating" + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Function", + "name": "lastValue", + "printedName": "lastValue()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.CameraPosition?", - "children": [ - { - "kind": "TypeNominal", - "name": "CameraPosition", - "printedName": "VideoSDKRTC.CameraPosition", - "usr": "s:11VideoSDKRTC14CameraPositionO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" } ], - "declKind": "Constructor", - "usr": "s:11VideoSDKRTC14CameraPositionO8rawValueACSgSi_tcfc", - "mangledName": "$s11VideoSDKRTC14CameraPositionO8rawValueACSgSi_tcfc", + "declKind": "Func", + "usr": "s:11VideoSDKRTC12AggregationsO9lastValueAA11Aggregation_pyFZ", + "mangledName": "$s11VideoSDKRTC12AggregationsO9lastValueAA11Aggregation_pyFZ", "moduleName": "VideoSDKRTC", - "implicit": true, - "init_kind": "Designated" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Function", + "name": "explicitBucketHistogram", + "printedName": "explicitBucketHistogram()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" } ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC14CameraPositionO8rawValueSivp", - "mangledName": "$s11VideoSDKRTC14CameraPositionO8rawValueSivp", + "declKind": "Func", + "usr": "s:11VideoSDKRTC12AggregationsO23explicitBucketHistogramAA11Aggregation_pyFZ", + "mangledName": "$s11VideoSDKRTC12AggregationsO23explicitBucketHistogramAA11Aggregation_pyFZ", "moduleName": "VideoSDKRTC", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC14CameraPositionO8rawValueSivg", - "mangledName": "$s11VideoSDKRTC14CameraPositionO8rawValueSivg", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:11VideoSDKRTC14CameraPositionO", - "mangledName": "$s11VideoSDKRTC14CameraPositionO", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "Int", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Function", + "name": "explicitBucketHistogram", + "printedName": "explicitBucketHistogram(buckets:)", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ] + ], + "usr": "s:Sa" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "declKind": "Func", + "usr": "s:11VideoSDKRTC12AggregationsO23explicitBucketHistogram7bucketsAA11Aggregation_pSaySdG_tFZ", + "mangledName": "$s11VideoSDKRTC12AggregationsO23explicitBucketHistogram7bucketsAA11Aggregation_pSaySdG_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC12AggregationsO", + "mangledName": "$s11VideoSDKRTC12AggregationsO", "moduleName": "VideoSDKRTC", "declAttributes": [ - "RawDocComment" + "AccessControl" ] }, { @@ -267,342 +212,563 @@ ] }, { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + "kind": "TypeDecl", + "name": "DefaultAggregationSelector", + "printedName": "DefaultAggregationSelector", + "children": [ + { + "kind": "Function", + "name": "getDefaultAggregation", + "printedName": "getDefaultAggregation(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26DefaultAggregationSelectorP03getcD03forAA0D0_pAA14InstrumentTypeO_tF", + "mangledName": "$s11VideoSDKRTC26DefaultAggregationSelectorP03getcD03forAA0D0_pAA14InstrumentTypeO_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DefaultAggregationSelector>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC26DefaultAggregationSelectorP", + "mangledName": "$s11VideoSDKRTC26DefaultAggregationSelectorP", "moduleName": "VideoSDKRTC", "declAttributes": [ - "RawDocComment" + "AccessControl" ] }, { "kind": "TypeDecl", - "name": "CustomVideoTrackConfig", - "printedName": "CustomVideoTrackConfig", + "name": "AggregationSelector", + "printedName": "AggregationSelector", "children": [ { "kind": "Var", - "name": "h90p_w160p", - "printedName": "h90p_w160p", + "name": "instance", + "printedName": "instance", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "kind": "TypeNominal", + "name": "AggregationSelector", + "printedName": "VideoSDKRTC.AggregationSelector", + "usr": "s:11VideoSDKRTC19AggregationSelectorC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19AggregationSelectorC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - } - ] + "name": "AggregationSelector", + "printedName": "VideoSDKRTC.AggregationSelector", + "usr": "s:11VideoSDKRTC19AggregationSelectorC" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19AggregationSelectorC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO10h90p_w160pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO10h90p_w160pyA2CmF", - "moduleName": "VideoSDKRTC" + ] }, { "kind": "Var", - "name": "h180p_w320p", - "printedName": "h180p_w320p", + "name": "selector", + "printedName": "selector", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.InstrumentType) -> VideoSDKRTC.Aggregation", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - } - ] + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" } ] } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h180p_w320pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h180p_w320pyA2CmF", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Var", - "name": "h216p_w384p", - "printedName": "h216p_w384p", - "children": [ + "declKind": "Var", + "usr": "s:11VideoSDKRTC19AggregationSelectorC8selectoryAA0C0_pAA14InstrumentTypeOcvp", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC8selectoryAA0C0_pAA14InstrumentTypeOcvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType) -> VideoSDKRTC.Aggregation", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" } ] } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19AggregationSelectorC8selectoryAA0C0_pAA14InstrumentTypeOcvg", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC8selectoryAA0C0_pAA14InstrumentTypeOcvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h216p_w384pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h216p_w384pyA2CmF", - "moduleName": "VideoSDKRTC" + ] }, { - "kind": "Var", - "name": "h360p_w640p", - "printedName": "h360p_w640p", + "kind": "Function", + "name": "getDefaultAggregation", + "printedName": "getDefaultAggregation(for:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h360p_w640pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h360p_w640pyA2CmF", - "moduleName": "VideoSDKRTC" + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AggregationSelectorC010getDefaultC03forAA0C0_pAA14InstrumentTypeO_tF", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC010getDefaultC03forAA0C0_pAA14InstrumentTypeO_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "h540p_w960p", - "printedName": "h540p_w960p", + "kind": "Function", + "name": "defaultSelector", + "printedName": "defaultSelector()", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.InstrumentType) -> VideoSDKRTC.Aggregation", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - } - ] + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" } ] } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h540p_w960pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h540p_w960pyA2CmF", - "moduleName": "VideoSDKRTC" + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AggregationSelectorC07defaultD0AA0C0_pAA14InstrumentTypeOcyFZ", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC07defaultD0AA0C0_pAA14InstrumentTypeOcyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "h720p_w1280p", - "printedName": "h720p_w1280p", + "kind": "Function", + "name": "with", + "printedName": "with(instrumentType:aggregation:)", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.InstrumentType) -> VideoSDKRTC.Aggregation", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - } - ] + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" } ] + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO12h720p_w1280pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO12h720p_w1280pyA2CmF", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Var", - "name": "h1080p_w1920p", - "printedName": "h1080p_w1920p", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" - } - ] - } - ] + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AggregationSelectorC4with14instrumentType11aggregationAA0C0_pAA010InstrumentG0OcAI_AaG_ptF", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC4with14instrumentType11aggregationAA0C0_pAA010InstrumentG0OcAI_AaG_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19AggregationSelectorC", + "mangledName": "$s11VideoSDKRTC19AggregationSelectorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DefaultAggregationSelector", + "printedName": "DefaultAggregationSelector", + "usr": "s:11VideoSDKRTC26DefaultAggregationSelectorP", + "mangledName": "$s11VideoSDKRTC26DefaultAggregationSelectorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AggregationTemporalitySelectorProtocol", + "printedName": "AggregationTemporalitySelectorProtocol", + "children": [ + { + "kind": "Function", + "name": "getAggregationTemporality", + "printedName": "getAggregationTemporality(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1920pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1920pyA2CmF", - "moduleName": "VideoSDKRTC" + "declKind": "Func", + "usr": "s:11VideoSDKRTC38AggregationTemporalitySelectorProtocolP03getcD03forAA0cD0OAA14InstrumentTypeO_tF", + "mangledName": "$s11VideoSDKRTC38AggregationTemporalitySelectorProtocolP03getcD03forAA0cD0OAA14InstrumentTypeO_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AggregationTemporalitySelectorProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC38AggregationTemporalitySelectorProtocolP", + "mangledName": "$s11VideoSDKRTC38AggregationTemporalitySelectorProtocolP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "AggregationTemporalitySelector", + "printedName": "AggregationTemporalitySelector", + "children": [ + { + "kind": "Function", + "name": "getAggregationTemporality", + "printedName": "getAggregationTemporality(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC03getcD03forAA0cD0OAA14InstrumentTypeO_tF", + "mangledName": "$s11VideoSDKRTC30AggregationTemporalitySelectorC03getcD03forAA0cD0OAA14InstrumentTypeO_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "h1440p_w2560p", - "printedName": "h1440p_w2560p", + "name": "aggregationTemporalitySelector", + "printedName": "aggregationTemporalitySelector", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvp", + "mangledName": "$s11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" } ] } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvg", + "mangledName": "$s11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvs", + "mangledName": "$s11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvM", + "mangledName": "$s11VideoSDKRTC30AggregationTemporalitySelectorC011aggregationdE0yAA0cD0OAA14InstrumentTypeOcvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w2560pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w2560pyA2CmF", - "moduleName": "VideoSDKRTC" - }, + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC", + "mangledName": "$s11VideoSDKRTC30AggregationTemporalitySelectorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AggregationTemporalitySelectorProtocol", + "printedName": "AggregationTemporalitySelectorProtocol", + "usr": "s:11VideoSDKRTC38AggregationTemporalitySelectorProtocolP", + "mangledName": "$s11VideoSDKRTC38AggregationTemporalitySelectorProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AggregationTemporality", + "printedName": "AggregationTemporality", + "children": [ { "kind": "Var", - "name": "h2160p_w3840p", - "printedName": "h2160p_w3840p", + "name": "delta", + "printedName": "delta", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationTemporality.Type) -> VideoSDKRTC.AggregationTemporality", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationTemporality.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" } ] } @@ -610,36 +776,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h2160p_w3840pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h2160p_w3840pyA2CmF", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO5deltayA2CmF", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO5deltayA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h120p_w160p", - "printedName": "h120p_w160p", + "name": "cumulative", + "printedName": "cumulative", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationTemporality.Type) -> VideoSDKRTC.AggregationTemporality", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationTemporality.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" } ] } @@ -647,36 +813,216 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h120p_w160pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h120p_w160pyA2CmF", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO10cumulativeyA2CmF", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO10cumulativeyA2CmF", "moduleName": "VideoSDKRTC" }, + { + "kind": "Function", + "name": "alwaysCumulative", + "printedName": "alwaysCumulative()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporalitySelector", + "printedName": "VideoSDKRTC.AggregationTemporalitySelector", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO16alwaysCumulativeAA0cD8SelectorCyFZ", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO16alwaysCumulativeAA0cD8SelectorCyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deltaPreferred", + "printedName": "deltaPreferred()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporalitySelector", + "printedName": "VideoSDKRTC.AggregationTemporalitySelector", + "usr": "s:11VideoSDKRTC30AggregationTemporalitySelectorC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO14deltaPreferredAA0cD8SelectorCyFZ", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO14deltaPreferredAA0cD8SelectorCyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Var", - "name": "h180p_w240p", - "printedName": "h180p_w240p", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO", + "mangledName": "$s11VideoSDKRTC22AggregationTemporalityO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AggregationType", + "printedName": "AggregationType", + "children": [ + { + "kind": "Var", + "name": "intGauge", + "printedName": "intGauge", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -684,36 +1030,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h180p_w240pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h180p_w240pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO8intGaugeyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO8intGaugeyA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h240p_w320p", - "printedName": "h240p_w320p", + "name": "doubleGauge", + "printedName": "doubleGauge", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -721,36 +1067,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h240p_w320pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h240p_w320pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO11doubleGaugeyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO11doubleGaugeyA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h360p_w480p", - "printedName": "h360p_w480p", + "name": "doubleSum", + "printedName": "doubleSum", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -758,36 +1104,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h360p_w480pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h360p_w480pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO9doubleSumyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO9doubleSumyA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h480p_w640p", - "printedName": "h480p_w640p", + "name": "intSum", + "printedName": "intSum", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -795,36 +1141,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h480p_w640pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h480p_w640pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO6intSumyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO6intSumyA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h540p_w720p", - "printedName": "h540p_w720p", + "name": "doubleSummary", + "printedName": "doubleSummary", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -832,36 +1178,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h540p_w720pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h540p_w720pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO13doubleSummaryyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO13doubleSummaryyA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h720p_w960p", - "printedName": "h720p_w960p", + "name": "intSummary", + "printedName": "intSummary", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -869,36 +1215,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h720p_w960pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h720p_w960pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO10intSummaryyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO10intSummaryyA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h1080p_w1440p", - "printedName": "h1080p_w1440p", + "name": "doubleHistogram", + "printedName": "doubleHistogram", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -906,36 +1252,36 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1440pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1440pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO15doubleHistogramyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO15doubleHistogramyA2CmF", "moduleName": "VideoSDKRTC" }, { "kind": "Var", - "name": "h1440p_w1920p", - "printedName": "h1440p_w1920p", + "name": "intHistogram", + "printedName": "intHistogram", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "printedName": "(VideoSDKRTC.AggregationType.Type) -> VideoSDKRTC.AggregationType", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "printedName": "VideoSDKRTC.AggregationType.Type", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" } ] } @@ -943,57 +1289,58 @@ } ], "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w1920pyA2CmF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w1920pyA2CmF", + "usr": "s:11VideoSDKRTC15AggregationTypeO12intHistogramyA2CmF", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO12intHistogramyA2CmF", "moduleName": "VideoSDKRTC" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "Optional", + "printedName": "VideoSDKRTC.AggregationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO2eeoiySbAC_ACtFZ", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO2eeoiySbAC_ACtFZ", + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC15AggregationTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO8rawValueACSgSS_tcfc", "moduleName": "VideoSDKRTC", - "static": true, "implicit": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivp", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivp", + "usr": "s:11VideoSDKRTC15AggregationTypeO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO8rawValueSSvp", "moduleName": "VideoSDKRTC", "implicit": true, "accessors": [ @@ -1004,53 +1351,29 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivg", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivg", + "usr": "s:11VideoSDKRTC15AggregationTypeO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO8rawValueSSvg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" } ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO4hash4intoys6HasherVz_tF", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO4hash4intoys6HasherVz_tF", - "moduleName": "VideoSDKRTC", - "implicit": true, - "funcSelfKind": "NonMutating" } ], "declKind": "Enum", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO", - "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO", + "usr": "s:11VideoSDKRTC15AggregationTypeO", + "mangledName": "$s11VideoSDKRTC15AggregationTypeO", "moduleName": "VideoSDKRTC", "declAttributes": [ "AccessControl" ], + "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", @@ -1065,6 +1388,42 @@ "printedName": "Hashable", "usr": "s:SH", "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, @@ -1078,21 +1437,113 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, { "kind": "TypeDecl", - "name": "CustomRTCMediaStream", - "printedName": "CustomRTCMediaStream", + "name": "Aggregator", + "printedName": "Aggregator", + "children": [ + { + "kind": "Function", + "name": "update", + "printedName": "update(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10AggregatorC6update5valueyx_tF", + "mangledName": "$s11VideoSDKRTC10AggregatorC6update5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkpoint", + "printedName": "checkpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10AggregatorC10checkpointyyF", + "mangledName": "$s11VideoSDKRTC10AggregatorC10checkpointyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10AggregatorC12toMetricDataAA0eF0_pyF", + "mangledName": "$s11VideoSDKRTC10AggregatorC12toMetricDataAA0eF0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAggregationType", + "printedName": "getAggregationType()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10AggregatorC18getAggregationTypeAA0eF0OyF", + "mangledName": "$s11VideoSDKRTC10AggregatorC18getAggregationTypeAA0eF0OyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], "declKind": "Class", - "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC", - "mangledName": "$s11VideoSDKRTC20CustomRTCMediaStreamC", + "usr": "s:11VideoSDKRTC10AggregatorC", + "mangledName": "$s11VideoSDKRTC10AggregatorC", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], @@ -1109,13 +1560,81 @@ ] }, { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + "kind": "TypeDecl", + "name": "Aggregation", + "printedName": "Aggregation", + "children": [ + { + "kind": "Function", + "name": "createAggregator", + "printedName": "createAggregator(descriptor:exemplarFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableAggregator", + "printedName": "VideoSDKRTC.StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11AggregationP16createAggregator10descriptor14exemplarFilterAA06StableE0_pAA20InstrumentDescriptorV_AA08ExemplarH0_ptF", + "mangledName": "$s11VideoSDKRTC11AggregationP16createAggregator10descriptor14exemplarFilterAA06StableE0_pAA20InstrumentDescriptorV_AA08ExemplarH0_ptF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Aggregation>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isCompatible", + "printedName": "isCompatible(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11AggregationP12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "mangledName": "$s11VideoSDKRTC11AggregationP12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Aggregation>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC11AggregationP", + "mangledName": "$s11VideoSDKRTC11AggregationP", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ] }, { @@ -1130,163 +1649,190 @@ }, { "kind": "TypeDecl", - "name": "LivestreamOutput", - "printedName": "LivestreamOutput", + "name": "AggregatorHandle", + "printedName": "AggregatorHandle", "children": [ { - "kind": "Var", - "name": "url", - "printedName": "url", + "kind": "Function", + "name": "aggregateThenMaybeReset", + "printedName": "aggregateThenMaybeReset(startEpochNano:endEpochNano:attributes:reset:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC16LivestreamOutputV3urlSSvp", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV3urlSSvp", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC16LivestreamOutputV3urlSSvg", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV3urlSSvg", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "streamKey", - "printedName": "streamKey", - "children": [ + "usr": "s:SD" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC16LivestreamOutputV9streamKeySSvp", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV9streamKeySSvp", + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AggregatorHandleC23aggregateThenMaybeReset14startEpochNano03endjK010attributes5resetAA9PointDataCs6UInt64V_ALSDySSAA14AttributeValueOGSbtF", + "mangledName": "$s11VideoSDKRTC16AggregatorHandleC23aggregateThenMaybeReset14startEpochNano03endjK010attributes5resetAA9PointDataCs6UInt64V_ALSDySSAA14AttributeValueOGSbtF", "moduleName": "VideoSDKRTC", "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordLong", + "printedName": "recordLong(value:attributes:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC16LivestreamOutputV9streamKeySSvg", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV9streamKeySSvg", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "get" + "usr": "s:SD" } - ] + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AggregatorHandleC10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC16AggregatorHandleC10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(url:streamKey:)", + "kind": "Function", + "name": "recordLong", + "printedName": "recordLong(value:)", "children": [ { "kind": "TypeNominal", - "name": "LivestreamOutput", - "printedName": "VideoSDKRTC.LivestreamOutput", - "usr": "s:11VideoSDKRTC16LivestreamOutputV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Constructor", - "usr": "s:11VideoSDKRTC16LivestreamOutputV3url9streamKeyACSS_SStcfc", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV3url9streamKeyACSS_SStcfc", + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AggregatorHandleC10recordLong5valueySi_tF", + "mangledName": "$s11VideoSDKRTC16AggregatorHandleC10recordLong5valueySi_tF", "moduleName": "VideoSDKRTC", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "init_kind": "Designated" + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", + "kind": "Function", + "name": "recordDouble", + "printedName": "recordDouble(value:attributes:)", "children": [ { "kind": "TypeNominal", - "name": "LivestreamOutput", - "printedName": "VideoSDKRTC.LivestreamOutput", - "usr": "s:11VideoSDKRTC16LivestreamOutputV" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Decoder", - "printedName": "Swift.Decoder", - "usr": "s:s7DecoderP" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" } ], - "declKind": "Constructor", - "usr": "s:11VideoSDKRTC16LivestreamOutputV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV4fromACs7Decoder_p_tKcfc", + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AggregatorHandleC12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC16AggregatorHandleC12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", "moduleName": "VideoSDKRTC", - "implicit": true, - "throwing": true, - "init_kind": "Designated" + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", + "name": "recordDouble", + "printedName": "recordDouble(value:)", "children": [ { "kind": "TypeNominal", @@ -1295,68 +1841,29 @@ }, { "kind": "TypeNominal", - "name": "Encoder", - "printedName": "Swift.Encoder", - "usr": "s:s7EncoderP" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC16LivestreamOutputV6encode2toys7Encoder_p_tKF", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV6encode2toys7Encoder_p_tKF", + "usr": "s:11VideoSDKRTC16AggregatorHandleC12recordDouble5valueySd_tF", + "mangledName": "$s11VideoSDKRTC16AggregatorHandleC12recordDouble5valueySd_tF", "moduleName": "VideoSDKRTC", - "implicit": true, - "throwing": true, + "declAttributes": [ + "AccessControl" + ], "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:11VideoSDKRTC16LivestreamOutputV", - "mangledName": "$s11VideoSDKRTC16LivestreamOutputV", + "declKind": "Class", + "usr": "s:11VideoSDKRTC16AggregatorHandleC", + "mangledName": "$s11VideoSDKRTC16AggregatorHandleC", "moduleName": "VideoSDKRTC", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "conformances": [ - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "AVFoundation", - "printedName": "AVFoundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" + "hasMissingDesignatedInitializers": true }, { "kind": "Import", @@ -1368,29 +1875,15 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Mediasoup", - "printedName": "Mediasoup", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, { "kind": "TypeDecl", - "name": "MediaStream", - "printedName": "MediaStream", + "name": "Google_Protobuf_Any", + "printedName": "Google_Protobuf_Any", "children": [ { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "typeURL", + "printedName": "typeURL", "children": [ { "kind": "TypeNominal", @@ -1400,16 +1893,13 @@ } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11MediaStreamC2idSSvp", - "mangledName": "$s11VideoSDKRTC11MediaStreamC2idSSvp", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvp", "moduleName": "VideoSDKRTC", "declAttributes": [ - "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -1424,82 +1914,74 @@ } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11MediaStreamC2idSSvg", - "mangledName": "$s11VideoSDKRTC11MediaStreamC2idSSvg", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvg", "moduleName": "VideoSDKRTC", - "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "kind", - "printedName": "kind", - "children": [ - { - "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" - } - ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvp", - "mangledName": "$s11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvp", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvg", - "mangledName": "$s11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvg", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV7typeURLSSvM", "moduleName": "VideoSDKRTC", "implicit": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "track", - "printedName": "track", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "RTCMediaStreamTrack", - "printedName": "WebRTC.RTCMediaStreamTrack", - "usr": "c:objc(cs)RTCMediaStreamTrack" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvp", - "mangledName": "$s11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvp", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvp", "moduleName": "VideoSDKRTC", "declAttributes": [ - "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -1508,50 +1990,80 @@ "children": [ { "kind": "TypeNominal", - "name": "RTCMediaStreamTrack", - "printedName": "WebRTC.RTCMediaStreamTrack", - "usr": "c:objc(cs)RTCMediaStreamTrack" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvg", - "mangledName": "$s11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvg", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvg", "moduleName": "VideoSDKRTC", - "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV5value10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "producer", - "printedName": "producer", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Mediasoup.Producer?", - "children": [ - { - "kind": "TypeNominal", - "name": "Producer", - "printedName": "Mediasoup.Producer", - "usr": "s:9Mediasoup8ProducerC" - } - ], - "usr": "s:Sq" + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvp", - "mangledName": "$s11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvp", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvp", "moduleName": "VideoSDKRTC", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -1562,59 +2074,156 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Mediasoup.Producer?", - "children": [ - { - "kind": "TypeNominal", - "name": "Producer", - "printedName": "Mediasoup.Producer", - "usr": "s:9Mediasoup8ProducerC" - } - ], - "usr": "s:Sq" + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvg", - "mangledName": "$s11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvg", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyVACycfc", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "consumer", - "printedName": "consumer", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Mediasoup.Consumer?", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Consumer", - "printedName": "Mediasoup.Consumer", - "usr": "s:9Mediasoup8ConsumerC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvp", - "mangledName": "$s11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvp", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV17_protobuf_nameMapAA05_NameH0VvpZ", "moduleName": "VideoSDKRTC", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -1624,68 +2233,81 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Mediasoup.Consumer?", - "children": [ - { - "kind": "TypeNominal", - "name": "Consumer", - "printedName": "Mediasoup.Consumer", - "usr": "s:9Mediasoup8ConsumerC" - } - ], - "usr": "s:Sq" + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvg", - "mangledName": "$s11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvg", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV17_protobuf_nameMapAA05_NameH0VvgZ", "moduleName": "VideoSDKRTC", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Function", - "name": "pause", - "printedName": "pause()", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11MediaStreamC5pauseyyF", - "mangledName": "$s11VideoSDKRTC11MediaStreamC5pauseyyF", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "Mutating", + "AccessControl" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "throwing": true, + "funcSelfKind": "Mutating" }, { "kind": "Function", - "name": "resume", - "printedName": "resume()", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11MediaStreamC6resumeyyF", - "mangledName": "$s11VideoSDKRTC11MediaStreamC6resumeyyF", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV8traverse7visitoryxz_tKAA7VisitorRzlF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ], "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -1701,151 +2323,169 @@ }, { "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" }, { "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11MediaStreamC2eeoiySbAC_ACtFZ", - "mangledName": "$s11VideoSDKRTC11MediaStreamC2eeoiySbAC_ACtFZ", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV2eeoiySbAC_ACtFZ", "moduleName": "VideoSDKRTC", "static": true, "declAttributes": [ - "Final", "AccessControl" ], "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:11VideoSDKRTC11MediaStreamC", - "mangledName": "$s11VideoSDKRTC11MediaStreamC", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "MediaType", - "printedName": "MediaType", - "children": [ + }, { "kind": "Var", - "name": "share", - "printedName": "share", + "name": "hashValue", + "printedName": "hashValue", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.MediaType.Type) -> VideoSDKRTC.MediaType", + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.MediaType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" - } - ] + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(message:partial:typePrefix:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" + }, + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC9MediaTypeO5shareyA2CmF", - "mangledName": "$s11VideoSDKRTC9MediaTypeO5shareyA2CmF", - "moduleName": "VideoSDKRTC" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV7message7partial10typePrefixAcA7Message_p_SbSStKcfc", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV7message7partial10typePrefixAcA7Message_p_SbSStKcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" }, { - "kind": "Var", - "name": "state", - "printedName": "state", + "kind": "Constructor", + "name": "init", + "printedName": "init(textFormatString:options:extensions:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.MediaType.Type) -> (Mediasoup.MediaKind) -> VideoSDKRTC.MediaType", + "kind": "TypeNominal", + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TextFormatDecodingOptions", + "printedName": "VideoSDKRTC.TextFormatDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Mediasoup.MediaKind) -> VideoSDKRTC.MediaType", - "children": [ - { - "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(value: Mediasoup.MediaKind)", - "children": [ - { - "kind": "TypeNominal", - "name": "MediaKind", - "printedName": "Mediasoup.MediaKind", - "usr": "s:9Mediasoup9MediaKindO" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.MediaType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" - } - ] + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" } - ] + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC9MediaTypeO5stateyAC9Mediasoup0C4KindO_tcACmF", - "mangledName": "$s11VideoSDKRTC9MediaTypeO5stateyAC9Mediasoup0C4KindO_tcACmF", - "moduleName": "VideoSDKRTC" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV16textFormatString7options10extensionsACSS_AA04TextG15DecodingOptionsVAA12ExtensionMap_pSgtKcfc", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV16textFormatString7options10extensionsACSS_AA04TextG15DecodingOptionsVAA12ExtensionMap_pSgtKcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" }, { "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "name": "isA", + "printedName": "isA(_:)", "children": [ { "kind": "TypeNominal", @@ -1855,34 +2495,238 @@ }, { "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV3isAySbxmAA7MessageRzlF", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV3isAySbxmAA7MessageRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "MediaType", - "printedName": "VideoSDKRTC.MediaType", - "usr": "s:11VideoSDKRTC9MediaTypeO" + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC9MediaTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s11VideoSDKRTC9MediaTypeO2eeoiySbAC_ACtFZ", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV4hash4intoys6HasherVz_tF", "moduleName": "VideoSDKRTC", - "static": true, - "implicit": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:11VideoSDKRTC9MediaTypeO", - "mangledName": "$s11VideoSDKRTC9MediaTypeO", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "AccessControl" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(messageType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV8register11messageTypeSbAA7Message_pXp_tFZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV8register11messageTypeSbAA7Message_pXp_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "messageType", + "printedName": "messageType(forTypeURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Message.Type?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV11messageType03forG3URLAA7Message_pXpSgSS_tFZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV11messageType03forG3URLAA7Message_pXpSgSS_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "messageType", + "printedName": "messageType(forMessageName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Message.Type?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV11messageType14forMessageNameAA0I0_pXpSgSS_tFZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV11messageType14forMessageNameAA0I0_pXpSgSS_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_AnyV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, { "kind": "Conformance", "name": "Equatable", @@ -1902,93 +2746,180 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "AVFoundation", - "printedName": "AVFoundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, { "kind": "TypeDecl", - "name": "Meeting", - "printedName": "Meeting", + "name": "AnyUnpackError", + "printedName": "AnyUnpackError", "children": [ { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "typeMismatch", + "printedName": "typeMismatch", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AnyUnpackError.Type) -> VideoSDKRTC.AnyUnpackError", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.AnyUnpackError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC7MeetingC2idSSvp", - "mangledName": "$s11VideoSDKRTC7MeetingC2idSSvp", + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO12typeMismatchyA2CmF", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO12typeMismatchyA2CmF", "moduleName": "VideoSDKRTC", "declAttributes": [ - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "malformedWellKnownTypeJSON", + "printedName": "malformedWellKnownTypeJSON", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AnyUnpackError.Type) -> VideoSDKRTC.AnyUnpackError", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.AnyUnpackError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC7MeetingC2idSSvg", - "mangledName": "$s11VideoSDKRTC7MeetingC2idSSvg", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO26malformedWellKnownTypeJSONyA2CmF", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO26malformedWellKnownTypeJSONyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "localParticipant", - "printedName": "localParticipant", + "name": "malformedAnyField", + "printedName": "malformedAnyField", "children": [ { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AnyUnpackError.Type) -> VideoSDKRTC.AnyUnpackError", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.AnyUnpackError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvp", - "mangledName": "$s11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvp", + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO09malformedC5FieldyA2CmF", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO09malformedC5FieldyA2CmF", "moduleName": "VideoSDKRTC", "declAttributes": [ - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + }, + { + "kind": "TypeNominal", + "name": "AnyUnpackError", + "printedName": "VideoSDKRTC.AnyUnpackError", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO" + } ], - "hasStorage": true, + "declKind": "Func", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -1997,54 +2928,119 @@ "children": [ { "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvg", - "mangledName": "$s11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvg", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO9hashValueSivg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" } ] }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC14AnyUnpackErrorO", + "mangledName": "$s11VideoSDKRTC14AnyUnpackErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Api", + "printedName": "Google_Protobuf_Api", + "children": [ { "kind": "Var", - "name": "participants", - "printedName": "participants", + "name": "name", + "printedName": "name", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : VideoSDKRTC.Participant]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" - } - ], - "usr": "s:SD" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvp", - "mangledName": "$s11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvp", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvp", "moduleName": "VideoSDKRTC", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], @@ -2057,107 +3053,91 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : VideoSDKRTC.Participant]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" - } - ], - "usr": "s:SD" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvg", - "mangledName": "$s11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvg", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "pubsub", - "printedName": "pubsub", - "children": [ + }, { - "kind": "TypeNominal", - "name": "PubSub", - "printedName": "VideoSDKRTC.PubSub", - "usr": "s:11VideoSDKRTC6PubSubC" - } - ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvp", - "mangledName": "$s11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvp", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "Lazy", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "PubSub", - "printedName": "VideoSDKRTC.PubSub", - "usr": "s:11VideoSDKRTC6PubSubC" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvg", - "mangledName": "$s11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvg", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV4nameSSvM", "moduleName": "VideoSDKRTC", "implicit": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "customVideoMediaStream", - "printedName": "customVideoMediaStream", + "name": "methods", + "printedName": "methods", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Method]", "children": [ { "kind": "TypeNominal", - "name": "CustomRTCMediaStream", - "printedName": "VideoSDKRTC.CustomRTCMediaStream", - "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + "name": "Google_Protobuf_Method", + "printedName": "VideoSDKRTC.Google_Protobuf_Method", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvp", - "mangledName": "$s11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvp", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvp", "moduleName": "VideoSDKRTC", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -2168,497 +3148,828 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Method]", "children": [ { "kind": "TypeNominal", - "name": "CustomRTCMediaStream", - "printedName": "VideoSDKRTC.CustomRTCMediaStream", - "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + "name": "Google_Protobuf_Method", + "printedName": "VideoSDKRTC.Google_Protobuf_Method", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvg", - "mangledName": "$s11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvg", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "join", - "printedName": "join(cameraPosition:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Position", - "printedName": "AVFoundation.AVCaptureDevice.Position", - "usr": "c:@E@AVCaptureDevicePosition" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Method]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Method", + "printedName": "VideoSDKRTC.Google_Protobuf_Method", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7methodsSayAA0c1_D7_MethodVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC4join14cameraPositionySo015AVCaptureDeviceF0V_tF", - "mangledName": "$s11VideoSDKRTC7MeetingC4join14cameraPositionySo015AVCaptureDeviceF0V_tF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "leave", - "printedName": "leave()", + "kind": "Var", + "name": "options", + "printedName": "options", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC5leaveyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC5leaveyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7optionsSayAA0c1_D7_OptionVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "end", - "printedName": "end()", + "kind": "Var", + "name": "version", + "printedName": "version", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC3endyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC3endyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "enableWebcam", - "printedName": "enableWebcam(customVideoStream:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "CustomRTCMediaStream", - "printedName": "VideoSDKRTC.CustomRTCMediaStream", - "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV7versionSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC12enableWebcam06customA6StreamyAA014CustomRTCMediaG0CSg_tF", - "mangledName": "$s11VideoSDKRTC7MeetingC12enableWebcam06customA6StreamyAA014CustomRTCMediaG0CSg_tF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "disableWebcam", - "printedName": "disableWebcam()", + "kind": "Var", + "name": "sourceContext", + "printedName": "sourceContext", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC13disableWebcamyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC13disableWebcamyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0Vvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0Vvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "switchWebcam", - "printedName": "switchWebcam()", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0Vvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0Vvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0VvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13sourceContextAA0c1_d7_SourceG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC12switchWebcamyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC12switchWebcamyyF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "muteMic", - "printedName": "muteMic()", + "kind": "Var", + "name": "hasSourceContext", + "printedName": "hasSourceContext", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC7muteMicyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC7muteMicyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV16hasSourceContextSbvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV16hasSourceContextSbvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "unmuteMic", - "printedName": "unmuteMic()", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV16hasSourceContextSbvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV16hasSourceContextSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC9unmuteMicyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC9unmuteMicyyF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Function", - "name": "startRecording", - "printedName": "startRecording(webhookUrl:)", + "name": "clearSourceContext", + "printedName": "clearSourceContext()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC14startRecording10webhookUrlySS_tF", - "mangledName": "$s11VideoSDKRTC7MeetingC14startRecording10webhookUrlySS_tF", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV18clearSourceContextyyF", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV18clearSourceContextyyF", "moduleName": "VideoSDKRTC", "declAttributes": [ + "Mutating", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "funcSelfKind": "Mutating" }, { - "kind": "Function", - "name": "stopRecording", - "printedName": "stopRecording()", + "kind": "Var", + "name": "mixins", + "printedName": "mixins", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Mixin]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Mixin", + "printedName": "VideoSDKRTC.Google_Protobuf_Mixin", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV" + } + ], + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC13stopRecordingyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC13stopRecordingyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "startLivestream", - "printedName": "startLivestream(outputs:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Mixin]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Mixin", + "printedName": "VideoSDKRTC.Google_Protobuf_Mixin", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[VideoSDKRTC.LivestreamOutput]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "LivestreamOutput", - "printedName": "VideoSDKRTC.LivestreamOutput", - "usr": "s:11VideoSDKRTC16LivestreamOutputV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Mixin]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Mixin", + "printedName": "VideoSDKRTC.Google_Protobuf_Mixin", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV" + } + ], + "usr": "s:Sa" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6mixinsSayAA0c1_D6_MixinVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC15startLivestream7outputsySayAA0E6OutputVG_tF", - "mangledName": "$s11VideoSDKRTC7MeetingC15startLivestream7outputsySayAA0E6OutputVG_tF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "stopLivestream", - "printedName": "stopLivestream()", + "kind": "Var", + "name": "syntax", + "printedName": "syntax", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC14stopLivestreamyyF", - "mangledName": "$s11VideoSDKRTC7MeetingC14stopLivestreamyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addEventListener", - "printedName": "addEventListener(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "MeetingEventListener", - "printedName": "VideoSDKRTC.MeetingEventListener", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV6syntaxAA0c1_D7_SyntaxOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC16addEventListeneryyAA0ceF0_pF", - "mangledName": "$s11VideoSDKRTC7MeetingC16addEventListeneryyAA0ceF0_pF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "removeEventListener", - "printedName": "removeEventListener(_:)", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MeetingEventListener", - "printedName": "VideoSDKRTC.MeetingEventListener", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP" + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC19removeEventListeneryyAA0ceF0_pF", - "mangledName": "$s11VideoSDKRTC7MeetingC19removeEventListeneryyAA0ceF0_pF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvp", "moduleName": "VideoSDKRTC", "declAttributes": [ - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Meeting", - "printedName": "VideoSDKRTC.Meeting", - "usr": "s:11VideoSDKRTC7MeetingC" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { "kind": "TypeNominal", - "name": "Meeting", - "printedName": "VideoSDKRTC.Meeting", - "usr": "s:11VideoSDKRTC7MeetingC" + "name": "Google_Protobuf_Api", + "printedName": "VideoSDKRTC.Google_Protobuf_Api", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC7MeetingC2eeoiySbAC_ACtFZ", - "mangledName": "$s11VideoSDKRTC7MeetingC2eeoiySbAC_ACtFZ", + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiVACycfc", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiVACycfc", "moduleName": "VideoSDKRTC", - "static": true, "declAttributes": [ - "Final", "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:11VideoSDKRTC7MeetingC", - "mangledName": "$s11VideoSDKRTC7MeetingC", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "MeetingEventListener", - "printedName": "MeetingEventListener", - "children": [ + "init_kind": "Designated" + }, { - "kind": "Function", - "name": "onMeetingJoined", - "printedName": "onMeetingJoined()", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP02onC6JoinedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP02onC6JoinedyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV16protoMessageNameSSvpZ", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, + "static": true, "declAttributes": [ - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "onMeetingLeft", - "printedName": "onMeetingLeft()", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP02onC4LeftyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP02onC4LeftyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV17_protobuf_nameMapAA05_NameH0VvpZ", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, + "static": true, "declAttributes": [ - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { "kind": "Function", - "name": "onParticipantJoined", - "printedName": "onParticipantJoined(_:)", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", @@ -2667,28 +3978,29 @@ }, { "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onParticipantJoinedyyAA0G0CF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onParticipantJoinedyyAA0G0CF", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "Mutating", + "AccessControl" ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { "kind": "Function", - "name": "onParticipantLeft", - "printedName": "onParticipantLeft(_:)", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", @@ -2697,135 +4009,219 @@ }, { "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP17onParticipantLeftyyAA0G0CF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP17onParticipantLeftyyAA0G0CF", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV8traverse7visitoryxz_tKAA7VisitorRzlF", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ], - "reqNewWitnessTableEntry": true, + "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "onRecordingStarted", - "printedName": "onRecordingStarted()", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP18onRecordingStartedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP18onRecordingStartedyyF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onRecordingStoppped", - "printedName": "onRecordingStoppped()", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Google_Protobuf_Api", + "printedName": "VideoSDKRTC.Google_Protobuf_Api", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Api", + "printedName": "VideoSDKRTC.Google_Protobuf_Api", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onRecordingStopppedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onRecordingStopppedyyF", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV2eeoiySbAC_ACtFZ", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, + "static": true, "declAttributes": [ - "RawDocComment" + "AccessControl" ], - "reqNewWitnessTableEntry": true, + "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "onLivestreamStarted", - "printedName": "onLivestreamStarted()", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onLivestreamStartedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onLivestreamStartedyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV9hashValueSivp", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19Google_Protobuf_ApiV", + "mangledName": "$s11VideoSDKRTC19Google_Protobuf_ApiV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { - "kind": "Function", - "name": "onLivestreamStopped", - "printedName": "onLivestreamStopped()", + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Method", + "printedName": "Google_Protobuf_Method", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onLivestreamStoppedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onLivestreamStoppedyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvp", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onSpeakerChanged", - "printedName": "onSpeakerChanged(participantId:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "String", @@ -2833,36 +4229,61 @@ "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP16onSpeakerChanged13participantIdySSSg_tF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP16onSpeakerChanged13participantIdySSSg_tF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "onMicRequested", - "printedName": "onMicRequested(participantId:accept:reject:)", + "kind": "Var", + "name": "requestTypeURL", + "printedName": "requestTypeURL", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -2871,12 +4292,17 @@ "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -2885,70 +4311,85 @@ }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Void", "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV14requestTypeURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "onWebcamRequested", - "printedName": "onWebcamRequested(participantId:accept:reject:)", + "kind": "Var", + "name": "requestStreaming", + "printedName": "requestStreaming", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -2957,228 +4398,66 @@ }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Void", "printedName": "()" } - ] - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onMeetingJoined", - "printedName": "onMeetingJoined()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE02onC6JoinedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE02onC6JoinedyyF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onMeetingLeft", - "printedName": "onMeetingLeft()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE02onC4LeftyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE02onC4LeftyyF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onParticipantJoined", - "printedName": "onParticipantJoined(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onParticipantJoinedyyAA0G0CF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onParticipantJoinedyyAA0G0CF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onParticipantLeft", - "printedName": "onParticipantLeft(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE17onParticipantLeftyyAA0G0CF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE17onParticipantLeftyyAA0G0CF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onRecordingStarted", - "printedName": "onRecordingStarted()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE18onRecordingStartedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE18onRecordingStartedyyF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onRecordingStoppped", - "printedName": "onRecordingStoppped()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV16requestStreamingSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onRecordingStopppedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onRecordingStopppedyyF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "onLivestreamStarted", - "printedName": "onLivestreamStarted()", + "kind": "Var", + "name": "responseTypeURL", + "printedName": "responseTypeURL", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStartedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStartedyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvp", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onLivestreamStopped", - "printedName": "onLivestreamStopped()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStoppedyyF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStoppedyyF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onSpeakerChanged", - "printedName": "onSpeakerChanged(participantId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -3187,33 +4466,23 @@ "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE16onSpeakerChanged13participantIdySSSg_tF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE16onSpeakerChanged13participantIdySSSg_tF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onMicRequested", - "printedName": "onMicRequested(participantId:accept:reject:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "String", @@ -3221,80 +4490,183 @@ "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV15responseTypeURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "responseStreaming", + "printedName": "responseStreaming", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" } - ] - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV17responseStreamingSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "onWebcamRequested", - "printedName": "onWebcamRequested(participantId:accept:reject:)", + "kind": "Var", + "name": "options", + "printedName": "options", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -3303,120 +4675,65 @@ }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Void", "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV7optionsSayAA0c1_D7_OptionVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:11VideoSDKRTC20MeetingEventListenerP", - "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Participant", - "printedName": "Participant", - "children": [ + ] + }, { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "syntax", + "printedName": "syntax", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11ParticipantC2idSSvp", - "mangledName": "$s11VideoSDKRTC11ParticipantC2idSSvp", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "HasInitialValue", "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], @@ -3429,87 +4746,82 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11ParticipantC2idSSvg", - "mangledName": "$s11VideoSDKRTC11ParticipantC2idSSvg", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "displayName", - "printedName": "displayName", - "children": [ + }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC11ParticipantC11displayNameSSvp", - "mangledName": "$s11VideoSDKRTC11ParticipantC11displayNameSSvp", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11ParticipantC11displayNameSSvg", - "mangledName": "$s11VideoSDKRTC11ParticipantC11displayNameSSvg", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV6syntaxAA0c1_D7_SyntaxOvM", "moduleName": "VideoSDKRTC", "implicit": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "videoQuality", - "printedName": "videoQuality", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovp", - "mangledName": "$s11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovp", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvp", "moduleName": "VideoSDKRTC", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -3520,42 +4832,107 @@ "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovg", - "mangledName": "$s11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovg", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Method", + "printedName": "VideoSDKRTC.Google_Protobuf_Method", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodVACycfc", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "isLocal", - "printedName": "isLocal", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11ParticipantC7isLocalSbvp", - "mangledName": "$s11VideoSDKRTC11ParticipantC7isLocalSbvp", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV16protoMessageNameSSvpZ", "moduleName": "VideoSDKRTC", + "static": true, "declAttributes": [ + "HasInitialValue", "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -3565,57 +4942,46 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11ParticipantC7isLocalSbvg", - "mangledName": "$s11VideoSDKRTC11ParticipantC7isLocalSbvg", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV16protoMessageNameSSvgZ", "moduleName": "VideoSDKRTC", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "streams", - "printedName": "streams", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : VideoSDKRTC.MediaStream]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" - } - ], - "usr": "s:SD" + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvp", - "mangledName": "$s11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvp", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV17_protobuf_nameMapAA05_NameH0VvpZ", "moduleName": "VideoSDKRTC", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -3625,185 +4991,230 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : VideoSDKRTC.MediaStream]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" - } - ], - "usr": "s:SD" + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvg", - "mangledName": "$s11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvg", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV17_protobuf_nameMapAA05_NameH0VvgZ", "moduleName": "VideoSDKRTC", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Function", - "name": "enableMic", - "printedName": "enableMic()", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC9enableMicyyF", - "mangledName": "$s11VideoSDKRTC11ParticipantC9enableMicyyF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "disableMic", - "printedName": "disableMic()", - "children": [ + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC10disableMicyyF", - "mangledName": "$s11VideoSDKRTC11ParticipantC10disableMicyyF", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "Mutating", + "AccessControl" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "throwing": true, + "funcSelfKind": "Mutating" }, { "kind": "Function", - "name": "enableWebcam", - "printedName": "enableWebcam()", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC12enableWebcamyyF", - "mangledName": "$s11VideoSDKRTC11ParticipantC12enableWebcamyyF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "disableWebcam", - "printedName": "disableWebcam()", - "children": [ + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC13disableWebcamyyF", - "mangledName": "$s11VideoSDKRTC11ParticipantC13disableWebcamyyF", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV8traverse7visitoryxz_tKAA7VisitorRzlF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ], "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "remove", - "printedName": "remove()", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC6removeyyF", - "mangledName": "$s11VideoSDKRTC11ParticipantC6removeyyF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addStream", - "printedName": "addStream(_:)", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Google_Protobuf_Method", + "printedName": "VideoSDKRTC.Google_Protobuf_Method", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV" }, { "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" + "name": "Google_Protobuf_Method", + "printedName": "VideoSDKRTC.Google_Protobuf_Method", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC9addStreamyyAA05MediaE0CF", - "mangledName": "$s11VideoSDKRTC11ParticipantC9addStreamyyAA05MediaE0CF", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV2eeoiySbAC_ACtFZ", "moduleName": "VideoSDKRTC", + "static": true, "declAttributes": [ - "RawDocComment" + "AccessControl" ], "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "removeStream", - "printedName": "removeStream(_:)", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.MediaStream?", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_MethodV", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_MethodV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Mixin", + "printedName": "Google_Protobuf_Mixin", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -3811,69 +5222,377 @@ "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC12removeStreamyAA05MediaE0CSgSSF", - "mangledName": "$s11VideoSDKRTC11ParticipantC12removeStreamyAA05MediaE0CSgSSF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvp", "moduleName": "VideoSDKRTC", "declAttributes": [ - "DiscardableResult", + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "removeAllStreams", - "printedName": "removeAllStreams()", + "kind": "Var", + "name": "root", + "printedName": "root", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC16removeAllStreamsyyF", - "mangledName": "$s11VideoSDKRTC11ParticipantC16removeAllStreamsyyF", + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvp", "moduleName": "VideoSDKRTC", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV4rootSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "setQuality", - "printedName": "setQuality(_:)", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "Google_Protobuf_Mixin", + "printedName": "VideoSDKRTC.Google_Protobuf_Mixin", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC10setQualityyyAA0aE0OF", - "mangledName": "$s11VideoSDKRTC11ParticipantC10setQualityyyAA0aE0OF", + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinVACycfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinVACycfc", "moduleName": "VideoSDKRTC", "declAttributes": [ - "RawDocComment" + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { "kind": "Function", - "name": "addEventListener", - "printedName": "addEventListener(_:)", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", @@ -3882,25 +5601,29 @@ }, { "kind": "TypeNominal", - "name": "ParticipantEventListener", - "printedName": "VideoSDKRTC.ParticipantEventListener", - "usr": "s:11VideoSDKRTC24ParticipantEventListenerP" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC16addEventListeneryyAA0ceF0_pF", - "mangledName": "$s11VideoSDKRTC11ParticipantC16addEventListeneryyAA0ceF0_pF", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "Mutating", + "AccessControl" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "throwing": true, + "funcSelfKind": "Mutating" }, { "kind": "Function", - "name": "removeEventListener", - "printedName": "removeEventListener(_:)", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", @@ -3909,19 +5632,22 @@ }, { "kind": "TypeNominal", - "name": "ParticipantEventListener", - "printedName": "VideoSDKRTC.ParticipantEventListener", - "usr": "s:11VideoSDKRTC24ParticipantEventListenerP" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC19removeEventListeneryyAA0ceF0_pF", - "mangledName": "$s11VideoSDKRTC11ParticipantC19removeEventListeneryyAA0ceF0_pF", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV8traverse7visitoryxz_tKAA7VisitorRzlF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ], "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -3937,39 +5663,121 @@ }, { "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "name": "Google_Protobuf_Mixin", + "printedName": "VideoSDKRTC.Google_Protobuf_Mixin", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV" }, { "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "name": "Google_Protobuf_Mixin", + "printedName": "VideoSDKRTC.Google_Protobuf_Mixin", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC11ParticipantC2eeoiySbAC_ACtFZ", - "mangledName": "$s11VideoSDKRTC11ParticipantC2eeoiySbAC_ACtFZ", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV2eeoiySbAC_ACtFZ", "moduleName": "VideoSDKRTC", "static": true, "declAttributes": [ - "Final", "AccessControl" ], "isFromExtension": true, "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Class", - "usr": "s:11VideoSDKRTC11ParticipantC", - "mangledName": "$s11VideoSDKRTC11ParticipantC", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC21Google_Protobuf_MixinV", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_MixinV", "moduleName": "VideoSDKRTC", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasMissingDesignatedInitializers": true, "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, { "kind": "Conformance", "name": "Equatable", @@ -3991,13 +5799,13 @@ }, { "kind": "TypeDecl", - "name": "ParticipantEventListener", - "printedName": "ParticipantEventListener", + "name": "APIDoubleObserverMetricHandle", + "printedName": "APIDoubleObserverMetricHandle", "children": [ { "kind": "Function", - "name": "onStreamEnabled", - "printedName": "onStreamEnabled(_:forParticipant:)", + "name": "observe", + "printedName": "observe(value:)", "children": [ { "kind": "TypeNominal", @@ -4006,34 +5814,53 @@ }, { "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC24ParticipantEventListenerP15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", - "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerP15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", + "usr": "s:11VideoSDKRTC29APIDoubleObserverMetricHandleP7observe5valueySd_tF", + "mangledName": "$s11VideoSDKRTC29APIDoubleObserverMetricHandleP7observe5valueySd_tF", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.APIDoubleObserverMetricHandle>", + "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC29APIDoubleObserverMetricHandleP", + "mangledName": "$s11VideoSDKRTC29APIDoubleObserverMetricHandleP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "APIIntObserverMetricHandle", + "printedName": "APIIntObserverMetricHandle", + "children": [ { "kind": "Function", - "name": "onStreamDisabled", - "printedName": "onStreamDisabled(_:forParticipant:)", + "name": "observe", + "printedName": "observe(value:)", "children": [ { "kind": "TypeNominal", @@ -4042,120 +5869,31 @@ }, { "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC24ParticipantEventListenerP16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", - "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerP16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", + "usr": "s:11VideoSDKRTC26APIIntObserverMetricHandleP7observe5valueySi_tF", + "mangledName": "$s11VideoSDKRTC26APIIntObserverMetricHandleP7observe5valueySi_tF", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.APIIntObserverMetricHandle>", + "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onStreamEnabled", - "printedName": "onStreamEnabled(_:forParticipant:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC24ParticipantEventListenerPAAE15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", - "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerPAAE15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onStreamDisabled", - "printedName": "onStreamDisabled(_:forParticipant:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MediaStream", - "printedName": "VideoSDKRTC.MediaStream", - "usr": "s:11VideoSDKRTC11MediaStreamC" - }, - { - "kind": "TypeNominal", - "name": "Participant", - "printedName": "VideoSDKRTC.Participant", - "usr": "s:11VideoSDKRTC11ParticipantC" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC24ParticipantEventListenerPAAE16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", - "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerPAAE16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" } ], "declKind": "Protocol", - "usr": "s:11VideoSDKRTC24ParticipantEventListenerP", - "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerP", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + "usr": "s:11VideoSDKRTC26APIIntObserverMetricHandleP", + "mangledName": "$s11VideoSDKRTC26APIIntObserverMetricHandleP", "moduleName": "VideoSDKRTC", "declAttributes": [ + "AccessControl", "RawDocComment" ] }, @@ -4171,99 +5909,95 @@ }, { "kind": "TypeDecl", - "name": "PubSub", - "printedName": "PubSub", + "name": "ArrayWithCapacity", + "printedName": "ArrayWithCapacity", "children": [ { - "kind": "Function", - "name": "publish", - "printedName": "publish(topic:message:options:)", + "kind": "Var", + "name": "capacity", + "printedName": "capacity", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV8capacitySivp", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV8capacitySivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "hasDefaultArg": true, - "usr": "s:SD" + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV8capacitySivg", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV8capacitySivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC6PubSubC7publish5topic7message7optionsySS_SSSDySSypGtF", - "mangledName": "$s11VideoSDKRTC6PubSubC7publish5topic7message7optionsySS_SSSDySSypGtF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "subscribe", - "printedName": "subscribe(topic:forListener:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(capacity:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" }, { "kind": "TypeNominal", - "name": "PubSubMessageListener", - "printedName": "VideoSDKRTC.PubSubMessageListener", - "usr": "s:11VideoSDKRTC21PubSubMessageListenerP" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC6PubSubC9subscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", - "mangledName": "$s11VideoSDKRTC6PubSubC9subscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV8capacityACyxGSi_tcfc", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV8capacityACyxGSi_tcfc", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "unsubscribe", - "printedName": "unsubscribe(topic:forListener:)", + "name": "append", + "printedName": "append(_:)", "children": [ { "kind": "TypeNominal", @@ -4272,110 +6006,42 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "PubSubMessageListener", - "printedName": "VideoSDKRTC.PubSubMessageListener", - "usr": "s:11VideoSDKRTC21PubSubMessageListenerP" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC6PubSubC11unsubscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", - "mangledName": "$s11VideoSDKRTC6PubSubC11unsubscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV6appendyyxF", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV6appendyyxF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "Mutating", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "funcSelfKind": "Mutating" }, - { - "kind": "Function", - "name": "getMessagesForTopic", - "printedName": "getMessagesForTopic(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[VideoSDKRTC.PubSubMessage]", - "children": [ - { - "kind": "TypeNominal", - "name": "PubSubMessage", - "printedName": "VideoSDKRTC.PubSubMessage", - "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC6PubSubC19getMessagesForTopicySayAA0cD7MessageCGSSF", - "mangledName": "$s11VideoSDKRTC6PubSubC19getMessagesForTopicySayAA0cD7MessageCGSSF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:11VideoSDKRTC6PubSubC", - "mangledName": "$s11VideoSDKRTC6PubSubC", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "PubSubMessage", - "printedName": "PubSubMessage", - "children": [ { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "startIndex", + "printedName": "startIndex", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvp", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvp", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV10startIndexSivp", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV10startIndexSivp", "moduleName": "VideoSDKRTC", "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -4384,84 +6050,42 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvg", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvg", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV10startIndexSivg", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV10startIndexSivg", "moduleName": "VideoSDKRTC", - "implicit": true, + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvs", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvs", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvM", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvM", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "topic", - "printedName": "topic", + "name": "endIndex", + "printedName": "endIndex", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvp", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvp", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV8endIndexSivp", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV8endIndexSivp", "moduleName": "VideoSDKRTC", "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -4470,84 +6094,49 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvg", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvg", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV8endIndexSivg", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV8endIndexSivg", "moduleName": "VideoSDKRTC", - "implicit": true, + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvs", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvs", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvM", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvM", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "message", - "printedName": "message", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvp", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvp", + "declKind": "Subscript", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityVyxSicip", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityVyxSicip", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -4556,16 +6145,23 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvg", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvg", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityVyxSicig", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityVyxSicig", "moduleName": "VideoSDKRTC", - "implicit": true, + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isFromExtension": true, "accessorKind": "get" }, { @@ -4580,16 +6176,23 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvs", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvs", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityVyxSicis", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityVyxSicis", "moduleName": "VideoSDKRTC", - "implicit": true, + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isFromExtension": true, "accessorKind": "set" }, { @@ -4601,209 +6204,334 @@ "kind": "TypeNominal", "name": "Void", "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvM", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvM", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityVyxSiciM", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityVyxSiciM", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "implicit": true, + "isFromExtension": true, "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "senderId", - "printedName": "senderId", + "kind": "Function", + "name": "index", + "printedName": "index(after:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvp", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvp", + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV5index5afterS2i_tF", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV5index5afterS2i_tF", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvg", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvg", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "get" - }, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV", + "mangledName": "$s11VideoSDKRTC17ArrayWithCapacityV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvs", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvs", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Slice", + "printedName": "Swift.Slice>", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" + } + ], + "usr": "s:s5SliceV" } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvM", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvM", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:SM", + "mangledName": "$sSM" }, { - "kind": "Var", - "name": "senderName", - "printedName": "senderName", + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvp", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvp", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvg", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvg", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator>", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Slice", + "printedName": "Swift.Slice>", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" + } + ], + "usr": "s:s5SliceV" } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvs", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvs", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices>", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" + } + ], + "usr": "s:SI" } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvM", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvM", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:Sl", + "mangledName": "$sSl" }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator>", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AsynchronousMetricStorage", + "printedName": "AsynchronousMetricStorage", + "children": [ { "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", + "name": "registeredReader", + "printedName": "registeredReader", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "RegisteredReader", + "printedName": "VideoSDKRTC.RegisteredReader", + "usr": "s:11VideoSDKRTC16RegisteredReaderC" } ], "declKind": "Var", - "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvp", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvp", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC16registeredReaderAA010RegisteredG0Cvp", + "mangledName": "$s11VideoSDKRTC25AsynchronousMetricStorageC16registeredReaderAA010RegisteredG0Cvp", "moduleName": "VideoSDKRTC", "declAttributes": [ "HasStorage", - "AccessControl", - "RawDocComment" + "SetterAccess", + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -4814,641 +6542,740 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "RegisteredReader", + "printedName": "VideoSDKRTC.RegisteredReader", + "usr": "s:11VideoSDKRTC16RegisteredReaderC" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvg", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvg", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC16registeredReaderAA010RegisteredG0Cvg", + "mangledName": "$s11VideoSDKRTC25AsynchronousMetricStorageC16registeredReaderAA010RegisteredG0Cvg", "moduleName": "VideoSDKRTC", "implicit": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "metricDescriptor", + "printedName": "metricDescriptor", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvs", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvs", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "set" - }, + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC16metricDescriptorAA0dG0Vvp", + "mangledName": "$s11VideoSDKRTC25AsynchronousMetricStorageC16metricDescriptorAA0dG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" } ], "declKind": "Accessor", - "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvM", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvM", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC16metricDescriptorAA0dG0Vvg", + "mangledName": "$s11VideoSDKRTC25AsynchronousMetricStorageC16metricDescriptorAA0dG0Vvg", "moduleName": "VideoSDKRTC", "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Function", + "name": "collect", + "printedName": "collect(resource:scope:startEpochNanos:epochNanos:)", "children": [ { "kind": "TypeNominal", - "name": "PubSubMessage", - "printedName": "VideoSDKRTC.PubSubMessage", - "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage" + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], - "declKind": "Constructor", - "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage(im)init", - "mangledName": "$s11VideoSDKRTC13PubSubMessageCACycfc", + "declKind": "Func", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC7collect8resource5scope15startEpochNanos05epochK0AA06StableD4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", + "mangledName": "$s11VideoSDKRTC25AsynchronousMetricStorageC7collect8resource5scope15startEpochNanos05epochK0AA06StableD4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", "moduleName": "VideoSDKRTC", - "overriding": true, - "implicit": true, - "objc_name": "init", "declAttributes": [ - "Dynamic", - "ObjC", - "Override" + "AccessControl" ], - "init_kind": "Designated" + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEmpty", + "printedName": "isEmpty()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC7isEmptySbyF", + "mangledName": "$s11VideoSDKRTC25AsynchronousMetricStorageC7isEmptySbyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage", - "mangledName": "$s11VideoSDKRTC13PubSubMessageC", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC", + "mangledName": "$s11VideoSDKRTC25AsynchronousMetricStorageC", "moduleName": "VideoSDKRTC", "declAttributes": [ - "AccessControl", - "ObjC" + "AccessControl" ], - "superclassUsr": "c:objc(cs)NSObject", "hasMissingDesignatedInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "name": "MetricStorage", + "printedName": "MetricStorage", + "usr": "s:11VideoSDKRTC13MetricStorageP", + "mangledName": "$s11VideoSDKRTC13MetricStorageP" } ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "TypeDecl", - "name": "PubSubMessageListener", - "printedName": "PubSubMessageListener", + "name": "AsyncMessageSequence", + "printedName": "AsyncMessageSequence", "children": [ { - "kind": "Function", - "name": "onMessageReceived", - "printedName": "onMessageReceived(_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(base:extensions:partial:options:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "AsyncMessageSequence", + "printedName": "VideoSDKRTC.AsyncMessageSequence<τ_0_0, τ_0_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV" }, { "kind": "TypeNominal", - "name": "PubSubMessage", - "printedName": "VideoSDKRTC.PubSubMessage", - "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage" - } - ], - "declKind": "Func", - "usr": "s:11VideoSDKRTC21PubSubMessageListenerP02onE8ReceivedyyAA0cdE0CF", - "mangledName": "$s11VideoSDKRTC21PubSubMessageListenerP02onE8ReceivedyyAA0cdE0CF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.PubSubMessageListener>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV4base10extensions7partial7optionsACyxq_Gx_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtcfc", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV4base10extensions7partial7optionsACyxq_Gx_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", "RawDocComment" ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:11VideoSDKRTC21PubSubMessageListenerP", - "mangledName": "$s11VideoSDKRTC21PubSubMessageListenerP", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Mediasoup", - "printedName": "Mediasoup", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Mediasoup", - "printedName": "Mediasoup", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "VideosdkWebSocket", - "printedName": "VideosdkWebSocket", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "VideoQuality", - "printedName": "VideoQuality", - "children": [ + "init_kind": "Designated" + }, { - "kind": "Var", - "name": "high", - "printedName": "high", + "kind": "TypeDecl", + "name": "AsyncIterator", + "printedName": "AsyncIterator", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.VideoQuality.Type) -> VideoSDKRTC.VideoQuality", + "kind": "Var", + "name": "iterator", + "printedName": "iterator", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "Optional", + "printedName": "τ_0_0.AsyncIterator?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.AsyncIterator" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvp", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "UsableFromInline" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.AsyncIterator?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.AsyncIterator" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvg", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.VideoQuality.Type", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.AsyncIterator?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.AsyncIterator" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvs", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvM", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV8iteratorADQzSgvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "implicit": true, + "intro_Macosx": "10.15", + "intro_iOS": "13.0", + "intro_tvOS": "13.0", + "intro_watchOS": "6.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available" + ], + "accessorKind": "_modify" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC0A7QualityO4highyA2CmF", - "mangledName": "$s11VideoSDKRTC0A7QualityO4highyA2CmF", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Var", - "name": "medium", - "printedName": "medium", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.VideoQuality.Type) -> VideoSDKRTC.VideoQuality", + "kind": "Var", + "name": "extensions", + "printedName": "extensions", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" - }, + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV10extensionsAA12ExtensionMap_pSgvp", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV10extensionsAA12ExtensionMap_pSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "UsableFromInline" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.VideoQuality.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV10extensionsAA12ExtensionMap_pSgvg", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV10extensionsAA12ExtensionMap_pSgvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC0A7QualityO6mediumyA2CmF", - "mangledName": "$s11VideoSDKRTC0A7QualityO6mediumyA2CmF", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Var", - "name": "low", - "printedName": "low", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(VideoSDKRTC.VideoQuality.Type) -> VideoSDKRTC.VideoQuality", + "kind": "Var", + "name": "partial", + "printedName": "partial", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" - }, + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7partialSbvp", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7partialSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "UsableFromInline" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "VideoSDKRTC.VideoQuality.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7partialSbvg", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7partialSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:11VideoSDKRTC0A7QualityO3lowyA2CmF", - "mangledName": "$s11VideoSDKRTC0A7QualityO3lowyA2CmF", - "moduleName": "VideoSDKRTC" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.VideoQuality?", + "kind": "Var", + "name": "options", + "printedName": "options", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" } ], - "usr": "s:Sq" + "declKind": "Var", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7optionsAA21BinaryDecodingOptionsVvp", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7optionsAA21BinaryDecodingOptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "UsableFromInline" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7optionsAA21BinaryDecodingOptionsVvg", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV7optionsAA21BinaryDecodingOptionsVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:11VideoSDKRTC0A7QualityO8rawValueACSgSS_tcfc", - "mangledName": "$s11VideoSDKRTC0A7QualityO8rawValueACSgSS_tcfc", - "moduleName": "VideoSDKRTC", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC0A7QualityO8rawValueSSvp", - "mangledName": "$s11VideoSDKRTC0A7QualityO8rawValueSSvp", - "moduleName": "VideoSDKRTC", - "implicit": true, - "accessors": [ + "kind": "Function", + "name": "nextVarInt", + "printedName": "nextVarInt()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt64?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV10nextVarInts6UInt64VSgyYaKF", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV10nextVarInts6UInt64VSgyYaKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "Inlinable", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Function", + "name": "readBytes", + "printedName": "readBytes(_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC0A7QualityO8rawValueSSvg", - "mangledName": "$s11VideoSDKRTC0A7QualityO8rawValueSSvg", + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV9readBytesySays5UInt8VGSiYaKF", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV9readBytesySays5UInt8VGSiYaKF", "moduleName": "VideoSDKRTC", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allCases", - "printedName": "allCases", - "children": [ + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "UsableFromInline", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[VideoSDKRTC.VideoQuality]", + "kind": "Function", + "name": "next", + "printedName": "next()", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "Optional", + "printedName": "τ_0_1?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sa" + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV4nextq_SgyYaKF", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV4nextq_SgyYaKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "Inlinable", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "Mutating" } ], - "declKind": "Var", - "usr": "s:11VideoSDKRTC0A7QualityO8allCasesSayACGvpZ", - "mangledName": "$s11VideoSDKRTC0A7QualityO8allCasesSayACGvpZ", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV", "moduleName": "VideoSDKRTC", - "static": true, - "implicit": true, - "accessors": [ + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Conformance", + "name": "AsyncIteratorProtocol", + "printedName": "AsyncIteratorProtocol", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[VideoSDKRTC.VideoQuality]", + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" + "name": "GenericTypeParam", + "printedName": "τ_0_1" } - ], - "usr": "s:Sa" + ] } ], - "declKind": "Accessor", - "usr": "s:11VideoSDKRTC0A7QualityO8allCasesSayACGvgZ", - "mangledName": "$s11VideoSDKRTC0A7QualityO8allCasesSayACGvgZ", - "moduleName": "VideoSDKRTC", - "static": true, - "implicit": true, - "accessorKind": "get" + "usr": "s:ScI", + "mangledName": "$sScI" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" } ] + }, + { + "kind": "Function", + "name": "makeAsyncIterator", + "printedName": "makeAsyncIterator()", + "children": [ + { + "kind": "TypeNominal", + "name": "AsyncIterator", + "printedName": "VideoSDKRTC.AsyncMessageSequence<τ_0_0, τ_0_1>.AsyncIterator", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV04makeC8IteratorAC0cG0Vyxq__GyF", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV04makeC8IteratorAC0cG0Vyxq__GyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } ], - "declKind": "Enum", - "usr": "s:11VideoSDKRTC0A7QualityO", - "mangledName": "$s11VideoSDKRTC0A7QualityO", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV", + "mangledName": "$s11VideoSDKRTC20AsyncMessageSequenceV", "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : _Concurrency.AsyncSequence, τ_0_1 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "intro_Macosx": "10.15", + "intro_iOS": "13.0", + "intro_tvOS": "13.0", + "intro_watchOS": "6.0", "declAttributes": [ "AccessControl", + "Available", + "Available", + "Available", + "Available", "RawDocComment" ], - "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "name": "AsyncSequence", + "printedName": "AsyncSequence", "children": [ { "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "name": "AsyncIterator", + "printedName": "AsyncIterator", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AsyncIterator", + "printedName": "VideoSDKRTC.AsyncMessageSequence<τ_0_0, τ_0_1>.AsyncIterator", + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV0C8IteratorV" } ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ + }, { "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[VideoSDKRTC.VideoQuality]", - "children": [ - { - "kind": "TypeNominal", - "name": "VideoQuality", - "printedName": "VideoSDKRTC.VideoQuality", - "usr": "s:11VideoSDKRTC0A7QualityO" - } - ], - "usr": "s:Sa" + "name": "GenericTypeParam", + "printedName": "τ_0_1" } ] } ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" + "usr": "s:Sci", + "mangledName": "$sSci" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" } ] }, @@ -5462,244 +7289,301 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "WebRTC", - "printedName": "WebRTC", - "declKind": "Import", - "moduleName": "VideoSDKRTC" - }, { "kind": "TypeDecl", - "name": "VideoSDK", - "printedName": "VideoSDK", + "name": "AttributeProcessorProtocol", + "printedName": "AttributeProcessorProtocol", "children": [ { "kind": "Function", - "name": "config", - "printedName": "config(token:)", + "name": "process", + "printedName": "process(incoming:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC0A3SDKC6config5tokenySS_tFZ", - "mangledName": "$s11VideoSDKRTC0A3SDKC6config5tokenySS_tFZ", + "usr": "s:11VideoSDKRTC26AttributeProcessorProtocolP7process8incomingSDySSAA0C5ValueOGAH_tF", + "mangledName": "$s11VideoSDKRTC26AttributeProcessorProtocolP7process8incomingSDySSAA0C5ValueOGAH_tF", "moduleName": "VideoSDKRTC", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AttributeProcessorProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC26AttributeProcessorProtocolP", + "mangledName": "$s11VideoSDKRTC26AttributeProcessorProtocolP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "AttributeProcessor", + "printedName": "AttributeProcessor", + "children": [ { "kind": "Function", - "name": "initMeeting", - "printedName": "initMeeting(meetingId:participantId:participantName:micEnabled:webcamEnabled:customCameraVideoStream:)", + "name": "then", + "printedName": "then(other:)", "children": [ { "kind": "TypeNominal", - "name": "Meeting", - "printedName": "VideoSDKRTC.Meeting", - "usr": "s:11VideoSDKRTC7MeetingC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.CustomRTCMediaStream?", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomRTCMediaStream", - "printedName": "VideoSDKRTC.CustomRTCMediaStream", - "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC0A3SDKC11initMeeting9meetingId011participantG00H4Name10micEnabled06webcamK0012customCameraA6StreamAA0E0CSS_S2SS2bAA014CustomRTCMediaO0CSgtFZ", - "mangledName": "$s11VideoSDKRTC0A3SDKC11initMeeting9meetingId011participantG00H4Name10micEnabled06webcamK0012customCameraA6StreamAA0E0CSS_S2SS2bAA014CustomRTCMediaO0CSgtFZ", + "usr": "s:11VideoSDKRTC18AttributeProcessorC4then5otherA2C_tF", + "mangledName": "$s11VideoSDKRTC18AttributeProcessorC4then5otherA2C_tF", "moduleName": "VideoSDKRTC", - "static": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "createCameraVideoTrack", - "printedName": "createCameraVideoTrack(encoderConfig:facingMode:multiStream:)", + "name": "process", + "printedName": "process(incoming:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "CustomRTCMediaStream", - "printedName": "VideoSDKRTC.CustomRTCMediaStream", - "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "usr": "s:Sq" + "usr": "s:SD" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig?", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "CustomVideoTrackConfig", - "printedName": "VideoSDKRTC.CustomVideoTrackConfig", - "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18AttributeProcessorC7process8incomingSDySSAA0C5ValueOGAH_tF", + "mangledName": "$s11VideoSDKRTC18AttributeProcessorC7process8incomingSDySSAA0C5ValueOGAH_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "filterByKeyName", + "printedName": "filterByKeyName(nameFilter:)", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "AVFoundation.AVCaptureDevice.Position?", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Swift.Bool", "children": [ { "kind": "TypeNominal", - "name": "Position", - "printedName": "AVFoundation.AVCaptureDevice.Position", - "usr": "c:@E@AVCaptureDevicePosition" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18AttributeProcessorC15filterByKeyName10nameFilterACSbSSc_tFZ", + "mangledName": "$s11VideoSDKRTC18AttributeProcessorC15filterByKeyName10nameFilterACSbSSc_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "append", + "printedName": "append(attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:SD" } ], "declKind": "Func", - "usr": "s:11VideoSDKRTC0A3SDKC012createCameraA5Track13encoderConfig10facingMode11multiStreamAA014CustomRTCMediaL0CSgAA0mafH0OSg_So23AVCaptureDevicePositionVSgSbSgtKFZ", - "mangledName": "$s11VideoSDKRTC0A3SDKC012createCameraA5Track13encoderConfig10facingMode11multiStreamAA014CustomRTCMediaL0CSgAA0mafH0OSg_So23AVCaptureDevicePositionVSgSbSgtKFZ", + "usr": "s:11VideoSDKRTC18AttributeProcessorC6append10attributesACSDySSAA0C5ValueOG_tFZ", + "mangledName": "$s11VideoSDKRTC18AttributeProcessorC6append10attributesACSDySSAA0C5ValueOG_tFZ", "moduleName": "VideoSDKRTC", "static": true, "declAttributes": [ "Final", "AccessControl" ], - "throwing": true, "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "s:11VideoSDKRTC0A3SDKC", - "mangledName": "$s11VideoSDKRTC0A3SDKC", + "usr": "s:11VideoSDKRTC18AttributeProcessorC", + "mangledName": "$s11VideoSDKRTC18AttributeProcessorC", "moduleName": "VideoSDKRTC", "declAttributes": [ - "AccessControl", - "Final" + "AccessControl" ], - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AttributeProcessorProtocol", + "printedName": "AttributeProcessorProtocol", + "usr": "s:11VideoSDKRTC26AttributeProcessorProtocolP", + "mangledName": "$s11VideoSDKRTC26AttributeProcessorProtocolP" + } + ] }, { "kind": "TypeDecl", - "name": "Data", - "printedName": "Data", + "name": "JoinedAttributeProcessor", + "printedName": "JoinedAttributeProcessor", "children": [ { "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString()", + "name": "process", + "printedName": "process(incoming:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV11VideoSDKRTCE12toJSONStringSSyF", - "mangledName": "$s10Foundation4DataV11VideoSDKRTCE12toJSONStringSSyF", - "moduleName": "VideoSDKRTC", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "toJSON", - "printedName": "toJSON()", - "children": [ + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + }, { "kind": "TypeNominal", "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", @@ -5709,349 +7593,566 @@ }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], "usr": "s:SD" } ], "declKind": "Func", - "usr": "s:10Foundation4DataV11VideoSDKRTCE6toJSONSDySSypGyF", - "mangledName": "$s10Foundation4DataV11VideoSDKRTCE6toJSONSDySSypGyF", + "usr": "s:11VideoSDKRTC24JoinedAttributeProcessorC7process8incomingSDySSAA0D5ValueOGAH_tF", + "mangledName": "$s11VideoSDKRTC24JoinedAttributeProcessorC7process8incomingSDySSAA0D5ValueOGAH_tF", "moduleName": "VideoSDKRTC", + "overriding": true, "declAttributes": [ - "RawDocComment" + "AccessControl", + "Override" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "toJSONArray", - "printedName": "toJSONArray()", + "name": "then", + "printedName": "then(other:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sa" + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + }, + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" } ], "declKind": "Func", - "usr": "s:10Foundation4DataV11VideoSDKRTCE11toJSONArraySayypGyF", - "mangledName": "$s10Foundation4DataV11VideoSDKRTCE11toJSONArraySayypGyF", + "usr": "s:11VideoSDKRTC24JoinedAttributeProcessorC4then5otherAA0dE0CAG_tF", + "mangledName": "$s11VideoSDKRTC24JoinedAttributeProcessorC4then5otherAA0dE0CAG_tF", "moduleName": "VideoSDKRTC", + "overriding": true, "declAttributes": [ - "RawDocComment" + "AccessControl", + "Override" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:10Foundation4DataV", - "mangledName": "$s10Foundation4DataV", - "moduleName": "Foundation", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ + }, { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", + "kind": "Function", + "name": "prepend", + "printedName": "prepend(processor:)", "children": [ { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSData", - "printedName": "Foundation.NSData", - "usr": "c:objc(cs)NSData" - } - ] + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + }, + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" } ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + "declKind": "Func", + "usr": "s:11VideoSDKRTC24JoinedAttributeProcessorC7prepend9processorAA0dE0CAG_tF", + "mangledName": "$s11VideoSDKRTC24JoinedAttributeProcessorC7prepend9processorAA0dE0CAG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC24JoinedAttributeProcessorC", + "mangledName": "$s11VideoSDKRTC24JoinedAttributeProcessorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC18AttributeProcessorC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.AttributeProcessor" + ], + "conformances": [ { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, + "name": "AttributeProcessorProtocol", + "printedName": "AttributeProcessorProtocol", + "usr": "s:11VideoSDKRTC26AttributeProcessorProtocolP", + "mangledName": "$s11VideoSDKRTC26AttributeProcessorProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoopAttributeProcessor", + "printedName": "NoopAttributeProcessor", + "children": [ { - "kind": "Conformance", - "name": "RandomAccessCollection", - "printedName": "RandomAccessCollection", + "kind": "Function", + "name": "process", + "printedName": "process(incoming:)", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:SD" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:SD" } ], - "usr": "s:Sk", - "mangledName": "$sSk" - }, + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopAttributeProcessorC7process8incomingSDySSAA0D5ValueOGAH_tF", + "mangledName": "$s11VideoSDKRTC22NoopAttributeProcessorC7process8incomingSDySSAA0D5ValueOGAH_tF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC22NoopAttributeProcessorC", + "mangledName": "$s11VideoSDKRTC22NoopAttributeProcessorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC18AttributeProcessorC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.AttributeProcessor" + ], + "conformances": [ { "kind": "Conformance", - "name": "MutableCollection", - "printedName": "MutableCollection", + "name": "AttributeProcessorProtocol", + "printedName": "AttributeProcessorProtocol", + "usr": "s:11VideoSDKRTC26AttributeProcessorProtocolP", + "mangledName": "$s11VideoSDKRTC26AttributeProcessorProtocolP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AttributesDictionary", + "printedName": "AttributesDictionary", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(capacity:valueLengthLimit:)", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] + "kind": "TypeNominal", + "name": "AttributesDictionary", + "printedName": "VideoSDKRTC.AttributesDictionary", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV" }, { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" } ], - "usr": "s:SM", - "mangledName": "$sSM" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV8capacity16valueLengthLimitACSi_Sitcfc", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV8capacity16valueLengthLimitACSi_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MutableDataProtocol", - "printedName": "MutableDataProtocol", - "usr": "s:10Foundation19MutableDataProtocolP", - "mangledName": "$s10Foundation19MutableDataProtocolP" - }, - { - "kind": "Conformance", - "name": "ContiguousBytes", - "printedName": "ContiguousBytes", - "usr": "s:10Foundation15ContiguousBytesP", - "mangledName": "$s10Foundation15ContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ + "declKind": "Subscript", + "usr": "s:11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSScip", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSScip", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSScig", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSScig", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSScis", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSScis", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSSciM", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryVyAA14AttributeValueOSgSSciM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "updateValue", + "printedName": "updateValue(value:forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:Sq" }, { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV11updateValue5value6forKeyAA09AttributeF0OSgAH_SStF", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV11updateValue5value6forKeyAA09AttributeF0OSgAH_SStF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "updateValues", + "printedName": "updateValues(attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:SD" } ], - "usr": "s:SK", - "mangledName": "$sSK" + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV12updateValues10attributesySDySSAA14AttributeValueOG_tF", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV12updateValues10attributesySDySSAA14AttributeValueOG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" }, { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", + "kind": "Function", + "name": "updateValues", + "printedName": "updateValues(attributes:)", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AttributesDictionary", + "printedName": "VideoSDKRTC.AttributesDictionary", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV12updateValues10attributesyAC_tF", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV12updateValues10attributesyAC_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "removeValueForKey", + "printedName": "removeValueForKey(key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:Sq" }, { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV17removeValueForKey3keyAA09AttributeF0OSgSS_tF", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV17removeValueForKey3keyAA09AttributeF0OSgSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "removeAll", + "printedName": "removeAll(keepCapacity:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV9removeAll12keepCapacityySi_tF", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV9removeAll12keepCapacityySi_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV5countSivp", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV5countSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -6059,89 +8160,143 @@ "printedName": "Swift.Int", "usr": "s:Si" } - ] - }, + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV5countSivg", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV5countSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "numberOfDroppedAttributes", + "printedName": "numberOfDroppedAttributes", + "children": [ { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV015numberOfDroppedC0Sivp", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV015numberOfDroppedC0Sivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Foundation.Data.Iterator", - "usr": "s:10Foundation4DataV8IteratorV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] - }, + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV015numberOfDroppedC0Sivg", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV015numberOfDroppedC0Sivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] - }, + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV6valuesSayAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV6valuesSayAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", + "name": "Array", + "printedName": "[VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "usr": "s:Sn" + "usr": "s:Sa" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV6valuesSayAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV6valuesSayAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" } - ], - "usr": "s:Sl", - "mangledName": "$sSl" + ] }, { - "kind": "Conformance", - "name": "DataProtocol", - "printedName": "DataProtocol", + "kind": "Function", + "name": "makeIterator", + "printedName": "makeIterator()", "children": [ { - "kind": "TypeWitness", - "name": "Regions", - "printedName": "Regions", - "children": [ - { - "kind": "TypeNominal", - "name": "CollectionOfOne", - "printedName": "Swift.CollectionOfOne", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:s15CollectionOfOneV" - } - ] + "kind": "TypeNominal", + "name": "AttributesWithCapacityIterator", + "printedName": "VideoSDKRTC.AttributesWithCapacityIterator", + "usr": "s:11VideoSDKRTC30AttributesWithCapacityIteratorV" } ], - "usr": "s:10Foundation12DataProtocolP", - "mangledName": "$s10Foundation12DataProtocolP" - }, + "declKind": "Func", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV12makeIteratorAA0c12WithCapacityF0VyF", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV12makeIteratorAA0c12WithCapacityF0VyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV", + "mangledName": "$s11VideoSDKRTC20AttributesDictionaryV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ { "kind": "Conformance", "name": "Sequence", @@ -6154,9 +8309,22 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Tuple", + "printedName": "(Swift.String, VideoSDKRTC.AttributeValue)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] }, @@ -6167,693 +8335,524 @@ "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Foundation.Data.Iterator", - "usr": "s:10Foundation4DataV8IteratorV" + "name": "AttributesWithCapacityIterator", + "printedName": "VideoSDKRTC.AttributesWithCapacityIterator", + "usr": "s:11VideoSDKRTC30AttributesWithCapacityIteratorV" } ] } ], "usr": "s:ST", "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSData", - "printedName": "Foundation.NSData", - "usr": "c:objc(cs)NSData" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "TypeDecl", - "name": "String", - "printedName": "String", - "children": [ + } + ] + }, + { + "kind": "TypeDecl", + "name": "AttributesWithCapacityIterator", + "printedName": "AttributesWithCapacityIterator", + "children": [ { "kind": "Function", - "name": "toJSON", - "printedName": "toJSON()", + "name": "next", + "printedName": "next()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "(Swift.String, VideoSDKRTC.AttributeValue)?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Tuple", + "printedName": "(Swift.String, VideoSDKRTC.AttributeValue)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:SS11VideoSDKRTCE6toJSONSDySSypGyF", - "mangledName": "$sSS11VideoSDKRTCE6toJSONSDySSypGyF", + "usr": "s:11VideoSDKRTC30AttributesWithCapacityIteratorV4nextSS_AA14AttributeValueOtSgyF", + "mangledName": "$s11VideoSDKRTC30AttributesWithCapacityIteratorV4nextSS_AA14AttributeValueOtSgyF", "moduleName": "VideoSDKRTC", "declAttributes": [ - "RawDocComment" + "Mutating", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "funcSelfKind": "Mutating" } ], "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", - "moduleName": "Swift", + "usr": "s:11VideoSDKRTC30AttributesWithCapacityIteratorV", + "mangledName": "$s11VideoSDKRTC30AttributesWithCapacityIteratorV", + "moduleName": "VideoSDKRTC", "declAttributes": [ - "Frozen" + "AccessControl" ], - "isExternal": true, "conformances": [ { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", + "name": "IteratorProtocol", + "printedName": "IteratorProtocol", "children": [ { "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(Swift.String, VideoSDKRTC.AttributeValue)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] } ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" - }, + "usr": "s:St", + "mangledName": "$sSt" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AttributeSet", + "printedName": "AttributeSet", + "children": [ { - "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "kind": "Var", + "name": "labels", + "printedName": "labels", "children": [ { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:SD" } ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, + "declKind": "Var", + "usr": "s:11VideoSDKRTC12AttributeSetC6labelsSDySSAA0C5ValueOGvp", + "mangledName": "$s11VideoSDKRTC12AttributeSetC6labelsSDySSAA0C5ValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "usr": "s:SI" + "usr": "s:SD" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12AttributeSetC6labelsSDySSAA0C5ValueOGvg", + "mangledName": "$s11VideoSDKRTC12AttributeSetC6labelsSDySSAA0C5ValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" } - ], - "usr": "s:SK", - "mangledName": "$sSK" + ] }, { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", + "kind": "Var", + "name": "empty", + "printedName": "empty", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, + "kind": "TypeNominal", + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12AttributeSetC5emptyACvpZ", + "mangledName": "$s11VideoSDKRTC12AttributeSetC5emptyACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12AttributeSetC5emptyACvgZ", + "mangledName": "$s11VideoSDKRTC12AttributeSetC5emptyACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12AttributeSetC5emptyACvsZ", + "mangledName": "$s11VideoSDKRTC12AttributeSetC5emptyACvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12AttributeSetC5emptyACvMZ", + "mangledName": "$s11VideoSDKRTC12AttributeSetC5emptyACvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "usr": "s:Sl", - "mangledName": "$sSl" + ] }, { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", + "kind": "Constructor", + "name": "init", + "printedName": "init(labels:)", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] + "kind": "TypeNominal", + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" }, { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:SD" } ], - "usr": "s:ST", - "mangledName": "$sST" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC12AttributeSetC6labelsACSDySSAA0C5ValueOG_tcfc", + "mangledName": "$s11VideoSDKRTC12AttributeSetC6labelsACSDySSAA0C5ValueOG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Required", + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { - "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", - "children": [ - { - "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" - } - ] + "kind": "TypeNominal", + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] + "kind": "TypeNominal", + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" } ], - "usr": "s:Sy", - "mangledName": "$sSy" + "declKind": "Func", + "usr": "s:11VideoSDKRTC12AttributeSetC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC12AttributeSetC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { - "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" + "declKind": "Func", + "usr": "s:11VideoSDKRTC12AttributeSetC4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC12AttributeSetC4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12AttributeSetC9hashValueSivp", + "mangledName": "$s11VideoSDKRTC12AttributeSetC9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isOpen": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12AttributeSetC9hashValueSivg", + "mangledName": "$s11VideoSDKRTC12AttributeSetC9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isOpen": true, + "accessorKind": "get" } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" + ] }, { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] + "kind": "TypeNominal", + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" } ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC12AttributeSetC4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC12AttributeSetC4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Required" + ], + "throwing": true, + "init_kind": "Designated" }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Dictionary", - "printedName": "Dictionary", - "children": [ { "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString()", + "name": "encode", + "printedName": "encode(to:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" } ], "declKind": "Func", - "usr": "s:SD11VideoSDKRTCE12toJSONStringSSyF", - "mangledName": "$sSD11VideoSDKRTCE12toJSONStringSSyF", + "usr": "s:11VideoSDKRTC12AttributeSetC6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC12AttributeSetC6encode2toys7Encoder_p_tKF", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", - "sugared_genericSig": "", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, + "implicit": true, + "isOpen": true, + "throwing": true, "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:SD", - "mangledName": "$sSD", - "moduleName": "Swift", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", - "sugared_genericSig": "", + "declKind": "Class", + "usr": "s:11VideoSDKRTC12AttributeSetC", + "mangledName": "$s11VideoSDKRTC12AttributeSetC", + "moduleName": "VideoSDKRTC", + "isOpen": true, "declAttributes": [ - "Frozen" + "AccessControl" ], - "isExternal": true, + "hasMissingDesignatedInitializers": true, "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" }, { "kind": "Conformance", @@ -6864,597 +8863,638 @@ }, { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AttributeValue", + "printedName": "AttributeValue", + "children": [ { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", + "kind": "Var", + "name": "string", + "printedName": "string", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> (Swift.String) -> VideoSDKRTC.AttributeValue", "children": [ { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: τ_0_0, value: τ_0_1)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideoSDKRTC.AttributeValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ + }, { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", - "usr": "s:SD8IteratorV" + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] } ], - "usr": "s:ST", - "mangledName": "$sST" + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO6stringyACSScACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO6stringyACSScACmF", + "moduleName": "VideoSDKRTC" }, { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", + "kind": "Var", + "name": "bool", + "printedName": "bool", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> (Swift.Bool) -> VideoSDKRTC.AttributeValue", "children": [ { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: τ_0_0, value: τ_0_1)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> VideoSDKRTC.AttributeValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ] - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ + }, { "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Index", - "usr": "s:SD5IndexV" + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO4boolyACSbcACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO4boolyACSbcACmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "int", + "printedName": "int", + "children": [ { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> (Swift.Int) -> VideoSDKRTC.AttributeValue", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.AttributeValue", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", - "usr": "s:SD8IteratorV" + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO3intyACSicACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO3intyACSicACmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "double", + "printedName": "double", + "children": [ { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> (Swift.Double) -> VideoSDKRTC.AttributeValue", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> VideoSDKRTC.AttributeValue", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, { "kind": "TypeNominal", - "name": "Slice", - "printedName": "Swift.Slice<[τ_0_0 : τ_0_1]>", + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ], - "usr": "s:s5SliceV" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO6doubleyACSdcACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO6doubleyACSdcACmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "stringArray", + "printedName": "stringArray", + "children": [ { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> ([Swift.String]) -> VideoSDKRTC.AttributeValue", "children": [ { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices<[τ_0_0 : τ_0_1]>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String]) -> VideoSDKRTC.AttributeValue", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:SD" + "usr": "s:Sa" } - ], - "usr": "s:SI" + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] } ], - "usr": "s:Sl", - "mangledName": "$sSl" + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO11stringArrayyACSaySSGcACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO11stringArrayyACSaySSGcACmF", + "moduleName": "VideoSDKRTC" }, { - "kind": "Conformance", - "name": "ExpressibleByDictionaryLiteral", - "printedName": "ExpressibleByDictionaryLiteral", + "kind": "Var", + "name": "boolArray", + "printedName": "boolArray", "children": [ { - "kind": "TypeWitness", - "name": "Key", - "printedName": "Key", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> ([Swift.Bool]) -> VideoSDKRTC.AttributeValue", "children": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Value", - "printedName": "Value", - "children": [ + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.Bool]) -> VideoSDKRTC.AttributeValue", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sa" + } + ] + }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] } ], - "usr": "s:s30ExpressibleByDictionaryLiteralP", - "mangledName": "$ss30ExpressibleByDictionaryLiteralP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO9boolArrayyACSaySbGcACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO9boolArrayyACSaySbGcACmF", + "moduleName": "VideoSDKRTC" }, { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "kind": "Var", + "name": "intArray", + "printedName": "intArray", "children": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> ([Swift.Int]) -> VideoSDKRTC.AttributeValue", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.Int]) -> VideoSDKRTC.AttributeValue", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ] + }, { "kind": "TypeNominal", - "name": "NSDictionary", - "printedName": "Foundation.NSDictionary", - "usr": "c:objc(cs)NSDictionary" + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ] } ] } ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Array", - "printedName": "Array", - "children": [ - { - "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:Sa11VideoSDKRTCE12toJSONStringSSyF", - "mangledName": "$sSa11VideoSDKRTCE12toJSONStringSSyF", - "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:Sa", - "mangledName": "$sSa", - "moduleName": "Swift", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_DestructorSafeContainer", - "printedName": "_DestructorSafeContainer", - "usr": "s:s24_DestructorSafeContainerP", - "mangledName": "$ss24_DestructorSafeContainerP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO8intArrayyACSaySiGcACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO8intArrayyACSaySiGcACmF", + "moduleName": "VideoSDKRTC" }, { - "kind": "Conformance", - "name": "_ArrayProtocol", - "printedName": "_ArrayProtocol", + "kind": "Var", + "name": "doubleArray", + "printedName": "doubleArray", "children": [ { - "kind": "TypeWitness", - "name": "_Buffer", - "printedName": "_Buffer", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> ([Swift.Double]) -> VideoSDKRTC.AttributeValue", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.Double]) -> VideoSDKRTC.AttributeValue", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ] + }, { "kind": "TypeNominal", - "name": "_ArrayBuffer", - "printedName": "Swift._ArrayBuffer<τ_0_0>", + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ], - "usr": "s:s12_ArrayBufferV" + ] } ] } ], - "usr": "s:s14_ArrayProtocolP", - "mangledName": "$ss14_ArrayProtocolP" + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO11doubleArrayyACSaySdGcACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO11doubleArrayyACSaySdGcACmF", + "moduleName": "VideoSDKRTC" }, { - "kind": "Conformance", - "name": "RandomAccessCollection", - "printedName": "RandomAccessCollection", + "kind": "Var", + "name": "set", + "printedName": "set", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeValue.Type) -> (VideoSDKRTC.AttributeSet) -> VideoSDKRTC.AttributeValue", "children": [ { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.AttributeSet) -> VideoSDKRTC.AttributeValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" } - ], - "usr": "s:s10ArraySliceV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ + ] + }, { "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", + "name": "Metatype", + "printedName": "VideoSDKRTC.AttributeValue.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ], - "usr": "s:Sn" + ] } ] } ], - "usr": "s:Sk", - "mangledName": "$sSk" + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14AttributeValueO3setyAcA0C3SetCcACmF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO3setyAcA0C3SetCcACmF", + "moduleName": "VideoSDKRTC" }, { - "kind": "Conformance", - "name": "MutableCollection", - "printedName": "MutableCollection", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14AttributeValueO11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC14AttributeValueO11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - }, + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14AttributeValueO11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC14AttributeValueO11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } - ] + ], + "usr": "s:Sq" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], - "usr": "s:SM", - "mangledName": "$sSM" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSgypcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSgypcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" }, { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" } ], - "usr": "s:SK", - "mangledName": "$sSK" + "declKind": "Func", + "usr": "s:11VideoSDKRTC14AttributeValueO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC14AttributeValueO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14AttributeValueO04hashD0Sivp", + "mangledName": "$s11VideoSDKRTC14AttributeValueO04hashD0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -7462,186 +9502,358 @@ "printedName": "Swift.Int", "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14AttributeValueO04hashD0Sivg", + "mangledName": "$s11VideoSDKRTC14AttributeValueO04hashD0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "IndexingIterator", - "printedName": "Swift.IndexingIterator<[τ_0_0]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s16IndexingIteratorV" - } - ] + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14AttributeValueO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSScfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" }, { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sl", - "mangledName": "$sSl" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSbcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSbcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" }, { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" }, { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSicfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSicfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSdcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSdcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", "children": [ { "kind": "TypeNominal", - "name": "IndexingIterator", - "printedName": "Swift.IndexingIterator<[τ_0_0]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s16IndexingIteratorV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sa" } ], - "usr": "s:ST", - "mangledName": "$sST" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSaySSGcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSaySSGcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" }, { - "kind": "Conformance", - "name": "ExpressibleByArrayLiteral", - "printedName": "ExpressibleByArrayLiteral", + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", "children": [ { - "kind": "TypeWitness", - "name": "ArrayLiteralElement", - "printedName": "ArrayLiteralElement", + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "usr": "s:Sa" } ], - "usr": "s:s25ExpressibleByArrayLiteralP", - "mangledName": "$ss25ExpressibleByArrayLiteralP" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSaySiGcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSaySiGcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" }, { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", "children": [ { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", "children": [ { "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ] + ], + "usr": "s:Sa" } ], - "usr": "s:Sm", - "mangledName": "$sSm" + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyACSaySdGcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyACSaySdGcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "AttributeSet", + "printedName": "VideoSDKRTC.AttributeSet", + "usr": "s:11VideoSDKRTC12AttributeSetC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueOyAcA0C3SetCcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueOyAcA0C3SetCcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14AttributeValueO4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC14AttributeValueO4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14AttributeValueO6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC14AttributeValueO6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC14AttributeValueO", + "mangledName": "$s11VideoSDKRTC14AttributeValueO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ { "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", @@ -7650,13 +9862,6 @@ "usr": "s:s23CustomStringConvertibleP", "mangledName": "$ss23CustomStringConvertibleP" }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, { "kind": "Conformance", "name": "Hashable", @@ -7664,27 +9869,6 @@ "usr": "s:SH", "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, { "kind": "Conformance", "name": "Decodable", @@ -7694,3243 +9878,299971 @@ }, { "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AVKit", + "printedName": "AVKit", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Baggage", + "printedName": "Baggage", + "children": [ { - "kind": "Conformance", - "name": "DataProtocol", - "printedName": "DataProtocol", + "kind": "Function", + "name": "baggageBuilder", + "printedName": "baggageBuilder()", "children": [ { - "kind": "TypeWitness", - "name": "Regions", - "printedName": "Regions", - "children": [ - { - "kind": "TypeNominal", - "name": "CollectionOfOne", - "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s15CollectionOfOneV" - } - ] + "kind": "TypeNominal", + "name": "BaggageBuilder", + "printedName": "VideoSDKRTC.BaggageBuilder", + "usr": "s:11VideoSDKRTC14BaggageBuilderP" } ], - "usr": "s:10Foundation12DataProtocolP", - "mangledName": "$s10Foundation12DataProtocolP" - }, - { - "kind": "Conformance", - "name": "MutableDataProtocol", - "printedName": "MutableDataProtocol", - "usr": "s:10Foundation19MutableDataProtocolP", - "mangledName": "$s10Foundation19MutableDataProtocolP" + "declKind": "Func", + "usr": "s:11VideoSDKRTC7BaggageP14baggageBuilderAA0cE0_pyFZ", + "mangledName": "$s11VideoSDKRTC7BaggageP14baggageBuilderAA0cE0_pyFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Baggage>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "EncodableWithConfiguration", - "printedName": "EncodableWithConfiguration", + "kind": "Function", + "name": "getEntries", + "printedName": "getEntries()", "children": [ { - "kind": "TypeWitness", - "name": "EncodingConfiguration", - "printedName": "EncodingConfiguration", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Entry]", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.EncodingConfiguration" + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" } - ] + ], + "usr": "s:Sa" } ], - "usr": "s:10Foundation26EncodableWithConfigurationP", - "mangledName": "$s10Foundation26EncodableWithConfigurationP" + "declKind": "Func", + "usr": "s:11VideoSDKRTC7BaggageP10getEntriesSayAA5EntryVGyF", + "mangledName": "$s11VideoSDKRTC7BaggageP10getEntriesSayAA5EntryVGyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Baggage>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "DecodableWithConfiguration", - "printedName": "DecodableWithConfiguration", + "kind": "Function", + "name": "getEntryValue", + "printedName": "getEntryValue(key:)", "children": [ { - "kind": "TypeWitness", - "name": "DecodingConfiguration", - "printedName": "DecodingConfiguration", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryValue?", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.DecodingConfiguration" + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" } ], - "usr": "s:10Foundation26DecodableWithConfigurationP", - "mangledName": "$s10Foundation26DecodableWithConfigurationP" + "declKind": "Func", + "usr": "s:11VideoSDKRTC7BaggageP13getEntryValue3keyAA0eF0VSgAA0E3KeyV_tF", + "mangledName": "$s11VideoSDKRTC7BaggageP13getEntryValue3keyAA0eF0VSgAA0E3KeyV_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Baggage>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC7BaggageP", + "mangledName": "$s11VideoSDKRTC7BaggageP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + }, + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC2eeoiySbAA7Baggage_p_AaC_ptF", + "mangledName": "$s11VideoSDKRTC2eeoiySbAA7Baggage_p_AaC_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BaggageBuilder", + "printedName": "BaggageBuilder", + "children": [ + { + "kind": "Function", + "name": "setParent", + "printedName": "setParent(_:)", "children": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Baggage?", "children": [ { "kind": "TypeNominal", - "name": "NSArray", - "printedName": "Foundation.NSArray", - "usr": "c:objc(cs)NSArray" + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" + "declKind": "Func", + "usr": "s:11VideoSDKRTC14BaggageBuilderP9setParentyxAA0C0_pSgF", + "mangledName": "$s11VideoSDKRTC14BaggageBuilderP9setParentyxAA0C0_pSgF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.BaggageBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "kind": "Function", + "name": "setNoParent", + "printedName": "setNoParent()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14BaggageBuilderP11setNoParentxyF", + "mangledName": "$s11VideoSDKRTC14BaggageBuilderP11setNoParentxyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.BaggageBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "ContiguousBytes", - "printedName": "ContiguousBytes", - "usr": "s:10Foundation15ContiguousBytesP", - "mangledName": "$s10Foundation15ContiguousBytesP" + "kind": "Function", + "name": "put", + "printedName": "put(key:value:metadata:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + }, + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14BaggageBuilderP3put3key5value8metadataxAA8EntryKeyV_AA0I5ValueVAA0I8MetadataVSgtF", + "mangledName": "$s11VideoSDKRTC14BaggageBuilderP3put3key5value8metadataxAA8EntryKeyV_AA0I5ValueVAA0I8MetadataVSgtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.BaggageBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "remove", + "printedName": "remove(key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14BaggageBuilderP6remove3keyxAA8EntryKeyV_tF", + "mangledName": "$s11VideoSDKRTC14BaggageBuilderP6remove3keyxAA8EntryKeyV_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.BaggageBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14BaggageBuilderP5buildAA0C0_pyF", + "mangledName": "$s11VideoSDKRTC14BaggageBuilderP5buildAA0C0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.BaggageBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14BaggageBuilderP", + "mangledName": "$s11VideoSDKRTC14BaggageBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "TypeDecl", - "name": "Encodable", - "printedName": "Encodable", + "name": "BaggageManager", + "printedName": "BaggageManager", "children": [ { "kind": "Function", - "name": "toJSON", - "printedName": "toJSON()", + "name": "baggageBuilder", + "printedName": "baggageBuilder()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "BaggageBuilder", + "printedName": "VideoSDKRTC.BaggageBuilder", + "usr": "s:11VideoSDKRTC14BaggageBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14BaggageManagerP14baggageBuilderAA0cF0_pyF", + "mangledName": "$s11VideoSDKRTC14BaggageManagerP14baggageBuilderAA0cF0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.BaggageManager>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14BaggageManagerP", + "mangledName": "$s11VideoSDKRTC14BaggageManagerP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BatchLogRecordProcessor", + "printedName": "BatchLogRecordProcessor", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(logRecordExporter:scheduleDelay:exportTimeout:maxQueueSize:maxExportBatchSize:willExportCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BatchLogRecordProcessor", + "printedName": "VideoSDKRTC.BatchLogRecordProcessor", + "usr": "s:11VideoSDKRTC23BatchLogRecordProcessorC" + }, + { + "kind": "TypeNominal", + "name": "LogRecordExporter", + "printedName": "VideoSDKRTC.LogRecordExporter", + "usr": "s:11VideoSDKRTC17LogRecordExporterP" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((inout [VideoSDKRTC.ReadableLogRecord]) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(inout [VideoSDKRTC.ReadableLogRecord]) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ] } ], - "usr": "s:SD" + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC23BatchLogRecordProcessorC03logE8Exporter13scheduleDelay13exportTimeout12maxQueueSize0m6ExportcO004willP8CallbackAcA0deH0_p_S2dS2iySayAA08ReadabledE0VGzcSgtcfc", + "mangledName": "$s11VideoSDKRTC23BatchLogRecordProcessorC03logE8Exporter13scheduleDelay13exportTimeout12maxQueueSize0m6ExportcO004willP8CallbackAcA0deH0_p_S2dS2iySayAA08ReadabledE0VGzcSgtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "onEmit", + "printedName": "onEmit(logRecord:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" } ], "declKind": "Func", - "usr": "s:SE11VideoSDKRTCE6toJSONSDySSypGyF", - "mangledName": "$sSE11VideoSDKRTCE6toJSONSDySSypGyF", + "usr": "s:11VideoSDKRTC23BatchLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", + "mangledName": "$s11VideoSDKRTC23BatchLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "toJSONArray", - "printedName": "toJSONArray()", + "name": "forceFlush", + "printedName": "forceFlush()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23BatchLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC23BatchLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush(timeout:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:SE11VideoSDKRTCE11toJSONArraySayypGyF", - "mangledName": "$sSE11VideoSDKRTCE11toJSONArraySayypGyF", + "usr": "s:11VideoSDKRTC23BatchLogRecordProcessorC10forceFlush7timeoutySdSg_tF", + "mangledName": "$s11VideoSDKRTC23BatchLogRecordProcessorC10forceFlush7timeoutySdSg_tF", "moduleName": "VideoSDKRTC", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23BatchLogRecordProcessorC8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC23BatchLogRecordProcessorC8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" } ], - "declKind": "Protocol", - "usr": "s:SE", - "mangledName": "$sSE", - "moduleName": "Swift", - "isExternal": true - } - ], - "json_format_version": 8 - }, - "ConstValues": [ + "declKind": "Class", + "usr": "s:11VideoSDKRTC23BatchLogRecordProcessorC", + "mangledName": "$s11VideoSDKRTC23BatchLogRecordProcessorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordProcessor", + "printedName": "LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BatchSpanProcessor", + "printedName": "BatchSpanProcessor", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(spanExporter:scheduleDelay:exportTimeout:maxQueueSize:maxExportBatchSize:willExportCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BatchSpanProcessor", + "printedName": "VideoSDKRTC.BatchSpanProcessor", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV" + }, + { + "kind": "TypeNominal", + "name": "SpanExporter", + "printedName": "VideoSDKRTC.SpanExporter", + "usr": "s:11VideoSDKRTC12SpanExporterP" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((inout [VideoSDKRTC.SpanData]) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(inout [VideoSDKRTC.SpanData]) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV12spanExporter13scheduleDelay13exportTimeout12maxQueueSize0l6ExportcN004willO8CallbackAcA0dG0_p_S2dS2iySayAA0D4DataVGzcSgtcfc", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV12spanExporter13scheduleDelay13exportTimeout12maxQueueSize0l6ExportcN004willO8CallbackAcA0dG0_p_S2dS2iySayAA0D4DataVGzcSgtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "isStartRequired", + "printedName": "isStartRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV15isStartRequiredSbvp", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV15isStartRequiredSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV15isStartRequiredSbvg", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV15isStartRequiredSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isEndRequired", + "printedName": "isEndRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV13isEndRequiredSbvp", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV13isEndRequiredSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV13isEndRequiredSbvg", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV13isEndRequiredSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "onStart", + "printedName": "onStart(parentContext:span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV7onStart13parentContext4spanyAA0dI0VSg_AA08ReadableD0_ptF", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV7onStart13parentContext4spanyAA0dI0VSg_AA08ReadableD0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onEnd", + "printedName": "onEnd(span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV5onEnd4spanyAA08ReadableD0_p_tF", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV5onEnd4spanyAA08ReadableD0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV8shutdownyyF", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush(timeout:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV10forceFlush7timeoutySdSg_tF", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV10forceFlush7timeoutySdSg_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18BatchSpanProcessorV", + "mangledName": "$s11VideoSDKRTC18BatchSpanProcessorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SpanProcessor", + "printedName": "SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BinaryDecodingError", + "printedName": "BinaryDecodingError", + "children": [ + { + "kind": "Var", + "name": "trailingGarbage", + "printedName": "trailingGarbage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO15trailingGarbageyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO15trailingGarbageyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "truncated", + "printedName": "truncated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO9truncatedyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO9truncatedyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "invalidUTF8", + "printedName": "invalidUTF8", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO11invalidUTF8yA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO11invalidUTF8yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedProtobuf", + "printedName": "malformedProtobuf", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO17malformedProtobufyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO17malformedProtobufyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "missingRequiredFields", + "printedName": "missingRequiredFields", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO21missingRequiredFieldsyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO21missingRequiredFieldsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "internalExtensionError", + "printedName": "internalExtensionError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO017internalExtensionE0yA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO017internalExtensionE0yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messageDepthLimit", + "printedName": "messageDepthLimit", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO17messageDepthLimityA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO17messageDepthLimityA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "tooLarge", + "printedName": "tooLarge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDecodingError.Type) -> VideoSDKRTC.BinaryDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO8tooLargeyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO8tooLargeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingError", + "printedName": "VideoSDKRTC.BinaryDecodingError", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC19BinaryDecodingErrorO", + "mangledName": "$s11VideoSDKRTC19BinaryDecodingErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "BinaryDecodingOptions", + "printedName": "BinaryDecodingOptions", + "children": [ + { + "kind": "Var", + "name": "messageDepthLimit", + "printedName": "messageDepthLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivp", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivg", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivs", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivM", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV17messageDepthLimitSivM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "discardUnknownFields", + "printedName": "discardUnknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvp", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvg", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvs", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvM", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV20discardUnknownFieldsSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV", + "mangledName": "$s11VideoSDKRTC21BinaryDecodingOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "BinaryDelimited", + "printedName": "BinaryDelimited", + "children": [ + { + "kind": "TypeDecl", + "name": "Error", + "printedName": "Error", + "children": [ + { + "kind": "Var", + "name": "unknownStreamError", + "printedName": "unknownStreamError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDelimited.Error.Type) -> VideoSDKRTC.BinaryDelimited.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDelimited.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO013unknownStreamE0yA2EmF", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO013unknownStreamE0yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "truncated", + "printedName": "truncated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDelimited.Error.Type) -> VideoSDKRTC.BinaryDelimited.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDelimited.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO9truncatedyA2EmF", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO9truncatedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "tooLarge", + "printedName": "tooLarge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDelimited.Error.Type) -> VideoSDKRTC.BinaryDelimited.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDelimited.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO8tooLargeyA2EmF", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO8tooLargeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedLength", + "printedName": "malformedLength", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDelimited.Error.Type) -> VideoSDKRTC.BinaryDelimited.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDelimited.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO15malformedLengthyA2EmF", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO15malformedLengthyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "noBytesAvailable", + "printedName": "noBytesAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryDelimited.Error.Type) -> VideoSDKRTC.BinaryDelimited.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryDelimited.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO16noBytesAvailableyA2EmF", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO16noBytesAvailableyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "VideoSDKRTC.BinaryDelimited.Error", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5ErrorO", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5ErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "serialize", + "printedName": "serialize(message:to:partial:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + }, + { + "kind": "TypeNominal", + "name": "OutputStream", + "printedName": "Foundation.OutputStream", + "usr": "c:objc(cs)NSOutputStream" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO9serialize7message2to7partialyAA7Message_p_So14NSOutputStreamCSbtKFZ", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO9serialize7message2to7partialyAA7Message_p_So14NSOutputStreamCSbtKFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parse", + "printedName": "parse(messageType:from:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeNominal", + "name": "InputStream", + "printedName": "Foundation.InputStream", + "usr": "c:objc(cs)NSInputStream" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5parse11messageType4from10extensions7partial7optionsxxm_So13NSInputStreamCAA12ExtensionMap_pSgSbAA0C15DecodingOptionsVtKAA7MessageRzlFZ", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5parse11messageType4from10extensions7partial7optionsxxm_So13NSInputStreamCAA12ExtensionMap_pSgSbAA0C15DecodingOptionsVtKAA7MessageRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "merge", + "printedName": "merge(into:from:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "InputStream", + "printedName": "Foundation.InputStream", + "usr": "c:objc(cs)NSInputStream" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO5merge4into4from10extensions7partial7optionsyxz_So13NSInputStreamCAA12ExtensionMap_pSgSbAA0C15DecodingOptionsVtKAA7MessageRzlFZ", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO5merge4into4from10extensions7partial7optionsyxz_So13NSInputStreamCAA12ExtensionMap_pSgSbAA0C15DecodingOptionsVtKAA7MessageRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC15BinaryDelimitedO", + "mangledName": "$s11VideoSDKRTC15BinaryDelimitedO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BinaryEncodingError", + "printedName": "BinaryEncodingError", + "children": [ + { + "kind": "Var", + "name": "anyTranscodeFailure", + "printedName": "anyTranscodeFailure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryEncodingError.Type) -> VideoSDKRTC.BinaryEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO19anyTranscodeFailureyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO19anyTranscodeFailureyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "missingRequiredFields", + "printedName": "missingRequiredFields", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryEncodingError.Type) -> VideoSDKRTC.BinaryEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO21missingRequiredFieldsyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO21missingRequiredFieldsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "tooLarge", + "printedName": "tooLarge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.BinaryEncodingError.Type) -> VideoSDKRTC.BinaryEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.BinaryEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO8tooLargeyA2CmF", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO8tooLargeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "BinaryEncodingError", + "printedName": "VideoSDKRTC.BinaryEncodingError", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC19BinaryEncodingErrorO", + "mangledName": "$s11VideoSDKRTC19BinaryEncodingErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BoundCounterMetric", + "printedName": "BoundCounterMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundCounterMetric", + "printedName": "VideoSDKRTC.BoundCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundCounterMetricC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18BoundCounterMetricCACyxGycfc", + "mangledName": "$s11VideoSDKRTC18BoundCounterMetricCACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18BoundCounterMetricC3add5valueyx_tF", + "mangledName": "$s11VideoSDKRTC18BoundCounterMetricC3add5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18BoundCounterMetricC", + "mangledName": "$s11VideoSDKRTC18BoundCounterMetricC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BoundHistogramMetric", + "printedName": "BoundHistogramMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(explicitBoundaries:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundHistogramMetric", + "printedName": "VideoSDKRTC.BoundHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC18explicitBoundariesACyxGSayxGSg_tcfc", + "mangledName": "$s11VideoSDKRTC20BoundHistogramMetricC18explicitBoundariesACyxGSayxGSg_tcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC6record5valueyx_tF", + "mangledName": "$s11VideoSDKRTC20BoundHistogramMetricC6record5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC", + "mangledName": "$s11VideoSDKRTC20BoundHistogramMetricC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BoundMeasureMetric", + "printedName": "BoundMeasureMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundMeasureMetric", + "printedName": "VideoSDKRTC.BoundMeasureMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18BoundMeasureMetricCACyxGycfc", + "mangledName": "$s11VideoSDKRTC18BoundMeasureMetricCACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC6record5valueyx_tF", + "mangledName": "$s11VideoSDKRTC18BoundMeasureMetricC6record5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC", + "mangledName": "$s11VideoSDKRTC18BoundMeasureMetricC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BoundRawCounterMetric", + "printedName": "BoundRawCounterMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawCounterMetric", + "printedName": "VideoSDKRTC.BoundRawCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricCACyxGycfc", + "mangledName": "$s11VideoSDKRTC21BoundRawCounterMetricCACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(sum:startDate:endDate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC6record3sum9startDate03endJ0yx_10Foundation0J0VAJtF", + "mangledName": "$s11VideoSDKRTC21BoundRawCounterMetricC6record3sum9startDate03endJ0yx_10Foundation0J0VAJtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC", + "mangledName": "$s11VideoSDKRTC21BoundRawCounterMetricC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BoundRawHistogramMetric", + "printedName": "BoundRawHistogramMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawHistogramMetric", + "printedName": "VideoSDKRTC.BoundRawHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricCACyxGycfc", + "mangledName": "$s11VideoSDKRTC23BoundRawHistogramMetricCACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(explicitBoundaries:counts:startDate:endDate:count:sum:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC6record18explicitBoundaries6counts9startDate03endL05count3sumySayxG_SaySiG10Foundation0L0VAOSixtF", + "mangledName": "$s11VideoSDKRTC23BoundRawHistogramMetricC6record18explicitBoundaries6counts9startDate03endL05count3sumySayxG_SaySiG10Foundation0L0VAOSixtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC", + "mangledName": "$s11VideoSDKRTC23BoundRawHistogramMetricC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CallbackRegistration", + "printedName": "CallbackRegistration", + "children": [ + { + "kind": "Function", + "name": "execute", + "printedName": "execute(reader:startEpochNanos:epochNanos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "RegisteredReader", + "printedName": "VideoSDKRTC.RegisteredReader", + "usr": "s:11VideoSDKRTC16RegisteredReaderC" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20CallbackRegistrationC7execute6reader15startEpochNanos05epochI0yAA16RegisteredReaderC_s6UInt64VAKtF", + "mangledName": "$s11VideoSDKRTC20CallbackRegistrationC7execute6reader15startEpochNanos05epochI0yAA16RegisteredReaderC_s6UInt64VAKtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20CallbackRegistrationC", + "mangledName": "$s11VideoSDKRTC20CallbackRegistrationC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CameraPosition", + "printedName": "CameraPosition", + "children": [ + { + "kind": "Var", + "name": "back", + "printedName": "back", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CameraPosition.Type) -> VideoSDKRTC.CameraPosition", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraPosition", + "printedName": "VideoSDKRTC.CameraPosition", + "usr": "s:11VideoSDKRTC14CameraPositionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CameraPosition.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraPosition", + "printedName": "VideoSDKRTC.CameraPosition", + "usr": "s:11VideoSDKRTC14CameraPositionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14CameraPositionO4backyA2CmF", + "mangledName": "$s11VideoSDKRTC14CameraPositionO4backyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "front", + "printedName": "front", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CameraPosition.Type) -> VideoSDKRTC.CameraPosition", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraPosition", + "printedName": "VideoSDKRTC.CameraPosition", + "usr": "s:11VideoSDKRTC14CameraPositionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CameraPosition.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraPosition", + "printedName": "VideoSDKRTC.CameraPosition", + "usr": "s:11VideoSDKRTC14CameraPositionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14CameraPositionO5frontyA2CmF", + "mangledName": "$s11VideoSDKRTC14CameraPositionO5frontyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "toggle", + "printedName": "toggle()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14CameraPositionO6toggleyyF", + "mangledName": "$s11VideoSDKRTC14CameraPositionO6toggleyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.CameraPosition?", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraPosition", + "printedName": "VideoSDKRTC.CameraPosition", + "usr": "s:11VideoSDKRTC14CameraPositionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14CameraPositionO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC14CameraPositionO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14CameraPositionO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC14CameraPositionO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14CameraPositionO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC14CameraPositionO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC14CameraPositionO", + "mangledName": "$s11VideoSDKRTC14CameraPositionO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Clock", + "printedName": "Clock", + "children": [ + { + "kind": "Var", + "name": "now", + "printedName": "now", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC5ClockP3now10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC5ClockP3now10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC5ClockP3now10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC5ClockP3now10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Clock>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nanoTime", + "printedName": "nanoTime", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC5ClockPAAE8nanoTimes6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC5ClockPAAE8nanoTimes6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC5ClockPAAE8nanoTimes6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC5ClockPAAE8nanoTimes6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Clock>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC5ClockP", + "mangledName": "$s11VideoSDKRTC5ClockP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC2eeoiySbAA5Clock_p_AaC_ptF", + "mangledName": "$s11VideoSDKRTC2eeoiySbAA5Clock_p_AaC_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CollectionRegistration", + "printedName": "CollectionRegistration", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC22CollectionRegistrationP", + "mangledName": "$s11VideoSDKRTC22CollectionRegistrationP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "Opentelemetry_Proto_Common_V1_AnyValue", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV5valueAC06OneOf_H0OSgvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06stringH0SSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "boolValue", + "printedName": "boolValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0Sbvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0Sbvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0Sbvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0Sbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0SbvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04boolH0SbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64Vvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64Vvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64Vvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64VvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV03intH0s5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "doubleValue", + "printedName": "doubleValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0Sdvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0Sdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0Sdvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0Sdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0Sdvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0Sdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0SdvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06doubleH0SdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "arrayValue", + "printedName": "arrayValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0Vvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0Vvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0Vvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0VvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05arrayH0AA0c1_d1_e1_f6_ArrayH0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "kvlistValue", + "printedName": "kvlistValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06kvlistH0AA0c1_d1_e1_f4_KeyH4ListVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bytesValue", + "printedName": "bytesValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV05bytesH010Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_Value", + "printedName": "OneOf_Value", + "children": [ + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type) -> (Swift.String) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O06stringH0yAESScAEmF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O06stringH0yAESScAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "boolValue", + "printedName": "boolValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type) -> (Swift.Bool) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O04boolH0yAESbcAEmF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O04boolH0yAESbcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type) -> (Swift.Int64) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int64) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O03intH0yAEs5Int64VcAEmF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O03intH0yAEs5Int64VcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "doubleValue", + "printedName": "doubleValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type) -> (Swift.Double) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O06doubleH0yAESdcAEmF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O06doubleH0yAESdcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "arrayValue", + "printedName": "arrayValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type) -> (VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O05arrayH0yAeA0c1_d1_e1_f6_ArrayH0VcAEmF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O05arrayH0yAeA0c1_d1_e1_f6_ArrayH0VcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "kvlistValue", + "printedName": "kvlistValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type) -> (VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O06kvlistH0yAeA0c1_d1_e1_f4_KeyH4ListVcAEmF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O06kvlistH0yAeA0c1_d1_e1_f4_KeyH4ListVcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "bytesValue", + "printedName": "bytesValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type) -> (Foundation.Data) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O05bytesH0yAE10Foundation4DataVcAEmF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O05bytesH0yAE10Foundation4DataVcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV06OneOf_H0O", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueVACycfc", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04hashH0Sivp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04hashH0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04hashH0Sivg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV04hashH0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "Opentelemetry_Proto_Common_V1_ArrayValue", + "children": [ + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvp", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvg", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvs", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvM", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV6valuesSayAA0c1_d1_e1_f4_AnyH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueVACycfc", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_ArrayValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV04hashH0Sivp", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV04hashH0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV04hashH0Sivg", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV04hashH0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Common_V1_ArrayValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "Opentelemetry_Proto_Common_V1_KeyValueList", + "children": [ + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvs", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvM", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV6valuesSayAA0c1_d1_e1_f1_gH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListVACycfc", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValueList", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV04hashH0Sivp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV04hashH0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV04hashH0Sivg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV04hashH0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Common_V1_KeyValueListV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "Opentelemetry_Proto_Common_V1_KeyValue", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV3keySSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0Vvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0Vvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0Vvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0VvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV5valueAA0c1_d1_e1_f4_AnyH0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasValue", + "printedName": "hasValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV03hasH0Sbvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV03hasH0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV03hasH0Sbvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV03hasH0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearValue", + "printedName": "clearValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV05clearH0yyF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV05clearH0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueVACycfc", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV04hashH0Sivp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV04hashH0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV04hashH0Sivg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV04hashH0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvp", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvg", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvs", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvM", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvp", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvg", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvs", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvM", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV7versionSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV10attributesSayAA0c1_d1_e1_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedAttributesCount", + "printedName": "droppedAttributesCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV22droppedAttributesCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeVACycfc", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV", + "mangledName": "$s11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CommonAdapter", + "printedName": "CommonAdapter", + "children": [ + { + "kind": "Function", + "name": "toProtoAttribute", + "printedName": "toProtoAttribute(key:attributeValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13CommonAdapterV16toProtoAttribute3key14attributeValueAA014Opentelemetry_f1_c7_V1_KeyJ0VSS_AA0gJ0OtFZ", + "mangledName": "$s11VideoSDKRTC13CommonAdapterV16toProtoAttribute3key14attributeValueAA014Opentelemetry_f1_c7_V1_KeyJ0VSS_AA0gJ0OtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toProtoInstrumentationScope", + "printedName": "toProtoInstrumentationScope(instrumentationScopeInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13CommonAdapterV27toProtoInstrumentationScope015instrumentationH4InfoAA014Opentelemetry_f1_c4_V1_gH0VAA0ghJ0V_tFZ", + "mangledName": "$s11VideoSDKRTC13CommonAdapterV27toProtoInstrumentationScope015instrumentationH4InfoAA014Opentelemetry_f1_c4_V1_gH0VAA0ghJ0V_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13CommonAdapterV", + "mangledName": "$s11VideoSDKRTC13CommonAdapterV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ContextManager", + "printedName": "ContextManager", + "children": [ + { + "kind": "Function", + "name": "getCurrentContextValue", + "printedName": "getCurrentContextValue(forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AnyObject?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ContextManagerP010getCurrentC5Value6forKeyyXlSgAA013OpenTelemetryC4KeysO_tF", + "mangledName": "$s11VideoSDKRTC14ContextManagerP010getCurrentC5Value6forKeyyXlSgAA013OpenTelemetryC4KeysO_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ContextManager>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCurrentContextValue", + "printedName": "setCurrentContextValue(forKey:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ContextManagerP010setCurrentC5Value6forKey5valueyAA013OpenTelemetryC4KeysO_yXltF", + "mangledName": "$s11VideoSDKRTC14ContextManagerP010setCurrentC5Value6forKey5valueyAA013OpenTelemetryC4KeysO_yXltF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ContextManager>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeContextValue", + "printedName": "removeContextValue(forKey:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ContextManagerP06removeC5Value6forKey5valueyAA013OpenTelemetryC4KeysO_yXltF", + "mangledName": "$s11VideoSDKRTC14ContextManagerP06removeC5Value6forKey5valueyAA013OpenTelemetryC4KeysO_yXltF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ContextManager>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14ContextManagerP", + "mangledName": "$s11VideoSDKRTC14ContextManagerP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ContextPropagators", + "printedName": "ContextPropagators", + "children": [ + { + "kind": "Var", + "name": "textMapPropagator", + "printedName": "textMapPropagator", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP17textMapPropagatorAA04TextfG0_pvp", + "mangledName": "$s11VideoSDKRTC18ContextPropagatorsP17textMapPropagatorAA04TextfG0_pvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP17textMapPropagatorAA04TextfG0_pvg", + "mangledName": "$s11VideoSDKRTC18ContextPropagatorsP17textMapPropagatorAA04TextfG0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ContextPropagators>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "textMapBaggagePropagator", + "printedName": "textMapBaggagePropagator", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapBaggagePropagator", + "printedName": "VideoSDKRTC.TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP24textMapBaggagePropagatorAA04TextfgH0_pvp", + "mangledName": "$s11VideoSDKRTC18ContextPropagatorsP24textMapBaggagePropagatorAA04TextfgH0_pvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapBaggagePropagator", + "printedName": "VideoSDKRTC.TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP24textMapBaggagePropagatorAA04TextfgH0_pvg", + "mangledName": "$s11VideoSDKRTC18ContextPropagatorsP24textMapBaggagePropagatorAA04TextfgH0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ContextPropagators>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP", + "mangledName": "$s11VideoSDKRTC18ContextPropagatorsP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CounterMetric", + "printedName": "CounterMetric", + "children": [ + { + "kind": "AssociatedType", + "name": "T", + "printedName": "T", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC13CounterMetricP1TQa", + "mangledName": "$s11VideoSDKRTC13CounterMetricP1TQa", + "moduleName": "VideoSDKRTC", + "protocolReq": true + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13CounterMetricP3add5value8labelsety1TQz_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC13CounterMetricP3add5value8labelsety1TQz_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.CounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13CounterMetricP3add5value6labelsy1TQz_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC13CounterMetricP3add5value6labelsy1TQz_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.CounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundCounterMetric", + "printedName": "VideoSDKRTC.BoundCounterMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC18BoundCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13CounterMetricP4bind8labelsetAA05BoundcD0Cy1TQzGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC13CounterMetricP4bind8labelsetAA05BoundcD0Cy1TQzGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.CounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundCounterMetric", + "printedName": "VideoSDKRTC.BoundCounterMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC18BoundCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13CounterMetricP4bind6labelsAA05BoundcD0Cy1TQzGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC13CounterMetricP4bind6labelsAA05BoundcD0Cy1TQzGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.CounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13CounterMetricP", + "mangledName": "$s11VideoSDKRTC13CounterMetricP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AnyCounterMetric", + "printedName": "AnyCounterMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCounterMetric", + "printedName": "VideoSDKRTC.AnyCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16AnyCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16AnyCounterMetricVyACyxGqd__c1TQyd__RszAA0dE0Rd__lufc", + "mangledName": "$s11VideoSDKRTC16AnyCounterMetricVyACyxGqd__c1TQyd__RszAA0dE0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 == τ_1_0.T, τ_1_0 : VideoSDKRTC.CounterMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AnyCounterMetricV3add5value8labelsetyx_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC16AnyCounterMetricV3add5value8labelsetyx_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AnyCounterMetricV3add5value6labelsyx_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC16AnyCounterMetricV3add5value6labelsyx_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundCounterMetric", + "printedName": "VideoSDKRTC.BoundCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AnyCounterMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC16AnyCounterMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundCounterMetric", + "printedName": "VideoSDKRTC.BoundCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AnyCounterMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC16AnyCounterMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16AnyCounterMetricV", + "mangledName": "$s11VideoSDKRTC16AnyCounterMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CounterMetric", + "printedName": "CounterMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC13CounterMetricP", + "mangledName": "$s11VideoSDKRTC13CounterMetricP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoopCounterMetric", + "printedName": "NoopCounterMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopCounterMetric", + "printedName": "VideoSDKRTC.NoopCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17NoopCounterMetricV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17NoopCounterMetricVACyxGycfc", + "mangledName": "$s11VideoSDKRTC17NoopCounterMetricVACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17NoopCounterMetricV3add5value8labelsetyx_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC17NoopCounterMetricV3add5value8labelsetyx_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17NoopCounterMetricV3add5value6labelsyx_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC17NoopCounterMetricV3add5value6labelsyx_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundCounterMetric", + "printedName": "VideoSDKRTC.BoundCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17NoopCounterMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC17NoopCounterMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundCounterMetric", + "printedName": "VideoSDKRTC.BoundCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17NoopCounterMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC17NoopCounterMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC17NoopCounterMetricV", + "mangledName": "$s11VideoSDKRTC17NoopCounterMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CounterMetric", + "printedName": "CounterMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC13CounterMetricP", + "mangledName": "$s11VideoSDKRTC13CounterMetricP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CounterSumAggregator", + "printedName": "CounterSumAggregator", + "children": [ + { + "kind": "Function", + "name": "update", + "printedName": "update(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20CounterSumAggregatorC6update5valueyx_tF", + "mangledName": "$s11VideoSDKRTC20CounterSumAggregatorC6update5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkpoint", + "printedName": "checkpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20CounterSumAggregatorC10checkpointyyF", + "mangledName": "$s11VideoSDKRTC20CounterSumAggregatorC10checkpointyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20CounterSumAggregatorC12toMetricDataAA0gH0_pyF", + "mangledName": "$s11VideoSDKRTC20CounterSumAggregatorC12toMetricDataAA0gH0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAggregationType", + "printedName": "getAggregationType()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20CounterSumAggregatorC18getAggregationTypeAA0gH0OyF", + "mangledName": "$s11VideoSDKRTC20CounterSumAggregatorC18getAggregationTypeAA0gH0OyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20CounterSumAggregatorC", + "mangledName": "$s11VideoSDKRTC20CounterSumAggregatorC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:11VideoSDKRTC10AggregatorC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.Aggregator<τ_0_0>" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "CustomRTCMediaStream", + "printedName": "CustomRTCMediaStream", + "declKind": "Class", + "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC", + "mangledName": "$s11VideoSDKRTC20CustomRTCMediaStreamC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CustomVideoTrackConfig", + "printedName": "CustomVideoTrackConfig", + "children": [ + { + "kind": "Var", + "name": "h90p_w160p", + "printedName": "h90p_w160p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO10h90p_w160pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO10h90p_w160pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h180p_w320p", + "printedName": "h180p_w320p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h180p_w320pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h180p_w320pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h216p_w384p", + "printedName": "h216p_w384p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h216p_w384pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h216p_w384pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h360p_w640p", + "printedName": "h360p_w640p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h360p_w640pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h360p_w640pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h540p_w960p", + "printedName": "h540p_w960p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h540p_w960pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h540p_w960pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h720p_w1280p", + "printedName": "h720p_w1280p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO12h720p_w1280pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO12h720p_w1280pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h1080p_w1920p", + "printedName": "h1080p_w1920p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1920pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1920pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h1440p_w2560p", + "printedName": "h1440p_w2560p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w2560pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w2560pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h2160p_w3840p", + "printedName": "h2160p_w3840p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h2160p_w3840pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h2160p_w3840pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h120p_w160p", + "printedName": "h120p_w160p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h120p_w160pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h120p_w160pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h180p_w240p", + "printedName": "h180p_w240p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h180p_w240pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h180p_w240pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h240p_w320p", + "printedName": "h240p_w320p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h240p_w320pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h240p_w320pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h360p_w480p", + "printedName": "h360p_w480p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h360p_w480pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h360p_w480pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h480p_w640p", + "printedName": "h480p_w640p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h480p_w640pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h480p_w640pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h540p_w720p", + "printedName": "h540p_w720p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h540p_w720pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h540p_w720pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h720p_w960p", + "printedName": "h720p_w960p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO11h720p_w960pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO11h720p_w960pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h1080p_w1440p", + "printedName": "h1080p_w1440p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1440pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1080p_w1440pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "h1440p_w1920p", + "printedName": "h1440p_w1920p", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.CustomVideoTrackConfig.Type) -> VideoSDKRTC.CustomVideoTrackConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w1920pyA2CmF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO13h1440p_w1920pyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + }, + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO", + "mangledName": "$s11VideoSDKRTC06CustomA11TrackConfigO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultAggregation", + "printedName": "DefaultAggregation", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAggregation", + "printedName": "VideoSDKRTC.DefaultAggregation", + "usr": "s:11VideoSDKRTC18DefaultAggregationC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18DefaultAggregationC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC18DefaultAggregationC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAggregation", + "printedName": "VideoSDKRTC.DefaultAggregation", + "usr": "s:11VideoSDKRTC18DefaultAggregationC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18DefaultAggregationC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC18DefaultAggregationC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createAggregator", + "printedName": "createAggregator(descriptor:exemplarFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableAggregator", + "printedName": "VideoSDKRTC.StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DefaultAggregationC16createAggregator10descriptor14exemplarFilterAA06StableF0_pAA20InstrumentDescriptorV_AA08ExemplarI0_ptF", + "mangledName": "$s11VideoSDKRTC18DefaultAggregationC16createAggregator10descriptor14exemplarFilterAA06StableF0_pAA20InstrumentDescriptorV_AA08ExemplarI0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isCompatible", + "printedName": "isCompatible(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DefaultAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "mangledName": "$s11VideoSDKRTC18DefaultAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18DefaultAggregationC", + "mangledName": "$s11VideoSDKRTC18DefaultAggregationC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Aggregation", + "printedName": "Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP", + "mangledName": "$s11VideoSDKRTC11AggregationP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultBaggage", + "printedName": "DefaultBaggage", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(entries:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultBaggage", + "printedName": "VideoSDKRTC.DefaultBaggage", + "usr": "s:11VideoSDKRTC14DefaultBaggageC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[VideoSDKRTC.EntryKey : VideoSDKRTC.Entry?]", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Entry?", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14DefaultBaggageC7entriesACSDyAA8EntryKeyVAA0F0VSgG_tcfc", + "mangledName": "$s11VideoSDKRTC14DefaultBaggageC7entriesACSDyAA8EntryKeyVAA0F0VSgG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "baggageBuilder", + "printedName": "baggageBuilder()", + "children": [ + { + "kind": "TypeNominal", + "name": "BaggageBuilder", + "printedName": "VideoSDKRTC.BaggageBuilder", + "usr": "s:11VideoSDKRTC14BaggageBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DefaultBaggageC14baggageBuilderAA0dF0_pyFZ", + "mangledName": "$s11VideoSDKRTC14DefaultBaggageC14baggageBuilderAA0dF0_pyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getEntries", + "printedName": "getEntries()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Entry]", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DefaultBaggageC10getEntriesSayAA5EntryVGyF", + "mangledName": "$s11VideoSDKRTC14DefaultBaggageC10getEntriesSayAA5EntryVGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getEntryValue", + "printedName": "getEntryValue(key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DefaultBaggageC13getEntryValue3keyAA0fG0VSgAA0F3KeyV_tF", + "mangledName": "$s11VideoSDKRTC14DefaultBaggageC13getEntryValue3keyAA0fG0VSgAA0F3KeyV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DefaultBaggage", + "printedName": "VideoSDKRTC.DefaultBaggage", + "usr": "s:11VideoSDKRTC14DefaultBaggageC" + }, + { + "kind": "TypeNominal", + "name": "DefaultBaggage", + "printedName": "VideoSDKRTC.DefaultBaggage", + "usr": "s:11VideoSDKRTC14DefaultBaggageC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DefaultBaggageC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC14DefaultBaggageC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC14DefaultBaggageC", + "mangledName": "$s11VideoSDKRTC14DefaultBaggageC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Baggage", + "printedName": "Baggage", + "usr": "s:11VideoSDKRTC7BaggageP", + "mangledName": "$s11VideoSDKRTC7BaggageP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultBaggageBuilder", + "printedName": "DefaultBaggageBuilder", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultBaggageBuilder", + "printedName": "VideoSDKRTC.DefaultBaggageBuilder", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderCACycfc", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setParent", + "printedName": "setParent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Baggage?", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC9setParentyACXDAA0D0_pSgF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderC9setParentyACXDAA0D0_pSgF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setNoParent", + "printedName": "setNoParent()", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC11setNoParentACXDyF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderC11setNoParentACXDyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "put", + "printedName": "put(key:value:metadata:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + }, + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC3put3key5value8metadataACXDAA8EntryKeyV_AA0J5ValueVAA0J8MetadataVSgtF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderC3put3key5value8metadataACXDAA8EntryKeyV_AA0J5ValueVAA0J8MetadataVSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "put", + "printedName": "put(key:value:metadata:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC3put3key5value8metadataACXDSS_S2SSgtF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderC3put3key5value8metadataACXDSS_S2SSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "remove", + "printedName": "remove(key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC6remove3keyACXDAA8EntryKeyV_tF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderC6remove3keyACXDAA8EntryKeyV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC5buildAA0D0_pyF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderC5buildAA0D0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21DefaultBaggageBuilderC", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "BaggageBuilder", + "printedName": "BaggageBuilder", + "usr": "s:11VideoSDKRTC14BaggageBuilderP", + "mangledName": "$s11VideoSDKRTC14BaggageBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultBaggageManager", + "printedName": "DefaultBaggageManager", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultBaggageManager", + "printedName": "VideoSDKRTC.DefaultBaggageManager", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageManagerC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultBaggageManager", + "printedName": "VideoSDKRTC.DefaultBaggageManager", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageManagerC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DefaultBaggageManager", + "printedName": "VideoSDKRTC.DefaultBaggageManager", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC8instanceACvsZ", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageManagerC8instanceACvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC8instanceACvMZ", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageManagerC8instanceACvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "baggageBuilder", + "printedName": "baggageBuilder()", + "children": [ + { + "kind": "TypeNominal", + "name": "BaggageBuilder", + "printedName": "VideoSDKRTC.BaggageBuilder", + "usr": "s:11VideoSDKRTC14BaggageBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC14baggageBuilderAA0dG0_pyF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageManagerC14baggageBuilderAA0dG0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentBaggage", + "printedName": "getCurrentBaggage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Baggage?", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC010getCurrentD0AA0D0_pSgyF", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageManagerC010getCurrentD0AA0D0_pSgyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21DefaultBaggageManagerC", + "mangledName": "$s11VideoSDKRTC21DefaultBaggageManagerC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "BaggageManager", + "printedName": "BaggageManager", + "usr": "s:11VideoSDKRTC14BaggageManagerP", + "mangledName": "$s11VideoSDKRTC14BaggageManagerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultContextPropagators", + "printedName": "DefaultContextPropagators", + "children": [ + { + "kind": "Var", + "name": "textMapPropagator", + "printedName": "textMapPropagator", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvp", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvg", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvs", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvM", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV17textMapPropagatorAA04TextgH0_pvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "textMapBaggagePropagator", + "printedName": "textMapBaggagePropagator", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapBaggagePropagator", + "printedName": "VideoSDKRTC.TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvp", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapBaggagePropagator", + "printedName": "VideoSDKRTC.TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvg", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TextMapBaggagePropagator", + "printedName": "VideoSDKRTC.TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvs", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvM", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV24textMapBaggagePropagatorAA04TextghI0_pvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultContextPropagators", + "printedName": "VideoSDKRTC.DefaultContextPropagators", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsVACycfc", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(textPropagators:baggagePropagator:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultContextPropagators", + "printedName": "VideoSDKRTC.DefaultContextPropagators", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.TextMapPropagator]", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "TextMapBaggagePropagator", + "printedName": "VideoSDKRTC.TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV04textE017baggagePropagatorACSayAA07TextMapH0_pG_AA0ij7BaggageH0_ptcfc", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV04textE017baggagePropagatorACSayAA07TextMapH0_pG_AA0ij7BaggageH0_ptcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addTextMapPropagator", + "printedName": "addTextMapPropagator(textFormat:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV20addTextMapPropagator10textFormatyAA0ghI0_p_tF", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV20addTextMapPropagator10textFormatyAA0ghI0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25DefaultContextPropagatorsV", + "mangledName": "$s11VideoSDKRTC25DefaultContextPropagatorsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ContextPropagators", + "printedName": "ContextPropagators", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP", + "mangledName": "$s11VideoSDKRTC18ContextPropagatorsP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "children": [ + { + "kind": "Function", + "name": "eventBuilder", + "printedName": "eventBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "EventBuilder", + "printedName": "VideoSDKRTC.EventBuilder", + "usr": "s:11VideoSDKRTC12EventBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13DefaultLoggerC12eventBuilder4nameAA05EventF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC13DefaultLoggerC12eventBuilder4nameAA05EventF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logRecordBuilder", + "printedName": "logRecordBuilder()", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordBuilder", + "printedName": "VideoSDKRTC.LogRecordBuilder", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13DefaultLoggerC16logRecordBuilderAA03LogfG0_pyF", + "mangledName": "$s11VideoSDKRTC13DefaultLoggerC16logRecordBuilderAA03LogfG0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC13DefaultLoggerC", + "mangledName": "$s11VideoSDKRTC13DefaultLoggerC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Logger", + "printedName": "Logger", + "usr": "s:11VideoSDKRTC6LoggerP", + "mangledName": "$s11VideoSDKRTC6LoggerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultLoggerProvider", + "printedName": "DefaultLoggerProvider", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerProvider", + "printedName": "VideoSDKRTC.LoggerProvider", + "usr": "s:11VideoSDKRTC14LoggerProviderP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21DefaultLoggerProviderC8instanceAA0dE0_pvpZ", + "mangledName": "$s11VideoSDKRTC21DefaultLoggerProviderC8instanceAA0dE0_pvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerProvider", + "printedName": "VideoSDKRTC.LoggerProvider", + "usr": "s:11VideoSDKRTC14LoggerProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21DefaultLoggerProviderC8instanceAA0dE0_pvgZ", + "mangledName": "$s11VideoSDKRTC21DefaultLoggerProviderC8instanceAA0dE0_pvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationScopeName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "VideoSDKRTC.Logger", + "usr": "s:11VideoSDKRTC6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultLoggerProviderC3get24instrumentationScopeNameAA0D0_pSS_tF", + "mangledName": "$s11VideoSDKRTC21DefaultLoggerProviderC3get24instrumentationScopeNameAA0D0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loggerBuilder", + "printedName": "loggerBuilder(instrumentationScopeName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerBuilder", + "printedName": "VideoSDKRTC.LoggerBuilder", + "usr": "s:11VideoSDKRTC13LoggerBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultLoggerProviderC13loggerBuilder24instrumentationScopeNameAA0dG0_pSS_tF", + "mangledName": "$s11VideoSDKRTC21DefaultLoggerProviderC13loggerBuilder24instrumentationScopeNameAA0dG0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21DefaultLoggerProviderC", + "mangledName": "$s11VideoSDKRTC21DefaultLoggerProviderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LoggerProvider", + "printedName": "LoggerProvider", + "usr": "s:11VideoSDKRTC14LoggerProviderP", + "mangledName": "$s11VideoSDKRTC14LoggerProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultMeterProvider", + "printedName": "DefaultMeterProvider", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvpZ", + "mangledName": "$s11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvgZ", + "mangledName": "$s11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvsZ", + "mangledName": "$s11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvMZ", + "mangledName": "$s11VideoSDKRTC20DefaultMeterProviderC8instanceAA0dE0_pvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "setDefault", + "printedName": "setDefault(meterFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20DefaultMeterProviderC03setC012meterFactoryyAA0dE0_p_tFZ", + "mangledName": "$s11VideoSDKRTC20DefaultMeterProviderC03setC012meterFactoryyAA0dE0_p_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationName:instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Meter", + "printedName": "VideoSDKRTC.Meter", + "usr": "s:11VideoSDKRTC5MeterP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20DefaultMeterProviderC3get19instrumentationName0G7VersionAA0D0_pSS_SSSgtF", + "mangledName": "$s11VideoSDKRTC20DefaultMeterProviderC3get19instrumentationName0G7VersionAA0D0_pSS_SSSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20DefaultMeterProviderC", + "mangledName": "$s11VideoSDKRTC20DefaultMeterProviderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "MeterProvider", + "printedName": "MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP", + "mangledName": "$s11VideoSDKRTC13MeterProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultStableMeter", + "printedName": "DefaultStableMeter", + "children": [ + { + "kind": "Function", + "name": "counterBuilder", + "printedName": "counterBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LongCounterBuilder", + "printedName": "VideoSDKRTC.LongCounterBuilder", + "usr": "s:11VideoSDKRTC18LongCounterBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DefaultStableMeterC14counterBuilder4nameAA011LongCounterG0_pSS_tF", + "mangledName": "$s11VideoSDKRTC18DefaultStableMeterC14counterBuilder4nameAA011LongCounterG0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "upDownCounterBuilder", + "printedName": "upDownCounterBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LongUpDownCounterBuilder", + "printedName": "VideoSDKRTC.LongUpDownCounterBuilder", + "usr": "s:11VideoSDKRTC24LongUpDownCounterBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DefaultStableMeterC20upDownCounterBuilder4nameAA06LongUpghI0_pSS_tF", + "mangledName": "$s11VideoSDKRTC18DefaultStableMeterC20upDownCounterBuilder4nameAA06LongUpghI0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "histogramBuilder", + "printedName": "histogramBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleHistogramBuilder", + "printedName": "VideoSDKRTC.DoubleHistogramBuilder", + "usr": "s:11VideoSDKRTC22DoubleHistogramBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DefaultStableMeterC16histogramBuilder4nameAA015DoubleHistogramG0_pSS_tF", + "mangledName": "$s11VideoSDKRTC18DefaultStableMeterC16histogramBuilder4nameAA015DoubleHistogramG0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "gaugeBuilder", + "printedName": "gaugeBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleGaugeBuilder", + "printedName": "VideoSDKRTC.DoubleGaugeBuilder", + "usr": "s:11VideoSDKRTC18DoubleGaugeBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DefaultStableMeterC12gaugeBuilder4nameAA011DoubleGaugeG0_pSS_tF", + "mangledName": "$s11VideoSDKRTC18DefaultStableMeterC12gaugeBuilder4nameAA011DoubleGaugeG0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18DefaultStableMeterC", + "mangledName": "$s11VideoSDKRTC18DefaultStableMeterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "StableMeter", + "printedName": "StableMeter", + "usr": "s:11VideoSDKRTC11StableMeterP", + "mangledName": "$s11VideoSDKRTC11StableMeterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultStableMeterProvider", + "printedName": "DefaultStableMeterProvider", + "children": [ + { + "kind": "Function", + "name": "noop", + "printedName": "noop()", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterBuilder", + "printedName": "VideoSDKRTC.MeterBuilder", + "usr": "s:11VideoSDKRTC12MeterBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC4noopAA0E7Builder_pyFZ", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC4noopAA0E7Builder_pyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeter", + "printedName": "VideoSDKRTC.StableMeter", + "usr": "s:11VideoSDKRTC11StableMeterP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC3get4nameAA0dE0_pSS_tF", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC3get4nameAA0dE0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "meterBuilder", + "printedName": "meterBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterBuilder", + "printedName": "VideoSDKRTC.MeterBuilder", + "usr": "s:11VideoSDKRTC12MeterBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC12meterBuilder4nameAA0eH0_pSS_tF", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC12meterBuilder4nameAA0eH0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeterProvider", + "printedName": "VideoSDKRTC.StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvpZ", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeterProvider", + "printedName": "VideoSDKRTC.StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvgZ", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "StableMeterProvider", + "printedName": "VideoSDKRTC.StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvsZ", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvMZ", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC8instanceAA0deF0_pvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC26DefaultStableMeterProviderC", + "mangledName": "$s11VideoSDKRTC26DefaultStableMeterProviderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "StableMeterProvider", + "printedName": "StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP", + "mangledName": "$s11VideoSDKRTC19StableMeterProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultTracer", + "printedName": "DefaultTracer", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultTracer", + "printedName": "VideoSDKRTC.DefaultTracer", + "usr": "s:11VideoSDKRTC13DefaultTracerC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13DefaultTracerC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC13DefaultTracerC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultTracer", + "printedName": "VideoSDKRTC.DefaultTracer", + "usr": "s:11VideoSDKRTC13DefaultTracerC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13DefaultTracerC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC13DefaultTracerC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DefaultTracer", + "printedName": "VideoSDKRTC.DefaultTracer", + "usr": "s:11VideoSDKRTC13DefaultTracerC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13DefaultTracerC8instanceACvsZ", + "mangledName": "$s11VideoSDKRTC13DefaultTracerC8instanceACvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13DefaultTracerC8instanceACvMZ", + "mangledName": "$s11VideoSDKRTC13DefaultTracerC8instanceACvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "spanBuilder", + "printedName": "spanBuilder(spanName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanBuilder", + "printedName": "VideoSDKRTC.SpanBuilder", + "usr": "s:11VideoSDKRTC11SpanBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13DefaultTracerC11spanBuilder0E4NameAA04SpanF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC13DefaultTracerC11spanBuilder0E4NameAA04SpanF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC13DefaultTracerC", + "mangledName": "$s11VideoSDKRTC13DefaultTracerC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Tracer", + "printedName": "Tracer", + "usr": "s:11VideoSDKRTC6TracerP", + "mangledName": "$s11VideoSDKRTC6TracerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultTracerProvider", + "printedName": "DefaultTracerProvider", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultTracerProvider", + "printedName": "VideoSDKRTC.DefaultTracerProvider", + "usr": "s:11VideoSDKRTC21DefaultTracerProviderC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21DefaultTracerProviderC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC21DefaultTracerProviderC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultTracerProvider", + "printedName": "VideoSDKRTC.DefaultTracerProvider", + "usr": "s:11VideoSDKRTC21DefaultTracerProviderC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21DefaultTracerProviderC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC21DefaultTracerProviderC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationName:instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Tracer", + "printedName": "VideoSDKRTC.Tracer", + "usr": "s:11VideoSDKRTC6TracerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DefaultTracerProviderC3get19instrumentationName0G7VersionAA0D0_pSS_SSSgtF", + "mangledName": "$s11VideoSDKRTC21DefaultTracerProviderC3get19instrumentationName0G7VersionAA0D0_pSS_SSSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21DefaultTracerProviderC", + "mangledName": "$s11VideoSDKRTC21DefaultTracerProviderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "TracerProvider", + "printedName": "TracerProvider", + "usr": "s:11VideoSDKRTC14TracerProviderP", + "mangledName": "$s11VideoSDKRTC14TracerProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FileDescriptorSet", + "printedName": "Google_Protobuf_FileDescriptorSet", + "children": [ + { + "kind": "Var", + "name": "file", + "printedName": "file", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FileDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FileDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FileDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV4fileSayAA0c1_d1_eF5ProtoVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorSet", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetVACycfc", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorSet", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorSet", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_FileDescriptorSetV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FileDescriptorProto", + "printedName": "Google_Protobuf_FileDescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "package", + "printedName": "package", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7packageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPackage", + "printedName": "hasPackage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasPackageSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasPackageSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasPackageSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasPackageSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPackage", + "printedName": "clearPackage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV12clearPackageyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV12clearPackageyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "dependency", + "printedName": "dependency", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10dependencySaySSGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "publicDependency", + "printedName": "publicDependency", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16publicDependencySays5Int32VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "weakDependency", + "printedName": "weakDependency", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14weakDependencySays5Int32VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "messageType", + "printedName": "messageType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11messageTypeSayAA0c1_d1_fG0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enumType", + "printedName": "enumType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8enumTypeSayAA0c1_d5_EnumfG0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "service", + "printedName": "service", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7serviceSayAA0c1_d8_ServicefG0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "extension", + "printedName": "extension", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9extensionSayAA0c1_d6_FieldfG0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "sourceCodeInfo", + "printedName": "sourceCodeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0Vvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0Vvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0Vvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0VvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV14sourceCodeInfoAA0c1_d7_SourceiJ0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSourceCodeInfo", + "printedName": "hasSourceCodeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17hasSourceCodeInfoSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17hasSourceCodeInfoSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17hasSourceCodeInfoSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17hasSourceCodeInfoSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSourceCodeInfo", + "printedName": "clearSourceCodeInfo()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV19clearSourceCodeInfoyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV19clearSourceCodeInfoyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "syntax", + "printedName": "syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV6syntaxSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSyntax", + "printedName": "hasSyntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hasSyntaxSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hasSyntaxSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hasSyntaxSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hasSyntaxSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSyntax", + "printedName": "clearSyntax()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11clearSyntaxyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV11clearSyntaxyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "edition", + "printedName": "edition", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV7editionSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasEdition", + "printedName": "hasEdition", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasEditionSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasEditionSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasEditionSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV10hasEditionSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearEdition", + "printedName": "clearEdition()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV12clearEditionyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV12clearEditionyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FileDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_FileDescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "Google_Protobuf_DescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "field", + "printedName": "field", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV5fieldSayAA0c1_d6_FieldeF0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "extension", + "printedName": "extension", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9extensionSayAA0c1_d6_FieldeF0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nestedType", + "printedName": "nestedType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10nestedTypeSayACGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enumType", + "printedName": "enumType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8enumTypeSayAA0c1_d5_EnumeF0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "extensionRange", + "printedName": "extensionRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14extensionRangeSayAC09ExtensionH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "oneofDecl", + "printedName": "oneofDecl", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_OneofDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_OneofDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_OneofDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9oneofDeclSayAA0c1_d6_OneofeF0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MessageOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MessageOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MessageOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MessageOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MessageOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MessageOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV7optionsAA0c1_D15_MessageOptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "reservedRange", + "printedName": "reservedRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13reservedRangeSayAC08ReservedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reservedName", + "printedName": "reservedName", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV12reservedNameSaySSGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ExtensionRange", + "printedName": "ExtensionRange", + "children": [ + { + "kind": "Var", + "name": "start", + "printedName": "start", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32Vvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32Vvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32Vvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32VvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV5starts5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasStart", + "printedName": "hasStart", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8hasStartSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8hasStartSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8hasStartSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8hasStartSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearStart", + "printedName": "clearStart()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV10clearStartyyF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV10clearStartyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "end", + "printedName": "end", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32Vvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32Vvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32Vvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32VvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV3ends5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasEnd", + "printedName": "hasEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV6hasEndSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV6hasEndSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV6hasEndSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV6hasEndSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearEnd", + "printedName": "clearEnd()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8clearEndyyF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8clearEndyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ExtensionRangeOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ExtensionRangeOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ExtensionRangeOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV7optionsAA0c1_d1_gH7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeVAEycfc", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExtensionRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV" + }, + { + "kind": "TypeNominal", + "name": "ExtensionRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV14ExtensionRangeV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ReservedRange", + "printedName": "ReservedRange", + "children": [ + { + "kind": "Var", + "name": "start", + "printedName": "start", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32Vvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32Vvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32Vvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32VvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV5starts5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasStart", + "printedName": "hasStart", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8hasStartSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8hasStartSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8hasStartSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8hasStartSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearStart", + "printedName": "clearStart()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV10clearStartyyF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV10clearStartyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "end", + "printedName": "end", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32Vvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32Vvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32Vvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32VvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV3ends5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasEnd", + "printedName": "hasEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV6hasEndSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV6hasEndSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV6hasEndSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV6hasEndSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearEnd", + "printedName": "clearEnd()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8clearEndyyF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8clearEndyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeVAEycfc", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV" + }, + { + "kind": "TypeNominal", + "name": "ReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13ReservedRangeV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_DescriptorProto", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC31Google_Protobuf_DescriptorProtoV", + "mangledName": "$s11VideoSDKRTC31Google_Protobuf_DescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_ExtensionRangeOptions", + "printedName": "Google_Protobuf_ExtensionRangeOptions", + "children": [ + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "declaration", + "printedName": "declaration", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration]", + "children": [ + { + "kind": "TypeNominal", + "name": "Declaration", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration]", + "children": [ + { + "kind": "TypeNominal", + "name": "Declaration", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration]", + "children": [ + { + "kind": "TypeNominal", + "name": "Declaration", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11declarationSayAC11DeclarationVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "verification", + "printedName": "verification", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV12verificationAC17VerificationStateOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasVerification", + "printedName": "hasVerification", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV15hasVerificationSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV15hasVerificationSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV15hasVerificationSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV15hasVerificationSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearVerification", + "printedName": "clearVerification()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17clearVerificationyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17clearVerificationyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "VerificationState", + "printedName": "VerificationState", + "children": [ + { + "kind": "Var", + "name": "declaration", + "printedName": "declaration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState.Type) -> VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO11declarationyA2EmF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO11declarationyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unverified", + "printedName": "unverified", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState.Type) -> VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO10unverifiedyA2EmF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO10unverifiedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateOAEycfc", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState?", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState]", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState]", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState]", + "children": [ + { + "kind": "TypeNominal", + "name": "VerificationState", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17VerificationStateO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Declaration", + "printedName": "Declaration", + "children": [ + { + "kind": "Var", + "name": "number", + "printedName": "number", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32Vvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32Vvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32Vvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32VvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV6numbers5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasNumber", + "printedName": "hasNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hasNumberSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hasNumberSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hasNumberSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hasNumberSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearNumber", + "printedName": "clearNumber()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11clearNumberyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11clearNumberyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "fullName", + "printedName": "fullName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8fullNameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFullName", + "printedName": "hasFullName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasFullNameSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasFullNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasFullNameSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasFullNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFullName", + "printedName": "clearFullName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13clearFullNameyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13clearFullNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV4typeSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasType", + "printedName": "hasType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV7hasTypeSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV7hasTypeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV7hasTypeSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV7hasTypeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearType", + "printedName": "clearType()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9clearTypeyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9clearTypeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "reserved", + "printedName": "reserved", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8reservedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasReserved", + "printedName": "hasReserved", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasReservedSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasReservedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasReservedSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasReservedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearReserved", + "printedName": "clearReserved()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13clearReservedyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13clearReservedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "repeated", + "printedName": "repeated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8repeatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasRepeated", + "printedName": "hasRepeated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasRepeatedSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasRepeatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasRepeatedSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV11hasRepeatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearRepeated", + "printedName": "clearRepeated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13clearRepeatedyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13clearRepeatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Declaration", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationVAEycfc", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Declaration", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV" + }, + { + "kind": "TypeNominal", + "name": "Declaration", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV11DeclarationV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ExtensionRangeOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV30_protobuf_extensionFieldValuesAA0eJ8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ExtensionRangeOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ExtensionRangeOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_ExtensionRangeOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "Google_Protobuf_FieldDescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "number", + "printedName": "number", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32Vvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32Vvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32Vvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32VvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV6numbers5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasNumber", + "printedName": "hasNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hasNumberSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hasNumberSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hasNumberSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hasNumberSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearNumber", + "printedName": "clearNumber()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11clearNumberyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11clearNumberyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "label", + "printedName": "label", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5labelAC5LabelOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasLabel", + "printedName": "hasLabel", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8hasLabelSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8hasLabelSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8hasLabelSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8hasLabelSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearLabel", + "printedName": "clearLabel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10clearLabelyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10clearLabelyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV4typeAC8TypeEnumOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasType", + "printedName": "hasType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasTypeSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasTypeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasTypeSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7hasTypeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearType", + "printedName": "clearType()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9clearTypeyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9clearTypeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "typeName", + "printedName": "typeName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8typeNameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasTypeName", + "printedName": "hasTypeName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasTypeNameSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasTypeNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasTypeNameSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasTypeNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearTypeName", + "printedName": "clearTypeName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13clearTypeNameyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13clearTypeNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "extendee", + "printedName": "extendee", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8extendeeSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasExtendee", + "printedName": "hasExtendee", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasExtendeeSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasExtendeeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasExtendeeSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasExtendeeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearExtendee", + "printedName": "clearExtendee()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13clearExtendeeyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13clearExtendeeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "defaultValue", + "printedName": "defaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12defaultValueSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDefaultValue", + "printedName": "hasDefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV15hasDefaultValueSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV15hasDefaultValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV15hasDefaultValueSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV15hasDefaultValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDefaultValue", + "printedName": "clearDefaultValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17clearDefaultValueyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17clearDefaultValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "oneofIndex", + "printedName": "oneofIndex", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32Vvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32Vvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32Vvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32VvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10oneofIndexs5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOneofIndex", + "printedName": "hasOneofIndex", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13hasOneofIndexSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13hasOneofIndexSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13hasOneofIndexSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13hasOneofIndexSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOneofIndex", + "printedName": "clearOneofIndex()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV15clearOneofIndexyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV15clearOneofIndexyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "jsonName", + "printedName": "jsonName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8jsonNameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJsonName", + "printedName": "hasJsonName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasJsonNameSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasJsonNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasJsonNameSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV11hasJsonNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJsonName", + "printedName": "clearJsonName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13clearJsonNameyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13clearJsonNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "proto3Optional", + "printedName": "proto3Optional", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV14proto3OptionalSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasProto3Optional", + "printedName": "hasProto3Optional", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17hasProto3OptionalSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17hasProto3OptionalSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17hasProto3OptionalSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17hasProto3OptionalSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearProto3Optional", + "printedName": "clearProto3Optional()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV19clearProto3OptionalyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV19clearProto3OptionalyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TypeEnum", + "printedName": "TypeEnum", + "children": [ + { + "kind": "Var", + "name": "double", + "printedName": "double", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6doubleyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6doubleyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "float", + "printedName": "float", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5floatyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5floatyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "int64", + "printedName": "int64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5int64yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5int64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "uint64", + "printedName": "uint64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6uint64yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6uint64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "int32", + "printedName": "int32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5int32yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5int32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fixed64", + "printedName": "fixed64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO7fixed64yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO7fixed64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fixed32", + "printedName": "fixed32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO7fixed32yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO7fixed32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "bool", + "printedName": "bool", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO4boolyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO4boolyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "string", + "printedName": "string", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6stringyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6stringyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "group", + "printedName": "group", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5groupyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5groupyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO7messageyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO7messageyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "bytes", + "printedName": "bytes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5bytesyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO5bytesyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "uint32", + "printedName": "uint32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6uint32yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6uint32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "enum", + "printedName": "enum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO4enumyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO4enumyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "sfixed32", + "printedName": "sfixed32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8sfixed32yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8sfixed32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "sfixed64", + "printedName": "sfixed64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8sfixed64yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8sfixed64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "sint32", + "printedName": "sint32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6sint32yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6sint32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "sint64", + "printedName": "sint64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6sint64yA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO6sint64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumOAEycfc", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum]", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum]", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum]", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeEnum", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8TypeEnumO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Label", + "printedName": "Label", + "children": [ + { + "kind": "Var", + "name": "optional", + "printedName": "optional", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8optionalyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8optionalyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "required", + "printedName": "required", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8requiredyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8requiredyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "repeated", + "printedName": "repeated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label.Type) -> VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8repeatedyA2EmF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8repeatedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelOAEycfc", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label?", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label]", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label]", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label]", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV5LabelO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_FieldDescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_OneofDescriptorProto", + "printedName": "Google_Protobuf_OneofDescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofDescriptorProto", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV", + "mangledName": "$s11VideoSDKRTC36Google_Protobuf_OneofDescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "Google_Protobuf_EnumDescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV5valueSayAA0c1_d1_e5ValuefG0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "reservedRange", + "printedName": "reservedRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange]", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13reservedRangeSayAC0e8ReservedI0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reservedName", + "printedName": "reservedName", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV12reservedNameSaySSGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "EnumReservedRange", + "printedName": "EnumReservedRange", + "children": [ + { + "kind": "Var", + "name": "start", + "printedName": "start", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32Vvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32Vvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32Vvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32VvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV5starts5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasStart", + "printedName": "hasStart", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8hasStartSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8hasStartSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8hasStartSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8hasStartSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearStart", + "printedName": "clearStart()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV10clearStartyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV10clearStartyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "end", + "printedName": "end", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32Vvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32Vvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32Vvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32VvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV3ends5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasEnd", + "printedName": "hasEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV6hasEndSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV6hasEndSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV6hasEndSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV6hasEndSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearEnd", + "printedName": "clearEnd()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8clearEndyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8clearEndyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeVAEycfc", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "EnumReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV" + }, + { + "kind": "TypeNominal", + "name": "EnumReservedRange", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV0E13ReservedRangeV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumDescriptorProto", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_EnumDescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_EnumValueDescriptorProto", + "printedName": "Google_Protobuf_EnumValueDescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "number", + "printedName": "number", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32Vvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32Vvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32Vvs", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32VvM", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV6numbers5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasNumber", + "printedName": "hasNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV9hasNumberSbvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV9hasNumberSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV9hasNumberSbvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV9hasNumberSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearNumber", + "printedName": "clearNumber()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV11clearNumberyyF", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV11clearNumberyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueOptions", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueOptions", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueOptions", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvs", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvM", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV7optionsAA0c1_d1_eF7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV", + "mangledName": "$s11VideoSDKRTC40Google_Protobuf_EnumValueDescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_ServiceDescriptorProto", + "printedName": "Google_Protobuf_ServiceDescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "method", + "printedName": "method", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_MethodDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodDescriptorProto", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_MethodDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodDescriptorProto", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_MethodDescriptorProto]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodDescriptorProto", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvs", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvM", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV6methodSayAA0c1_d7_MethodfG0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV", + "mangledName": "$s11VideoSDKRTC38Google_Protobuf_ServiceDescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_MethodDescriptorProto", + "printedName": "Google_Protobuf_MethodDescriptorProto", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasName", + "printedName": "hasName", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7hasNameSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7hasNameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7hasNameSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7hasNameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearName", + "printedName": "clearName()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9clearNameyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9clearNameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "inputType", + "printedName": "inputType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9inputTypeSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasInputType", + "printedName": "hasInputType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV12hasInputTypeSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV12hasInputTypeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV12hasInputTypeSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV12hasInputTypeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearInputType", + "printedName": "clearInputType()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV14clearInputTypeyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV14clearInputTypeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "outputType", + "printedName": "outputType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10outputTypeSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOutputType", + "printedName": "hasOutputType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13hasOutputTypeSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13hasOutputTypeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13hasOutputTypeSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13hasOutputTypeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOutputType", + "printedName": "clearOutputType()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clearOutputTypeyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clearOutputTypeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV7optionsAA0c1_d1_E7OptionsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptions", + "printedName": "hasOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10hasOptionsSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10hasOptionsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10hasOptionsSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV10hasOptionsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptions", + "printedName": "clearOptions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV12clearOptionsyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV12clearOptionsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "clientStreaming", + "printedName": "clientStreaming", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15clientStreamingSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasClientStreaming", + "printedName": "hasClientStreaming", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasClientStreamingSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasClientStreamingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasClientStreamingSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasClientStreamingSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearClientStreaming", + "printedName": "clearClientStreaming()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV20clearClientStreamingyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV20clearClientStreamingyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "serverStreaming", + "printedName": "serverStreaming", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV15serverStreamingSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasServerStreaming", + "printedName": "hasServerStreaming", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasServerStreamingSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasServerStreamingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasServerStreamingSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV18hasServerStreamingSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearServerStreaming", + "printedName": "clearServerStreaming()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV20clearServerStreamingyyF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV20clearServerStreamingyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodDescriptorProto", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoVACycfc", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodDescriptorProto", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodDescriptorProto", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodDescriptorProto", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV", + "mangledName": "$s11VideoSDKRTC37Google_Protobuf_MethodDescriptorProtoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FileOptions", + "printedName": "Google_Protobuf_FileOptions", + "children": [ + { + "kind": "Var", + "name": "javaPackage", + "printedName": "javaPackage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11javaPackageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJavaPackage", + "printedName": "hasJavaPackage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasJavaPackageSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasJavaPackageSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasJavaPackageSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasJavaPackageSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJavaPackage", + "printedName": "clearJavaPackage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearJavaPackageyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearJavaPackageyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "javaOuterClassname", + "printedName": "javaOuterClassname", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18javaOuterClassnameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJavaOuterClassname", + "printedName": "hasJavaOuterClassname", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasJavaOuterClassnameSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasJavaOuterClassnameSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasJavaOuterClassnameSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasJavaOuterClassnameSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJavaOuterClassname", + "printedName": "clearJavaOuterClassname()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV23clearJavaOuterClassnameyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV23clearJavaOuterClassnameyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "javaMultipleFiles", + "printedName": "javaMultipleFiles", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17javaMultipleFilesSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJavaMultipleFiles", + "printedName": "hasJavaMultipleFiles", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasJavaMultipleFilesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasJavaMultipleFilesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasJavaMultipleFilesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasJavaMultipleFilesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJavaMultipleFiles", + "printedName": "clearJavaMultipleFiles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV22clearJavaMultipleFilesyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV22clearJavaMultipleFilesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "javaGenerateEqualsAndHash", + "printedName": "javaGenerateEqualsAndHash", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV25javaGenerateEqualsAndHashSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJavaGenerateEqualsAndHash", + "printedName": "hasJavaGenerateEqualsAndHash", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV28hasJavaGenerateEqualsAndHashSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV28hasJavaGenerateEqualsAndHashSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV28hasJavaGenerateEqualsAndHashSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV28hasJavaGenerateEqualsAndHashSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJavaGenerateEqualsAndHash", + "printedName": "clearJavaGenerateEqualsAndHash()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV30clearJavaGenerateEqualsAndHashyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV30clearJavaGenerateEqualsAndHashyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "javaStringCheckUtf8", + "printedName": "javaStringCheckUtf8", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8Sbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8Sbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8Sbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8Sbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8SbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaStringCheckUtf8SbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJavaStringCheckUtf8", + "printedName": "hasJavaStringCheckUtf8", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaStringCheckUtf8Sbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaStringCheckUtf8Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaStringCheckUtf8Sbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaStringCheckUtf8Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJavaStringCheckUtf8", + "printedName": "clearJavaStringCheckUtf8()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV24clearJavaStringCheckUtf8yyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV24clearJavaStringCheckUtf8yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "optimizeFor", + "printedName": "optimizeFor", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11optimizeForAC12OptimizeModeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasOptimizeFor", + "printedName": "hasOptimizeFor", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasOptimizeForSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasOptimizeForSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasOptimizeForSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasOptimizeForSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearOptimizeFor", + "printedName": "clearOptimizeFor()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearOptimizeForyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearOptimizeForyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "goPackage", + "printedName": "goPackage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV9goPackageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasGoPackage", + "printedName": "hasGoPackage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12hasGoPackageSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12hasGoPackageSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12hasGoPackageSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12hasGoPackageSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearGoPackage", + "printedName": "clearGoPackage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14clearGoPackageyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14clearGoPackageyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "ccGenericServices", + "printedName": "ccGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17ccGenericServicesSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasCcGenericServices", + "printedName": "hasCcGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasCcGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasCcGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasCcGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasCcGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCcGenericServices", + "printedName": "clearCcGenericServices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV22clearCcGenericServicesyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV22clearCcGenericServicesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "javaGenericServices", + "printedName": "javaGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19javaGenericServicesSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJavaGenericServices", + "printedName": "hasJavaGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV22hasJavaGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJavaGenericServices", + "printedName": "clearJavaGenericServices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV24clearJavaGenericServicesyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV24clearJavaGenericServicesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "pyGenericServices", + "printedName": "pyGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17pyGenericServicesSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPyGenericServices", + "printedName": "hasPyGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasPyGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasPyGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasPyGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20hasPyGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPyGenericServices", + "printedName": "clearPyGenericServices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV22clearPyGenericServicesyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV22clearPyGenericServicesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "phpGenericServices", + "printedName": "phpGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18phpGenericServicesSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPhpGenericServices", + "printedName": "hasPhpGenericServices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasPhpGenericServicesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasPhpGenericServicesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasPhpGenericServicesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV21hasPhpGenericServicesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPhpGenericServices", + "printedName": "clearPhpGenericServices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV23clearPhpGenericServicesyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV23clearPhpGenericServicesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "deprecated", + "printedName": "deprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV10deprecatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecated", + "printedName": "hasDeprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13hasDeprecatedSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13hasDeprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13hasDeprecatedSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13hasDeprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecated", + "printedName": "clearDeprecated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15clearDeprecatedyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15clearDeprecatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "ccEnableArenas", + "printedName": "ccEnableArenas", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14ccEnableArenasSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasCcEnableArenas", + "printedName": "hasCcEnableArenas", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasCcEnableArenasSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasCcEnableArenasSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasCcEnableArenasSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasCcEnableArenasSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCcEnableArenas", + "printedName": "clearCcEnableArenas()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19clearCcEnableArenasyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19clearCcEnableArenasyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "objcClassPrefix", + "printedName": "objcClassPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15objcClassPrefixSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasObjcClassPrefix", + "printedName": "hasObjcClassPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasObjcClassPrefixSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasObjcClassPrefixSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasObjcClassPrefixSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasObjcClassPrefixSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearObjcClassPrefix", + "printedName": "clearObjcClassPrefix()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20clearObjcClassPrefixyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20clearObjcClassPrefixyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "csharpNamespace", + "printedName": "csharpNamespace", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15csharpNamespaceSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasCsharpNamespace", + "printedName": "hasCsharpNamespace", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasCsharpNamespaceSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasCsharpNamespaceSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasCsharpNamespaceSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV18hasCsharpNamespaceSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCsharpNamespace", + "printedName": "clearCsharpNamespace()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20clearCsharpNamespaceyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20clearCsharpNamespaceyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "swiftPrefix", + "printedName": "swiftPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11swiftPrefixSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSwiftPrefix", + "printedName": "hasSwiftPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasSwiftPrefixSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasSwiftPrefixSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasSwiftPrefixSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasSwiftPrefixSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSwiftPrefix", + "printedName": "clearSwiftPrefix()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearSwiftPrefixyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearSwiftPrefixyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "phpClassPrefix", + "printedName": "phpClassPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14phpClassPrefixSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPhpClassPrefix", + "printedName": "hasPhpClassPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasPhpClassPrefixSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasPhpClassPrefixSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasPhpClassPrefixSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17hasPhpClassPrefixSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPhpClassPrefix", + "printedName": "clearPhpClassPrefix()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19clearPhpClassPrefixyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19clearPhpClassPrefixyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "phpNamespace", + "printedName": "phpNamespace", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12phpNamespaceSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPhpNamespace", + "printedName": "hasPhpNamespace", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15hasPhpNamespaceSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15hasPhpNamespaceSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV15hasPhpNamespaceSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV15hasPhpNamespaceSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPhpNamespace", + "printedName": "clearPhpNamespace()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17clearPhpNamespaceyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17clearPhpNamespaceyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "phpMetadataNamespace", + "printedName": "phpMetadataNamespace", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV20phpMetadataNamespaceSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPhpMetadataNamespace", + "printedName": "hasPhpMetadataNamespace", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV23hasPhpMetadataNamespaceSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV23hasPhpMetadataNamespaceSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV23hasPhpMetadataNamespaceSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV23hasPhpMetadataNamespaceSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPhpMetadataNamespace", + "printedName": "clearPhpMetadataNamespace()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV25clearPhpMetadataNamespaceyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV25clearPhpMetadataNamespaceyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "rubyPackage", + "printedName": "rubyPackage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11rubyPackageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasRubyPackage", + "printedName": "hasRubyPackage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasRubyPackageSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasRubyPackageSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasRubyPackageSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV14hasRubyPackageSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearRubyPackage", + "printedName": "clearRubyPackage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearRubyPackageyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV16clearRubyPackageyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OptimizeMode", + "printedName": "OptimizeMode", + "children": [ + { + "kind": "Var", + "name": "speed", + "printedName": "speed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode.Type) -> VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO5speedyA2EmF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO5speedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "codeSize", + "printedName": "codeSize", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode.Type) -> VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8codeSizeyA2EmF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8codeSizeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "liteRuntime", + "printedName": "liteRuntime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode.Type) -> VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO11liteRuntimeyA2EmF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO11liteRuntimeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeOAEycfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptimizeMode", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV12OptimizeModeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FileOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FileOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27Google_Protobuf_FileOptionsV", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_FileOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_MessageOptions", + "printedName": "Google_Protobuf_MessageOptions", + "children": [ + { + "kind": "Var", + "name": "messageSetWireFormat", + "printedName": "messageSetWireFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV20messageSetWireFormatSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMessageSetWireFormat", + "printedName": "hasMessageSetWireFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV03hasE13SetWireFormatSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV03hasE13SetWireFormatSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV03hasE13SetWireFormatSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV03hasE13SetWireFormatSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearMessageSetWireFormat", + "printedName": "clearMessageSetWireFormat()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV05clearE13SetWireFormatyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV05clearE13SetWireFormatyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "noStandardDescriptorAccessor", + "printedName": "noStandardDescriptorAccessor", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV28noStandardDescriptorAccessorSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasNoStandardDescriptorAccessor", + "printedName": "hasNoStandardDescriptorAccessor", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV31hasNoStandardDescriptorAccessorSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV31hasNoStandardDescriptorAccessorSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV31hasNoStandardDescriptorAccessorSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV31hasNoStandardDescriptorAccessorSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearNoStandardDescriptorAccessor", + "printedName": "clearNoStandardDescriptorAccessor()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV33clearNoStandardDescriptorAccessoryyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV33clearNoStandardDescriptorAccessoryyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "deprecated", + "printedName": "deprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV10deprecatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecated", + "printedName": "hasDeprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13hasDeprecatedSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13hasDeprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13hasDeprecatedSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13hasDeprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecated", + "printedName": "clearDeprecated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV15clearDeprecatedyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV15clearDeprecatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "mapEntry", + "printedName": "mapEntry", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8mapEntrySbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMapEntry", + "printedName": "hasMapEntry", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasMapEntrySbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasMapEntrySbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasMapEntrySbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasMapEntrySbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearMapEntry", + "printedName": "clearMapEntry()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13clearMapEntryyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13clearMapEntryyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "deprecatedLegacyJsonFieldConflicts", + "printedName": "deprecatedLegacyJsonFieldConflicts", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV34deprecatedLegacyJsonFieldConflictsSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecatedLegacyJsonFieldConflicts", + "printedName": "hasDeprecatedLegacyJsonFieldConflicts", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecatedLegacyJsonFieldConflicts", + "printedName": "clearDeprecatedLegacyJsonFieldConflicts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV39clearDeprecatedLegacyJsonFieldConflictsyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV39clearDeprecatedLegacyJsonFieldConflictsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MessageOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MessageOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV05protoE4NameSSvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV05protoE4NameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV05protoE4NameSSvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV05protoE4NameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV06decodeE07decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV06decodeE07decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MessageOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MessageOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MessageOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MessageOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC30Google_Protobuf_MessageOptionsV", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_MessageOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FieldOptions", + "printedName": "Google_Protobuf_FieldOptions", + "children": [ + { + "kind": "Var", + "name": "ctype", + "printedName": "ctype", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5ctypeAC5CTypeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasCtype", + "printedName": "hasCtype", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV8hasCtypeSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV8hasCtypeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV8hasCtypeSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV8hasCtypeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCtype", + "printedName": "clearCtype()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV10clearCtypeyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV10clearCtypeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "packed", + "printedName": "packed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6packedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPacked", + "printedName": "hasPacked", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasPackedSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasPackedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasPackedSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasPackedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPacked", + "printedName": "clearPacked()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11clearPackedyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11clearPackedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "jstype", + "printedName": "jstype", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6jstypeAC6JSTypeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJstype", + "printedName": "hasJstype", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasJstypeSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasJstypeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasJstypeSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hasJstypeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJstype", + "printedName": "clearJstype()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11clearJstypeyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11clearJstypeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "lazy", + "printedName": "lazy", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4lazySbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasLazy", + "printedName": "hasLazy", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasLazySbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasLazySbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasLazySbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasLazySbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearLazy", + "printedName": "clearLazy()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9clearLazyyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9clearLazyyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unverifiedLazy", + "printedName": "unverifiedLazy", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14unverifiedLazySbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasUnverifiedLazy", + "printedName": "hasUnverifiedLazy", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV17hasUnverifiedLazySbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV17hasUnverifiedLazySbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV17hasUnverifiedLazySbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV17hasUnverifiedLazySbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearUnverifiedLazy", + "printedName": "clearUnverifiedLazy()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV19clearUnverifiedLazyyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV19clearUnverifiedLazyyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "deprecated", + "printedName": "deprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV10deprecatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecated", + "printedName": "hasDeprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13hasDeprecatedSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13hasDeprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13hasDeprecatedSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13hasDeprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecated", + "printedName": "clearDeprecated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15clearDeprecatedyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15clearDeprecatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "weak", + "printedName": "weak", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV4weakSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasWeak", + "printedName": "hasWeak", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasWeakSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasWeakSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasWeakSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7hasWeakSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearWeak", + "printedName": "clearWeak()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9clearWeakyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9clearWeakyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "debugRedact", + "printedName": "debugRedact", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11debugRedactSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDebugRedact", + "printedName": "hasDebugRedact", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14hasDebugRedactSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14hasDebugRedactSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14hasDebugRedactSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14hasDebugRedactSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDebugRedact", + "printedName": "clearDebugRedact()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16clearDebugRedactyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16clearDebugRedactyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "retention", + "printedName": "retention", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9retentionAC15OptionRetentionOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasRetention", + "printedName": "hasRetention", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV12hasRetentionSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV12hasRetentionSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV12hasRetentionSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV12hasRetentionSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearRetention", + "printedName": "clearRetention()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14clearRetentionyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14clearRetentionyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "targets", + "printedName": "targets", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV7targetsSayAC16OptionTargetTypeOGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "editionDefaults", + "printedName": "editionDefaults", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault]", + "children": [ + { + "kind": "TypeNominal", + "name": "EditionDefault", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault]", + "children": [ + { + "kind": "TypeNominal", + "name": "EditionDefault", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault]", + "children": [ + { + "kind": "TypeNominal", + "name": "EditionDefault", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15editionDefaultsSayAC14EditionDefaultVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CType", + "printedName": "CType", + "children": [ + { + "kind": "Var", + "name": "string", + "printedName": "string", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.CType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO6stringyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO6stringyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cord", + "printedName": "cord", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.CType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO4cordyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO4cordyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "stringPiece", + "printedName": "stringPiece", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.CType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO11stringPieceyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO11stringPieceyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeOAEycfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.CType]", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.CType]", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.CType]", + "children": [ + { + "kind": "TypeNominal", + "name": "CType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.CType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV5CTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "JSType", + "printedName": "JSType", + "children": [ + { + "kind": "Var", + "name": "jsNormal", + "printedName": "jsNormal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.JSType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8jsNormalyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8jsNormalyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "jsString", + "printedName": "jsString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.JSType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8jsStringyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8jsStringyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "jsNumber", + "printedName": "jsNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.JSType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8jsNumberyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8jsNumberyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeOAEycfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType?", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.JSType]", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.JSType]", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.JSType]", + "children": [ + { + "kind": "TypeNominal", + "name": "JSType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.JSType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV6JSTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OptionRetention", + "printedName": "OptionRetention", + "children": [ + { + "kind": "Var", + "name": "retentionUnknown", + "printedName": "retentionUnknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO16retentionUnknownyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO16retentionUnknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "retentionRuntime", + "printedName": "retentionRuntime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO16retentionRuntimeyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO16retentionRuntimeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "retentionSource", + "printedName": "retentionSource", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO15retentionSourceyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO15retentionSourceyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionOAEycfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention?", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionRetention", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV15OptionRetentionO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OptionTargetType", + "printedName": "OptionTargetType", + "children": [ + { + "kind": "Var", + "name": "targetTypeUnknown", + "printedName": "targetTypeUnknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI7UnknownyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI7UnknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "targetTypeFile", + "printedName": "targetTypeFile", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI4FileyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI4FileyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeExtensionRange", + "printedName": "targetTypeExtensionRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI14ExtensionRangeyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI14ExtensionRangeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeMessage", + "printedName": "targetTypeMessage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI7MessageyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI7MessageyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeField", + "printedName": "targetTypeField", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetiE0yA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetiE0yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeOneof", + "printedName": "targetTypeOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI5OneofyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI5OneofyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeEnum", + "printedName": "targetTypeEnum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI4EnumyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI4EnumyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeEnumEntry", + "printedName": "targetTypeEnumEntry", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI9EnumEntryyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI9EnumEntryyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeService", + "printedName": "targetTypeService", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI7ServiceyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI7ServiceyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "targetTypeMethod", + "printedName": "targetTypeMethod", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type) -> VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI6MethodyA2EmF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO06targetI6MethodyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeOAEycfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType?", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType]", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionTargetType", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16OptionTargetTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "EditionDefault", + "printedName": "EditionDefault", + "children": [ + { + "kind": "Var", + "name": "edition", + "printedName": "edition", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV7editionSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasEdition", + "printedName": "hasEdition", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV03hasG0Sbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV03hasG0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV03hasG0Sbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV03hasG0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearEdition", + "printedName": "clearEdition()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV05clearG0yyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV05clearG0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV5valueSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasValue", + "printedName": "hasValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV8hasValueSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV8hasValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV8hasValueSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV8hasValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearValue", + "printedName": "clearValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV10clearValueyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV10clearValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "EditionDefault", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultVAEycfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "EditionDefault", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV" + }, + { + "kind": "TypeNominal", + "name": "EditionDefault", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV14EditionDefaultV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV019_protobuf_extensionE6ValuesAA09ExtensionE8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC28Google_Protobuf_FieldOptionsV", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_FieldOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_OneofOptions", + "printedName": "Google_Protobuf_OneofOptions", + "children": [ + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_OneofOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_OneofOptions", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC28Google_Protobuf_OneofOptionsV", + "mangledName": "$s11VideoSDKRTC28Google_Protobuf_OneofOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_EnumOptions", + "printedName": "Google_Protobuf_EnumOptions", + "children": [ + { + "kind": "Var", + "name": "allowAlias", + "printedName": "allowAlias", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10allowAliasSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasAllowAlias", + "printedName": "hasAllowAlias", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasAllowAliasSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasAllowAliasSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasAllowAliasSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasAllowAliasSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearAllowAlias", + "printedName": "clearAllowAlias()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV15clearAllowAliasyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV15clearAllowAliasyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "deprecated", + "printedName": "deprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV10deprecatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecated", + "printedName": "hasDeprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasDeprecatedSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasDeprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasDeprecatedSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13hasDeprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecated", + "printedName": "clearDeprecated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV15clearDeprecatedyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV15clearDeprecatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "deprecatedLegacyJsonFieldConflicts", + "printedName": "deprecatedLegacyJsonFieldConflicts", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV34deprecatedLegacyJsonFieldConflictsSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecatedLegacyJsonFieldConflicts", + "printedName": "hasDeprecatedLegacyJsonFieldConflicts", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV37hasDeprecatedLegacyJsonFieldConflictsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecatedLegacyJsonFieldConflicts", + "printedName": "clearDeprecatedLegacyJsonFieldConflicts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV39clearDeprecatedLegacyJsonFieldConflictsyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV39clearDeprecatedLegacyJsonFieldConflictsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumOptions", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27Google_Protobuf_EnumOptionsV", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_EnumOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_EnumValueOptions", + "printedName": "Google_Protobuf_EnumValueOptions", + "children": [ + { + "kind": "Var", + "name": "deprecated", + "printedName": "deprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvs", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvM", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV10deprecatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecated", + "printedName": "hasDeprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13hasDeprecatedSbvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13hasDeprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13hasDeprecatedSbvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13hasDeprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecated", + "printedName": "clearDeprecated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV15clearDeprecatedyyF", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV15clearDeprecatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "debugRedact", + "printedName": "debugRedact", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvs", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvM", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV11debugRedactSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDebugRedact", + "printedName": "hasDebugRedact", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV14hasDebugRedactSbvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV14hasDebugRedactSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV14hasDebugRedactSbvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV14hasDebugRedactSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDebugRedact", + "printedName": "clearDebugRedact()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV16clearDebugRedactyyF", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV16clearDebugRedactyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvs", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvM", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedI0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueOptions", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvs", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvM", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV30_protobuf_extensionFieldValuesAA09ExtensionjF3SetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueOptions", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValueOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValueOptions", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV", + "mangledName": "$s11VideoSDKRTC32Google_Protobuf_EnumValueOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_ServiceOptions", + "printedName": "Google_Protobuf_ServiceOptions", + "children": [ + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "deprecated", + "printedName": "deprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV10deprecatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecated", + "printedName": "hasDeprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13hasDeprecatedSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13hasDeprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13hasDeprecatedSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13hasDeprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecated", + "printedName": "clearDeprecated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV15clearDeprecatedyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV15clearDeprecatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ServiceOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_ServiceOptions", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC30Google_Protobuf_ServiceOptionsV", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_ServiceOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_MethodOptions", + "printedName": "Google_Protobuf_MethodOptions", + "children": [ + { + "kind": "Var", + "name": "deprecated", + "printedName": "deprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV10deprecatedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDeprecated", + "printedName": "hasDeprecated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13hasDeprecatedSbvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13hasDeprecatedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13hasDeprecatedSbvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13hasDeprecatedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDeprecated", + "printedName": "clearDeprecated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV15clearDeprecatedyyF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV15clearDeprecatedyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "idempotencyLevel", + "printedName": "idempotencyLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0Ovp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0Ovg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0Ovs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0OvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16idempotencyLevelAC011IdempotencyH0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasIdempotencyLevel", + "printedName": "hasIdempotencyLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV19hasIdempotencyLevelSbvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV19hasIdempotencyLevelSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV19hasIdempotencyLevelSbvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV19hasIdempotencyLevelSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearIdempotencyLevel", + "printedName": "clearIdempotencyLevel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV21clearIdempotencyLevelyyF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV21clearIdempotencyLevelyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "features", + "printedName": "features", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV8featuresAA0c1_D11_FeatureSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFeatures", + "printedName": "hasFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV11hasFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV11hasFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV11hasFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV11hasFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFeatures", + "printedName": "clearFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13clearFeaturesyyF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13clearFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "uninterpretedOption", + "printedName": "uninterpretedOption", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV19uninterpretedOptionSayAA0c1_d14_UninterpretedH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "IdempotencyLevel", + "printedName": "IdempotencyLevel", + "children": [ + { + "kind": "Var", + "name": "idempotencyUnknown", + "printedName": "idempotencyUnknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel.Type) -> VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO18idempotencyUnknownyA2EmF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO18idempotencyUnknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "noSideEffects", + "printedName": "noSideEffects", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel.Type) -> VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO13noSideEffectsyA2EmF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO13noSideEffectsyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "idempotent", + "printedName": "idempotent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel.Type) -> VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO10idempotentyA2EmF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO10idempotentyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelOAEycfc", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel?", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "IdempotencyLevel", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16IdempotencyLevelO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV30_protobuf_extensionFieldValuesAA09ExtensionI8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_MethodOptions", + "printedName": "VideoSDKRTC.Google_Protobuf_MethodOptions", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC29Google_Protobuf_MethodOptionsV", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_MethodOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "Google_Protobuf_UninterpretedOption", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart]", + "children": [ + { + "kind": "TypeNominal", + "name": "NamePart", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart]", + "children": [ + { + "kind": "TypeNominal", + "name": "NamePart", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart]", + "children": [ + { + "kind": "TypeNominal", + "name": "NamePart", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV4nameSayAC8NamePartVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "identifierValue", + "printedName": "identifierValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV15identifierValueSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasIdentifierValue", + "printedName": "hasIdentifierValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV18hasIdentifierValueSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV18hasIdentifierValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV18hasIdentifierValueSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV18hasIdentifierValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearIdentifierValue", + "printedName": "clearIdentifierValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV20clearIdentifierValueyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV20clearIdentifierValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "positiveIntValue", + "printedName": "positiveIntValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64VvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16positiveIntValues6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPositiveIntValue", + "printedName": "hasPositiveIntValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasPositiveIntValueSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasPositiveIntValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasPositiveIntValueSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasPositiveIntValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPositiveIntValue", + "printedName": "clearPositiveIntValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV21clearPositiveIntValueyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV21clearPositiveIntValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "negativeIntValue", + "printedName": "negativeIntValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64Vvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64Vvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64Vvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64VvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16negativeIntValues5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasNegativeIntValue", + "printedName": "hasNegativeIntValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasNegativeIntValueSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasNegativeIntValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasNegativeIntValueSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19hasNegativeIntValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearNegativeIntValue", + "printedName": "clearNegativeIntValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV21clearNegativeIntValueyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV21clearNegativeIntValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "doubleValue", + "printedName": "doubleValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11doubleValueSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasDoubleValue", + "printedName": "hasDoubleValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasDoubleValueSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasDoubleValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasDoubleValueSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasDoubleValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearDoubleValue", + "printedName": "clearDoubleValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16clearDoubleValueyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16clearDoubleValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV11stringValue10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasStringValue", + "printedName": "hasStringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasStringValueSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasStringValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasStringValueSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14hasStringValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearStringValue", + "printedName": "clearStringValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16clearStringValueyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16clearStringValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "aggregateValue", + "printedName": "aggregateValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV14aggregateValueSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasAggregateValue", + "printedName": "hasAggregateValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17hasAggregateValueSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17hasAggregateValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17hasAggregateValueSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17hasAggregateValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearAggregateValue", + "printedName": "clearAggregateValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19clearAggregateValueyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV19clearAggregateValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NamePart", + "printedName": "NamePart", + "children": [ + { + "kind": "Var", + "name": "namePart", + "printedName": "namePart", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV04nameH0SSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasNamePart", + "printedName": "hasNamePart", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV03hasgH0Sbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV03hasgH0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV03hasgH0Sbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV03hasgH0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearNamePart", + "printedName": "clearNamePart()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV05cleargH0yyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV05cleargH0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "isExtension", + "printedName": "isExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV11isExtensionSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasIsExtension", + "printedName": "hasIsExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV14hasIsExtensionSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV14hasIsExtensionSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV14hasIsExtensionSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV14hasIsExtensionSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearIsExtension", + "printedName": "clearIsExtension()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV16clearIsExtensionyyF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV16clearIsExtensionyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NamePart", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartVAEycfc", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV012protoMessageG0SSvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV012protoMessageG0SSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV012protoMessageG0SSvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV012protoMessageG0SSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV17_protobuf_nameMapAA01_gK0VvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV17_protobuf_nameMapAA01_gK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV17_protobuf_nameMapAA01_gK0VvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV17_protobuf_nameMapAA01_gK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "NamePart", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV" + }, + { + "kind": "TypeNominal", + "name": "NamePart", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8NamePartV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionVACycfc", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UninterpretedOption", + "printedName": "VideoSDKRTC.Google_Protobuf_UninterpretedOption", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV", + "mangledName": "$s11VideoSDKRTC35Google_Protobuf_UninterpretedOptionV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FeatureSet", + "printedName": "Google_Protobuf_FeatureSet", + "children": [ + { + "kind": "Var", + "name": "fieldPresence", + "printedName": "fieldPresence", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0Ovp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0Ovg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0Ovs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0OvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13fieldPresenceAC05FieldH0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasFieldPresence", + "printedName": "hasFieldPresence", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV16hasFieldPresenceSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV16hasFieldPresenceSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV16hasFieldPresenceSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV16hasFieldPresenceSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearFieldPresence", + "printedName": "clearFieldPresence()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV18clearFieldPresenceyyF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV18clearFieldPresenceyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "enumType", + "printedName": "enumType", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0Ovp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0Ovg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0Ovs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0OvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8enumTypeAC04EnumH0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasEnumType", + "printedName": "hasEnumType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV11hasEnumTypeSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV11hasEnumTypeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV11hasEnumTypeSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV11hasEnumTypeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearEnumType", + "printedName": "clearEnumType()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13clearEnumTypeyyF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13clearEnumTypeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "repeatedFieldEncoding", + "printedName": "repeatedFieldEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0Ovp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0Ovg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0Ovs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0OvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21repeatedFieldEncodingAC08RepeatedhI0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasRepeatedFieldEncoding", + "printedName": "hasRepeatedFieldEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasRepeatedFieldEncodingSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasRepeatedFieldEncodingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasRepeatedFieldEncodingSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasRepeatedFieldEncodingSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearRepeatedFieldEncoding", + "printedName": "clearRepeatedFieldEncoding()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV26clearRepeatedFieldEncodingyyF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV26clearRepeatedFieldEncodingyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "stringFieldValidation", + "printedName": "stringFieldValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0Ovp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0Ovg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0Ovs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0OvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21stringFieldValidationAC06StringhI0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasStringFieldValidation", + "printedName": "hasStringFieldValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasStringFieldValidationSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasStringFieldValidationSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasStringFieldValidationSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV24hasStringFieldValidationSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearStringFieldValidation", + "printedName": "clearStringFieldValidation()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV26clearStringFieldValidationyyF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV26clearStringFieldValidationyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "messageEncoding", + "printedName": "messageEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0Ovp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0Ovg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0Ovs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0OvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15messageEncodingAC07MessageH0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMessageEncoding", + "printedName": "hasMessageEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV18hasMessageEncodingSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV18hasMessageEncodingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV18hasMessageEncodingSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV18hasMessageEncodingSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearMessageEncoding", + "printedName": "clearMessageEncoding()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV20clearMessageEncodingyyF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV20clearMessageEncodingyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "jsonFormat", + "printedName": "jsonFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0Ovp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0Ovg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0Ovs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0OvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10jsonFormatAC04JsonH0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasJsonFormat", + "printedName": "hasJsonFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13hasJsonFormatSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13hasJsonFormatSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13hasJsonFormatSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13hasJsonFormatSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearJsonFormat", + "printedName": "clearJsonFormat()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15clearJsonFormatyyF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15clearJsonFormatyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "rawFeatures", + "printedName": "rawFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV11rawFeaturesACvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasRawFeatures", + "printedName": "hasRawFeatures", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV14hasRawFeaturesSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV14hasRawFeaturesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV14hasRawFeaturesSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV14hasRawFeaturesSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearRawFeatures", + "printedName": "clearRawFeatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV16clearRawFeaturesyyF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV16clearRawFeaturesyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FieldPresence", + "printedName": "FieldPresence", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO7unknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "explicit", + "printedName": "explicit", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8explicityA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8explicityA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "implicit", + "printedName": "implicit", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8implicityA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8implicityA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "legacyRequired", + "printedName": "legacyRequired", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO14legacyRequiredyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO14legacyRequiredyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceOAEycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence?", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence]", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence]", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence]", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPresence", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13FieldPresenceO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "EnumType", + "printedName": "EnumType", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO7unknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "open", + "printedName": "open", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO4openyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO4openyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO6closedyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO6closedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeOAEycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType?", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType]", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType]", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType]", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumType", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8EnumTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RepeatedFieldEncoding", + "printedName": "RepeatedFieldEncoding", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO7unknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "packed", + "printedName": "packed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO6packedyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO6packedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "expanded", + "printedName": "expanded", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8expandedyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8expandedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingOAEycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding?", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding]", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding]", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding]", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedFieldEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21RepeatedFieldEncodingO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StringFieldValidation", + "printedName": "StringFieldValidation", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO7unknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "mandatory", + "printedName": "mandatory", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO9mandatoryyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO9mandatoryyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hint", + "printedName": "hint", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO4hintyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO4hintyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO4noneyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO4noneyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationOAEycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation?", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation]", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation]", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation]", + "children": [ + { + "kind": "TypeNominal", + "name": "StringFieldValidation", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV21StringFieldValidationO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MessageEncoding", + "printedName": "MessageEncoding", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO7unknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "lengthPrefixed", + "printedName": "lengthPrefixed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO14lengthPrefixedyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO14lengthPrefixedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "delimited", + "printedName": "delimited", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO9delimitedyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO9delimitedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingOAEycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding]", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding]", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding]", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageEncoding", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV15MessageEncodingO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "JsonFormat", + "printedName": "JsonFormat", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO7unknownyA2EmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "allow", + "printedName": "allow", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO5allowyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO5allowyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "legacyBestEffort", + "printedName": "legacyBestEffort", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat.Type) -> VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO16legacyBestEffortyA2EmF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO16legacyBestEffortyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatOAEycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat?", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat]", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat]", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat]", + "children": [ + { + "kind": "TypeNominal", + "name": "JsonFormat", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV10JsonFormatO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetVACycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0Vvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0Vvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0Vvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0VvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV30_protobuf_extensionFieldValuesAA09Extensioni5ValueF0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FeatureSet", + "printedName": "VideoSDKRTC.Google_Protobuf_FeatureSet", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FeatureSetV", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FeatureSetV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_SourceCodeInfo", + "printedName": "Google_Protobuf_SourceCodeInfo", + "children": [ + { + "kind": "Var", + "name": "location", + "printedName": "location", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location]", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location]", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location]", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8locationSayAC8LocationVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Location", + "printedName": "Location", + "children": [ + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4pathSays5Int32VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "span", + "printedName": "span", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV4spanSays5Int32VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "leadingComments", + "printedName": "leadingComments", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV15leadingCommentsSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasLeadingComments", + "printedName": "hasLeadingComments", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV18hasLeadingCommentsSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV18hasLeadingCommentsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV18hasLeadingCommentsSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV18hasLeadingCommentsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearLeadingComments", + "printedName": "clearLeadingComments()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV20clearLeadingCommentsyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV20clearLeadingCommentsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "trailingComments", + "printedName": "trailingComments", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16trailingCommentsSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasTrailingComments", + "printedName": "hasTrailingComments", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV19hasTrailingCommentsSbvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV19hasTrailingCommentsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV19hasTrailingCommentsSbvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV19hasTrailingCommentsSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearTrailingComments", + "printedName": "clearTrailingComments()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV21clearTrailingCommentsyyF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV21clearTrailingCommentsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "leadingDetachedComments", + "printedName": "leadingDetachedComments", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV23leadingDetachedCommentsSaySSGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationVAEycfc", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV" + }, + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8LocationV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoVACycfc", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceCodeInfo", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV", + "mangledName": "$s11VideoSDKRTC30Google_Protobuf_SourceCodeInfoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_GeneratedCodeInfo", + "printedName": "Google_Protobuf_GeneratedCodeInfo", + "children": [ + { + "kind": "Var", + "name": "annotation", + "printedName": "annotation", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation]", + "children": [ + { + "kind": "TypeNominal", + "name": "Annotation", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation]", + "children": [ + { + "kind": "TypeNominal", + "name": "Annotation", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation]", + "children": [ + { + "kind": "TypeNominal", + "name": "Annotation", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10annotationSayAC10AnnotationVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Annotation", + "printedName": "Annotation", + "children": [ + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV4pathSays5Int32VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sourceFile", + "printedName": "sourceFile", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10sourceFileSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSourceFile", + "printedName": "hasSourceFile", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13hasSourceFileSbvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13hasSourceFileSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13hasSourceFileSbvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13hasSourceFileSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSourceFile", + "printedName": "clearSourceFile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV15clearSourceFileyyF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV15clearSourceFileyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "begin", + "printedName": "begin", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32Vvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32Vvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32Vvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32VvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV5begins5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasBegin", + "printedName": "hasBegin", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8hasBeginSbvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8hasBeginSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8hasBeginSbvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8hasBeginSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearBegin", + "printedName": "clearBegin()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10clearBeginyyF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV10clearBeginyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "end", + "printedName": "end", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32Vvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32Vvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32Vvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32VvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV3ends5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasEnd", + "printedName": "hasEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV6hasEndSbvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV6hasEndSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV6hasEndSbvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV6hasEndSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearEnd", + "printedName": "clearEnd()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8clearEndyyF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8clearEndyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "semantic", + "printedName": "semantic", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8semanticAE8SemanticOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSemantic", + "printedName": "hasSemantic", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV11hasSemanticSbvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV11hasSemanticSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV11hasSemanticSbvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV11hasSemanticSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSemantic", + "printedName": "clearSemantic()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13clearSemanticyyF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13clearSemanticyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Semantic", + "printedName": "Semantic", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic.Type) -> VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO4noneyA2GmF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO4noneyA2GmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "set", + "printedName": "set", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic.Type) -> VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO3setyA2GmF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO3setyA2GmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "alias", + "printedName": "alias", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic.Type) -> VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO5aliasyA2GmF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO5aliasyA2GmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticOAGycfc", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticOAGycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic?", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8rawValueAGSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8rawValueAGSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic]", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8allCasesSayAGGvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8allCasesSayAGGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic]", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8allCasesSayAGGvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO8allCasesSayAGGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic]", + "children": [ + { + "kind": "TypeNominal", + "name": "Semantic", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8SemanticO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Annotation", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationVAEycfc", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Annotation", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV" + }, + { + "kind": "TypeNominal", + "name": "Annotation", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV10AnnotationV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_GeneratedCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoVACycfc", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_GeneratedCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_GeneratedCodeInfo", + "printedName": "VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV", + "mangledName": "$s11VideoSDKRTC33Google_Protobuf_GeneratedCodeInfoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleCounter", + "printedName": "DoubleCounter", + "children": [ + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13DoubleCounterP3add5valueySd_tF", + "mangledName": "$s11VideoSDKRTC13DoubleCounterP3add5valueySd_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13DoubleCounterP3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC13DoubleCounterP3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13DoubleCounterP", + "mangledName": "$s11VideoSDKRTC13DoubleCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleCounterBuilder", + "printedName": "DoubleCounterBuilder", + "children": [ + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleCounter", + "printedName": "VideoSDKRTC.DoubleCounter", + "usr": "s:11VideoSDKRTC13DoubleCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20DoubleCounterBuilderP5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC20DoubleCounterBuilderP5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableDoubleCounter", + "printedName": "VideoSDKRTC.ObservableDoubleCounter", + "usr": "s:11VideoSDKRTC23ObservableDoubleCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableDoubleMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableDoubleMeasurement", + "printedName": "VideoSDKRTC.ObservableDoubleMeasurement", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20DoubleCounterBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC20DoubleCounterBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC20DoubleCounterBuilderP", + "mangledName": "$s11VideoSDKRTC20DoubleCounterBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleCounterMeterBuilderSdk", + "printedName": "DoubleCounterMeterBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleCounter", + "printedName": "VideoSDKRTC.DoubleCounter", + "usr": "s:11VideoSDKRTC13DoubleCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28DoubleCounterMeterBuilderSdkC5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC28DoubleCounterMeterBuilderSdkC5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableDoubleCounter", + "printedName": "VideoSDKRTC.ObservableDoubleCounter", + "usr": "s:11VideoSDKRTC23ObservableDoubleCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableDoubleMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableDoubleMeasurement", + "printedName": "VideoSDKRTC.ObservableDoubleMeasurement", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28DoubleCounterMeterBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0kC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC28DoubleCounterMeterBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0kC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC28DoubleCounterMeterBuilderSdkC", + "mangledName": "$s11VideoSDKRTC28DoubleCounterMeterBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleCounterBuilder", + "printedName": "DoubleCounterBuilder", + "usr": "s:11VideoSDKRTC20DoubleCounterBuilderP", + "mangledName": "$s11VideoSDKRTC20DoubleCounterBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HistogramAggregatorError", + "printedName": "HistogramAggregatorError", + "children": [ + { + "kind": "Var", + "name": "unsupportedOperation", + "printedName": "unsupportedOperation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.HistogramAggregatorError.Type) -> (Swift.String) -> VideoSDKRTC.HistogramAggregatorError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideoSDKRTC.HistogramAggregatorError", + "children": [ + { + "kind": "TypeNominal", + "name": "HistogramAggregatorError", + "printedName": "VideoSDKRTC.HistogramAggregatorError", + "usr": "s:11VideoSDKRTC24HistogramAggregatorErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.HistogramAggregatorError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HistogramAggregatorError", + "printedName": "VideoSDKRTC.HistogramAggregatorError", + "usr": "s:11VideoSDKRTC24HistogramAggregatorErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC24HistogramAggregatorErrorO20unsupportedOperationyACSScACmF", + "mangledName": "$s11VideoSDKRTC24HistogramAggregatorErrorO20unsupportedOperationyACSScACmF", + "moduleName": "VideoSDKRTC" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC24HistogramAggregatorErrorO", + "mangledName": "$s11VideoSDKRTC24HistogramAggregatorErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleExplicitBucketHistogramAggregator", + "printedName": "DoubleExplicitBucketHistogramAggregator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(boundaries:reservoirSupplier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleExplicitBucketHistogramAggregator", + "printedName": "VideoSDKRTC.DoubleExplicitBucketHistogramAggregator", + "usr": "s:11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> VideoSDKRTC.ExemplarReservoir", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarReservoir", + "printedName": "VideoSDKRTC.ExemplarReservoir", + "usr": "s:11VideoSDKRTC17ExemplarReservoirC" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC10boundaries17reservoirSupplierACSaySdG_AA17ExemplarReservoirCyctcfc", + "mangledName": "$s11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC10boundaries17reservoirSupplierACSaySdG_AA17ExemplarReservoirCyctcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "diff", + "printedName": "diff(previousCumulative:currentCumulative:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC4diff18previousCumulative07currentJ0AA9PointDataCAH_AHtKF", + "mangledName": "$s11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC4diff18previousCumulative07currentJ0AA9PointDataCAH_AHtKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toPoint", + "printedName": "toPoint(measurement:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC7toPoint11measurementAA0I4DataCAA11MeasurementV_tKF", + "mangledName": "$s11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC7toPoint11measurementAA0I4DataCAA11MeasurementV_tKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createHandle", + "printedName": "createHandle()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregatorHandle", + "printedName": "VideoSDKRTC.AggregatorHandle", + "usr": "s:11VideoSDKRTC16AggregatorHandleC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC12createHandleAA0gI0CyF", + "mangledName": "$s11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC12createHandleAA0gI0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData(resource:scope:descriptor:points:temporality:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StableiJ0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0I10DescriptorVSayAA05PointJ0CGAA22AggregationTemporalityOtF", + "mangledName": "$s11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StableiJ0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0I10DescriptorVSayAA05PointJ0CGAA22AggregationTemporalityOtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC", + "mangledName": "$s11VideoSDKRTC39DoubleExplicitBucketHistogramAggregatorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "StableAggregator", + "printedName": "StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleGaugeBuilder", + "printedName": "DoubleGaugeBuilder", + "children": [ + { + "kind": "Function", + "name": "ofLongs", + "printedName": "ofLongs()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongGaugeBuilder", + "printedName": "VideoSDKRTC.LongGaugeBuilder", + "usr": "s:11VideoSDKRTC16LongGaugeBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DoubleGaugeBuilderP7ofLongsAA04LongdE0_pyF", + "mangledName": "$s11VideoSDKRTC18DoubleGaugeBuilderP7ofLongsAA04LongdE0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleGaugeBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableDoubleGauge", + "printedName": "VideoSDKRTC.ObservableDoubleGauge", + "usr": "s:11VideoSDKRTC21ObservableDoubleGaugeP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableDoubleMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableDoubleMeasurement", + "printedName": "VideoSDKRTC.ObservableDoubleMeasurement", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18DoubleGaugeBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC18DoubleGaugeBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleGaugeBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC18DoubleGaugeBuilderP", + "mangledName": "$s11VideoSDKRTC18DoubleGaugeBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleGaugeBuilderSdk", + "printedName": "DoubleGaugeBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "ofLongs", + "printedName": "ofLongs()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongGaugeBuilder", + "printedName": "VideoSDKRTC.LongGaugeBuilder", + "usr": "s:11VideoSDKRTC16LongGaugeBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DoubleGaugeBuilderSdkC7ofLongsAA04LongdE0_pyF", + "mangledName": "$s11VideoSDKRTC21DoubleGaugeBuilderSdkC7ofLongsAA04LongdE0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableDoubleGauge", + "printedName": "VideoSDKRTC.ObservableDoubleGauge", + "usr": "s:11VideoSDKRTC21ObservableDoubleGaugeP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableDoubleMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableDoubleMeasurement", + "printedName": "VideoSDKRTC.ObservableDoubleMeasurement", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21DoubleGaugeBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0jC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC21DoubleGaugeBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0jC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21DoubleGaugeBuilderSdkC", + "mangledName": "$s11VideoSDKRTC21DoubleGaugeBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleGaugeBuilder", + "printedName": "DoubleGaugeBuilder", + "usr": "s:11VideoSDKRTC18DoubleGaugeBuilderP", + "mangledName": "$s11VideoSDKRTC18DoubleGaugeBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleHistogram", + "printedName": "DoubleHistogram", + "children": [ + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15DoubleHistogramP6record5valueySd_tF", + "mangledName": "$s11VideoSDKRTC15DoubleHistogramP6record5valueySd_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleHistogram>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15DoubleHistogramP6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC15DoubleHistogramP6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleHistogram>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC15DoubleHistogramP", + "mangledName": "$s11VideoSDKRTC15DoubleHistogramP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleHistogramBuilder", + "printedName": "DoubleHistogramBuilder", + "children": [ + { + "kind": "Function", + "name": "ofLongs", + "printedName": "ofLongs()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongHistogramBuilder", + "printedName": "VideoSDKRTC.LongHistogramBuilder", + "usr": "s:11VideoSDKRTC20LongHistogramBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22DoubleHistogramBuilderP7ofLongsAA04LongdE0_pyF", + "mangledName": "$s11VideoSDKRTC22DoubleHistogramBuilderP7ofLongsAA04LongdE0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleHistogramBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleHistogram", + "printedName": "VideoSDKRTC.DoubleHistogram", + "usr": "s:11VideoSDKRTC15DoubleHistogramP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22DoubleHistogramBuilderP5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC22DoubleHistogramBuilderP5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleHistogramBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC22DoubleHistogramBuilderP", + "mangledName": "$s11VideoSDKRTC22DoubleHistogramBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleHistogramMeterBuilderSdk", + "printedName": "DoubleHistogramMeterBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "ofLongs", + "printedName": "ofLongs()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongHistogramBuilder", + "printedName": "VideoSDKRTC.LongHistogramBuilder", + "usr": "s:11VideoSDKRTC20LongHistogramBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30DoubleHistogramMeterBuilderSdkC7ofLongsAA04LongdF0_pyF", + "mangledName": "$s11VideoSDKRTC30DoubleHistogramMeterBuilderSdkC7ofLongsAA04LongdF0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleHistogram", + "printedName": "VideoSDKRTC.DoubleHistogram", + "usr": "s:11VideoSDKRTC15DoubleHistogramP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30DoubleHistogramMeterBuilderSdkC5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC30DoubleHistogramMeterBuilderSdkC5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC30DoubleHistogramMeterBuilderSdkC", + "mangledName": "$s11VideoSDKRTC30DoubleHistogramMeterBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleHistogramBuilder", + "printedName": "DoubleHistogramBuilder", + "usr": "s:11VideoSDKRTC22DoubleHistogramBuilderP", + "mangledName": "$s11VideoSDKRTC22DoubleHistogramBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleHistogramMeterSdk", + "printedName": "DoubleHistogramMeterSdk", + "children": [ + { + "kind": "Var", + "name": "instrumentDescriptor", + "printedName": "instrumentDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvp", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvg", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvs", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0VvM", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "storage", + "printedName": "storage", + "children": [ + { + "kind": "TypeNominal", + "name": "WritableMetricStorage", + "printedName": "VideoSDKRTC.WritableMetricStorage", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvp", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "WritableMetricStorage", + "printedName": "VideoSDKRTC.WritableMetricStorage", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvg", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WritableMetricStorage", + "printedName": "VideoSDKRTC.WritableMetricStorage", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvs", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvM", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC7storageAA21WritableMetricStorage_pvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC6record5valueySd_tF", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC6record5valueySd_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC23DoubleHistogramMeterSdkC", + "mangledName": "$s11VideoSDKRTC23DoubleHistogramMeterSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleHistogram", + "printedName": "DoubleHistogram", + "usr": "s:11VideoSDKRTC15DoubleHistogramP", + "mangledName": "$s11VideoSDKRTC15DoubleHistogramP" + }, + { + "kind": "Conformance", + "name": "Instrument", + "printedName": "Instrument", + "usr": "s:11VideoSDKRTC10InstrumentP", + "mangledName": "$s11VideoSDKRTC10InstrumentP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleLastValueAggregator", + "printedName": "DoubleLastValueAggregator", + "children": [ + { + "kind": "Function", + "name": "diff", + "printedName": "diff(previousCumulative:currentCumulative:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25DoubleLastValueAggregatorC4diff18previousCumulative07currentI0AA9PointDataCAH_AHtKF", + "mangledName": "$s11VideoSDKRTC25DoubleLastValueAggregatorC4diff18previousCumulative07currentI0AA9PointDataCAH_AHtKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toPoint", + "printedName": "toPoint(measurement:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25DoubleLastValueAggregatorC7toPoint11measurementAA0H4DataCAA11MeasurementV_tKF", + "mangledName": "$s11VideoSDKRTC25DoubleLastValueAggregatorC7toPoint11measurementAA0H4DataCAA11MeasurementV_tKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createHandle", + "printedName": "createHandle()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregatorHandle", + "printedName": "VideoSDKRTC.AggregatorHandle", + "usr": "s:11VideoSDKRTC16AggregatorHandleC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25DoubleLastValueAggregatorC12createHandleAA0fH0CyF", + "mangledName": "$s11VideoSDKRTC25DoubleLastValueAggregatorC12createHandleAA0fH0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData(resource:scope:descriptor:points:temporality:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25DoubleLastValueAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablehI0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0H10DescriptorVSayAA05PointI0CGAA22AggregationTemporalityOtF", + "mangledName": "$s11VideoSDKRTC25DoubleLastValueAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablehI0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0H10DescriptorVSayAA05PointI0CGAA22AggregationTemporalityOtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC25DoubleLastValueAggregatorC", + "mangledName": "$s11VideoSDKRTC25DoubleLastValueAggregatorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "StableAggregator", + "printedName": "StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleObserverMetric", + "printedName": "DoubleObserverMetric", + "children": [ + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP7observe5value8labelsetySd_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC20DoubleObserverMetricP7observe5value8labelsetySd_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleObserverMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP7observe5value6labelsySd_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC20DoubleObserverMetricP7observe5value6labelsySd_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleObserverMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP", + "mangledName": "$s11VideoSDKRTC20DoubleObserverMetricP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "NoopDoubleObserverMetric", + "printedName": "NoopDoubleObserverMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopDoubleObserverMetric", + "printedName": "VideoSDKRTC.NoopDoubleObserverMetric", + "usr": "s:11VideoSDKRTC24NoopDoubleObserverMetricV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24NoopDoubleObserverMetricVACycfc", + "mangledName": "$s11VideoSDKRTC24NoopDoubleObserverMetricVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24NoopDoubleObserverMetricV7observe5value8labelsetySd_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC24NoopDoubleObserverMetricV7observe5value8labelsetySd_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24NoopDoubleObserverMetricV7observe5value6labelsySd_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC24NoopDoubleObserverMetricV7observe5value6labelsySd_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC24NoopDoubleObserverMetricV", + "mangledName": "$s11VideoSDKRTC24NoopDoubleObserverMetricV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleObserverMetric", + "printedName": "DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP", + "mangledName": "$s11VideoSDKRTC20DoubleObserverMetricP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoublePointData", + "printedName": "DoublePointData", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15DoublePointDataC5valueSdvp", + "mangledName": "$s11VideoSDKRTC15DoublePointDataC5valueSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15DoublePointDataC5valueSdvg", + "mangledName": "$s11VideoSDKRTC15DoublePointDataC5valueSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15DoublePointDataC5valueSdvs", + "mangledName": "$s11VideoSDKRTC15DoublePointDataC5valueSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15DoublePointDataC5valueSdvM", + "mangledName": "$s11VideoSDKRTC15DoublePointDataC5valueSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC15DoublePointDataC", + "mangledName": "$s11VideoSDKRTC15DoublePointDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC9PointDataC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.PointData" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleSumAggregator", + "printedName": "DoubleSumAggregator", + "children": [ + { + "kind": "Function", + "name": "diff", + "printedName": "diff(previousCumulative:currentCumulative:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19DoubleSumAggregatorC4diff18previousCumulative07currentH0AA9PointDataCAH_AHtKF", + "mangledName": "$s11VideoSDKRTC19DoubleSumAggregatorC4diff18previousCumulative07currentH0AA9PointDataCAH_AHtKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toPoint", + "printedName": "toPoint(measurement:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19DoubleSumAggregatorC7toPoint11measurementAA0G4DataCAA11MeasurementV_tKF", + "mangledName": "$s11VideoSDKRTC19DoubleSumAggregatorC7toPoint11measurementAA0G4DataCAA11MeasurementV_tKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createHandle", + "printedName": "createHandle()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregatorHandle", + "printedName": "VideoSDKRTC.AggregatorHandle", + "usr": "s:11VideoSDKRTC16AggregatorHandleC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19DoubleSumAggregatorC12createHandleAA0eG0CyF", + "mangledName": "$s11VideoSDKRTC19DoubleSumAggregatorC12createHandleAA0eG0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData(resource:scope:descriptor:points:temporality:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19DoubleSumAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablegH0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0G10DescriptorVSayAA05PointH0CGAA22AggregationTemporalityOtF", + "mangledName": "$s11VideoSDKRTC19DoubleSumAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablegH0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0G10DescriptorVSayAA05PointH0CGAA22AggregationTemporalityOtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19DoubleSumAggregatorC", + "mangledName": "$s11VideoSDKRTC19DoubleSumAggregatorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC13SumAggregatorC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.SumAggregator" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "StableAggregator", + "printedName": "StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleUpDownCounter", + "printedName": "DoubleUpDownCounter", + "children": [ + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19DoubleUpDownCounterP3add5valueySd_tF", + "mangledName": "$s11VideoSDKRTC19DoubleUpDownCounterP3add5valueySd_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleUpDownCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19DoubleUpDownCounterP3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC19DoubleUpDownCounterP3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleUpDownCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC19DoubleUpDownCounterP", + "mangledName": "$s11VideoSDKRTC19DoubleUpDownCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleUpDownCounterBuilder", + "printedName": "DoubleUpDownCounterBuilder", + "children": [ + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleUpDownCounter", + "printedName": "VideoSDKRTC.DoubleUpDownCounter", + "usr": "s:11VideoSDKRTC19DoubleUpDownCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26DoubleUpDownCounterBuilderP5buildAA0cdeF0_pyF", + "mangledName": "$s11VideoSDKRTC26DoubleUpDownCounterBuilderP5buildAA0cdeF0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleUpDownCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableDoubleUpDownCounter", + "printedName": "VideoSDKRTC.ObservableDoubleUpDownCounter", + "usr": "s:11VideoSDKRTC29ObservableDoubleUpDownCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableDoubleMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableDoubleMeasurement", + "printedName": "VideoSDKRTC.ObservableDoubleMeasurement", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26DoubleUpDownCounterBuilderP17buildWithCallbackyAA010ObservablecdeF0_pyAA0kC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC26DoubleUpDownCounterBuilderP17buildWithCallbackyAA010ObservablecdeF0_pyAA0kC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.DoubleUpDownCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC26DoubleUpDownCounterBuilderP", + "mangledName": "$s11VideoSDKRTC26DoubleUpDownCounterBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleUpDownCounterBuilderSdk", + "printedName": "DoubleUpDownCounterBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleUpDownCounter", + "printedName": "VideoSDKRTC.DoubleUpDownCounter", + "usr": "s:11VideoSDKRTC19DoubleUpDownCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29DoubleUpDownCounterBuilderSdkC5buildAA0cdeF0_pyF", + "mangledName": "$s11VideoSDKRTC29DoubleUpDownCounterBuilderSdkC5buildAA0cdeF0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableDoubleUpDownCounter", + "printedName": "VideoSDKRTC.ObservableDoubleUpDownCounter", + "usr": "s:11VideoSDKRTC29ObservableDoubleUpDownCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableDoubleMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableDoubleMeasurement", + "printedName": "VideoSDKRTC.ObservableDoubleMeasurement", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29DoubleUpDownCounterBuilderSdkC17buildWithCallbackyAA010ObservablecdeF0_pyAA0lC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC29DoubleUpDownCounterBuilderSdkC17buildWithCallbackyAA010ObservablecdeF0_pyAA0lC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC29DoubleUpDownCounterBuilderSdkC", + "mangledName": "$s11VideoSDKRTC29DoubleUpDownCounterBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleUpDownCounterBuilder", + "printedName": "DoubleUpDownCounterBuilder", + "usr": "s:11VideoSDKRTC26DoubleUpDownCounterBuilderP", + "mangledName": "$s11VideoSDKRTC26DoubleUpDownCounterBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleUpDownCounterSdk", + "printedName": "DoubleUpDownCounterSdk", + "children": [ + { + "kind": "Var", + "name": "instrumentDescriptor", + "printedName": "instrumentDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22DoubleUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvp", + "mangledName": "$s11VideoSDKRTC22DoubleUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22DoubleUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvg", + "mangledName": "$s11VideoSDKRTC22DoubleUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22DoubleUpDownCounterSdkC3add5valueySd_tF", + "mangledName": "$s11VideoSDKRTC22DoubleUpDownCounterSdkC3add5valueySd_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22DoubleUpDownCounterSdkC3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC22DoubleUpDownCounterSdkC3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC22DoubleUpDownCounterSdkC", + "mangledName": "$s11VideoSDKRTC22DoubleUpDownCounterSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleUpDownCounter", + "printedName": "DoubleUpDownCounter", + "usr": "s:11VideoSDKRTC19DoubleUpDownCounterP", + "mangledName": "$s11VideoSDKRTC19DoubleUpDownCounterP" + }, + { + "kind": "Conformance", + "name": "Instrument", + "printedName": "Instrument", + "usr": "s:11VideoSDKRTC10InstrumentP", + "mangledName": "$s11VideoSDKRTC10InstrumentP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DropAggregation", + "printedName": "DropAggregation", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "DropAggregation", + "printedName": "VideoSDKRTC.DropAggregation", + "usr": "s:11VideoSDKRTC15DropAggregationC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15DropAggregationC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC15DropAggregationC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DropAggregation", + "printedName": "VideoSDKRTC.DropAggregation", + "usr": "s:11VideoSDKRTC15DropAggregationC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15DropAggregationC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC15DropAggregationC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createAggregator", + "printedName": "createAggregator(descriptor:exemplarFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableAggregator", + "printedName": "VideoSDKRTC.StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15DropAggregationC16createAggregator10descriptor14exemplarFilterAA06StableF0_pAA20InstrumentDescriptorV_AA08ExemplarI0_ptF", + "mangledName": "$s11VideoSDKRTC15DropAggregationC16createAggregator10descriptor14exemplarFilterAA06StableF0_pAA20InstrumentDescriptorV_AA08ExemplarI0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isCompatible", + "printedName": "isCompatible(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15DropAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "mangledName": "$s11VideoSDKRTC15DropAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC15DropAggregationC", + "mangledName": "$s11VideoSDKRTC15DropAggregationC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Aggregation", + "printedName": "Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP", + "mangledName": "$s11VideoSDKRTC11AggregationP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DropAggregator", + "printedName": "DropAggregator", + "children": [ + { + "kind": "Var", + "name": "POINT_DATA", + "printedName": "POINT_DATA", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14DropAggregatorC10POINT_DATAAA9PointDataCvpZ", + "mangledName": "$s11VideoSDKRTC14DropAggregatorC10POINT_DATAAA9PointDataCvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14DropAggregatorC10POINT_DATAAA9PointDataCvgZ", + "mangledName": "$s11VideoSDKRTC14DropAggregatorC10POINT_DATAAA9PointDataCvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createHandle", + "printedName": "createHandle()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregatorHandle", + "printedName": "VideoSDKRTC.AggregatorHandle", + "usr": "s:11VideoSDKRTC16AggregatorHandleC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DropAggregatorC12createHandleAA0dF0CyF", + "mangledName": "$s11VideoSDKRTC14DropAggregatorC12createHandleAA0dF0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "diff", + "printedName": "diff(previousCumulative:currentCumulative:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DropAggregatorC4diff18previousCumulative07currentG0AA9PointDataCAH_AHtF", + "mangledName": "$s11VideoSDKRTC14DropAggregatorC4diff18previousCumulative07currentG0AA9PointDataCAH_AHtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toPoint", + "printedName": "toPoint(measurement:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DropAggregatorC7toPoint11measurementAA0F4DataCAA11MeasurementV_tF", + "mangledName": "$s11VideoSDKRTC14DropAggregatorC7toPoint11measurementAA0F4DataCAA11MeasurementV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData(resource:scope:descriptor:points:temporality:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14DropAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablefG0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0F10DescriptorVSayAA05PointG0CGAA22AggregationTemporalityOtF", + "mangledName": "$s11VideoSDKRTC14DropAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablefG0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0F10DescriptorVSayAA05PointG0CGAA22AggregationTemporalityOtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC14DropAggregatorC", + "mangledName": "$s11VideoSDKRTC14DropAggregatorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "StableAggregator", + "printedName": "StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Duration", + "printedName": "Google_Protobuf_Duration", + "children": [ + { + "kind": "Var", + "name": "seconds", + "printedName": "seconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64Vvp", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64Vvg", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64Vvs", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64VvM", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV7secondss5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nanos", + "printedName": "nanos", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32Vvp", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32Vvg", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32Vvs", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32VvM", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV5nanoss5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationVACycfc", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(seconds:nanos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "hasDefaultArg": true, + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "hasDefaultArg": true, + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV7seconds5nanosACs5Int64V_s5Int32Vtcfc", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV7seconds5nanosACs5Int64V_s5Int32Vtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(floatLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV12floatLiteralACSd_tcfc", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV12floatLiteralACSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(timeInterval:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV12timeIntervalACSd_tcfc", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV12timeIntervalACSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "timeInterval", + "printedName": "timeInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV12timeIntervalSdvp", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV12timeIntervalSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV12timeIntervalSdvg", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV12timeIntervalSdvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV", + "mangledName": "$s11VideoSDKRTC24Google_Protobuf_DurationV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Empty", + "printedName": "Google_Protobuf_Empty", + "children": [ + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Empty", + "printedName": "VideoSDKRTC.Google_Protobuf_Empty", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyVACycfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Empty", + "printedName": "VideoSDKRTC.Google_Protobuf_Empty", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Empty", + "printedName": "VideoSDKRTC.Google_Protobuf_Empty", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC21Google_Protobuf_EmptyV", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_EmptyV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EmptyMetricStorage", + "printedName": "EmptyMetricStorage", + "children": [ + { + "kind": "Function", + "name": "recordLong", + "printedName": "recordLong(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordDouble", + "printedName": "recordDouble(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "EmptyMetricStorage", + "printedName": "VideoSDKRTC.EmptyMetricStorage", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EmptyMetricStorage", + "printedName": "VideoSDKRTC.EmptyMetricStorage", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EmptyMetricStorage", + "printedName": "VideoSDKRTC.EmptyMetricStorage", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC8instanceACvsZ", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC8instanceACvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC8instanceACvMZ", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC8instanceACvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "metricDescriptor", + "printedName": "metricDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0Vvp", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0Vvg", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0Vvs", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0VvM", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC16metricDescriptorAA0dG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "collect", + "printedName": "collect(resource:scope:startEpochNanos:epochNanos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC7collect8resource5scope15startEpochNanos05epochK0AA06StableD4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC7collect8resource5scope15startEpochNanos05epochK0AA06StableD4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEmpty", + "printedName": "isEmpty()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC02isC0SbyF", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC02isC0SbyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18EmptyMetricStorageC", + "mangledName": "$s11VideoSDKRTC18EmptyMetricStorageC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "MetricStorage", + "printedName": "MetricStorage", + "usr": "s:11VideoSDKRTC13MetricStorageP", + "mangledName": "$s11VideoSDKRTC13MetricStorageP" + }, + { + "kind": "Conformance", + "name": "WritableMetricStorage", + "printedName": "WritableMetricStorage", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP", + "mangledName": "$s11VideoSDKRTC21WritableMetricStorageP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Entry", + "printedName": "Entry", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC5EntryV3keyAA0C3KeyVvp", + "mangledName": "$s11VideoSDKRTC5EntryV3keyAA0C3KeyVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC5EntryV3keyAA0C3KeyVvg", + "mangledName": "$s11VideoSDKRTC5EntryV3keyAA0C3KeyVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC5EntryV5valueAA0C5ValueVvp", + "mangledName": "$s11VideoSDKRTC5EntryV5valueAA0C5ValueVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC5EntryV5valueAA0C5ValueVvg", + "mangledName": "$s11VideoSDKRTC5EntryV5valueAA0C5ValueVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadata", + "printedName": "metadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC5EntryV8metadataAA0C8MetadataVSgvp", + "mangledName": "$s11VideoSDKRTC5EntryV8metadataAA0C8MetadataVSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC5EntryV8metadataAA0C8MetadataVSgvg", + "mangledName": "$s11VideoSDKRTC5EntryV8metadataAA0C8MetadataVSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(key:value:metadata:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + }, + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC5EntryV3key5value8metadataAcA0C3KeyV_AA0C5ValueVAA0C8MetadataVSgtcfc", + "mangledName": "$s11VideoSDKRTC5EntryV3key5value8metadataAcA0C3KeyV_AA0C5ValueVAA0C8MetadataVSgtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" + }, + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5EntryV1loiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC5EntryV1loiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" + }, + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.Entry", + "usr": "s:11VideoSDKRTC5EntryV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5EntryV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC5EntryV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC5EntryV", + "mangledName": "$s11VideoSDKRTC5EntryV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EntryKey", + "printedName": "EntryKey", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8EntryKeyV4nameSSvp", + "mangledName": "$s11VideoSDKRTC8EntryKeyV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8EntryKeyV4nameSSvg", + "mangledName": "$s11VideoSDKRTC8EntryKeyV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8EntryKeyV4nameACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC8EntryKeyV4nameACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8EntryKeyV1loiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC8EntryKeyV1loiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + }, + { + "kind": "TypeNominal", + "name": "EntryKey", + "printedName": "VideoSDKRTC.EntryKey", + "usr": "s:11VideoSDKRTC8EntryKeyV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8EntryKeyV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC8EntryKeyV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8EntryKeyV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC8EntryKeyV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8EntryKeyV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC8EntryKeyV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8EntryKeyV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC8EntryKeyV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC8EntryKeyV", + "mangledName": "$s11VideoSDKRTC8EntryKeyV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EntryMetadata", + "printedName": "EntryMetadata", + "children": [ + { + "kind": "Var", + "name": "metadata", + "printedName": "metadata", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13EntryMetadataV8metadataSSvp", + "mangledName": "$s11VideoSDKRTC13EntryMetadataV8metadataSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13EntryMetadataV8metadataSSvg", + "mangledName": "$s11VideoSDKRTC13EntryMetadataV8metadataSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13EntryMetadataV8metadataSSvs", + "mangledName": "$s11VideoSDKRTC13EntryMetadataV8metadataSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13EntryMetadataV8metadataSSvM", + "mangledName": "$s11VideoSDKRTC13EntryMetadataV8metadataSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(metadata:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC13EntryMetadataV8metadataACSgSSSg_tcfc", + "mangledName": "$s11VideoSDKRTC13EntryMetadataV8metadataACSgSSSg_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + }, + { + "kind": "TypeNominal", + "name": "EntryMetadata", + "printedName": "VideoSDKRTC.EntryMetadata", + "usr": "s:11VideoSDKRTC13EntryMetadataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13EntryMetadataV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC13EntryMetadataV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13EntryMetadataV", + "mangledName": "$s11VideoSDKRTC13EntryMetadataV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EntryValue", + "printedName": "EntryValue", + "children": [ + { + "kind": "Var", + "name": "string", + "printedName": "string", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10EntryValueV6stringSSvp", + "mangledName": "$s11VideoSDKRTC10EntryValueV6stringSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10EntryValueV6stringSSvg", + "mangledName": "$s11VideoSDKRTC10EntryValueV6stringSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.EntryValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10EntryValueV6stringACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC10EntryValueV6stringACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + }, + { + "kind": "TypeNominal", + "name": "EntryValue", + "printedName": "VideoSDKRTC.EntryValue", + "usr": "s:11VideoSDKRTC10EntryValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10EntryValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC10EntryValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC10EntryValueV", + "mangledName": "$s11VideoSDKRTC10EntryValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Enum", + "printedName": "Enum", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC4EnumPxycfc", + "mangledName": "$s11VideoSDKRTC4EnumPxycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC4EnumP8rawValuexSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC4EnumP8rawValuexSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC4EnumP8rawValueSivp", + "mangledName": "$s11VideoSDKRTC4EnumP8rawValueSivp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4EnumP8rawValueSivg", + "mangledName": "$s11VideoSDKRTC4EnumP8rawValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4EnumPAAE4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC4EnumPAAE4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : Swift.CaseIterable, τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_0 : Swift.Sendable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EnvironmentContextPropagator", + "printedName": "EnvironmentContextPropagator", + "children": [ + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28EnvironmentContextPropagatorV6fieldsShySSGvp", + "mangledName": "$s11VideoSDKRTC28EnvironmentContextPropagatorV6fieldsShySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28EnvironmentContextPropagatorV6fieldsShySSGvg", + "mangledName": "$s11VideoSDKRTC28EnvironmentContextPropagatorV6fieldsShySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "EnvironmentContextPropagator", + "printedName": "VideoSDKRTC.EnvironmentContextPropagator", + "usr": "s:11VideoSDKRTC28EnvironmentContextPropagatorV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28EnvironmentContextPropagatorVACycfc", + "mangledName": "$s11VideoSDKRTC28EnvironmentContextPropagatorVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "inject", + "printedName": "inject(spanContext:carrier:setter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28EnvironmentContextPropagatorV6inject04spanD07carrier6setteryAA04SpanD0V_SDyS2SGzxtAA6SetterRzlF", + "mangledName": "$s11VideoSDKRTC28EnvironmentContextPropagatorV6inject04spanD07carrier6setteryAA04SpanD0V_SDyS2SGzxtAA6SetterRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Setter>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "extract", + "printedName": "extract(carrier:getter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28EnvironmentContextPropagatorV7extract7carrier6getterAA04SpanD0VSgSDyS2SG_xtAA6GetterRzlF", + "mangledName": "$s11VideoSDKRTC28EnvironmentContextPropagatorV7extract7carrier6getterAA04SpanD0VSgSDyS2SG_xtAA6GetterRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Getter>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC28EnvironmentContextPropagatorV", + "mangledName": "$s11VideoSDKRTC28EnvironmentContextPropagatorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "TextMapPropagator", + "printedName": "TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP", + "mangledName": "$s11VideoSDKRTC17TextMapPropagatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EnvVarHeaders", + "printedName": "EnvVarHeaders", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[(Swift.String, Swift.String)]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.String, Swift.String)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13EnvVarHeadersV10attributesSaySS_SStGSgvpZ", + "mangledName": "$s11VideoSDKRTC13EnvVarHeadersV10attributesSaySS_SStGSgvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[(Swift.String, Swift.String)]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.String, Swift.String)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13EnvVarHeadersV10attributesSaySS_SStGSgvgZ", + "mangledName": "$s11VideoSDKRTC13EnvVarHeadersV10attributesSaySS_SStGSgvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "attributes", + "printedName": "attributes(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[(Swift.String, Swift.String)]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.String, Swift.String)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13EnvVarHeadersV10attributes3forSaySS_SStGSgSSSg_tFZ", + "mangledName": "$s11VideoSDKRTC13EnvVarHeadersV10attributes3forSaySS_SStGSgSSSg_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13EnvVarHeadersV", + "mangledName": "$s11VideoSDKRTC13EnvVarHeadersV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EnvVarResource", + "printedName": "EnvVarResource", + "children": [ + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14EnvVarResourceV8resourceAA0E0VvpZ", + "mangledName": "$s11VideoSDKRTC14EnvVarResourceV8resourceAA0E0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14EnvVarResourceV8resourceAA0E0VvgZ", + "mangledName": "$s11VideoSDKRTC14EnvVarResourceV8resourceAA0E0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(environment:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14EnvVarResourceV3get11environmentAA0E0VSDyS2SG_tFZ", + "mangledName": "$s11VideoSDKRTC14EnvVarResourceV3get11environmentAA0E0VSDyS2SG_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14EnvVarResourceV", + "mangledName": "$s11VideoSDKRTC14EnvVarResourceV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EventBuilder", + "printedName": "EventBuilder", + "children": [ + { + "kind": "Function", + "name": "setData", + "printedName": "setData(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12EventBuilderP7setDatayxSDySSAA14AttributeValueOGF", + "mangledName": "$s11VideoSDKRTC12EventBuilderP7setDatayxSDySSAA14AttributeValueOGF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.EventBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC12EventBuilderP", + "mangledName": "$s11VideoSDKRTC12EventBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordBuilder", + "printedName": "LogRecordBuilder", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ExemplarData", + "printedName": "ExemplarData", + "children": [ + { + "kind": "Var", + "name": "filteredAttributes", + "printedName": "filteredAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvs", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvM", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC18filteredAttributesSDySSAA14AttributeValueOGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "epochNanos", + "printedName": "epochNanos", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64VvM", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC10epochNanoss6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "spanContext", + "printedName": "spanContext", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvp", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvg", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvs", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvM", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC11spanContextAA04SpanF0VSgvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + }, + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ExemplarDataC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC12ExemplarDataC", + "mangledName": "$s11VideoSDKRTC12ExemplarDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleExemplarData", + "printedName": "DoubleExemplarData", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18DoubleExemplarDataC5valueSdvp", + "mangledName": "$s11VideoSDKRTC18DoubleExemplarDataC5valueSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18DoubleExemplarDataC5valueSdvg", + "mangledName": "$s11VideoSDKRTC18DoubleExemplarDataC5valueSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18DoubleExemplarDataC5valueSdvs", + "mangledName": "$s11VideoSDKRTC18DoubleExemplarDataC5valueSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18DoubleExemplarDataC5valueSdvM", + "mangledName": "$s11VideoSDKRTC18DoubleExemplarDataC5valueSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18DoubleExemplarDataC", + "mangledName": "$s11VideoSDKRTC18DoubleExemplarDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC12ExemplarDataC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.ExemplarData" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LongExemplarData", + "printedName": "LongExemplarData", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16LongExemplarDataC5valueSivp", + "mangledName": "$s11VideoSDKRTC16LongExemplarDataC5valueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16LongExemplarDataC5valueSivg", + "mangledName": "$s11VideoSDKRTC16LongExemplarDataC5valueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16LongExemplarDataC5valueSivs", + "mangledName": "$s11VideoSDKRTC16LongExemplarDataC5valueSivs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16LongExemplarDataC5valueSivM", + "mangledName": "$s11VideoSDKRTC16LongExemplarDataC5valueSivM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16LongExemplarDataC", + "mangledName": "$s11VideoSDKRTC16LongExemplarDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC12ExemplarDataC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.ExemplarData" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ExemplarFilter", + "printedName": "ExemplarFilter", + "children": [ + { + "kind": "Function", + "name": "shouldSampleMeasurement", + "printedName": "shouldSampleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ExemplarFilterP23shouldSampleMeasurement5value10attributesSbSi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC14ExemplarFilterP23shouldSampleMeasurement5value10attributesSbSi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExemplarFilter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldSampleMeasurement", + "printedName": "shouldSampleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ExemplarFilterP23shouldSampleMeasurement5value10attributesSbSd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC14ExemplarFilterP23shouldSampleMeasurement5value10attributesSbSd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExemplarFilter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14ExemplarFilterP", + "mangledName": "$s11VideoSDKRTC14ExemplarFilterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "AlwaysOnFilter", + "printedName": "AlwaysOnFilter", + "children": [ + { + "kind": "Function", + "name": "shouldSampleMeasurement", + "printedName": "shouldSampleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14AlwaysOnFilterV23shouldSampleMeasurement5value10attributesSbSd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC14AlwaysOnFilterV23shouldSampleMeasurement5value10attributesSbSd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldSampleMeasurement", + "printedName": "shouldSampleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14AlwaysOnFilterV23shouldSampleMeasurement5value10attributesSbSi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC14AlwaysOnFilterV23shouldSampleMeasurement5value10attributesSbSi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14AlwaysOnFilterV", + "mangledName": "$s11VideoSDKRTC14AlwaysOnFilterV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExemplarFilter", + "printedName": "ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP", + "mangledName": "$s11VideoSDKRTC14ExemplarFilterP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AlwaysOffFilter", + "printedName": "AlwaysOffFilter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AlwaysOffFilter", + "printedName": "VideoSDKRTC.AlwaysOffFilter", + "usr": "s:11VideoSDKRTC15AlwaysOffFilterV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC15AlwaysOffFilterVACycfc", + "mangledName": "$s11VideoSDKRTC15AlwaysOffFilterVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "shouldSampleMeasurement", + "printedName": "shouldSampleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15AlwaysOffFilterV23shouldSampleMeasurement5value10attributesSbSi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC15AlwaysOffFilterV23shouldSampleMeasurement5value10attributesSbSi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldSampleMeasurement", + "printedName": "shouldSampleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15AlwaysOffFilterV23shouldSampleMeasurement5value10attributesSbSd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC15AlwaysOffFilterV23shouldSampleMeasurement5value10attributesSbSd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC15AlwaysOffFilterV", + "mangledName": "$s11VideoSDKRTC15AlwaysOffFilterV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExemplarFilter", + "printedName": "ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP", + "mangledName": "$s11VideoSDKRTC14ExemplarFilterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ExemplarReservoir", + "printedName": "ExemplarReservoir", + "children": [ + { + "kind": "Function", + "name": "collectAndReset", + "printedName": "collectAndReset(attribute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ExemplarData]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExemplarReservoirC15collectAndReset9attributeSayAA0C4DataCGSDySSAA14AttributeValueOG_tF", + "mangledName": "$s11VideoSDKRTC17ExemplarReservoirC15collectAndReset9attributeSayAA0C4DataCGSDySSAA14AttributeValueOG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "offerDoubleMeasurement", + "printedName": "offerDoubleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC17ExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "offerLongMeasurement", + "printedName": "offerLongMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC17ExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC17ExemplarReservoirC", + "mangledName": "$s11VideoSDKRTC17ExemplarReservoirC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "TypeDecl", + "name": "NoopExemplarReservoir", + "printedName": "NoopExemplarReservoir", + "children": [ + { + "kind": "Function", + "name": "offerDoubleMeasurement", + "printedName": "offerDoubleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC21NoopExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "offerLongMeasurement", + "printedName": "offerLongMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC21NoopExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "collectAndReset", + "printedName": "collectAndReset(attribute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ExemplarData]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopExemplarReservoirC15collectAndReset9attributeSayAA0D4DataCGSDySSAA14AttributeValueOG_tF", + "mangledName": "$s11VideoSDKRTC21NoopExemplarReservoirC15collectAndReset9attributeSayAA0D4DataCGSDySSAA14AttributeValueOG_tF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21NoopExemplarReservoirC", + "mangledName": "$s11VideoSDKRTC21NoopExemplarReservoirC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC17ExemplarReservoirC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.ExemplarReservoir" + ] + }, + { + "kind": "TypeDecl", + "name": "ExemplarReservoirCollection", + "printedName": "ExemplarReservoirCollection", + "declKind": "Enum", + "usr": "s:11VideoSDKRTC27ExemplarReservoirCollectionO", + "mangledName": "$s11VideoSDKRTC27ExemplarReservoirCollectionO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "FixedSizedExemplarReservoir", + "printedName": "FixedSizedExemplarReservoir", + "children": [ + { + "kind": "Function", + "name": "offerLongMeasurement", + "printedName": "offerLongMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27FixedSizedExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC27FixedSizedExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "offerDoubleMeasurement", + "printedName": "offerDoubleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27FixedSizedExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC27FixedSizedExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "collectAndReset", + "printedName": "collectAndReset(attribute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ExemplarData]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27FixedSizedExemplarReservoirC15collectAndReset9attributeSayAA0E4DataCGSDySSAA14AttributeValueOG_tF", + "mangledName": "$s11VideoSDKRTC27FixedSizedExemplarReservoirC15collectAndReset9attributeSayAA0E4DataCGSDySSAA14AttributeValueOG_tF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC27FixedSizedExemplarReservoirC", + "mangledName": "$s11VideoSDKRTC27FixedSizedExemplarReservoirC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC17ExemplarReservoirC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.ExemplarReservoir" + ] + }, + { + "kind": "TypeDecl", + "name": "RandomFixedSizedExemplarReservoir", + "printedName": "RandomFixedSizedExemplarReservoir", + "declKind": "Class", + "usr": "s:11VideoSDKRTC33RandomFixedSizedExemplarReservoirC", + "mangledName": "$s11VideoSDKRTC33RandomFixedSizedExemplarReservoirC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC27FixedSizedExemplarReservoirC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.FixedSizedExemplarReservoir", + "VideoSDKRTC.ExemplarReservoir" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ExplicitBucketHistogramAggregation", + "printedName": "ExplicitBucketHistogramAggregation", + "children": [ + { + "kind": "Var", + "name": "DEFAULT_BOUNDARIES", + "printedName": "DEFAULT_BOUNDARIES", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC18DEFAULT_BOUNDARIESSaySdGvpZ", + "mangledName": "$s11VideoSDKRTC34ExplicitBucketHistogramAggregationC18DEFAULT_BOUNDARIESSaySdGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC18DEFAULT_BOUNDARIESSaySdGvgZ", + "mangledName": "$s11VideoSDKRTC34ExplicitBucketHistogramAggregationC18DEFAULT_BOUNDARIESSaySdGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "ExplicitBucketHistogramAggregation", + "printedName": "VideoSDKRTC.ExplicitBucketHistogramAggregation", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC34ExplicitBucketHistogramAggregationC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExplicitBucketHistogramAggregation", + "printedName": "VideoSDKRTC.ExplicitBucketHistogramAggregation", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC34ExplicitBucketHistogramAggregationC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createAggregator", + "printedName": "createAggregator(descriptor:exemplarFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableAggregator", + "printedName": "VideoSDKRTC.StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC16createAggregator10descriptor14exemplarFilterAA06StableH0_pAA20InstrumentDescriptorV_AA08ExemplarK0_ptF", + "mangledName": "$s11VideoSDKRTC34ExplicitBucketHistogramAggregationC16createAggregator10descriptor14exemplarFilterAA06StableH0_pAA20InstrumentDescriptorV_AA08ExemplarK0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isCompatible", + "printedName": "isCompatible(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "mangledName": "$s11VideoSDKRTC34ExplicitBucketHistogramAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC34ExplicitBucketHistogramAggregationC", + "mangledName": "$s11VideoSDKRTC34ExplicitBucketHistogramAggregationC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Aggregation", + "printedName": "Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP", + "mangledName": "$s11VideoSDKRTC11AggregationP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ExponentialHistogramBuckets", + "printedName": "ExponentialHistogramBuckets", + "children": [ + { + "kind": "Var", + "name": "scale", + "printedName": "scale", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP5scaleSivp", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP5scaleSivp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP5scaleSivg", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP5scaleSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExponentialHistogramBuckets>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "offset", + "printedName": "offset", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP6offsetSivp", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP6offsetSivp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP6offsetSivg", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP6offsetSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExponentialHistogramBuckets>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bucketCounts", + "printedName": "bucketCounts", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP12bucketCountsSaySiGvp", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP12bucketCountsSaySiGvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP12bucketCountsSaySiGvg", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP12bucketCountsSaySiGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExponentialHistogramBuckets>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalCount", + "printedName": "totalCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP10totalCountSivp", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP10totalCountSivp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP10totalCountSivg", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP10totalCountSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExponentialHistogramBuckets>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC27ExponentialHistogramBucketsP", + "mangledName": "$s11VideoSDKRTC27ExponentialHistogramBucketsP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ExportResult", + "printedName": "ExportResult", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ExportResult.Type) -> VideoSDKRTC.ExportResult", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ExportResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC12ExportResultO7successyA2CmF", + "mangledName": "$s11VideoSDKRTC12ExportResultO7successyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "failure", + "printedName": "failure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ExportResult.Type) -> VideoSDKRTC.ExportResult", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ExportResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC12ExportResultO7failureyA2CmF", + "mangledName": "$s11VideoSDKRTC12ExportResultO7failureyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ExportResultO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC12ExportResultO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ExportResultO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC12ExportResultO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExportResultO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC12ExportResultO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ExportResultO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC12ExportResultO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC12ExportResultO", + "mangledName": "$s11VideoSDKRTC12ExportResultO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ExtensibleMessage", + "printedName": "ExtensibleMessage", + "children": [ + { + "kind": "Var", + "name": "_protobuf_extensionFieldValues", + "printedName": "_protobuf_extensionFieldValues", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvp", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvg", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvs", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvM", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP30_protobuf_extensionFieldValuesAA09ExtensionG8ValueSetVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "setExtensionValue", + "printedName": "setExtensionValue(ext:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension<τ_1_0, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.ValueType" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0Cyqd__xG_0G4TypeQyd__tAA0F5FieldRd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0Cyqd__xG_0G4TypeQyd__tAA0F5FieldRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "getExtensionValue", + "printedName": "getExtensionValue(ext:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0.ValueType?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.ValueType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension<τ_1_0, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17getExtensionValue3ext0G4TypeQyd__SgAA0dF0Cyqd__xG_tAA0F5FieldRd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17getExtensionValue3ext0G4TypeQyd__SgAA0dF0Cyqd__xG_tAA0F5FieldRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hasExtensionValue", + "printedName": "hasExtensionValue(ext:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension<τ_1_0, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17hasExtensionValue3extSbAA0dF0Cyqd__xG_tAA0F5FieldRd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17hasExtensionValue3extSbAA0dF0Cyqd__xG_tAA0F5FieldRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearExtensionValue", + "printedName": "clearExtensionValue(ext:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension<τ_1_0, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE19clearExtensionValue3extyAA0dF0Cyqd__xG_tAA0F5FieldRd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE19clearExtensionValue3extyAA0dF0Cyqd__xG_tAA0F5FieldRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setExtensionValue", + "printedName": "setExtensionValue(ext:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedExtensionField", + "printedName": "VideoSDKRTC.RepeatedExtensionField<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA08RepeatedF5FieldVyqd__GxG_Say8BaseTypeQyd__GtAA0kM0Rd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA08RepeatedF5FieldVyqd__GxG_Say8BaseTypeQyd__GtAA0kM0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setExtensionValue", + "printedName": "setExtensionValue(ext:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "PackedExtensionField", + "printedName": "VideoSDKRTC.PackedExtensionField<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA06PackedF5FieldVyqd__GxG_Say8BaseTypeQyd__GtAA0kM0Rd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA06PackedF5FieldVyqd__GxG_Say8BaseTypeQyd__GtAA0kM0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setExtensionValue", + "printedName": "setExtensionValue(ext:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedEnumExtensionField", + "printedName": "VideoSDKRTC.RepeatedEnumExtensionField<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA012RepeatedEnumF5FieldVyqd__GxG_Sayqd__GtAA0K0Rd__Si03RawG0Rtd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA012RepeatedEnumF5FieldVyqd__GxG_Sayqd__GtAA0K0Rd__Si03RawG0Rtd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.Enum, τ_1_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setExtensionValue", + "printedName": "setExtensionValue(ext:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "PackedEnumExtensionField", + "printedName": "VideoSDKRTC.PackedEnumExtensionField<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA010PackedEnumF5FieldVyqd__GxG_Sayqd__GtAA0K0Rd__Si03RawG0Rtd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA010PackedEnumF5FieldVyqd__GxG_Sayqd__GtAA0K0Rd__Si03RawG0Rtd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : VideoSDKRTC.Enum, τ_1_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setExtensionValue", + "printedName": "setExtensionValue(ext:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedMessageExtensionField", + "printedName": "VideoSDKRTC.RepeatedMessageExtensionField<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA08RepeateddF5FieldVyqd__GxG_Sayqd__GtSQRd__AA0D0Rd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA08RepeateddF5FieldVyqd__GxG_Sayqd__GtSQRd__AA0D0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : Swift.Equatable, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setExtensionValue", + "printedName": "setExtensionValue(ext:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension, τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedGroupExtensionField", + "printedName": "VideoSDKRTC.RepeatedGroupExtensionField<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA013RepeatedGroupF5FieldVyqd__GxG_Sayqd__GtSHRd__AA0D0Rd__lF", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessagePAAE17setExtensionValue3ext5valueyAA0dF0CyAA013RepeatedGroupF5FieldVyqd__GxG_Sayqd__GtSHRd__AA0D0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensibleMessage, τ_1_0 : Swift.Hashable, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC17ExtensibleMessageP", + "mangledName": "$s11VideoSDKRTC17ExtensibleMessageP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "children": [ + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP08protobufD0AA0c7MessageD0_pvp", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP08protobufD0AA0c7MessageD0_pvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP08protobufD0AA0c7MessageD0_pvg", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP08protobufD0AA0c7MessageD0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP7isEqual5otherSbAaB_p_tF", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP7isEqual5otherSbAaB_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.AnyExtensionField, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.AnyExtensionField, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldPAAE13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldPAAE13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldPAAE13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldPAAE13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyExtensionField>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "AssociatedType", + "name": "ValueType", + "printedName": "ValueType", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC14ExtensionFieldP9ValueTypeQa", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP9ValueTypeQa", + "moduleName": "VideoSDKRTC", + "protocolReq": true + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueType" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvp", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueType" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvg", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueType" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvs", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvM", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP5value9ValueTypeQzvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueType" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14ExtensionFieldP08protobufC05valuexAA010AnyMessageC0_p_9ValueTypeQztcfc", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP08protobufC05valuexAA010AnyMessageC0_p_9ValueTypeQztcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensionField>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14ExtensionFieldP08protobufC07decoderxSgAA010AnyMessageC0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP08protobufC07decoderxSgAA010AnyMessageC0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensionField, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.AnyExtensionField>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OptionalExtensionField", + "printedName": "OptionalExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvp", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvg", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvs", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvM", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV5value8BaseTypeQzvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvp", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvg", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvs", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvM", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV08protobufD0AA010AnyMessageD0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OptionalExtensionField", + "printedName": "VideoSDKRTC.OptionalExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "OptionalExtensionField", + "printedName": "VideoSDKRTC.OptionalExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalExtensionField", + "printedName": "VideoSDKRTC.OptionalExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV08protobufD05valueACyxGAA010AnyMessageD0_p_8BaseTypeQztcfc", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV08protobufD05valueACyxGAA010AnyMessageD0_p_8BaseTypeQztcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV7isEqual5otherSbAA03AnydE0_p_tF", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV7isEqual5otherSbAA03AnydE0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.OptionalExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalExtensionField", + "printedName": "VideoSDKRTC.OptionalExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV08protobufD07decoderACyxGSgAA010AnyMessageD0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV08protobufD07decoderACyxGSgAA010AnyMessageD0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22OptionalExtensionFieldV", + "mangledName": "$s11VideoSDKRTC22OptionalExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RepeatedExtensionField", + "printedName": "RepeatedExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvp", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvg", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvs", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvM", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV5valueSay8BaseTypeQzGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvp", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvg", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvs", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvM", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV08protobufD0AA010AnyMessageD0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "RepeatedExtensionField", + "printedName": "VideoSDKRTC.RepeatedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "RepeatedExtensionField", + "printedName": "VideoSDKRTC.RepeatedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedExtensionField", + "printedName": "VideoSDKRTC.RepeatedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV08protobufD05valueACyxGAA010AnyMessageD0_p_Say8BaseTypeQzGtcfc", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV08protobufD05valueACyxGAA010AnyMessageD0_p_Say8BaseTypeQzGtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV7isEqual5otherSbAA03AnydE0_p_tF", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV7isEqual5otherSbAA03AnydE0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.RepeatedExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedExtensionField", + "printedName": "VideoSDKRTC.RepeatedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV08protobufD07decoderACyxGSgAA010AnyMessageD0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV08protobufD07decoderACyxGSgAA010AnyMessageD0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22RepeatedExtensionFieldV", + "mangledName": "$s11VideoSDKRTC22RepeatedExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PackedExtensionField", + "printedName": "PackedExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvp", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvg", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvs", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvM", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV5valueSay8BaseTypeQzGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvp", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvg", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvs", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvM", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV08protobufD0AA010AnyMessageD0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "PackedExtensionField", + "printedName": "VideoSDKRTC.PackedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "PackedExtensionField", + "printedName": "VideoSDKRTC.PackedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PackedExtensionField", + "printedName": "VideoSDKRTC.PackedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV08protobufD05valueACyxGAA010AnyMessageD0_p_Say8BaseTypeQzGtcfc", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV08protobufD05valueACyxGAA010AnyMessageD0_p_Say8BaseTypeQzGtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV7isEqual5otherSbAA03AnydE0_p_tF", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV7isEqual5otherSbAA03AnydE0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV06decodedE07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.PackedExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "PackedExtensionField", + "printedName": "VideoSDKRTC.PackedExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV08protobufD07decoderACyxGSgAA010AnyMessageD0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV08protobufD07decoderACyxGSgAA010AnyMessageD0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20PackedExtensionFieldV", + "mangledName": "$s11VideoSDKRTC20PackedExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OptionalEnumExtensionField", + "printedName": "OptionalEnumExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvp", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvg", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvs", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvM", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV5valuexvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OptionalEnumExtensionField", + "printedName": "VideoSDKRTC.OptionalEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "OptionalEnumExtensionField", + "printedName": "VideoSDKRTC.OptionalEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalEnumExtensionField", + "printedName": "VideoSDKRTC.OptionalEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_xtcfc", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_xtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.SPBDecoder, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.OptionalEnumExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalEnumExtensionField", + "printedName": "VideoSDKRTC.OptionalEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.SPBDecoder, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.Visitor, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC26OptionalEnumExtensionFieldV", + "mangledName": "$s11VideoSDKRTC26OptionalEnumExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RepeatedEnumExtensionField", + "printedName": "RepeatedEnumExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvp", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvg", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvs", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvM", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV5valueSayxGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "RepeatedEnumExtensionField", + "printedName": "VideoSDKRTC.RepeatedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "RepeatedEnumExtensionField", + "printedName": "VideoSDKRTC.RepeatedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedEnumExtensionField", + "printedName": "VideoSDKRTC.RepeatedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_SayxGtcfc", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_SayxGtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.SPBDecoder, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.RepeatedEnumExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedEnumExtensionField", + "printedName": "VideoSDKRTC.RepeatedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.SPBDecoder, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.Visitor, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC26RepeatedEnumExtensionFieldV", + "mangledName": "$s11VideoSDKRTC26RepeatedEnumExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PackedEnumExtensionField", + "printedName": "PackedEnumExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvp", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvg", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvs", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvM", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV5valueSayxGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "PackedEnumExtensionField", + "printedName": "VideoSDKRTC.PackedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "PackedEnumExtensionField", + "printedName": "VideoSDKRTC.PackedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PackedEnumExtensionField", + "printedName": "VideoSDKRTC.PackedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_SayxGtcfc", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_SayxGtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.SPBDecoder, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.PackedEnumExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "PackedEnumExtensionField", + "printedName": "VideoSDKRTC.PackedEnumExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.SPBDecoder, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Enum, τ_1_0 : VideoSDKRTC.Visitor, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC24PackedEnumExtensionFieldV", + "mangledName": "$s11VideoSDKRTC24PackedEnumExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Enum, τ_0_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OptionalMessageExtensionField", + "printedName": "OptionalMessageExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvp", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvg", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvs", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvM", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV5valuexvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvp", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvg", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvs", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvM", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE0AA03AnydE0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OptionalMessageExtensionField", + "printedName": "VideoSDKRTC.OptionalMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "OptionalMessageExtensionField", + "printedName": "VideoSDKRTC.OptionalMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalMessageExtensionField", + "printedName": "VideoSDKRTC.OptionalMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE05valueACyxGAA03AnydE0_p_xtcfc", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE05valueACyxGAA03AnydE0_p_xtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.OptionalMessageExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalMessageExtensionField", + "printedName": "VideoSDKRTC.OptionalMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE07decoderACyxGSgAA03AnydE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV08protobufE07decoderACyxGSgAA03AnydE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC29OptionalMessageExtensionFieldV", + "mangledName": "$s11VideoSDKRTC29OptionalMessageExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RepeatedMessageExtensionField", + "printedName": "RepeatedMessageExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvp", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvg", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvs", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvM", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV5valueSayxGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvp", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvg", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvs", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvM", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE0AA03AnydE0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "RepeatedMessageExtensionField", + "printedName": "VideoSDKRTC.RepeatedMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "RepeatedMessageExtensionField", + "printedName": "VideoSDKRTC.RepeatedMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedMessageExtensionField", + "printedName": "VideoSDKRTC.RepeatedMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE05valueACyxGAA03AnydE0_p_SayxGtcfc", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE05valueACyxGAA03AnydE0_p_SayxGtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.RepeatedMessageExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedMessageExtensionField", + "printedName": "VideoSDKRTC.RepeatedMessageExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE07decoderACyxGSgAA03AnydE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV08protobufE07decoderACyxGSgAA03AnydE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC29RepeatedMessageExtensionFieldV", + "mangledName": "$s11VideoSDKRTC29RepeatedMessageExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OptionalGroupExtensionField", + "printedName": "OptionalGroupExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvp", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvg", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvs", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvM", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV5valuexvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OptionalGroupExtensionField", + "printedName": "VideoSDKRTC.OptionalGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "OptionalGroupExtensionField", + "printedName": "VideoSDKRTC.OptionalGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalGroupExtensionField", + "printedName": "VideoSDKRTC.OptionalGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_xtcfc", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_xtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.OptionalGroupExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "OptionalGroupExtensionField", + "printedName": "VideoSDKRTC.OptionalGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27OptionalGroupExtensionFieldV", + "mangledName": "$s11VideoSDKRTC27OptionalGroupExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RepeatedGroupExtensionField", + "printedName": "RepeatedGroupExtensionField", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvp", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvg", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvs", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvM", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV5valueSayxGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protobufExtension", + "printedName": "protobufExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE0AA010AnyMessageE0_pvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "RepeatedGroupExtensionField", + "printedName": "VideoSDKRTC.RepeatedGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "RepeatedGroupExtensionField", + "printedName": "VideoSDKRTC.RepeatedGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedGroupExtensionField", + "printedName": "VideoSDKRTC.RepeatedGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_SayxGtcfc", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE05valueACyxGAA010AnyMessageE0_p_SayxGtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV7isEqual5otherSbAA03AnyeF0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV06decodeeF07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protobufExtension:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.RepeatedGroupExtensionField<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", + "name": "RepeatedGroupExtensionField", + "printedName": "VideoSDKRTC.RepeatedGroupExtensionField<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV08protobufE07decoderACyxGSgAA010AnyMessageE0_p_qd__ztKcAA10SPBDecoderRd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27RepeatedGroupExtensionFieldV", + "mangledName": "$s11VideoSDKRTC27RepeatedGroupExtensionFieldV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionField", + "printedName": "ExtensionField", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueType", + "printedName": "ValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:11VideoSDKRTC14ExtensionFieldP", + "mangledName": "$s11VideoSDKRTC14ExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "AnyExtensionField", + "printedName": "AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP", + "mangledName": "$s11VideoSDKRTC17AnyExtensionFieldP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ExtensionFieldValueSet", + "printedName": "ExtensionFieldValueSet", + "children": [ + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetVACycfc", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:start:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV8traverse7visitor5start3endyxz_S2itKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV8traverse7visitor5start3endyxz_S2itKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyExtensionField?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Subscript", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSicip", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSicip", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyExtensionField?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSicig", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSicig", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyExtensionField?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSicis", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSicis", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSiciM", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetVyAA03AnycD0_pSgSiciM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV04hashE0Sivp", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV04hashE0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV04hashE0Sivg", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV04hashE0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV", + "mangledName": "$s11VideoSDKRTC22ExtensionFieldValueSetV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ExtensionMap", + "printedName": "ExtensionMap", + "children": [ + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyMessageExtension?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Subscript", + "usr": "s:11VideoSDKRTC12ExtensionMapPyAA010AnyMessageC0_pSgAA0F0_pXp_Sitcip", + "mangledName": "$s11VideoSDKRTC12ExtensionMapPyAA010AnyMessageC0_pSgAA0F0_pXp_Sitcip", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensionMap>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyMessageExtension?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ExtensionMapPyAA010AnyMessageC0_pSgAA0F0_pXp_Sitcig", + "mangledName": "$s11VideoSDKRTC12ExtensionMapPyAA010AnyMessageC0_pSgAA0F0_pXp_Sitcig", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensionMap>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "fieldNumberForProto", + "printedName": "fieldNumberForProto(messageType:protoFieldName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ExtensionMapP19fieldNumberForProto11messageType14protoFieldNameSiSgAA7Message_pXp_SStF", + "mangledName": "$s11VideoSDKRTC12ExtensionMapP19fieldNumberForProto11messageType14protoFieldNameSiSgAA7Message_pXp_SStF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ExtensionMap>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC12ExtensionMapP", + "mangledName": "$s11VideoSDKRTC12ExtensionMapP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : Swift.Sendable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FieldMask", + "printedName": "Google_Protobuf_FieldMask", + "children": [ + { + "kind": "Var", + "name": "paths", + "printedName": "paths", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV5pathsSaySSGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldMask", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldMask", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskVACycfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldMask", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldMask", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldMask", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldMask", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protoPaths:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldMask", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldMask", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV10protoPathsACSaySSG_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV10protoPathsACSaySSG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(protoPaths:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldMask", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldMask", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV10protoPathsACSSd_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV10protoPathsACSSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jsonPaths:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldMask?", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FieldMask", + "printedName": "VideoSDKRTC.Google_Protobuf_FieldMask", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV9jsonPathsACSgSSd_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV9jsonPathsACSgSSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25Google_Protobuf_FieldMaskV", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_FieldMaskV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "AssociatedType", + "name": "BaseType", + "printedName": "BaseType", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC9FieldTypeP04BaseD0Qa", + "mangledName": "$s11VideoSDKRTC9FieldTypeP04BaseD0Qa", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9FieldTypeP18proto3DefaultValue04BaseD0QzvpZ", + "mangledName": "$s11VideoSDKRTC9FieldTypeP18proto3DefaultValue04BaseD0QzvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9FieldTypeP18proto3DefaultValue04BaseD0QzvgZ", + "mangledName": "$s11VideoSDKRTC9FieldTypeP18proto3DefaultValue04BaseD0QzvgZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.BaseType?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9FieldTypeP14decodeSingular5value4fromy04BaseD0QzSgz_qd__ztKAA10SPBDecoderRd__lFZ", + "mangledName": "$s11VideoSDKRTC9FieldTypeP14decodeSingular5value4fromy04BaseD0QzSgz_qd__ztKAA10SPBDecoderRd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9FieldTypeP14decodeRepeated5value4fromySay04BaseD0QzGz_qd__ztKAA10SPBDecoderRd__lFZ", + "mangledName": "$s11VideoSDKRTC9FieldTypeP14decodeRepeated5value4fromySay04BaseD0QzGz_qd__ztKAA10SPBDecoderRd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9FieldTypeP13visitSingular5value11fieldNumber4withy04BaseD0Qz_Siqd__ztKAA7VisitorRd__lFZ", + "mangledName": "$s11VideoSDKRTC9FieldTypeP13visitSingular5value11fieldNumber4withy04BaseD0Qz_Siqd__ztKAA7VisitorRd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9FieldTypeP13visitRepeated5value11fieldNumber4withySay04BaseD0QzG_Siqd__ztKAA7VisitorRd__lFZ", + "mangledName": "$s11VideoSDKRTC9FieldTypeP13visitRepeated5value11fieldNumber4withySay04BaseD0QzG_Siqd__ztKAA7VisitorRd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9FieldTypeP11visitPacked5value11fieldNumber4withySay04BaseD0QzG_Siqd__ztKAA7VisitorRd__lFZ", + "mangledName": "$s11VideoSDKRTC9FieldTypeP11visitPacked5value11fieldNumber4withySay04BaseD0QzG_Siqd__ztKAA7VisitorRd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.FieldType, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0.BaseType : Swift.Hashable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MapKeyType", + "printedName": "MapKeyType", + "children": [ + { + "kind": "Function", + "name": "_lessThan", + "printedName": "_lessThan(lhs:rhs:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10MapKeyTypeP9_lessThan3lhs3rhsSb04BaseE0Qz_AHtFZ", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP9_lessThan3lhs3rhsSb04BaseE0Qz_AHtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MapKeyType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "_lessThan", + "printedName": "_lessThan(lhs:rhs:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.BaseType" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10MapKeyTypePAASL04BaseE0RpzrlE9_lessThan3lhs3rhsSbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC10MapKeyTypePAASL04BaseE0RpzrlE9_lessThan3lhs3rhsSbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MapKeyType, τ_0_0.BaseType : Swift.Comparable>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MapValueType", + "printedName": "MapValueType", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufFloat", + "printedName": "ProtobufFloat", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13ProtobufFloatV18proto3DefaultValueSfvpZ", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV18proto3DefaultValueSfvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13ProtobufFloatV18proto3DefaultValueSfvgZ", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV18proto3DefaultValueSfvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Float?", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufFloatV14decodeSingular5value4fromySfSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV14decodeSingular5value4fromySfSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufFloatV14decodeRepeated5value4fromySaySfGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV14decodeRepeated5value4fromySaySfGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufFloatV13visitSingular5value11fieldNumber4withySf_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV13visitSingular5value11fieldNumber4withySf_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufFloatV13visitRepeated5value11fieldNumber4withySaySfG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV13visitRepeated5value11fieldNumber4withySaySfG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufFloatV11visitPacked5value11fieldNumber4withySaySfG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV11visitPacked5value11fieldNumber4withySaySfG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13ProtobufFloatV", + "mangledName": "$s11VideoSDKRTC13ProtobufFloatV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufDouble", + "printedName": "ProtobufDouble", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV18proto3DefaultValueSdvpZ", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV18proto3DefaultValueSdvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV18proto3DefaultValueSdvgZ", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV18proto3DefaultValueSdvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV14decodeSingular5value4fromySdSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV14decodeSingular5value4fromySdSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV14decodeRepeated5value4fromySaySdGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV14decodeRepeated5value4fromySaySdGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV13visitSingular5value11fieldNumber4withySd_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV13visitSingular5value11fieldNumber4withySd_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV13visitRepeated5value11fieldNumber4withySaySdG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV13visitRepeated5value11fieldNumber4withySaySdG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV11visitPacked5value11fieldNumber4withySaySdG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV11visitPacked5value11fieldNumber4withySaySdG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14ProtobufDoubleV", + "mangledName": "$s11VideoSDKRTC14ProtobufDoubleV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufInt32", + "printedName": "ProtobufInt32", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13ProtobufInt32V18proto3DefaultValues0D0VvpZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V18proto3DefaultValues0D0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13ProtobufInt32V18proto3DefaultValues0D0VvgZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V18proto3DefaultValues0D0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int32?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt32V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt32V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt32V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt32V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt32V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13ProtobufInt32V", + "mangledName": "$s11VideoSDKRTC13ProtobufInt32V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufInt64", + "printedName": "ProtobufInt64", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13ProtobufInt64V18proto3DefaultValues0D0VvpZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V18proto3DefaultValues0D0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13ProtobufInt64V18proto3DefaultValues0D0VvgZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V18proto3DefaultValues0D0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt64V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt64V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt64V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt64V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufInt64V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13ProtobufInt64V", + "mangledName": "$s11VideoSDKRTC13ProtobufInt64V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufUInt32", + "printedName": "ProtobufUInt32", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V18proto3DefaultValues0D0VvpZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V18proto3DefaultValues0D0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V18proto3DefaultValues0D0VvgZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V18proto3DefaultValues0D0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14ProtobufUInt32V", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt32V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufUInt64", + "printedName": "ProtobufUInt64", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V18proto3DefaultValues0D0VvpZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V18proto3DefaultValues0D0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V18proto3DefaultValues0D0VvgZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V18proto3DefaultValues0D0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt64?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V14decodeSingular5value4fromys0D0VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V14decodeRepeated5value4fromySays0D0VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V13visitSingular5value11fieldNumber4withys0D0V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V13visitRepeated5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V11visitPacked5value11fieldNumber4withySays0D0VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14ProtobufUInt64V", + "mangledName": "$s11VideoSDKRTC14ProtobufUInt64V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufSInt32", + "printedName": "ProtobufSInt32", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V18proto3DefaultValues5Int32VvpZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V18proto3DefaultValues5Int32VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V18proto3DefaultValues5Int32VvgZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V18proto3DefaultValues5Int32VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int32?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V14decodeSingular5value4fromys5Int32VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V14decodeSingular5value4fromys5Int32VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V14decodeRepeated5value4fromySays5Int32VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V14decodeRepeated5value4fromySays5Int32VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V13visitSingular5value11fieldNumber4withys5Int32V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V13visitSingular5value11fieldNumber4withys5Int32V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V13visitRepeated5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V13visitRepeated5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V11visitPacked5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V11visitPacked5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14ProtobufSInt32V", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt32V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufSInt64", + "printedName": "ProtobufSInt64", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V18proto3DefaultValues5Int64VvpZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V18proto3DefaultValues5Int64VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V18proto3DefaultValues5Int64VvgZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V18proto3DefaultValues5Int64VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V14decodeSingular5value4fromys5Int64VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V14decodeSingular5value4fromys5Int64VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V14decodeRepeated5value4fromySays5Int64VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V14decodeRepeated5value4fromySays5Int64VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V13visitSingular5value11fieldNumber4withys5Int64V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V13visitSingular5value11fieldNumber4withys5Int64V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V13visitRepeated5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V13visitRepeated5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V11visitPacked5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V11visitPacked5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14ProtobufSInt64V", + "mangledName": "$s11VideoSDKRTC14ProtobufSInt64V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufFixed32", + "printedName": "ProtobufFixed32", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V18proto3DefaultValues6UInt32VvpZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V18proto3DefaultValues6UInt32VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V18proto3DefaultValues6UInt32VvgZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V18proto3DefaultValues6UInt32VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V14decodeSingular5value4fromys6UInt32VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V14decodeSingular5value4fromys6UInt32VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V14decodeRepeated5value4fromySays6UInt32VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V14decodeRepeated5value4fromySays6UInt32VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V13visitSingular5value11fieldNumber4withys6UInt32V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V13visitSingular5value11fieldNumber4withys6UInt32V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V13visitRepeated5value11fieldNumber4withySays6UInt32VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V13visitRepeated5value11fieldNumber4withySays6UInt32VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V11visitPacked5value11fieldNumber4withySays6UInt32VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V11visitPacked5value11fieldNumber4withySays6UInt32VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC15ProtobufFixed32V", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed32V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufFixed64", + "printedName": "ProtobufFixed64", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V18proto3DefaultValues6UInt64VvpZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V18proto3DefaultValues6UInt64VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V18proto3DefaultValues6UInt64VvgZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V18proto3DefaultValues6UInt64VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt64?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V14decodeSingular5value4fromys6UInt64VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V14decodeSingular5value4fromys6UInt64VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V14decodeRepeated5value4fromySays6UInt64VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V14decodeRepeated5value4fromySays6UInt64VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V13visitSingular5value11fieldNumber4withys6UInt64V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V13visitSingular5value11fieldNumber4withys6UInt64V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V13visitRepeated5value11fieldNumber4withySays6UInt64VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V13visitRepeated5value11fieldNumber4withySays6UInt64VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V11visitPacked5value11fieldNumber4withySays6UInt64VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V11visitPacked5value11fieldNumber4withySays6UInt64VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC15ProtobufFixed64V", + "mangledName": "$s11VideoSDKRTC15ProtobufFixed64V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufSFixed32", + "printedName": "ProtobufSFixed32", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V18proto3DefaultValues5Int32VvpZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V18proto3DefaultValues5Int32VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V18proto3DefaultValues5Int32VvgZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V18proto3DefaultValues5Int32VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int32?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V14decodeSingular5value4fromys5Int32VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V14decodeSingular5value4fromys5Int32VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V14decodeRepeated5value4fromySays5Int32VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V14decodeRepeated5value4fromySays5Int32VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V13visitSingular5value11fieldNumber4withys5Int32V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V13visitSingular5value11fieldNumber4withys5Int32V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V13visitRepeated5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V13visitRepeated5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V11visitPacked5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V11visitPacked5value11fieldNumber4withySays5Int32VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16ProtobufSFixed32V", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed32V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufSFixed64", + "printedName": "ProtobufSFixed64", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V18proto3DefaultValues5Int64VvpZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V18proto3DefaultValues5Int64VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V18proto3DefaultValues5Int64VvgZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V18proto3DefaultValues5Int64VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V14decodeSingular5value4fromys5Int64VSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V14decodeSingular5value4fromys5Int64VSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V14decodeRepeated5value4fromySays5Int64VGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V14decodeRepeated5value4fromySays5Int64VGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V13visitSingular5value11fieldNumber4withys5Int64V_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V13visitSingular5value11fieldNumber4withys5Int64V_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V13visitRepeated5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V13visitRepeated5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V11visitPacked5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V11visitPacked5value11fieldNumber4withySays5Int64VG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16ProtobufSFixed64V", + "mangledName": "$s11VideoSDKRTC16ProtobufSFixed64V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufBool", + "printedName": "ProtobufBool", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ProtobufBoolV18proto3DefaultValueSbvpZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV18proto3DefaultValueSbvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ProtobufBoolV18proto3DefaultValueSbvgZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV18proto3DefaultValueSbvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ProtobufBoolV14decodeSingular5value4fromySbSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV14decodeSingular5value4fromySbSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ProtobufBoolV14decodeRepeated5value4fromySaySbGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV14decodeRepeated5value4fromySaySbGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ProtobufBoolV13visitSingular5value11fieldNumber4withySb_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV13visitSingular5value11fieldNumber4withySb_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ProtobufBoolV13visitRepeated5value11fieldNumber4withySaySbG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV13visitRepeated5value11fieldNumber4withySaySbG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ProtobufBoolV11visitPacked5value11fieldNumber4withySaySbG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV11visitPacked5value11fieldNumber4withySaySbG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "_lessThan", + "printedName": "_lessThan(lhs:rhs:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ProtobufBoolV9_lessThan3lhs3rhsS2b_SbtFZ", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV9_lessThan3lhs3rhsS2b_SbtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC12ProtobufBoolV", + "mangledName": "$s11VideoSDKRTC12ProtobufBoolV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufString", + "printedName": "ProtobufString", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14ProtobufStringV18proto3DefaultValueSSvpZ", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV18proto3DefaultValueSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14ProtobufStringV18proto3DefaultValueSSvgZ", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV18proto3DefaultValueSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufStringV14decodeSingular5value4fromySSSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV14decodeSingular5value4fromySSSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufStringV14decodeRepeated5value4fromySaySSGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV14decodeRepeated5value4fromySaySSGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufStringV13visitSingular5value11fieldNumber4withySS_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV13visitSingular5value11fieldNumber4withySS_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufStringV13visitRepeated5value11fieldNumber4withySaySSG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV13visitRepeated5value11fieldNumber4withySaySSG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14ProtobufStringV11visitPacked5value11fieldNumber4withySaySSG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV11visitPacked5value11fieldNumber4withySaySSG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14ProtobufStringV", + "mangledName": "$s11VideoSDKRTC14ProtobufStringV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapKeyType", + "printedName": "MapKeyType", + "usr": "s:11VideoSDKRTC10MapKeyTypeP", + "mangledName": "$s11VideoSDKRTC10MapKeyTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufBytes", + "printedName": "ProtobufBytes", + "children": [ + { + "kind": "Var", + "name": "proto3DefaultValue", + "printedName": "proto3DefaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13ProtobufBytesV18proto3DefaultValue10Foundation4DataVvpZ", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV18proto3DefaultValue10Foundation4DataVvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13ProtobufBytesV18proto3DefaultValue10Foundation4DataVvgZ", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV18proto3DefaultValue10Foundation4DataVvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeSingular", + "printedName": "decodeSingular(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufBytesV14decodeSingular5value4fromy10Foundation4DataVSgz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV14decodeSingular5value4fromy10Foundation4DataVSgz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeRepeated", + "printedName": "decodeRepeated(value:from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufBytesV14decodeRepeated5value4fromySay10Foundation4DataVGz_xztKAA10SPBDecoderRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV14decodeRepeated5value4fromySay10Foundation4DataVGz_xztKAA10SPBDecoderRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitSingular", + "printedName": "visitSingular(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufBytesV13visitSingular5value11fieldNumber4withy10Foundation4DataV_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV13visitSingular5value11fieldNumber4withy10Foundation4DataV_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitRepeated", + "printedName": "visitRepeated(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufBytesV13visitRepeated5value11fieldNumber4withySay10Foundation4DataVG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV13visitRepeated5value11fieldNumber4withySay10Foundation4DataVG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "visitPacked", + "printedName": "visitPacked(value:fieldNumber:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13ProtobufBytesV11visitPacked5value11fieldNumber4withySay10Foundation4DataVG_SixztKAA7VisitorRzlFZ", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV11visitPacked5value11fieldNumber4withySay10Foundation4DataVG_SixztKAA7VisitorRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13ProtobufBytesV", + "mangledName": "$s11VideoSDKRTC13ProtobufBytesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "FieldType", + "printedName": "FieldType", + "children": [ + { + "kind": "TypeWitness", + "name": "BaseType", + "printedName": "BaseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ], + "usr": "s:11VideoSDKRTC9FieldTypeP", + "mangledName": "$s11VideoSDKRTC9FieldTypeP" + }, + { + "kind": "Conformance", + "name": "MapValueType", + "printedName": "MapValueType", + "usr": "s:11VideoSDKRTC12MapValueTypeP", + "mangledName": "$s11VideoSDKRTC12MapValueTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FilteredExemplarReservoir", + "printedName": "FilteredExemplarReservoir", + "children": [ + { + "kind": "Function", + "name": "offerDoubleMeasurement", + "printedName": "offerDoubleMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25FilteredExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC25FilteredExemplarReservoirC22offerDoubleMeasurement5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "offerLongMeasurement", + "printedName": "offerLongMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25FilteredExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC25FilteredExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "collectAndReset", + "printedName": "collectAndReset(attribute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ExemplarData]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25FilteredExemplarReservoirC15collectAndReset9attributeSayAA0D4DataCGSDySSAA14AttributeValueOG_tF", + "mangledName": "$s11VideoSDKRTC25FilteredExemplarReservoirC15collectAndReset9attributeSayAA0D4DataCGSDySSAA14AttributeValueOG_tF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC25FilteredExemplarReservoirC", + "mangledName": "$s11VideoSDKRTC25FilteredExemplarReservoirC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC17ExemplarReservoirC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.ExemplarReservoir" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "defaultAnyTypeURLPrefix", + "printedName": "defaultAnyTypeURLPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC23defaultAnyTypeURLPrefixSSvp", + "mangledName": "$s11VideoSDKRTC23defaultAnyTypeURLPrefixSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23defaultAnyTypeURLPrefixSSvg", + "mangledName": "$s11VideoSDKRTC23defaultAnyTypeURLPrefixSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Dispatch", + "printedName": "Dispatch", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "-", + "printedName": "-(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC1sopyAA24Google_Protobuf_DurationVADF", + "mangledName": "$s11VideoSDKRTC1sopyAA24Google_Protobuf_DurationVADF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Prefix", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "+", + "printedName": "+(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC1poiyAA24Google_Protobuf_DurationVAD_ADtF", + "mangledName": "$s11VideoSDKRTC1poiyAA24Google_Protobuf_DurationVAD_ADtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "-", + "printedName": "-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC1soiyAA24Google_Protobuf_DurationVAD_ADtF", + "mangledName": "$s11VideoSDKRTC1soiyAA24Google_Protobuf_DurationVAD_ADtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "-", + "printedName": "-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC1soiyAA24Google_Protobuf_DurationVAA0c1_D10_TimestampV_AFtF", + "mangledName": "$s11VideoSDKRTC1soiyAA24Google_Protobuf_DurationVAA0c1_D10_TimestampV_AFtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "+", + "printedName": "+(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC1poiyAA25Google_Protobuf_TimestampVAD_AA0c1_D9_DurationVtF", + "mangledName": "$s11VideoSDKRTC1poiyAA25Google_Protobuf_TimestampVAD_AA0c1_D9_DurationVtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "+", + "printedName": "+(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC1poiyAA25Google_Protobuf_TimestampVAA0c1_D9_DurationV_ADtF", + "mangledName": "$s11VideoSDKRTC1poiyAA25Google_Protobuf_TimestampVAA0c1_D9_DurationV_ADtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "-", + "printedName": "-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Duration", + "printedName": "VideoSDKRTC.Google_Protobuf_Duration", + "usr": "s:11VideoSDKRTC24Google_Protobuf_DurationV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC1soiyAA25Google_Protobuf_TimestampVAD_AA0c1_D9_DurationVtF", + "mangledName": "$s11VideoSDKRTC1soiyAA25Google_Protobuf_TimestampVAD_AA0c1_D9_DurationVtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Headers", + "printedName": "Headers", + "children": [ + { + "kind": "Function", + "name": "getUserAgentHeader", + "printedName": "getUserAgentHeader()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7HeadersV18getUserAgentHeaderSSyFZ", + "mangledName": "$s11VideoSDKRTC7HeadersV18getUserAgentHeaderSSyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC7HeadersV", + "mangledName": "$s11VideoSDKRTC7HeadersV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HistogramAggregator", + "printedName": "HistogramAggregator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(explicitBoundaries:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HistogramAggregator", + "printedName": "VideoSDKRTC.HistogramAggregator<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC19HistogramAggregatorC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19HistogramAggregatorC18explicitBoundariesACyxGSayxGSg_tKcfc", + "mangledName": "$s11VideoSDKRTC19HistogramAggregatorC18explicitBoundariesACyxGSayxGSg_tKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "update", + "printedName": "update(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19HistogramAggregatorC6update5valueyx_tF", + "mangledName": "$s11VideoSDKRTC19HistogramAggregatorC6update5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkpoint", + "printedName": "checkpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19HistogramAggregatorC10checkpointyyF", + "mangledName": "$s11VideoSDKRTC19HistogramAggregatorC10checkpointyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19HistogramAggregatorC12toMetricDataAA0fG0_pyF", + "mangledName": "$s11VideoSDKRTC19HistogramAggregatorC12toMetricDataAA0fG0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAggregationType", + "printedName": "getAggregationType()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19HistogramAggregatorC18getAggregationTypeAA0fG0OyF", + "mangledName": "$s11VideoSDKRTC19HistogramAggregatorC18getAggregationTypeAA0fG0OyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19HistogramAggregatorC", + "mangledName": "$s11VideoSDKRTC19HistogramAggregatorC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:11VideoSDKRTC10AggregatorC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.Aggregator<τ_0_0>" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HistogramExemplarReservoir", + "printedName": "HistogramExemplarReservoir", + "children": [ + { + "kind": "Function", + "name": "offerLongMeasurement", + "printedName": "offerLongMeasurement(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26HistogramExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC26HistogramExemplarReservoirC20offerLongMeasurement5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC26HistogramExemplarReservoirC", + "mangledName": "$s11VideoSDKRTC26HistogramExemplarReservoirC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC27FixedSizedExemplarReservoirC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.FixedSizedExemplarReservoir", + "VideoSDKRTC.ExemplarReservoir" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HistogramMetric", + "printedName": "HistogramMetric", + "children": [ + { + "kind": "AssociatedType", + "name": "T", + "printedName": "T", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC15HistogramMetricP1TQa", + "mangledName": "$s11VideoSDKRTC15HistogramMetricP1TQa", + "moduleName": "VideoSDKRTC", + "protocolReq": true + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundHistogramMetric", + "printedName": "VideoSDKRTC.BoundHistogramMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15HistogramMetricP4bind8labelsetAA05BoundcD0Cy1TQzGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC15HistogramMetricP4bind8labelsetAA05BoundcD0Cy1TQzGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.HistogramMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundHistogramMetric", + "printedName": "VideoSDKRTC.BoundHistogramMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15HistogramMetricP4bind6labelsAA05BoundcD0Cy1TQzGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC15HistogramMetricP4bind6labelsAA05BoundcD0Cy1TQzGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.HistogramMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15HistogramMetricPAAE6record5value8labelsety1TQz_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC15HistogramMetricPAAE6record5value8labelsety1TQz_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.HistogramMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15HistogramMetricPAAE6record5value6labelsy1TQz_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC15HistogramMetricPAAE6record5value6labelsy1TQz_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.HistogramMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC15HistogramMetricP", + "mangledName": "$s11VideoSDKRTC15HistogramMetricP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AnyHistogramMetric", + "printedName": "AnyHistogramMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyHistogramMetric", + "printedName": "VideoSDKRTC.AnyHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18AnyHistogramMetricVyACyxGqd__c1TQyd__RszAA0dE0Rd__lufc", + "mangledName": "$s11VideoSDKRTC18AnyHistogramMetricVyACyxGqd__c1TQyd__RszAA0dE0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 == τ_1_0.T, τ_1_0 : VideoSDKRTC.HistogramMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundHistogramMetric", + "printedName": "VideoSDKRTC.BoundHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC18AnyHistogramMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundHistogramMetric", + "printedName": "VideoSDKRTC.BoundHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC18AnyHistogramMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV", + "mangledName": "$s11VideoSDKRTC18AnyHistogramMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "HistogramMetric", + "printedName": "HistogramMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC15HistogramMetricP", + "mangledName": "$s11VideoSDKRTC15HistogramMetricP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoopHistogramMetric", + "printedName": "NoopHistogramMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopHistogramMetric", + "printedName": "VideoSDKRTC.NoopHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC19NoopHistogramMetricV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19NoopHistogramMetricVACyxGycfc", + "mangledName": "$s11VideoSDKRTC19NoopHistogramMetricVACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundHistogramMetric", + "printedName": "VideoSDKRTC.BoundHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19NoopHistogramMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC19NoopHistogramMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundHistogramMetric", + "printedName": "VideoSDKRTC.BoundHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC20BoundHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19NoopHistogramMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC19NoopHistogramMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19NoopHistogramMetricV", + "mangledName": "$s11VideoSDKRTC19NoopHistogramMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "HistogramMetric", + "printedName": "HistogramMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC15HistogramMetricP", + "mangledName": "$s11VideoSDKRTC15HistogramMetricP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HistogramPointData", + "printedName": "HistogramPointData", + "children": [ + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3sumSdvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3sumSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3sumSdvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3sumSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3sumSdvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3sumSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3sumSdvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3sumSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC5counts6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC5counts6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC5counts6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC5counts6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC5counts6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC5counts6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC5counts6UInt64VvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC5counts6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "min", + "printedName": "min", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3minSdvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3minSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3minSdvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3minSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3minSdvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3minSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3minSdvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3minSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "max", + "printedName": "max", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3maxSdvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3maxSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3maxSdvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3maxSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3maxSdvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3maxSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC3maxSdvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC3maxSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "boundaries", + "printedName": "boundaries", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC10boundariesSaySdGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "counts", + "printedName": "counts", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6countsSaySiGvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6countsSaySiGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6countsSaySiGvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6countsSaySiGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6countsSaySiGvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6countsSaySiGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6countsSaySiGvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6countsSaySiGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMin", + "printedName": "hasMin", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMinSbvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMinSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMinSbvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMinSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMinSbvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMinSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMinSbvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMinSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMax", + "printedName": "hasMax", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMaxSbvp", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMaxSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMaxSbvg", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMaxSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMaxSbvs", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMaxSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18HistogramPointDataC6hasMaxSbvM", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC6hasMaxSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18HistogramPointDataC", + "mangledName": "$s11VideoSDKRTC18HistogramPointDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC9PointDataC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.PointData" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HLSConfig", + "printedName": "HLSConfig", + "children": [ + { + "kind": "Var", + "name": "layout", + "printedName": "layout", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvp", + "mangledName": "$s11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvg", + "mangledName": "$s11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvs", + "mangledName": "$s11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvM", + "mangledName": "$s11VideoSDKRTC9HLSConfigC6layoutAA12ConfigLayoutCvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "theme", + "printedName": "theme", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvp", + "mangledName": "$s11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvg", + "mangledName": "$s11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvs", + "mangledName": "$s11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvM", + "mangledName": "$s11VideoSDKRTC9HLSConfigC5themeAA11ConfigThemeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvp", + "mangledName": "$s11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvg", + "mangledName": "$s11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvs", + "mangledName": "$s11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvM", + "mangledName": "$s11VideoSDKRTC9HLSConfigC4modeAA10ConfigModeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "quality", + "printedName": "quality", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvp", + "mangledName": "$s11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvg", + "mangledName": "$s11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvs", + "mangledName": "$s11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvM", + "mangledName": "$s11VideoSDKRTC9HLSConfigC7qualityAA13ConfigQualityOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "orientation", + "printedName": "orientation", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvp", + "mangledName": "$s11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvg", + "mangledName": "$s11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvs", + "mangledName": "$s11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvM", + "mangledName": "$s11VideoSDKRTC9HLSConfigC11orientationAA17ConfigOrientationOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(layout:theme:mode:quality:orientation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSConfig", + "printedName": "VideoSDKRTC.HLSConfig", + "usr": "s:11VideoSDKRTC9HLSConfigC" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + }, + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + }, + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + }, + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + }, + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC9HLSConfigC6layout5theme4mode7quality11orientationAcA12ConfigLayoutC_AA0I5ThemeOAA0I4ModeOAA0I7QualityOAA0I11OrientationOtcfc", + "mangledName": "$s11VideoSDKRTC9HLSConfigC6layout5theme4mode7quality11orientationAcA12ConfigLayoutC_AA0I5ThemeOAA0I4ModeOAA0I7QualityOAA0I11OrientationOtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "toJson", + "printedName": "toJson()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9HLSConfigC6toJsonSDySSypGyF", + "mangledName": "$s11VideoSDKRTC9HLSConfigC6toJsonSDySSypGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC9HLSConfigC", + "mangledName": "$s11VideoSDKRTC9HLSConfigC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "RecordingConfig", + "printedName": "RecordingConfig", + "children": [ + { + "kind": "Var", + "name": "layout", + "printedName": "layout", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvp", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvg", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvs", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvM", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC6layoutAA0D6LayoutCvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "theme", + "printedName": "theme", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvp", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvg", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvs", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvM", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC5themeAA0D5ThemeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvp", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvg", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvs", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvM", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC4modeAA0D4ModeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "quality", + "printedName": "quality", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvp", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvg", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvs", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvM", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC7qualityAA0D7QualityOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "orientation", + "printedName": "orientation", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvp", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvg", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvs", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvM", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC11orientationAA0D11OrientationOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(layout:theme:mode:quality:orientation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingConfig", + "printedName": "VideoSDKRTC.RecordingConfig", + "usr": "s:11VideoSDKRTC15RecordingConfigC" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + }, + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + }, + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + }, + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + }, + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC15RecordingConfigC6layout5theme4mode7quality11orientationAcA0D6LayoutC_AA0D5ThemeOAA0D4ModeOAA0D7QualityOAA0D11OrientationOtcfc", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC6layout5theme4mode7quality11orientationAcA0D6LayoutC_AA0D5ThemeOAA0D4ModeOAA0D7QualityOAA0D11OrientationOtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "toJson", + "printedName": "toJson()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15RecordingConfigC6toJsonSDySSypGyF", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC6toJsonSDySSypGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC15RecordingConfigC", + "mangledName": "$s11VideoSDKRTC15RecordingConfigC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "HLSUrl", + "printedName": "HLSUrl", + "children": [ + { + "kind": "Var", + "name": "downstreamUrl", + "printedName": "downstreamUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6HLSUrlC13downstreamUrlSSvp", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13downstreamUrlSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC13downstreamUrlSSvg", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13downstreamUrlSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC13downstreamUrlSSvs", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13downstreamUrlSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC13downstreamUrlSSvM", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13downstreamUrlSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "playbackHlsUrl", + "printedName": "playbackHlsUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvp", + "mangledName": "$s11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvg", + "mangledName": "$s11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvs", + "mangledName": "$s11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvM", + "mangledName": "$s11VideoSDKRTC6HLSUrlC14playbackHlsUrlSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "livestreamUrl", + "printedName": "livestreamUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6HLSUrlC13livestreamUrlSSvp", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13livestreamUrlSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC13livestreamUrlSSvg", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13livestreamUrlSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC13livestreamUrlSSvs", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13livestreamUrlSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6HLSUrlC13livestreamUrlSSvM", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13livestreamUrlSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(downstreamUrl:playbackHlsUrl:livestreamUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSUrl", + "printedName": "VideoSDKRTC.HLSUrl", + "usr": "s:11VideoSDKRTC6HLSUrlC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6HLSUrlC13downstreamUrl011playbackHlsE0010livestreamE0ACSSSg_A2Gtcfc", + "mangledName": "$s11VideoSDKRTC6HLSUrlC13downstreamUrl011playbackHlsE0010livestreamE0ACSSSg_A2Gtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "toJson", + "printedName": "toJson()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6HLSUrlC6toJsonSDySSypGyF", + "mangledName": "$s11VideoSDKRTC6HLSUrlC6toJsonSDySSypGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC6HLSUrlC", + "mangledName": "$s11VideoSDKRTC6HLSUrlC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigLayout", + "printedName": "ConfigLayout", + "children": [ + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvp", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvg", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvs", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvM", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC4typeAA0cD4GridOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "priority", + "printedName": "priority", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvp", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvg", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvs", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvM", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8priorityAA0cD8PriorityOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "gridSize", + "printedName": "gridSize", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8gridSizeSivp", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8gridSizeSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8gridSizeSivg", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8gridSizeSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8gridSizeSivs", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8gridSizeSivs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC8gridSizeSivM", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC8gridSizeSivM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(type:priority:gridSize:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayout", + "printedName": "VideoSDKRTC.ConfigLayout", + "usr": "s:11VideoSDKRTC12ConfigLayoutC" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + }, + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC12ConfigLayoutC4type8priority8gridSizeAcA0cD4GridO_AA0cD8PriorityOSitcfc", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC4type8priority8gridSizeAcA0cD4GridO_AA0cD8PriorityOSitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "toJson", + "printedName": "toJson()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ConfigLayoutC6toJsonSDySSypGyF", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC6toJsonSDySSypGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC12ConfigLayoutC", + "mangledName": "$s11VideoSDKRTC12ConfigLayoutC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigLayoutPriority", + "printedName": "ConfigLayoutPriority", + "children": [ + { + "kind": "Var", + "name": "SPEAKER", + "printedName": "SPEAKER", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigLayoutPriority.Type) -> VideoSDKRTC.ConfigLayoutPriority", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigLayoutPriority.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO7SPEAKERyA2CmF", + "mangledName": "$s11VideoSDKRTC20ConfigLayoutPriorityO7SPEAKERyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "PIN", + "printedName": "PIN", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigLayoutPriority.Type) -> VideoSDKRTC.ConfigLayoutPriority", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigLayoutPriority.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO3PINyA2CmF", + "mangledName": "$s11VideoSDKRTC20ConfigLayoutPriorityO3PINyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ConfigLayoutPriority?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutPriority", + "printedName": "VideoSDKRTC.ConfigLayoutPriority", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC20ConfigLayoutPriorityO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC20ConfigLayoutPriorityO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC20ConfigLayoutPriorityO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC20ConfigLayoutPriorityO", + "mangledName": "$s11VideoSDKRTC20ConfigLayoutPriorityO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigLayoutGrid", + "printedName": "ConfigLayoutGrid", + "children": [ + { + "kind": "Var", + "name": "GRID", + "printedName": "GRID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigLayoutGrid.Type) -> VideoSDKRTC.ConfigLayoutGrid", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigLayoutGrid.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO4GRIDyA2CmF", + "mangledName": "$s11VideoSDKRTC16ConfigLayoutGridO4GRIDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "SPOTLIGHT", + "printedName": "SPOTLIGHT", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigLayoutGrid.Type) -> VideoSDKRTC.ConfigLayoutGrid", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigLayoutGrid.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO9SPOTLIGHTyA2CmF", + "mangledName": "$s11VideoSDKRTC16ConfigLayoutGridO9SPOTLIGHTyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "SIDEBAR", + "printedName": "SIDEBAR", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigLayoutGrid.Type) -> VideoSDKRTC.ConfigLayoutGrid", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigLayoutGrid.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO7SIDEBARyA2CmF", + "mangledName": "$s11VideoSDKRTC16ConfigLayoutGridO7SIDEBARyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ConfigLayoutGrid?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigLayoutGrid", + "printedName": "VideoSDKRTC.ConfigLayoutGrid", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC16ConfigLayoutGridO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC16ConfigLayoutGridO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC16ConfigLayoutGridO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC16ConfigLayoutGridO", + "mangledName": "$s11VideoSDKRTC16ConfigLayoutGridO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigTheme", + "printedName": "ConfigTheme", + "children": [ + { + "kind": "Var", + "name": "DEFAULT", + "printedName": "DEFAULT", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigTheme.Type) -> VideoSDKRTC.ConfigTheme", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigTheme.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC11ConfigThemeO7DEFAULTyA2CmF", + "mangledName": "$s11VideoSDKRTC11ConfigThemeO7DEFAULTyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "LIGHT", + "printedName": "LIGHT", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigTheme.Type) -> VideoSDKRTC.ConfigTheme", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigTheme.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC11ConfigThemeO5LIGHTyA2CmF", + "mangledName": "$s11VideoSDKRTC11ConfigThemeO5LIGHTyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "DARK", + "printedName": "DARK", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigTheme.Type) -> VideoSDKRTC.ConfigTheme", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigTheme.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC11ConfigThemeO4DARKyA2CmF", + "mangledName": "$s11VideoSDKRTC11ConfigThemeO4DARKyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ConfigTheme?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigTheme", + "printedName": "VideoSDKRTC.ConfigTheme", + "usr": "s:11VideoSDKRTC11ConfigThemeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC11ConfigThemeO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC11ConfigThemeO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ConfigThemeO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC11ConfigThemeO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ConfigThemeO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC11ConfigThemeO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC11ConfigThemeO", + "mangledName": "$s11VideoSDKRTC11ConfigThemeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigMode", + "printedName": "ConfigMode", + "children": [ + { + "kind": "Var", + "name": "video_and_audio", + "printedName": "video_and_audio", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigMode.Type) -> VideoSDKRTC.ConfigMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC10ConfigModeO15video_and_audioyA2CmF", + "mangledName": "$s11VideoSDKRTC10ConfigModeO15video_and_audioyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "audio", + "printedName": "audio", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigMode.Type) -> VideoSDKRTC.ConfigMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC10ConfigModeO5audioyA2CmF", + "mangledName": "$s11VideoSDKRTC10ConfigModeO5audioyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ConfigMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigMode", + "printedName": "VideoSDKRTC.ConfigMode", + "usr": "s:11VideoSDKRTC10ConfigModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10ConfigModeO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC10ConfigModeO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10ConfigModeO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC10ConfigModeO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10ConfigModeO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC10ConfigModeO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC10ConfigModeO", + "mangledName": "$s11VideoSDKRTC10ConfigModeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigQuality", + "printedName": "ConfigQuality", + "children": [ + { + "kind": "Var", + "name": "high", + "printedName": "high", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigQuality.Type) -> VideoSDKRTC.ConfigQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC13ConfigQualityO4highyA2CmF", + "mangledName": "$s11VideoSDKRTC13ConfigQualityO4highyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "med", + "printedName": "med", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigQuality.Type) -> VideoSDKRTC.ConfigQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC13ConfigQualityO3medyA2CmF", + "mangledName": "$s11VideoSDKRTC13ConfigQualityO3medyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "low", + "printedName": "low", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigQuality.Type) -> VideoSDKRTC.ConfigQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC13ConfigQualityO3lowyA2CmF", + "mangledName": "$s11VideoSDKRTC13ConfigQualityO3lowyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ConfigQuality?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigQuality", + "printedName": "VideoSDKRTC.ConfigQuality", + "usr": "s:11VideoSDKRTC13ConfigQualityO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC13ConfigQualityO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC13ConfigQualityO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13ConfigQualityO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC13ConfigQualityO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13ConfigQualityO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC13ConfigQualityO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC13ConfigQualityO", + "mangledName": "$s11VideoSDKRTC13ConfigQualityO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigOrientation", + "printedName": "ConfigOrientation", + "children": [ + { + "kind": "Var", + "name": "landscape", + "printedName": "landscape", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigOrientation.Type) -> VideoSDKRTC.ConfigOrientation", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigOrientation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17ConfigOrientationO9landscapeyA2CmF", + "mangledName": "$s11VideoSDKRTC17ConfigOrientationO9landscapeyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "portrait", + "printedName": "portrait", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ConfigOrientation.Type) -> VideoSDKRTC.ConfigOrientation", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ConfigOrientation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17ConfigOrientationO8portraityA2CmF", + "mangledName": "$s11VideoSDKRTC17ConfigOrientationO8portraityA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ConfigOrientation?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigOrientation", + "printedName": "VideoSDKRTC.ConfigOrientation", + "usr": "s:11VideoSDKRTC17ConfigOrientationO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17ConfigOrientationO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC17ConfigOrientationO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ConfigOrientationO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC17ConfigOrientationO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ConfigOrientationO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC17ConfigOrientationO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC17ConfigOrientationO", + "mangledName": "$s11VideoSDKRTC17ConfigOrientationO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IdGenerator", + "printedName": "IdGenerator", + "children": [ + { + "kind": "Function", + "name": "generateSpanId", + "printedName": "generateSpanId()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11IdGeneratorP012generateSpanC0AA0fC0VyF", + "mangledName": "$s11VideoSDKRTC11IdGeneratorP012generateSpanC0AA0fC0VyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.IdGenerator>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateTraceId", + "printedName": "generateTraceId()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11IdGeneratorP013generateTraceC0AA0fC0VyF", + "mangledName": "$s11VideoSDKRTC11IdGeneratorP013generateTraceC0AA0fC0VyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.IdGenerator>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC11IdGeneratorP", + "mangledName": "$s11VideoSDKRTC11IdGeneratorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "InMemoryLogRecordExporter", + "printedName": "InMemoryLogRecordExporter", + "children": [ + { + "kind": "Function", + "name": "getFinishedLogRecords", + "printedName": "getFinishedLogRecords()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InMemoryLogRecordExporterC011getFinishedE7RecordsSayAA08ReadableeF0VGyF", + "mangledName": "$s11VideoSDKRTC25InMemoryLogRecordExporterC011getFinishedE7RecordsSayAA08ReadableeF0VGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "export", + "printedName": "export(logRecords:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InMemoryLogRecordExporterC6export10logRecordsAA12ExportResultOSayAA08ReadableeF0VG_tF", + "mangledName": "$s11VideoSDKRTC25InMemoryLogRecordExporterC6export10logRecordsAA12ExportResultOSayAA08ReadableeF0VG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InMemoryLogRecordExporterC8shutdownyyF", + "mangledName": "$s11VideoSDKRTC25InMemoryLogRecordExporterC8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InMemoryLogRecordExporterC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC25InMemoryLogRecordExporterC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC25InMemoryLogRecordExporterC", + "mangledName": "$s11VideoSDKRTC25InMemoryLogRecordExporterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordExporter", + "printedName": "LogRecordExporter", + "usr": "s:11VideoSDKRTC17LogRecordExporterP", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Instrument", + "printedName": "Instrument", + "children": [ + { + "kind": "Var", + "name": "instrumentDescriptor", + "printedName": "instrumentDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10InstrumentP20instrumentDescriptorAA0cE0Vvp", + "mangledName": "$s11VideoSDKRTC10InstrumentP20instrumentDescriptorAA0cE0Vvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10InstrumentP20instrumentDescriptorAA0cE0Vvg", + "mangledName": "$s11VideoSDKRTC10InstrumentP20instrumentDescriptorAA0cE0Vvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Instrument>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10InstrumentPAAE2eeoiySbx_xtFZ", + "mangledName": "$s11VideoSDKRTC10InstrumentPAAE2eeoiySbx_xtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Instrument>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC10InstrumentP", + "mangledName": "$s11VideoSDKRTC10InstrumentP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : Swift.Equatable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "InstrumentationScopeInfo", + "printedName": "InstrumentationScopeInfo", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV4nameSSvp", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV4nameSSvg", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV7versionSSSgvp", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV7versionSSSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV7versionSSSgvg", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV7versionSSSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "schemaUrl", + "printedName": "schemaUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV9schemaUrlSSSgvp", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV9schemaUrlSSSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV9schemaUrlSSSgvg", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV9schemaUrlSSSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoVACycfc", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:version:schemaUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV4name7version9schemaUrlACSS_SSSgAGtcfc", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV4name7version9schemaUrlACSS_SSSgAGtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV", + "mangledName": "$s11VideoSDKRTC24InstrumentationScopeInfoV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "InstrumentDescriptor", + "printedName": "InstrumentDescriptor", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV4nameSSvp", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV4nameSSvg", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unit", + "printedName": "unit", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV4unitSSvp", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV4unitSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV4unitSSvg", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV4unitSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV4typeAA0C4TypeOvp", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV4typeAA0C4TypeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV4typeAA0C4TypeOvg", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV4typeAA0C4TypeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "valueType", + "printedName": "valueType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV9valueTypeAA0c5ValueF0Ovp", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV9valueTypeAA0c5ValueF0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV9valueTypeAA0c5ValueF0Ovg", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV9valueTypeAA0c5ValueF0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:description:unit:type:valueType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV4name11description4unit4type9valueTypeACSS_S2SAA0cJ0OAA0c5ValueJ0Otcfc", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV4name11description4unit4type9valueTypeACSS_S2SAA0cJ0OAA0c5ValueJ0Otcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV", + "mangledName": "$s11VideoSDKRTC20InstrumentDescriptorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "InstrumentSelector", + "printedName": "InstrumentSelector", + "children": [ + { + "kind": "Function", + "name": "builder", + "printedName": "builder()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentSelectorBuilder", + "printedName": "VideoSDKRTC.InstrumentSelectorBuilder", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18InstrumentSelectorC7builderAA0cD7BuilderCyFZ", + "mangledName": "$s11VideoSDKRTC18InstrumentSelectorC7builderAA0cD7BuilderCyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18InstrumentSelectorC", + "mangledName": "$s11VideoSDKRTC18InstrumentSelectorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "InstrumentSelectorBuilder", + "printedName": "InstrumentSelectorBuilder", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentSelectorBuilder", + "printedName": "VideoSDKRTC.InstrumentSelectorBuilder", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderCACycfc", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setInstrument", + "printedName": "setInstrument(type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC03setC04typeACXDAA0C4TypeO_tF", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderC03setC04typeACXDAA0C4TypeO_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setInstrument", + "printedName": "setInstrument(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC03setC04nameACXDSS_tF", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderC03setC04nameACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setMeter", + "printedName": "setMeter(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC8setMeter4nameACXDSS_tF", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderC8setMeter4nameACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setMeter", + "printedName": "setMeter(version:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC8setMeter7versionACXDSS_tF", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderC8setMeter7versionACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setMeter", + "printedName": "setMeter(schemaUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC8setMeter9schemaUrlACXDSS_tF", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderC8setMeter9schemaUrlACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentSelector", + "printedName": "VideoSDKRTC.InstrumentSelector", + "usr": "s:11VideoSDKRTC18InstrumentSelectorC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC5buildAA0cD0CyF", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderC5buildAA0cD0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC25InstrumentSelectorBuilderC", + "mangledName": "$s11VideoSDKRTC25InstrumentSelectorBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "InstrumentType", + "printedName": "InstrumentType", + "children": [ + { + "kind": "Var", + "name": "counter", + "printedName": "counter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType.Type) -> VideoSDKRTC.InstrumentType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14InstrumentTypeO7counteryA2CmF", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO7counteryA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "upDownCounter", + "printedName": "upDownCounter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType.Type) -> VideoSDKRTC.InstrumentType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14InstrumentTypeO13upDownCounteryA2CmF", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO13upDownCounteryA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "histogram", + "printedName": "histogram", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType.Type) -> VideoSDKRTC.InstrumentType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14InstrumentTypeO9histogramyA2CmF", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO9histogramyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "observableCounter", + "printedName": "observableCounter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType.Type) -> VideoSDKRTC.InstrumentType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14InstrumentTypeO17observableCounteryA2CmF", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO17observableCounteryA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "observableUpDownCounter", + "printedName": "observableUpDownCounter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType.Type) -> VideoSDKRTC.InstrumentType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14InstrumentTypeO23observableUpDownCounteryA2CmF", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO23observableUpDownCounteryA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "observableGauge", + "printedName": "observableGauge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentType.Type) -> VideoSDKRTC.InstrumentType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14InstrumentTypeO15observableGaugeyA2CmF", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO15observableGaugeyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14InstrumentTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14InstrumentTypeO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14InstrumentTypeO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14InstrumentTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.InstrumentType]", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14InstrumentTypeO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.InstrumentType]", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14InstrumentTypeO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC14InstrumentTypeO", + "mangledName": "$s11VideoSDKRTC14InstrumentTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.InstrumentType]", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "InstrumentValueType", + "printedName": "InstrumentValueType", + "children": [ + { + "kind": "Var", + "name": "long", + "printedName": "long", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentValueType.Type) -> VideoSDKRTC.InstrumentValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentValueType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO4longyA2CmF", + "mangledName": "$s11VideoSDKRTC19InstrumentValueTypeO4longyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "double", + "printedName": "double", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.InstrumentValueType.Type) -> VideoSDKRTC.InstrumentValueType", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.InstrumentValueType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO6doubleyA2CmF", + "mangledName": "$s11VideoSDKRTC19InstrumentValueTypeO6doubleyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentValueType", + "printedName": "VideoSDKRTC.InstrumentValueType", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC19InstrumentValueTypeO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO04hashD0Sivp", + "mangledName": "$s11VideoSDKRTC19InstrumentValueTypeO04hashD0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO04hashD0Sivg", + "mangledName": "$s11VideoSDKRTC19InstrumentValueTypeO04hashD0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC19InstrumentValueTypeO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC19InstrumentValueTypeO", + "mangledName": "$s11VideoSDKRTC19InstrumentValueTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Internal", + "printedName": "Internal", + "children": [ + { + "kind": "Var", + "name": "emptyData", + "printedName": "emptyData", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8InternalO9emptyData10Foundation0E0VvpZ", + "mangledName": "$s11VideoSDKRTC8InternalO9emptyData10Foundation0E0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8InternalO9emptyData10Foundation0E0VvgZ", + "mangledName": "$s11VideoSDKRTC8InternalO9emptyData10Foundation0E0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "areAllInitialized", + "printedName": "areAllInitialized(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Message]", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8InternalO17areAllInitializedySbSayAA7Message_pGFZ", + "mangledName": "$s11VideoSDKRTC8InternalO17areAllInitializedySbSayAA7Message_pGFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "areAllInitialized", + "printedName": "areAllInitialized(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_0_0 : VideoSDKRTC.Message]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8InternalO17areAllInitializedySbSDyxAA7Message_pGSHRzlFZ", + "mangledName": "$s11VideoSDKRTC8InternalO17areAllInitializedySbSDyxAA7Message_pGSHRzlFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC8InternalO", + "mangledName": "$s11VideoSDKRTC8InternalO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IntObserverMetric", + "printedName": "IntObserverMetric", + "children": [ + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17IntObserverMetricP7observe5value8labelsetySi_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC17IntObserverMetricP7observe5value8labelsetySi_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.IntObserverMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17IntObserverMetricP7observe5value6labelsySi_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC17IntObserverMetricP7observe5value6labelsySi_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.IntObserverMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC17IntObserverMetricP", + "mangledName": "$s11VideoSDKRTC17IntObserverMetricP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "NoopIntObserverMetric", + "printedName": "NoopIntObserverMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopIntObserverMetric", + "printedName": "VideoSDKRTC.NoopIntObserverMetric", + "usr": "s:11VideoSDKRTC21NoopIntObserverMetricV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21NoopIntObserverMetricVACycfc", + "mangledName": "$s11VideoSDKRTC21NoopIntObserverMetricVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopIntObserverMetricV7observe5value8labelsetySi_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC21NoopIntObserverMetricV7observe5value8labelsetySi_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observe", + "printedName": "observe(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopIntObserverMetricV7observe5value6labelsySi_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC21NoopIntObserverMetricV7observe5value6labelsySi_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC21NoopIntObserverMetricV", + "mangledName": "$s11VideoSDKRTC21NoopIntObserverMetricV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "IntObserverMetric", + "printedName": "IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP", + "mangledName": "$s11VideoSDKRTC17IntObserverMetricP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Darwin", + "printedName": "Darwin", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreMedia", + "printedName": "CoreMedia", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "JSONDecodingError", + "printedName": "JSONDecodingError", + "children": [ + { + "kind": "Var", + "name": "failure", + "printedName": "failure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO7failureyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO7failureyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedNumber", + "printedName": "malformedNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO15malformedNumberyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO15malformedNumberyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "numberRange", + "printedName": "numberRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO11numberRangeyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO11numberRangeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedMap", + "printedName": "malformedMap", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO12malformedMapyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO12malformedMapyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedBool", + "printedName": "malformedBool", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO13malformedBoolyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO13malformedBoolyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedString", + "printedName": "malformedString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO15malformedStringyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO15malformedStringyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "invalidUTF8", + "printedName": "invalidUTF8", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO11invalidUTF8yA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO11invalidUTF8yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "missingFieldNames", + "printedName": "missingFieldNames", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO17missingFieldNamesyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO17missingFieldNamesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "schemaMismatch", + "printedName": "schemaMismatch", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO14schemaMismatchyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO14schemaMismatchyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unrecognizedEnumValue", + "printedName": "unrecognizedEnumValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO21unrecognizedEnumValueyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO21unrecognizedEnumValueyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "illegalNull", + "printedName": "illegalNull", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO11illegalNullyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO11illegalNullyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unquotedMapKey", + "printedName": "unquotedMapKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO14unquotedMapKeyyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO14unquotedMapKeyyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "leadingZero", + "printedName": "leadingZero", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO11leadingZeroyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO11leadingZeroyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "truncated", + "printedName": "truncated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO9truncatedyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO9truncatedyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedDuration", + "printedName": "malformedDuration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO17malformedDurationyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO17malformedDurationyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedTimestamp", + "printedName": "malformedTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO18malformedTimestampyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO18malformedTimestampyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedFieldMask", + "printedName": "malformedFieldMask", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO18malformedFieldMaskyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO18malformedFieldMaskyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "trailingGarbage", + "printedName": "trailingGarbage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO15trailingGarbageyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO15trailingGarbageyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "conflictingOneOf", + "printedName": "conflictingOneOf", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO16conflictingOneOfyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO16conflictingOneOfyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messageDepthLimit", + "printedName": "messageDepthLimit", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO17messageDepthLimityA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO17messageDepthLimityA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unknownField", + "printedName": "unknownField", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONDecodingError.Type) -> (Swift.String) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideoSDKRTC.JSONDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingError", + "printedName": "VideoSDKRTC.JSONDecodingError", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO12unknownFieldyACSScACmF", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO12unknownFieldyACSScACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC17JSONDecodingErrorO", + "mangledName": "$s11VideoSDKRTC17JSONDecodingErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "JSONDecodingOptions", + "printedName": "JSONDecodingOptions", + "children": [ + { + "kind": "Var", + "name": "messageDepthLimit", + "printedName": "messageDepthLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivp", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivg", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivs", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivM", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV17messageDepthLimitSivM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ignoreUnknownFields", + "printedName": "ignoreUnknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvp", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvg", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvs", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvM", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV19ignoreUnknownFieldsSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV", + "mangledName": "$s11VideoSDKRTC19JSONDecodingOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "JSONEncodingError", + "printedName": "JSONEncodingError", + "children": [ + { + "kind": "Var", + "name": "anyTranscodeFailure", + "printedName": "anyTranscodeFailure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONEncodingError.Type) -> VideoSDKRTC.JSONEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO19anyTranscodeFailureyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO19anyTranscodeFailureyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "timestampRange", + "printedName": "timestampRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONEncodingError.Type) -> VideoSDKRTC.JSONEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO14timestampRangeyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO14timestampRangeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "durationRange", + "printedName": "durationRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONEncodingError.Type) -> VideoSDKRTC.JSONEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO13durationRangeyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO13durationRangeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fieldMaskConversion", + "printedName": "fieldMaskConversion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONEncodingError.Type) -> VideoSDKRTC.JSONEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO19fieldMaskConversionyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO19fieldMaskConversionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "missingFieldNames", + "printedName": "missingFieldNames", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONEncodingError.Type) -> VideoSDKRTC.JSONEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO17missingFieldNamesyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO17missingFieldNamesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "missingValue", + "printedName": "missingValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONEncodingError.Type) -> VideoSDKRTC.JSONEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO12missingValueyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO12missingValueyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "valueNumberNotFinite", + "printedName": "valueNumberNotFinite", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.JSONEncodingError.Type) -> VideoSDKRTC.JSONEncodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.JSONEncodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO20valueNumberNotFiniteyA2CmF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO20valueNumberNotFiniteyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingError", + "printedName": "VideoSDKRTC.JSONEncodingError", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC17JSONEncodingErrorO", + "mangledName": "$s11VideoSDKRTC17JSONEncodingErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "JSONEncodingOptions", + "printedName": "JSONEncodingOptions", + "children": [ + { + "kind": "Var", + "name": "alwaysPrintInt64sAsNumbers", + "printedName": "alwaysPrintInt64sAsNumbers", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvp", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvg", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvs", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvM", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV26alwaysPrintInt64sAsNumbersSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "alwaysPrintEnumsAsInts", + "printedName": "alwaysPrintEnumsAsInts", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvp", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvg", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvs", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvM", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV22alwaysPrintEnumsAsIntsSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "preserveProtoFieldNames", + "printedName": "preserveProtoFieldNames", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvp", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvg", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvs", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvM", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV23preserveProtoFieldNamesSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncodingOptions", + "printedName": "VideoSDKRTC.JSONEncodingOptions", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV", + "mangledName": "$s11VideoSDKRTC19JSONEncodingOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LabelSet", + "printedName": "LabelSet", + "children": [ + { + "kind": "Var", + "name": "labels", + "printedName": "labels", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8LabelSetC6labelsSDyS2SGvp", + "mangledName": "$s11VideoSDKRTC8LabelSetC6labelsSDyS2SGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8LabelSetC6labelsSDyS2SGvg", + "mangledName": "$s11VideoSDKRTC8LabelSetC6labelsSDyS2SGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "empty", + "printedName": "empty", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8LabelSetC5emptyACvpZ", + "mangledName": "$s11VideoSDKRTC8LabelSetC5emptyACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8LabelSetC5emptyACvgZ", + "mangledName": "$s11VideoSDKRTC8LabelSetC5emptyACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8LabelSetC5emptyACvsZ", + "mangledName": "$s11VideoSDKRTC8LabelSetC5emptyACvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8LabelSetC5emptyACvMZ", + "mangledName": "$s11VideoSDKRTC8LabelSetC5emptyACvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8LabelSetC6labelsACSDyS2SG_tcfc", + "mangledName": "$s11VideoSDKRTC8LabelSetC6labelsACSDyS2SG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Required", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8LabelSetC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC8LabelSetC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8LabelSetC4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC8LabelSetC4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8LabelSetC9hashValueSivp", + "mangledName": "$s11VideoSDKRTC8LabelSetC9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isOpen": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8LabelSetC9hashValueSivg", + "mangledName": "$s11VideoSDKRTC8LabelSetC9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC8LabelSetC", + "mangledName": "$s11VideoSDKRTC8LabelSetC", + "moduleName": "VideoSDKRTC", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LastValueAggregation", + "printedName": "LastValueAggregation", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "LastValueAggregation", + "printedName": "VideoSDKRTC.LastValueAggregation", + "usr": "s:11VideoSDKRTC20LastValueAggregationC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20LastValueAggregationC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC20LastValueAggregationC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LastValueAggregation", + "printedName": "VideoSDKRTC.LastValueAggregation", + "usr": "s:11VideoSDKRTC20LastValueAggregationC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20LastValueAggregationC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC20LastValueAggregationC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createAggregator", + "printedName": "createAggregator(descriptor:exemplarFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableAggregator", + "printedName": "VideoSDKRTC.StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20LastValueAggregationC16createAggregator10descriptor14exemplarFilterAA06StableG0_pAA20InstrumentDescriptorV_AA08ExemplarJ0_ptF", + "mangledName": "$s11VideoSDKRTC20LastValueAggregationC16createAggregator10descriptor14exemplarFilterAA06StableG0_pAA20InstrumentDescriptorV_AA08ExemplarJ0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isCompatible", + "printedName": "isCompatible(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20LastValueAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "mangledName": "$s11VideoSDKRTC20LastValueAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20LastValueAggregationC", + "mangledName": "$s11VideoSDKRTC20LastValueAggregationC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Aggregation", + "printedName": "Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP", + "mangledName": "$s11VideoSDKRTC11AggregationP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LastValueAggregator", + "printedName": "LastValueAggregator", + "children": [ + { + "kind": "Function", + "name": "update", + "printedName": "update(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LastValueAggregatorC6update5valueyx_tF", + "mangledName": "$s11VideoSDKRTC19LastValueAggregatorC6update5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkpoint", + "printedName": "checkpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LastValueAggregatorC10checkpointyyF", + "mangledName": "$s11VideoSDKRTC19LastValueAggregatorC10checkpointyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LastValueAggregatorC12toMetricDataAA0gH0_pyF", + "mangledName": "$s11VideoSDKRTC19LastValueAggregatorC12toMetricDataAA0gH0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAggregationType", + "printedName": "getAggregationType()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LastValueAggregatorC18getAggregationTypeAA0gH0OyF", + "mangledName": "$s11VideoSDKRTC19LastValueAggregatorC18getAggregationTypeAA0gH0OyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19LastValueAggregatorC", + "mangledName": "$s11VideoSDKRTC19LastValueAggregatorC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:11VideoSDKRTC10AggregatorC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.Aggregator<τ_0_0>" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LivestreamOutput", + "printedName": "LivestreamOutput", + "children": [ + { + "kind": "Var", + "name": "url", + "printedName": "url", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16LivestreamOutputV3urlSSvp", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV3urlSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16LivestreamOutputV3urlSSvg", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV3urlSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "streamKey", + "printedName": "streamKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16LivestreamOutputV9streamKeySSvp", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV9streamKeySSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16LivestreamOutputV9streamKeySSvg", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV9streamKeySSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(url:streamKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LivestreamOutput", + "printedName": "VideoSDKRTC.LivestreamOutput", + "usr": "s:11VideoSDKRTC16LivestreamOutputV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16LivestreamOutputV3url9streamKeyACSS_SStcfc", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV3url9streamKeyACSS_SStcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LivestreamOutput", + "printedName": "VideoSDKRTC.LivestreamOutput", + "usr": "s:11VideoSDKRTC16LivestreamOutputV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16LivestreamOutputV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LivestreamOutputV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16LivestreamOutputV", + "mangledName": "$s11VideoSDKRTC16LivestreamOutputV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Darwin", + "printedName": "Darwin", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Logger", + "printedName": "Logger", + "children": [ + { + "kind": "Function", + "name": "eventBuilder", + "printedName": "eventBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "EventBuilder", + "printedName": "VideoSDKRTC.EventBuilder", + "usr": "s:11VideoSDKRTC12EventBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6LoggerP12eventBuilder4nameAA05EventE0_pSS_tF", + "mangledName": "$s11VideoSDKRTC6LoggerP12eventBuilder4nameAA05EventE0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Logger>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logRecordBuilder", + "printedName": "logRecordBuilder()", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordBuilder", + "printedName": "VideoSDKRTC.LogRecordBuilder", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6LoggerP16logRecordBuilderAA03LogeF0_pyF", + "mangledName": "$s11VideoSDKRTC6LoggerP16logRecordBuilderAA03LogeF0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Logger>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC6LoggerP", + "mangledName": "$s11VideoSDKRTC6LoggerP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoggerBuilder", + "printedName": "LoggerBuilder", + "children": [ + { + "kind": "Function", + "name": "setEventDomain", + "printedName": "setEventDomain(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LoggerBuilderP14setEventDomainyxSSF", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP14setEventDomainyxSSF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSchemaUrl", + "printedName": "setSchemaUrl(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LoggerBuilderP12setSchemaUrlyxSSF", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP12setSchemaUrlyxSSF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setInstrumentationVersion", + "printedName": "setInstrumentationVersion(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LoggerBuilderP25setInstrumentationVersionyxSSF", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP25setInstrumentationVersionyxSSF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setIncludeTraceContext", + "printedName": "setIncludeTraceContext(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LoggerBuilderP22setIncludeTraceContextyxSbF", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP22setIncludeTraceContextyxSbF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttributes", + "printedName": "setAttributes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LoggerBuilderP13setAttributesyxSDySSAA14AttributeValueOGF", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP13setAttributesyxSDySSAA14AttributeValueOGF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "VideoSDKRTC.Logger", + "usr": "s:11VideoSDKRTC6LoggerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LoggerBuilderP5buildAA0C0_pyF", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP5buildAA0C0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13LoggerBuilderP", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoggerBuilderSdk", + "printedName": "LoggerBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "setEventDomain", + "printedName": "setEventDomain(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LoggerBuilderSdkC14setEventDomainyACXDSSF", + "mangledName": "$s11VideoSDKRTC16LoggerBuilderSdkC14setEventDomainyACXDSSF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSchemaUrl", + "printedName": "setSchemaUrl(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LoggerBuilderSdkC12setSchemaUrlyACXDSSF", + "mangledName": "$s11VideoSDKRTC16LoggerBuilderSdkC12setSchemaUrlyACXDSSF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setInstrumentationVersion", + "printedName": "setInstrumentationVersion(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LoggerBuilderSdkC25setInstrumentationVersionyACXDSSF", + "mangledName": "$s11VideoSDKRTC16LoggerBuilderSdkC25setInstrumentationVersionyACXDSSF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setIncludeTraceContext", + "printedName": "setIncludeTraceContext(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LoggerBuilderSdkC22setIncludeTraceContextyACXDSbF", + "mangledName": "$s11VideoSDKRTC16LoggerBuilderSdkC22setIncludeTraceContextyACXDSbF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttributes", + "printedName": "setAttributes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LoggerBuilderSdkC13setAttributesyACXDSDySSAA14AttributeValueOGF", + "mangledName": "$s11VideoSDKRTC16LoggerBuilderSdkC13setAttributesyACXDSDySSAA14AttributeValueOGF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "VideoSDKRTC.Logger", + "usr": "s:11VideoSDKRTC6LoggerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LoggerBuilderSdkC5buildAA0C0_pyF", + "mangledName": "$s11VideoSDKRTC16LoggerBuilderSdkC5buildAA0C0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16LoggerBuilderSdkC", + "mangledName": "$s11VideoSDKRTC16LoggerBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LoggerBuilder", + "printedName": "LoggerBuilder", + "usr": "s:11VideoSDKRTC13LoggerBuilderP", + "mangledName": "$s11VideoSDKRTC13LoggerBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoggerProvider", + "printedName": "LoggerProvider", + "children": [ + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationScopeName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "VideoSDKRTC.Logger", + "usr": "s:11VideoSDKRTC6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14LoggerProviderP3get24instrumentationScopeNameAA0C0_pSS_tF", + "mangledName": "$s11VideoSDKRTC14LoggerProviderP3get24instrumentationScopeNameAA0C0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerProvider>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loggerBuilder", + "printedName": "loggerBuilder(instrumentationScopeName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerBuilder", + "printedName": "VideoSDKRTC.LoggerBuilder", + "usr": "s:11VideoSDKRTC13LoggerBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14LoggerProviderP13loggerBuilder24instrumentationScopeNameAA0cF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC14LoggerProviderP13loggerBuilder24instrumentationScopeNameAA0cF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LoggerProvider>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14LoggerProviderP", + "mangledName": "$s11VideoSDKRTC14LoggerProviderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoggerProviderBuilder", + "printedName": "LoggerProviderBuilder", + "children": [ + { + "kind": "Var", + "name": "clock", + "printedName": "clock", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC5clockAA5Clock_pvp", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC5clockAA5Clock_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC5clockAA5Clock_pvg", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC5clockAA5Clock_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "logLimits", + "printedName": "logLimits", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLimits", + "printedName": "VideoSDKRTC.LogLimits", + "usr": "s:11VideoSDKRTC9LogLimitsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC9logLimitsAA03LogG0Vvp", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC9logLimitsAA03LogG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLimits", + "printedName": "VideoSDKRTC.LogLimits", + "usr": "s:11VideoSDKRTC9LogLimitsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC9logLimitsAA03LogG0Vvg", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC9logLimitsAA03LogG0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "logProcessors", + "printedName": "logProcessors", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.LogRecordProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordProcessor", + "printedName": "VideoSDKRTC.LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC13logProcessorsSayAA18LogRecordProcessor_pGvp", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC13logProcessorsSayAA18LogRecordProcessor_pGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.LogRecordProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordProcessor", + "printedName": "VideoSDKRTC.LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC13logProcessorsSayAA18LogRecordProcessor_pGvg", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC13logProcessorsSayAA18LogRecordProcessor_pGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerProviderBuilder", + "printedName": "VideoSDKRTC.LoggerProviderBuilder", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderCACycfc", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(clock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC4with5clockACXDAA5Clock_p_tF", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC4with5clockACXDAA5Clock_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(resource:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC4with8resourceACXDAA8ResourceV_tF", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC4with8resourceACXDAA8ResourceV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(logLimits:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "LogLimits", + "printedName": "VideoSDKRTC.LogLimits", + "usr": "s:11VideoSDKRTC9LogLimitsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC4with9logLimitsACXDAA03LogH0V_tF", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC4with9logLimitsACXDAA03LogH0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(processors:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.LogRecordProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordProcessor", + "printedName": "VideoSDKRTC.LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC4with10processorsACXDSayAA18LogRecordProcessor_pG_tF", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC4with10processorsACXDSayAA18LogRecordProcessor_pG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerProviderSdk", + "printedName": "VideoSDKRTC.LoggerProviderSdk", + "usr": "s:11VideoSDKRTC17LoggerProviderSdkC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC5buildAA0cD3SdkCyF", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC5buildAA0cD3SdkCyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21LoggerProviderBuilderC", + "mangledName": "$s11VideoSDKRTC21LoggerProviderBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoggerProviderSdk", + "printedName": "LoggerProviderSdk", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(clock:resource:logLimits:logRecordProcessors:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerProviderSdk", + "printedName": "VideoSDKRTC.LoggerProviderSdk", + "usr": "s:11VideoSDKRTC17LoggerProviderSdkC" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC5ClockP" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "LogLimits", + "printedName": "VideoSDKRTC.LogLimits", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC9LogLimitsV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.LogRecordProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordProcessor", + "printedName": "VideoSDKRTC.LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17LoggerProviderSdkC5clock8resource9logLimits0H16RecordProcessorsAcA5Clock_p_AA8ResourceVAA03LogI0VSayAA0nJ9Processor_pGtcfc", + "mangledName": "$s11VideoSDKRTC17LoggerProviderSdkC5clock8resource9logLimits0H16RecordProcessorsAcA5Clock_p_AA8ResourceVAA03LogI0VSayAA0nJ9Processor_pGtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationScopeName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "VideoSDKRTC.Logger", + "usr": "s:11VideoSDKRTC6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LoggerProviderSdkC3get24instrumentationScopeNameAA0C0_pSS_tF", + "mangledName": "$s11VideoSDKRTC17LoggerProviderSdkC3get24instrumentationScopeNameAA0C0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loggerBuilder", + "printedName": "loggerBuilder(instrumentationScopeName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerBuilder", + "printedName": "VideoSDKRTC.LoggerBuilder", + "usr": "s:11VideoSDKRTC13LoggerBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LoggerProviderSdkC13loggerBuilder24instrumentationScopeNameAA0cG0_pSS_tF", + "mangledName": "$s11VideoSDKRTC17LoggerProviderSdkC13loggerBuilder24instrumentationScopeNameAA0cG0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC17LoggerProviderSdkC", + "mangledName": "$s11VideoSDKRTC17LoggerProviderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LoggerProvider", + "printedName": "LoggerProvider", + "usr": "s:11VideoSDKRTC14LoggerProviderP", + "mangledName": "$s11VideoSDKRTC14LoggerProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "os.log", + "printedName": "os.log", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "LoggerSdk", + "printedName": "LoggerSdk", + "children": [ + { + "kind": "Function", + "name": "eventBuilder", + "printedName": "eventBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "EventBuilder", + "printedName": "VideoSDKRTC.EventBuilder", + "usr": "s:11VideoSDKRTC12EventBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9LoggerSdkC12eventBuilder4nameAA05EventF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC9LoggerSdkC12eventBuilder4nameAA05EventF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logRecordBuilder", + "printedName": "logRecordBuilder()", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordBuilder", + "printedName": "VideoSDKRTC.LogRecordBuilder", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9LoggerSdkC16logRecordBuilderAA03LogfG0_pyF", + "mangledName": "$s11VideoSDKRTC9LoggerSdkC16logRecordBuilderAA03LogfG0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC9LoggerSdkC", + "mangledName": "$s11VideoSDKRTC9LoggerSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Logger", + "printedName": "Logger", + "usr": "s:11VideoSDKRTC6LoggerP", + "mangledName": "$s11VideoSDKRTC6LoggerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LogLimits", + "printedName": "LogLimits", + "children": [ + { + "kind": "Var", + "name": "defaultMaxAttributeCount", + "printedName": "defaultMaxAttributeCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9LogLimitsV24defaultMaxAttributeCountSivpZ", + "mangledName": "$s11VideoSDKRTC9LogLimitsV24defaultMaxAttributeCountSivpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9LogLimitsV24defaultMaxAttributeCountSivgZ", + "mangledName": "$s11VideoSDKRTC9LogLimitsV24defaultMaxAttributeCountSivgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultMaxAtributeLength", + "printedName": "defaultMaxAtributeLength", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9LogLimitsV24defaultMaxAtributeLengthSivpZ", + "mangledName": "$s11VideoSDKRTC9LogLimitsV24defaultMaxAtributeLengthSivpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9LogLimitsV24defaultMaxAtributeLengthSivgZ", + "mangledName": "$s11VideoSDKRTC9LogLimitsV24defaultMaxAtributeLengthSivgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxAttributeCount", + "printedName": "maxAttributeCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9LogLimitsV17maxAttributeCountSivp", + "mangledName": "$s11VideoSDKRTC9LogLimitsV17maxAttributeCountSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9LogLimitsV17maxAttributeCountSivg", + "mangledName": "$s11VideoSDKRTC9LogLimitsV17maxAttributeCountSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxAttributeLength", + "printedName": "maxAttributeLength", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9LogLimitsV18maxAttributeLengthSivp", + "mangledName": "$s11VideoSDKRTC9LogLimitsV18maxAttributeLengthSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9LogLimitsV18maxAttributeLengthSivg", + "mangledName": "$s11VideoSDKRTC9LogLimitsV18maxAttributeLengthSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(maxAttributeCount:maxAttributeLength:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLimits", + "printedName": "VideoSDKRTC.LogLimits", + "usr": "s:11VideoSDKRTC9LogLimitsV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC9LogLimitsV17maxAttributeCount0eF6LengthACSi_Sitcfc", + "mangledName": "$s11VideoSDKRTC9LogLimitsV17maxAttributeCount0eF6LengthACSi_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC9LogLimitsV", + "mangledName": "$s11VideoSDKRTC9LogLimitsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LogRecordAdapter", + "printedName": "LogRecordAdapter", + "children": [ + { + "kind": "Function", + "name": "toProtoResourceRecordLog", + "printedName": "toProtoResourceRecordLog(logRecordList:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordAdapterC015toProtoResourcedC003logD4ListSayAA014Opentelemetry_g9_Logs_V1_hL0VGSayAA08ReadablecD0VG_tFZ", + "mangledName": "$s11VideoSDKRTC16LogRecordAdapterC015toProtoResourcedC003logD4ListSayAA014Opentelemetry_g9_Logs_V1_hL0VGSayAA08ReadablecD0VG_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16LogRecordAdapterC", + "mangledName": "$s11VideoSDKRTC16LogRecordAdapterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LogRecordBuilder", + "printedName": "LogRecordBuilder", + "children": [ + { + "kind": "Function", + "name": "setTimestamp", + "printedName": "setTimestamp(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP12setTimestampyx10Foundation4DateVF", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP12setTimestampyx10Foundation4DateVF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setObservedTimestamp", + "printedName": "setObservedTimestamp(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP20setObservedTimestampyx10Foundation4DateVF", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP20setObservedTimestampyx10Foundation4DateVF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSpanContext", + "printedName": "setSpanContext(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP14setSpanContextyxAA0gH0VF", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP14setSpanContextyxAA0gH0VF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSeverity", + "printedName": "setSeverity(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP11setSeverityyxAA0G0OF", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP11setSeverityyxAA0G0OF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setBody", + "printedName": "setBody(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP7setBodyyxSSF", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP7setBodyyxSSF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttributes", + "printedName": "setAttributes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP13setAttributesyxSDySSAA14AttributeValueOGF", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP13setAttributesyxSDySSAA14AttributeValueOGF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "emit", + "printedName": "emit()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP4emityyF", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP4emityyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LogRecordBuilderSdk", + "printedName": "LogRecordBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "setTimestamp", + "printedName": "setTimestamp(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC12setTimestampyACXD10Foundation4DateVF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC12setTimestampyACXD10Foundation4DateVF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setObservedTimestamp", + "printedName": "setObservedTimestamp(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC20setObservedTimestampyACXD10Foundation4DateVF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC20setObservedTimestampyACXD10Foundation4DateVF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSpanContext", + "printedName": "setSpanContext(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC14setSpanContextyACXDAA0hI0VF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC14setSpanContextyACXDAA0hI0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSeverity", + "printedName": "setSeverity(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC11setSeverityyACXDAA0H0OF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC11setSeverityyACXDAA0H0OF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setBody", + "printedName": "setBody(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC7setBodyyACXDSSF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC7setBodyyACXDSSF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttributes", + "printedName": "setAttributes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC13setAttributesyACXDSDySSAA14AttributeValueOGF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC13setAttributesyACXDSDySSAA14AttributeValueOGF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setData", + "printedName": "setData(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC7setDatayACXDSDySSAA14AttributeValueOGF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC7setDatayACXDSDySSAA14AttributeValueOGF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "emit", + "printedName": "emit()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC4emityyF", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC4emityyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19LogRecordBuilderSdkC", + "mangledName": "$s11VideoSDKRTC19LogRecordBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "EventBuilder", + "printedName": "EventBuilder", + "usr": "s:11VideoSDKRTC12EventBuilderP", + "mangledName": "$s11VideoSDKRTC12EventBuilderP" + }, + { + "kind": "Conformance", + "name": "LogRecordBuilder", + "printedName": "LogRecordBuilder", + "usr": "s:11VideoSDKRTC16LogRecordBuilderP", + "mangledName": "$s11VideoSDKRTC16LogRecordBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LogRecordExporter", + "printedName": "LogRecordExporter", + "children": [ + { + "kind": "Function", + "name": "export", + "printedName": "export(logRecords:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LogRecordExporterP6export10logRecordsAA12ExportResultOSayAA08ReadablecD0VG_tF", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP6export10logRecordsAA12ExportResultOSayAA08ReadablecD0VG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LogRecordExporterP8shutdownyyF", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP8shutdownyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LogRecordExporterP10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC17LogRecordExporterP", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LogRecordProcessor", + "printedName": "LogRecordProcessor", + "children": [ + { + "kind": "Function", + "name": "onEmit", + "printedName": "onEmit(logRecord:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP6onEmit03logD0yAA08ReadablecD0V_tF", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP6onEmit03logD0yAA08ReadablecD0V_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LogRecordProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "Var", + "name": "unspecified", + "printedName": "unspecified", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO11unspecifiedyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO11unspecifiedyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "trace", + "printedName": "trace", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5traceyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5traceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "trace2", + "printedName": "trace2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6trace2yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6trace2yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "trace3", + "printedName": "trace3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6trace3yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6trace3yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "trace4", + "printedName": "trace4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6trace4yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6trace4yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5debugyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5debugyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "debug2", + "printedName": "debug2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6debug2yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6debug2yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "debug3", + "printedName": "debug3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6debug3yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6debug3yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "debug4", + "printedName": "debug4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6debug4yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6debug4yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "info", + "printedName": "info", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO4infoyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO4infoyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "info2", + "printedName": "info2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5info2yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5info2yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "info3", + "printedName": "info3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5info3yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5info3yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "info4", + "printedName": "info4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5info4yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5info4yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "warn", + "printedName": "warn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO4warnyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO4warnyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "warn2", + "printedName": "warn2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5warn2yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5warn2yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "warn3", + "printedName": "warn3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5warn3yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5warn3yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "warn4", + "printedName": "warn4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5warn4yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5warn4yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5erroryA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5erroryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error2", + "printedName": "error2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6error2yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6error2yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error3", + "printedName": "error3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6error3yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6error3yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error4", + "printedName": "error4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6error4yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6error4yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fatal", + "printedName": "fatal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5fatalyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO5fatalyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fatal2", + "printedName": "fatal2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6fatal2yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6fatal2yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fatal3", + "printedName": "fatal3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6fatal3yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6fatal3yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fatal4", + "printedName": "fatal4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6fatal4yA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO6fatal4yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type) -> (Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO12UNRECOGNIZEDyACSicACmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO12UNRECOGNIZEDyACSicACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberOACycfc", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberOACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber?", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvsZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvMZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO8allCasesSayACGvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "children": [ + { + "kind": "Var", + "name": "doNotUse", + "printedName": "doNotUse", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8doNotUseyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8doNotUseyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "traceFlagsMask", + "printedName": "traceFlagsMask", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags.Type) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO05traceI4MaskyA2CmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO05traceI4MaskyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags.Type) -> (Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO12UNRECOGNIZEDyACSicACmF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO12UNRECOGNIZEDyACSicACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsOACycfc", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsOACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags?", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvsZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvMZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO8allCasesSayACGvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_LogRecordFlagsO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Logs_V1_LogsData", + "printedName": "Opentelemetry_Proto_Logs_V1_LogsData", + "children": [ + { + "kind": "Var", + "name": "resourceLogs", + "printedName": "resourceLogs", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvp", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvg", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvs", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvM", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogsData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataVACycfc", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogsData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogsData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV", + "mangledName": "$s11VideoSDKRTC028Opentelemetry_Proto_Logs_V1_E4DataV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "children": [ + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0VvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasResource", + "printedName": "hasResource", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V03hasG0Sbvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V03hasG0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V03hasG0Sbvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V03hasG0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearResource", + "printedName": "clearResource()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05clearG0yyF", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05clearG0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "scopeLogs", + "printedName": "scopeLogs", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "schemaURL", + "printedName": "schemaURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9schemaURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0VACycfc", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0VACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9hashValueSivp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9hashValueSivg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "printedName": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "children": [ + { + "kind": "Var", + "name": "scope", + "printedName": "scope", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvp", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvg", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvs", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0VvM", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasScope", + "printedName": "hasScope", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V03hasG0Sbvp", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V03hasG0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V03hasG0Sbvg", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V03hasG0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearScope", + "printedName": "clearScope()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V05clearG0yyF", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V05clearG0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "logRecords", + "printedName": "logRecords", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecord", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvp", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecord", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvg", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecord", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvs", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvM", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V10logRecordsSayAA0c1_d1_e1_F10_LogRecordVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "schemaURL", + "printedName": "schemaURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvp", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvg", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvs", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvM", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9schemaURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0VACycfc", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0VACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ScopeLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9hashValueSivp", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9hashValueSivg", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V", + "mangledName": "$s11VideoSDKRTC033Opentelemetry_Proto_Logs_V1_ScopeE0V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Logs_V1_LogRecord", + "printedName": "Opentelemetry_Proto_Logs_V1_LogRecord", + "children": [ + { + "kind": "Var", + "name": "timeUnixNano", + "printedName": "timeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12timeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "observedTimeUnixNano", + "printedName": "observedTimeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV20observedTimeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "severityNumber", + "printedName": "severityNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0Ovp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0Ovg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_SeverityNumber", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Logs_V1_SeverityNumberO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0Ovs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0Ovs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0OvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV14severityNumberAA0c1_d1_e1_f9_SeverityJ0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "severityText", + "printedName": "severityText", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV12severityTextSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "body", + "printedName": "body", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_AnyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_AnyValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV4bodyAA0c1_d8_Common_F9_AnyValueVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasBody", + "printedName": "hasBody", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7hasBodySbvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7hasBodySbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7hasBodySbvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7hasBodySbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearBody", + "printedName": "clearBody()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV9clearBodyyyF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV9clearBodyyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedAttributesCount", + "printedName": "droppedAttributesCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV22droppedAttributesCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "flags", + "printedName": "flags", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32VvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV5flagss6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "traceID", + "printedName": "traceID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV7traceID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "spanID", + "printedName": "spanID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV6spanID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecord", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordVACycfc", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecord", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_LogRecord", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Logs_V1_LogRecordV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "printedName": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "children": [ + { + "kind": "Var", + "name": "resourceLogs", + "printedName": "resourceLogs", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Logs_V1_ResourceLogs", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Logs_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvs", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvM", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestVACycfc", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14ServiceRequestV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "printedName": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "children": [ + { + "kind": "Var", + "name": "partialSuccess", + "printedName": "partialSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvs", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0VvM", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPartialSuccess", + "printedName": "hasPartialSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPartialSuccess", + "printedName": "clearPartialSuccess()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV19clearPartialSuccessyyF", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV19clearPartialSuccessyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseVACycfc", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF15ServiceResponseV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "printedName": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "children": [ + { + "kind": "Var", + "name": "rejectedLogRecords", + "printedName": "rejectedLogRecords", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64Vvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64Vvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64Vvs", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64VvM", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV18rejectedLogRecordss5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorMessage", + "printedName": "errorMessage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvs", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvM", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV12errorMessageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessVACycfc", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV", + "mangledName": "$s11VideoSDKRTC044Opentelemetry_Proto_Collector_Logs_V1_ExportF14PartialSuccessV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongCounter", + "printedName": "LongCounter", + "children": [ + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11LongCounterP3add5valueySi_tF", + "mangledName": "$s11VideoSDKRTC11LongCounterP3add5valueySi_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attribute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11LongCounterP3add5value9attributeySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC11LongCounterP3add5value9attributeySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC11LongCounterP", + "mangledName": "$s11VideoSDKRTC11LongCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongCounterBuilder", + "printedName": "LongCounterBuilder", + "children": [ + { + "kind": "Function", + "name": "ofDoubles", + "printedName": "ofDoubles()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleCounterBuilder", + "printedName": "VideoSDKRTC.DoubleCounterBuilder", + "usr": "s:11VideoSDKRTC20DoubleCounterBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18LongCounterBuilderP9ofDoublesAA06DoubledE0_pyF", + "mangledName": "$s11VideoSDKRTC18LongCounterBuilderP9ofDoublesAA06DoubledE0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongCounter", + "printedName": "VideoSDKRTC.LongCounter", + "usr": "s:11VideoSDKRTC11LongCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18LongCounterBuilderP5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC18LongCounterBuilderP5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableLongCounter", + "printedName": "VideoSDKRTC.ObservableLongCounter", + "usr": "s:11VideoSDKRTC21ObservableLongCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableLongMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableLongMeasurement", + "printedName": "VideoSDKRTC.ObservableLongMeasurement", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18LongCounterBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC18LongCounterBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC18LongCounterBuilderP", + "mangledName": "$s11VideoSDKRTC18LongCounterBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongCounterMeterBuilderSdk", + "printedName": "LongCounterMeterBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "ofDoubles", + "printedName": "ofDoubles()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleCounterBuilder", + "printedName": "VideoSDKRTC.DoubleCounterBuilder", + "usr": "s:11VideoSDKRTC20DoubleCounterBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26LongCounterMeterBuilderSdkC9ofDoublesAA06DoubledF0_pyF", + "mangledName": "$s11VideoSDKRTC26LongCounterMeterBuilderSdkC9ofDoublesAA06DoubledF0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongCounter", + "printedName": "VideoSDKRTC.LongCounter", + "usr": "s:11VideoSDKRTC11LongCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26LongCounterMeterBuilderSdkC5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC26LongCounterMeterBuilderSdkC5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableLongCounter", + "printedName": "VideoSDKRTC.ObservableLongCounter", + "usr": "s:11VideoSDKRTC21ObservableLongCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableLongMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableLongMeasurement", + "printedName": "VideoSDKRTC.ObservableLongMeasurement", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26LongCounterMeterBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0kC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC26LongCounterMeterBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0kC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC26LongCounterMeterBuilderSdkC", + "mangledName": "$s11VideoSDKRTC26LongCounterMeterBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LongCounterBuilder", + "printedName": "LongCounterBuilder", + "usr": "s:11VideoSDKRTC18LongCounterBuilderP", + "mangledName": "$s11VideoSDKRTC18LongCounterBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongCounterSdk", + "printedName": "LongCounterSdk", + "children": [ + { + "kind": "Var", + "name": "instrumentDescriptor", + "printedName": "instrumentDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0Vvp", + "mangledName": "$s11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0Vvg", + "mangledName": "$s11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0Vvs", + "mangledName": "$s11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0VvM", + "mangledName": "$s11VideoSDKRTC14LongCounterSdkC20instrumentDescriptorAA010InstrumentG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14LongCounterSdkC3add5valueySi_tF", + "mangledName": "$s11VideoSDKRTC14LongCounterSdkC3add5valueySi_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attribute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14LongCounterSdkC3add5value9attributeySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC14LongCounterSdkC3add5value9attributeySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC14LongCounterSdkC", + "mangledName": "$s11VideoSDKRTC14LongCounterSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LongCounter", + "printedName": "LongCounter", + "usr": "s:11VideoSDKRTC11LongCounterP", + "mangledName": "$s11VideoSDKRTC11LongCounterP" + }, + { + "kind": "Conformance", + "name": "Instrument", + "printedName": "Instrument", + "usr": "s:11VideoSDKRTC10InstrumentP", + "mangledName": "$s11VideoSDKRTC10InstrumentP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DoubleCounterSdk", + "printedName": "DoubleCounterSdk", + "children": [ + { + "kind": "Var", + "name": "instrumentDescriptor", + "printedName": "instrumentDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0Vvp", + "mangledName": "$s11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0Vvg", + "mangledName": "$s11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0Vvs", + "mangledName": "$s11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0VvM", + "mangledName": "$s11VideoSDKRTC16DoubleCounterSdkV20instrumentDescriptorAA010InstrumentG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16DoubleCounterSdkV3add5valueySd_tF", + "mangledName": "$s11VideoSDKRTC16DoubleCounterSdkV3add5valueySd_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16DoubleCounterSdkV3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC16DoubleCounterSdkV3add5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16DoubleCounterSdkV", + "mangledName": "$s11VideoSDKRTC16DoubleCounterSdkV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DoubleCounter", + "printedName": "DoubleCounter", + "usr": "s:11VideoSDKRTC13DoubleCounterP", + "mangledName": "$s11VideoSDKRTC13DoubleCounterP" + }, + { + "kind": "Conformance", + "name": "Instrument", + "printedName": "Instrument", + "usr": "s:11VideoSDKRTC10InstrumentP", + "mangledName": "$s11VideoSDKRTC10InstrumentP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongGaugeBuilder", + "printedName": "LongGaugeBuilder", + "children": [ + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableLongGauge", + "printedName": "VideoSDKRTC.ObservableLongGauge", + "usr": "s:11VideoSDKRTC19ObservableLongGaugeP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableLongMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableLongMeasurement", + "printedName": "VideoSDKRTC.ObservableLongMeasurement", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16LongGaugeBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC16LongGaugeBuilderP17buildWithCallbackyAA010ObservablecD0_pyAA0iC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongGaugeBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC16LongGaugeBuilderP", + "mangledName": "$s11VideoSDKRTC16LongGaugeBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongGaugeBuilderSdk", + "printedName": "LongGaugeBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableLongGauge", + "printedName": "VideoSDKRTC.ObservableLongGauge", + "usr": "s:11VideoSDKRTC19ObservableLongGaugeP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableLongMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableLongMeasurement", + "printedName": "VideoSDKRTC.ObservableLongMeasurement", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19LongGaugeBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0jC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC19LongGaugeBuilderSdkC17buildWithCallbackyAA010ObservablecD0_pyAA0jC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19LongGaugeBuilderSdkC", + "mangledName": "$s11VideoSDKRTC19LongGaugeBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LongGaugeBuilder", + "printedName": "LongGaugeBuilder", + "usr": "s:11VideoSDKRTC16LongGaugeBuilderP", + "mangledName": "$s11VideoSDKRTC16LongGaugeBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongHistogram", + "printedName": "LongHistogram", + "children": [ + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LongHistogramP6record5valueySi_tF", + "mangledName": "$s11VideoSDKRTC13LongHistogramP6record5valueySi_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongHistogram>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13LongHistogramP6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC13LongHistogramP6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongHistogram>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13LongHistogramP", + "mangledName": "$s11VideoSDKRTC13LongHistogramP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongHistogramBuilder", + "printedName": "LongHistogramBuilder", + "children": [ + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongHistogram", + "printedName": "VideoSDKRTC.LongHistogram", + "usr": "s:11VideoSDKRTC13LongHistogramP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20LongHistogramBuilderP5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC20LongHistogramBuilderP5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongHistogramBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC20LongHistogramBuilderP", + "mangledName": "$s11VideoSDKRTC20LongHistogramBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongHistogramMeterBuilderSdk", + "printedName": "LongHistogramMeterBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongHistogram", + "printedName": "VideoSDKRTC.LongHistogram", + "usr": "s:11VideoSDKRTC13LongHistogramP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28LongHistogramMeterBuilderSdkC5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC28LongHistogramMeterBuilderSdkC5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC28LongHistogramMeterBuilderSdkC", + "mangledName": "$s11VideoSDKRTC28LongHistogramMeterBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LongHistogramBuilder", + "printedName": "LongHistogramBuilder", + "usr": "s:11VideoSDKRTC20LongHistogramBuilderP", + "mangledName": "$s11VideoSDKRTC20LongHistogramBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongHistogramMeterSdk", + "printedName": "LongHistogramMeterSdk", + "children": [ + { + "kind": "Var", + "name": "instrumentDescriptor", + "printedName": "instrumentDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvp", + "mangledName": "$s11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvg", + "mangledName": "$s11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvs", + "mangledName": "$s11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0VvM", + "mangledName": "$s11VideoSDKRTC21LongHistogramMeterSdkC20instrumentDescriptorAA010InstrumentH0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21LongHistogramMeterSdkC6record5valueySi_tF", + "mangledName": "$s11VideoSDKRTC21LongHistogramMeterSdkC6record5valueySi_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21LongHistogramMeterSdkC6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC21LongHistogramMeterSdkC6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21LongHistogramMeterSdkC", + "mangledName": "$s11VideoSDKRTC21LongHistogramMeterSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LongHistogram", + "printedName": "LongHistogram", + "usr": "s:11VideoSDKRTC13LongHistogramP", + "mangledName": "$s11VideoSDKRTC13LongHistogramP" + }, + { + "kind": "Conformance", + "name": "Instrument", + "printedName": "Instrument", + "usr": "s:11VideoSDKRTC10InstrumentP", + "mangledName": "$s11VideoSDKRTC10InstrumentP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongLastValueAggregator", + "printedName": "LongLastValueAggregator", + "children": [ + { + "kind": "Function", + "name": "diff", + "printedName": "diff(previousCumulative:currentCumulative:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23LongLastValueAggregatorC4diff18previousCumulative07currentI0AA9PointDataCAH_AHtKF", + "mangledName": "$s11VideoSDKRTC23LongLastValueAggregatorC4diff18previousCumulative07currentI0AA9PointDataCAH_AHtKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toPoint", + "printedName": "toPoint(measurement:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23LongLastValueAggregatorC7toPoint11measurementAA0H4DataCAA11MeasurementV_tKF", + "mangledName": "$s11VideoSDKRTC23LongLastValueAggregatorC7toPoint11measurementAA0H4DataCAA11MeasurementV_tKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createHandle", + "printedName": "createHandle()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregatorHandle", + "printedName": "VideoSDKRTC.AggregatorHandle", + "usr": "s:11VideoSDKRTC16AggregatorHandleC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23LongLastValueAggregatorC12createHandleAA0fH0CyF", + "mangledName": "$s11VideoSDKRTC23LongLastValueAggregatorC12createHandleAA0fH0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData(resource:scope:descriptor:points:temporality:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23LongLastValueAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablehI0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0H10DescriptorVSayAA05PointI0CGAA22AggregationTemporalityOtF", + "mangledName": "$s11VideoSDKRTC23LongLastValueAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablehI0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0H10DescriptorVSayAA05PointI0CGAA22AggregationTemporalityOtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC23LongLastValueAggregatorC", + "mangledName": "$s11VideoSDKRTC23LongLastValueAggregatorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "StableAggregator", + "printedName": "StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongPointData", + "printedName": "LongPointData", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13LongPointDataC5valueSivp", + "mangledName": "$s11VideoSDKRTC13LongPointDataC5valueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13LongPointDataC5valueSivg", + "mangledName": "$s11VideoSDKRTC13LongPointDataC5valueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13LongPointDataC5valueSivs", + "mangledName": "$s11VideoSDKRTC13LongPointDataC5valueSivs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13LongPointDataC5valueSivM", + "mangledName": "$s11VideoSDKRTC13LongPointDataC5valueSivM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC13LongPointDataC", + "mangledName": "$s11VideoSDKRTC13LongPointDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC9PointDataC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.PointData" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongSumAggregator", + "printedName": "LongSumAggregator", + "children": [ + { + "kind": "Function", + "name": "diff", + "printedName": "diff(previousCumulative:currentCumulative:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LongSumAggregatorC4diff18previousCumulative07currentH0AA9PointDataCAH_AHtKF", + "mangledName": "$s11VideoSDKRTC17LongSumAggregatorC4diff18previousCumulative07currentH0AA9PointDataCAH_AHtKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toPoint", + "printedName": "toPoint(measurement:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LongSumAggregatorC7toPoint11measurementAA0G4DataCAA11MeasurementV_tKF", + "mangledName": "$s11VideoSDKRTC17LongSumAggregatorC7toPoint11measurementAA0G4DataCAA11MeasurementV_tKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createHandle", + "printedName": "createHandle()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregatorHandle", + "printedName": "VideoSDKRTC.AggregatorHandle", + "usr": "s:11VideoSDKRTC16AggregatorHandleC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LongSumAggregatorC12createHandleAA0eG0CyF", + "mangledName": "$s11VideoSDKRTC17LongSumAggregatorC12createHandleAA0eG0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData(resource:scope:descriptor:points:temporality:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LongSumAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablegH0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0G10DescriptorVSayAA05PointH0CGAA22AggregationTemporalityOtF", + "mangledName": "$s11VideoSDKRTC17LongSumAggregatorC12toMetricData8resource5scope10descriptor6points11temporalityAA06StablegH0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0G10DescriptorVSayAA05PointH0CGAA22AggregationTemporalityOtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC17LongSumAggregatorC", + "mangledName": "$s11VideoSDKRTC17LongSumAggregatorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC13SumAggregatorC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.SumAggregator" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "StableAggregator", + "printedName": "StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongUpDownCounter", + "printedName": "LongUpDownCounter", + "children": [ + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LongUpDownCounterP3add5valueySi_tF", + "mangledName": "$s11VideoSDKRTC17LongUpDownCounterP3add5valueySi_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongUpDownCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17LongUpDownCounterP3add5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC17LongUpDownCounterP3add5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongUpDownCounter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC17LongUpDownCounterP", + "mangledName": "$s11VideoSDKRTC17LongUpDownCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongUpDownCounterBuilder", + "printedName": "LongUpDownCounterBuilder", + "children": [ + { + "kind": "Function", + "name": "ofDoubles", + "printedName": "ofDoubles()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleUpDownCounterBuilder", + "printedName": "VideoSDKRTC.DoubleUpDownCounterBuilder", + "usr": "s:11VideoSDKRTC26DoubleUpDownCounterBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24LongUpDownCounterBuilderP9ofDoublesAA06DoubledefG0_pyF", + "mangledName": "$s11VideoSDKRTC24LongUpDownCounterBuilderP9ofDoublesAA06DoubledefG0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongUpDownCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongUpDownCounter", + "printedName": "VideoSDKRTC.LongUpDownCounter", + "usr": "s:11VideoSDKRTC17LongUpDownCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24LongUpDownCounterBuilderP5buildAA0cdeF0_pyF", + "mangledName": "$s11VideoSDKRTC24LongUpDownCounterBuilderP5buildAA0cdeF0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongUpDownCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableLongUpDownCounter", + "printedName": "VideoSDKRTC.ObservableLongUpDownCounter", + "usr": "s:11VideoSDKRTC27ObservableLongUpDownCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableLongMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableLongMeasurement", + "printedName": "VideoSDKRTC.ObservableLongMeasurement", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24LongUpDownCounterBuilderP17buildWithCallbackyAA010ObservablecdeF0_pyAA0kC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC24LongUpDownCounterBuilderP17buildWithCallbackyAA010ObservablecdeF0_pyAA0kC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.LongUpDownCounterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC24LongUpDownCounterBuilderP", + "mangledName": "$s11VideoSDKRTC24LongUpDownCounterBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongUpDownCounterBuilderSdk", + "printedName": "LongUpDownCounterBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "ofDoubles", + "printedName": "ofDoubles()", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleUpDownCounterBuilder", + "printedName": "VideoSDKRTC.DoubleUpDownCounterBuilder", + "usr": "s:11VideoSDKRTC26DoubleUpDownCounterBuilderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27LongUpDownCounterBuilderSdkC9ofDoublesAA06DoubledefG0_pyF", + "mangledName": "$s11VideoSDKRTC27LongUpDownCounterBuilderSdkC9ofDoublesAA06DoubledefG0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "LongUpDownCounter", + "printedName": "VideoSDKRTC.LongUpDownCounter", + "usr": "s:11VideoSDKRTC17LongUpDownCounterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27LongUpDownCounterBuilderSdkC5buildAA0cdeF0_pyF", + "mangledName": "$s11VideoSDKRTC27LongUpDownCounterBuilderSdkC5buildAA0cdeF0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWithCallback", + "printedName": "buildWithCallback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableLongUpDownCounter", + "printedName": "VideoSDKRTC.ObservableLongUpDownCounter", + "usr": "s:11VideoSDKRTC27ObservableLongUpDownCounterP" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ObservableLongMeasurement) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ObservableLongMeasurement", + "printedName": "VideoSDKRTC.ObservableLongMeasurement", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27LongUpDownCounterBuilderSdkC17buildWithCallbackyAA010ObservablecdeF0_pyAA0lC11Measurement_pcF", + "mangledName": "$s11VideoSDKRTC27LongUpDownCounterBuilderSdkC17buildWithCallbackyAA010ObservablecdeF0_pyAA0lC11Measurement_pcF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC27LongUpDownCounterBuilderSdkC", + "mangledName": "$s11VideoSDKRTC27LongUpDownCounterBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LongUpDownCounterBuilder", + "printedName": "LongUpDownCounterBuilder", + "usr": "s:11VideoSDKRTC24LongUpDownCounterBuilderP", + "mangledName": "$s11VideoSDKRTC24LongUpDownCounterBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LongUpDownCounterSdk", + "printedName": "LongUpDownCounterSdk", + "children": [ + { + "kind": "Var", + "name": "instrumentDescriptor", + "printedName": "instrumentDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20LongUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvp", + "mangledName": "$s11VideoSDKRTC20LongUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20LongUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvg", + "mangledName": "$s11VideoSDKRTC20LongUpDownCounterSdkC20instrumentDescriptorAA010InstrumentI0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20LongUpDownCounterSdkC3add5valueySi_tF", + "mangledName": "$s11VideoSDKRTC20LongUpDownCounterSdkC3add5valueySi_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20LongUpDownCounterSdkC3add5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC20LongUpDownCounterSdkC3add5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20LongUpDownCounterSdkC", + "mangledName": "$s11VideoSDKRTC20LongUpDownCounterSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LongUpDownCounter", + "printedName": "LongUpDownCounter", + "usr": "s:11VideoSDKRTC17LongUpDownCounterP", + "mangledName": "$s11VideoSDKRTC17LongUpDownCounterP" + }, + { + "kind": "Conformance", + "name": "Instrument", + "printedName": "Instrument", + "usr": "s:11VideoSDKRTC10InstrumentP", + "mangledName": "$s11VideoSDKRTC10InstrumentP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MaxValueAggregator", + "printedName": "MaxValueAggregator", + "children": [ + { + "kind": "Function", + "name": "update", + "printedName": "update(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MaxValueAggregatorC6update5valueyx_tF", + "mangledName": "$s11VideoSDKRTC18MaxValueAggregatorC6update5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkpoint", + "printedName": "checkpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MaxValueAggregatorC10checkpointyyF", + "mangledName": "$s11VideoSDKRTC18MaxValueAggregatorC10checkpointyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MaxValueAggregatorC12toMetricDataAA0gH0_pyF", + "mangledName": "$s11VideoSDKRTC18MaxValueAggregatorC12toMetricDataAA0gH0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAggregationType", + "printedName": "getAggregationType()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MaxValueAggregatorC18getAggregationTypeAA0gH0OyF", + "mangledName": "$s11VideoSDKRTC18MaxValueAggregatorC18getAggregationTypeAA0gH0OyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18MaxValueAggregatorC", + "mangledName": "$s11VideoSDKRTC18MaxValueAggregatorC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC10AggregatorC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.Aggregator<τ_0_0>" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Measurement", + "printedName": "Measurement", + "children": [ + { + "kind": "Var", + "name": "startEpochNano", + "printedName": "startEpochNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MeasurementV14startEpochNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC11MeasurementV14startEpochNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MeasurementV14startEpochNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC11MeasurementV14startEpochNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "epochNano", + "printedName": "epochNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MeasurementV9epochNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC11MeasurementV9epochNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MeasurementV9epochNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC11MeasurementV9epochNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasLongValue", + "printedName": "hasLongValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MeasurementV12hasLongValueSbvp", + "mangledName": "$s11VideoSDKRTC11MeasurementV12hasLongValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MeasurementV12hasLongValueSbvg", + "mangledName": "$s11VideoSDKRTC11MeasurementV12hasLongValueSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "longValue", + "printedName": "longValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MeasurementV9longValueSivp", + "mangledName": "$s11VideoSDKRTC11MeasurementV9longValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MeasurementV9longValueSivg", + "mangledName": "$s11VideoSDKRTC11MeasurementV9longValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "doubleValue", + "printedName": "doubleValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MeasurementV11doubleValueSdvp", + "mangledName": "$s11VideoSDKRTC11MeasurementV11doubleValueSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MeasurementV11doubleValueSdvg", + "mangledName": "$s11VideoSDKRTC11MeasurementV11doubleValueSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasDoubleValue", + "printedName": "hasDoubleValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MeasurementV14hasDoubleValueSbvp", + "mangledName": "$s11VideoSDKRTC11MeasurementV14hasDoubleValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MeasurementV14hasDoubleValueSbvg", + "mangledName": "$s11VideoSDKRTC11MeasurementV14hasDoubleValueSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MeasurementV10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC11MeasurementV10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MeasurementV10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC11MeasurementV10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "longMeasurement", + "printedName": "longMeasurement(startEpochNano:endEpochNano:value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11MeasurementV04longC014startEpochNano03endfG05value10attributesACs6UInt64V_AJSiSDySSAA14AttributeValueOGtFZ", + "mangledName": "$s11VideoSDKRTC11MeasurementV04longC014startEpochNano03endfG05value10attributesACs6UInt64V_AJSiSDySSAA14AttributeValueOGtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "doubleMeasurement", + "printedName": "doubleMeasurement(startEpochNano:endEpochNano:value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11MeasurementV06doubleC014startEpochNano03endfG05value10attributesACs6UInt64V_AJSdSDySSAA14AttributeValueOGtFZ", + "mangledName": "$s11VideoSDKRTC11MeasurementV06doubleC014startEpochNano03endfG05value10attributesACs6UInt64V_AJSdSDySSAA14AttributeValueOGtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC11MeasurementV", + "mangledName": "$s11VideoSDKRTC11MeasurementV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeasureMetric", + "printedName": "MeasureMetric", + "children": [ + { + "kind": "AssociatedType", + "name": "T", + "printedName": "T", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC13MeasureMetricP1TQa", + "mangledName": "$s11VideoSDKRTC13MeasureMetricP1TQa", + "moduleName": "VideoSDKRTC", + "protocolReq": true + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundMeasureMetric", + "printedName": "VideoSDKRTC.BoundMeasureMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13MeasureMetricP4bind8labelsetAA05BoundcD0Cy1TQzGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC13MeasureMetricP4bind8labelsetAA05BoundcD0Cy1TQzGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeasureMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundMeasureMetric", + "printedName": "VideoSDKRTC.BoundMeasureMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13MeasureMetricP4bind6labelsAA05BoundcD0Cy1TQzGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC13MeasureMetricP4bind6labelsAA05BoundcD0Cy1TQzGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeasureMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13MeasureMetricPAAE6record5value8labelsety1TQz_AA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC13MeasureMetricPAAE6record5value8labelsety1TQz_AA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeasureMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13MeasureMetricPAAE6record5value6labelsy1TQz_SDyS2SGtF", + "mangledName": "$s11VideoSDKRTC13MeasureMetricPAAE6record5value6labelsy1TQz_SDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeasureMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13MeasureMetricP", + "mangledName": "$s11VideoSDKRTC13MeasureMetricP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AnyMeasureMetric", + "printedName": "AnyMeasureMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMeasureMetric", + "printedName": "VideoSDKRTC.AnyMeasureMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16AnyMeasureMetricVyACyxGqd__c1TQyd__RszAA0dE0Rd__lufc", + "mangledName": "$s11VideoSDKRTC16AnyMeasureMetricVyACyxGqd__c1TQyd__RszAA0dE0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 == τ_1_0.T, τ_1_0 : VideoSDKRTC.MeasureMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundMeasureMetric", + "printedName": "VideoSDKRTC.BoundMeasureMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC16AnyMeasureMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundMeasureMetric", + "printedName": "VideoSDKRTC.BoundMeasureMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC16AnyMeasureMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV", + "mangledName": "$s11VideoSDKRTC16AnyMeasureMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MeasureMetric", + "printedName": "MeasureMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC13MeasureMetricP", + "mangledName": "$s11VideoSDKRTC13MeasureMetricP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoopMeasureMetric", + "printedName": "NoopMeasureMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopMeasureMetric", + "printedName": "VideoSDKRTC.NoopMeasureMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC17NoopMeasureMetricV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17NoopMeasureMetricVACyxGycfc", + "mangledName": "$s11VideoSDKRTC17NoopMeasureMetricVACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundMeasureMetric", + "printedName": "VideoSDKRTC.BoundMeasureMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17NoopMeasureMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC17NoopMeasureMetricV4bind8labelsetAA05BounddE0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundMeasureMetric", + "printedName": "VideoSDKRTC.BoundMeasureMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC18BoundMeasureMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17NoopMeasureMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC17NoopMeasureMetricV4bind6labelsAA05BounddE0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC17NoopMeasureMetricV", + "mangledName": "$s11VideoSDKRTC17NoopMeasureMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MeasureMetric", + "printedName": "MeasureMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC13MeasureMetricP", + "mangledName": "$s11VideoSDKRTC13MeasureMetricP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeasureMinMaxSumCountAggregator", + "printedName": "MeasureMinMaxSumCountAggregator", + "children": [ + { + "kind": "Function", + "name": "update", + "printedName": "update(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC6update5valueyx_tF", + "mangledName": "$s11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC6update5valueyx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkpoint", + "printedName": "checkpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC10checkpointyyF", + "mangledName": "$s11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC10checkpointyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC12toMetricDataAA0jK0_pyF", + "mangledName": "$s11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC12toMetricDataAA0jK0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAggregationType", + "printedName": "getAggregationType()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC18getAggregationTypeAA0jK0OyF", + "mangledName": "$s11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC18getAggregationTypeAA0jK0OyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "overriding": true, + "declAttributes": [ + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC", + "mangledName": "$s11VideoSDKRTC31MeasureMinMaxSumCountAggregatorC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable, τ_0_0 : Swift.SignedNumeric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:11VideoSDKRTC10AggregatorC", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.Aggregator<τ_0_0>" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "authorisationStatus", + "printedName": "authorisationStatus", + "children": [ + { + "kind": "Var", + "name": "notDetermined", + "printedName": "notDetermined", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.authorisationStatus.Type) -> VideoSDKRTC.authorisationStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.authorisationStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19authorisationStatusO13notDeterminedyA2CmF", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO13notDeterminedyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "authorised", + "printedName": "authorised", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.authorisationStatus.Type) -> VideoSDKRTC.authorisationStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.authorisationStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19authorisationStatusO10authorisedyA2CmF", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO10authorisedyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "denied", + "printedName": "denied", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.authorisationStatus.Type) -> VideoSDKRTC.authorisationStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.authorisationStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19authorisationStatusO6deniedyA2CmF", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO6deniedyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "restricted", + "printedName": "restricted", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.authorisationStatus.Type) -> VideoSDKRTC.authorisationStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.authorisationStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC19authorisationStatusO10restrictedyA2CmF", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO10restrictedyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + }, + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19authorisationStatusO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19authorisationStatusO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19authorisationStatusO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19authorisationStatusO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC19authorisationStatusO", + "mangledName": "$s11VideoSDKRTC19authorisationStatusO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthorisationDelegate", + "printedName": "AuthorisationDelegate", + "children": [ + { + "kind": "Function", + "name": "handlePermission", + "printedName": "handlePermission()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21AuthorisationDelegateP16handlePermissionyyF", + "mangledName": "$s11VideoSDKRTC21AuthorisationDelegateP16handlePermissionyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AuthorisationDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC21AuthorisationDelegateP", + "mangledName": "$s11VideoSDKRTC21AuthorisationDelegateP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Mediasoup", + "printedName": "Mediasoup", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "MediaStream", + "printedName": "MediaStream", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MediaStreamC2idSSvp", + "mangledName": "$s11VideoSDKRTC11MediaStreamC2idSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MediaStreamC2idSSvg", + "mangledName": "$s11VideoSDKRTC11MediaStreamC2idSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvp", + "mangledName": "$s11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvg", + "mangledName": "$s11VideoSDKRTC11MediaStreamC4kindAA0C4TypeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "track", + "printedName": "track", + "children": [ + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvp", + "mangledName": "$s11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RTCMediaStreamTrack", + "printedName": "WebRTC.RTCMediaStreamTrack", + "usr": "c:objc(cs)RTCMediaStreamTrack" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvg", + "mangledName": "$s11VideoSDKRTC11MediaStreamC5trackSo08RTCMediaD5TrackCvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "producer", + "printedName": "producer", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.Producer?", + "children": [ + { + "kind": "TypeNominal", + "name": "Producer", + "printedName": "Mediasoup.Producer", + "usr": "s:9Mediasoup8ProducerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvp", + "mangledName": "$s11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.Producer?", + "children": [ + { + "kind": "TypeNominal", + "name": "Producer", + "printedName": "Mediasoup.Producer", + "usr": "s:9Mediasoup8ProducerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvg", + "mangledName": "$s11VideoSDKRTC11MediaStreamC8producer9Mediasoup8ProducerCSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "consumer", + "printedName": "consumer", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.Consumer?", + "children": [ + { + "kind": "TypeNominal", + "name": "Consumer", + "printedName": "Mediasoup.Consumer", + "usr": "s:9Mediasoup8ConsumerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvp", + "mangledName": "$s11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Mediasoup.Consumer?", + "children": [ + { + "kind": "TypeNominal", + "name": "Consumer", + "printedName": "Mediasoup.Consumer", + "usr": "s:9Mediasoup8ConsumerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvg", + "mangledName": "$s11VideoSDKRTC11MediaStreamC8consumer9Mediasoup8ConsumerCSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11MediaStreamC5pauseyyF", + "mangledName": "$s11VideoSDKRTC11MediaStreamC5pauseyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11MediaStreamC6resumeyyF", + "mangledName": "$s11VideoSDKRTC11MediaStreamC6resumeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11MediaStreamC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC11MediaStreamC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC11MediaStreamC", + "mangledName": "$s11VideoSDKRTC11MediaStreamC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MediaType", + "printedName": "MediaType", + "children": [ + { + "kind": "Var", + "name": "share", + "printedName": "share", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MediaType.Type) -> VideoSDKRTC.MediaType", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MediaType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC9MediaTypeO5shareyA2CmF", + "mangledName": "$s11VideoSDKRTC9MediaTypeO5shareyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "state", + "printedName": "state", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MediaType.Type) -> (Mediasoup.MediaKind) -> VideoSDKRTC.MediaType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Mediasoup.MediaKind) -> VideoSDKRTC.MediaType", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(value: Mediasoup.MediaKind)", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaKind", + "printedName": "Mediasoup.MediaKind", + "usr": "s:9Mediasoup9MediaKindO" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MediaType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC9MediaTypeO5stateyAC9Mediasoup0C4KindO_tcACmF", + "mangledName": "$s11VideoSDKRTC9MediaTypeO5stateyAC9Mediasoup0C4KindO_tcACmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + }, + { + "kind": "TypeNominal", + "name": "MediaType", + "printedName": "VideoSDKRTC.MediaType", + "usr": "s:11VideoSDKRTC9MediaTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9MediaTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC9MediaTypeO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC9MediaTypeO", + "mangledName": "$s11VideoSDKRTC9MediaTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "ReplayKit", + "printedName": "ReplayKit", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Swift", + "printedName": "Swift", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "Meeting", + "printedName": "Meeting", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC2idSSvp", + "mangledName": "$s11VideoSDKRTC7MeetingC2idSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC2idSSvg", + "mangledName": "$s11VideoSDKRTC7MeetingC2idSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "localParticipant", + "printedName": "localParticipant", + "children": [ + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvp", + "mangledName": "$s11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvg", + "mangledName": "$s11VideoSDKRTC7MeetingC16localParticipantAA0E0Cvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "participants", + "printedName": "participants", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.Participant]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvp", + "mangledName": "$s11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.Participant]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvg", + "mangledName": "$s11VideoSDKRTC7MeetingC12participantsSDySSAA11ParticipantCGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pinnedParticipants", + "printedName": "pinnedParticipants", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.ParticipantPinState]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC18pinnedParticipantsSDySSAA19ParticipantPinStateVGvp", + "mangledName": "$s11VideoSDKRTC7MeetingC18pinnedParticipantsSDySSAA19ParticipantPinStateVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.ParticipantPinState]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC18pinnedParticipantsSDySSAA19ParticipantPinStateVGvg", + "mangledName": "$s11VideoSDKRTC7MeetingC18pinnedParticipantsSDySSAA19ParticipantPinStateVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hlsUrls", + "printedName": "hlsUrls", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.HLSUrl?", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSUrl", + "printedName": "VideoSDKRTC.HLSUrl", + "usr": "s:11VideoSDKRTC6HLSUrlC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvp", + "mangledName": "$s11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.HLSUrl?", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSUrl", + "printedName": "VideoSDKRTC.HLSUrl", + "usr": "s:11VideoSDKRTC6HLSUrlC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvg", + "mangledName": "$s11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.HLSUrl?", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSUrl", + "printedName": "VideoSDKRTC.HLSUrl", + "usr": "s:11VideoSDKRTC6HLSUrlC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvs", + "mangledName": "$s11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvM", + "mangledName": "$s11VideoSDKRTC7MeetingC7hlsUrlsAA6HLSUrlCSgvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hlsState", + "printedName": "hlsState", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvp", + "mangledName": "$s11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvg", + "mangledName": "$s11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvs", + "mangledName": "$s11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvM", + "mangledName": "$s11VideoSDKRTC7MeetingC8hlsStateAA8HLSStateOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "liveStreamState", + "printedName": "liveStreamState", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0Ovp", + "mangledName": "$s11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0Ovg", + "mangledName": "$s11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0Ovs", + "mangledName": "$s11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0Ovs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0OvM", + "mangledName": "$s11VideoSDKRTC7MeetingC15liveStreamStateAA04LiveeF0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "recordingState", + "printedName": "recordingState", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0Ovp", + "mangledName": "$s11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0Ovg", + "mangledName": "$s11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0Ovs", + "mangledName": "$s11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0Ovs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0OvM", + "mangledName": "$s11VideoSDKRTC7MeetingC14recordingStateAA09RecordingE0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pubsub", + "printedName": "pubsub", + "children": [ + { + "kind": "TypeNominal", + "name": "PubSub", + "printedName": "VideoSDKRTC.PubSub", + "usr": "s:11VideoSDKRTC6PubSubC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvp", + "mangledName": "$s11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Lazy", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PubSub", + "printedName": "VideoSDKRTC.PubSub", + "usr": "s:11VideoSDKRTC6PubSubC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvg", + "mangledName": "$s11VideoSDKRTC7MeetingC6pubsubAA6PubSubCvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "customVideoMediaStream", + "printedName": "customVideoMediaStream", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomRTCMediaStream", + "printedName": "VideoSDKRTC.CustomRTCMediaStream", + "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvp", + "mangledName": "$s11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomRTCMediaStream", + "printedName": "VideoSDKRTC.CustomRTCMediaStream", + "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvg", + "mangledName": "$s11VideoSDKRTC7MeetingC06customA11MediaStreamAA014CustomRTCMediaF0CSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "meetingMode", + "printedName": "meetingMode", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Mode?", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MeetingC11meetingModeAA0E0OSgvp", + "mangledName": "$s11VideoSDKRTC7MeetingC11meetingModeAA0E0OSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Mode?", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MeetingC11meetingModeAA0E0OSgvg", + "mangledName": "$s11VideoSDKRTC7MeetingC11meetingModeAA0E0OSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "join", + "printedName": "join(cameraPosition:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Position", + "printedName": "AVFoundation.AVCaptureDevice.Position", + "usr": "c:@E@AVCaptureDevicePosition" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC4join14cameraPositionySo015AVCaptureDeviceF0V_tF", + "mangledName": "$s11VideoSDKRTC7MeetingC4join14cameraPositionySo015AVCaptureDeviceF0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "leave", + "printedName": "leave()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC5leaveyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC5leaveyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "end", + "printedName": "end()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC3endyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC3endyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enableWebcam", + "printedName": "enableWebcam(customVideoStream:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomRTCMediaStream", + "printedName": "VideoSDKRTC.CustomRTCMediaStream", + "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC12enableWebcam06customA6StreamyAA014CustomRTCMediaG0CSg_tF", + "mangledName": "$s11VideoSDKRTC7MeetingC12enableWebcam06customA6StreamyAA014CustomRTCMediaG0CSg_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableWebcam", + "printedName": "disableWebcam()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC13disableWebcamyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC13disableWebcamyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "switchWebcam", + "printedName": "switchWebcam()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC12switchWebcamyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC12switchWebcamyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "muteMic", + "printedName": "muteMic()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC7muteMicyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC7muteMicyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unmuteMic", + "printedName": "unmuteMic()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC9unmuteMicyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC9unmuteMicyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startRecording", + "printedName": "startRecording(webhookUrl:awsDirPath:config:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.RecordingConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingConfig", + "printedName": "VideoSDKRTC.RecordingConfig", + "usr": "s:11VideoSDKRTC15RecordingConfigC" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC14startRecording10webhookUrl10awsDirPath6configySS_SSSgAA0E6ConfigCSgtF", + "mangledName": "$s11VideoSDKRTC7MeetingC14startRecording10webhookUrl10awsDirPath6configySS_SSSgAA0E6ConfigCSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopRecording", + "printedName": "stopRecording()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC13stopRecordingyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC13stopRecordingyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startLivestream", + "printedName": "startLivestream(outputs:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.LivestreamOutput]", + "children": [ + { + "kind": "TypeNominal", + "name": "LivestreamOutput", + "printedName": "VideoSDKRTC.LivestreamOutput", + "usr": "s:11VideoSDKRTC16LivestreamOutputV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC15startLivestream7outputsySayAA0E6OutputVG_tF", + "mangledName": "$s11VideoSDKRTC7MeetingC15startLivestream7outputsySayAA0E6OutputVG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopLivestream", + "printedName": "stopLivestream()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC14stopLivestreamyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC14stopLivestreamyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startHLS", + "printedName": "startHLS(config:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.HLSConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSConfig", + "printedName": "VideoSDKRTC.HLSConfig", + "usr": "s:11VideoSDKRTC9HLSConfigC" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC8startHLS6configyAA9HLSConfigCSg_tF", + "mangledName": "$s11VideoSDKRTC7MeetingC8startHLS6configyAA9HLSConfigCSg_tF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopHLS", + "printedName": "stopHLS()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC7stopHLSyyF", + "mangledName": "$s11VideoSDKRTC7MeetingC7stopHLSyyF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "changeMode", + "printedName": "changeMode(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC10changeModeyyAA0E0OF", + "mangledName": "$s11VideoSDKRTC7MeetingC10changeModeyyAA0E0OF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enableScreenShare", + "printedName": "enableScreenShare()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC17enableScreenShareyyYaF", + "mangledName": "$s11VideoSDKRTC7MeetingC17enableScreenShareyyYaF", + "moduleName": "VideoSDKRTC", + "intro_iOS": "13.0.0", + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableScreenShare", + "printedName": "disableScreenShare()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC18disableScreenShareyyYaF", + "mangledName": "$s11VideoSDKRTC7MeetingC18disableScreenShareyyYaF", + "moduleName": "VideoSDKRTC", + "intro_iOS": "13.0.0", + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "changeMic", + "printedName": "changeMic(selectedDevice:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC9changeMic14selectedDeviceySS_tF", + "mangledName": "$s11VideoSDKRTC7MeetingC9changeMic14selectedDeviceySS_tF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getMics", + "printedName": "getMics()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(deviceName: Swift.String, deviceType: Swift.String)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(deviceName: Swift.String, deviceType: Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC7getMicsSaySS10deviceName_SS0F4TypetGyF", + "mangledName": "$s11VideoSDKRTC7MeetingC7getMicsSaySS10deviceName_SS0F4TypetGyF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeOberver", + "printedName": "removeOberver()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC13removeOberveryyF", + "mangledName": "$s11VideoSDKRTC7MeetingC13removeOberveryyF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEventListener", + "printedName": "addEventListener(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MeetingEventListener", + "printedName": "VideoSDKRTC.MeetingEventListener", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC16addEventListeneryyAA0ceF0_pF", + "mangledName": "$s11VideoSDKRTC7MeetingC16addEventListeneryyAA0ceF0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeEventListener", + "printedName": "removeEventListener(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MeetingEventListener", + "printedName": "VideoSDKRTC.MeetingEventListener", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC19removeEventListeneryyAA0ceF0_pF", + "mangledName": "$s11VideoSDKRTC7MeetingC19removeEventListeneryyAA0ceF0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Meeting", + "printedName": "VideoSDKRTC.Meeting", + "usr": "s:11VideoSDKRTC7MeetingC" + }, + { + "kind": "TypeNominal", + "name": "Meeting", + "printedName": "VideoSDKRTC.Meeting", + "usr": "s:11VideoSDKRTC7MeetingC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MeetingC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC7MeetingC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC7MeetingC", + "mangledName": "$s11VideoSDKRTC7MeetingC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeetingEventListener", + "printedName": "MeetingEventListener", + "children": [ + { + "kind": "Function", + "name": "onMeetingJoined", + "printedName": "onMeetingJoined()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP02onC6JoinedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP02onC6JoinedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMeetingLeft", + "printedName": "onMeetingLeft()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP02onC4LeftyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP02onC4LeftyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onParticipantJoined", + "printedName": "onParticipantJoined(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onParticipantJoinedyyAA0G0CF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onParticipantJoinedyyAA0G0CF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onParticipantLeft", + "printedName": "onParticipantLeft(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP17onParticipantLeftyyAA0G0CF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP17onParticipantLeftyyAA0G0CF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRecordingStarted", + "printedName": "onRecordingStarted()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP18onRecordingStartedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP18onRecordingStartedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRecordingStoppped", + "printedName": "onRecordingStoppped()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onRecordingStopppedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onRecordingStopppedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onLivestreamStarted", + "printedName": "onLivestreamStarted()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onLivestreamStartedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onLivestreamStartedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onLivestreamStopped", + "printedName": "onLivestreamStopped()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP19onLivestreamStoppedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP19onLivestreamStoppedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSpeakerChanged", + "printedName": "onSpeakerChanged(participantId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP16onSpeakerChanged13participantIdySSSg_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP16onSpeakerChanged13participantIdySSSg_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMicRequested", + "printedName": "onMicRequested(participantId:accept:reject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWebcamRequested", + "printedName": "onWebcamRequested(participantId:accept:reject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSocketError", + "printedName": "onSocketError(message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP13onSocketError7messageySS_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP13onSocketError7messageySS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMeetingStateChanged", + "printedName": "onMeetingStateChanged(meetingState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP02onC12StateChanged07meetingG0yAA0cG0O_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP02onC12StateChanged07meetingG0yAA0cG0O_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onError", + "printedName": "onError(error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP7onError5erroryAA0A8SDKErrorO_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP7onError5erroryAA0A8SDKErrorO_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onHlsStateChanged", + "printedName": "onHlsStateChanged(state:hlsUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.HLSUrl?", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSUrl", + "printedName": "VideoSDKRTC.HLSUrl", + "usr": "s:11VideoSDKRTC6HLSUrlC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP17onHlsStateChanged5state6hlsUrlyAA8HLSStateO_AA6HLSUrlCSgtF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP17onHlsStateChanged5state6hlsUrlyAA8HLSStateO_AA6HLSUrlCSgtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onLivestreamStateChanged", + "printedName": "onLivestreamStateChanged(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP24onLivestreamStateChanged5stateyAA010LiveStreamH0O_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP24onLivestreamStateChanged5stateyAA010LiveStreamH0O_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRecordingStateChanged", + "printedName": "onRecordingStateChanged(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP23onRecordingStateChanged5stateyAA0gH0O_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP23onRecordingStateChanged5stateyAA0gH0O_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onPinStateChanged", + "printedName": "onPinStateChanged(participantId:pinType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP17onPinStateChanged13participantId7pinTypeySS_AA0gM0OtF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP17onPinStateChanged13participantId7pinTypeySS_AA0gM0OtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onParticipantModeChanged", + "printedName": "onParticipantModeChanged(participantId:mode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP24onParticipantModeChanged13participantId4modeySS_AA0H0OtF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP24onParticipantModeChanged13participantId4modeySS_AA0H0OtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMicChanged", + "printedName": "onMicChanged(selectedDevice:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP12onMicChanged14selectedDeviceySS_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP12onMicChanged14selectedDeviceySS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMeetingJoined", + "printedName": "onMeetingJoined()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE02onC6JoinedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE02onC6JoinedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMeetingLeft", + "printedName": "onMeetingLeft()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE02onC4LeftyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE02onC4LeftyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onParticipantJoined", + "printedName": "onParticipantJoined(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onParticipantJoinedyyAA0G0CF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onParticipantJoinedyyAA0G0CF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onParticipantLeft", + "printedName": "onParticipantLeft(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE17onParticipantLeftyyAA0G0CF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE17onParticipantLeftyyAA0G0CF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRecordingStarted", + "printedName": "onRecordingStarted()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE18onRecordingStartedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE18onRecordingStartedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRecordingStoppped", + "printedName": "onRecordingStoppped()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onRecordingStopppedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onRecordingStopppedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onLivestreamStarted", + "printedName": "onLivestreamStarted()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStartedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStartedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onLivestreamStopped", + "printedName": "onLivestreamStopped()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStoppedyyF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE19onLivestreamStoppedyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSpeakerChanged", + "printedName": "onSpeakerChanged(participantId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE16onSpeakerChanged13participantIdySSSg_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE16onSpeakerChanged13participantIdySSSg_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMicRequested", + "printedName": "onMicRequested(participantId:accept:reject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE14onMicRequested13participantId6accept6rejectySSSg_yycyyctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWebcamRequested", + "printedName": "onWebcamRequested(participantId:accept:reject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE17onWebcamRequested13participantId6accept6rejectySSSg_yycyyctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSocketError", + "printedName": "onSocketError(message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE13onSocketError7messageySS_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE13onSocketError7messageySS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMeetingStateChanged", + "printedName": "onMeetingStateChanged(meetingState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE02onC12StateChanged07meetingG0yAA0cG0O_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE02onC12StateChanged07meetingG0yAA0cG0O_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onError", + "printedName": "onError(error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE7onError5erroryAA0A8SDKErrorO_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE7onError5erroryAA0A8SDKErrorO_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onHlsStateChanged", + "printedName": "onHlsStateChanged(state:hlsUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.HLSUrl?", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSUrl", + "printedName": "VideoSDKRTC.HLSUrl", + "usr": "s:11VideoSDKRTC6HLSUrlC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE17onHlsStateChanged5state6hlsUrlyAA8HLSStateO_AA6HLSUrlCSgtF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE17onHlsStateChanged5state6hlsUrlyAA8HLSStateO_AA6HLSUrlCSgtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onLivestreamStateChanged", + "printedName": "onLivestreamStateChanged(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE24onLivestreamStateChanged5stateyAA010LiveStreamH0O_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE24onLivestreamStateChanged5stateyAA010LiveStreamH0O_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRecordingStateChanged", + "printedName": "onRecordingStateChanged(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE23onRecordingStateChanged5stateyAA0gH0O_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE23onRecordingStateChanged5stateyAA0gH0O_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onPinStateChanged", + "printedName": "onPinStateChanged(participantId:pinType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE17onPinStateChanged13participantId7pinTypeySS_AA0gM0OtF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE17onPinStateChanged13participantId7pinTypeySS_AA0gM0OtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onParticipantModeChanged", + "printedName": "onParticipantModeChanged(participantId:mode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE24onParticipantModeChanged13participantId4modeySS_AA0H0OtF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE24onParticipantModeChanged13participantId4modeySS_AA0H0OtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onMicChanged", + "printedName": "onMicChanged(selectedDevice:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeetingEventListenerPAAE12onMicChanged14selectedDeviceySS_tF", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerPAAE12onMicChanged14selectedDeviceySS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeetingEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC20MeetingEventListenerP", + "mangledName": "$s11VideoSDKRTC20MeetingEventListenerP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeetingState", + "printedName": "MeetingState", + "children": [ + { + "kind": "Var", + "name": "CONNECTING", + "printedName": "CONNECTING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MeetingState.Type) -> VideoSDKRTC.MeetingState", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MeetingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC12MeetingStateO10CONNECTINGyA2CmF", + "mangledName": "$s11VideoSDKRTC12MeetingStateO10CONNECTINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "CONNECTED", + "printedName": "CONNECTED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MeetingState.Type) -> VideoSDKRTC.MeetingState", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MeetingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC12MeetingStateO9CONNECTEDyA2CmF", + "mangledName": "$s11VideoSDKRTC12MeetingStateO9CONNECTEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "CLOSING", + "printedName": "CLOSING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MeetingState.Type) -> VideoSDKRTC.MeetingState", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MeetingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC12MeetingStateO7CLOSINGyA2CmF", + "mangledName": "$s11VideoSDKRTC12MeetingStateO7CLOSINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "CLOSED", + "printedName": "CLOSED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MeetingState.Type) -> VideoSDKRTC.MeetingState", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MeetingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC12MeetingStateO6CLOSEDyA2CmF", + "mangledName": "$s11VideoSDKRTC12MeetingStateO6CLOSEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "CANCELLED", + "printedName": "CANCELLED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MeetingState.Type) -> VideoSDKRTC.MeetingState", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MeetingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC12MeetingStateO9CANCELLEDyA2CmF", + "mangledName": "$s11VideoSDKRTC12MeetingStateO9CANCELLEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.MeetingState?", + "children": [ + { + "kind": "TypeNominal", + "name": "MeetingState", + "printedName": "VideoSDKRTC.MeetingState", + "usr": "s:11VideoSDKRTC12MeetingStateO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC12MeetingStateO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC12MeetingStateO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12MeetingStateO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC12MeetingStateO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12MeetingStateO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC12MeetingStateO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC12MeetingStateO", + "mangledName": "$s11VideoSDKRTC12MeetingStateO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Mode", + "printedName": "Mode", + "children": [ + { + "kind": "Var", + "name": "CONFERENCE", + "printedName": "CONFERENCE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Mode.Type) -> VideoSDKRTC.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC4ModeO10CONFERENCEyA2CmF", + "mangledName": "$s11VideoSDKRTC4ModeO10CONFERENCEyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "VIEWER", + "printedName": "VIEWER", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Mode.Type) -> VideoSDKRTC.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC4ModeO6VIEWERyA2CmF", + "mangledName": "$s11VideoSDKRTC4ModeO6VIEWERyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC4ModeO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC4ModeO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4ModeO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC4ModeO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Mode?", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC4ModeO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC4ModeO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC4ModeO", + "mangledName": "$s11VideoSDKRTC4ModeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "VideoSDKError", + "printedName": "VideoSDKError", + "children": [ + { + "kind": "Var", + "name": "UNKNOWN_ERROR", + "printedName": "UNKNOWN_ERROR", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO13UNKNOWN_ERRORyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO13UNKNOWN_ERRORyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "INVALID_API_KEY", + "printedName": "INVALID_API_KEY", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO15INVALID_API_KEYyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO15INVALID_API_KEYyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "INVALID_TOKEN", + "printedName": "INVALID_TOKEN", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO13INVALID_TOKENyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO13INVALID_TOKENyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "INVALID_MEETING_ID", + "printedName": "INVALID_MEETING_ID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO18INVALID_MEETING_IDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO18INVALID_MEETING_IDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "INVALID_PARTICIPANT_ID", + "printedName": "INVALID_PARTICIPANT_ID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO22INVALID_PARTICIPANT_IDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO22INVALID_PARTICIPANT_IDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "DUPLICATE_PARTICIPANT", + "printedName": "DUPLICATE_PARTICIPANT", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO21DUPLICATE_PARTICIPANTyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO21DUPLICATE_PARTICIPANTyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ACCOUNT_DEACTIVATED", + "printedName": "ACCOUNT_DEACTIVATED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO19ACCOUNT_DEACTIVATEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO19ACCOUNT_DEACTIVATEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ACCOUNT_DISCONTINUED", + "printedName": "ACCOUNT_DISCONTINUED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO20ACCOUNT_DISCONTINUEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO20ACCOUNT_DISCONTINUEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "INVALID_PERMISSIONS", + "printedName": "INVALID_PERMISSIONS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO19INVALID_PERMISSIONSyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO19INVALID_PERMISSIONSyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "MAX_PARTCIPANT_REACHED", + "printedName": "MAX_PARTCIPANT_REACHED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO22MAX_PARTCIPANT_REACHEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO22MAX_PARTCIPANT_REACHEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "MAX_SPEAKER_REACHED", + "printedName": "MAX_SPEAKER_REACHED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO19MAX_SPEAKER_REACHEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO19MAX_SPEAKER_REACHEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "START_RECORDING_FAILED", + "printedName": "START_RECORDING_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO22START_RECORDING_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO22START_RECORDING_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "STOP_RECORDING_FAILED", + "printedName": "STOP_RECORDING_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO21STOP_RECORDING_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO21STOP_RECORDING_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "START_LIVESTREAM_FAILED", + "printedName": "START_LIVESTREAM_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO23START_LIVESTREAM_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO23START_LIVESTREAM_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "STOP_LIVESTREAM_FAILED", + "printedName": "STOP_LIVESTREAM_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO22STOP_LIVESTREAM_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO22STOP_LIVESTREAM_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "INVALID_LIVESTREAM_CONFIG", + "printedName": "INVALID_LIVESTREAM_CONFIG", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO25INVALID_LIVESTREAM_CONFIGyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO25INVALID_LIVESTREAM_CONFIGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "START_HLS_FAILED", + "printedName": "START_HLS_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO16START_HLS_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO16START_HLS_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "STOP_HLS_FAILED", + "printedName": "STOP_HLS_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO15STOP_HLS_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO15STOP_HLS_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "RECORDING_FAILED", + "printedName": "RECORDING_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO16RECORDING_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO16RECORDING_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "LIVESTREAM_FAILED", + "printedName": "LIVESTREAM_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO17LIVESTREAM_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO17LIVESTREAM_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "HLS_FAILED", + "printedName": "HLS_FAILED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO10HLS_FAILEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO10HLS_FAILEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ERROR_GET_VIDEO_MEDIA", + "printedName": "ERROR_GET_VIDEO_MEDIA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO21ERROR_GET_VIDEO_MEDIAyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO21ERROR_GET_VIDEO_MEDIAyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "ERROR_GET_AUDIO_MEDIA", + "printedName": "ERROR_GET_AUDIO_MEDIA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO21ERROR_GET_AUDIO_MEDIAyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO21ERROR_GET_AUDIO_MEDIAyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ERROR_GET_DISPLAY_MEDIA", + "printedName": "ERROR_GET_DISPLAY_MEDIA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO23ERROR_GET_DISPLAY_MEDIAyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO23ERROR_GET_DISPLAY_MEDIAyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ERROR_GET_VIDEO_MEDIA_PERMISSION_DENIED", + "printedName": "ERROR_GET_VIDEO_MEDIA_PERMISSION_DENIED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO39ERROR_GET_VIDEO_MEDIA_PERMISSION_DENIEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO39ERROR_GET_VIDEO_MEDIA_PERMISSION_DENIEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ERROR_GET_AUDIO_MEDIA_PERMISSION_DENIED", + "printedName": "ERROR_GET_AUDIO_MEDIA_PERMISSION_DENIED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO39ERROR_GET_AUDIO_MEDIA_PERMISSION_DENIEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO39ERROR_GET_AUDIO_MEDIA_PERMISSION_DENIEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ERROR_GET_DISPLAY_MEDIA_PERMISSION_DENIED", + "printedName": "ERROR_GET_DISPLAY_MEDIA_PERMISSION_DENIED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoSDKError.Type) -> VideoSDKRTC.VideoSDKError", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoSDKError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A8SDKErrorO41ERROR_GET_DISPLAY_MEDIA_PERMISSION_DENIEDyA2CmF", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO41ERROR_GET_DISPLAY_MEDIA_PERMISSION_DENIEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.VideoSDKError?", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoSDKError", + "printedName": "VideoSDKRTC.VideoSDKError", + "usr": "s:11VideoSDKRTC0A8SDKErrorO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC0A8SDKErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC0A8SDKErrorO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC0A8SDKErrorO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC0A8SDKErrorO", + "mangledName": "$s11VideoSDKRTC0A8SDKErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "HLSState", + "printedName": "HLSState", + "children": [ + { + "kind": "Var", + "name": "HLS_STARTED", + "printedName": "HLS_STARTED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.HLSState.Type) -> VideoSDKRTC.HLSState", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.HLSState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8HLSStateO11HLS_STARTEDyA2CmF", + "mangledName": "$s11VideoSDKRTC8HLSStateO11HLS_STARTEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "HLS_STARTING", + "printedName": "HLS_STARTING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.HLSState.Type) -> VideoSDKRTC.HLSState", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.HLSState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8HLSStateO12HLS_STARTINGyA2CmF", + "mangledName": "$s11VideoSDKRTC8HLSStateO12HLS_STARTINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "HLS_STOPPED", + "printedName": "HLS_STOPPED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.HLSState.Type) -> VideoSDKRTC.HLSState", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.HLSState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8HLSStateO11HLS_STOPPEDyA2CmF", + "mangledName": "$s11VideoSDKRTC8HLSStateO11HLS_STOPPEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "HLS_STOPPING", + "printedName": "HLS_STOPPING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.HLSState.Type) -> VideoSDKRTC.HLSState", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.HLSState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8HLSStateO12HLS_STOPPINGyA2CmF", + "mangledName": "$s11VideoSDKRTC8HLSStateO12HLS_STOPPINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "HLS_PLAYABLE", + "printedName": "HLS_PLAYABLE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.HLSState.Type) -> VideoSDKRTC.HLSState", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.HLSState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8HLSStateO12HLS_PLAYABLEyA2CmF", + "mangledName": "$s11VideoSDKRTC8HLSStateO12HLS_PLAYABLEyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.HLSState?", + "children": [ + { + "kind": "TypeNominal", + "name": "HLSState", + "printedName": "VideoSDKRTC.HLSState", + "usr": "s:11VideoSDKRTC8HLSStateO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8HLSStateO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC8HLSStateO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8HLSStateO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC8HLSStateO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8HLSStateO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC8HLSStateO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC8HLSStateO", + "mangledName": "$s11VideoSDKRTC8HLSStateO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RecordingState", + "printedName": "RecordingState", + "children": [ + { + "kind": "Var", + "name": "RECORDING_STARTED", + "printedName": "RECORDING_STARTED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.RecordingState.Type) -> VideoSDKRTC.RecordingState", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.RecordingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14RecordingStateO17RECORDING_STARTEDyA2CmF", + "mangledName": "$s11VideoSDKRTC14RecordingStateO17RECORDING_STARTEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "RECORDING_STARTING", + "printedName": "RECORDING_STARTING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.RecordingState.Type) -> VideoSDKRTC.RecordingState", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.RecordingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14RecordingStateO18RECORDING_STARTINGyA2CmF", + "mangledName": "$s11VideoSDKRTC14RecordingStateO18RECORDING_STARTINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "RECORDING_STOPPED", + "printedName": "RECORDING_STOPPED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.RecordingState.Type) -> VideoSDKRTC.RecordingState", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.RecordingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14RecordingStateO17RECORDING_STOPPEDyA2CmF", + "mangledName": "$s11VideoSDKRTC14RecordingStateO17RECORDING_STOPPEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "RECORDING_STOPPING", + "printedName": "RECORDING_STOPPING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.RecordingState.Type) -> VideoSDKRTC.RecordingState", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.RecordingState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14RecordingStateO18RECORDING_STOPPINGyA2CmF", + "mangledName": "$s11VideoSDKRTC14RecordingStateO18RECORDING_STOPPINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.RecordingState?", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordingState", + "printedName": "VideoSDKRTC.RecordingState", + "usr": "s:11VideoSDKRTC14RecordingStateO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14RecordingStateO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC14RecordingStateO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14RecordingStateO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC14RecordingStateO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14RecordingStateO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC14RecordingStateO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC14RecordingStateO", + "mangledName": "$s11VideoSDKRTC14RecordingStateO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LiveStreamState", + "printedName": "LiveStreamState", + "children": [ + { + "kind": "Var", + "name": "LIVESTREAM_STARTED", + "printedName": "LIVESTREAM_STARTED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.LiveStreamState.Type) -> VideoSDKRTC.LiveStreamState", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.LiveStreamState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15LiveStreamStateO18LIVESTREAM_STARTEDyA2CmF", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO18LIVESTREAM_STARTEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "LIVESTREAM_STARTING", + "printedName": "LIVESTREAM_STARTING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.LiveStreamState.Type) -> VideoSDKRTC.LiveStreamState", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.LiveStreamState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15LiveStreamStateO19LIVESTREAM_STARTINGyA2CmF", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO19LIVESTREAM_STARTINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "LIVESTREAM_STOPPED", + "printedName": "LIVESTREAM_STOPPED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.LiveStreamState.Type) -> VideoSDKRTC.LiveStreamState", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.LiveStreamState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15LiveStreamStateO18LIVESTREAM_STOPPEDyA2CmF", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO18LIVESTREAM_STOPPEDyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "LIVESTREAM_STOPPING", + "printedName": "LIVESTREAM_STOPPING", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.LiveStreamState.Type) -> VideoSDKRTC.LiveStreamState", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.LiveStreamState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC15LiveStreamStateO19LIVESTREAM_STOPPINGyA2CmF", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO19LIVESTREAM_STOPPINGyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.LiveStreamState?", + "children": [ + { + "kind": "TypeNominal", + "name": "LiveStreamState", + "printedName": "VideoSDKRTC.LiveStreamState", + "usr": "s:11VideoSDKRTC15LiveStreamStateO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC15LiveStreamStateO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15LiveStreamStateO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15LiveStreamStateO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC15LiveStreamStateO", + "mangledName": "$s11VideoSDKRTC15LiveStreamStateO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Message", + "printedName": "Message", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePxycfc", + "mangledName": "$s11VideoSDKRTC7MessagePxycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MessageP05protoC4NameSSvpZ", + "mangledName": "$s11VideoSDKRTC7MessageP05protoC4NameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MessageP05protoC4NameSSvgZ", + "mangledName": "$s11VideoSDKRTC7MessageP05protoC4NameSSvgZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MessageP13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC7MessageP13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MessageP13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC7MessageP13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC7MessageP13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessageP06decodeC07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC7MessageP06decodeC07decoderyqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessageP8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "mangledName": "$s11VideoSDKRTC7MessageP8traverse7visitoryqd__z_tKAA7VisitorRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessageP4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC7MessageP4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqualTo", + "printedName": "isEqualTo(message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessageP9isEqualTo7messageSbAaB_p_tF", + "mangledName": "$s11VideoSDKRTC7MessageP9isEqualTo7messageSbAaB_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isInitialized", + "printedName": "isInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7MessagePAAE13isInitializedSbvp", + "mangledName": "$s11VideoSDKRTC7MessagePAAE13isInitializedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7MessagePAAE13isInitializedSbvg", + "mangledName": "$s11VideoSDKRTC7MessagePAAE13isInitializedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(inout τ_0_0) throws -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE4withyxyxzKXEKFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE4withyxyxzKXEKFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "Rethrows", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(unpackingAny:extensions:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE12unpackingAny10extensions7optionsxAA016Google_Protobuf_E0V_AA12ExtensionMap_pSgAA21BinaryDecodingOptionsVtKcfc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE12unpackingAny10extensions7optionsxAA016Google_Protobuf_E0V_AA12ExtensionMap_pSgAA21BinaryDecodingOptionsVtKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "serializedBytes", + "printedName": "serializedBytes(partial:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE15serializedBytes7partialqd__Sb_tKAA023SwiftProtobufContiguousE0Rd__lF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE15serializedBytes7partialqd__Sb_tKAA023SwiftProtobufContiguousE0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serializedBytes:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE15serializedBytes10extensions7partial7optionsxqd___AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKcAA023SwiftProtobufContiguousE0Rd__lufc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE15serializedBytes10extensions7partial7optionsxqd___AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKcAA023SwiftProtobufContiguousE0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "Inlinable", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "merge", + "printedName": "merge(serializedBytes:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5merge15serializedBytes10extensions7partial7optionsyqd___AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKAA023SwiftProtobufContiguousF0Rd__lF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5merge15serializedBytes10extensions7partial7optionsyqd___AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKAA023SwiftProtobufContiguousF0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "Inlinable", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "_merge", + "printedName": "_merge(rawBuffer:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawBufferPointer", + "printedName": "Swift.UnsafeRawBufferPointer", + "usr": "s:SW" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE6_merge9rawBuffer10extensions7partial7optionsySW_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE6_merge9rawBuffer10extensions7partial7optionsySW_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "UsableFromInline", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serializedData:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE14serializedData10extensions7partial7optionsx10Foundation0E0V_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKcfc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE14serializedData10extensions7partial7optionsx10Foundation0E0V_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "Inlinable", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "merge", + "printedName": "merge(serializedData:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5merge14serializedData10extensions7partial7optionsy10Foundation0F0V_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5merge14serializedData10extensions7partial7optionsy10Foundation0F0V_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "Inlinable", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "serializedData", + "printedName": "serializedData(partial:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE14serializedData7partial10Foundation0E0VSb_tKF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE14serializedData7partial10Foundation0E0VSb_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "jsonString", + "printedName": "jsonString(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingOptions", + "printedName": "VideoSDKRTC.JSONEncodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE10jsonString7optionsSSAA19JSONEncodingOptionsV_tKF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE10jsonString7optionsSSAA19JSONEncodingOptionsV_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "jsonUTF8Bytes", + "printedName": "jsonUTF8Bytes(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingOptions", + "printedName": "VideoSDKRTC.JSONEncodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes7optionsqd__AA19JSONEncodingOptionsV_tKAA023SwiftProtobufContiguousF0Rd__lF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes7optionsqd__AA19JSONEncodingOptionsV_tKAA023SwiftProtobufContiguousF0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jsonString:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE10jsonString7optionsxSS_AA19JSONDecodingOptionsVtKcfc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE10jsonString7optionsxSS_AA19JSONDecodingOptionsVtKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jsonString:extensions:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE10jsonString10extensions7optionsxSS_AA12ExtensionMap_pSgAA19JSONDecodingOptionsVtKcfc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE10jsonString10extensions7optionsxSS_AA12ExtensionMap_pSgAA19JSONDecodingOptionsVtKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jsonUTF8Bytes:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes7optionsxqd___AA19JSONDecodingOptionsVtKcAA023SwiftProtobufContiguousF0Rd__lufc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes7optionsxqd___AA19JSONDecodingOptionsVtKcAA023SwiftProtobufContiguousF0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jsonUTF8Bytes:extensions:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes10extensions7optionsxqd___AA12ExtensionMap_pSgAA19JSONDecodingOptionsVtKcAA023SwiftProtobufContiguousF0Rd__lufc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes10extensions7optionsxqd___AA12ExtensionMap_pSgAA19JSONDecodingOptionsVtKcAA023SwiftProtobufContiguousF0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jsonUTF8Data:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE12jsonUTF8Data7optionsx10Foundation0F0V_AA19JSONDecodingOptionsVtKcfc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE12jsonUTF8Data7optionsx10Foundation0F0V_AA19JSONDecodingOptionsVtKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jsonUTF8Data:extensions:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE12jsonUTF8Data10extensions7optionsx10Foundation0F0V_AA12ExtensionMap_pSgAA19JSONDecodingOptionsVtKcfc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE12jsonUTF8Data10extensions7optionsx10Foundation0F0V_AA12ExtensionMap_pSgAA19JSONDecodingOptionsVtKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "jsonUTF8Data", + "printedName": "jsonUTF8Data(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingOptions", + "printedName": "VideoSDKRTC.JSONEncodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE12jsonUTF8Data7options10Foundation0F0VAA19JSONEncodingOptionsV_tKF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE12jsonUTF8Data7options10Foundation0F0VAA19JSONEncodingOptionsV_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "jsonString", + "printedName": "jsonString(from:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingOptions", + "printedName": "VideoSDKRTC.JSONEncodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE10jsonString4from7optionsSSqd___AA19JSONEncodingOptionsVtK7ElementQyd__RszSlRd__lFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE10jsonString4from7optionsSSqd___AA19JSONEncodingOptionsVtK7ElementQyd__RszSlRd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_0_0 == τ_1_0.Element, τ_1_0 : Swift.Collection>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "jsonUTF8Bytes", + "printedName": "jsonUTF8Bytes(from:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingOptions", + "printedName": "VideoSDKRTC.JSONEncodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes4from7optionsqd_0_qd___AA19JSONEncodingOptionsVtK7ElementQyd__RszSlRd__AA023SwiftProtobufContiguousF0Rd_0_r0_lFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE13jsonUTF8Bytes4from7optionsqd_0_qd___AA19JSONEncodingOptionsVtK7ElementQyd__RszSlRd__AA023SwiftProtobufContiguousF0Rd_0_r0_lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0, τ_1_1 where τ_0_0 : VideoSDKRTC.Message, τ_0_0 == τ_1_0.Element, τ_1_0 : Swift.Collection, τ_1_1 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(fromJSONString:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5array14fromJSONString7optionsSayxGSS_AA19JSONDecodingOptionsVtKFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5array14fromJSONString7optionsSayxGSS_AA19JSONDecodingOptionsVtKFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(fromJSONString:extensions:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC12ExtensionMapP" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5array14fromJSONString10extensions7optionsSayxGSS_AA12ExtensionMap_pAA19JSONDecodingOptionsVtKFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5array14fromJSONString10extensions7optionsSayxGSS_AA12ExtensionMap_pAA19JSONDecodingOptionsVtKFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(fromJSONUTF8Bytes:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5array17fromJSONUTF8Bytes7optionsSayxGqd___AA19JSONDecodingOptionsVtKAA023SwiftProtobufContiguousG0Rd__lFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5array17fromJSONUTF8Bytes7optionsSayxGqd___AA19JSONDecodingOptionsVtKAA023SwiftProtobufContiguousG0Rd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(fromJSONUTF8Bytes:extensions:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC12ExtensionMapP" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5array17fromJSONUTF8Bytes10extensions7optionsSayxGqd___AA12ExtensionMap_pAA19JSONDecodingOptionsVtKAA023SwiftProtobufContiguousG0Rd__lFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5array17fromJSONUTF8Bytes10extensions7optionsSayxGqd___AA12ExtensionMap_pAA19JSONDecodingOptionsVtKAA023SwiftProtobufContiguousG0Rd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(fromJSONUTF8Data:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5array16fromJSONUTF8Data7optionsSayxG10Foundation0G0V_AA19JSONDecodingOptionsVtKFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5array16fromJSONUTF8Data7optionsSayxG10Foundation0G0V_AA19JSONDecodingOptionsVtKFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(fromJSONUTF8Data:extensions:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC12ExtensionMapP" + }, + { + "kind": "TypeNominal", + "name": "JSONDecodingOptions", + "printedName": "VideoSDKRTC.JSONDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE5array16fromJSONUTF8Data10extensions7optionsSayxG10Foundation0G0V_AA12ExtensionMap_pAA19JSONDecodingOptionsVtKFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE5array16fromJSONUTF8Data10extensions7optionsSayxG10Foundation0G0V_AA12ExtensionMap_pAA19JSONDecodingOptionsVtKFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "jsonUTF8Data", + "printedName": "jsonUTF8Data(from:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "JSONEncodingOptions", + "printedName": "VideoSDKRTC.JSONEncodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC19JSONEncodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE12jsonUTF8Data4from7options10Foundation0F0Vqd___AA19JSONEncodingOptionsVtK7ElementQyd__RszSlRd__lFZ", + "mangledName": "$s11VideoSDKRTC7MessagePAAE12jsonUTF8Data4from7options10Foundation0F0Vqd___AA19JSONEncodingOptionsVtK7ElementQyd__RszSlRd__lFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Message, τ_0_0 == τ_1_0.Element, τ_1_0 : Swift.Collection>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "textFormatString", + "printedName": "textFormatString()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE16textFormatStringSSyF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE16textFormatStringSSyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "textFormatString", + "printedName": "textFormatString(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TextFormatEncodingOptions", + "printedName": "VideoSDKRTC.TextFormatEncodingOptions", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7MessagePAAE16textFormatString7optionsSSAA04TextE15EncodingOptionsV_tF", + "mangledName": "$s11VideoSDKRTC7MessagePAAE16textFormatString7optionsSSAA04TextE15EncodingOptionsV_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(textFormatString:options:extensions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TextFormatDecodingOptions", + "printedName": "VideoSDKRTC.TextFormatDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7MessagePAAE16textFormatString7options10extensionsxSS_AA04TextE15DecodingOptionsVAA12ExtensionMap_pSgtKcfc", + "mangledName": "$s11VideoSDKRTC7MessagePAAE16textFormatString7options10extensionsxSS_AA04TextE15DecodingOptionsVAA12ExtensionMap_pSgtKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC._MessageBase>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "_MessageBase", + "printedName": "_MessageBase", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : Swift.Sendable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "children": [ + { + "kind": "Function", + "name": "_protobuf_generated_isEqualTo", + "printedName": "_protobuf_generated_isEqualTo(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP29_protobuf_generated_isEqualTo5otherSbx_tF", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP29_protobuf_generated_isEqualTo5otherSbx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC._MessageImplementationBase>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqualTo", + "printedName": "isEqualTo(message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26_MessageImplementationBasePAAE9isEqualTo7messageSbAA0C0_p_tF", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBasePAAE9isEqualTo7messageSbAA0C0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC._MessageImplementationBase>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26_MessageImplementationBasePAAE2eeoiySbx_xtFZ", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBasePAAE2eeoiySbx_xtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC._MessageImplementationBase>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "_protobuf_generated_isEqualTo", + "printedName": "_protobuf_generated_isEqualTo(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26_MessageImplementationBasePAAE29_protobuf_generated_isEqualTo5otherSbx_tF", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBasePAAE29_protobuf_generated_isEqualTo5otherSbx_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC._MessageImplementationBase>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : Swift.Hashable, τ_0_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AnyMessageExtension", + "printedName": "AnyMessageExtension", + "children": [ + { + "kind": "Var", + "name": "fieldNumber", + "printedName": "fieldNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP11fieldNumberSivp", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP11fieldNumberSivp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP11fieldNumberSivg", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP11fieldNumberSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyMessageExtension>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fieldName", + "printedName": "fieldName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP9fieldNameSSvp", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP9fieldNameSSvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP9fieldNameSSvg", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP9fieldNameSSvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyMessageExtension>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messageType", + "printedName": "messageType", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP11messageTypeAA0D0_pXpvp", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP11messageTypeAA0D0_pXpvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP11messageTypeAA0D0_pXpvg", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP11messageTypeAA0D0_pXpvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.AnyMessageExtension>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "_protobuf_newField", + "printedName": "_protobuf_newField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyExtensionField?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP18_protobuf_newField7decoderAA0ceH0_pSgqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP18_protobuf_newField7decoderAA0ceH0_pSgqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.AnyMessageExtension, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : Swift.Sendable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MessageExtension", + "printedName": "MessageExtension", + "children": [ + { + "kind": "Var", + "name": "fieldNumber", + "printedName": "fieldNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MessageExtensionC11fieldNumberSivp", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC11fieldNumberSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MessageExtensionC11fieldNumberSivg", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC11fieldNumberSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.ExtensionField, τ_0_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fieldName", + "printedName": "fieldName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MessageExtensionC9fieldNameSSvp", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC9fieldNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MessageExtensionC9fieldNameSSvg", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC9fieldNameSSvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.ExtensionField, τ_0_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messageType", + "printedName": "messageType", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MessageExtensionC11messageTypeAA0C0_pXpvp", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC11messageTypeAA0C0_pXpvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MessageExtensionC11messageTypeAA0C0_pXpvg", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC11messageTypeAA0C0_pXpvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.ExtensionField, τ_0_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_protobuf_fieldNumber:fieldName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageExtension", + "printedName": "VideoSDKRTC.MessageExtension<τ_0_0, τ_0_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:11VideoSDKRTC16MessageExtensionC" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16MessageExtensionC21_protobuf_fieldNumber0F4NameACyxq_GSi_SStcfc", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC21_protobuf_fieldNumber0F4NameACyxq_GSi_SStcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.ExtensionField, τ_0_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "_protobuf_newField", + "printedName": "_protobuf_newField(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyExtensionField?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyExtensionField", + "printedName": "VideoSDKRTC.AnyExtensionField", + "usr": "s:11VideoSDKRTC17AnyExtensionFieldP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MessageExtensionC18_protobuf_newField7decoderAA03AnydG0_pSgqd__z_tKAA10SPBDecoderRd__lF", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC18_protobuf_newField7decoderAA03AnydG0_pSgqd__z_tKAA10SPBDecoderRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1, τ_1_0 where τ_0_0 : VideoSDKRTC.ExtensionField, τ_0_1 : VideoSDKRTC.Message, τ_1_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16MessageExtensionC", + "mangledName": "$s11VideoSDKRTC16MessageExtensionC", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.ExtensionField, τ_0_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AnyMessageExtension", + "printedName": "AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP", + "mangledName": "$s11VideoSDKRTC19AnyMessageExtensionP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Meter", + "printedName": "Meter", + "children": [ + { + "kind": "Function", + "name": "createIntCounter", + "printedName": "createIntCounter(name:monotonic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCounterMetric", + "printedName": "VideoSDKRTC.AnyCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC16AnyCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP16createIntCounter4name9monotonicAA03AnyF6MetricVySiGSS_SbtF", + "mangledName": "$s11VideoSDKRTC5MeterP16createIntCounter4name9monotonicAA03AnyF6MetricVySiGSS_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleCounter", + "printedName": "createDoubleCounter(name:monotonic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCounterMetric", + "printedName": "VideoSDKRTC.AnyCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC16AnyCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP19createDoubleCounter4name9monotonicAA03AnyF6MetricVySdGSS_SbtF", + "mangledName": "$s11VideoSDKRTC5MeterP19createDoubleCounter4name9monotonicAA03AnyF6MetricVySdGSS_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntMeasure", + "printedName": "createIntMeasure(name:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMeasureMetric", + "printedName": "VideoSDKRTC.AnyMeasureMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP16createIntMeasure4name8absoluteAA03AnyF6MetricVySiGSS_SbtF", + "mangledName": "$s11VideoSDKRTC5MeterP16createIntMeasure4name8absoluteAA03AnyF6MetricVySiGSS_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleMeasure", + "printedName": "createDoubleMeasure(name:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMeasureMetric", + "printedName": "VideoSDKRTC.AnyMeasureMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP19createDoubleMeasure4name8absoluteAA03AnyF6MetricVySdGSS_SbtF", + "mangledName": "$s11VideoSDKRTC5MeterP19createDoubleMeasure4name8absoluteAA03AnyF6MetricVySdGSS_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntHistogram", + "printedName": "createIntHistogram(name:explicitBoundaries:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyHistogramMetric", + "printedName": "VideoSDKRTC.AnyHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.Int]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP18createIntHistogram4name18explicitBoundaries8absoluteAA03AnyF6MetricVySiGSS_SaySiGSgSbtF", + "mangledName": "$s11VideoSDKRTC5MeterP18createIntHistogram4name18explicitBoundaries8absoluteAA03AnyF6MetricVySiGSS_SaySiGSgSbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleHistogram", + "printedName": "createDoubleHistogram(name:explicitBoundaries:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyHistogramMetric", + "printedName": "VideoSDKRTC.AnyHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP21createDoubleHistogram4name18explicitBoundaries8absoluteAA03AnyF6MetricVySdGSS_SaySdGSgSbtF", + "mangledName": "$s11VideoSDKRTC5MeterP21createDoubleHistogram4name18explicitBoundaries8absoluteAA03AnyF6MetricVySdGSS_SaySdGSgSbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRawDoubleHistogram", + "printedName": "createRawDoubleHistogram(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawHistogramMetric", + "printedName": "VideoSDKRTC.AnyRawHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP24createRawDoubleHistogram4nameAA03AnyeG6MetricVySdGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterP24createRawDoubleHistogram4nameAA03AnyeG6MetricVySdGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRawIntHistogram", + "printedName": "createRawIntHistogram(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawHistogramMetric", + "printedName": "VideoSDKRTC.AnyRawHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP21createRawIntHistogram4nameAA03AnyeG6MetricVySiGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterP21createRawIntHistogram4nameAA03AnyeG6MetricVySiGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRawDoubleCounter", + "printedName": "createRawDoubleCounter(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawCounterMetric", + "printedName": "VideoSDKRTC.AnyRawCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP22createRawDoubleCounter4nameAA03AnyeG6MetricVySdGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterP22createRawDoubleCounter4nameAA03AnyeG6MetricVySdGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRawIntCounter", + "printedName": "createRawIntCounter(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawCounterMetric", + "printedName": "VideoSDKRTC.AnyRawCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP19createRawIntCounter4nameAA03AnyeG6MetricVySiGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterP19createRawIntCounter4nameAA03AnyeG6MetricVySiGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntObserver", + "printedName": "createIntObserver(name:absolute:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.IntObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP17createIntObserver4name8absolute8callbackAA0eF6Metric_pSS_SbyAaH_pctF", + "mangledName": "$s11VideoSDKRTC5MeterP17createIntObserver4name8absolute8callbackAA0eF6Metric_pSS_SbyAaH_pctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleObserver", + "printedName": "createDoubleObserver(name:absolute:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.DoubleObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP20createDoubleObserver4name8absolute8callbackAA0eF6Metric_pSS_SbyAaH_pctF", + "mangledName": "$s11VideoSDKRTC5MeterP20createDoubleObserver4name8absolute8callbackAA0eF6Metric_pSS_SbyAaH_pctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntObservableGauge", + "printedName": "createIntObservableGauge(name:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.IntObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP24createIntObservableGauge4name8callbackAA0E14ObserverMetric_pSS_yAaG_pctF", + "mangledName": "$s11VideoSDKRTC5MeterP24createIntObservableGauge4name8callbackAA0E14ObserverMetric_pSS_yAaG_pctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleObservableGauge", + "printedName": "createDoubleObservableGauge(name:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.DoubleObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP27createDoubleObservableGauge4name8callbackAA0E14ObserverMetric_pSS_yAaG_pctF", + "mangledName": "$s11VideoSDKRTC5MeterP27createDoubleObservableGauge4name8callbackAA0E14ObserverMetric_pSS_yAaG_pctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getLabelSet", + "printedName": "getLabelSet(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterP11getLabelSet6labelsAA0eF0CSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC5MeterP11getLabelSet6labelsAA0eF0CSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntCounter", + "printedName": "createIntCounter(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCounterMetric", + "printedName": "VideoSDKRTC.AnyCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC16AnyCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterPAAE16createIntCounter4nameAA03AnyF6MetricVySiGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterPAAE16createIntCounter4nameAA03AnyF6MetricVySiGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleCounter", + "printedName": "createDoubleCounter(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCounterMetric", + "printedName": "VideoSDKRTC.AnyCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC16AnyCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterPAAE19createDoubleCounter4nameAA03AnyF6MetricVySdGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterPAAE19createDoubleCounter4nameAA03AnyF6MetricVySdGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntMeasure", + "printedName": "createIntMeasure(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMeasureMetric", + "printedName": "VideoSDKRTC.AnyMeasureMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterPAAE16createIntMeasure4nameAA03AnyF6MetricVySiGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterPAAE16createIntMeasure4nameAA03AnyF6MetricVySiGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleMeasure", + "printedName": "createDoubleMeasure(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMeasureMetric", + "printedName": "VideoSDKRTC.AnyMeasureMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterPAAE19createDoubleMeasure4nameAA03AnyF6MetricVySdGSS_tF", + "mangledName": "$s11VideoSDKRTC5MeterPAAE19createDoubleMeasure4nameAA03AnyF6MetricVySdGSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntObserver", + "printedName": "createIntObserver(name:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.IntObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterPAAE17createIntObserver4name8callbackAA0eF6Metric_pSS_yAaG_pctF", + "mangledName": "$s11VideoSDKRTC5MeterPAAE17createIntObserver4name8callbackAA0eF6Metric_pSS_yAaG_pctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleObserver", + "printedName": "createDoubleObserver(name:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.DoubleObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterPAAE20createDoubleObserver4name8callbackAA0eF6Metric_pSS_yAaG_pctF", + "mangledName": "$s11VideoSDKRTC5MeterPAAE20createDoubleObserver4name8callbackAA0eF6Metric_pSS_yAaG_pctF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addMetric", + "printedName": "addMetric(name:type:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.MetricData]", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC5MeterPAAE9addMetric4name4type4dataySS_AA15AggregationTypeOSayAA0E4Data_pGtF", + "mangledName": "$s11VideoSDKRTC5MeterPAAE9addMetric4name4type4dataySS_AA15AggregationTypeOSayAA0E4Data_pGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Meter>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC5MeterP", + "mangledName": "$s11VideoSDKRTC5MeterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeterBuilder", + "printedName": "MeterBuilder", + "children": [ + { + "kind": "Function", + "name": "setSchemaUrl", + "printedName": "setSchemaUrl(schemaUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12MeterBuilderP12setSchemaUrl06schemaG0xSS_tF", + "mangledName": "$s11VideoSDKRTC12MeterBuilderP12setSchemaUrl06schemaG0xSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setInstrumentationVersion", + "printedName": "setInstrumentationVersion(instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12MeterBuilderP25setInstrumentationVersion015instrumentationG0xSS_tF", + "mangledName": "$s11VideoSDKRTC12MeterBuilderP25setInstrumentationVersion015instrumentationG0xSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeter", + "printedName": "VideoSDKRTC.StableMeter", + "usr": "s:11VideoSDKRTC11StableMeterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12MeterBuilderP5buildAA06StableC0_pyF", + "mangledName": "$s11VideoSDKRTC12MeterBuilderP5buildAA06StableC0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeterBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC12MeterBuilderP", + "mangledName": "$s11VideoSDKRTC12MeterBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeterBuilderSdk", + "printedName": "MeterBuilderSdk", + "children": [ + { + "kind": "Function", + "name": "setSchemaUrl", + "printedName": "setSchemaUrl(schemaUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15MeterBuilderSdkC12setSchemaUrl06schemaH0ACXDSS_tF", + "mangledName": "$s11VideoSDKRTC15MeterBuilderSdkC12setSchemaUrl06schemaH0ACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setInstrumentationVersion", + "printedName": "setInstrumentationVersion(instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15MeterBuilderSdkC25setInstrumentationVersion015instrumentationH0ACXDSS_tF", + "mangledName": "$s11VideoSDKRTC15MeterBuilderSdkC25setInstrumentationVersion015instrumentationH0ACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeter", + "printedName": "VideoSDKRTC.StableMeter", + "usr": "s:11VideoSDKRTC11StableMeterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15MeterBuilderSdkC5buildAA06StableC0_pyF", + "mangledName": "$s11VideoSDKRTC15MeterBuilderSdkC5buildAA06StableC0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC15MeterBuilderSdkC", + "mangledName": "$s11VideoSDKRTC15MeterBuilderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "MeterBuilder", + "printedName": "MeterBuilder", + "usr": "s:11VideoSDKRTC12MeterBuilderP", + "mangledName": "$s11VideoSDKRTC12MeterBuilderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeterProvider", + "printedName": "MeterProvider", + "children": [ + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationName:instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Meter", + "printedName": "VideoSDKRTC.Meter", + "usr": "s:11VideoSDKRTC5MeterP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13MeterProviderP3get19instrumentationName0F7VersionAA0C0_pSS_SSSgtF", + "mangledName": "$s11VideoSDKRTC13MeterProviderP3get19instrumentationName0F7VersionAA0C0_pSS_SSSgtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MeterProvider>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13MeterProviderP", + "mangledName": "$s11VideoSDKRTC13MeterProviderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeterProviderBuilder", + "printedName": "MeterProviderBuilder", + "children": [ + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metricExporter", + "printedName": "metricExporter", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporter", + "printedName": "VideoSDKRTC.MetricExporter", + "usr": "s:11VideoSDKRTC14MetricExporterP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC14metricExporterAA06MetricG0_pvp", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC14metricExporterAA06MetricG0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporter", + "printedName": "VideoSDKRTC.MetricExporter", + "usr": "s:11VideoSDKRTC14MetricExporterP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC14metricExporterAA06MetricG0_pvg", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC14metricExporterAA06MetricG0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metricPushInterval", + "printedName": "metricPushInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC18metricPushIntervalSdvp", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC18metricPushIntervalSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC18metricPushIntervalSdvg", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC18metricPushIntervalSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metricProcessor", + "printedName": "metricProcessor", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricProcessor", + "printedName": "VideoSDKRTC.MetricProcessor", + "usr": "s:11VideoSDKRTC15MetricProcessorP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC15metricProcessorAA06MetricG0_pvp", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC15metricProcessorAA06MetricG0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricProcessor", + "printedName": "VideoSDKRTC.MetricProcessor", + "usr": "s:11VideoSDKRTC15MetricProcessorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC15metricProcessorAA06MetricG0_pvg", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC15metricProcessorAA06MetricG0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProviderBuilder", + "printedName": "VideoSDKRTC.MeterProviderBuilder", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderCACycfc", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(processor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "MetricProcessor", + "printedName": "VideoSDKRTC.MetricProcessor", + "usr": "s:11VideoSDKRTC15MetricProcessorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC4with9processorACXDAA15MetricProcessor_p_tF", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC4with9processorACXDAA15MetricProcessor_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(exporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "MetricExporter", + "printedName": "VideoSDKRTC.MetricExporter", + "usr": "s:11VideoSDKRTC14MetricExporterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC4with8exporterACXDAA14MetricExporter_p_tF", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC4with8exporterACXDAA14MetricExporter_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(pushInterval:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC4with12pushIntervalACXDSd_tF", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC4with12pushIntervalACXDSd_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(resource:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC4with8resourceACXDAA8ResourceV_tF", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC4with8resourceACXDAA8ResourceV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC5buildAA0cD0_pyF", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC5buildAA0cD0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20MeterProviderBuilderC", + "mangledName": "$s11VideoSDKRTC20MeterProviderBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeterProviderSdk", + "printedName": "MeterProviderSdk", + "children": [ + { + "kind": "Var", + "name": "defaultPushInterval", + "printedName": "defaultPushInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC19defaultPushIntervalSdvpZ", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC19defaultPushIntervalSdvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC19defaultPushIntervalSdvgZ", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC19defaultPushIntervalSdvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProviderSdk", + "printedName": "VideoSDKRTC.MeterProviderSdk", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16MeterProviderSdkCACycfc", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(metricProcessor:metricExporter:metricPushInterval:resource:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProviderSdk", + "printedName": "VideoSDKRTC.MeterProviderSdk", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC" + }, + { + "kind": "TypeNominal", + "name": "MetricProcessor", + "printedName": "VideoSDKRTC.MetricProcessor", + "usr": "s:11VideoSDKRTC15MetricProcessorP" + }, + { + "kind": "TypeNominal", + "name": "MetricExporter", + "printedName": "VideoSDKRTC.MetricExporter", + "usr": "s:11VideoSDKRTC14MetricExporterP" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC15metricProcessor0F8Exporter0F12PushInterval8resourceAcA06MetricG0_p_AA0lH0_pSdAA8ResourceVtcfc", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC15metricProcessor0F8Exporter0F12PushInterval8resourceAcA06MetricG0_p_AA0lH0_pSdAA8ResourceVtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationName:instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Meter", + "printedName": "VideoSDKRTC.Meter", + "usr": "s:11VideoSDKRTC5MeterP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC3get19instrumentationName0G7VersionAA0C0_pSS_SSSgtF", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC3get19instrumentationName0G7VersionAA0C0_pSS_SSSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setMetricProcessor", + "printedName": "setMetricProcessor(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MetricProcessor", + "printedName": "VideoSDKRTC.MetricProcessor", + "usr": "s:11VideoSDKRTC15MetricProcessorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC18setMetricProcessoryyAA0gH0_pF", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC18setMetricProcessoryyAA0gH0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addMetricExporter", + "printedName": "addMetricExporter(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MetricExporter", + "printedName": "VideoSDKRTC.MetricExporter", + "usr": "s:11VideoSDKRTC14MetricExporterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC17addMetricExporteryyAA0gH0_pF", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC17addMetricExporteryyAA0gH0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setMetricPushInterval", + "printedName": "setMetricPushInterval(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC21setMetricPushIntervalyySdF", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC21setMetricPushIntervalyySdF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setResource", + "printedName": "setResource(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC11setResourceyyAA0G0VF", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC11setResourceyyAA0G0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16MeterProviderSdkC", + "mangledName": "$s11VideoSDKRTC16MeterProviderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MeterProvider", + "printedName": "MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP", + "mangledName": "$s11VideoSDKRTC13MeterProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Metric", + "printedName": "Metric", + "children": [ + { + "kind": "Var", + "name": "namespace", + "printedName": "namespace", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6MetricV9namespaceSSvp", + "mangledName": "$s11VideoSDKRTC6MetricV9namespaceSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6MetricV9namespaceSSvg", + "mangledName": "$s11VideoSDKRTC6MetricV9namespaceSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6MetricV8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC6MetricV8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6MetricV8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC6MetricV8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instrumentationScopeInfo", + "printedName": "instrumentationScopeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6MetricV24instrumentationScopeInfoAA015InstrumentationeF0Vvp", + "mangledName": "$s11VideoSDKRTC6MetricV24instrumentationScopeInfoAA015InstrumentationeF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6MetricV24instrumentationScopeInfoAA015InstrumentationeF0Vvg", + "mangledName": "$s11VideoSDKRTC6MetricV24instrumentationScopeInfoAA015InstrumentationeF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6MetricV4nameSSvp", + "mangledName": "$s11VideoSDKRTC6MetricV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6MetricV4nameSSvg", + "mangledName": "$s11VideoSDKRTC6MetricV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6MetricV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC6MetricV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6MetricV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC6MetricV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aggregationType", + "printedName": "aggregationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6MetricV15aggregationTypeAA011AggregationE0Ovp", + "mangledName": "$s11VideoSDKRTC6MetricV15aggregationTypeAA011AggregationE0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationType", + "printedName": "VideoSDKRTC.AggregationType", + "usr": "s:11VideoSDKRTC15AggregationTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6MetricV15aggregationTypeAA011AggregationE0Ovg", + "mangledName": "$s11VideoSDKRTC6MetricV15aggregationTypeAA011AggregationE0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.MetricData]", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6MetricV4dataSayAA0C4Data_pGvp", + "mangledName": "$s11VideoSDKRTC6MetricV4dataSayAA0C4Data_pGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.MetricData]", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricData", + "printedName": "VideoSDKRTC.MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6MetricV4dataSayAA0C4Data_pGvg", + "mangledName": "$s11VideoSDKRTC6MetricV4dataSayAA0C4Data_pGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + }, + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6MetricV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC6MetricV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6MetricV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC6MetricV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6MetricV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC6MetricV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC6MetricV", + "mangledName": "$s11VideoSDKRTC6MetricV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricData", + "printedName": "MetricData", + "children": [ + { + "kind": "Var", + "name": "startTimestamp", + "printedName": "startTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC10MetricDataP14startTimestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC10MetricDataP9timestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "labels", + "printedName": "labels", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10MetricDataP6labelsSDyS2SGvp", + "mangledName": "$s11VideoSDKRTC10MetricDataP6labelsSDyS2SGvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP6labelsSDyS2SGvg", + "mangledName": "$s11VideoSDKRTC10MetricDataP6labelsSDyS2SGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP6labelsSDyS2SGvs", + "mangledName": "$s11VideoSDKRTC10MetricDataP6labelsSDyS2SGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10MetricDataP6labelsSDyS2SGvM", + "mangledName": "$s11VideoSDKRTC10MetricDataP6labelsSDyS2SGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricData>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC10MetricDataP", + "mangledName": "$s11VideoSDKRTC10MetricDataP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "NoopMetricData", + "printedName": "NoopMetricData", + "children": [ + { + "kind": "Var", + "name": "startTimestamp", + "printedName": "startTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV14startTimestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV9timestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "labels", + "printedName": "labels", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvp", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvg", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvs", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvM", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV6labelsSDyS2SGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopMetricData", + "printedName": "VideoSDKRTC.NoopMetricData", + "usr": "s:11VideoSDKRTC14NoopMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14NoopMetricDataV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "NoopMetricData", + "printedName": "VideoSDKRTC.NoopMetricData", + "usr": "s:11VideoSDKRTC14NoopMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "NoopMetricData", + "printedName": "VideoSDKRTC.NoopMetricData", + "usr": "s:11VideoSDKRTC14NoopMetricDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14NoopMetricDataV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14NoopMetricDataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14NoopMetricDataV", + "mangledName": "$s11VideoSDKRTC14NoopMetricDataV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricData", + "printedName": "MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP", + "mangledName": "$s11VideoSDKRTC10MetricDataP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SumData", + "printedName": "SumData", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(startTimestamp:timestamp:labels:sum:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SumData", + "printedName": "VideoSDKRTC.SumData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC7SumDataV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7SumDataV14startTimestamp9timestamp6labels3sumACyxG10Foundation4DateV_AKSDyS2SGxtcfc", + "mangledName": "$s11VideoSDKRTC7SumDataV14startTimestamp9timestamp6labels3sumACyxG10Foundation4DateV_AKSDyS2SGxtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "startTimestamp", + "printedName": "startTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC7SumDataV14startTimestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC7SumDataV9timestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "labels", + "printedName": "labels", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7SumDataV6labelsSDyS2SGvp", + "mangledName": "$s11VideoSDKRTC7SumDataV6labelsSDyS2SGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV6labelsSDyS2SGvg", + "mangledName": "$s11VideoSDKRTC7SumDataV6labelsSDyS2SGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV6labelsSDyS2SGvs", + "mangledName": "$s11VideoSDKRTC7SumDataV6labelsSDyS2SGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV6labelsSDyS2SGvM", + "mangledName": "$s11VideoSDKRTC7SumDataV6labelsSDyS2SGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7SumDataV3sumxvp", + "mangledName": "$s11VideoSDKRTC7SumDataV3sumxvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV3sumxvg", + "mangledName": "$s11VideoSDKRTC7SumDataV3sumxvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV3sumxvs", + "mangledName": "$s11VideoSDKRTC7SumDataV3sumxvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7SumDataV3sumxvM", + "mangledName": "$s11VideoSDKRTC7SumDataV3sumxvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SumData", + "printedName": "VideoSDKRTC.SumData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC7SumDataV" + }, + { + "kind": "TypeNominal", + "name": "SumData", + "printedName": "VideoSDKRTC.SumData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC7SumDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7SumDataVAASQRzlE2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC7SumDataVAASQRzlE2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable>", + "sugared_genericSig": "", + "static": true, + "implicit": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SumData", + "printedName": "VideoSDKRTC.SumData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC7SumDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7SumDataVAASeRzSERzlE4fromACyxGs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC7SumDataVAASeRzSERzlE4fromACyxGs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7SumDataVAASeRzSERzlE6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC7SumDataVAASeRzSERzlE6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC7SumDataV", + "mangledName": "$s11VideoSDKRTC7SumDataV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricData", + "printedName": "MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP", + "mangledName": "$s11VideoSDKRTC10MetricDataP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SummaryData", + "printedName": "SummaryData", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(startTimestamp:timestamp:labels:count:sum:min:max:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SummaryData", + "printedName": "VideoSDKRTC.SummaryData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC11SummaryDataV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC11SummaryDataV14startTimestamp9timestamp6labels5count3sum3min3maxACyxG10Foundation4DateV_ANSDyS2SGSixxxtcfc", + "mangledName": "$s11VideoSDKRTC11SummaryDataV14startTimestamp9timestamp6labels5count3sum3min3maxACyxG10Foundation4DateV_ANSDyS2SGSixxxtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "startTimestamp", + "printedName": "startTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC11SummaryDataV14startTimestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC11SummaryDataV9timestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "labels", + "printedName": "labels", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvp", + "mangledName": "$s11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvg", + "mangledName": "$s11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvs", + "mangledName": "$s11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvM", + "mangledName": "$s11VideoSDKRTC11SummaryDataV6labelsSDyS2SGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SummaryDataV5countSivp", + "mangledName": "$s11VideoSDKRTC11SummaryDataV5countSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV5countSivg", + "mangledName": "$s11VideoSDKRTC11SummaryDataV5countSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV5countSivs", + "mangledName": "$s11VideoSDKRTC11SummaryDataV5countSivs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV5countSivM", + "mangledName": "$s11VideoSDKRTC11SummaryDataV5countSivM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SummaryDataV3sumxvp", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3sumxvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3sumxvg", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3sumxvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3sumxvs", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3sumxvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3sumxvM", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3sumxvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "min", + "printedName": "min", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SummaryDataV3minxvp", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3minxvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3minxvg", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3minxvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3minxvs", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3minxvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3minxvM", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3minxvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "max", + "printedName": "max", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SummaryDataV3maxxvp", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3maxxvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3maxxvg", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3maxxvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3maxxvs", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3maxxvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SummaryDataV3maxxvM", + "mangledName": "$s11VideoSDKRTC11SummaryDataV3maxxvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SummaryData", + "printedName": "VideoSDKRTC.SummaryData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC11SummaryDataV" + }, + { + "kind": "TypeNominal", + "name": "SummaryData", + "printedName": "VideoSDKRTC.SummaryData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC11SummaryDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SummaryDataVAASQRzlE2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC11SummaryDataVAASQRzlE2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable>", + "sugared_genericSig": "", + "static": true, + "implicit": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SummaryData", + "printedName": "VideoSDKRTC.SummaryData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC11SummaryDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC11SummaryDataVAASeRzSERzlE4fromACyxGs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC11SummaryDataVAASeRzSERzlE4fromACyxGs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SummaryDataVAASeRzSERzlE6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC11SummaryDataVAASeRzSERzlE6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC11SummaryDataV", + "mangledName": "$s11VideoSDKRTC11SummaryDataV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricData", + "printedName": "MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP", + "mangledName": "$s11VideoSDKRTC10MetricDataP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "HistogramData", + "printedName": "HistogramData", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(startTimestamp:timestamp:labels:buckets:count:sum:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HistogramData", + "printedName": "VideoSDKRTC.HistogramData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC13HistogramDataV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(boundaries: [τ_0_0], counts: [Swift.Int])", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC13HistogramDataV14startTimestamp9timestamp6labels7buckets5count3sumACyxG10Foundation4DateV_AMSDyS2SGSayxG10boundaries_SaySiG6countstSixtcfc", + "mangledName": "$s11VideoSDKRTC13HistogramDataV14startTimestamp9timestamp6labels7buckets5count3sumACyxG10Foundation4DateV_AMSDyS2SGSayxG10boundaries_SaySiG6countstSixtcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "startTimestamp", + "printedName": "startTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC13HistogramDataV14startTimestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvs", + "mangledName": "$s11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvM", + "mangledName": "$s11VideoSDKRTC13HistogramDataV9timestamp10Foundation4DateVvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "labels", + "printedName": "labels", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvp", + "mangledName": "$s11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvg", + "mangledName": "$s11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvs", + "mangledName": "$s11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvM", + "mangledName": "$s11VideoSDKRTC13HistogramDataV6labelsSDyS2SGvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "buckets", + "printedName": "buckets", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(boundaries: [τ_0_0], counts: [Swift.Int])", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvp", + "mangledName": "$s11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(boundaries: [τ_0_0], counts: [Swift.Int])", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvg", + "mangledName": "$s11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(boundaries: [τ_0_0], counts: [Swift.Int])", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvs", + "mangledName": "$s11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvM", + "mangledName": "$s11VideoSDKRTC13HistogramDataV7bucketsSayxG10boundaries_SaySiG6countstvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13HistogramDataV5countSivp", + "mangledName": "$s11VideoSDKRTC13HistogramDataV5countSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV5countSivg", + "mangledName": "$s11VideoSDKRTC13HistogramDataV5countSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV5countSivs", + "mangledName": "$s11VideoSDKRTC13HistogramDataV5countSivs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV5countSivM", + "mangledName": "$s11VideoSDKRTC13HistogramDataV5countSivM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13HistogramDataV3sumxvp", + "mangledName": "$s11VideoSDKRTC13HistogramDataV3sumxvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV3sumxvg", + "mangledName": "$s11VideoSDKRTC13HistogramDataV3sumxvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV3sumxvs", + "mangledName": "$s11VideoSDKRTC13HistogramDataV3sumxvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13HistogramDataV3sumxvM", + "mangledName": "$s11VideoSDKRTC13HistogramDataV3sumxvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "HistogramData", + "printedName": "VideoSDKRTC.HistogramData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC13HistogramDataV" + }, + { + "kind": "TypeNominal", + "name": "HistogramData", + "printedName": "VideoSDKRTC.HistogramData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC13HistogramDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13HistogramDataVAASQRzlE2eeoiySbACyxG_AEtFZ", + "mangledName": "$s11VideoSDKRTC13HistogramDataVAASQRzlE2eeoiySbACyxG_AEtFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Equatable>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HistogramData", + "printedName": "VideoSDKRTC.HistogramData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC13HistogramDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC13HistogramDataVAASeRzSERzlE4fromACyxGs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC13HistogramDataVAASeRzSERzlE4fromACyxGs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13HistogramDataVAASeRzSERzlE6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC13HistogramDataVAASeRzSERzlE6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13HistogramDataV", + "mangledName": "$s11VideoSDKRTC13HistogramDataV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricData", + "printedName": "MetricData", + "usr": "s:11VideoSDKRTC10MetricDataP", + "mangledName": "$s11VideoSDKRTC10MetricDataP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricDescriptor", + "printedName": "MetricDescriptor", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MetricDescriptorV4nameSSvp", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV4nameSSvg", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MetricDescriptorV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "view", + "printedName": "view", + "children": [ + { + "kind": "TypeNominal", + "name": "StableView", + "printedName": "VideoSDKRTC.StableView", + "usr": "s:11VideoSDKRTC10StableViewC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MetricDescriptorV4viewAA10StableViewCvp", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV4viewAA10StableViewCvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableView", + "printedName": "VideoSDKRTC.StableView", + "usr": "s:11VideoSDKRTC10StableViewC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV4viewAA10StableViewCvg", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV4viewAA10StableViewCvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instrument", + "printedName": "instrument", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MetricDescriptorV10instrumentAA010InstrumentD0Vvp", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV10instrumentAA010InstrumentD0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV10instrumentAA010InstrumentD0Vvg", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV10instrumentAA010InstrumentD0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "aggregationName", + "printedName": "aggregationName()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MetricDescriptorV15aggregationNameSSyF", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV15aggregationNameSSyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MetricDescriptorV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16MetricDescriptorV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16MetricDescriptorV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16MetricDescriptorV", + "mangledName": "$s11VideoSDKRTC16MetricDescriptorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricExporterResultCode", + "printedName": "MetricExporterResultCode", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricExporterResultCode.Type) -> VideoSDKRTC.MetricExporterResultCode", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricExporterResultCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO7successyA2CmF", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO7successyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "failureNotRetryable", + "printedName": "failureNotRetryable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricExporterResultCode.Type) -> VideoSDKRTC.MetricExporterResultCode", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricExporterResultCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO19failureNotRetryableyA2CmF", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO19failureNotRetryableyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "failureRetryable", + "printedName": "failureRetryable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricExporterResultCode.Type) -> VideoSDKRTC.MetricExporterResultCode", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricExporterResultCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO16failureRetryableyA2CmF", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO16failureRetryableyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO", + "mangledName": "$s11VideoSDKRTC24MetricExporterResultCodeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MetricExporter", + "printedName": "MetricExporter", + "children": [ + { + "kind": "Function", + "name": "export", + "printedName": "export(metrics:shouldCancel:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> Swift.Bool)?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricExporterP6export7metrics12shouldCancelAA0cD10ResultCodeOSayAA0C0VG_SbycSgtF", + "mangledName": "$s11VideoSDKRTC14MetricExporterP6export7metrics12shouldCancelAA0cD10ResultCodeOSayAA0C0VG_SbycSgtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14MetricExporterP", + "mangledName": "$s11VideoSDKRTC14MetricExporterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricProcessor", + "printedName": "MetricProcessor", + "children": [ + { + "kind": "Function", + "name": "finishCollectionCycle", + "printedName": "finishCollectionCycle()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15MetricProcessorP21finishCollectionCycleSayAA0C0VGyF", + "mangledName": "$s11VideoSDKRTC15MetricProcessorP21finishCollectionCycleSayAA0C0VGyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "process", + "printedName": "process(metric:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15MetricProcessorP7process6metricyAA0C0V_tF", + "mangledName": "$s11VideoSDKRTC15MetricProcessorP7process6metricyAA0C0V_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC15MetricProcessorP", + "mangledName": "$s11VideoSDKRTC15MetricProcessorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricProcessorSdk", + "printedName": "MetricProcessorSdk", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricProcessorSdk", + "printedName": "VideoSDKRTC.MetricProcessorSdk", + "usr": "s:11VideoSDKRTC18MetricProcessorSdkC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18MetricProcessorSdkCACycfc", + "mangledName": "$s11VideoSDKRTC18MetricProcessorSdkCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "finishCollectionCycle", + "printedName": "finishCollectionCycle()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MetricProcessorSdkC21finishCollectionCycleSayAA0C0VGyF", + "mangledName": "$s11VideoSDKRTC18MetricProcessorSdkC21finishCollectionCycleSayAA0C0VGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "process", + "printedName": "process(metric:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MetricProcessorSdkC7process6metricyAA0C0V_tF", + "mangledName": "$s11VideoSDKRTC18MetricProcessorSdkC7process6metricyAA0C0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18MetricProcessorSdkC", + "mangledName": "$s11VideoSDKRTC18MetricProcessorSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricProcessor", + "printedName": "MetricProcessor", + "usr": "s:11VideoSDKRTC15MetricProcessorP", + "mangledName": "$s11VideoSDKRTC15MetricProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricProducer", + "printedName": "MetricProducer", + "children": [ + { + "kind": "Function", + "name": "collectAllMetrics", + "printedName": "collectAllMetrics()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.StableMetricData]", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricProducerP17collectAllMetricsSayAA06StableC4DataVGyF", + "mangledName": "$s11VideoSDKRTC14MetricProducerP17collectAllMetricsSayAA06StableC4DataVGyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricProducer>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14MetricProducerP", + "mangledName": "$s11VideoSDKRTC14MetricProducerP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.CollectionRegistration>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CollectionRegistration", + "printedName": "CollectionRegistration", + "usr": "s:11VideoSDKRTC22CollectionRegistrationP", + "mangledName": "$s11VideoSDKRTC22CollectionRegistrationP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoopMetricProducer", + "printedName": "NoopMetricProducer", + "children": [ + { + "kind": "Function", + "name": "collectAllMetrics", + "printedName": "collectAllMetrics()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.StableMetricData]", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18NoopMetricProducerV17collectAllMetricsSayAA06StableD4DataVGyF", + "mangledName": "$s11VideoSDKRTC18NoopMetricProducerV17collectAllMetricsSayAA06StableD4DataVGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18NoopMetricProducerV", + "mangledName": "$s11VideoSDKRTC18NoopMetricProducerV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricProducer", + "printedName": "MetricProducer", + "usr": "s:11VideoSDKRTC14MetricProducerP", + "mangledName": "$s11VideoSDKRTC14MetricProducerP" + }, + { + "kind": "Conformance", + "name": "CollectionRegistration", + "printedName": "CollectionRegistration", + "usr": "s:11VideoSDKRTC22CollectionRegistrationP", + "mangledName": "$s11VideoSDKRTC22CollectionRegistrationP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "children": [ + { + "kind": "Var", + "name": "unspecified", + "printedName": "unspecified", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO11unspecifiedyA2CmF", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO11unspecifiedyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "delta", + "printedName": "delta", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO5deltayA2CmF", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO5deltayA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cumulative", + "printedName": "cumulative", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO10cumulativeyA2CmF", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO10cumulativeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type) -> (Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO12UNRECOGNIZEDyACSicACmF", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO12UNRECOGNIZEDyACSicACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityOACycfc", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityOACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality?", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvsZ", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvMZ", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO8allCasesSayACGvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO", + "mangledName": "$s11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "children": [ + { + "kind": "Var", + "name": "doNotUse", + "printedName": "doNotUse", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags.Type) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8doNotUseyA2CmF", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8doNotUseyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "noRecordedValueMask", + "printedName": "noRecordedValueMask", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags.Type) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO19noRecordedValueMaskyA2CmF", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO19noRecordedValueMaskyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags.Type) -> (Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO12UNRECOGNIZEDyACSicACmF", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO12UNRECOGNIZEDyACSicACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsOACycfc", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsOACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags?", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvsZ", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvMZ", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO8allCasesSayACGvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO", + "mangledName": "$s11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags", + "usr": "s:11VideoSDKRTC45Opentelemetry_Proto_Metrics_V1_DataPointFlagsO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_MetricsData", + "printedName": "Opentelemetry_Proto_Metrics_V1_MetricsData", + "children": [ + { + "kind": "Var", + "name": "resourceMetrics", + "printedName": "resourceMetrics", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvp", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvg", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvs", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvM", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV08resourceE0SayAA0c1_d1_e1_f9_ResourceE0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_MetricsData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataVACycfc", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_MetricsData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_MetricsData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV", + "mangledName": "$s11VideoSDKRTC031Opentelemetry_Proto_Metrics_V1_E4DataV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "children": [ + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvp", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvg", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvs", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0VvM", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8resourceAA0c1_d1_g1_f1_G0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasResource", + "printedName": "hasResource", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V03hasG0Sbvp", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V03hasG0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V03hasG0Sbvg", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V03hasG0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearResource", + "printedName": "clearResource()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05clearG0yyF", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05clearG0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "scopeMetrics", + "printedName": "scopeMetrics", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvp", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvg", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvs", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvM", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V05scopeE0SayAA0c1_d1_e1_f6_ScopeE0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "schemaURL", + "printedName": "schemaURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvp", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvg", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvs", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvM", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9schemaURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0VACycfc", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0VACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9hashValueSivp", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9hashValueSivg", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V", + "mangledName": "$s11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "printedName": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "children": [ + { + "kind": "Var", + "name": "scope", + "printedName": "scope", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0VvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V5scopeAA0c1_d8_Common_f16_InstrumentationG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasScope", + "printedName": "hasScope", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V03hasG0Sbvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V03hasG0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V03hasG0Sbvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V03hasG0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearScope", + "printedName": "clearScope()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V05clearG0yyF", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V05clearG0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "metrics", + "printedName": "metrics", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V7metricsSayAA0c1_d1_e1_F7_MetricVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "schemaURL", + "printedName": "schemaURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9schemaURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0VACycfc", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0VACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9hashValueSivp", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9hashValueSivg", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V", + "mangledName": "$s11VideoSDKRTC036Opentelemetry_Proto_Metrics_V1_ScopeE0V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "Opentelemetry_Proto_Metrics_V1_Metric", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "description_p", + "printedName": "description_p", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13description_pSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unit", + "printedName": "unit", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4unitSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV4dataAC10OneOf_DataOSgvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "gauge", + "printedName": "gauge", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV5gaugeAA0c1_d1_e1_F6_GaugeVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV3sumAA0c1_d1_e1_F4_SumVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "histogram", + "printedName": "histogram", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9histogramAA0c1_d1_e1_F10_HistogramVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "exponentialHistogram", + "printedName": "exponentialHistogram", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0Vvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0Vvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0Vvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0VvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV20exponentialHistogramAA0c1_d1_e1_f12_ExponentialI0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "summary", + "printedName": "summary", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV7summaryAA0c1_d1_e1_F8_SummaryVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_Data", + "printedName": "OneOf_Data", + "children": [ + { + "kind": "Var", + "name": "gauge", + "printedName": "gauge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type) -> (VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO5gaugeyAeA0c1_d1_e1_F6_GaugeVcAEmF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO5gaugeyAeA0c1_d1_e1_F6_GaugeVcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type) -> (VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO3sumyAeA0c1_d1_e1_F4_SumVcAEmF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO3sumyAeA0c1_d1_e1_F4_SumVcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "histogram", + "printedName": "histogram", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type) -> (VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO9histogramyAeA0c1_d1_e1_F10_HistogramVcAEmF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO9histogramyAeA0c1_d1_e1_F10_HistogramVcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "exponentialHistogram", + "printedName": "exponentialHistogram", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type) -> (VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO20exponentialHistogramyAeA0c1_d1_e1_f12_ExponentialL0VcAEmF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO20exponentialHistogramyAeA0c1_d1_e1_f12_ExponentialL0VcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "summary", + "printedName": "summary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type) -> (VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO7summaryyAeA0c1_d1_e1_F8_SummaryVcAEmF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO7summaryyAeA0c1_d1_e1_F8_SummaryVcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Data", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV10OneOf_DataO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricVACycfc", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV", + "mangledName": "$s11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "Opentelemetry_Proto_Metrics_V1_Gauge", + "children": [ + { + "kind": "Var", + "name": "dataPoints", + "printedName": "dataPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvp", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvg", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvs", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvM", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeVACycfc", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Gauge", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV", + "mangledName": "$s11VideoSDKRTC36Opentelemetry_Proto_Metrics_V1_GaugeV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "Opentelemetry_Proto_Metrics_V1_Sum", + "children": [ + { + "kind": "Var", + "name": "dataPoints", + "printedName": "dataPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvp", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvg", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvs", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvM", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV10dataPointsSayAA0c1_d1_e1_F16_NumberDataPointVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovp", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovg", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovs", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0OvM", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isMonotonic", + "printedName": "isMonotonic", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvp", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvg", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvs", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvM", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV11isMonotonicSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumVACycfc", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Sum", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV", + "mangledName": "$s11VideoSDKRTC34Opentelemetry_Proto_Metrics_V1_SumV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "Opentelemetry_Proto_Metrics_V1_Histogram", + "children": [ + { + "kind": "Var", + "name": "dataPoints", + "printedName": "dataPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvp", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvg", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvs", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvM", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovp", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovg", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovs", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0Ovs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0OvM", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationI0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramVACycfc", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Histogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV", + "mangledName": "$s11VideoSDKRTC40Opentelemetry_Proto_Metrics_V1_HistogramV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "children": [ + { + "kind": "Var", + "name": "dataPoints", + "printedName": "dataPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvp", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvg", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvs", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvM", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV10dataPointsSayAA0c1_d1_e1_f1_gH9DataPointVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0Ovp", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0Ovg", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality", + "usr": "s:11VideoSDKRTC53Opentelemetry_Proto_Metrics_V1_AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0Ovs", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0Ovs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0OvM", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV22aggregationTemporalityAA0c1_d1_e1_f12_AggregationJ0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramVACycfc", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV", + "mangledName": "$s11VideoSDKRTC51Opentelemetry_Proto_Metrics_V1_ExponentialHistogramV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "Opentelemetry_Proto_Metrics_V1_Summary", + "children": [ + { + "kind": "Var", + "name": "dataPoints", + "printedName": "dataPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV10dataPointsSayAA0c1_d1_e1_f1_G9DataPointVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryVACycfc", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Summary", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV", + "mangledName": "$s11VideoSDKRTC38Opentelemetry_Proto_Metrics_V1_SummaryV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "startTimeUnixNano", + "printedName": "startTimeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17startTimeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timeUnixNano", + "printedName": "timeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV12timeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5valueAC11OneOf_ValueOSgvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "asDouble", + "printedName": "asDouble", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8asDoubleSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "asInt", + "printedName": "asInt", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64Vvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64Vvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64Vvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64VvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5asInts5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "exemplars", + "printedName": "exemplars", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "flags", + "printedName": "flags", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32VvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV5flagss6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_Value", + "printedName": "OneOf_Value", + "children": [ + { + "kind": "Var", + "name": "asDouble", + "printedName": "asDouble", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value.Type) -> (Swift.Double) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO8asDoubleyAESdcAEmF", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO8asDoubleyAESdcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "asInt", + "printedName": "asInt", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value.Type) -> (Swift.Int64) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int64) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO5asIntyAEs5Int64VcAEmF", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO5asIntyAEs5Int64VcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV11OneOf_ValueO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointVACycfc", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV", + "mangledName": "$s11VideoSDKRTC46Opentelemetry_Proto_Metrics_V1_NumberDataPointV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "printedName": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "startTimeUnixNano", + "printedName": "startTimeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17startTimeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timeUnixNano", + "printedName": "timeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12timeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64VvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5counts6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3sumSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSum", + "printedName": "hasSum", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasSumSbvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasSumSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasSumSbvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasSumSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSum", + "printedName": "clearSum()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8clearSumyyF", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8clearSumyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "bucketCounts", + "printedName": "bucketCounts", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV12bucketCountsSays6UInt64VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "explicitBounds", + "printedName": "explicitBounds", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV14explicitBoundsSaySdGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "exemplars", + "printedName": "exemplars", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "flags", + "printedName": "flags", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32VvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV5flagss6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "min", + "printedName": "min", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3minSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMin", + "printedName": "hasMin", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMinSbvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMinSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMinSbvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMinSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearMin", + "printedName": "clearMin()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8clearMinyyF", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8clearMinyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "max", + "printedName": "max", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV3maxSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMax", + "printedName": "hasMax", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMaxSbvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMaxSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMaxSbvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV6hasMaxSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearMax", + "printedName": "clearMax()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8clearMaxyyF", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8clearMaxyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointVACycfc", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV", + "mangledName": "$s11VideoSDKRTC49Opentelemetry_Proto_Metrics_V1_HistogramDataPointV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "printedName": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "startTimeUnixNano", + "printedName": "startTimeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17startTimeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timeUnixNano", + "printedName": "timeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV12timeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64VvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5counts6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3sumSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSum", + "printedName": "hasSum", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasSumSbvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasSumSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasSumSbvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasSumSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSum", + "printedName": "clearSum()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8clearSumyyF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8clearSumyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "scale", + "printedName": "scale", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32Vvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32Vvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32Vvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32VvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5scales5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "zeroCount", + "printedName": "zeroCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64VvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9zeroCounts6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "positive", + "printedName": "positive", + "children": [ + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8positiveAC7BucketsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPositive", + "printedName": "hasPositive", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasPositiveSbvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasPositiveSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasPositiveSbvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasPositiveSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPositive", + "printedName": "clearPositive()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13clearPositiveyyF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13clearPositiveyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "negative", + "printedName": "negative", + "children": [ + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8negativeAC7BucketsVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasNegative", + "printedName": "hasNegative", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasNegativeSbvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasNegativeSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasNegativeSbvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV11hasNegativeSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearNegative", + "printedName": "clearNegative()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13clearNegativeyyF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13clearNegativeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "flags", + "printedName": "flags", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32VvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV5flagss6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "exemplars", + "printedName": "exemplars", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9exemplarsSayAA0c1_d1_e1_F9_ExemplarVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "min", + "printedName": "min", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3minSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMin", + "printedName": "hasMin", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMinSbvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMinSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMinSbvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMinSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearMin", + "printedName": "clearMin()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8clearMinyyF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8clearMinyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "max", + "printedName": "max", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV3maxSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasMax", + "printedName": "hasMax", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMaxSbvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMaxSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMaxSbvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV6hasMaxSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearMax", + "printedName": "clearMax()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8clearMaxyyF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8clearMaxyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "zeroThreshold", + "printedName": "zeroThreshold", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13zeroThresholdSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Buckets", + "printedName": "Buckets", + "children": [ + { + "kind": "Var", + "name": "offset", + "printedName": "offset", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32Vvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32Vvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32Vvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32VvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV6offsets5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bucketCounts", + "printedName": "bucketCounts", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV12bucketCountsSays6UInt64VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsVAEycfc", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV17_protobuf_nameMapAA05_NameN0VvpZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV17_protobuf_nameMapAA05_NameN0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV17_protobuf_nameMapAA05_NameN0VvgZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV17_protobuf_nameMapAA05_NameN0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + }, + { + "kind": "TypeNominal", + "name": "Buckets", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV7BucketsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointVACycfc", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV", + "mangledName": "$s11VideoSDKRTC60Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPointV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "printedName": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "startTimeUnixNano", + "printedName": "startTimeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17startTimeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timeUnixNano", + "printedName": "timeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV12timeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64VvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5counts6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV3sumSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "quantileValues", + "printedName": "quantileValues", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV14quantileValuesSayAC15ValueAtQuantileVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "flags", + "printedName": "flags", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32VvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV5flagss6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ValueAtQuantile", + "printedName": "ValueAtQuantile", + "children": [ + { + "kind": "Var", + "name": "quantile", + "printedName": "quantile", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8quantileSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV5valueSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileVAEycfc", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV17_protobuf_nameMapAA05_NameO0VvpZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV17_protobuf_nameMapAA05_NameO0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV17_protobuf_nameMapAA05_NameO0VvgZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV17_protobuf_nameMapAA05_NameO0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV" + }, + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV04hashJ0Sivp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV04hashJ0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV04hashJ0Sivg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV04hashJ0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV15ValueAtQuantileV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointVACycfc", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17_protobuf_nameMapAA05_NameL0VvpZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17_protobuf_nameMapAA05_NameL0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17_protobuf_nameMapAA05_NameL0VvgZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV17_protobuf_nameMapAA05_NameL0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV", + "mangledName": "$s11VideoSDKRTC47Opentelemetry_Proto_Metrics_V1_SummaryDataPointV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "children": [ + { + "kind": "Var", + "name": "filteredAttributes", + "printedName": "filteredAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV18filteredAttributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timeUnixNano", + "printedName": "timeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV12timeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5valueAC11OneOf_ValueOSgvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "asDouble", + "printedName": "asDouble", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8asDoubleSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "asInt", + "printedName": "asInt", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64Vvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64Vvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64Vvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64VvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV5asInts5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "spanID", + "printedName": "spanID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV6spanID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "traceID", + "printedName": "traceID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV7traceID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_Value", + "printedName": "OneOf_Value", + "children": [ + { + "kind": "Var", + "name": "asDouble", + "printedName": "asDouble", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value.Type) -> (Swift.Double) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO8asDoubleyAESdcAEmF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO8asDoubleyAESdcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "asInt", + "printedName": "asInt", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value.Type) -> (Swift.Int64) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int64) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO5asIntyAEs5Int64VcAEmF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO5asIntyAEs5Int64VcAEmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Value", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV11OneOf_ValueO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarVACycfc", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Exemplar", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Metrics_V1_ExemplarV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "printedName": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "children": [ + { + "kind": "Var", + "name": "resourceMetrics", + "printedName": "resourceMetrics", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvs", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvM", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV08resourceF0SayAA0c1_d1_f1_g9_ResourceF0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestVACycfc", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14ServiceRequestV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "printedName": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "children": [ + { + "kind": "Var", + "name": "partialSuccess", + "printedName": "partialSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvs", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0VvM", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPartialSuccess", + "printedName": "hasPartialSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPartialSuccess", + "printedName": "clearPartialSuccess()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV19clearPartialSuccessyyF", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV19clearPartialSuccessyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseVACycfc", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF15ServiceResponseV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "printedName": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "children": [ + { + "kind": "Var", + "name": "rejectedDataPoints", + "printedName": "rejectedDataPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64Vvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64Vvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64Vvs", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64VvM", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV18rejectedDataPointss5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorMessage", + "printedName": "errorMessage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvs", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvM", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV12errorMessageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessVACycfc", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV", + "mangledName": "$s11VideoSDKRTC047Opentelemetry_Proto_Collector_Metrics_V1_ExportF14PartialSuccessV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricsAdapter", + "printedName": "MetricsAdapter", + "children": [ + { + "kind": "Function", + "name": "toProtoResourceMetrics", + "printedName": "toProtoResourceMetrics(stableMetricData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.StableMetricData]", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricsAdapterO015toProtoResourceC016stableMetricDataSayAA014Opentelemetry_f1_c4_V1_gC0VGSayAA06StableiJ0VG_tFZ", + "mangledName": "$s11VideoSDKRTC14MetricsAdapterO015toProtoResourceC016stableMetricDataSayAA014Opentelemetry_f1_c4_V1_gC0VGSayAA06StableiJ0VG_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toProtoResourceMetrics", + "printedName": "toProtoResourceMetrics(metricDataList:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics", + "usr": "s:11VideoSDKRTC039Opentelemetry_Proto_Metrics_V1_ResourceE0V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricsAdapterO015toProtoResourceC014metricDataListSayAA014Opentelemetry_f1_c4_V1_gC0VGSayAA6MetricVG_tFZ", + "mangledName": "$s11VideoSDKRTC14MetricsAdapterO015toProtoResourceC014metricDataListSayAA014Opentelemetry_f1_c4_V1_gC0VGSayAA6MetricVG_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toProtoMetric", + "printedName": "toProtoMetric(stableMetric:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric?", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricsAdapterO13toProtoMetric06stableG0AA014Opentelemetry_f1_c4_V1_G0VSgAA06StableG4DataV_tFZ", + "mangledName": "$s11VideoSDKRTC14MetricsAdapterO13toProtoMetric06stableG0AA014Opentelemetry_f1_c4_V1_G0VSgAA06StableG4DataV_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toProtoMetric", + "printedName": "toProtoMetric(metric:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric?", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Metrics_V1_Metric", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric", + "usr": "s:11VideoSDKRTC37Opentelemetry_Proto_Metrics_V1_MetricV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricsAdapterO13toProtoMetric6metricAA014Opentelemetry_f1_c4_V1_G0VSgAA0G0V_tFZ", + "mangledName": "$s11VideoSDKRTC14MetricsAdapterO13toProtoMetric6metricAA014Opentelemetry_f1_c4_V1_G0VSgAA0G0V_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC14MetricsAdapterO", + "mangledName": "$s11VideoSDKRTC14MetricsAdapterO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricStorageConstants", + "printedName": "MetricStorageConstants", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22MetricStorageConstantsV", + "mangledName": "$s11VideoSDKRTC22MetricStorageConstantsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricStorage", + "printedName": "MetricStorage", + "children": [ + { + "kind": "Var", + "name": "metricDescriptor", + "printedName": "metricDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13MetricStorageP16metricDescriptorAA0cF0Vvp", + "mangledName": "$s11VideoSDKRTC13MetricStorageP16metricDescriptorAA0cF0Vvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13MetricStorageP16metricDescriptorAA0cF0Vvg", + "mangledName": "$s11VideoSDKRTC13MetricStorageP16metricDescriptorAA0cF0Vvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricStorage>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "collect", + "printedName": "collect(resource:scope:startEpochNanos:epochNanos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13MetricStorageP7collect8resource5scope15startEpochNanos05epochJ0AA06StableC4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", + "mangledName": "$s11VideoSDKRTC13MetricStorageP7collect8resource5scope15startEpochNanos05epochJ0AA06StableC4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricStorage>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "isEmpty", + "printedName": "isEmpty()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13MetricStorageP7isEmptySbyF", + "mangledName": "$s11VideoSDKRTC13MetricStorageP7isEmptySbyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.MetricStorage>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13MetricStorageP", + "mangledName": "$s11VideoSDKRTC13MetricStorageP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "WritableMetricStorage", + "printedName": "WritableMetricStorage", + "children": [ + { + "kind": "Function", + "name": "recordLong", + "printedName": "recordLong(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC21WritableMetricStorageP10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.WritableMetricStorage>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "recordDouble", + "printedName": "recordDouble(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC21WritableMetricStorageP12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.WritableMetricStorage>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP", + "mangledName": "$s11VideoSDKRTC21WritableMetricStorageP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricStorageRegistry", + "printedName": "MetricStorageRegistry", + "declKind": "Class", + "usr": "s:11VideoSDKRTC21MetricStorageRegistryC", + "mangledName": "$s11VideoSDKRTC21MetricStorageRegistryC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MillisClock", + "printedName": "MillisClock", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MillisClock", + "printedName": "VideoSDKRTC.MillisClock", + "usr": "s:11VideoSDKRTC11MillisClockC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC11MillisClockCACycfc", + "mangledName": "$s11VideoSDKRTC11MillisClockCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "now", + "printedName": "now", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11MillisClockC3now10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC11MillisClockC3now10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11MillisClockC3now10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC11MillisClockC3now10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC11MillisClockC", + "mangledName": "$s11VideoSDKRTC11MillisClockC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Clock", + "printedName": "Clock", + "usr": "s:11VideoSDKRTC5ClockP", + "mangledName": "$s11VideoSDKRTC5ClockP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Mediasoup", + "printedName": "Mediasoup", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MonotonicClock", + "printedName": "MonotonicClock", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(clock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MonotonicClock", + "printedName": "VideoSDKRTC.MonotonicClock", + "usr": "s:11VideoSDKRTC14MonotonicClockC" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14MonotonicClockC5clockAcA0D0_p_tcfc", + "mangledName": "$s11VideoSDKRTC14MonotonicClockC5clockAcA0D0_p_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "now", + "printedName": "now", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14MonotonicClockC3now10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC14MonotonicClockC3now10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14MonotonicClockC3now10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC14MonotonicClockC3now10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC14MonotonicClockC", + "mangledName": "$s11VideoSDKRTC14MonotonicClockC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Clock", + "printedName": "Clock", + "usr": "s:11VideoSDKRTC5ClockP", + "mangledName": "$s11VideoSDKRTC5ClockP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MultiLogRecordExporter", + "printedName": "MultiLogRecordExporter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(logRecordExporters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MultiLogRecordExporter", + "printedName": "VideoSDKRTC.MultiLogRecordExporter", + "usr": "s:11VideoSDKRTC22MultiLogRecordExporterC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.LogRecordExporter]", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordExporter", + "printedName": "VideoSDKRTC.LogRecordExporter", + "usr": "s:11VideoSDKRTC17LogRecordExporterP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22MultiLogRecordExporterC03logE9ExportersACSayAA0deF0_pG_tcfc", + "mangledName": "$s11VideoSDKRTC22MultiLogRecordExporterC03logE9ExportersACSayAA0deF0_pG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "export", + "printedName": "export(logRecords:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22MultiLogRecordExporterC6export10logRecordsAA12ExportResultOSayAA08ReadabledE0VG_tF", + "mangledName": "$s11VideoSDKRTC22MultiLogRecordExporterC6export10logRecordsAA12ExportResultOSayAA08ReadabledE0VG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22MultiLogRecordExporterC8shutdownyyF", + "mangledName": "$s11VideoSDKRTC22MultiLogRecordExporterC8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22MultiLogRecordExporterC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC22MultiLogRecordExporterC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC22MultiLogRecordExporterC", + "mangledName": "$s11VideoSDKRTC22MultiLogRecordExporterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordExporter", + "printedName": "LogRecordExporter", + "usr": "s:11VideoSDKRTC17LogRecordExporterP", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MultiLogRecordProcessor", + "printedName": "MultiLogRecordProcessor", + "children": [ + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23MultiLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC23MultiLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23MultiLogRecordProcessorC8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC23MultiLogRecordProcessorC8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(logRecordProcessors:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MultiLogRecordProcessor", + "printedName": "VideoSDKRTC.MultiLogRecordProcessor", + "usr": "s:11VideoSDKRTC23MultiLogRecordProcessorC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.LogRecordProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "LogRecordProcessor", + "printedName": "VideoSDKRTC.LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC23MultiLogRecordProcessorC03logE10ProcessorsACSayAA0deF0_pG_tcfc", + "mangledName": "$s11VideoSDKRTC23MultiLogRecordProcessorC03logE10ProcessorsACSayAA0deF0_pG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "onEmit", + "printedName": "onEmit(logRecord:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23MultiLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", + "mangledName": "$s11VideoSDKRTC23MultiLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC23MultiLogRecordProcessorC", + "mangledName": "$s11VideoSDKRTC23MultiLogRecordProcessorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordProcessor", + "printedName": "LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MultiSpanExporter", + "printedName": "MultiSpanExporter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(spanExporters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MultiSpanExporter", + "printedName": "VideoSDKRTC.MultiSpanExporter", + "usr": "s:11VideoSDKRTC17MultiSpanExporterC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanExporter]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporter", + "printedName": "VideoSDKRTC.SpanExporter", + "usr": "s:11VideoSDKRTC12SpanExporterP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17MultiSpanExporterC13spanExportersACSayAA0dE0_pG_tcfc", + "mangledName": "$s11VideoSDKRTC17MultiSpanExporterC13spanExportersACSayAA0dE0_pG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "export", + "printedName": "export(spans:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17MultiSpanExporterC6export5spansAA0dE10ResultCodeOSayAA0D4DataVG_tF", + "mangledName": "$s11VideoSDKRTC17MultiSpanExporterC6export5spansAA0dE10ResultCodeOSayAA0D4DataVG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17MultiSpanExporterC5flushAA0dE10ResultCodeOyF", + "mangledName": "$s11VideoSDKRTC17MultiSpanExporterC5flushAA0dE10ResultCodeOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17MultiSpanExporterC8shutdownyyF", + "mangledName": "$s11VideoSDKRTC17MultiSpanExporterC8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC17MultiSpanExporterC", + "mangledName": "$s11VideoSDKRTC17MultiSpanExporterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SpanExporter", + "printedName": "SpanExporter", + "usr": "s:11VideoSDKRTC12SpanExporterP", + "mangledName": "$s11VideoSDKRTC12SpanExporterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MultiSpanProcessor", + "printedName": "MultiSpanProcessor", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(spanProcessors:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MultiSpanProcessor", + "printedName": "VideoSDKRTC.MultiSpanProcessor", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV14spanProcessorsACSayAA0dE0_pG_tcfc", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV14spanProcessorsACSayAA0dE0_pG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "isStartRequired", + "printedName": "isStartRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV15isStartRequiredSbvp", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV15isStartRequiredSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV15isStartRequiredSbvg", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV15isStartRequiredSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isEndRequired", + "printedName": "isEndRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV13isEndRequiredSbvp", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV13isEndRequiredSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV13isEndRequiredSbvg", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV13isEndRequiredSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "onStart", + "printedName": "onStart(parentContext:span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV7onStart13parentContext4spanyAA0dI0VSg_AA08ReadableD0_ptF", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV7onStart13parentContext4spanyAA0dI0VSg_AA08ReadableD0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onEnd", + "printedName": "onEnd(span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV5onEnd4spanyAA08ReadableD0_p_tF", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV5onEnd4spanyAA08ReadableD0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV8shutdownyyF", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush(timeout:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV10forceFlush7timeoutySdSg_tF", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV10forceFlush7timeoutySdSg_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18MultiSpanProcessorV", + "mangledName": "$s11VideoSDKRTC18MultiSpanProcessorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SpanProcessor", + "printedName": "SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_NameMap", + "printedName": "_NameMap", + "children": [ + { + "kind": "TypeDecl", + "name": "NameDescription", + "printedName": "NameDescription", + "children": [ + { + "kind": "Var", + "name": "same", + "printedName": "same", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC._NameMap.NameDescription.Type) -> (Swift.StaticString) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.StaticString) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(proto: Swift.StaticString)", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._NameMap.NameDescription.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO4sameyAEs12StaticStringV_tcAEmF", + "mangledName": "$s11VideoSDKRTC8_NameMapV0C11DescriptionO4sameyAEs12StaticStringV_tcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "standard", + "printedName": "standard", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC._NameMap.NameDescription.Type) -> (Swift.StaticString) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.StaticString) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(proto: Swift.StaticString)", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._NameMap.NameDescription.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO8standardyAEs12StaticStringV_tcAEmF", + "mangledName": "$s11VideoSDKRTC8_NameMapV0C11DescriptionO8standardyAEs12StaticStringV_tcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unique", + "printedName": "unique", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC._NameMap.NameDescription.Type) -> (Swift.StaticString, Swift.StaticString) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.StaticString, Swift.StaticString) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(proto: Swift.StaticString, json: Swift.StaticString)", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._NameMap.NameDescription.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO6uniqueyAEs12StaticStringV_AHtcAEmF", + "mangledName": "$s11VideoSDKRTC8_NameMapV0C11DescriptionO6uniqueyAEs12StaticStringV_AHtcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "aliased", + "printedName": "aliased", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC._NameMap.NameDescription.Type) -> (Swift.StaticString, [Swift.StaticString]) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.StaticString, [Swift.StaticString]) -> VideoSDKRTC._NameMap.NameDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(proto: Swift.StaticString, aliases: [Swift.StaticString])", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.StaticString]", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ], + "usr": "s:Sa" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._NameMap.NameDescription.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO7aliasedyAEs12StaticStringV_SayAHGtcAEmF", + "mangledName": "$s11VideoSDKRTC8_NameMapV0C11DescriptionO7aliasedyAEs12StaticStringV_SayAHGtcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO", + "mangledName": "$s11VideoSDKRTC8_NameMapV0C11DescriptionO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8_NameMapVACycfc", + "mangledName": "$s11VideoSDKRTC8_NameMapVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(dictionaryLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.Int, VideoSDKRTC._NameMap.NameDescription)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Int, VideoSDKRTC._NameMap.NameDescription)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8_NameMapV17dictionaryLiteralACSi_AC0C11DescriptionOtd_tcfc", + "mangledName": "$s11VideoSDKRTC8_NameMapV17dictionaryLiteralACSi_AC0C11DescriptionOtd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC8_NameMapV", + "mangledName": "$s11VideoSDKRTC8_NameMapV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByDictionaryLiteral", + "printedName": "ExpressibleByDictionaryLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "Key", + "printedName": "Key", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Value", + "printedName": "Value", + "children": [ + { + "kind": "TypeNominal", + "name": "NameDescription", + "printedName": "VideoSDKRTC._NameMap.NameDescription", + "usr": "s:11VideoSDKRTC8_NameMapV0C11DescriptionO" + } + ] + } + ], + "usr": "s:s30ExpressibleByDictionaryLiteralP", + "mangledName": "$ss30ExpressibleByDictionaryLiteralP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "NoopLogRecordExporter", + "printedName": "NoopLogRecordExporter", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopLogRecordExporter", + "printedName": "VideoSDKRTC.NoopLogRecordExporter", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC21NoopLogRecordExporterC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopLogRecordExporter", + "printedName": "VideoSDKRTC.NoopLogRecordExporter", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC21NoopLogRecordExporterC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "export", + "printedName": "export(logRecords:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC6export10logRecordsAA12ExportResultOSayAA08ReadabledE0VG_tF", + "mangledName": "$s11VideoSDKRTC21NoopLogRecordExporterC6export10logRecordsAA12ExportResultOSayAA08ReadabledE0VG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC8shutdownyyF", + "mangledName": "$s11VideoSDKRTC21NoopLogRecordExporterC8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC21NoopLogRecordExporterC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21NoopLogRecordExporterC", + "mangledName": "$s11VideoSDKRTC21NoopLogRecordExporterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordExporter", + "printedName": "LogRecordExporter", + "usr": "s:11VideoSDKRTC17LogRecordExporterP", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "NoopLogRecordProcessor", + "printedName": "NoopLogRecordProcessor", + "children": [ + { + "kind": "Var", + "name": "noopLogRecordProcessor", + "printedName": "noopLogRecordProcessor", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopLogRecordProcessor", + "printedName": "VideoSDKRTC.NoopLogRecordProcessor", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC04noopdeF0ACvpZ", + "mangledName": "$s11VideoSDKRTC22NoopLogRecordProcessorC04noopdeF0ACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopLogRecordProcessor", + "printedName": "VideoSDKRTC.NoopLogRecordProcessor", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC04noopdeF0ACvgZ", + "mangledName": "$s11VideoSDKRTC22NoopLogRecordProcessorC04noopdeF0ACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "onEmit", + "printedName": "onEmit(logRecord:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", + "mangledName": "$s11VideoSDKRTC22NoopLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC22NoopLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC22NoopLogRecordProcessorC8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC22NoopLogRecordProcessorC", + "mangledName": "$s11VideoSDKRTC22NoopLogRecordProcessorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordProcessor", + "printedName": "LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableDoubleCounter", + "printedName": "ObservableDoubleCounter", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC23ObservableDoubleCounterP", + "mangledName": "$s11VideoSDKRTC23ObservableDoubleCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableDoubleGauge", + "printedName": "ObservableDoubleGauge", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC21ObservableDoubleGaugeP", + "mangledName": "$s11VideoSDKRTC21ObservableDoubleGaugeP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableDoubleMeasurement", + "printedName": "ObservableDoubleMeasurement", + "children": [ + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP6record5valueySd_tF", + "mangledName": "$s11VideoSDKRTC27ObservableDoubleMeasurementP6record5valueySd_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ObservableDoubleMeasurement>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC27ObservableDoubleMeasurementP6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ObservableDoubleMeasurement>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP", + "mangledName": "$s11VideoSDKRTC27ObservableDoubleMeasurementP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableDoubleUpDownCounter", + "printedName": "ObservableDoubleUpDownCounter", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC29ObservableDoubleUpDownCounterP", + "mangledName": "$s11VideoSDKRTC29ObservableDoubleUpDownCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableInstrumentSdk", + "printedName": "ObservableInstrumentSdk", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC23ObservableInstrumentSdkV", + "mangledName": "$s11VideoSDKRTC23ObservableInstrumentSdkV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ObservableDoubleCounter", + "printedName": "ObservableDoubleCounter", + "usr": "s:11VideoSDKRTC23ObservableDoubleCounterP", + "mangledName": "$s11VideoSDKRTC23ObservableDoubleCounterP" + }, + { + "kind": "Conformance", + "name": "ObservableLongCounter", + "printedName": "ObservableLongCounter", + "usr": "s:11VideoSDKRTC21ObservableLongCounterP", + "mangledName": "$s11VideoSDKRTC21ObservableLongCounterP" + }, + { + "kind": "Conformance", + "name": "ObservableLongGauge", + "printedName": "ObservableLongGauge", + "usr": "s:11VideoSDKRTC19ObservableLongGaugeP", + "mangledName": "$s11VideoSDKRTC19ObservableLongGaugeP" + }, + { + "kind": "Conformance", + "name": "ObservableLongUpDownCounter", + "printedName": "ObservableLongUpDownCounter", + "usr": "s:11VideoSDKRTC27ObservableLongUpDownCounterP", + "mangledName": "$s11VideoSDKRTC27ObservableLongUpDownCounterP" + }, + { + "kind": "Conformance", + "name": "ObservableDoubleGauge", + "printedName": "ObservableDoubleGauge", + "usr": "s:11VideoSDKRTC21ObservableDoubleGaugeP", + "mangledName": "$s11VideoSDKRTC21ObservableDoubleGaugeP" + }, + { + "kind": "Conformance", + "name": "ObservableDoubleUpDownCounter", + "printedName": "ObservableDoubleUpDownCounter", + "usr": "s:11VideoSDKRTC29ObservableDoubleUpDownCounterP", + "mangledName": "$s11VideoSDKRTC29ObservableDoubleUpDownCounterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableLongCounter", + "printedName": "ObservableLongCounter", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC21ObservableLongCounterP", + "mangledName": "$s11VideoSDKRTC21ObservableLongCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableLongGauge", + "printedName": "ObservableLongGauge", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC19ObservableLongGaugeP", + "mangledName": "$s11VideoSDKRTC19ObservableLongGaugeP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableLongMeasurement", + "printedName": "ObservableLongMeasurement", + "children": [ + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP6record5valueySi_tF", + "mangledName": "$s11VideoSDKRTC25ObservableLongMeasurementP6record5valueySi_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ObservableLongMeasurement>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC25ObservableLongMeasurementP6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ObservableLongMeasurement>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP", + "mangledName": "$s11VideoSDKRTC25ObservableLongMeasurementP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ObservableLongUpDownCounter", + "printedName": "ObservableLongUpDownCounter", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC27ObservableLongUpDownCounterP", + "mangledName": "$s11VideoSDKRTC27ObservableLongUpDownCounterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "defaultOltpHTTPMetricsEndpoint", + "printedName": "defaultOltpHTTPMetricsEndpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30defaultOltpHTTPMetricsEndpoint10Foundation3URLVyF", + "mangledName": "$s11VideoSDKRTC30defaultOltpHTTPMetricsEndpoint10Foundation3URLVyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "OtlpHttpMetricExporter", + "printedName": "OtlpHttpMetricExporter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(endpoint:useSession:authToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OtlpHttpMetricExporter", + "printedName": "VideoSDKRTC.OtlpHttpMetricExporter", + "usr": "s:11VideoSDKRTC22OtlpHttpMetricExporterC" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "hasDefaultArg": true, + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URLSession?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSession", + "printedName": "Foundation.URLSession", + "usr": "c:objc(cs)NSURLSession" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22OtlpHttpMetricExporterC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "mangledName": "$s11VideoSDKRTC22OtlpHttpMetricExporterC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "export", + "printedName": "export(metrics:shouldCancel:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> Swift.Bool)?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22OtlpHttpMetricExporterC6export7metrics12shouldCancelAA0eF10ResultCodeOSayAA0E0VG_SbycSgtF", + "mangledName": "$s11VideoSDKRTC22OtlpHttpMetricExporterC6export7metrics12shouldCancelAA0eF10ResultCodeOSayAA0E0VG_SbycSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricExporterResultCode", + "printedName": "VideoSDKRTC.MetricExporterResultCode", + "usr": "s:11VideoSDKRTC24MetricExporterResultCodeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22OtlpHttpMetricExporterC5flushAA0eF10ResultCodeOyF", + "mangledName": "$s11VideoSDKRTC22OtlpHttpMetricExporterC5flushAA0eF10ResultCodeOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC22OtlpHttpMetricExporterC", + "mangledName": "$s11VideoSDKRTC22OtlpHttpMetricExporterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.OtlpHttpExporterBase" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricExporter", + "printedName": "MetricExporter", + "usr": "s:11VideoSDKRTC14MetricExporterP", + "mangledName": "$s11VideoSDKRTC14MetricExporterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OpenTelemetry", + "printedName": "OpenTelemetry", + "children": [ + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV7versionSSvpZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV7versionSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV7versionSSvgZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV7versionSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV7versionSSvsZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV7versionSSvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV7versionSSvMZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV7versionSSvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetry", + "printedName": "VideoSDKRTC.OpenTelemetry", + "usr": "s:11VideoSDKRTC13OpenTelemetryV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetry", + "printedName": "VideoSDKRTC.OpenTelemetry", + "usr": "s:11VideoSDKRTC13OpenTelemetryV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OpenTelemetry", + "printedName": "VideoSDKRTC.OpenTelemetry", + "usr": "s:11VideoSDKRTC13OpenTelemetryV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV8instanceACvsZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV8instanceACvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV8instanceACvMZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV8instanceACvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tracerProvider", + "printedName": "tracerProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "TracerProvider", + "printedName": "VideoSDKRTC.TracerProvider", + "usr": "s:11VideoSDKRTC14TracerProviderP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV14tracerProviderAA06TracerF0_pvp", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV14tracerProviderAA06TracerF0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TracerProvider", + "printedName": "VideoSDKRTC.TracerProvider", + "usr": "s:11VideoSDKRTC14TracerProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV14tracerProviderAA06TracerF0_pvg", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV14tracerProviderAA06TracerF0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "meterProvider", + "printedName": "meterProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV13meterProviderAA05MeterF0_pvp", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV13meterProviderAA05MeterF0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV13meterProviderAA05MeterF0_pvg", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV13meterProviderAA05MeterF0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stableMeterProvider", + "printedName": "stableMeterProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.StableMeterProvider?", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeterProvider", + "printedName": "VideoSDKRTC.StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV19stableMeterProviderAA06StablefG0_pSgvp", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV19stableMeterProviderAA06StablefG0_pSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.StableMeterProvider?", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeterProvider", + "printedName": "VideoSDKRTC.StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV19stableMeterProviderAA06StablefG0_pSgvg", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV19stableMeterProviderAA06StablefG0_pSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "loggerProvider", + "printedName": "loggerProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerProvider", + "printedName": "VideoSDKRTC.LoggerProvider", + "usr": "s:11VideoSDKRTC14LoggerProviderP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV14loggerProviderAA06LoggerF0_pvp", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV14loggerProviderAA06LoggerF0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggerProvider", + "printedName": "VideoSDKRTC.LoggerProvider", + "usr": "s:11VideoSDKRTC14LoggerProviderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV14loggerProviderAA06LoggerF0_pvg", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV14loggerProviderAA06LoggerF0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "baggageManager", + "printedName": "baggageManager", + "children": [ + { + "kind": "TypeNominal", + "name": "BaggageManager", + "printedName": "VideoSDKRTC.BaggageManager", + "usr": "s:11VideoSDKRTC14BaggageManagerP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV14baggageManagerAA07BaggageF0_pvp", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV14baggageManagerAA07BaggageF0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BaggageManager", + "printedName": "VideoSDKRTC.BaggageManager", + "usr": "s:11VideoSDKRTC14BaggageManagerP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV14baggageManagerAA07BaggageF0_pvg", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV14baggageManagerAA07BaggageF0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "propagators", + "printedName": "propagators", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextPropagators", + "printedName": "VideoSDKRTC.ContextPropagators", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV11propagatorsAA18ContextPropagators_pvp", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV11propagatorsAA18ContextPropagators_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ContextPropagators", + "printedName": "VideoSDKRTC.ContextPropagators", + "usr": "s:11VideoSDKRTC18ContextPropagatorsP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV11propagatorsAA18ContextPropagators_pvg", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV11propagatorsAA18ContextPropagators_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "contextProvider", + "printedName": "contextProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextProvider", + "printedName": "VideoSDKRTC.OpenTelemetryContextProvider", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OpenTelemetryV15contextProviderAA0cd7ContextF0Vvp", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV15contextProviderAA0cd7ContextF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextProvider", + "printedName": "VideoSDKRTC.OpenTelemetryContextProvider", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OpenTelemetryV15contextProviderAA0cd7ContextF0Vvg", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV15contextProviderAA0cd7ContextF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "registerStableMeterProvider", + "printedName": "registerStableMeterProvider(meterProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "StableMeterProvider", + "printedName": "VideoSDKRTC.StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13OpenTelemetryV27registerStableMeterProvider05meterH0yAA0fgH0_p_tFZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV27registerStableMeterProvider05meterH0yAA0fgH0_p_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerTracerProvider", + "printedName": "registerTracerProvider(tracerProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TracerProvider", + "printedName": "VideoSDKRTC.TracerProvider", + "usr": "s:11VideoSDKRTC14TracerProviderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13OpenTelemetryV22registerTracerProvider06tracerG0yAA0fG0_p_tFZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV22registerTracerProvider06tracerG0yAA0fG0_p_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerMeterProvider", + "printedName": "registerMeterProvider(meterProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MeterProvider", + "printedName": "VideoSDKRTC.MeterProvider", + "usr": "s:11VideoSDKRTC13MeterProviderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13OpenTelemetryV21registerMeterProvider05meterG0yAA0fG0_p_tFZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV21registerMeterProvider05meterG0yAA0fG0_p_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerLoggerProvider", + "printedName": "registerLoggerProvider(loggerProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoggerProvider", + "printedName": "VideoSDKRTC.LoggerProvider", + "usr": "s:11VideoSDKRTC14LoggerProviderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13OpenTelemetryV22registerLoggerProvider06loggerG0yAA0fG0_p_tFZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV22registerLoggerProvider06loggerG0yAA0fG0_p_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerBaggageManager", + "printedName": "registerBaggageManager(baggageManager:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BaggageManager", + "printedName": "VideoSDKRTC.BaggageManager", + "usr": "s:11VideoSDKRTC14BaggageManagerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13OpenTelemetryV22registerBaggageManager07baggageG0yAA0fG0_p_tFZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV22registerBaggageManager07baggageG0yAA0fG0_p_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerPropagators", + "printedName": "registerPropagators(textPropagators:baggagePropagator:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.TextMapPropagator]", + "children": [ + { + "kind": "TypeNominal", + "name": "TextMapPropagator", + "printedName": "VideoSDKRTC.TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "TextMapBaggagePropagator", + "printedName": "VideoSDKRTC.TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13OpenTelemetryV19registerPropagators04textF017baggagePropagatorySayAA07TextMapI0_pG_AA0jk7BaggageI0_ptFZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV19registerPropagators04textF017baggagePropagatorySayAA07TextMapI0_pG_AA0jk7BaggageI0_ptFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerContextManager", + "printedName": "registerContextManager(contextManager:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ContextManager", + "printedName": "VideoSDKRTC.ContextManager", + "usr": "s:11VideoSDKRTC14ContextManagerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13OpenTelemetryV22registerContextManager07contextG0yAA0fG0_p_tFZ", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV22registerContextManager07contextG0yAA0fG0_p_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC13OpenTelemetryV", + "mangledName": "$s11VideoSDKRTC13OpenTelemetryV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "os.activity", + "printedName": "os.activity", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "OpenTelemetryContextKeys", + "printedName": "OpenTelemetryContextKeys", + "children": [ + { + "kind": "Var", + "name": "span", + "printedName": "span", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.OpenTelemetryContextKeys.Type) -> VideoSDKRTC.OpenTelemetryContextKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO4spanyA2CmF", + "mangledName": "$s11VideoSDKRTC24OpenTelemetryContextKeysO4spanyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "baggage", + "printedName": "baggage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.OpenTelemetryContextKeys.Type) -> VideoSDKRTC.OpenTelemetryContextKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO7baggageyA2CmF", + "mangledName": "$s11VideoSDKRTC24OpenTelemetryContextKeysO7baggageyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC24OpenTelemetryContextKeysO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC24OpenTelemetryContextKeysO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenTelemetryContextKeys", + "printedName": "VideoSDKRTC.OpenTelemetryContextKeys", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC24OpenTelemetryContextKeysO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC24OpenTelemetryContextKeysO", + "mangledName": "$s11VideoSDKRTC24OpenTelemetryContextKeysO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OpenTelemetryContextProvider", + "printedName": "OpenTelemetryContextProvider", + "children": [ + { + "kind": "Var", + "name": "activeSpan", + "printedName": "activeSpan", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Span?", + "children": [ + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV10activeSpanAA0H0_pSgvp", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV10activeSpanAA0H0_pSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Span?", + "children": [ + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV10activeSpanAA0H0_pSgvg", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV10activeSpanAA0H0_pSgvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "activeBaggage", + "printedName": "activeBaggage", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Baggage?", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV13activeBaggageAA0H0_pSgvp", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV13activeBaggageAA0H0_pSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Baggage?", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV13activeBaggageAA0H0_pSgvg", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV13activeBaggageAA0H0_pSgvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setActiveSpan", + "printedName": "setActiveSpan(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV13setActiveSpanyyAA0I0_pF", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV13setActiveSpanyyAA0I0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setActiveBaggage", + "printedName": "setActiveBaggage(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV16setActiveBaggageyyAA0I0_pF", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV16setActiveBaggageyyAA0I0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeContextForSpan", + "printedName": "removeContextForSpan(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV06removeE7ForSpanyyAA0I0_pF", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV06removeE7ForSpanyyAA0I0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeContextForBaggage", + "printedName": "removeContextForBaggage(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV06removeE10ForBaggageyyAA0I0_pF", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV06removeE10ForBaggageyyAA0I0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC28OpenTelemetryContextProviderV", + "mangledName": "$s11VideoSDKRTC28OpenTelemetryContextProviderV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OtlpConfiguration", + "printedName": "OtlpConfiguration", + "children": [ + { + "kind": "Var", + "name": "DefaultTimeoutInterval", + "printedName": "DefaultTimeoutInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV22DefaultTimeoutIntervalSdvpZ", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV22DefaultTimeoutIntervalSdvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV22DefaultTimeoutIntervalSdvgZ", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV22DefaultTimeoutIntervalSdvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "headers", + "printedName": "headers", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[(Swift.String, Swift.String)]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.String, Swift.String)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV7headersSaySS_SStGSgvp", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV7headersSaySS_SStGSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[(Swift.String, Swift.String)]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.String, Swift.String)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV7headersSaySS_SStGSgvg", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV7headersSaySS_SStGSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeout", + "printedName": "timeout", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV7timeoutSdvp", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV7timeoutSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV7timeoutSdvg", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV7timeoutSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(timeout:headers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OtlpConfiguration", + "printedName": "VideoSDKRTC.OtlpConfiguration", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[(Swift.String, Swift.String)]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.String, Swift.String)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV7timeout7headersACSd_SaySS_SStGSgtcfc", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV7timeout7headersACSd_SaySS_SStGSgtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC17OtlpConfigurationV", + "mangledName": "$s11VideoSDKRTC17OtlpConfigurationV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OtlpHttpExporterBase", + "printedName": "OtlpHttpExporterBase", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(endpoint:useSession:authToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OtlpHttpExporterBase", + "printedName": "VideoSDKRTC.OtlpHttpExporterBase", + "usr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URLSession?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSession", + "printedName": "Foundation.URLSession", + "usr": "c:objc(cs)NSURLSession" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "mangledName": "$s11VideoSDKRTC20OtlpHttpExporterBaseC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "createRequest", + "printedName": "createRequest(body:endpoint:authToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC13createRequest4body8endpoint9authToken10Foundation10URLRequestVAA7Message_p_AH3URLVSStF", + "mangledName": "$s11VideoSDKRTC20OtlpHttpExporterBaseC13createRequest4body8endpoint9authToken10Foundation10URLRequestVAA7Message_p_AH3URLVSStF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC8shutdownyyF", + "mangledName": "$s11VideoSDKRTC20OtlpHttpExporterBaseC8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC", + "mangledName": "$s11VideoSDKRTC20OtlpHttpExporterBaseC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "defaultOltpHttpLoggingEndpoint", + "printedName": "defaultOltpHttpLoggingEndpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30defaultOltpHttpLoggingEndpoint10Foundation3URLVyF", + "mangledName": "$s11VideoSDKRTC30defaultOltpHttpLoggingEndpoint10Foundation3URLVyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "OtlpHttpLogExporter", + "printedName": "OtlpHttpLogExporter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(endpoint:useSession:authToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OtlpHttpLogExporter", + "printedName": "VideoSDKRTC.OtlpHttpLogExporter", + "usr": "s:11VideoSDKRTC19OtlpHttpLogExporterC" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "hasDefaultArg": true, + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URLSession?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSession", + "printedName": "Foundation.URLSession", + "usr": "c:objc(cs)NSURLSession" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19OtlpHttpLogExporterC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "mangledName": "$s11VideoSDKRTC19OtlpHttpLogExporterC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "export", + "printedName": "export(logRecords:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReadableLogRecord]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19OtlpHttpLogExporterC6export10logRecordsAA12ExportResultOSayAA08ReadableE6RecordVG_tF", + "mangledName": "$s11VideoSDKRTC19OtlpHttpLogExporterC6export10logRecordsAA12ExportResultOSayAA08ReadableE6RecordVG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19OtlpHttpLogExporterC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC19OtlpHttpLogExporterC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19OtlpHttpLogExporterC5flushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC19OtlpHttpLogExporterC5flushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19OtlpHttpLogExporterC", + "mangledName": "$s11VideoSDKRTC19OtlpHttpLogExporterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.OtlpHttpExporterBase" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordExporter", + "printedName": "LogRecordExporter", + "usr": "s:11VideoSDKRTC17LogRecordExporterP", + "mangledName": "$s11VideoSDKRTC17LogRecordExporterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "defaultOltpHttpTracesEndpoint", + "printedName": "defaultOltpHttpTracesEndpoint()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29defaultOltpHttpTracesEndpoint10Foundation3URLVyF", + "mangledName": "$s11VideoSDKRTC29defaultOltpHttpTracesEndpoint10Foundation3URLVyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "OtlpHttpTraceExporter", + "printedName": "OtlpHttpTraceExporter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(endpoint:useSession:authToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OtlpHttpTraceExporter", + "printedName": "VideoSDKRTC.OtlpHttpTraceExporter", + "usr": "s:11VideoSDKRTC21OtlpHttpTraceExporterC" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "hasDefaultArg": true, + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URLSession?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSession", + "printedName": "Foundation.URLSession", + "usr": "c:objc(cs)NSURLSession" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21OtlpHttpTraceExporterC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "mangledName": "$s11VideoSDKRTC21OtlpHttpTraceExporterC8endpoint10useSession9authTokenAC10Foundation3URLV_So12NSURLSessionCSgSStcfc", + "moduleName": "VideoSDKRTC", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "export", + "printedName": "export(spans:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21OtlpHttpTraceExporterC6export5spansAA04SpanF10ResultCodeOSayAA0I4DataVG_tF", + "mangledName": "$s11VideoSDKRTC21OtlpHttpTraceExporterC6export5spansAA04SpanF10ResultCodeOSayAA0I4DataVG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21OtlpHttpTraceExporterC5flushAA04SpanF10ResultCodeOyF", + "mangledName": "$s11VideoSDKRTC21OtlpHttpTraceExporterC5flushAA04SpanF10ResultCodeOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21OtlpHttpTraceExporterC", + "mangledName": "$s11VideoSDKRTC21OtlpHttpTraceExporterC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC20OtlpHttpExporterBaseC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "VideoSDKRTC.OtlpHttpExporterBase" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SpanExporter", + "printedName": "SpanExporter", + "usr": "s:11VideoSDKRTC12SpanExporterP", + "mangledName": "$s11VideoSDKRTC12SpanExporterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OtlpSpan", + "printedName": "OtlpSpan", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OtlpSpan", + "printedName": "VideoSDKRTC.OtlpSpan", + "usr": "s:11VideoSDKRTC8OtlpSpanV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8OtlpSpanV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC8OtlpSpanV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8OtlpSpanV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC8OtlpSpanV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC8OtlpSpanV", + "mangledName": "$s11VideoSDKRTC8OtlpSpanV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Attribute", + "printedName": "Attribute", + "children": [ + { + "kind": "TypeDecl", + "name": "Value", + "printedName": "Value", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Value", + "printedName": "VideoSDKRTC.Attribute.Value", + "usr": "s:11VideoSDKRTC9AttributeV5ValueV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC9AttributeV5ValueV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC9AttributeV5ValueV4fromAEs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9AttributeV5ValueV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC9AttributeV5ValueV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC9AttributeV5ValueV", + "mangledName": "$s11VideoSDKRTC9AttributeV5ValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Attribute", + "printedName": "VideoSDKRTC.Attribute", + "usr": "s:11VideoSDKRTC9AttributeV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC9AttributeV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC9AttributeV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9AttributeV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC9AttributeV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC9AttributeV", + "mangledName": "$s11VideoSDKRTC9AttributeV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OTPCConstants", + "printedName": "OTPCConstants", + "children": [ + { + "kind": "TypeDecl", + "name": "HTTP", + "printedName": "HTTP", + "children": [ + { + "kind": "Var", + "name": "userAgent", + "printedName": "userAgent", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13OTPCConstantsO4HTTPO9userAgentSSvpZ", + "mangledName": "$s11VideoSDKRTC13OTPCConstantsO4HTTPO9userAgentSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13OTPCConstantsO4HTTPO9userAgentSSvgZ", + "mangledName": "$s11VideoSDKRTC13OTPCConstantsO4HTTPO9userAgentSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC13OTPCConstantsO4HTTPO", + "mangledName": "$s11VideoSDKRTC13OTPCConstantsO4HTTPO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC13OTPCConstantsO", + "mangledName": "$s11VideoSDKRTC13OTPCConstantsO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Participant", + "printedName": "Participant", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ParticipantC2idSSvp", + "mangledName": "$s11VideoSDKRTC11ParticipantC2idSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC2idSSvg", + "mangledName": "$s11VideoSDKRTC11ParticipantC2idSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ParticipantC11displayNameSSvp", + "mangledName": "$s11VideoSDKRTC11ParticipantC11displayNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC11displayNameSSvg", + "mangledName": "$s11VideoSDKRTC11ParticipantC11displayNameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "videoQuality", + "printedName": "videoQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovp", + "mangledName": "$s11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovg", + "mangledName": "$s11VideoSDKRTC11ParticipantC12videoQualityAA0aE0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isLocal", + "printedName": "isLocal", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ParticipantC7isLocalSbvp", + "mangledName": "$s11VideoSDKRTC11ParticipantC7isLocalSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC7isLocalSbvg", + "mangledName": "$s11VideoSDKRTC11ParticipantC7isLocalSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "streams", + "printedName": "streams", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.MediaStream]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvp", + "mangledName": "$s11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.MediaStream]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvg", + "mangledName": "$s11VideoSDKRTC11ParticipantC7streamsSDySSAA11MediaStreamCGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pinState", + "printedName": "pinState", + "children": [ + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0Vvp", + "mangledName": "$s11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0Vvg", + "mangledName": "$s11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0Vvs", + "mangledName": "$s11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0VvM", + "mangledName": "$s11VideoSDKRTC11ParticipantC8pinStateAA0c3PinE0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11ParticipantC4modeAA4ModeOvp", + "mangledName": "$s11VideoSDKRTC11ParticipantC4modeAA4ModeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC4modeAA4ModeOvg", + "mangledName": "$s11VideoSDKRTC11ParticipantC4modeAA4ModeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC4modeAA4ModeOvs", + "mangledName": "$s11VideoSDKRTC11ParticipantC4modeAA4ModeOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11ParticipantC4modeAA4ModeOvM", + "mangledName": "$s11VideoSDKRTC11ParticipantC4modeAA4ModeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enableMic", + "printedName": "enableMic()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC9enableMicyyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC9enableMicyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableMic", + "printedName": "disableMic()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC10disableMicyyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC10disableMicyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enableWebcam", + "printedName": "enableWebcam()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC12enableWebcamyyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC12enableWebcamyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableWebcam", + "printedName": "disableWebcam()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC13disableWebcamyyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC13disableWebcamyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "remove", + "printedName": "remove()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC6removeyyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC6removeyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "participantPinStateChanged", + "printedName": "participantPinStateChanged(pinState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC26participantPinStateChanged03pinF0yAA0ceF0V_tF", + "mangledName": "$s11VideoSDKRTC11ParticipantC26participantPinStateChanged03pinF0yAA0ceF0V_tF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "participantModeChanged", + "printedName": "participantModeChanged(mode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC22participantModeChanged4modeyAA0E0O_tF", + "mangledName": "$s11VideoSDKRTC11ParticipantC22participantModeChanged4modeyAA0E0O_tF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAudioStats", + "printedName": "getAudioStats()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC13getAudioStatsSDySSypGSgyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC13getAudioStatsSDySSypGSgyF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getVideoStats", + "printedName": "getVideoStats()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC03getA5StatsSDySSypGSgyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC03getA5StatsSDySSypGSgyF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addStream", + "printedName": "addStream(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC9addStreamyyAA05MediaE0CF", + "mangledName": "$s11VideoSDKRTC11ParticipantC9addStreamyyAA05MediaE0CF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeStream", + "printedName": "removeStream(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.MediaStream?", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC12removeStreamyAA05MediaE0CSgSSF", + "mangledName": "$s11VideoSDKRTC11ParticipantC12removeStreamyAA05MediaE0CSgSSF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeAllStreams", + "printedName": "removeAllStreams()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC16removeAllStreamsyyF", + "mangledName": "$s11VideoSDKRTC11ParticipantC16removeAllStreamsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setQuality", + "printedName": "setQuality(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC10setQualityyyAA0aE0OF", + "mangledName": "$s11VideoSDKRTC11ParticipantC10setQualityyyAA0aE0OF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pin", + "printedName": "pin(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC3pinyySS_AA7PinTypeOtF", + "mangledName": "$s11VideoSDKRTC11ParticipantC3pinyySS_AA7PinTypeOtF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unpin", + "printedName": "unpin(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC5unpinyyAA7PinTypeOF", + "mangledName": "$s11VideoSDKRTC11ParticipantC5unpinyyAA7PinTypeOF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setPinState", + "printedName": "setPinState(pinState:peerId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC11setPinState03pinF06peerIdyAA0ceF0V_SStF", + "mangledName": "$s11VideoSDKRTC11ParticipantC11setPinState03pinF06peerIdyAA0ceF0V_SStF", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEventListener", + "printedName": "addEventListener(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ParticipantEventListener", + "printedName": "VideoSDKRTC.ParticipantEventListener", + "usr": "s:11VideoSDKRTC24ParticipantEventListenerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC16addEventListeneryyAA0ceF0_pF", + "mangledName": "$s11VideoSDKRTC11ParticipantC16addEventListeneryyAA0ceF0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeEventListener", + "printedName": "removeEventListener(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ParticipantEventListener", + "printedName": "VideoSDKRTC.ParticipantEventListener", + "usr": "s:11VideoSDKRTC24ParticipantEventListenerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC19removeEventListeneryyAA0ceF0_pF", + "mangledName": "$s11VideoSDKRTC11ParticipantC19removeEventListeneryyAA0ceF0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ParticipantC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC11ParticipantC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC11ParticipantC", + "mangledName": "$s11VideoSDKRTC11ParticipantC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ParticipantEventListener", + "printedName": "ParticipantEventListener", + "children": [ + { + "kind": "Function", + "name": "onStreamEnabled", + "printedName": "onStreamEnabled(_:forParticipant:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24ParticipantEventListenerP15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", + "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerP15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onStreamDisabled", + "printedName": "onStreamDisabled(_:forParticipant:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24ParticipantEventListenerP16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", + "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerP16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onStreamEnabled", + "printedName": "onStreamEnabled(_:forParticipant:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24ParticipantEventListenerPAAE15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", + "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerPAAE15onStreamEnabled_03forC0yAA05MediaG0C_AA0C0CtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onStreamDisabled", + "printedName": "onStreamDisabled(_:forParticipant:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaStream", + "printedName": "VideoSDKRTC.MediaStream", + "usr": "s:11VideoSDKRTC11MediaStreamC" + }, + { + "kind": "TypeNominal", + "name": "Participant", + "printedName": "VideoSDKRTC.Participant", + "usr": "s:11VideoSDKRTC11ParticipantC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24ParticipantEventListenerPAAE16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", + "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerPAAE16onStreamDisabled_03forC0yAA05MediaG0C_AA0C0CtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ParticipantEventListener>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC24ParticipantEventListenerP", + "mangledName": "$s11VideoSDKRTC24ParticipantEventListenerP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PinType", + "printedName": "PinType", + "children": [ + { + "kind": "Var", + "name": "SHARE_AND_CAM", + "printedName": "SHARE_AND_CAM", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.PinType.Type) -> VideoSDKRTC.PinType", + "children": [ + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.PinType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC7PinTypeO13SHARE_AND_CAMyA2CmF", + "mangledName": "$s11VideoSDKRTC7PinTypeO13SHARE_AND_CAMyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "CAM", + "printedName": "CAM", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.PinType.Type) -> VideoSDKRTC.PinType", + "children": [ + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.PinType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC7PinTypeO3CAMyA2CmF", + "mangledName": "$s11VideoSDKRTC7PinTypeO3CAMyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "SHARE", + "printedName": "SHARE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.PinType.Type) -> VideoSDKRTC.PinType", + "children": [ + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.PinType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC7PinTypeO5SHAREyA2CmF", + "mangledName": "$s11VideoSDKRTC7PinTypeO5SHAREyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.PinType?", + "children": [ + { + "kind": "TypeNominal", + "name": "PinType", + "printedName": "VideoSDKRTC.PinType", + "usr": "s:11VideoSDKRTC7PinTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7PinTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC7PinTypeO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7PinTypeO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC7PinTypeO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7PinTypeO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC7PinTypeO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC7PinTypeO", + "mangledName": "$s11VideoSDKRTC7PinTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ParticipantPinState", + "printedName": "ParticipantPinState", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ParticipantPinState", + "printedName": "VideoSDKRTC.ParticipantPinState", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC19ParticipantPinStateV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC19ParticipantPinStateV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19ParticipantPinStateV", + "mangledName": "$s11VideoSDKRTC19ParticipantPinStateV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PointData", + "printedName": "PointData", + "children": [ + { + "kind": "Var", + "name": "startEpochNanos", + "printedName": "startEpochNanos", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64VvM", + "mangledName": "$s11VideoSDKRTC9PointDataC15startEpochNanoss6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "endEpochNanos", + "printedName": "endEpochNanos", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64VvM", + "mangledName": "$s11VideoSDKRTC9PointDataC13endEpochNanoss6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvs", + "mangledName": "$s11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvM", + "mangledName": "$s11VideoSDKRTC9PointDataC10attributesSDySSAA14AttributeValueOGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "exemplars", + "printedName": "exemplars", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ExemplarData]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvp", + "mangledName": "$s11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ExemplarData]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvg", + "mangledName": "$s11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ExemplarData]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarData", + "printedName": "VideoSDKRTC.ExemplarData", + "usr": "s:11VideoSDKRTC12ExemplarDataC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvs", + "mangledName": "$s11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvM", + "mangledName": "$s11VideoSDKRTC9PointDataC9exemplarsSayAA08ExemplarD0CGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "-", + "printedName": "-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9PointDataC1soiyACXDAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC9PointDataC1soiyACXDAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9PointDataC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC9PointDataC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC9PointDataC", + "mangledName": "$s11VideoSDKRTC9PointDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufAPIVersion_3", + "printedName": "ProtobufAPIVersion_3", + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC20ProtobufAPIVersion_3P", + "mangledName": "$s11VideoSDKRTC20ProtobufAPIVersion_3P", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProtobufAPIVersionCheck", + "printedName": "ProtobufAPIVersionCheck", + "children": [ + { + "kind": "AssociatedType", + "name": "Version", + "printedName": "Version", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC23ProtobufAPIVersionCheckP7VersionQa", + "mangledName": "$s11VideoSDKRTC23ProtobufAPIVersionCheckP7VersionQa", + "moduleName": "VideoSDKRTC", + "protocolReq": true + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC23ProtobufAPIVersionCheckP", + "mangledName": "$s11VideoSDKRTC23ProtobufAPIVersionCheckP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0.Version : VideoSDKRTC.ProtobufAPIVersion_3>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_ProtobufMap", + "printedName": "_ProtobufMap", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC12_ProtobufMapV", + "mangledName": "$s11VideoSDKRTC12_ProtobufMapV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.MapKeyType, τ_0_1 : VideoSDKRTC.FieldType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_ProtobufMessageMap", + "printedName": "_ProtobufMessageMap", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19_ProtobufMessageMapV", + "mangledName": "$s11VideoSDKRTC19_ProtobufMessageMapV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.MapKeyType, τ_0_1 : Swift.Hashable, τ_0_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_ProtobufEnumMap", + "printedName": "_ProtobufEnumMap", + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16_ProtobufEnumMapV", + "mangledName": "$s11VideoSDKRTC16_ProtobufEnumMapV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : VideoSDKRTC.MapKeyType, τ_0_1 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "children": [ + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP17_protobuf_nameMapAA01_dH0VvpZ", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP17_protobuf_nameMapAA01_dH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP17_protobuf_nameMapAA01_dH0VvgZ", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP17_protobuf_nameMapAA01_dH0VvgZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC._ProtoNameProviding>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProxyMeter", + "printedName": "ProxyMeter", + "children": [ + { + "kind": "Function", + "name": "createRawDoubleCounter", + "printedName": "createRawDoubleCounter(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawCounterMetric", + "printedName": "VideoSDKRTC.AnyRawCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV22createRawDoubleCounter4nameAA03AnyfH6MetricVySdGSS_tF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV22createRawDoubleCounter4nameAA03AnyfH6MetricVySdGSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRawIntCounter", + "printedName": "createRawIntCounter(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawCounterMetric", + "printedName": "VideoSDKRTC.AnyRawCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV19createRawIntCounter4nameAA03AnyfH6MetricVySiGSS_tF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV19createRawIntCounter4nameAA03AnyfH6MetricVySiGSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRawDoubleHistogram", + "printedName": "createRawDoubleHistogram(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawHistogramMetric", + "printedName": "VideoSDKRTC.AnyRawHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV24createRawDoubleHistogram4nameAA03AnyfH6MetricVySdGSS_tF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV24createRawDoubleHistogram4nameAA03AnyfH6MetricVySdGSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRawIntHistogram", + "printedName": "createRawIntHistogram(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawHistogramMetric", + "printedName": "VideoSDKRTC.AnyRawHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV21createRawIntHistogram4nameAA03AnyfH6MetricVySiGSS_tF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV21createRawIntHistogram4nameAA03AnyfH6MetricVySiGSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getLabelSet", + "printedName": "getLabelSet(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV11getLabelSet6labelsAA0fG0CSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV11getLabelSet6labelsAA0fG0CSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntCounter", + "printedName": "createIntCounter(name:monotonic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCounterMetric", + "printedName": "VideoSDKRTC.AnyCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC16AnyCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV16createIntCounter4name9monotonicAA03AnyG6MetricVySiGSS_SbtF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV16createIntCounter4name9monotonicAA03AnyG6MetricVySiGSS_SbtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleCounter", + "printedName": "createDoubleCounter(name:monotonic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCounterMetric", + "printedName": "VideoSDKRTC.AnyCounterMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC16AnyCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV19createDoubleCounter4name9monotonicAA03AnyG6MetricVySdGSS_SbtF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV19createDoubleCounter4name9monotonicAA03AnyG6MetricVySdGSS_SbtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntMeasure", + "printedName": "createIntMeasure(name:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMeasureMetric", + "printedName": "VideoSDKRTC.AnyMeasureMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV16createIntMeasure4name8absoluteAA03AnyG6MetricVySiGSS_SbtF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV16createIntMeasure4name8absoluteAA03AnyG6MetricVySiGSS_SbtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleMeasure", + "printedName": "createDoubleMeasure(name:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMeasureMetric", + "printedName": "VideoSDKRTC.AnyMeasureMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC16AnyMeasureMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV19createDoubleMeasure4name8absoluteAA03AnyG6MetricVySdGSS_SbtF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV19createDoubleMeasure4name8absoluteAA03AnyG6MetricVySdGSS_SbtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntHistogram", + "printedName": "createIntHistogram(name:explicitBoundaries:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyHistogramMetric", + "printedName": "VideoSDKRTC.AnyHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.Int]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV18createIntHistogram4name18explicitBoundaries8absoluteAA03AnyG6MetricVySiGSS_SaySiGSgSbtF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV18createIntHistogram4name18explicitBoundaries8absoluteAA03AnyG6MetricVySiGSS_SaySiGSgSbtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleHistogram", + "printedName": "createDoubleHistogram(name:explicitBoundaries:absolute:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyHistogramMetric", + "printedName": "VideoSDKRTC.AnyHistogramMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:11VideoSDKRTC18AnyHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV21createDoubleHistogram4name18explicitBoundaries8absoluteAA03AnyG6MetricVySdGSS_SaySdGSgSbtF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV21createDoubleHistogram4name18explicitBoundaries8absoluteAA03AnyG6MetricVySdGSS_SaySdGSgSbtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntObservableGauge", + "printedName": "createIntObservableGauge(name:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.IntObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV24createIntObservableGauge4name8callbackAA0F14ObserverMetric_pSS_yAaG_pctF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV24createIntObservableGauge4name8callbackAA0F14ObserverMetric_pSS_yAaG_pctF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleObservableGauge", + "printedName": "createDoubleObservableGauge(name:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.DoubleObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV27createDoubleObservableGauge4name8callbackAA0F14ObserverMetric_pSS_yAaG_pctF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV27createDoubleObservableGauge4name8callbackAA0F14ObserverMetric_pSS_yAaG_pctF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIntObserver", + "printedName": "createIntObserver(name:absolute:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.IntObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IntObserverMetric", + "printedName": "VideoSDKRTC.IntObserverMetric", + "usr": "s:11VideoSDKRTC17IntObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV17createIntObserver4name8absolute8callbackAA0fG6Metric_pSS_SbyAaH_pctF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV17createIntObserver4name8absolute8callbackAA0fG6Metric_pSS_SbyAaH_pctF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createDoubleObserver", + "printedName": "createDoubleObserver(name:absolute:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.DoubleObserverMetric) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DoubleObserverMetric", + "printedName": "VideoSDKRTC.DoubleObserverMetric", + "usr": "s:11VideoSDKRTC20DoubleObserverMetricP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10ProxyMeterV20createDoubleObserver4name8absolute8callbackAA0fG6Metric_pSS_SbyAaH_pctF", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV20createDoubleObserver4name8absolute8callbackAA0fG6Metric_pSS_SbyAaH_pctF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC10ProxyMeterV", + "mangledName": "$s11VideoSDKRTC10ProxyMeterV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Meter", + "printedName": "Meter", + "usr": "s:11VideoSDKRTC5MeterP", + "mangledName": "$s11VideoSDKRTC5MeterP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PubSub", + "printedName": "PubSub", + "children": [ + { + "kind": "Function", + "name": "publish", + "printedName": "publish(topic:message:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6PubSubC7publish5topic7message7optionsySS_SSSDySSypGtF", + "mangledName": "$s11VideoSDKRTC6PubSubC7publish5topic7message7optionsySS_SSSDySSypGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "subscribe", + "printedName": "subscribe(topic:forListener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PubSubMessageListener", + "printedName": "VideoSDKRTC.PubSubMessageListener", + "usr": "s:11VideoSDKRTC21PubSubMessageListenerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6PubSubC9subscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", + "mangledName": "$s11VideoSDKRTC6PubSubC9subscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unsubscribe", + "printedName": "unsubscribe(topic:forListener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PubSubMessageListener", + "printedName": "VideoSDKRTC.PubSubMessageListener", + "usr": "s:11VideoSDKRTC21PubSubMessageListenerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6PubSubC11unsubscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", + "mangledName": "$s11VideoSDKRTC6PubSubC11unsubscribe5topic11forListenerySS_AA0cd7MessageH0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getMessagesForTopic", + "printedName": "getMessagesForTopic(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PubSubMessage]", + "children": [ + { + "kind": "TypeNominal", + "name": "PubSubMessage", + "printedName": "VideoSDKRTC.PubSubMessage", + "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6PubSubC19getMessagesForTopicySayAA0cD7MessageCGSSF", + "mangledName": "$s11VideoSDKRTC6PubSubC19getMessagesForTopicySayAA0cD7MessageCGSSF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC6PubSubC", + "mangledName": "$s11VideoSDKRTC6PubSubC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PubSubMessage", + "printedName": "PubSubMessage", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvp", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvg", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvs", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC2idSSvM", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC2idSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "topic", + "printedName": "topic", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvp", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvg", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvs", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC5topicSSvM", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC5topicSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvp", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvg", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvs", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC7messageSSvM", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC7messageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "senderId", + "printedName": "senderId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvp", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvg", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvs", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC8senderIdSSvM", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC8senderIdSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "senderName", + "printedName": "senderName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvp", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvg", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvs", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC10senderNameSSvM", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC10senderNameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvp", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvg", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvs", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13PubSubMessageC9timestampSSvM", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC9timestampSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "PubSubMessage", + "printedName": "VideoSDKRTC.PubSubMessage", + "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage" + } + ], + "declKind": "Constructor", + "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage(im)init", + "mangledName": "$s11VideoSDKRTC13PubSubMessageCACycfc", + "moduleName": "VideoSDKRTC", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage", + "mangledName": "$s11VideoSDKRTC13PubSubMessageC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PubSubMessageListener", + "printedName": "PubSubMessageListener", + "children": [ + { + "kind": "Function", + "name": "onMessageReceived", + "printedName": "onMessageReceived(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PubSubMessage", + "printedName": "VideoSDKRTC.PubSubMessage", + "usr": "c:@M@VideoSDKRTC@objc(cs)PubSubMessage" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21PubSubMessageListenerP02onE8ReceivedyyAA0cdE0CF", + "mangledName": "$s11VideoSDKRTC21PubSubMessageListenerP02onE8ReceivedyyAA0cdE0CF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.PubSubMessageListener>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC21PubSubMessageListenerP", + "mangledName": "$s11VideoSDKRTC21PubSubMessageListenerP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "RandomIdGenerator", + "printedName": "RandomIdGenerator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "RandomIdGenerator", + "printedName": "VideoSDKRTC.RandomIdGenerator", + "usr": "s:11VideoSDKRTC17RandomIdGeneratorV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17RandomIdGeneratorVACycfc", + "mangledName": "$s11VideoSDKRTC17RandomIdGeneratorVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "generateSpanId", + "printedName": "generateSpanId()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17RandomIdGeneratorV012generateSpanD0AA0gD0VyF", + "mangledName": "$s11VideoSDKRTC17RandomIdGeneratorV012generateSpanD0AA0gD0VyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateTraceId", + "printedName": "generateTraceId()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17RandomIdGeneratorV013generateTraceD0AA0gD0VyF", + "mangledName": "$s11VideoSDKRTC17RandomIdGeneratorV013generateTraceD0AA0gD0VyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC17RandomIdGeneratorV", + "mangledName": "$s11VideoSDKRTC17RandomIdGeneratorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "IdGenerator", + "printedName": "IdGenerator", + "usr": "s:11VideoSDKRTC11IdGeneratorP", + "mangledName": "$s11VideoSDKRTC11IdGeneratorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "RawCounterMetric", + "printedName": "RawCounterMetric", + "children": [ + { + "kind": "AssociatedType", + "name": "T", + "printedName": "T", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC16RawCounterMetricP1TQa", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP1TQa", + "moduleName": "VideoSDKRTC", + "protocolReq": true + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(sum:startDate:endDate:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16RawCounterMetricP6record3sum9startDate03endI06labelsy1TQz_10Foundation0I0VAMSDyS2SGtF", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP6record3sum9startDate03endI06labelsy1TQz_10Foundation0I0VAMSDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawCounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(sum:startDate:endDate:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16RawCounterMetricP6record3sum9startDate03endI08labelsety1TQz_10Foundation0I0VAmA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP6record3sum9startDate03endI08labelsety1TQz_10Foundation0I0VAmA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawCounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawCounterMetric", + "printedName": "VideoSDKRTC.BoundRawCounterMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16RawCounterMetricP4bind8labelsetAA05BoundcdE0Cy1TQzGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP4bind8labelsetAA05BoundcdE0Cy1TQzGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawCounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawCounterMetric", + "printedName": "VideoSDKRTC.BoundRawCounterMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16RawCounterMetricP4bind6labelsAA05BoundcdE0Cy1TQzGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP4bind6labelsAA05BoundcdE0Cy1TQzGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawCounterMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC16RawCounterMetricP", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "AnyRawCounterMetric", + "printedName": "AnyRawCounterMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawCounterMetric", + "printedName": "VideoSDKRTC.AnyRawCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricVyACyxGqd__c1TQyd__RszAA0deF0Rd__lufc", + "mangledName": "$s11VideoSDKRTC19AnyRawCounterMetricVyACyxGqd__c1TQyd__RszAA0deF0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 == τ_1_0.T, τ_1_0 : VideoSDKRTC.RawCounterMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawCounterMetric", + "printedName": "VideoSDKRTC.BoundRawCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC19AnyRawCounterMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawCounterMetric", + "printedName": "VideoSDKRTC.BoundRawCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC19AnyRawCounterMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(sum:startDate:endDate:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV6record3sum9startDate03endJ08labelsetyx_10Foundation0J0VAkA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC19AnyRawCounterMetricV6record3sum9startDate03endJ08labelsetyx_10Foundation0J0VAkA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(sum:startDate:endDate:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV6record3sum9startDate03endJ06labelsyx_10Foundation0J0VAKSDyS2SGtF", + "mangledName": "$s11VideoSDKRTC19AnyRawCounterMetricV6record3sum9startDate03endJ06labelsyx_10Foundation0J0VAKSDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19AnyRawCounterMetricV", + "mangledName": "$s11VideoSDKRTC19AnyRawCounterMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "RawCounterMetric", + "printedName": "RawCounterMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC16RawCounterMetricP", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoopRawCounterMetric", + "printedName": "NoopRawCounterMetric", + "children": [ + { + "kind": "Function", + "name": "record", + "printedName": "record(sum:startDate:endDate:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20NoopRawCounterMetricV6record3sum9startDate03endJ06labelsyx_10Foundation0J0VAKSDyS2SGtF", + "mangledName": "$s11VideoSDKRTC20NoopRawCounterMetricV6record3sum9startDate03endJ06labelsyx_10Foundation0J0VAKSDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(sum:startDate:endDate:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20NoopRawCounterMetricV6record3sum9startDate03endJ08labelsetyx_10Foundation0J0VAkA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC20NoopRawCounterMetricV6record3sum9startDate03endJ08labelsetyx_10Foundation0J0VAkA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawCounterMetric", + "printedName": "VideoSDKRTC.BoundRawCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20NoopRawCounterMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC20NoopRawCounterMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawCounterMetric", + "printedName": "VideoSDKRTC.BoundRawCounterMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC21BoundRawCounterMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20NoopRawCounterMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC20NoopRawCounterMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20NoopRawCounterMetricV", + "mangledName": "$s11VideoSDKRTC20NoopRawCounterMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "RawCounterMetric", + "printedName": "RawCounterMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC16RawCounterMetricP", + "mangledName": "$s11VideoSDKRTC16RawCounterMetricP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "RawHistogramMetric", + "printedName": "RawHistogramMetric", + "children": [ + { + "kind": "AssociatedType", + "name": "T", + "printedName": "T", + "declKind": "AssociatedType", + "usr": "s:11VideoSDKRTC18RawHistogramMetricP1TQa", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP1TQa", + "moduleName": "VideoSDKRTC", + "protocolReq": true + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawHistogramMetric", + "printedName": "VideoSDKRTC.BoundRawHistogramMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18RawHistogramMetricP4bind8labelsetAA05BoundcdE0Cy1TQzGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP4bind8labelsetAA05BoundcdE0Cy1TQzGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawHistogramMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawHistogramMetric", + "printedName": "VideoSDKRTC.BoundRawHistogramMetric<τ_0_0.T>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18RawHistogramMetricP4bind6labelsAA05BoundcdE0Cy1TQzGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP4bind6labelsAA05BoundcdE0Cy1TQzGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawHistogramMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(explicitBoundaries:counts:startDate:endDate:count:sum:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.T]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18RawHistogramMetricP6record18explicitBoundaries6counts9startDate03endK05count3sum8labelsetySay1TQzG_SaySiG10Foundation0K0VARSiAmA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP6record18explicitBoundaries6counts9startDate03endK05count3sum8labelsetySay1TQzG_SaySiG10Foundation0K0VARSiAmA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawHistogramMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(explicitBoundaries:counts:startDate:endDate:count:sum:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.T]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.T" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18RawHistogramMetricP6record18explicitBoundaries6counts9startDate03endK05count3sum6labelsySay1TQzG_SaySiG10Foundation0K0VARSiAMSDyS2SGtF", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP6record18explicitBoundaries6counts9startDate03endK05count3sum6labelsySay1TQzG_SaySiG10Foundation0K0VARSiAMSDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.RawHistogramMetric>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC18RawHistogramMetricP", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AnyRawHistogramMetric", + "printedName": "AnyRawHistogramMetric", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyRawHistogramMetric", + "printedName": "VideoSDKRTC.AnyRawHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricVyACyxGqd__c1TQyd__RszAA0deF0Rd__lufc", + "mangledName": "$s11VideoSDKRTC21AnyRawHistogramMetricVyACyxGqd__c1TQyd__RszAA0deF0Rd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 == τ_1_0.T, τ_1_0 : VideoSDKRTC.RawHistogramMetric>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawHistogramMetric", + "printedName": "VideoSDKRTC.BoundRawHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC21AnyRawHistogramMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawHistogramMetric", + "printedName": "VideoSDKRTC.BoundRawHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC21AnyRawHistogramMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(explicitBoundaries:counts:startDate:endDate:count:sum:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum6labelsySayxG_SaySiG10Foundation0L0VAPSixSDyS2SGtF", + "mangledName": "$s11VideoSDKRTC21AnyRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum6labelsySayxG_SaySiG10Foundation0L0VAPSixSDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(explicitBoundaries:counts:startDate:endDate:count:sum:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum8labelsetySayxG_SaySiG10Foundation0L0VAPSixAA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC21AnyRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum8labelsetySayxG_SaySiG10Foundation0L0VAPSixAA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC21AnyRawHistogramMetricV", + "mangledName": "$s11VideoSDKRTC21AnyRawHistogramMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "RawHistogramMetric", + "printedName": "RawHistogramMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC18RawHistogramMetricP", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoopRawHistogramMetric", + "printedName": "NoopRawHistogramMetric", + "children": [ + { + "kind": "Function", + "name": "record", + "printedName": "record(explicitBoundaries:counts:startDate:endDate:count:sum:labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum8labelsetySayxG_SaySiG10Foundation0L0VAPSixAA8LabelSetCtF", + "mangledName": "$s11VideoSDKRTC22NoopRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum8labelsetySayxG_SaySiG10Foundation0L0VAPSixAA8LabelSetCtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(explicitBoundaries:counts:startDate:endDate:count:sum:labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum6labelsySayxG_SaySiG10Foundation0L0VAPSixSDyS2SGtF", + "mangledName": "$s11VideoSDKRTC22NoopRawHistogramMetricV6record18explicitBoundaries6counts9startDate03endL05count3sum6labelsySayxG_SaySiG10Foundation0L0VAPSixSDyS2SGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NoopRawHistogramMetric", + "printedName": "VideoSDKRTC.NoopRawHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC22NoopRawHistogramMetricV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22NoopRawHistogramMetricVACyxGycfc", + "mangledName": "$s11VideoSDKRTC22NoopRawHistogramMetricVACyxGycfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labelset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawHistogramMetric", + "printedName": "VideoSDKRTC.BoundRawHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "LabelSet", + "printedName": "VideoSDKRTC.LabelSet", + "usr": "s:11VideoSDKRTC8LabelSetC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopRawHistogramMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "mangledName": "$s11VideoSDKRTC22NoopRawHistogramMetricV4bind8labelsetAA05BounddeF0CyxGAA8LabelSetC_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bind", + "printedName": "bind(labels:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundRawHistogramMetric", + "printedName": "VideoSDKRTC.BoundRawHistogramMetric<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:11VideoSDKRTC23BoundRawHistogramMetricC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22NoopRawHistogramMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "mangledName": "$s11VideoSDKRTC22NoopRawHistogramMetricV4bind6labelsAA05BounddeF0CyxGSDyS2SG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22NoopRawHistogramMetricV", + "mangledName": "$s11VideoSDKRTC22NoopRawHistogramMetricV", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "RawHistogramMetric", + "printedName": "RawHistogramMetric", + "children": [ + { + "kind": "TypeWitness", + "name": "T", + "printedName": "T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:11VideoSDKRTC18RawHistogramMetricP", + "mangledName": "$s11VideoSDKRTC18RawHistogramMetricP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ReadableLogRecord", + "printedName": "ReadableLogRecord", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(resource:instrumentationScopeInfo:timestamp:observedTimestamp:spanContext:severity:body:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Severity?", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV8resource24instrumentationScopeInfo9timestamp17observedTimestamp11spanContext8severity4body10attributesAcA8ResourceV_AA015InstrumentationhI0V10Foundation4DateVARSgAA04SpanN0VSgAA8SeverityOSgSSSgSDySSAA14AttributeValueOGtcfc", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV8resource24instrumentationScopeInfo9timestamp17observedTimestamp11spanContext8severity4body10attributesAcA8ResourceV_AA015InstrumentationhI0V10Foundation4DateVARSgAA04SpanN0VSgAA8SeverityOSgSSSgSDySSAA14AttributeValueOGtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instrumentationScopeInfo", + "printedName": "instrumentationScopeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV24instrumentationScopeInfoAA015InstrumentationgH0Vvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV24instrumentationScopeInfoAA015InstrumentationgH0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV24instrumentationScopeInfoAA015InstrumentationgH0Vvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV24instrumentationScopeInfoAA015InstrumentationgH0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV9timestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV9timestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV9timestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV9timestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "observedTimestamp", + "printedName": "observedTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV17observedTimestamp10Foundation4DateVSgvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV17observedTimestamp10Foundation4DateVSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV17observedTimestamp10Foundation4DateVSgvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV17observedTimestamp10Foundation4DateVSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanContext", + "printedName": "spanContext", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV11spanContextAA04SpanG0VSgvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV11spanContextAA04SpanG0VSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV11spanContextAA04SpanG0VSgvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV11spanContextAA04SpanG0VSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "severity", + "printedName": "severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Severity?", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV8severityAA8SeverityOSgvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV8severityAA8SeverityOSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Severity?", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV8severityAA8SeverityOSgvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV8severityAA8SeverityOSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "body", + "printedName": "body", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV4bodySSSgvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV4bodySSSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV4bodySSSgvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV4bodySSSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV", + "mangledName": "$s11VideoSDKRTC17ReadableLogRecordV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ReadableSpan", + "printedName": "ReadableSpan", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ReadableSpanP4nameSSvp", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP4nameSSvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "overriding": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ReadableSpanP4nameSSvg", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP4nameSSvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReadableSpan>", + "sugared_genericSig": "", + "protocolReq": true, + "overriding": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ReadableSpanP4nameSSvs", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP4nameSSvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReadableSpan>", + "sugared_genericSig": "", + "protocolReq": true, + "overriding": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ReadableSpanP4nameSSvM", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP4nameSSvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReadableSpan>", + "sugared_genericSig": "", + "protocolReq": true, + "overriding": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "instrumentationScopeInfo", + "printedName": "instrumentationScopeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ReadableSpanP24instrumentationScopeInfoAA015InstrumentationfG0Vvp", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP24instrumentationScopeInfoAA015InstrumentationfG0Vvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ReadableSpanP24instrumentationScopeInfoAA015InstrumentationfG0Vvg", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP24instrumentationScopeInfoAA015InstrumentationfG0Vvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReadableSpan>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "toSpanData", + "printedName": "toSpanData()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12ReadableSpanP02toD4DataAA0dF0VyF", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP02toD4DataAA0dF0VyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReadableSpan>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hasEnded", + "printedName": "hasEnded", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ReadableSpanP8hasEndedSbvp", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP8hasEndedSbvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ReadableSpanP8hasEndedSbvg", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP8hasEndedSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReadableSpan>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "latency", + "printedName": "latency", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC12ReadableSpanP7latencySdvp", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP7latencySdvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC12ReadableSpanP7latencySdvg", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP7latencySdvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReadableSpan>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC12ReadableSpanP", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Span", + "printedName": "Span", + "usr": "s:11VideoSDKRTC4SpanP", + "mangledName": "$s11VideoSDKRTC4SpanP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "RecordEventsReadableSpan", + "printedName": "RecordEventsReadableSpan", + "children": [ + { + "kind": "Var", + "name": "isRecording", + "printedName": "isRecording", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvs", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvM", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC11isRecordingSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvs", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvM", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "spanLimits", + "printedName": "spanLimits", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC10spanLimitsAA0fH0Vvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC10spanLimitsAA0fH0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC10spanLimitsAA0fH0Vvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC10spanLimitsAA0fH0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "context", + "printedName": "context", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC7contextAA0F7ContextVvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC7contextAA0F7ContextVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC7contextAA0F7ContextVvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC7contextAA0F7ContextVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "parentContext", + "printedName": "parentContext", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC13parentContextAA0fH0VSgvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC13parentContextAA0fH0VSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC13parentContextAA0fH0VSgvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC13parentContextAA0fH0VSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasRemoteParent", + "printedName": "hasRemoteParent", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC15hasRemoteParentSbvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC15hasRemoteParentSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC15hasRemoteParentSbvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC15hasRemoteParentSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanProcessor", + "printedName": "spanProcessor", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC13spanProcessorAA0fH0_pvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC13spanProcessorAA0fH0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC13spanProcessorAA0fH0_pvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC13spanProcessorAA0fH0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "links", + "printedName": "links", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC5linksSayAA0F4DataV4LinkVGvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC5linksSayAA0F4DataV4LinkVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC5linksSayAA0F4DataV4LinkVGvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC5linksSayAA0F4DataV4LinkVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalRecordedLinks", + "printedName": "totalRecordedLinks", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC18totalRecordedLinksSivp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC18totalRecordedLinksSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC18totalRecordedLinksSivg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC18totalRecordedLinksSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxNumberOfAttributes", + "printedName": "maxNumberOfAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC21maxNumberOfAttributesSivp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC21maxNumberOfAttributesSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC21maxNumberOfAttributesSivg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC21maxNumberOfAttributesSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxNumberOfAttributesPerEvent", + "printedName": "maxNumberOfAttributesPerEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC29maxNumberOfAttributesPerEventSivp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC29maxNumberOfAttributesPerEventSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC29maxNumberOfAttributesPerEventSivg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC29maxNumberOfAttributesPerEventSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC4kindAA0F4KindOvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC4kindAA0F4KindOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC4kindAA0F4KindOvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC4kindAA0F4KindOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "clock", + "printedName": "clock", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC5clockAA5Clock_pvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC5clockAA5Clock_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC5clockAA5Clock_pvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC5clockAA5Clock_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instrumentationScopeInfo", + "printedName": "instrumentationScopeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC24instrumentationScopeInfoAA015InstrumentationhI0Vvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC24instrumentationScopeInfoAA015InstrumentationhI0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC24instrumentationScopeInfoAA015InstrumentationhI0Vvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC24instrumentationScopeInfoAA015InstrumentationhI0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "startTime", + "printedName": "startTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC9startTime10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC9startTime10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC9startTime10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC9startTime10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "events", + "printedName": "events", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC6eventsAA17ArrayWithCapacityVyAA0F4DataV5EventVGvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC6eventsAA17ArrayWithCapacityVyAA0F4DataV5EventVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayWithCapacity", + "printedName": "VideoSDKRTC.ArrayWithCapacity", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + } + ], + "usr": "s:11VideoSDKRTC17ArrayWithCapacityV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC6eventsAA17ArrayWithCapacityVyAA0F4DataV5EventVGvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC6eventsAA17ArrayWithCapacityVyAA0F4DataV5EventVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalAttributeCount", + "printedName": "totalAttributeCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC19totalAttributeCountSivp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC19totalAttributeCountSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC19totalAttributeCountSivg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC19totalAttributeCountSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalRecordedEvents", + "printedName": "totalRecordedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC013totalRecordedD0Sivp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC013totalRecordedD0Sivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC013totalRecordedD0Sivg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC013totalRecordedD0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvs", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvM", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC6statusAA6StatusOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "latency", + "printedName": "latency", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC7latencySdvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC7latencySdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC7latencySdvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC7latencySdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endTime", + "printedName": "endTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC7endTime10Foundation4DateVSgvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC7endTime10Foundation4DateVSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC7endTime10Foundation4DateVSgvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC7endTime10Foundation4DateVSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasEnded", + "printedName": "hasEnded", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8hasEndedSbvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8hasEndedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8hasEndedSbvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8hasEndedSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "startSpan", + "printedName": "startSpan(context:name:instrumentationScopeInfo:kind:parentContext:hasRemoteParent:spanLimits:spanProcessor:clock:resource:attributes:links:totalRecordedLinks:startTime:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RecordEventsReadableSpan", + "printedName": "VideoSDKRTC.RecordEventsReadableSpan", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "AttributesDictionary", + "printedName": "VideoSDKRTC.AttributesDictionary", + "usr": "s:11VideoSDKRTC20AttributesDictionaryV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC05startF07context4name24instrumentationScopeInfo4kind13parentContext15hasRemoteParent10spanLimits0S9Processor5clock8resource10attributes5links18totalRecordedLinks0G4TimeAcA0fO0V_SSAA015InstrumentationkL0VAA0F4KindOATSgSbAA0fT0VAA0fU0_pAA5Clock_pAA8ResourceVAA20AttributesDictionaryVSayAA0F4DataV4LinkVGSi10Foundation4DateVSgtFZ", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC05startF07context4name24instrumentationScopeInfo4kind13parentContext15hasRemoteParent10spanLimits0S9Processor5clock8resource10attributes5links18totalRecordedLinks0G4TimeAcA0fO0V_SSAA015InstrumentationkL0VAA0F4KindOATSgSbAA0fT0VAA0fU0_pAA5Clock_pAA8ResourceVAA20AttributesDictionaryVSayAA0F4DataV4LinkVGSi10Foundation4DateVSgtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toSpanData", + "printedName": "toSpanData()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC02toF4DataAA0fH0VyF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC02toF4DataAA0fH0VyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC12setAttribute3key5valueySS_AA0H5ValueOSgtF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC12setAttribute3key5valueySS_AA0H5ValueOSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4nameySS_tF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4nameySS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:timestamp:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4name9timestampySS_10Foundation4DateVtF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4name9timestampySS_10Foundation4DateVtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4name10attributesySS_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4name10attributesySS_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:attributes:timestamp:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4name10attributes9timestampySS_SDySSAA14AttributeValueOG10Foundation4DateVtF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC8addEvent4name10attributes9timestampySS_SDySSAA14AttributeValueOG10Foundation4DateVtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "end", + "printedName": "end()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC3endyyF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC3endyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "end", + "printedName": "end(time:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC3end4timey10Foundation4DateV_tF", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC3end4timey10Foundation4DateV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC24RecordEventsReadableSpanC", + "mangledName": "$s11VideoSDKRTC24RecordEventsReadableSpanC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ReadableSpan", + "printedName": "ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP", + "mangledName": "$s11VideoSDKRTC12ReadableSpanP" + }, + { + "kind": "Conformance", + "name": "Span", + "printedName": "Span", + "usr": "s:11VideoSDKRTC4SpanP", + "mangledName": "$s11VideoSDKRTC4SpanP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "RegisteredReader", + "printedName": "RegisteredReader", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16RegisteredReaderC2ids5Int32Vvp", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC2ids5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16RegisteredReaderC2ids5Int32Vvg", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC2ids5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "reader", + "printedName": "reader", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricReader", + "printedName": "VideoSDKRTC.StableMetricReader", + "usr": "s:11VideoSDKRTC18StableMetricReaderP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16RegisteredReaderC6readerAA012StableMetricD0_pvp", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC6readerAA012StableMetricD0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricReader", + "printedName": "VideoSDKRTC.StableMetricReader", + "usr": "s:11VideoSDKRTC18StableMetricReaderP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16RegisteredReaderC6readerAA012StableMetricD0_pvg", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC6readerAA012StableMetricD0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "registry", + "printedName": "registry", + "children": [ + { + "kind": "TypeNominal", + "name": "StableViewRegistry", + "printedName": "VideoSDKRTC.StableViewRegistry", + "usr": "s:11VideoSDKRTC18StableViewRegistryC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16RegisteredReaderC8registryAA18StableViewRegistryCvp", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC8registryAA18StableViewRegistryCvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableViewRegistry", + "printedName": "VideoSDKRTC.StableViewRegistry", + "usr": "s:11VideoSDKRTC18StableViewRegistryC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16RegisteredReaderC8registryAA18StableViewRegistryCvg", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC8registryAA18StableViewRegistryCvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastCollectedEpochNanos", + "printedName": "lastCollectedEpochNanos", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64VvM", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC23lastCollectedEpochNanoss6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16RegisteredReaderC4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "RegisteredReader", + "printedName": "VideoSDKRTC.RegisteredReader", + "usr": "s:11VideoSDKRTC16RegisteredReaderC" + }, + { + "kind": "TypeNominal", + "name": "RegisteredReader", + "printedName": "VideoSDKRTC.RegisteredReader", + "usr": "s:11VideoSDKRTC16RegisteredReaderC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16RegisteredReaderC2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16RegisteredReaderC9hashValueSivp", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16RegisteredReaderC9hashValueSivg", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16RegisteredReaderC", + "mangledName": "$s11VideoSDKRTC16RegisteredReaderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "RegisteredView", + "printedName": "RegisteredView", + "children": [ + { + "kind": "Var", + "name": "selector", + "printedName": "selector", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentSelector", + "printedName": "VideoSDKRTC.InstrumentSelector", + "usr": "s:11VideoSDKRTC18InstrumentSelectorC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14RegisteredViewC8selectorAA18InstrumentSelectorCvp", + "mangledName": "$s11VideoSDKRTC14RegisteredViewC8selectorAA18InstrumentSelectorCvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentSelector", + "printedName": "VideoSDKRTC.InstrumentSelector", + "usr": "s:11VideoSDKRTC18InstrumentSelectorC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14RegisteredViewC8selectorAA18InstrumentSelectorCvg", + "mangledName": "$s11VideoSDKRTC14RegisteredViewC8selectorAA18InstrumentSelectorCvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "view", + "printedName": "view", + "children": [ + { + "kind": "TypeNominal", + "name": "StableView", + "printedName": "VideoSDKRTC.StableView", + "usr": "s:11VideoSDKRTC10StableViewC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14RegisteredViewC4viewAA06StableD0Cvp", + "mangledName": "$s11VideoSDKRTC14RegisteredViewC4viewAA06StableD0Cvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableView", + "printedName": "VideoSDKRTC.StableView", + "usr": "s:11VideoSDKRTC10StableViewC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14RegisteredViewC4viewAA06StableD0Cvg", + "mangledName": "$s11VideoSDKRTC14RegisteredViewC4viewAA06StableD0Cvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributeProcessor", + "printedName": "attributeProcessor", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14RegisteredViewC18attributeProcessorAA09AttributeF0Cvp", + "mangledName": "$s11VideoSDKRTC14RegisteredViewC18attributeProcessorAA09AttributeF0Cvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14RegisteredViewC18attributeProcessorAA09AttributeF0Cvg", + "mangledName": "$s11VideoSDKRTC14RegisteredViewC18attributeProcessorAA09AttributeF0Cvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC14RegisteredViewC", + "mangledName": "$s11VideoSDKRTC14RegisteredViewC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ReservoirCell", + "printedName": "ReservoirCell", + "declKind": "Class", + "usr": "s:11VideoSDKRTC13ReservoirCellC", + "mangledName": "$s11VideoSDKRTC13ReservoirCellC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ReservoirCellSelector", + "printedName": "ReservoirCellSelector", + "children": [ + { + "kind": "Function", + "name": "reservoirCellIndex", + "printedName": "reservoirCellIndex(for:value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReservoirCell]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReservoirCell", + "printedName": "VideoSDKRTC.ReservoirCell", + "usr": "s:11VideoSDKRTC13ReservoirCellC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21ReservoirCellSelectorP09reservoirD5Index3for5value10attributesSiSayAA0cD0CG_SiSDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC21ReservoirCellSelectorP09reservoirD5Index3for5value10attributesSiSayAA0cD0CG_SiSDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReservoirCellSelector>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reservoirCellIndex", + "printedName": "reservoirCellIndex(for:value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ReservoirCell]", + "children": [ + { + "kind": "TypeNominal", + "name": "ReservoirCell", + "printedName": "VideoSDKRTC.ReservoirCell", + "usr": "s:11VideoSDKRTC13ReservoirCellC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21ReservoirCellSelectorP09reservoirD5Index3for5value10attributesSiSayAA0cD0CG_SdSDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC21ReservoirCellSelectorP09reservoirD5Index3for5value10attributesSiSayAA0cD0CG_SdSDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReservoirCellSelector>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21ReservoirCellSelectorP5resetyyF", + "mangledName": "$s11VideoSDKRTC21ReservoirCellSelectorP5resetyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ReservoirCellSelector>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC21ReservoirCellSelectorP", + "mangledName": "$s11VideoSDKRTC21ReservoirCellSelectorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Resource", + "printedName": "Resource", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvs", + "mangledName": "$s11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvM", + "mangledName": "$s11VideoSDKRTC8ResourceV10attributesSDySSAA14AttributeValueOGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8ResourceVACycfc", + "mangledName": "$s11VideoSDKRTC8ResourceVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8ResourceV10attributesACSDySSAA14AttributeValueOG_tcfc", + "mangledName": "$s11VideoSDKRTC8ResourceV10attributesACSDySSAA14AttributeValueOG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "merge", + "printedName": "merge(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8ResourceV5merge5otheryAC_tF", + "mangledName": "$s11VideoSDKRTC8ResourceV5merge5otheryAC_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "merging", + "printedName": "merging(other:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8ResourceV7merging5otherA2C_tF", + "mangledName": "$s11VideoSDKRTC8ResourceV7merging5otherA2C_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8ResourceV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC8ResourceV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8ResourceV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC8ResourceV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8ResourceV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC8ResourceV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8ResourceV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC8ResourceV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8ResourceV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC8ResourceV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8ResourceV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC8ResourceV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC8ResourceV", + "mangledName": "$s11VideoSDKRTC8ResourceV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "Opentelemetry_Proto_Resource_V1_Resource", + "children": [ + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedAttributesCount", + "printedName": "droppedAttributesCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V22droppedAttributesCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0VACycfc", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0VACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V9hashValueSivp", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V9hashValueSivg", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V", + "mangledName": "$s11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ResourceAdapter", + "printedName": "ResourceAdapter", + "children": [ + { + "kind": "Function", + "name": "toProtoResource", + "printedName": "toProtoResource(resource:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ResourceAdapterV07toProtoC08resourceAA014Opentelemetry_f1_c4_V1_C0VAA0C0V_tFZ", + "mangledName": "$s11VideoSDKRTC15ResourceAdapterV07toProtoC08resourceAA014Opentelemetry_f1_c4_V1_C0VAA0C0V_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC15ResourceAdapterV", + "mangledName": "$s11VideoSDKRTC15ResourceAdapterV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ResourceAttributes", + "printedName": "ResourceAttributes", + "children": [ + { + "kind": "Var", + "name": "browserBrands", + "printedName": "browserBrands", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13browserBrandsyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13browserBrandsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "browserPlatform", + "printedName": "browserPlatform", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO15browserPlatformyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO15browserPlatformyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "browserMobile", + "printedName": "browserMobile", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13browserMobileyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13browserMobileyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "browserLanguage", + "printedName": "browserLanguage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO15browserLanguageyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO15browserLanguageyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userAgentOriginal", + "printedName": "userAgentOriginal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO17userAgentOriginalyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO17userAgentOriginalyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudProvider", + "printedName": "cloudProvider", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13cloudProvideryA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13cloudProvideryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudAccountId", + "printedName": "cloudAccountId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14cloudAccountIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14cloudAccountIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudRegion", + "printedName": "cloudRegion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO11cloudRegionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO11cloudRegionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudResourceId", + "printedName": "cloudResourceId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO05cloudC2IdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO05cloudC2IdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudAvailabilityZone", + "printedName": "cloudAvailabilityZone", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO21cloudAvailabilityZoneyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO21cloudAvailabilityZoneyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudPlatform", + "printedName": "cloudPlatform", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13cloudPlatformyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13cloudPlatformyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsEcsContainerArn", + "printedName": "awsEcsContainerArn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18awsEcsContainerArnyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18awsEcsContainerArnyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsEcsClusterArn", + "printedName": "awsEcsClusterArn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16awsEcsClusterArnyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16awsEcsClusterArnyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsEcsLaunchtype", + "printedName": "awsEcsLaunchtype", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16awsEcsLaunchtypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16awsEcsLaunchtypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsEcsTaskArn", + "printedName": "awsEcsTaskArn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13awsEcsTaskArnyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13awsEcsTaskArnyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsEcsTaskFamily", + "printedName": "awsEcsTaskFamily", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16awsEcsTaskFamilyyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16awsEcsTaskFamilyyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsEcsTaskRevision", + "printedName": "awsEcsTaskRevision", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18awsEcsTaskRevisionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18awsEcsTaskRevisionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsEksClusterArn", + "printedName": "awsEksClusterArn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16awsEksClusterArnyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16awsEksClusterArnyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsLogGroupNames", + "printedName": "awsLogGroupNames", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16awsLogGroupNamesyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16awsLogGroupNamesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsLogGroupArns", + "printedName": "awsLogGroupArns", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO15awsLogGroupArnsyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO15awsLogGroupArnsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsLogStreamNames", + "printedName": "awsLogStreamNames", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO17awsLogStreamNamesyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO17awsLogStreamNamesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsLogStreamArns", + "printedName": "awsLogStreamArns", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16awsLogStreamArnsyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16awsLogStreamArnsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "herokuReleaseCreationTimestamp", + "printedName": "herokuReleaseCreationTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO30herokuReleaseCreationTimestampyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO30herokuReleaseCreationTimestampyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "herokuReleaseCommit", + "printedName": "herokuReleaseCommit", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19herokuReleaseCommityA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19herokuReleaseCommityA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "herokuAppId", + "printedName": "herokuAppId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO11herokuAppIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO11herokuAppIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "containerName", + "printedName": "containerName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13containerNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13containerNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "containerId", + "printedName": "containerId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO11containerIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO11containerIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "containerRuntime", + "printedName": "containerRuntime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16containerRuntimeyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16containerRuntimeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "containerImageName", + "printedName": "containerImageName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18containerImageNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18containerImageNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "containerImageTag", + "printedName": "containerImageTag", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO17containerImageTagyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO17containerImageTagyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "deploymentEnvironment", + "printedName": "deploymentEnvironment", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO21deploymentEnvironmentyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO21deploymentEnvironmentyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "deviceId", + "printedName": "deviceId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8deviceIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8deviceIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "deviceModelIdentifier", + "printedName": "deviceModelIdentifier", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO21deviceModelIdentifieryA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO21deviceModelIdentifieryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "deviceModelName", + "printedName": "deviceModelName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO15deviceModelNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO15deviceModelNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "deviceManufacturer", + "printedName": "deviceManufacturer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18deviceManufactureryA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18deviceManufactureryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasName", + "printedName": "faasName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8faasNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8faasNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasVersion", + "printedName": "faasVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO11faasVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO11faasVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasInstance", + "printedName": "faasInstance", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12faasInstanceyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12faasInstanceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasMaxMemory", + "printedName": "faasMaxMemory", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13faasMaxMemoryyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13faasMaxMemoryyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hostId", + "printedName": "hostId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO6hostIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO6hostIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hostName", + "printedName": "hostName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8hostNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8hostNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hostType", + "printedName": "hostType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8hostTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8hostTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hostArch", + "printedName": "hostArch", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8hostArchyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8hostArchyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hostImageName", + "printedName": "hostImageName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13hostImageNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13hostImageNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hostImageId", + "printedName": "hostImageId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO11hostImageIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO11hostImageIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "hostImageVersion", + "printedName": "hostImageVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16hostImageVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16hostImageVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sClusterName", + "printedName": "k8sClusterName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14k8sClusterNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14k8sClusterNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sNodeName", + "printedName": "k8sNodeName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO11k8sNodeNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO11k8sNodeNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sNodeUid", + "printedName": "k8sNodeUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO10k8sNodeUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO10k8sNodeUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sNamespaceName", + "printedName": "k8sNamespaceName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16k8sNamespaceNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16k8sNamespaceNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sPodUid", + "printedName": "k8sPodUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO9k8sPodUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO9k8sPodUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sPodName", + "printedName": "k8sPodName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO10k8sPodNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO10k8sPodNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sContainerName", + "printedName": "k8sContainerName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16k8sContainerNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16k8sContainerNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sContainerRestartCount", + "printedName": "k8sContainerRestartCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO24k8sContainerRestartCountyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO24k8sContainerRestartCountyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sReplicasetUid", + "printedName": "k8sReplicasetUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16k8sReplicasetUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16k8sReplicasetUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sReplicasetName", + "printedName": "k8sReplicasetName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO17k8sReplicasetNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO17k8sReplicasetNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sDeploymentUid", + "printedName": "k8sDeploymentUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16k8sDeploymentUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16k8sDeploymentUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sDeploymentName", + "printedName": "k8sDeploymentName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO17k8sDeploymentNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO17k8sDeploymentNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sStatefulsetUid", + "printedName": "k8sStatefulsetUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO17k8sStatefulsetUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO17k8sStatefulsetUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sStatefulsetName", + "printedName": "k8sStatefulsetName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18k8sStatefulsetNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18k8sStatefulsetNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sDaemonsetUid", + "printedName": "k8sDaemonsetUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO15k8sDaemonsetUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO15k8sDaemonsetUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sDaemonsetName", + "printedName": "k8sDaemonsetName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16k8sDaemonsetNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16k8sDaemonsetNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sJobUid", + "printedName": "k8sJobUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO9k8sJobUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO9k8sJobUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sJobName", + "printedName": "k8sJobName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO10k8sJobNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO10k8sJobNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sCronjobUid", + "printedName": "k8sCronjobUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13k8sCronjobUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13k8sCronjobUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "k8sCronjobName", + "printedName": "k8sCronjobName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14k8sCronjobNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14k8sCronjobNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "osType", + "printedName": "osType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO6osTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO6osTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "osDescription", + "printedName": "osDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13osDescriptionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13osDescriptionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "osName", + "printedName": "osName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO6osNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO6osNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "osVersion", + "printedName": "osVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO9osVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO9osVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processPid", + "printedName": "processPid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO10processPidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO10processPidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processParentPid", + "printedName": "processParentPid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16processParentPidyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16processParentPidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processExecutableName", + "printedName": "processExecutableName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO21processExecutableNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO21processExecutableNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processExecutablePath", + "printedName": "processExecutablePath", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO21processExecutablePathyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO21processExecutablePathyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processCommand", + "printedName": "processCommand", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14processCommandyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14processCommandyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processCommandLine", + "printedName": "processCommandLine", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18processCommandLineyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18processCommandLineyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processCommandArgs", + "printedName": "processCommandArgs", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18processCommandArgsyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18processCommandArgsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processOwner", + "printedName": "processOwner", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12processOwneryA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12processOwneryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processRuntimeName", + "printedName": "processRuntimeName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18processRuntimeNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18processRuntimeNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processRuntimeVersion", + "printedName": "processRuntimeVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO21processRuntimeVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO21processRuntimeVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "processRuntimeDescription", + "printedName": "processRuntimeDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO25processRuntimeDescriptionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO25processRuntimeDescriptionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "serviceName", + "printedName": "serviceName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO11serviceNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO11serviceNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "serviceNamespace", + "printedName": "serviceNamespace", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16serviceNamespaceyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16serviceNamespaceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "serviceInstanceId", + "printedName": "serviceInstanceId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO17serviceInstanceIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO17serviceInstanceIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "serviceVersion", + "printedName": "serviceVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14serviceVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14serviceVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "telemetrySdkName", + "printedName": "telemetrySdkName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16telemetrySdkNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16telemetrySdkNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "telemetrySdkLanguage", + "printedName": "telemetrySdkLanguage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO20telemetrySdkLanguageyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO20telemetrySdkLanguageyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "telemetrySdkVersion", + "printedName": "telemetrySdkVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19telemetrySdkVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19telemetrySdkVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "telemetryAutoVersion", + "printedName": "telemetryAutoVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO20telemetryAutoVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO20telemetryAutoVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "webengineName", + "printedName": "webengineName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13webengineNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13webengineNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "webengineVersion", + "printedName": "webengineVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16webengineVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16webengineVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "webengineDescription", + "printedName": "webengineDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO20webengineDescriptionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO20webengineDescriptionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "otelScopeName", + "printedName": "otelScopeName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO13otelScopeNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO13otelScopeNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "otelScopeVersion", + "printedName": "otelScopeVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO16otelScopeVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO16otelScopeVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "otelLibraryName", + "printedName": "otelLibraryName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO15otelLibraryNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO15otelLibraryNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "otelLibraryVersion", + "printedName": "otelLibraryVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.Type) -> VideoSDKRTC.ResourceAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO18otelLibraryVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO18otelLibraryVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CloudProviderValues", + "printedName": "CloudProviderValues", + "children": [ + { + "kind": "Var", + "name": "alibabaCloud", + "printedName": "alibabaCloud", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07alibabaE0AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07alibabaE0AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07alibabaE0AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07alibabaE0AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aws", + "printedName": "aws", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3awsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3awsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3awsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3awsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azure", + "printedName": "azure", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV5azureAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV5azureAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV5azureAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV5azureAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcp", + "printedName": "gcp", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3gcpAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3gcpAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3gcpAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV3gcpAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "heroku", + "printedName": "heroku", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV6herokuAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV6herokuAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV6herokuAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV6herokuAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ibmCloud", + "printedName": "ibmCloud", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV03ibmE0AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV03ibmE0AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV03ibmE0AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV03ibmE0AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tencentCloud", + "printedName": "tencentCloud", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07tencentE0AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07tencentE0AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07tencentE0AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV07tencentE0AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudProviderValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudProviderValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudProviderValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CloudPlatformValues", + "printedName": "CloudPlatformValues", + "children": [ + { + "kind": "Var", + "name": "alibabaCloudEcs", + "printedName": "alibabaCloudEcs", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE3EcsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE3EcsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE3EcsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE3EcsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "alibabaCloudFc", + "printedName": "alibabaCloudFc", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE2FcAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE2FcAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE2FcAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE2FcAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "alibabaCloudOpenshift", + "printedName": "alibabaCloudOpenshift", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE9OpenshiftAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE9OpenshiftAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE9OpenshiftAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07alibabaE9OpenshiftAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awsEc2", + "printedName": "awsEc2", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEc2AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEc2AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEc2AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEc2AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awsEcs", + "printedName": "awsEcs", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEcsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEcsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEcsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEcsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awsEks", + "printedName": "awsEks", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEksAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEksAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEksAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV6awsEksAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awsLambda", + "printedName": "awsLambda", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV9awsLambdaAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV9awsLambdaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV9awsLambdaAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV9awsLambdaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awsElasticBeanstalk", + "printedName": "awsElasticBeanstalk", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19awsElasticBeanstalkAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19awsElasticBeanstalkAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19awsElasticBeanstalkAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19awsElasticBeanstalkAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awsAppRunner", + "printedName": "awsAppRunner", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsAppRunnerAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsAppRunnerAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsAppRunnerAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsAppRunnerAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awsOpenshift", + "printedName": "awsOpenshift", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsOpenshiftAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsOpenshiftAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsOpenshiftAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12awsOpenshiftAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azureVm", + "printedName": "azureVm", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV7azureVmAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV7azureVmAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV7azureVmAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV7azureVmAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azureContainerInstances", + "printedName": "azureContainerInstances", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV23azureContainerInstancesAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV23azureContainerInstancesAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV23azureContainerInstancesAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV23azureContainerInstancesAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azureAks", + "printedName": "azureAks", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV8azureAksAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV8azureAksAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV8azureAksAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV8azureAksAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azureFunctions", + "printedName": "azureFunctions", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureFunctionsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureFunctionsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureFunctionsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureFunctionsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azureAppService", + "printedName": "azureAppService", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV15azureAppServiceAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV15azureAppServiceAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV15azureAppServiceAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV15azureAppServiceAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azureOpenshift", + "printedName": "azureOpenshift", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureOpenshiftAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureOpenshiftAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureOpenshiftAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV14azureOpenshiftAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcpComputeEngine", + "printedName": "gcpComputeEngine", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV16gcpComputeEngineAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV16gcpComputeEngineAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV16gcpComputeEngineAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV16gcpComputeEngineAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcpCloudRun", + "printedName": "gcpCloudRun", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE3RunAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE3RunAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE3RunAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE3RunAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcpKubernetesEngine", + "printedName": "gcpKubernetesEngine", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19gcpKubernetesEngineAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19gcpKubernetesEngineAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19gcpKubernetesEngineAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV19gcpKubernetesEngineAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcpCloudFunctions", + "printedName": "gcpCloudFunctions", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE9FunctionsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE9FunctionsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE9FunctionsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03gcpE9FunctionsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcpAppEngine", + "printedName": "gcpAppEngine", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpAppEngineAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpAppEngineAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpAppEngineAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpAppEngineAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcpOpenshift", + "printedName": "gcpOpenshift", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpOpenshiftAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpOpenshiftAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpOpenshiftAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV12gcpOpenshiftAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ibmCloudOpenshift", + "printedName": "ibmCloudOpenshift", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03ibmE9OpenshiftAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03ibmE9OpenshiftAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03ibmE9OpenshiftAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV03ibmE9OpenshiftAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tencentCloudCvm", + "printedName": "tencentCloudCvm", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3CvmAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3CvmAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3CvmAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3CvmAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tencentCloudEks", + "printedName": "tencentCloudEks", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3EksAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3EksAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3EksAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3EksAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tencentCloudScf", + "printedName": "tencentCloudScf", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3ScfAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3ScfAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3ScfAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV07tencentE3ScfAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CloudPlatformValues", + "printedName": "VideoSDKRTC.ResourceAttributes.CloudPlatformValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO19CloudPlatformValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AwsEcsLaunchtypeValues", + "printedName": "AwsEcsLaunchtypeValues", + "children": [ + { + "kind": "Var", + "name": "ec2", + "printedName": "ec2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues.Type) -> VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "AwsEcsLaunchtypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AwsEcsLaunchtypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO3ec2yA2EmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO3ec2yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fargate", + "printedName": "fargate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues.Type) -> VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "AwsEcsLaunchtypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AwsEcsLaunchtypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO7fargateyA2EmF", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO7fargateyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "AwsEcsLaunchtypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO22AwsEcsLaunchtypeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "HostArchValues", + "printedName": "HostArchValues", + "children": [ + { + "kind": "Var", + "name": "amd64", + "printedName": "amd64", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5amd64AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5amd64AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5amd64AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5amd64AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "arm32", + "printedName": "arm32", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm32AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm32AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm32AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm32AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "arm64", + "printedName": "arm64", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm64AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm64AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm64AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5arm64AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ia64", + "printedName": "ia64", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV4ia64AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV4ia64AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV4ia64AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV4ia64AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ppc32", + "printedName": "ppc32", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc32AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc32AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc32AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc32AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ppc64", + "printedName": "ppc64", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc64AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc64AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc64AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5ppc64AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "s390x", + "printedName": "s390x", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5s390xAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5s390xAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5s390xAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV5s390xAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "x86", + "printedName": "x86", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV3x86AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV3x86AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV3x86AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV3x86AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HostArchValues", + "printedName": "VideoSDKRTC.ResourceAttributes.HostArchValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18ResourceAttributesO14HostArchValuesV", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO14HostArchValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OsTypeValues", + "printedName": "OsTypeValues", + "children": [ + { + "kind": "Var", + "name": "windows", + "printedName": "windows", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7windowsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7windowsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7windowsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7windowsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "linux", + "printedName": "linux", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV5linuxAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV5linuxAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV5linuxAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV5linuxAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "darwin", + "printedName": "darwin", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6darwinAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6darwinAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6darwinAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6darwinAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "freebsd", + "printedName": "freebsd", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7freebsdAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7freebsdAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7freebsdAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7freebsdAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "netbsd", + "printedName": "netbsd", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6netbsdAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6netbsdAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6netbsdAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV6netbsdAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "openbsd", + "printedName": "openbsd", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7openbsdAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7openbsdAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7openbsdAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7openbsdAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dragonflybsd", + "printedName": "dragonflybsd", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV12dragonflybsdAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV12dragonflybsdAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV12dragonflybsdAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV12dragonflybsdAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hpux", + "printedName": "hpux", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV4hpuxAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV4hpuxAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV4hpuxAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV4hpuxAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aix", + "printedName": "aix", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV3aixAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV3aixAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV3aixAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV3aixAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "solaris", + "printedName": "solaris", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7solarisAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7solarisAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7solarisAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV7solarisAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "zOs", + "printedName": "zOs", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV01zE0AEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV01zE0AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV01zE0AEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV01zE0AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OsTypeValues", + "printedName": "VideoSDKRTC.ResourceAttributes.OsTypeValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO12OsTypeValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TelemetrySdkLanguageValues", + "printedName": "TelemetrySdkLanguageValues", + "children": [ + { + "kind": "Var", + "name": "cpp", + "printedName": "cpp", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3cppAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3cppAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3cppAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3cppAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dotnet", + "printedName": "dotnet", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6dotnetAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6dotnetAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6dotnetAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6dotnetAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "erlang", + "printedName": "erlang", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6erlangAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6erlangAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6erlangAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6erlangAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "go", + "printedName": "go", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV2goAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV2goAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV2goAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV2goAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "java", + "printedName": "java", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4javaAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4javaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4javaAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4javaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nodejs", + "printedName": "nodejs", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6nodejsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6nodejsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6nodejsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6nodejsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "php", + "printedName": "php", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3phpAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3phpAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3phpAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV3phpAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "python", + "printedName": "python", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6pythonAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6pythonAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6pythonAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV6pythonAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ruby", + "printedName": "ruby", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4rubyAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4rubyAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4rubyAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV4rubyAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "webjs", + "printedName": "webjs", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5webjsAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5webjsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5webjsAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5webjsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "swift", + "printedName": "swift", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5swiftAEvpZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5swiftAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5swiftAEvgZ", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV5swiftAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TelemetrySdkLanguageValues", + "printedName": "VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO26TelemetrySdkLanguageValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ResourceAttributes?", + "children": [ + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18ResourceAttributesO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18ResourceAttributesO", + "mangledName": "$s11VideoSDKRTC18ResourceAttributesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC2eeoiySbAA18ResourceAttributesO_SStF", + "mangledName": "$s11VideoSDKRTC2eeoiySbAA18ResourceAttributesO_SStF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ResourceAttributes", + "printedName": "VideoSDKRTC.ResourceAttributes", + "usr": "s:11VideoSDKRTC18ResourceAttributesO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC2eeoiySbSS_AA18ResourceAttributesOtF", + "mangledName": "$s11VideoSDKRTC2eeoiySbSS_AA18ResourceAttributesOtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Mediasoup", + "printedName": "Mediasoup", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Mediasoup", + "printedName": "Mediasoup", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Sampler", + "printedName": "Sampler", + "children": [ + { + "kind": "Function", + "name": "shouldSample", + "printedName": "shouldSample(parentContext:traceId:name:kind:attributes:parentLinks:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Decision", + "printedName": "VideoSDKRTC.Decision", + "usr": "s:11VideoSDKRTC8DecisionP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7SamplerP12shouldSample13parentContext7traceId4name4kind10attributes0F5LinksAA8Decision_pAA04SpanG0VSg_AA05TraceI0VSSAA0O4KindOSDySSAA14AttributeValueOGSayAA0O4DataV4LinkVGtF", + "mangledName": "$s11VideoSDKRTC7SamplerP12shouldSample13parentContext7traceId4name4kind10attributes0F5LinksAA8Decision_pAA04SpanG0VSg_AA05TraceI0VSSAA0O4KindOSDySSAA14AttributeValueOGSayAA0O4DataV4LinkVGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Sampler>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC7SamplerP", + "mangledName": "$s11VideoSDKRTC7SamplerP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject, τ_0_0 : Swift.CustomStringConvertible>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Decision", + "printedName": "Decision", + "children": [ + { + "kind": "Var", + "name": "isSampled", + "printedName": "isSampled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8DecisionP9isSampledSbvp", + "mangledName": "$s11VideoSDKRTC8DecisionP9isSampledSbvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8DecisionP9isSampledSbvg", + "mangledName": "$s11VideoSDKRTC8DecisionP9isSampledSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Decision>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8DecisionP10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC8DecisionP10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8DecisionP10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC8DecisionP10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Decision>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC8DecisionP", + "mangledName": "$s11VideoSDKRTC8DecisionP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Samplers", + "printedName": "Samplers", + "children": [ + { + "kind": "Var", + "name": "alwaysOn", + "printedName": "alwaysOn", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvpZ", + "mangledName": "$s11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvgZ", + "mangledName": "$s11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvsZ", + "mangledName": "$s11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvMZ", + "mangledName": "$s11VideoSDKRTC8SamplersO8alwaysOnAA7Sampler_pvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "alwaysOff", + "printedName": "alwaysOff", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvpZ", + "mangledName": "$s11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvgZ", + "mangledName": "$s11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvsZ", + "mangledName": "$s11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvMZ", + "mangledName": "$s11VideoSDKRTC8SamplersO9alwaysOffAA7Sampler_pvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "traceIdRatio", + "printedName": "traceIdRatio(ratio:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SamplersO12traceIdRatio5ratioAA7Sampler_pSd_tFZ", + "mangledName": "$s11VideoSDKRTC8SamplersO12traceIdRatio5ratioAA7Sampler_pSd_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parentBased", + "printedName": "parentBased(root:remoteParentSampled:remoteParentNotSampled:localParentSampled:localParentNotSampled:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + }, + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Sampler?", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Sampler?", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Sampler?", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Sampler?", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SamplersO11parentBased4root19remoteParentSampled0gh3NotI005localhI00khjI0AA7Sampler_pAaJ_p_AaJ_pSgA3KtFZ", + "mangledName": "$s11VideoSDKRTC8SamplersO11parentBased4root19remoteParentSampled0gh3NotI005localhI00khjI0AA7Sampler_pAaJ_p_AaJ_pSgA3KtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC8SamplersO", + "mangledName": "$s11VideoSDKRTC8SamplersO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SemanticAttributes", + "printedName": "SemanticAttributes", + "children": [ + { + "kind": "Var", + "name": "exceptionType", + "printedName": "exceptionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO13exceptionTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO13exceptionTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "exceptionMessage", + "printedName": "exceptionMessage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16exceptionMessageyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16exceptionMessageyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "exceptionStacktrace", + "printedName": "exceptionStacktrace", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19exceptionStacktraceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19exceptionStacktraceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpMethod", + "printedName": "httpMethod", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10httpMethodyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10httpMethodyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpStatusCode", + "printedName": "httpStatusCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14httpStatusCodeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14httpStatusCodeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netProtocolName", + "printedName": "netProtocolName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15netProtocolNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15netProtocolNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netProtocolVersion", + "printedName": "netProtocolVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18netProtocolVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18netProtocolVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netPeerName", + "printedName": "netPeerName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11netPeerNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11netPeerNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netPeerPort", + "printedName": "netPeerPort", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11netPeerPortyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11netPeerPortyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpScheme", + "printedName": "httpScheme", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10httpSchemeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10httpSchemeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpRoute", + "printedName": "httpRoute", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO9httpRouteyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO9httpRouteyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostName", + "printedName": "netHostName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11netHostNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11netHostNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostPort", + "printedName": "netHostPort", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11netHostPortyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11netHostPortyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO9eventNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO9eventNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "eventDomain", + "printedName": "eventDomain", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11eventDomainyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11eventDomainyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "logRecordUid", + "printedName": "logRecordUid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO12logRecordUidyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO12logRecordUidyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "featureFlagKey", + "printedName": "featureFlagKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14featureFlagKeyyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14featureFlagKeyyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "featureFlagProviderName", + "printedName": "featureFlagProviderName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23featureFlagProviderNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23featureFlagProviderNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "featureFlagVariant", + "printedName": "featureFlagVariant", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18featureFlagVariantyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18featureFlagVariantyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsLambdaInvokedArn", + "printedName": "awsLambdaInvokedArn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19awsLambdaInvokedArnyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19awsLambdaInvokedArnyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudeventsEventId", + "printedName": "cloudeventsEventId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18cloudeventsEventIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18cloudeventsEventIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudeventsEventSource", + "printedName": "cloudeventsEventSource", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO22cloudeventsEventSourceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO22cloudeventsEventSourceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudeventsEventSpecVersion", + "printedName": "cloudeventsEventSpecVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27cloudeventsEventSpecVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27cloudeventsEventSpecVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudeventsEventType", + "printedName": "cloudeventsEventType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20cloudeventsEventTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20cloudeventsEventTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudeventsEventSubject", + "printedName": "cloudeventsEventSubject", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23cloudeventsEventSubjectyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23cloudeventsEventSubjectyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "opentracingRefType", + "printedName": "opentracingRefType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18opentracingRefTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18opentracingRefTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbSystem", + "printedName": "dbSystem", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8dbSystemyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8dbSystemyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbConnectionString", + "printedName": "dbConnectionString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18dbConnectionStringyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18dbConnectionStringyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbUser", + "printedName": "dbUser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO6dbUseryA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO6dbUseryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbJdbcDriverClassname", + "printedName": "dbJdbcDriverClassname", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21dbJdbcDriverClassnameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21dbJdbcDriverClassnameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbName", + "printedName": "dbName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO6dbNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO6dbNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbStatement", + "printedName": "dbStatement", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11dbStatementyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11dbStatementyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbOperation", + "printedName": "dbOperation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11dbOperationyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11dbOperationyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netSockPeerAddr", + "printedName": "netSockPeerAddr", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15netSockPeerAddryA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15netSockPeerAddryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netSockPeerPort", + "printedName": "netSockPeerPort", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15netSockPeerPortyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15netSockPeerPortyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netSockFamily", + "printedName": "netSockFamily", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO13netSockFamilyyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO13netSockFamilyyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netSockPeerName", + "printedName": "netSockPeerName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15netSockPeerNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15netSockPeerNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netTransport", + "printedName": "netTransport", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO12netTransportyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO12netTransportyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbMssqlInstanceName", + "printedName": "dbMssqlInstanceName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19dbMssqlInstanceNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19dbMssqlInstanceNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCassandraPageSize", + "printedName": "dbCassandraPageSize", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19dbCassandraPageSizeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19dbCassandraPageSizeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCassandraConsistencyLevel", + "printedName": "dbCassandraConsistencyLevel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27dbCassandraConsistencyLevelyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27dbCassandraConsistencyLevelyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCassandraTable", + "printedName": "dbCassandraTable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16dbCassandraTableyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16dbCassandraTableyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCassandraIdempotence", + "printedName": "dbCassandraIdempotence", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO22dbCassandraIdempotenceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO22dbCassandraIdempotenceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCassandraSpeculativeExecutionCount", + "printedName": "dbCassandraSpeculativeExecutionCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO36dbCassandraSpeculativeExecutionCountyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO36dbCassandraSpeculativeExecutionCountyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCassandraCoordinatorId", + "printedName": "dbCassandraCoordinatorId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24dbCassandraCoordinatorIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24dbCassandraCoordinatorIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCassandraCoordinatorDc", + "printedName": "dbCassandraCoordinatorDc", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24dbCassandraCoordinatorDcyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24dbCassandraCoordinatorDcyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbRedisDatabaseIndex", + "printedName": "dbRedisDatabaseIndex", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20dbRedisDatabaseIndexyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20dbRedisDatabaseIndexyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbMongodbCollection", + "printedName": "dbMongodbCollection", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19dbMongodbCollectionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19dbMongodbCollectionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbSqlTable", + "printedName": "dbSqlTable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10dbSqlTableyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10dbSqlTableyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbClientId", + "printedName": "dbCosmosdbClientId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18dbCosmosdbClientIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18dbCosmosdbClientIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbOperationType", + "printedName": "dbCosmosdbOperationType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23dbCosmosdbOperationTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23dbCosmosdbOperationTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userAgentOriginal", + "printedName": "userAgentOriginal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17userAgentOriginalyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17userAgentOriginalyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbConnectionMode", + "printedName": "dbCosmosdbConnectionMode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24dbCosmosdbConnectionModeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24dbCosmosdbConnectionModeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbContainer", + "printedName": "dbCosmosdbContainer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19dbCosmosdbContaineryA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19dbCosmosdbContaineryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbRequestContentLength", + "printedName": "dbCosmosdbRequestContentLength", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30dbCosmosdbRequestContentLengthyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30dbCosmosdbRequestContentLengthyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbStatusCode", + "printedName": "dbCosmosdbStatusCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20dbCosmosdbStatusCodeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20dbCosmosdbStatusCodeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbSubStatusCode", + "printedName": "dbCosmosdbSubStatusCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23dbCosmosdbSubStatusCodeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23dbCosmosdbSubStatusCodeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "dbCosmosdbRequestCharge", + "printedName": "dbCosmosdbRequestCharge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23dbCosmosdbRequestChargeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23dbCosmosdbRequestChargeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "otelStatusCode", + "printedName": "otelStatusCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14otelStatusCodeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14otelStatusCodeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "otelStatusDescription", + "printedName": "otelStatusDescription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21otelStatusDescriptionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21otelStatusDescriptionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasTrigger", + "printedName": "faasTrigger", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11faasTriggeryA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11faasTriggeryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasInvocationId", + "printedName": "faasInvocationId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16faasInvocationIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16faasInvocationIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cloudResourceId", + "printedName": "cloudResourceId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15cloudResourceIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15cloudResourceIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasDocumentCollection", + "printedName": "faasDocumentCollection", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO22faasDocumentCollectionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO22faasDocumentCollectionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasDocumentOperation", + "printedName": "faasDocumentOperation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21faasDocumentOperationyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21faasDocumentOperationyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasDocumentTime", + "printedName": "faasDocumentTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16faasDocumentTimeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16faasDocumentTimeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasDocumentName", + "printedName": "faasDocumentName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16faasDocumentNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16faasDocumentNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpTarget", + "printedName": "httpTarget", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10httpTargetyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10httpTargetyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpClientIp", + "printedName": "httpClientIp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO12httpClientIpyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO12httpClientIpyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netSockHostAddr", + "printedName": "netSockHostAddr", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15netSockHostAddryA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15netSockHostAddryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netSockHostPort", + "printedName": "netSockHostPort", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15netSockHostPortyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15netSockHostPortyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingSystem", + "printedName": "messagingSystem", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15messagingSystemyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15messagingSystemyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingOperation", + "printedName": "messagingOperation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18messagingOperationyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18messagingOperationyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingBatchMessageCount", + "printedName": "messagingBatchMessageCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26messagingBatchMessageCountyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26messagingBatchMessageCountyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingMessageId", + "printedName": "messagingMessageId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18messagingMessageIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18messagingMessageIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingMessageConversationId", + "printedName": "messagingMessageConversationId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30messagingMessageConversationIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30messagingMessageConversationIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingMessagePayloadSizeBytes", + "printedName": "messagingMessagePayloadSizeBytes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO32messagingMessagePayloadSizeBytesyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO32messagingMessagePayloadSizeBytesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingMessagePayloadCompressedSizeBytes", + "printedName": "messagingMessagePayloadCompressedSizeBytes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO42messagingMessagePayloadCompressedSizeBytesyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO42messagingMessagePayloadCompressedSizeBytesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasTime", + "printedName": "faasTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8faasTimeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8faasTimeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasCron", + "printedName": "faasCron", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8faasCronyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8faasCronyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasColdstart", + "printedName": "faasColdstart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO13faasColdstartyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO13faasColdstartyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasInvokedName", + "printedName": "faasInvokedName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15faasInvokedNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15faasInvokedNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasInvokedProvider", + "printedName": "faasInvokedProvider", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19faasInvokedProvideryA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19faasInvokedProvideryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "faasInvokedRegion", + "printedName": "faasInvokedRegion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17faasInvokedRegionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17faasInvokedRegionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostConnectionType", + "printedName": "netHostConnectionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21netHostConnectionTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21netHostConnectionTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostConnectionSubtype", + "printedName": "netHostConnectionSubtype", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24netHostConnectionSubtypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24netHostConnectionSubtypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostCarrierName", + "printedName": "netHostCarrierName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18netHostCarrierNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18netHostCarrierNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostCarrierMcc", + "printedName": "netHostCarrierMcc", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17netHostCarrierMccyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17netHostCarrierMccyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostCarrierMnc", + "printedName": "netHostCarrierMnc", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17netHostCarrierMncyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17netHostCarrierMncyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "netHostCarrierIcc", + "printedName": "netHostCarrierIcc", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17netHostCarrierIccyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17netHostCarrierIccyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "peerService", + "printedName": "peerService", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11peerServiceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11peerServiceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "enduserId", + "printedName": "enduserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO9enduserIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO9enduserIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "enduserRole", + "printedName": "enduserRole", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11enduserRoleyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11enduserRoleyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "enduserScope", + "printedName": "enduserScope", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO12enduserScopeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO12enduserScopeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "threadId", + "printedName": "threadId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8threadIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8threadIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "threadName", + "printedName": "threadName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10threadNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10threadNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "codeFunction", + "printedName": "codeFunction", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO12codeFunctionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO12codeFunctionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "codeNamespace", + "printedName": "codeNamespace", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO13codeNamespaceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO13codeNamespaceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "codeFilepath", + "printedName": "codeFilepath", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO12codeFilepathyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO12codeFilepathyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "codeLineno", + "printedName": "codeLineno", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10codeLinenoyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10codeLinenoyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "codeColumn", + "printedName": "codeColumn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10codeColumnyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10codeColumnyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpRequestContentLength", + "printedName": "httpRequestContentLength", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24httpRequestContentLengthyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24httpRequestContentLengthyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpResponseContentLength", + "printedName": "httpResponseContentLength", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25httpResponseContentLengthyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25httpResponseContentLengthyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpUrl", + "printedName": "httpUrl", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO7httpUrlyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO7httpUrlyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "httpResendCount", + "printedName": "httpResendCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15httpResendCountyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15httpResendCountyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcSystem", + "printedName": "rpcSystem", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO9rpcSystemyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO9rpcSystemyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcService", + "printedName": "rpcService", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO10rpcServiceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO10rpcServiceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcMethod", + "printedName": "rpcMethod", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO9rpcMethodyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO9rpcMethodyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsRequestId", + "printedName": "awsRequestId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO12awsRequestIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO12awsRequestIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbTableNames", + "printedName": "awsDynamodbTableNames", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21awsDynamodbTableNamesyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21awsDynamodbTableNamesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbConsumedCapacity", + "printedName": "awsDynamodbConsumedCapacity", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27awsDynamodbConsumedCapacityyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27awsDynamodbConsumedCapacityyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbItemCollectionMetrics", + "printedName": "awsDynamodbItemCollectionMetrics", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO32awsDynamodbItemCollectionMetricsyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO32awsDynamodbItemCollectionMetricsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbProvisionedReadCapacity", + "printedName": "awsDynamodbProvisionedReadCapacity", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34awsDynamodbProvisionedReadCapacityyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34awsDynamodbProvisionedReadCapacityyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbProvisionedWriteCapacity", + "printedName": "awsDynamodbProvisionedWriteCapacity", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO35awsDynamodbProvisionedWriteCapacityyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO35awsDynamodbProvisionedWriteCapacityyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbConsistentRead", + "printedName": "awsDynamodbConsistentRead", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25awsDynamodbConsistentReadyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25awsDynamodbConsistentReadyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbProjection", + "printedName": "awsDynamodbProjection", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21awsDynamodbProjectionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21awsDynamodbProjectionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbLimit", + "printedName": "awsDynamodbLimit", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16awsDynamodbLimityA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16awsDynamodbLimityA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbAttributesToGet", + "printedName": "awsDynamodbAttributesToGet", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO011awsDynamodbD5ToGetyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO011awsDynamodbD5ToGetyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbIndexName", + "printedName": "awsDynamodbIndexName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20awsDynamodbIndexNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20awsDynamodbIndexNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbSelect", + "printedName": "awsDynamodbSelect", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17awsDynamodbSelectyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17awsDynamodbSelectyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbGlobalSecondaryIndexes", + "printedName": "awsDynamodbGlobalSecondaryIndexes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33awsDynamodbGlobalSecondaryIndexesyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33awsDynamodbGlobalSecondaryIndexesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbLocalSecondaryIndexes", + "printedName": "awsDynamodbLocalSecondaryIndexes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO32awsDynamodbLocalSecondaryIndexesyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO32awsDynamodbLocalSecondaryIndexesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbExclusiveStartTable", + "printedName": "awsDynamodbExclusiveStartTable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30awsDynamodbExclusiveStartTableyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30awsDynamodbExclusiveStartTableyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbTableCount", + "printedName": "awsDynamodbTableCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21awsDynamodbTableCountyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21awsDynamodbTableCountyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbScanForward", + "printedName": "awsDynamodbScanForward", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO22awsDynamodbScanForwardyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO22awsDynamodbScanForwardyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbSegment", + "printedName": "awsDynamodbSegment", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18awsDynamodbSegmentyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18awsDynamodbSegmentyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbTotalSegments", + "printedName": "awsDynamodbTotalSegments", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24awsDynamodbTotalSegmentsyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24awsDynamodbTotalSegmentsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbCount", + "printedName": "awsDynamodbCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16awsDynamodbCountyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16awsDynamodbCountyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbScannedCount", + "printedName": "awsDynamodbScannedCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23awsDynamodbScannedCountyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23awsDynamodbScannedCountyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbAttributeDefinitions", + "printedName": "awsDynamodbAttributeDefinitions", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO31awsDynamodbAttributeDefinitionsyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO31awsDynamodbAttributeDefinitionsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsDynamodbGlobalSecondaryIndexUpdates", + "printedName": "awsDynamodbGlobalSecondaryIndexUpdates", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO38awsDynamodbGlobalSecondaryIndexUpdatesyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO38awsDynamodbGlobalSecondaryIndexUpdatesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsS3Bucket", + "printedName": "awsS3Bucket", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11awsS3BucketyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11awsS3BucketyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsS3Key", + "printedName": "awsS3Key", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8awsS3KeyyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8awsS3KeyyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsS3CopySource", + "printedName": "awsS3CopySource", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15awsS3CopySourceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15awsS3CopySourceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsS3UploadId", + "printedName": "awsS3UploadId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO13awsS3UploadIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO13awsS3UploadIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsS3Delete", + "printedName": "awsS3Delete", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11awsS3DeleteyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11awsS3DeleteyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "awsS3PartNumber", + "printedName": "awsS3PartNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15awsS3PartNumberyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15awsS3PartNumberyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "graphqlOperationName", + "printedName": "graphqlOperationName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20graphqlOperationNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20graphqlOperationNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "graphqlOperationType", + "printedName": "graphqlOperationType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20graphqlOperationTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20graphqlOperationTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "graphqlDocument", + "printedName": "graphqlDocument", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15graphqlDocumentyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15graphqlDocumentyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingDestinationName", + "printedName": "messagingDestinationName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24messagingDestinationNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24messagingDestinationNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingSourceName", + "printedName": "messagingSourceName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19messagingSourceNameyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19messagingSourceNameyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingDestinationTemplate", + "printedName": "messagingDestinationTemplate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO28messagingDestinationTemplateyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO28messagingDestinationTemplateyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingDestinationTemporary", + "printedName": "messagingDestinationTemporary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29messagingDestinationTemporaryyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29messagingDestinationTemporaryyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingDestinationAnonymous", + "printedName": "messagingDestinationAnonymous", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29messagingDestinationAnonymousyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29messagingDestinationAnonymousyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingSourceTemplate", + "printedName": "messagingSourceTemplate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23messagingSourceTemplateyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23messagingSourceTemplateyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingSourceTemporary", + "printedName": "messagingSourceTemporary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24messagingSourceTemporaryyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24messagingSourceTemporaryyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingSourceAnonymous", + "printedName": "messagingSourceAnonymous", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24messagingSourceAnonymousyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24messagingSourceAnonymousyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingConsumerId", + "printedName": "messagingConsumerId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19messagingConsumerIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19messagingConsumerIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRabbitmqDestinationRoutingKey", + "printedName": "messagingRabbitmqDestinationRoutingKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO38messagingRabbitmqDestinationRoutingKeyyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO38messagingRabbitmqDestinationRoutingKeyyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingKafkaMessageKey", + "printedName": "messagingKafkaMessageKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24messagingKafkaMessageKeyyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24messagingKafkaMessageKeyyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingKafkaConsumerGroup", + "printedName": "messagingKafkaConsumerGroup", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27messagingKafkaConsumerGroupyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27messagingKafkaConsumerGroupyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingKafkaClientId", + "printedName": "messagingKafkaClientId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO22messagingKafkaClientIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO22messagingKafkaClientIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingKafkaDestinationPartition", + "printedName": "messagingKafkaDestinationPartition", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34messagingKafkaDestinationPartitionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34messagingKafkaDestinationPartitionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingKafkaSourcePartition", + "printedName": "messagingKafkaSourcePartition", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29messagingKafkaSourcePartitionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29messagingKafkaSourcePartitionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingKafkaMessageOffset", + "printedName": "messagingKafkaMessageOffset", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27messagingKafkaMessageOffsetyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27messagingKafkaMessageOffsetyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingKafkaMessageTombstone", + "printedName": "messagingKafkaMessageTombstone", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30messagingKafkaMessageTombstoneyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30messagingKafkaMessageTombstoneyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqNamespace", + "printedName": "messagingRocketmqNamespace", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26messagingRocketmqNamespaceyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26messagingRocketmqNamespaceyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqClientGroup", + "printedName": "messagingRocketmqClientGroup", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO28messagingRocketmqClientGroupyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO28messagingRocketmqClientGroupyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqClientId", + "printedName": "messagingRocketmqClientId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25messagingRocketmqClientIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25messagingRocketmqClientIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqMessageDeliveryTimestamp", + "printedName": "messagingRocketmqMessageDeliveryTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO41messagingRocketmqMessageDeliveryTimestampyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO41messagingRocketmqMessageDeliveryTimestampyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqMessageDelayTimeLevel", + "printedName": "messagingRocketmqMessageDelayTimeLevel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO38messagingRocketmqMessageDelayTimeLevelyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO38messagingRocketmqMessageDelayTimeLevelyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqMessageGroup", + "printedName": "messagingRocketmqMessageGroup", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29messagingRocketmqMessageGroupyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29messagingRocketmqMessageGroupyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqMessageType", + "printedName": "messagingRocketmqMessageType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO28messagingRocketmqMessageTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO28messagingRocketmqMessageTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqMessageTag", + "printedName": "messagingRocketmqMessageTag", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27messagingRocketmqMessageTagyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27messagingRocketmqMessageTagyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqMessageKeys", + "printedName": "messagingRocketmqMessageKeys", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO28messagingRocketmqMessageKeysyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO28messagingRocketmqMessageKeysyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messagingRocketmqConsumptionModel", + "printedName": "messagingRocketmqConsumptionModel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33messagingRocketmqConsumptionModelyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33messagingRocketmqConsumptionModelyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcGrpcStatusCode", + "printedName": "rpcGrpcStatusCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17rpcGrpcStatusCodeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17rpcGrpcStatusCodeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcJsonrpcVersion", + "printedName": "rpcJsonrpcVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17rpcJsonrpcVersionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17rpcJsonrpcVersionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcJsonrpcRequestId", + "printedName": "rpcJsonrpcRequestId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19rpcJsonrpcRequestIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19rpcJsonrpcRequestIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcJsonrpcErrorCode", + "printedName": "rpcJsonrpcErrorCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19rpcJsonrpcErrorCodeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19rpcJsonrpcErrorCodeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcJsonrpcErrorMessage", + "printedName": "rpcJsonrpcErrorMessage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO22rpcJsonrpcErrorMessageyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO22rpcJsonrpcErrorMessageyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messageType", + "printedName": "messageType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO11messageTypeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO11messageTypeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messageId", + "printedName": "messageId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO9messageIdyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO9messageIdyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messageCompressedSize", + "printedName": "messageCompressedSize", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO21messageCompressedSizeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO21messageCompressedSizeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messageUncompressedSize", + "printedName": "messageUncompressedSize", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23messageUncompressedSizeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23messageUncompressedSizeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "rpcConnectRpcErrorCode", + "printedName": "rpcConnectRpcErrorCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO22rpcConnectRpcErrorCodeyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO22rpcConnectRpcErrorCodeyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "exceptionEscaped", + "printedName": "exceptionEscaped", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO16exceptionEscapedyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO16exceptionEscapedyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "exception", + "printedName": "exception", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.Type) -> VideoSDKRTC.SemanticAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO9exceptionyA2CmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO9exceptionyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EventDomainValues", + "printedName": "EventDomainValues", + "children": [ + { + "kind": "Var", + "name": "browser", + "printedName": "browser", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDomainValues", + "printedName": "VideoSDKRTC.SemanticAttributes.EventDomainValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV7browserAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV7browserAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDomainValues", + "printedName": "VideoSDKRTC.SemanticAttributes.EventDomainValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV7browserAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV7browserAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "device", + "printedName": "device", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDomainValues", + "printedName": "VideoSDKRTC.SemanticAttributes.EventDomainValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV6deviceAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV6deviceAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDomainValues", + "printedName": "VideoSDKRTC.SemanticAttributes.EventDomainValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV6deviceAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV6deviceAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "k8s", + "printedName": "k8s", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDomainValues", + "printedName": "VideoSDKRTC.SemanticAttributes.EventDomainValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV3k8sAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV3k8sAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDomainValues", + "printedName": "VideoSDKRTC.SemanticAttributes.EventDomainValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV3k8sAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV3k8sAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDomainValues", + "printedName": "VideoSDKRTC.SemanticAttributes.EventDomainValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17EventDomainValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OpentracingRefTypeValues", + "printedName": "OpentracingRefTypeValues", + "children": [ + { + "kind": "Var", + "name": "child_of", + "printedName": "child_of", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "OpentracingRefTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OpentracingRefTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8child_ofyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8child_ofyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "follows_from", + "printedName": "follows_from", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "OpentracingRefTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OpentracingRefTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO12follows_fromyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO12follows_fromyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "OpentracingRefTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24OpentracingRefTypeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DbSystemValues", + "printedName": "DbSystemValues", + "children": [ + { + "kind": "Var", + "name": "otherSql", + "printedName": "otherSql", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8otherSqlAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8otherSqlAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8otherSqlAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8otherSqlAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mssql", + "printedName": "mssql", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mssqlAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mssqlAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mssqlAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mssqlAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mssqlcompact", + "printedName": "mssqlcompact", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV12mssqlcompactAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV12mssqlcompactAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV12mssqlcompactAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV12mssqlcompactAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mysql", + "printedName": "mysql", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mysqlAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mysqlAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mysqlAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5mysqlAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "oracle", + "printedName": "oracle", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6oracleAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6oracleAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6oracleAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6oracleAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "db2", + "printedName": "db2", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3db2AEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3db2AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3db2AEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3db2AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "postgresql", + "printedName": "postgresql", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10postgresqlAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10postgresqlAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10postgresqlAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10postgresqlAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "redshift", + "printedName": "redshift", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8redshiftAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8redshiftAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8redshiftAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8redshiftAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hive", + "printedName": "hive", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV4hiveAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV4hiveAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV4hiveAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV4hiveAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cloudscape", + "printedName": "cloudscape", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10cloudscapeAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10cloudscapeAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10cloudscapeAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10cloudscapeAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hsqldb", + "printedName": "hsqldb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hsqldbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hsqldbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hsqldbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hsqldbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "progress", + "printedName": "progress", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8progressAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8progressAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8progressAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8progressAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxdb", + "printedName": "maxdb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5maxdbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5maxdbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5maxdbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5maxdbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hanadb", + "printedName": "hanadb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hanadbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hanadbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hanadbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6hanadbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ingres", + "printedName": "ingres", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6ingresAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6ingresAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6ingresAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6ingresAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "firstsql", + "printedName": "firstsql", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firstsqlAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firstsqlAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firstsqlAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firstsqlAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "edb", + "printedName": "edb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3edbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3edbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3edbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV3edbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cache", + "printedName": "cache", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5cacheAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5cacheAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5cacheAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5cacheAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "adabas", + "printedName": "adabas", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6adabasAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6adabasAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6adabasAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6adabasAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "firebird", + "printedName": "firebird", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firebirdAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firebirdAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firebirdAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8firebirdAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "derby", + "printedName": "derby", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5derbyAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5derbyAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5derbyAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5derbyAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "filemaker", + "printedName": "filemaker", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9filemakerAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9filemakerAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9filemakerAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9filemakerAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "informix", + "printedName": "informix", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8informixAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8informixAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8informixAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8informixAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instantdb", + "printedName": "instantdb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9instantdbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9instantdbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9instantdbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9instantdbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "interbase", + "printedName": "interbase", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9interbaseAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9interbaseAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9interbaseAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9interbaseAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mariadb", + "printedName": "mariadb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mariadbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mariadbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mariadbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mariadbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "netezza", + "printedName": "netezza", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7netezzaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7netezzaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7netezzaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7netezzaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pervasive", + "printedName": "pervasive", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pervasiveAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pervasiveAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pervasiveAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pervasiveAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pointbase", + "printedName": "pointbase", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pointbaseAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pointbaseAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pointbaseAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9pointbaseAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sqlite", + "printedName": "sqlite", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sqliteAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sqliteAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sqliteAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sqliteAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sybase", + "printedName": "sybase", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sybaseAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sybaseAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sybaseAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV6sybaseAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "teradata", + "printedName": "teradata", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8teradataAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8teradataAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8teradataAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8teradataAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "vertica", + "printedName": "vertica", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7verticaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7verticaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7verticaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7verticaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "h2", + "printedName": "h2", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV2h2AEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV2h2AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV2h2AEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV2h2AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "coldfusion", + "printedName": "coldfusion", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10coldfusionAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10coldfusionAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10coldfusionAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10coldfusionAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cassandra", + "printedName": "cassandra", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9cassandraAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9cassandraAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9cassandraAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9cassandraAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hbase", + "printedName": "hbase", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5hbaseAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5hbaseAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5hbaseAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5hbaseAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mongodb", + "printedName": "mongodb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mongodbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mongodbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mongodbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7mongodbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "redis", + "printedName": "redis", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5redisAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5redisAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5redisAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5redisAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "couchbase", + "printedName": "couchbase", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9couchbaseAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9couchbaseAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9couchbaseAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9couchbaseAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "couchdb", + "printedName": "couchdb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7couchdbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7couchdbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7couchdbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7couchdbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cosmosdb", + "printedName": "cosmosdb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8cosmosdbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8cosmosdbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8cosmosdbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8cosmosdbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dynamodb", + "printedName": "dynamodb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8dynamodbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8dynamodbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8dynamodbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV8dynamodbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "neo4j", + "printedName": "neo4j", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5neo4jAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5neo4jAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5neo4jAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5neo4jAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "geode", + "printedName": "geode", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5geodeAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5geodeAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5geodeAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5geodeAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "elasticsearch", + "printedName": "elasticsearch", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV13elasticsearchAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV13elasticsearchAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV13elasticsearchAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV13elasticsearchAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "memcached", + "printedName": "memcached", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9memcachedAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9memcachedAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9memcachedAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV9memcachedAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cockroachdb", + "printedName": "cockroachdb", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11cockroachdbAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11cockroachdbAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11cockroachdbAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11cockroachdbAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "opensearch", + "printedName": "opensearch", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10opensearchAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10opensearchAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10opensearchAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10opensearchAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "clickhouse", + "printedName": "clickhouse", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10clickhouseAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10clickhouseAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10clickhouseAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV10clickhouseAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanner", + "printedName": "spanner", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7spannerAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7spannerAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7spannerAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV7spannerAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "trino", + "printedName": "trino", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5trinoAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5trinoAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5trinoAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV5trinoAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DbSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO14DbSystemValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NetSockFamilyValues", + "printedName": "NetSockFamilyValues", + "children": [ + { + "kind": "Var", + "name": "inet", + "printedName": "inet", + "children": [ + { + "kind": "TypeNominal", + "name": "NetSockFamilyValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetSockFamilyValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4inetAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4inetAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetSockFamilyValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetSockFamilyValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4inetAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4inetAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "inet6", + "printedName": "inet6", + "children": [ + { + "kind": "TypeNominal", + "name": "NetSockFamilyValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetSockFamilyValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV5inet6AEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV5inet6AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetSockFamilyValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetSockFamilyValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV5inet6AEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV5inet6AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unix", + "printedName": "unix", + "children": [ + { + "kind": "TypeNominal", + "name": "NetSockFamilyValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetSockFamilyValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4unixAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4unixAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetSockFamilyValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetSockFamilyValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4unixAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV4unixAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NetSockFamilyValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetSockFamilyValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO19NetSockFamilyValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NetTransportValues", + "printedName": "NetTransportValues", + "children": [ + { + "kind": "Var", + "name": "ipTcp", + "printedName": "ipTcp", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipTcpAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipTcpAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipTcpAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipTcpAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ipUdp", + "printedName": "ipUdp", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipUdpAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipUdpAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipUdpAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5ipUdpAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pipe", + "printedName": "pipe", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV4pipeAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV4pipeAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV4pipeAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV4pipeAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "inproc", + "printedName": "inproc", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV6inprocAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV6inprocAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV6inprocAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV6inprocAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "other", + "printedName": "other", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5otherAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5otherAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5otherAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV5otherAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NetTransportValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetTransportValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO18NetTransportValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "Var", + "name": "all", + "printedName": "all", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3allyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3allyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "each_quorum", + "printedName": "each_quorum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO11each_quorumyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO11each_quorumyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "quorum", + "printedName": "quorum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO6quorumyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO6quorumyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "local_quorum", + "printedName": "local_quorum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO12local_quorumyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO12local_quorumyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "one", + "printedName": "one", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3oneyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3oneyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "two", + "printedName": "two", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3twoyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3twoyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "three", + "printedName": "three", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO5threeyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO5threeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "local_one", + "printedName": "local_one", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO9local_oneyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO9local_oneyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "any", + "printedName": "any", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3anyyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO3anyyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "serial", + "printedName": "serial", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO6serialyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO6serialyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "local_serial", + "printedName": "local_serial", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO12local_serialyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO12local_serialyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCassandraConsistencyLevelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO33DbCassandraConsistencyLevelValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "DbCosmosdbOperationTypeValues", + "children": [ + { + "kind": "Var", + "name": "invalid", + "printedName": "invalid", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7invalidAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7invalidAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7invalidAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7invalidAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "create", + "printedName": "create", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6createAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6createAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6createAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6createAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "patch", + "printedName": "patch", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5patchAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5patchAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5patchAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5patchAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "read", + "printedName": "read", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4readAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4readAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4readAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4readAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "readFeed", + "printedName": "readFeed", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8readFeedAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8readFeedAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8readFeedAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8readFeedAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "delete", + "printedName": "delete", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6deleteAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6deleteAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6deleteAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6deleteAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "replace", + "printedName": "replace", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7replaceAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7replaceAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7replaceAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7replaceAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "execute", + "printedName": "execute", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7executeAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7executeAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7executeAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV7executeAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "query", + "printedName": "query", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5queryAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5queryAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5queryAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5queryAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "head", + "printedName": "head", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4headAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4headAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4headAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV4headAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "headFeed", + "printedName": "headFeed", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8headFeedAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8headFeedAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8headFeedAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV8headFeedAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "upsert", + "printedName": "upsert", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6upsertAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6upsertAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6upsertAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV6upsertAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "batch", + "printedName": "batch", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5batchAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5batchAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5batchAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV5batchAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "queryPlan", + "printedName": "queryPlan", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV9queryPlanAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV9queryPlanAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV9queryPlanAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV9queryPlanAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "executeJavascript", + "printedName": "executeJavascript", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV17executeJavascriptAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV17executeJavascriptAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV17executeJavascriptAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV17executeJavascriptAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO29DbCosmosdbOperationTypeValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DbCosmosdbConnectionModeValues", + "printedName": "DbCosmosdbConnectionModeValues", + "children": [ + { + "kind": "Var", + "name": "gateway", + "printedName": "gateway", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbConnectionModeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbConnectionModeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO7gatewayyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO7gatewayyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "direct", + "printedName": "direct", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues.Type) -> VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbConnectionModeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbConnectionModeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO6directyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO6directyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "DbCosmosdbConnectionModeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30DbCosmosdbConnectionModeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OtelStatusCodeValues", + "printedName": "OtelStatusCodeValues", + "children": [ + { + "kind": "Var", + "name": "ok", + "printedName": "ok", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "OtelStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtelStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO2okyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO2okyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "OtelStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtelStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO5erroryA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO5erroryA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "OtelStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO20OtelStatusCodeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FaasTriggerValues", + "printedName": "FaasTriggerValues", + "children": [ + { + "kind": "Var", + "name": "datasource", + "printedName": "datasource", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type) -> VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO10datasourceyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO10datasourceyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "http", + "printedName": "http", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type) -> VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO4httpyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO4httpyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "pubsub", + "printedName": "pubsub", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type) -> VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO6pubsubyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO6pubsubyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "timer", + "printedName": "timer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type) -> VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO5timeryA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO5timeryA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "other", + "printedName": "other", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type) -> VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO5otheryA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO5otheryA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasTriggerValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasTriggerValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17FaasTriggerValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FaasDocumentOperationValues", + "printedName": "FaasDocumentOperationValues", + "children": [ + { + "kind": "Var", + "name": "insert", + "printedName": "insert", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasDocumentOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6insertAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6insertAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasDocumentOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6insertAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6insertAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "edit", + "printedName": "edit", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasDocumentOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV4editAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV4editAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasDocumentOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV4editAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV4editAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "delete", + "printedName": "delete", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasDocumentOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6deleteAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6deleteAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasDocumentOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6deleteAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV6deleteAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasDocumentOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27FaasDocumentOperationValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MessagingOperationValues", + "printedName": "MessagingOperationValues", + "children": [ + { + "kind": "Var", + "name": "publish", + "printedName": "publish", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7publishAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7publishAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7publishAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7publishAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "receive", + "printedName": "receive", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7receiveAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7receiveAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7receiveAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7receiveAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "process", + "printedName": "process", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7processAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7processAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7processAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV7processAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingOperationValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingOperationValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO24MessagingOperationValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FaasInvokedProviderValues", + "printedName": "FaasInvokedProviderValues", + "children": [ + { + "kind": "Var", + "name": "alibabaCloud", + "printedName": "alibabaCloud", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12alibabaCloudAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12alibabaCloudAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12alibabaCloudAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12alibabaCloudAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aws", + "printedName": "aws", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3awsAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3awsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3awsAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3awsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azure", + "printedName": "azure", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV5azureAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV5azureAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV5azureAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV5azureAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gcp", + "printedName": "gcp", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3gcpAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3gcpAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3gcpAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV3gcpAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tencentCloud", + "printedName": "tencentCloud", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12tencentCloudAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12tencentCloudAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12tencentCloudAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV12tencentCloudAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FaasInvokedProviderValues", + "printedName": "VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO25FaasInvokedProviderValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NetHostConnectionTypeValues", + "printedName": "NetHostConnectionTypeValues", + "children": [ + { + "kind": "Var", + "name": "wifi", + "printedName": "wifi", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4wifiAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4wifiAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4wifiAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4wifiAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "wired", + "printedName": "wired", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV5wiredAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV5wiredAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV5wiredAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV5wiredAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cell", + "printedName": "cell", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4cellAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4cellAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4cellAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV4cellAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unavailable", + "printedName": "unavailable", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11unavailableAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11unavailableAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11unavailableAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11unavailableAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV7unknownAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV7unknownAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV7unknownAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV7unknownAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO27NetHostConnectionTypeValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NetHostConnectionSubtypeValues", + "printedName": "NetHostConnectionSubtypeValues", + "children": [ + { + "kind": "Var", + "name": "gprs", + "printedName": "gprs", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4gprsAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4gprsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4gprsAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4gprsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "edge", + "printedName": "edge", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4edgeAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4edgeAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4edgeAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4edgeAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "umts", + "printedName": "umts", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4umtsAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4umtsAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4umtsAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4umtsAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cdma", + "printedName": "cdma", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4cdmaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4cdmaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4cdmaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4cdmaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "evdo0", + "printedName": "evdo0", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdo0AEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdo0AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdo0AEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdo0AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "evdoA", + "printedName": "evdoA", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoAAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoAAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoAAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoAAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cdma20001xrtt", + "printedName": "cdma20001xrtt", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV13cdma20001xrttAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV13cdma20001xrttAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV13cdma20001xrttAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV13cdma20001xrttAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hsdpa", + "printedName": "hsdpa", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsdpaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsdpaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsdpaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsdpaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hsupa", + "printedName": "hsupa", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsupaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsupaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsupaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hsupaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hspa", + "printedName": "hspa", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4hspaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4hspaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4hspaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4hspaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "iden", + "printedName": "iden", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4idenAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4idenAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4idenAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV4idenAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "evdoB", + "printedName": "evdoB", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoBAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoBAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoBAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5evdoBAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lte", + "printedName": "lte", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3lteAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3lteAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3lteAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3lteAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ehrpd", + "printedName": "ehrpd", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5ehrpdAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5ehrpdAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5ehrpdAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5ehrpdAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hspap", + "printedName": "hspap", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hspapAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hspapAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hspapAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5hspapAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gsm", + "printedName": "gsm", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3gsmAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3gsmAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3gsmAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV3gsmAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tdScdma", + "printedName": "tdScdma", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV7tdScdmaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV7tdScdmaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV7tdScdmaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV7tdScdmaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "iwlan", + "printedName": "iwlan", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5iwlanAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5iwlanAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5iwlanAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5iwlanAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nr", + "printedName": "nr", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV2nrAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV2nrAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV2nrAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV2nrAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nrnsa", + "printedName": "nrnsa", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5nrnsaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5nrnsaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5nrnsaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5nrnsaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lteCa", + "printedName": "lteCa", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5lteCaAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5lteCaAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5lteCaAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV5lteCaAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NetHostConnectionSubtypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO30NetHostConnectionSubtypeValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RpcSystemValues", + "printedName": "RpcSystemValues", + "children": [ + { + "kind": "Var", + "name": "grpc", + "printedName": "grpc", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV4grpcAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV4grpcAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV4grpcAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV4grpcAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "javaRmi", + "printedName": "javaRmi", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV7javaRmiAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV7javaRmiAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV7javaRmiAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV7javaRmiAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dotnetWcf", + "printedName": "dotnetWcf", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV9dotnetWcfAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV9dotnetWcfAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV9dotnetWcfAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV9dotnetWcfAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "apacheDubbo", + "printedName": "apacheDubbo", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11apacheDubboAEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11apacheDubboAEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11apacheDubboAEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11apacheDubboAEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectRpc", + "printedName": "connectRpc", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV07connectE0AEvpZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV07connectE0AEvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV07connectE0AEvgZ", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV07connectE0AEvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcSystemValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcSystemValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesVyAESScfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesVyAESScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO15RpcSystemValuesV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GraphqlOperationTypeValues", + "printedName": "GraphqlOperationTypeValues", + "children": [ + { + "kind": "Var", + "name": "query", + "printedName": "query", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphqlOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphqlOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO5queryyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO5queryyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "mutation", + "printedName": "mutation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphqlOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphqlOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8mutationyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8mutationyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "subscription", + "printedName": "subscription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphqlOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphqlOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO12subscriptionyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO12subscriptionyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphqlOperationTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO26GraphqlOperationTypeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "MessagingRocketmqMessageTypeValues", + "children": [ + { + "kind": "Var", + "name": "normal", + "printedName": "normal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO6normalyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO6normalyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "fifo", + "printedName": "fifo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO4fifoyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO4fifoyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "delay", + "printedName": "delay", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO5delayyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO5delayyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "transaction", + "printedName": "transaction", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO11transactionyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO11transactionyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqMessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO34MessagingRocketmqMessageTypeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MessagingRocketmqConsumptionModelValues", + "printedName": "MessagingRocketmqConsumptionModelValues", + "children": [ + { + "kind": "Var", + "name": "clustering", + "printedName": "clustering", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues.Type) -> VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqConsumptionModelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqConsumptionModelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO10clusteringyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO10clusteringyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "broadcasting", + "printedName": "broadcasting", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues.Type) -> VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqConsumptionModelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqConsumptionModelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO12broadcastingyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO12broadcastingyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessagingRocketmqConsumptionModelValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO39MessagingRocketmqConsumptionModelValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RpcGrpcStatusCodeValues", + "printedName": "RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "Var", + "name": "ok", + "printedName": "ok", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO2okyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO2okyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO9cancelledyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO9cancelledyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO7unknownyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "invalid_argument", + "printedName": "invalid_argument", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO16invalid_argumentyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO16invalid_argumentyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "deadline_exceeded", + "printedName": "deadline_exceeded", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO17deadline_exceededyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO17deadline_exceededyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "not_found", + "printedName": "not_found", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO9not_foundyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO9not_foundyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "already_exists", + "printedName": "already_exists", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO14already_existsyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO14already_existsyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "permission_denied", + "printedName": "permission_denied", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO17permission_deniedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO17permission_deniedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "resource_exhausted", + "printedName": "resource_exhausted", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO18resource_exhaustedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO18resource_exhaustedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "failed_precondition", + "printedName": "failed_precondition", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO19failed_preconditionyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO19failed_preconditionyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "aborted", + "printedName": "aborted", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO7abortedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO7abortedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "out_of_range", + "printedName": "out_of_range", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO12out_of_rangeyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO12out_of_rangeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unimplemented", + "printedName": "unimplemented", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO13unimplementedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO13unimplementedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "internal", + "printedName": "internal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8internalyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8internalyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unavailable", + "printedName": "unavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO11unavailableyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO11unavailableyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "data_loss", + "printedName": "data_loss", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO9data_lossyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO9data_lossyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unauthenticated", + "printedName": "unauthenticated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO15unauthenticatedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO15unauthenticatedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcGrpcStatusCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO23RpcGrpcStatusCodeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MessageTypeValues", + "printedName": "MessageTypeValues", + "children": [ + { + "kind": "Var", + "name": "sent", + "printedName": "sent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessageTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.MessageTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO4sentyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO4sentyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "received", + "printedName": "received", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.MessageTypeValues.Type) -> VideoSDKRTC.SemanticAttributes.MessageTypeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8receivedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8receivedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageTypeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.MessageTypeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO17MessageTypeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO9cancelledyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO9cancelledyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO7unknownyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "invalid_argument", + "printedName": "invalid_argument", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO16invalid_argumentyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO16invalid_argumentyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "deadline_exceeded", + "printedName": "deadline_exceeded", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO17deadline_exceededyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO17deadline_exceededyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "not_found", + "printedName": "not_found", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO9not_foundyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO9not_foundyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "already_exists", + "printedName": "already_exists", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO14already_existsyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO14already_existsyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "permission_denied", + "printedName": "permission_denied", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO17permission_deniedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO17permission_deniedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "resource_exhausted", + "printedName": "resource_exhausted", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO18resource_exhaustedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO18resource_exhaustedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "failed_precondition", + "printedName": "failed_precondition", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO19failed_preconditionyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO19failed_preconditionyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "aborted", + "printedName": "aborted", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO7abortedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO7abortedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "out_of_range", + "printedName": "out_of_range", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO12out_of_rangeyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO12out_of_rangeyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unimplemented", + "printedName": "unimplemented", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO13unimplementedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO13unimplementedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "internal", + "printedName": "internal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8internalyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8internalyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unavailable", + "printedName": "unavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO11unavailableyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO11unavailableyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "data_loss", + "printedName": "data_loss", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO9data_lossyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO9data_lossyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unauthenticated", + "printedName": "unauthenticated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type) -> VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO15unauthenticatedyA2EmF", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO15unauthenticatedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues?", + "children": [ + { + "kind": "TypeNominal", + "name": "RpcConnectRpcErrorCodeValues", + "printedName": "VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8rawValueAESgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8rawValueAESgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO010RpcConnectE15ErrorCodeValuesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SemanticAttributes?", + "children": [ + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SemanticAttributesO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC18SemanticAttributesO", + "mangledName": "$s11VideoSDKRTC18SemanticAttributesO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Severity", + "printedName": "Severity", + "children": [ + { + "kind": "Var", + "name": "trace", + "printedName": "trace", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5traceyA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5traceyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "trace2", + "printedName": "trace2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6trace2yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6trace2yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "trace3", + "printedName": "trace3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6trace3yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6trace3yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "trace4", + "printedName": "trace4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6trace4yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6trace4yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5debugyA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5debugyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "debug2", + "printedName": "debug2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6debug2yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6debug2yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "debug3", + "printedName": "debug3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6debug3yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6debug3yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "debug4", + "printedName": "debug4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6debug4yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6debug4yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "info", + "printedName": "info", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO4infoyA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO4infoyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "info2", + "printedName": "info2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5info2yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5info2yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "info3", + "printedName": "info3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5info3yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5info3yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "info4", + "printedName": "info4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5info4yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5info4yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "warn", + "printedName": "warn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO4warnyA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO4warnyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "warn2", + "printedName": "warn2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5warn2yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5warn2yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "warn3", + "printedName": "warn3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5warn3yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5warn3yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "warn4", + "printedName": "warn4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5warn4yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5warn4yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5erroryA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5erroryA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "error2", + "printedName": "error2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6error2yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6error2yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "error3", + "printedName": "error3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6error3yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6error3yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "error4", + "printedName": "error4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6error4yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6error4yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "fatal", + "printedName": "fatal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO5fatalyA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO5fatalyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "fatal2", + "printedName": "fatal2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6fatal2yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6fatal2yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "fatal3", + "printedName": "fatal3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6fatal3yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6fatal3yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "fatal4", + "printedName": "fatal4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Severity.Type) -> VideoSDKRTC.Severity", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Severity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SeverityO6fatal4yA2CmF", + "mangledName": "$s11VideoSDKRTC8SeverityO6fatal4yA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SeverityO11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC8SeverityO11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SeverityO11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC8SeverityO11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + }, + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SeverityO1loiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC8SeverityO1loiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SeverityO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC8SeverityO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SeverityO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC8SeverityO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Severity?", + "children": [ + { + "kind": "TypeNominal", + "name": "Severity", + "printedName": "VideoSDKRTC.Severity", + "usr": "s:11VideoSDKRTC8SeverityO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SeverityO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC8SeverityO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC8SeverityO", + "mangledName": "$s11VideoSDKRTC8SeverityO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SimpleExtensionMap", + "printedName": "SimpleExtensionMap", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleExtensionMap", + "printedName": "VideoSDKRTC.SimpleExtensionMap", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapVACycfc", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(arrayLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleExtensionMap", + "printedName": "VideoSDKRTC.SimpleExtensionMap", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.AnyMessageExtension]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV12arrayLiteralAcA010AnyMessageD0_pd_tcfc", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapV12arrayLiteralAcA010AnyMessageD0_pd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleExtensionMap", + "printedName": "VideoSDKRTC.SimpleExtensionMap", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SimpleExtensionMap]", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleExtensionMap", + "printedName": "VideoSDKRTC.SimpleExtensionMap", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapVyA2Cd_tcfc", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapVyA2Cd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyMessageExtension?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Subscript", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapVyAA010AnyMessageD0_pSgAA0G0_pXp_Sitcip", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapVyAA010AnyMessageD0_pSgAA0G0_pXp_Sitcip", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AnyMessageExtension?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapVyAA010AnyMessageD0_pSgAA0G0_pXp_Sitcig", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapVyAA010AnyMessageD0_pSgAA0G0_pXp_Sitcig", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "fieldNumberForProto", + "printedName": "fieldNumberForProto(messageType:protoFieldName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV19fieldNumberForProto11messageType14protoFieldNameSiSgAA7Message_pXp_SStF", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapV19fieldNumberForProto11messageType14protoFieldNameSiSgAA7Message_pXp_SStF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "insert", + "printedName": "insert(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV6insertyyAA010AnyMessageD0_pF", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapV6insertyyAA010AnyMessageD0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "insert", + "printedName": "insert(contentsOf:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.AnyMessageExtension]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV6insert10contentsOfySayAA010AnyMessageD0_pG_tF", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapV6insert10contentsOfySayAA010AnyMessageD0_pG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "formUnion", + "printedName": "formUnion(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SimpleExtensionMap", + "printedName": "VideoSDKRTC.SimpleExtensionMap", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV9formUnionyyACF", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapV9formUnionyyACF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "union", + "printedName": "union(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleExtensionMap", + "printedName": "VideoSDKRTC.SimpleExtensionMap", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV" + }, + { + "kind": "TypeNominal", + "name": "SimpleExtensionMap", + "printedName": "VideoSDKRTC.SimpleExtensionMap", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV5unionyA2CF", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapV5unionyA2CF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC18SimpleExtensionMapV", + "mangledName": "$s11VideoSDKRTC18SimpleExtensionMapV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExtensionMap", + "printedName": "ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP", + "mangledName": "$s11VideoSDKRTC12ExtensionMapP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByArrayLiteral", + "printedName": "ExpressibleByArrayLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyMessageExtension", + "printedName": "VideoSDKRTC.AnyMessageExtension", + "usr": "s:11VideoSDKRTC19AnyMessageExtensionP" + } + ] + } + ], + "usr": "s:s25ExpressibleByArrayLiteralP", + "mangledName": "$ss25ExpressibleByArrayLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SimpleLogRecordProcessor", + "printedName": "SimpleLogRecordProcessor", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(logRecordExporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleLogRecordProcessor", + "printedName": "VideoSDKRTC.SimpleLogRecordProcessor", + "usr": "s:11VideoSDKRTC24SimpleLogRecordProcessorC" + }, + { + "kind": "TypeNominal", + "name": "LogRecordExporter", + "printedName": "VideoSDKRTC.LogRecordExporter", + "usr": "s:11VideoSDKRTC17LogRecordExporterP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24SimpleLogRecordProcessorC03logE8ExporterAcA0deH0_p_tcfc", + "mangledName": "$s11VideoSDKRTC24SimpleLogRecordProcessorC03logE8ExporterAcA0deH0_p_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "onEmit", + "printedName": "onEmit(logRecord:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableLogRecord", + "printedName": "VideoSDKRTC.ReadableLogRecord", + "usr": "s:11VideoSDKRTC17ReadableLogRecordV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24SimpleLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", + "mangledName": "$s11VideoSDKRTC24SimpleLogRecordProcessorC6onEmit03logE0yAA08ReadabledE0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24SimpleLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC24SimpleLogRecordProcessorC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24SimpleLogRecordProcessorC8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC24SimpleLogRecordProcessorC8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC24SimpleLogRecordProcessorC", + "mangledName": "$s11VideoSDKRTC24SimpleLogRecordProcessorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LogRecordProcessor", + "printedName": "LogRecordProcessor", + "usr": "s:11VideoSDKRTC18LogRecordProcessorP", + "mangledName": "$s11VideoSDKRTC18LogRecordProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SimpleSpanProcessor", + "printedName": "SimpleSpanProcessor", + "children": [ + { + "kind": "Var", + "name": "isStartRequired", + "printedName": "isStartRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV15isStartRequiredSbvp", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV15isStartRequiredSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV15isStartRequiredSbvg", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV15isStartRequiredSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isEndRequired", + "printedName": "isEndRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV13isEndRequiredSbvp", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV13isEndRequiredSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV13isEndRequiredSbvg", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV13isEndRequiredSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "onStart", + "printedName": "onStart(parentContext:span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV7onStart13parentContext4spanyAA0dI0VSg_AA08ReadableD0_ptF", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV7onStart13parentContext4spanyAA0dI0VSg_AA08ReadableD0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onEnd", + "printedName": "onEnd(span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV5onEnd4spanyAA08ReadableD0_p_tF", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV5onEnd4spanyAA08ReadableD0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV8shutdownyyF", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush(timeout:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV10forceFlush7timeoutySdSg_tF", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV10forceFlush7timeoutySdSg_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(spanExporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleSpanProcessor", + "printedName": "VideoSDKRTC.SimpleSpanProcessor", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV" + }, + { + "kind": "TypeNominal", + "name": "SpanExporter", + "printedName": "VideoSDKRTC.SpanExporter", + "usr": "s:11VideoSDKRTC12SpanExporterP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV12spanExporterAcA0dG0_p_tcfc", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV12spanExporterAcA0dG0_p_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "reportingOnlySampled", + "printedName": "reportingOnlySampled(sampled:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SimpleSpanProcessor", + "printedName": "VideoSDKRTC.SimpleSpanProcessor", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV20reportingOnlySampled7sampledACSb_tF", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV20reportingOnlySampled7sampledACSb_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC19SimpleSpanProcessorV", + "mangledName": "$s11VideoSDKRTC19SimpleSpanProcessorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SpanProcessor", + "printedName": "SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "VideosdkWebSocket", + "printedName": "VideosdkWebSocket", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_SourceContext", + "printedName": "Google_Protobuf_SourceContext", + "children": [ + { + "kind": "Var", + "name": "fileName", + "printedName": "fileName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV8fileNameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextVACycfc", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV", + "mangledName": "$s11VideoSDKRTC29Google_Protobuf_SourceContextV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Span", + "printedName": "Span", + "children": [ + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC4SpanP4kindAA0C4KindOvp", + "mangledName": "$s11VideoSDKRTC4SpanP4kindAA0C4KindOvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP4kindAA0C4KindOvg", + "mangledName": "$s11VideoSDKRTC4SpanP4kindAA0C4KindOvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "context", + "printedName": "context", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC4SpanP7contextAA0C7ContextVvp", + "mangledName": "$s11VideoSDKRTC4SpanP7contextAA0C7ContextVvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP7contextAA0C7ContextVvg", + "mangledName": "$s11VideoSDKRTC4SpanP7contextAA0C7ContextVvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isRecording", + "printedName": "isRecording", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC4SpanP11isRecordingSbvp", + "mangledName": "$s11VideoSDKRTC4SpanP11isRecordingSbvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP11isRecordingSbvg", + "mangledName": "$s11VideoSDKRTC4SpanP11isRecordingSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC4SpanP6statusAA6StatusOvp", + "mangledName": "$s11VideoSDKRTC4SpanP6statusAA6StatusOvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP6statusAA6StatusOvg", + "mangledName": "$s11VideoSDKRTC4SpanP6statusAA6StatusOvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP6statusAA6StatusOvs", + "mangledName": "$s11VideoSDKRTC4SpanP6statusAA6StatusOvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP6statusAA6StatusOvM", + "mangledName": "$s11VideoSDKRTC4SpanP6statusAA6StatusOvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC4SpanP4nameSSvp", + "mangledName": "$s11VideoSDKRTC4SpanP4nameSSvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP4nameSSvg", + "mangledName": "$s11VideoSDKRTC4SpanP4nameSSvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP4nameSSvs", + "mangledName": "$s11VideoSDKRTC4SpanP4nameSSvs", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC4SpanP4nameSSvM", + "mangledName": "$s11VideoSDKRTC4SpanP4nameSSvM", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.AttributeValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanP12setAttribute3key5valueySS_AA0E5ValueOSgtF", + "mangledName": "$s11VideoSDKRTC4SpanP12setAttribute3key5valueySS_AA0E5ValueOSgtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanP8addEvent4nameySS_tF", + "mangledName": "$s11VideoSDKRTC4SpanP8addEvent4nameySS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:timestamp:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanP8addEvent4name9timestampySS_10Foundation4DateVtF", + "mangledName": "$s11VideoSDKRTC4SpanP8addEvent4name9timestampySS_10Foundation4DateVtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanP8addEvent4name10attributesySS_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC4SpanP8addEvent4name10attributesySS_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addEvent", + "printedName": "addEvent(name:attributes:timestamp:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanP8addEvent4name10attributes9timestampySS_SDySSAA14AttributeValueOG10Foundation4DateVtF", + "mangledName": "$s11VideoSDKRTC4SpanP8addEvent4name10attributes9timestampySS_SDySSAA14AttributeValueOG10Foundation4DateVtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "end", + "printedName": "end()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanP3endyyF", + "mangledName": "$s11VideoSDKRTC4SpanP3endyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "end", + "printedName": "end(time:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanP3end4timey10Foundation4DateV_tF", + "mangledName": "$s11VideoSDKRTC4SpanP3end4timey10Foundation4DateV_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + }, + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE2eeoiySbAaB_p_AaB_ptFZ", + "mangledName": "$s11VideoSDKRTC4SpanPAAE2eeoiySbAaB_p_AaB_ptFZ", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SStF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SStF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SitF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SitF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SdtF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SdtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SbtF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueySS_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SStF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SStF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SitF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SitF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SdtF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SdtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SemanticAttributes", + "printedName": "VideoSDKRTC.SemanticAttributes", + "usr": "s:11VideoSDKRTC18SemanticAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SbtF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE12setAttribute3key5valueyAA18SemanticAttributesO_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "putHttpHostAttribute", + "printedName": "putHttpHostAttribute(string:int:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE20putHttpHostAttribute6string3intySS_SitF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE20putHttpHostAttribute6string3intySS_SitF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "putHttpStatusCode", + "printedName": "putHttpStatusCode(statusCode:reasonPhrase:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC4SpanPAAE17putHttpStatusCode06statusG012reasonPhraseySi_SStF", + "mangledName": "$s11VideoSDKRTC4SpanPAAE17putHttpStatusCode06statusG012reasonPhraseySi_SStF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Span>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC4SpanP", + "mangledName": "$s11VideoSDKRTC4SpanP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject, τ_0_0 : Swift.CustomStringConvertible>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanAdapter", + "printedName": "SpanAdapter", + "children": [ + { + "kind": "Function", + "name": "toProtoResourceSpans", + "printedName": "toProtoResourceSpans(spanDataList:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanAdapterV20toProtoResourceSpans12spanDataListSayAA014Opentelemetry_f10_Trace_V1_gH0VGSayAA0cJ0VG_tFZ", + "mangledName": "$s11VideoSDKRTC11SpanAdapterV20toProtoResourceSpans12spanDataListSayAA014Opentelemetry_f10_Trace_V1_gH0VGSayAA0cJ0VG_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toProtoSpan", + "printedName": "toProtoSpan(spanData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV" + }, + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanAdapterV07toProtoC08spanDataAA014Opentelemetry_f10_Trace_V1_C0VAA0cH0V_tFZ", + "mangledName": "$s11VideoSDKRTC11SpanAdapterV07toProtoC08spanDataAA014Opentelemetry_f10_Trace_V1_C0VAA0cH0V_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC11SpanAdapterV", + "mangledName": "$s11VideoSDKRTC11SpanAdapterV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanBuilder", + "printedName": "SpanBuilder", + "children": [ + { + "kind": "Function", + "name": "setParent", + "printedName": "setParent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP9setParentyxAA0C0_pF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP9setParentyxAA0C0_pF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setParent", + "printedName": "setParent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP9setParentyxAA0C7ContextVF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP9setParentyxAA0C7ContextVF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setNoParent", + "printedName": "setNoParent()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP11setNoParentxyF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP11setNoParentxyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addLink", + "printedName": "addLink(spanContext:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP7addLink11spanContextxAA0cH0V_tF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP7addLink11spanContextxAA0cH0V_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addLink", + "printedName": "addLink(spanContext:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP7addLink11spanContext10attributesxAA0cH0V_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP7addLink11spanContext10attributesxAA0cH0V_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SStF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SStF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SitF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SitF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SdtF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SdtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SbtF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_AA0F5ValueOtF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP12setAttribute3key5valuexSS_AA0F5ValueOtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSpanKind", + "printedName": "setSpanKind(spanKind:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP03setC4Kind04spanF0xAA0cF0O_tF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP03setC4Kind04spanF0xAA0cF0O_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setStartTime", + "printedName": "setStartTime(time:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP12setStartTime4timex10Foundation4DateV_tF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP12setStartTime4timex10Foundation4DateV_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setActive", + "printedName": "setActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP9setActiveyxSbF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP9setActiveyxSbF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startSpan", + "printedName": "startSpan()", + "children": [ + { + "kind": "TypeNominal", + "name": "Span", + "printedName": "VideoSDKRTC.Span", + "usr": "s:11VideoSDKRTC4SpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderP05startC0AA0C0_pyF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP05startC0AA0C0_pyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SStF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SStF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "declAttributes": [ + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SitF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SitF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "declAttributes": [ + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SdtF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SdtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "declAttributes": [ + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAttribute", + "printedName": "setAttribute(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SbtF", + "mangledName": "$s11VideoSDKRTC11SpanBuilderPAAE12setAttribute3key5valuexSS_SbtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanBuilder>", + "sugared_genericSig": "", + "declAttributes": [ + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC11SpanBuilderP", + "mangledName": "$s11VideoSDKRTC11SpanBuilderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanContext", + "printedName": "SpanContext", + "children": [ + { + "kind": "Var", + "name": "traceId", + "printedName": "traceId", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV7traceIdAA05TraceF0Vvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV7traceIdAA05TraceF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV7traceIdAA05TraceF0Vvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV7traceIdAA05TraceF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanId", + "printedName": "spanId", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV6spanIdAA0cF0Vvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV6spanIdAA0cF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV6spanIdAA0cF0Vvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV6spanIdAA0cF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "traceFlags", + "printedName": "traceFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV10traceFlagsAA05TraceF0Vvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV10traceFlagsAA05TraceF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV10traceFlagsAA05TraceF0Vvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV10traceFlagsAA05TraceF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "traceState", + "printedName": "traceState", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0Vvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0Vvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0Vvs", + "mangledName": "$s11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0VvM", + "mangledName": "$s11VideoSDKRTC11SpanContextV10traceStateAA05TraceF0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isRemote", + "printedName": "isRemote", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV8isRemoteSbvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV8isRemoteSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV8isRemoteSbvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV8isRemoteSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "create", + "printedName": "create(traceId:spanId:traceFlags:traceState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + }, + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanContextV6create7traceId04spanG00F5Flags0F5StateAcA05TraceG0V_AA0cG0VAA0kI0VAA0kJ0VtFZ", + "mangledName": "$s11VideoSDKRTC11SpanContextV6create7traceId04spanG00F5Flags0F5StateAcA05TraceG0V_AA0cG0VAA0kI0VAA0kJ0VtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createFromRemoteParent", + "printedName": "createFromRemoteParent(traceId:spanId:traceFlags:traceState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + }, + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanContextV22createFromRemoteParent7traceId04spanJ00I5Flags0I5StateAcA05TraceJ0V_AA0cJ0VAA0nL0VAA0nM0VtFZ", + "mangledName": "$s11VideoSDKRTC11SpanContextV22createFromRemoteParent7traceId04spanJ00I5Flags0I5StateAcA05TraceJ0V_AA0cJ0VAA0nL0VAA0nM0VtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isValid", + "printedName": "isValid", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV7isValidSbvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV7isValidSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV7isValidSbvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV7isValidSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSampled", + "printedName": "isSampled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV9isSampledSbvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV9isSampledSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV9isSampledSbvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV9isSampledSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanContextV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC11SpanContextV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC11SpanContextV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC11SpanContextV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanContextV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC11SpanContextV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC11SpanContextV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC11SpanContextV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC11SpanContextV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC11SpanContextV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC11SpanContextV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC11SpanContextV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11SpanContextV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC11SpanContextV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC11SpanContextV", + "mangledName": "$s11VideoSDKRTC11SpanContextV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanData", + "printedName": "SpanData", + "children": [ + { + "kind": "Var", + "name": "traceId", + "printedName": "traceId", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV7traceIdAA05TraceF0Vvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV7traceIdAA05TraceF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV7traceIdAA05TraceF0Vvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV7traceIdAA05TraceF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanId", + "printedName": "spanId", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV6spanIdAA0cF0Vvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV6spanIdAA0cF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV6spanIdAA0cF0Vvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV6spanIdAA0cF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "traceFlags", + "printedName": "traceFlags", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV10traceFlagsAA05TraceF0Vvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV10traceFlagsAA05TraceF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV10traceFlagsAA05TraceF0Vvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV10traceFlagsAA05TraceF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "traceState", + "printedName": "traceState", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV10traceStateAA05TraceF0Vvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV10traceStateAA05TraceF0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV10traceStateAA05TraceF0Vvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV10traceStateAA05TraceF0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "parentSpanId", + "printedName": "parentSpanId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanId?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV06parentC2IdAA0cF0VSgvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV06parentC2IdAA0cF0VSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanId?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV06parentC2IdAA0cF0VSgvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV06parentC2IdAA0cF0VSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instrumentationScope", + "printedName": "instrumentationScope", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV20instrumentationScopeAA015InstrumentationF4InfoVvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV20instrumentationScopeAA015InstrumentationF4InfoVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV20instrumentationScopeAA015InstrumentationF4InfoVvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV20instrumentationScopeAA015InstrumentationF4InfoVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV4nameSSvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV4nameSSvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV4kindAA0C4KindOvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV4kindAA0C4KindOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV4kindAA0C4KindOvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV4kindAA0C4KindOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "startTime", + "printedName": "startTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV9startTime10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV9startTime10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV9startTime10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV9startTime10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "events", + "printedName": "events", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Event]", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV6eventsSayAC5EventVGvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV6eventsSayAC5EventVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Event]", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV6eventsSayAC5EventVGvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV6eventsSayAC5EventVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "links", + "printedName": "links", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV5linksSayAC4LinkVGvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV5linksSayAC4LinkVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV5linksSayAC4LinkVGvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV5linksSayAC4LinkVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV6statusAA6StatusOvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV6statusAA6StatusOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV6statusAA6StatusOvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV6statusAA6StatusOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endTime", + "printedName": "endTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV7endTime10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV7endTime10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV7endTime10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV7endTime10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasRemoteParent", + "printedName": "hasRemoteParent", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV15hasRemoteParentSbvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV15hasRemoteParentSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV15hasRemoteParentSbvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV15hasRemoteParentSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasEnded", + "printedName": "hasEnded", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV8hasEndedSbvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV8hasEndedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV8hasEndedSbvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV8hasEndedSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalRecordedEvents", + "printedName": "totalRecordedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV19totalRecordedEventsSivp", + "mangledName": "$s11VideoSDKRTC8SpanDataV19totalRecordedEventsSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV19totalRecordedEventsSivg", + "mangledName": "$s11VideoSDKRTC8SpanDataV19totalRecordedEventsSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalRecordedLinks", + "printedName": "totalRecordedLinks", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV18totalRecordedLinksSivp", + "mangledName": "$s11VideoSDKRTC8SpanDataV18totalRecordedLinksSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV18totalRecordedLinksSivg", + "mangledName": "$s11VideoSDKRTC8SpanDataV18totalRecordedLinksSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalAttributeCount", + "printedName": "totalAttributeCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV19totalAttributeCountSivp", + "mangledName": "$s11VideoSDKRTC8SpanDataV19totalAttributeCountSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV19totalAttributeCountSivg", + "mangledName": "$s11VideoSDKRTC8SpanDataV19totalAttributeCountSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC8SpanDataV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "settingName", + "printedName": "settingName(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV11settingNameyACSSF", + "mangledName": "$s11VideoSDKRTC8SpanDataV11settingNameyACSSF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingTraceId", + "printedName": "settingTraceId(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV14settingTraceIdyAcA0fG0VF", + "mangledName": "$s11VideoSDKRTC8SpanDataV14settingTraceIdyAcA0fG0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingSpanId", + "printedName": "settingSpanId(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV07settingC2IdyAcA0cF0VF", + "mangledName": "$s11VideoSDKRTC8SpanDataV07settingC2IdyAcA0cF0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingTraceFlags", + "printedName": "settingTraceFlags(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV17settingTraceFlagsyAcA0fG0VF", + "mangledName": "$s11VideoSDKRTC8SpanDataV17settingTraceFlagsyAcA0fG0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingTraceState", + "printedName": "settingTraceState(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV17settingTraceStateyAcA0fG0VF", + "mangledName": "$s11VideoSDKRTC8SpanDataV17settingTraceStateyAcA0fG0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingAttributes", + "printedName": "settingAttributes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV17settingAttributesyACSDySSAA14AttributeValueOGF", + "mangledName": "$s11VideoSDKRTC8SpanDataV17settingAttributesyACSDySSAA14AttributeValueOGF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingStartTime", + "printedName": "settingStartTime(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV16settingStartTimeyAC10Foundation4DateVF", + "mangledName": "$s11VideoSDKRTC8SpanDataV16settingStartTimeyAC10Foundation4DateVF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingEndTime", + "printedName": "settingEndTime(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV14settingEndTimeyAC10Foundation4DateVF", + "mangledName": "$s11VideoSDKRTC8SpanDataV14settingEndTimeyAC10Foundation4DateVF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingKind", + "printedName": "settingKind(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV11settingKindyAcA0cF0OF", + "mangledName": "$s11VideoSDKRTC8SpanDataV11settingKindyAcA0cF0OF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingLinks", + "printedName": "settingLinks(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV12settingLinksyACSayAC4LinkVGF", + "mangledName": "$s11VideoSDKRTC8SpanDataV12settingLinksyACSayAC4LinkVGF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingParentSpanId", + "printedName": "settingParentSpanId(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV013settingParentC2IdyAcA0cG0VF", + "mangledName": "$s11VideoSDKRTC8SpanDataV013settingParentC2IdyAcA0cG0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingResource", + "printedName": "settingResource(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV15settingResourceyAcA0F0VF", + "mangledName": "$s11VideoSDKRTC8SpanDataV15settingResourceyAcA0F0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingStatus", + "printedName": "settingStatus(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV13settingStatusyAcA0F0OF", + "mangledName": "$s11VideoSDKRTC8SpanDataV13settingStatusyAcA0F0OF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingEvents", + "printedName": "settingEvents(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Event]", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV13settingEventsyACSayAC5EventVGF", + "mangledName": "$s11VideoSDKRTC8SpanDataV13settingEventsyACSayAC5EventVGF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingHasRemoteParent", + "printedName": "settingHasRemoteParent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV22settingHasRemoteParentyACSbF", + "mangledName": "$s11VideoSDKRTC8SpanDataV22settingHasRemoteParentyACSbF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingHasEnded", + "printedName": "settingHasEnded(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV15settingHasEndedyACSbF", + "mangledName": "$s11VideoSDKRTC8SpanDataV15settingHasEndedyACSbF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingTotalRecordedEvents", + "printedName": "settingTotalRecordedEvents(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV26settingTotalRecordedEventsyACSiF", + "mangledName": "$s11VideoSDKRTC8SpanDataV26settingTotalRecordedEventsyACSiF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingTotalRecordedLinks", + "printedName": "settingTotalRecordedLinks(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV25settingTotalRecordedLinksyACSiF", + "mangledName": "$s11VideoSDKRTC8SpanDataV25settingTotalRecordedLinksyACSiF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingTotalAttributeCount", + "printedName": "settingTotalAttributeCount(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV26settingTotalAttributeCountyACSiF", + "mangledName": "$s11VideoSDKRTC8SpanDataV26settingTotalAttributeCountyACSiF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SpanDataV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC8SpanDataV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC8SpanDataV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Event", + "printedName": "Event", + "children": [ + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV9timestamp10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV9timestamp10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV9timestamp10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV9timestamp10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV4nameSSvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV4nameSSvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:timestamp:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV4name9timestamp10attributesAESS_10Foundation4DateVSDySSAA14AttributeValueOGSgtcfc", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV4name9timestamp10attributesAESS_10Foundation4DateVSDySSAA14AttributeValueOGSgtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(timestamp:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV9timestamp5eventAE10Foundation4DateV_AEtcfc", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV9timestamp5eventAE10Foundation4DateV_AEtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV4fromAEs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.SpanData.Event", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC8SpanDataV5EventV", + "mangledName": "$s11VideoSDKRTC8SpanDataV5EventV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Link", + "printedName": "Link", + "children": [ + { + "kind": "Var", + "name": "context", + "printedName": "context", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV7contextAA0C7ContextVvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV7contextAA0C7ContextVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV7contextAA0C7ContextVvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV7contextAA0C7ContextVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV10attributesSDySSAA14AttributeValueOGvp", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV10attributesSDySSAA14AttributeValueOGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV10attributesSDySSAA14AttributeValueOGvg", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV10attributesSDySSAA14AttributeValueOGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(context:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV7context10attributesAeA0C7ContextV_SDySSAA14AttributeValueOGtcfc", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV7context10attributesAeA0C7ContextV_SDySSAA14AttributeValueOGtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV4fromAEs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV", + "mangledName": "$s11VideoSDKRTC8SpanDataV4LinkV", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC8SpanDataV", + "mangledName": "$s11VideoSDKRTC8SpanDataV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + }, + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC2eeoiySbAA8SpanDataV4LinkV_AFtF", + "mangledName": "$s11VideoSDKRTC2eeoiySbAA8SpanDataV4LinkV_AFtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.SpanData.Link", + "usr": "s:11VideoSDKRTC8SpanDataV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC2eeoiySbSayAA8SpanDataV4LinkVG_AGtF", + "mangledName": "$s11VideoSDKRTC2eeoiySbSayAA8SpanDataV4LinkVG_AGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanExporter", + "printedName": "SpanExporter", + "children": [ + { + "kind": "Function", + "name": "export", + "printedName": "export(spans:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanData]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanData", + "printedName": "VideoSDKRTC.SpanData", + "usr": "s:11VideoSDKRTC8SpanDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12SpanExporterP6export5spansAA0cD10ResultCodeOSayAA0C4DataVG_tF", + "mangledName": "$s11VideoSDKRTC12SpanExporterP6export5spansAA0cD10ResultCodeOSayAA0C4DataVG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12SpanExporterP5flushAA0cD10ResultCodeOyF", + "mangledName": "$s11VideoSDKRTC12SpanExporterP5flushAA0cD10ResultCodeOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC12SpanExporterP8shutdownyyF", + "mangledName": "$s11VideoSDKRTC12SpanExporterP8shutdownyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC12SpanExporterP", + "mangledName": "$s11VideoSDKRTC12SpanExporterP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanExporterResultCode", + "printedName": "SpanExporterResultCode", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SpanExporterResultCode.Type) -> VideoSDKRTC.SpanExporterResultCode", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SpanExporterResultCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO7successyA2CmF", + "mangledName": "$s11VideoSDKRTC22SpanExporterResultCodeO7successyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "failure", + "printedName": "failure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SpanExporterResultCode.Type) -> VideoSDKRTC.SpanExporterResultCode", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SpanExporterResultCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO7failureyA2CmF", + "mangledName": "$s11VideoSDKRTC22SpanExporterResultCodeO7failureyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + }, + { + "kind": "TypeNominal", + "name": "SpanExporterResultCode", + "printedName": "VideoSDKRTC.SpanExporterResultCode", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC22SpanExporterResultCodeO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC22SpanExporterResultCodeO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC22SpanExporterResultCodeO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC22SpanExporterResultCodeO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC22SpanExporterResultCodeO", + "mangledName": "$s11VideoSDKRTC22SpanExporterResultCodeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanId", + "printedName": "SpanId", + "children": [ + { + "kind": "Var", + "name": "size", + "printedName": "size", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV4sizeSivpZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV4sizeSivpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV4sizeSivgZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV4sizeSivgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "invalidId", + "printedName": "invalidId", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV07invalidD0s6UInt64VvpZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV07invalidD0s6UInt64VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV07invalidD0s6UInt64VvgZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV07invalidD0s6UInt64VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "invalid", + "printedName": "invalid", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV7invalidACvpZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV7invalidACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV7invalidACvgZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV7invalidACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getSize", + "printedName": "getSize()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV7getSizeSiyFZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV7getSizeSiyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(id:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6SpanIdV2idACs6UInt64V_tcfc", + "mangledName": "$s11VideoSDKRTC6SpanIdV2idACs6UInt64V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6SpanIdVACycfc", + "mangledName": "$s11VideoSDKRTC6SpanIdVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "random", + "printedName": "random()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV6randomACyFZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV6randomACyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromBytes:withOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6SpanIdV9fromBytes10withOffsetACSays5UInt8VG_Sitcfc", + "mangledName": "$s11VideoSDKRTC6SpanIdV9fromBytes10withOffsetACSays5UInt8VG_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromBytes:withOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:s10ArraySliceV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6SpanIdV9fromBytes10withOffsetACs10ArraySliceVys5UInt8VG_Sitcfc", + "mangledName": "$s11VideoSDKRTC6SpanIdV9fromBytes10withOffsetACs10ArraySliceVys5UInt8VG_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromBytes:withOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ], + "usr": "s:s10ArraySliceV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6SpanIdV9fromBytes10withOffsetACs10ArraySliceVySJG_Sitcfc", + "mangledName": "$s11VideoSDKRTC6SpanIdV9fromBytes10withOffsetACs10ArraySliceVySJG_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "copyBytesTo", + "printedName": "copyBytesTo(dest:destOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "paramValueOwnership": "InOut", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV11copyBytesTo4dest0H6Offsety10Foundation4DataVz_SitF", + "mangledName": "$s11VideoSDKRTC6SpanIdV11copyBytesTo4dest0H6Offsety10Foundation4DataVz_SitF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyBytesTo", + "printedName": "copyBytesTo(dest:destOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV11copyBytesTo4dest0H6OffsetySays5UInt8VGz_SitF", + "mangledName": "$s11VideoSDKRTC6SpanIdV11copyBytesTo4dest0H6OffsetySays5UInt8VGz_SitF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyBytesTo", + "printedName": "copyBytesTo(dest:destOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:s10ArraySliceV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV11copyBytesTo4dest0H6Offsetys10ArraySliceVys5UInt8VGz_SitF", + "mangledName": "$s11VideoSDKRTC6SpanIdV11copyBytesTo4dest0H6Offsetys10ArraySliceVys5UInt8VGz_SitF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromHexString:withOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6SpanIdV13fromHexString10withOffsetACSS_Sitcfc", + "mangledName": "$s11VideoSDKRTC6SpanIdV13fromHexString10withOffsetACSS_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "hexString", + "printedName": "hexString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV9hexStringSSvp", + "mangledName": "$s11VideoSDKRTC6SpanIdV9hexStringSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV9hexStringSSvg", + "mangledName": "$s11VideoSDKRTC6SpanIdV9hexStringSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV8rawValues6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC6SpanIdV8rawValues6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV8rawValues6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC6SpanIdV8rawValues6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isValid", + "printedName": "isValid", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV7isValidSbvp", + "mangledName": "$s11VideoSDKRTC6SpanIdV7isValidSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV7isValidSbvg", + "mangledName": "$s11VideoSDKRTC6SpanIdV7isValidSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC6SpanIdV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC6SpanIdV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV1loiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV1loiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC6SpanIdV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanId", + "printedName": "VideoSDKRTC.SpanId", + "usr": "s:11VideoSDKRTC6SpanIdV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6SpanIdV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC6SpanIdV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6SpanIdV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC6SpanIdV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6SpanIdV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC6SpanIdV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC6SpanIdV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SpanIdV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC6SpanIdV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC6SpanIdV", + "mangledName": "$s11VideoSDKRTC6SpanIdV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanKind", + "printedName": "SpanKind", + "children": [ + { + "kind": "Var", + "name": "internal", + "printedName": "internal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SpanKind.Type) -> VideoSDKRTC.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SpanKindO8internalyA2CmF", + "mangledName": "$s11VideoSDKRTC8SpanKindO8internalyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "server", + "printedName": "server", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SpanKind.Type) -> VideoSDKRTC.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SpanKindO6serveryA2CmF", + "mangledName": "$s11VideoSDKRTC8SpanKindO6serveryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "client", + "printedName": "client", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SpanKind.Type) -> VideoSDKRTC.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SpanKindO6clientyA2CmF", + "mangledName": "$s11VideoSDKRTC8SpanKindO6clientyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "producer", + "printedName": "producer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SpanKind.Type) -> VideoSDKRTC.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SpanKindO8produceryA2CmF", + "mangledName": "$s11VideoSDKRTC8SpanKindO8produceryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "consumer", + "printedName": "consumer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.SpanKind.Type) -> VideoSDKRTC.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC8SpanKindO8consumeryA2CmF", + "mangledName": "$s11VideoSDKRTC8SpanKindO8consumeryA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanKind?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.SpanKind", + "usr": "s:11VideoSDKRTC8SpanKindO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC8SpanKindO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC8SpanKindO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC8SpanKindO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC8SpanKindO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC8SpanKindO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC8SpanKindO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC8SpanKindO", + "mangledName": "$s11VideoSDKRTC8SpanKindO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanLimits", + "printedName": "SpanLimits", + "children": [ + { + "kind": "Var", + "name": "attributeCountLimit", + "printedName": "attributeCountLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10SpanLimitsV19attributeCountLimitSivp", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV19attributeCountLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10SpanLimitsV19attributeCountLimitSivg", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV19attributeCountLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventCountLimit", + "printedName": "eventCountLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10SpanLimitsV15eventCountLimitSivp", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV15eventCountLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10SpanLimitsV15eventCountLimitSivg", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV15eventCountLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "linkCountLimit", + "printedName": "linkCountLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10SpanLimitsV14linkCountLimitSivp", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV14linkCountLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10SpanLimitsV14linkCountLimitSivg", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV14linkCountLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributePerEventCountLimit", + "printedName": "attributePerEventCountLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10SpanLimitsV27attributePerEventCountLimitSivp", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV27attributePerEventCountLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10SpanLimitsV27attributePerEventCountLimitSivg", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV27attributePerEventCountLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributePerLinkCountLimit", + "printedName": "attributePerLinkCountLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10SpanLimitsV26attributePerLinkCountLimitSivp", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV26attributePerLinkCountLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10SpanLimitsV26attributePerLinkCountLimitSivg", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV26attributePerLinkCountLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10SpanLimitsVACycfc", + "mangledName": "$s11VideoSDKRTC10SpanLimitsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "settingAttributeCountLimit", + "printedName": "settingAttributeCountLimit(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SpanLimitsV26settingAttributeCountLimityACSuF", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV26settingAttributeCountLimityACSuF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "settingEventCountLimit", + "printedName": "settingEventCountLimit(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SpanLimitsV22settingEventCountLimityACSuF", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV22settingEventCountLimityACSuF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "settingLinkCountLimit", + "printedName": "settingLinkCountLimit(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SpanLimitsV21settingLinkCountLimityACSuF", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV21settingLinkCountLimityACSuF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "settingAttributePerEventCountLimit", + "printedName": "settingAttributePerEventCountLimit(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SpanLimitsV34settingAttributePerEventCountLimityACSuF", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV34settingAttributePerEventCountLimityACSuF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "settingAttributePerLinkCountLimit", + "printedName": "settingAttributePerLinkCountLimit(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SpanLimitsV33settingAttributePerLinkCountLimityACSuF", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV33settingAttributePerLinkCountLimityACSuF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SpanLimitsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC10SpanLimitsV", + "mangledName": "$s11VideoSDKRTC10SpanLimitsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SpanProcessor", + "printedName": "SpanProcessor", + "children": [ + { + "kind": "Var", + "name": "isStartRequired", + "printedName": "isStartRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13SpanProcessorP15isStartRequiredSbvp", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP15isStartRequiredSbvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP15isStartRequiredSbvg", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP15isStartRequiredSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isEndRequired", + "printedName": "isEndRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13SpanProcessorP13isEndRequiredSbvp", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP13isEndRequiredSbvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP13isEndRequiredSbvg", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP13isEndRequiredSbvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "onStart", + "printedName": "onStart(parentContext:span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13SpanProcessorP7onStart13parentContext4spanyAA0cH0VSg_AA08ReadableC0_ptF", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP7onStart13parentContext4spanyAA0cH0VSg_AA08ReadableC0_ptF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onEnd", + "printedName": "onEnd(span:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ReadableSpan", + "printedName": "VideoSDKRTC.ReadableSpan", + "usr": "s:11VideoSDKRTC12ReadableSpanP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13SpanProcessorP5onEnd4spanyAA08ReadableC0_p_tF", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP5onEnd4spanyAA08ReadableC0_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13SpanProcessorP8shutdownyyF", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP8shutdownyyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush(timeout:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC13SpanProcessorP10forceFlush7timeoutySdSg_tF", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP10forceFlush7timeoutySdSg_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SpanProcessor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC13SpanProcessorP", + "mangledName": "$s11VideoSDKRTC13SpanProcessorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SPBDecoder", + "printedName": "SPBDecoder", + "children": [ + { + "kind": "Function", + "name": "handleConflictingOneOf", + "printedName": "handleConflictingOneOf()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP22handleConflictingOneOfyyKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP22handleConflictingOneOfyyKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "nextFieldNumber", + "printedName": "nextFieldNumber()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP15nextFieldNumberSiSgyKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP15nextFieldNumberSiSgyKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularFloatField", + "printedName": "decodeSingularFloatField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "paramValueOwnership": "InOut", + "usr": "s:Sf" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularFloatField5valueySfz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularFloatField5valueySfz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularFloatField", + "printedName": "decodeSingularFloatField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Float?", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularFloatField5valueySfSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularFloatField5valueySfSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedFloatField", + "printedName": "decodeRepeatedFloatField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeRepeatedFloatField5valueySaySfGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeRepeatedFloatField5valueySaySfGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularDoubleField", + "printedName": "decodeSingularDoubleField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "paramValueOwnership": "InOut", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularDoubleField5valueySdz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularDoubleField5valueySdz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularDoubleField", + "printedName": "decodeSingularDoubleField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularDoubleField5valueySdSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularDoubleField5valueySdSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedDoubleField", + "printedName": "decodeRepeatedDoubleField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeRepeatedDoubleField5valueySaySdGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeRepeatedDoubleField5valueySaySdGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularInt32Field", + "printedName": "decodeSingularInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "paramValueOwnership": "InOut", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularInt32Field5valueys0F0Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularInt32Field5valueys0F0Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularInt32Field", + "printedName": "decodeSingularInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int32?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularInt32Field5valueys0F0VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularInt32Field5valueys0F0VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedInt32Field", + "printedName": "decodeRepeatedInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeRepeatedInt32Field5valueySays0F0VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeRepeatedInt32Field5valueySays0F0VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularInt64Field", + "printedName": "decodeSingularInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "paramValueOwnership": "InOut", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularInt64Field5valueys0F0Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularInt64Field5valueys0F0Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularInt64Field", + "printedName": "decodeSingularInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularInt64Field5valueys0F0VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularInt64Field5valueys0F0VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedInt64Field", + "printedName": "decodeRepeatedInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeRepeatedInt64Field5valueySays0F0VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeRepeatedInt64Field5valueySays0F0VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularUInt32Field", + "printedName": "decodeSingularUInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "paramValueOwnership": "InOut", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularUInt32Field5valueys0F0Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularUInt32Field5valueys0F0Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularUInt32Field", + "printedName": "decodeSingularUInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularUInt32Field5valueys0F0VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularUInt32Field5valueys0F0VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedUInt32Field", + "printedName": "decodeRepeatedUInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeRepeatedUInt32Field5valueySays0F0VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeRepeatedUInt32Field5valueySays0F0VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularUInt64Field", + "printedName": "decodeSingularUInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "paramValueOwnership": "InOut", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularUInt64Field5valueys0F0Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularUInt64Field5valueys0F0Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularUInt64Field", + "printedName": "decodeSingularUInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt64?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularUInt64Field5valueys0F0VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularUInt64Field5valueys0F0VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedUInt64Field", + "printedName": "decodeRepeatedUInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeRepeatedUInt64Field5valueySays0F0VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeRepeatedUInt64Field5valueySays0F0VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSInt32Field", + "printedName": "decodeSingularSInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "paramValueOwnership": "InOut", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularSInt32Field5valueys5Int32Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularSInt32Field5valueys5Int32Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSInt32Field", + "printedName": "decodeSingularSInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int32?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularSInt32Field5valueys5Int32VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularSInt32Field5valueys5Int32VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedSInt32Field", + "printedName": "decodeRepeatedSInt32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeRepeatedSInt32Field5valueySays5Int32VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeRepeatedSInt32Field5valueySays5Int32VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSInt64Field", + "printedName": "decodeSingularSInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "paramValueOwnership": "InOut", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularSInt64Field5valueys5Int64Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularSInt64Field5valueys5Int64Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSInt64Field", + "printedName": "decodeSingularSInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularSInt64Field5valueys5Int64VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularSInt64Field5valueys5Int64VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedSInt64Field", + "printedName": "decodeRepeatedSInt64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeRepeatedSInt64Field5valueySays5Int64VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeRepeatedSInt64Field5valueySays5Int64VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularFixed32Field", + "printedName": "decodeSingularFixed32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "paramValueOwnership": "InOut", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeSingularFixed32Field5valueys6UInt32Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeSingularFixed32Field5valueys6UInt32Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularFixed32Field", + "printedName": "decodeSingularFixed32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeSingularFixed32Field5valueys6UInt32VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeSingularFixed32Field5valueys6UInt32VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedFixed32Field", + "printedName": "decodeRepeatedFixed32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeRepeatedFixed32Field5valueySays6UInt32VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeRepeatedFixed32Field5valueySays6UInt32VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularFixed64Field", + "printedName": "decodeSingularFixed64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "paramValueOwnership": "InOut", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeSingularFixed64Field5valueys6UInt64Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeSingularFixed64Field5valueys6UInt64Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularFixed64Field", + "printedName": "decodeSingularFixed64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt64?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeSingularFixed64Field5valueys6UInt64VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeSingularFixed64Field5valueys6UInt64VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedFixed64Field", + "printedName": "decodeRepeatedFixed64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeRepeatedFixed64Field5valueySays6UInt64VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeRepeatedFixed64Field5valueySays6UInt64VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSFixed32Field", + "printedName": "decodeSingularSFixed32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "paramValueOwnership": "InOut", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed32Field5valueys5Int32Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed32Field5valueys5Int32Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSFixed32Field", + "printedName": "decodeSingularSFixed32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int32?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed32Field5valueys5Int32VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed32Field5valueys5Int32VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedSFixed32Field", + "printedName": "decodeRepeatedSFixed32Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP27decodeRepeatedSFixed32Field5valueySays5Int32VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP27decodeRepeatedSFixed32Field5valueySays5Int32VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSFixed64Field", + "printedName": "decodeSingularSFixed64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "paramValueOwnership": "InOut", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed64Field5valueys5Int64Vz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed64Field5valueys5Int64Vz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularSFixed64Field", + "printedName": "decodeSingularSFixed64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed64Field5valueys5Int64VSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP27decodeSingularSFixed64Field5valueys5Int64VSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedSFixed64Field", + "printedName": "decodeRepeatedSFixed64Field(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP27decodeRepeatedSFixed64Field5valueySays5Int64VGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP27decodeRepeatedSFixed64Field5valueySays5Int64VGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularBoolField", + "printedName": "decodeSingularBoolField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "paramValueOwnership": "InOut", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP23decodeSingularBoolField5valueySbz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP23decodeSingularBoolField5valueySbz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularBoolField", + "printedName": "decodeSingularBoolField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP23decodeSingularBoolField5valueySbSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP23decodeSingularBoolField5valueySbSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedBoolField", + "printedName": "decodeRepeatedBoolField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP23decodeRepeatedBoolField5valueySaySbGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP23decodeRepeatedBoolField5valueySaySbGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularStringField", + "printedName": "decodeSingularStringField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "paramValueOwnership": "InOut", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularStringField5valueySSz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularStringField5valueySSz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularStringField", + "printedName": "decodeSingularStringField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeSingularStringField5valueySSSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeSingularStringField5valueySSSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedStringField", + "printedName": "decodeRepeatedStringField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP25decodeRepeatedStringField5valueySaySSGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP25decodeRepeatedStringField5valueySaySSGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularBytesField", + "printedName": "decodeSingularBytesField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "paramValueOwnership": "InOut", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularBytesField5valuey10Foundation4DataVz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularBytesField5valuey10Foundation4DataVz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularBytesField", + "printedName": "decodeSingularBytesField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularBytesField5valuey10Foundation4DataVSgz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularBytesField5valuey10Foundation4DataVSgz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedBytesField", + "printedName": "decodeRepeatedBytesField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeRepeatedBytesField5valueySay10Foundation4DataVGz_tKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeRepeatedBytesField5valueySay10Foundation4DataVGz_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularEnumField", + "printedName": "decodeSingularEnumField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP23decodeSingularEnumField5valueyqd__z_tKAA0F0Rd__Si8RawValueRtd__lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP23decodeSingularEnumField5valueyqd__z_tKAA0F0Rd__Si8RawValueRtd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.Enum, τ_1_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularEnumField", + "printedName": "decodeSingularEnumField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP23decodeSingularEnumField5valueyqd__Sgz_tKAA0F0Rd__Si8RawValueRtd__lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP23decodeSingularEnumField5valueyqd__Sgz_tKAA0F0Rd__Si8RawValueRtd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.Enum, τ_1_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedEnumField", + "printedName": "decodeRepeatedEnumField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP23decodeRepeatedEnumField5valueySayqd__Gz_tKAA0F0Rd__Si8RawValueRtd__lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP23decodeRepeatedEnumField5valueySayqd__Gz_tKAA0F0Rd__Si8RawValueRtd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.Enum, τ_1_0.RawValue == Swift.Int>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularMessageField", + "printedName": "decodeSingularMessageField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeSingularMessageField5valueyqd__Sgz_tKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeSingularMessageField5valueyqd__Sgz_tKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedMessageField", + "printedName": "decodeRepeatedMessageField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP26decodeRepeatedMessageField5valueySayqd__Gz_tKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP26decodeRepeatedMessageField5valueySayqd__Gz_tKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeSingularGroupField", + "printedName": "decodeSingularGroupField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeSingularGroupField5valueyqd__Sgz_tKAA7MessageRd__lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeSingularGroupField5valueyqd__Sgz_tKAA7MessageRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeRepeatedGroupField", + "printedName": "decodeRepeatedGroupField(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP24decodeRepeatedGroupField5valueySayqd__Gz_tKAA7MessageRd__lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP24decodeRepeatedGroupField5valueySayqd__Gz_tKAA7MessageRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeMapField", + "printedName": "decodeMapField(fieldType:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._ProtobufMap<τ_1_0, τ_1_1>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProtobufMap", + "printedName": "VideoSDKRTC._ProtobufMap<τ_1_0, τ_1_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:11VideoSDKRTC12_ProtobufMapV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_1_0.BaseType : τ_1_1.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_1.BaseType" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP14decodeMapField9fieldType5valueyAA09_ProtobufE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__AJQyd_0_GztKAA0e3KeyH0Rd__AA0e5ValueH0Rd_0_r0_lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP14decodeMapField9fieldType5valueyAA09_ProtobufE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__AJQyd_0_GztKAA0e3KeyH0Rd__AA0e5ValueH0Rd_0_r0_lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0, τ_1_1 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.MapKeyType, τ_1_1 : VideoSDKRTC.MapValueType>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeMapField", + "printedName": "decodeMapField(fieldType:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._ProtobufEnumMap<τ_1_0, τ_1_1>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProtobufEnumMap", + "printedName": "VideoSDKRTC._ProtobufEnumMap<τ_1_0, τ_1_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:11VideoSDKRTC16_ProtobufEnumMapV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_1_0.BaseType : τ_1_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP14decodeMapField9fieldType5valueyAA013_ProtobufEnumE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GztKAA0e3KeyH0Rd__AA0K0Rd_0_Si8RawValueRtd_0_r0_lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP14decodeMapField9fieldType5valueyAA013_ProtobufEnumE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GztKAA0e3KeyH0Rd__AA0K0Rd_0_Si8RawValueRtd_0_r0_lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0, τ_1_1 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.MapKeyType, τ_1_1 : VideoSDKRTC.Enum, τ_1_1.RawValue == Swift.Int>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeMapField", + "printedName": "decodeMapField(fieldType:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._ProtobufMessageMap<τ_1_0, τ_1_1>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProtobufMessageMap", + "printedName": "VideoSDKRTC._ProtobufMessageMap<τ_1_0, τ_1_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:11VideoSDKRTC19_ProtobufMessageMapV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_1_0.BaseType : τ_1_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP14decodeMapField9fieldType5valueyAA016_ProtobufMessageE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GztKAA0e3KeyH0Rd__SHRd_0_AA0K0Rd_0_r0_lF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP14decodeMapField9fieldType5valueyAA016_ProtobufMessageE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GztKAA0e3KeyH0Rd__SHRd_0_AA0K0Rd_0_r0_lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0, τ_1_1 where τ_0_0 : VideoSDKRTC.SPBDecoder, τ_1_0 : VideoSDKRTC.MapKeyType, τ_1_1 : Swift.Hashable, τ_1_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeExtensionField", + "printedName": "decodeExtensionField(values:messageType:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "paramValueOwnership": "InOut", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP20decodeExtensionField6values11messageType11fieldNumberyAA0eF8ValueSetVz_AA7Message_pXpSitKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP20decodeExtensionField6values11messageType11fieldNumberyAA0eF8ValueSetVz_AA7Message_pXpSitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeExtensionFieldsAsMessageSet", + "printedName": "decodeExtensionFieldsAsMessageSet(values:messageType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "paramValueOwnership": "InOut", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderP33decodeExtensionFieldsAsMessageSet6values11messageTypeyAA0e10FieldValueI0Vz_AA0H0_pXptKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP33decodeExtensionFieldsAsMessageSet6values11messageTypeyAA0e10FieldValueI0Vz_AA0H0_pXptKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "decodeExtensionFieldsAsMessageSet", + "printedName": "decodeExtensionFieldsAsMessageSet(values:messageType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "paramValueOwnership": "InOut", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "VideoSDKRTC.Message.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Message", + "printedName": "VideoSDKRTC.Message", + "usr": "s:11VideoSDKRTC7MessageP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10SPBDecoderPAAE33decodeExtensionFieldsAsMessageSet6values11messageTypeyAA0e10FieldValueI0Vz_AA0H0_pXptKF", + "mangledName": "$s11VideoSDKRTC10SPBDecoderPAAE33decodeExtensionFieldsAsMessageSet6values11messageTypeyAA0e10FieldValueI0Vz_AA0H0_pXptKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC10SPBDecoderP", + "mangledName": "$s11VideoSDKRTC10SPBDecoderP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableAggregator", + "printedName": "StableAggregator", + "children": [ + { + "kind": "Function", + "name": "diff", + "printedName": "diff(previousCumulative:currentCumulative:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16StableAggregatorP4diff18previousCumulative07currentG0AA9PointDataCAH_AHtKF", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP4diff18previousCumulative07currentG0AA9PointDataCAH_AHtKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableAggregator>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toPoint", + "printedName": "toPoint(measurement:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + }, + { + "kind": "TypeNominal", + "name": "Measurement", + "printedName": "VideoSDKRTC.Measurement", + "usr": "s:11VideoSDKRTC11MeasurementV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16StableAggregatorP7toPoint11measurementAA0F4DataCAA11MeasurementV_tKF", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP7toPoint11measurementAA0F4DataCAA11MeasurementV_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableAggregator>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createHandle", + "printedName": "createHandle()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregatorHandle", + "printedName": "VideoSDKRTC.AggregatorHandle", + "usr": "s:11VideoSDKRTC16AggregatorHandleC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16StableAggregatorP12createHandleAA0dF0CyF", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP12createHandleAA0dF0CyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableAggregator>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toMetricData", + "printedName": "toMetricData(resource:scope:descriptor:points:temporality:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16StableAggregatorP12toMetricData8resource5scope10descriptor6points11temporalityAA0cfG0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0F10DescriptorVSayAA05PointG0CGAA22AggregationTemporalityOtF", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP12toMetricData8resource5scope10descriptor6points11temporalityAA0cfG0VAA8ResourceV_AA24InstrumentationScopeInfoVAA0F10DescriptorVSayAA05PointG0CGAA22AggregationTemporalityOtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableAggregator>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC16StableAggregatorP", + "mangledName": "$s11VideoSDKRTC16StableAggregatorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableMeter", + "printedName": "StableMeter", + "children": [ + { + "kind": "Function", + "name": "counterBuilder", + "printedName": "counterBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LongCounterBuilder", + "printedName": "VideoSDKRTC.LongCounterBuilder", + "usr": "s:11VideoSDKRTC18LongCounterBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11StableMeterP14counterBuilder4nameAA011LongCounterF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC11StableMeterP14counterBuilder4nameAA011LongCounterF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMeter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "upDownCounterBuilder", + "printedName": "upDownCounterBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LongUpDownCounterBuilder", + "printedName": "VideoSDKRTC.LongUpDownCounterBuilder", + "usr": "s:11VideoSDKRTC24LongUpDownCounterBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11StableMeterP20upDownCounterBuilder4nameAA06LongUpfgH0_pSS_tF", + "mangledName": "$s11VideoSDKRTC11StableMeterP20upDownCounterBuilder4nameAA06LongUpfgH0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMeter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "histogramBuilder", + "printedName": "histogramBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleHistogramBuilder", + "printedName": "VideoSDKRTC.DoubleHistogramBuilder", + "usr": "s:11VideoSDKRTC22DoubleHistogramBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11StableMeterP16histogramBuilder4nameAA015DoubleHistogramF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC11StableMeterP16histogramBuilder4nameAA015DoubleHistogramF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMeter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "gaugeBuilder", + "printedName": "gaugeBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DoubleGaugeBuilder", + "printedName": "VideoSDKRTC.DoubleGaugeBuilder", + "usr": "s:11VideoSDKRTC18DoubleGaugeBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11StableMeterP12gaugeBuilder4nameAA011DoubleGaugeF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC11StableMeterP12gaugeBuilder4nameAA011DoubleGaugeF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMeter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC11StableMeterP", + "mangledName": "$s11VideoSDKRTC11StableMeterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableMeterProvider", + "printedName": "StableMeterProvider", + "children": [ + { + "kind": "Function", + "name": "get", + "printedName": "get(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeter", + "printedName": "VideoSDKRTC.StableMeter", + "usr": "s:11VideoSDKRTC11StableMeterP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19StableMeterProviderP3get4nameAA0cD0_pSS_tF", + "mangledName": "$s11VideoSDKRTC19StableMeterProviderP3get4nameAA0cD0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMeterProvider>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "meterBuilder", + "printedName": "meterBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterBuilder", + "printedName": "VideoSDKRTC.MeterBuilder", + "usr": "s:11VideoSDKRTC12MeterBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC19StableMeterProviderP12meterBuilder4nameAA0dG0_pSS_tF", + "mangledName": "$s11VideoSDKRTC19StableMeterProviderP12meterBuilder4nameAA0dG0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMeterProvider>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC19StableMeterProviderP", + "mangledName": "$s11VideoSDKRTC19StableMeterProviderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableMeterProviderBuilder", + "printedName": "StableMeterProviderBuilder", + "children": [ + { + "kind": "Var", + "name": "clock", + "printedName": "clock", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC5clockAA5Clock_pvp", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC5clockAA5Clock_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC5clockAA5Clock_pvg", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC5clockAA5Clock_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metricReaders", + "printedName": "metricReaders", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.StableMetricReader]", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricReader", + "printedName": "VideoSDKRTC.StableMetricReader", + "usr": "s:11VideoSDKRTC18StableMetricReaderP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC13metricReadersSayAA0C12MetricReader_pGvp", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC13metricReadersSayAA0C12MetricReader_pGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.StableMetricReader]", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricReader", + "printedName": "VideoSDKRTC.StableMetricReader", + "usr": "s:11VideoSDKRTC18StableMetricReaderP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC13metricReadersSayAA0C12MetricReader_pGvg", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC13metricReadersSayAA0C12MetricReader_pGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "registeredViews", + "printedName": "registeredViews", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.RegisteredView]", + "children": [ + { + "kind": "TypeNominal", + "name": "RegisteredView", + "printedName": "VideoSDKRTC.RegisteredView", + "usr": "s:11VideoSDKRTC14RegisteredViewC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC15registeredViewsSayAA14RegisteredViewCGvp", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC15registeredViewsSayAA14RegisteredViewCGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.RegisteredView]", + "children": [ + { + "kind": "TypeNominal", + "name": "RegisteredView", + "printedName": "VideoSDKRTC.RegisteredView", + "usr": "s:11VideoSDKRTC14RegisteredViewC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC15registeredViewsSayAA14RegisteredViewCGvg", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC15registeredViewsSayAA14RegisteredViewCGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "exemplarFilter", + "printedName": "exemplarFilter", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC14exemplarFilterAA08ExemplarH0_pvp", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC14exemplarFilterAA08ExemplarH0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC14exemplarFilterAA08ExemplarH0_pvg", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC14exemplarFilterAA08ExemplarH0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeterProviderBuilder", + "printedName": "VideoSDKRTC.StableMeterProviderBuilder", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderCACycfc", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setClock", + "printedName": "setClock(clock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC8setClock5clockACXDAA0H0_p_tF", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC8setClock5clockACXDAA0H0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setResource", + "printedName": "setResource(resource:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC11setResource8resourceACXDAA0H0V_tF", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC11setResource8resourceACXDAA0H0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerView", + "printedName": "registerView(selector:view:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "InstrumentSelector", + "printedName": "VideoSDKRTC.InstrumentSelector", + "usr": "s:11VideoSDKRTC18InstrumentSelectorC" + }, + { + "kind": "TypeNominal", + "name": "StableView", + "printedName": "VideoSDKRTC.StableView", + "usr": "s:11VideoSDKRTC10StableViewC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC12registerView8selector4viewACXDAA18InstrumentSelectorC_AA0cH0CtF", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC12registerView8selector4viewACXDAA18InstrumentSelectorC_AA0cH0CtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerMetricReader", + "printedName": "registerMetricReader(reader:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "StableMetricReader", + "printedName": "VideoSDKRTC.StableMetricReader", + "usr": "s:11VideoSDKRTC18StableMetricReaderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC20registerMetricReader6readerACXDAA0chI0_p_tF", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC20registerMetricReader6readerACXDAA0chI0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeterProviderSdk", + "printedName": "VideoSDKRTC.StableMeterProviderSdk", + "usr": "s:11VideoSDKRTC22StableMeterProviderSdkC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC5buildAA0cdE3SdkCyF", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC5buildAA0cdE3SdkCyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC", + "mangledName": "$s11VideoSDKRTC26StableMeterProviderBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeterProviderError", + "printedName": "MeterProviderError", + "declKind": "Class", + "usr": "s:11VideoSDKRTC18MeterProviderErrorC", + "mangledName": "$s11VideoSDKRTC18MeterProviderErrorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StableMeterProviderSdk", + "printedName": "StableMeterProviderSdk", + "children": [ + { + "kind": "Function", + "name": "get", + "printedName": "get(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeter", + "printedName": "VideoSDKRTC.StableMeter", + "usr": "s:11VideoSDKRTC11StableMeterP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22StableMeterProviderSdkC3get4nameAA0cD0_pSS_tF", + "mangledName": "$s11VideoSDKRTC22StableMeterProviderSdkC3get4nameAA0cD0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "meterBuilder", + "printedName": "meterBuilder(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterBuilder", + "printedName": "VideoSDKRTC.MeterBuilder", + "usr": "s:11VideoSDKRTC12MeterBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22StableMeterProviderSdkC12meterBuilder4nameAA0dH0_pSS_tF", + "mangledName": "$s11VideoSDKRTC22StableMeterProviderSdkC12meterBuilder4nameAA0dH0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "builder", + "printedName": "builder()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMeterProviderBuilder", + "printedName": "VideoSDKRTC.StableMeterProviderBuilder", + "usr": "s:11VideoSDKRTC26StableMeterProviderBuilderC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22StableMeterProviderSdkC7builderAA0cdE7BuilderCyFZ", + "mangledName": "$s11VideoSDKRTC22StableMeterProviderSdkC7builderAA0cdE7BuilderCyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22StableMeterProviderSdkC8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC22StableMeterProviderSdkC8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22StableMeterProviderSdkC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC22StableMeterProviderSdkC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC22StableMeterProviderSdkC", + "mangledName": "$s11VideoSDKRTC22StableMeterProviderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "StableMeterProvider", + "printedName": "StableMeterProvider", + "usr": "s:11VideoSDKRTC19StableMeterProviderP", + "mangledName": "$s11VideoSDKRTC19StableMeterProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MeterProviderSharedState", + "printedName": "MeterProviderSharedState", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(clock:resource:startEpochNanos:exemplarFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MeterProviderSharedState", + "printedName": "VideoSDKRTC.MeterProviderSharedState", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC5clock8resource15startEpochNanos14exemplarFilterAcA5Clock_p_AA8ResourceVs6UInt64VAA08ExemplarM0_ptcfc", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC5clock8resource15startEpochNanos14exemplarFilterAcA5Clock_p_AA8ResourceVs6UInt64VAA08ExemplarM0_ptcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "clock", + "printedName": "clock", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC5clockAA5Clock_pvp", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC5clockAA5Clock_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC5clockAA5Clock_pvg", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC5clockAA5Clock_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "startEpochNanos", + "printedName": "startEpochNanos", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC15startEpochNanoss6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC15startEpochNanoss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC15startEpochNanoss6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC15startEpochNanoss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "exemplarFilter", + "printedName": "exemplarFilter", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC14exemplarFilterAA08ExemplarH0_pvp", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC14exemplarFilterAA08ExemplarH0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC14exemplarFilterAA08ExemplarH0_pvg", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC14exemplarFilterAA08ExemplarH0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC24MeterProviderSharedStateC", + "mangledName": "$s11VideoSDKRTC24MeterProviderSharedStateC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MetricDataType", + "printedName": "MetricDataType", + "children": [ + { + "kind": "Var", + "name": "LongGauge", + "printedName": "LongGauge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricDataType.Type) -> VideoSDKRTC.MetricDataType", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricDataType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14MetricDataTypeO9LongGaugeyA2CmF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO9LongGaugeyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "DoubleGauge", + "printedName": "DoubleGauge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricDataType.Type) -> VideoSDKRTC.MetricDataType", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricDataType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14MetricDataTypeO11DoubleGaugeyA2CmF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO11DoubleGaugeyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "LongSum", + "printedName": "LongSum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricDataType.Type) -> VideoSDKRTC.MetricDataType", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricDataType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14MetricDataTypeO7LongSumyA2CmF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO7LongSumyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "DoubleSum", + "printedName": "DoubleSum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricDataType.Type) -> VideoSDKRTC.MetricDataType", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricDataType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14MetricDataTypeO9DoubleSumyA2CmF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO9DoubleSumyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "Summary", + "printedName": "Summary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricDataType.Type) -> VideoSDKRTC.MetricDataType", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricDataType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14MetricDataTypeO7SummaryyA2CmF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO7SummaryyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "Histogram", + "printedName": "Histogram", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricDataType.Type) -> VideoSDKRTC.MetricDataType", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricDataType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14MetricDataTypeO9HistogramyA2CmF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO9HistogramyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "ExponentialHistogram", + "printedName": "ExponentialHistogram", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.MetricDataType.Type) -> VideoSDKRTC.MetricDataType", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.MetricDataType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC14MetricDataTypeO20ExponentialHistogramyA2CmF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO20ExponentialHistogramyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + }, + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricDataTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14MetricDataTypeO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14MetricDataTypeO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14MetricDataTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC14MetricDataTypeO", + "mangledName": "$s11VideoSDKRTC14MetricDataTypeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StableMetricData", + "printedName": "StableMetricData", + "children": [ + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instrumentationScopeInfo", + "printedName": "instrumentationScopeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV24instrumentationScopeInfoAA015InstrumentationgH0Vvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV24instrumentationScopeInfoAA015InstrumentationgH0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV24instrumentationScopeInfoAA015InstrumentationgH0Vvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV24instrumentationScopeInfoAA015InstrumentationgH0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV4nameSSvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV4nameSSvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unit", + "printedName": "unit", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV4unitSSvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4unitSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV4unitSSvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4unitSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV4typeAA0dE4TypeOvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4typeAA0dE4TypeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDataType", + "printedName": "VideoSDKRTC.MetricDataType", + "usr": "s:11VideoSDKRTC14MetricDataTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV4typeAA0dE4TypeOvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4typeAA0dE4TypeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "VideoSDKRTC.StableMetricData.Data", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV4dataAC0E0Cvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4dataAC0E0Cvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "VideoSDKRTC.StableMetricData.Data", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV4dataAC0E0Cvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV4dataAC0E0Cvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "empty", + "printedName": "empty", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV5emptyACvpZ", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV5emptyACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV5emptyACvgZ", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV5emptyACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Data", + "printedName": "Data", + "children": [ + { + "kind": "Var", + "name": "points", + "printedName": "points", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C6pointsSayAA05PointE0CGvp", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV0E0C6pointsSayAA05PointE0CGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.PointData]", + "children": [ + { + "kind": "TypeNominal", + "name": "PointData", + "printedName": "VideoSDKRTC.PointData", + "usr": "s:11VideoSDKRTC9PointDataC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C6pointsSayAA05PointE0CGvg", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV0E0C6pointsSayAA05PointE0CGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "VideoSDKRTC.StableMetricData.Data", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "VideoSDKRTC.StableMetricData.Data", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV0E0C2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16StableMetricDataV0E0C", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV0E0C", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16StableMetricDataV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC16StableMetricDataV", + "mangledName": "$s11VideoSDKRTC16StableMetricDataV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StableHistogramData", + "printedName": "StableHistogramData", + "children": [ + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC19StableHistogramDataC22aggregationTemporalityAA011AggregationG0Ovp", + "mangledName": "$s11VideoSDKRTC19StableHistogramDataC22aggregationTemporalityAA011AggregationG0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC19StableHistogramDataC22aggregationTemporalityAA011AggregationG0Ovg", + "mangledName": "$s11VideoSDKRTC19StableHistogramDataC22aggregationTemporalityAA011AggregationG0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC19StableHistogramDataC", + "mangledName": "$s11VideoSDKRTC19StableHistogramDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC16StableMetricDataV0E0C", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.StableMetricData.Data" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StableExponentialHistogramData", + "printedName": "StableExponentialHistogramData", + "children": [ + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30StableExponentialHistogramDataC22aggregationTemporalityAA011AggregationH0Ovp", + "mangledName": "$s11VideoSDKRTC30StableExponentialHistogramDataC22aggregationTemporalityAA011AggregationH0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30StableExponentialHistogramDataC22aggregationTemporalityAA011AggregationH0Ovg", + "mangledName": "$s11VideoSDKRTC30StableExponentialHistogramDataC22aggregationTemporalityAA011AggregationH0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC30StableExponentialHistogramDataC", + "mangledName": "$s11VideoSDKRTC30StableExponentialHistogramDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC16StableMetricDataV0E0C", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.StableMetricData.Data" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StableGaugeData", + "printedName": "StableGaugeData", + "children": [ + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC15StableGaugeDataC22aggregationTemporalityAA011AggregationG0Ovp", + "mangledName": "$s11VideoSDKRTC15StableGaugeDataC22aggregationTemporalityAA011AggregationG0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC15StableGaugeDataC22aggregationTemporalityAA011AggregationG0Ovg", + "mangledName": "$s11VideoSDKRTC15StableGaugeDataC22aggregationTemporalityAA011AggregationG0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC15StableGaugeDataC", + "mangledName": "$s11VideoSDKRTC15StableGaugeDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC16StableMetricDataV0E0C", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.StableMetricData.Data" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StableSumData", + "printedName": "StableSumData", + "children": [ + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13StableSumDataC22aggregationTemporalityAA011AggregationG0Ovp", + "mangledName": "$s11VideoSDKRTC13StableSumDataC22aggregationTemporalityAA011AggregationG0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13StableSumDataC22aggregationTemporalityAA011AggregationG0Ovg", + "mangledName": "$s11VideoSDKRTC13StableSumDataC22aggregationTemporalityAA011AggregationG0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC13StableSumDataC", + "mangledName": "$s11VideoSDKRTC13StableSumDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC16StableMetricDataV0E0C", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.StableMetricData.Data" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StableSummaryData", + "printedName": "StableSummaryData", + "children": [ + { + "kind": "Var", + "name": "aggregationTemporality", + "printedName": "aggregationTemporality", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17StableSummaryDataC22aggregationTemporalityAA011AggregationG0Ovp", + "mangledName": "$s11VideoSDKRTC17StableSummaryDataC22aggregationTemporalityAA011AggregationG0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17StableSummaryDataC22aggregationTemporalityAA011AggregationG0Ovg", + "mangledName": "$s11VideoSDKRTC17StableSummaryDataC22aggregationTemporalityAA011AggregationG0Ovg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC17StableSummaryDataC", + "mangledName": "$s11VideoSDKRTC17StableSummaryDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC16StableMetricDataV0E0C", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.StableMetricData.Data" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableMetricExporter", + "printedName": "StableMetricExporter", + "children": [ + { + "kind": "Function", + "name": "export", + "printedName": "export(metrics:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.StableMetricData]", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20StableMetricExporterP6export7metricsAA12ExportResultOSayAA0cD4DataVG_tF", + "mangledName": "$s11VideoSDKRTC20StableMetricExporterP6export7metricsAA12ExportResultOSayAA0cD4DataVG_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMetricExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20StableMetricExporterP5flushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC20StableMetricExporterP5flushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMetricExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20StableMetricExporterP8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC20StableMetricExporterP8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMetricExporter>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDefaultAggregation", + "printedName": "getDefaultAggregation(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20StableMetricExporterPAAE21getDefaultAggregation3forAA0H0_pAA14InstrumentTypeO_tF", + "mangledName": "$s11VideoSDKRTC20StableMetricExporterPAAE21getDefaultAggregation3forAA0H0_pAA14InstrumentTypeO_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMetricExporter>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC20StableMetricExporterP", + "mangledName": "$s11VideoSDKRTC20StableMetricExporterP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.AggregationTemporalitySelectorProtocol, τ_0_0 : VideoSDKRTC.DefaultAggregationSelector>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DefaultAggregationSelector", + "printedName": "DefaultAggregationSelector", + "usr": "s:11VideoSDKRTC26DefaultAggregationSelectorP", + "mangledName": "$s11VideoSDKRTC26DefaultAggregationSelectorP" + }, + { + "kind": "Conformance", + "name": "AggregationTemporalitySelectorProtocol", + "printedName": "AggregationTemporalitySelectorProtocol", + "usr": "s:11VideoSDKRTC38AggregationTemporalitySelectorProtocolP", + "mangledName": "$s11VideoSDKRTC38AggregationTemporalitySelectorProtocolP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableMetricReader", + "printedName": "StableMetricReader", + "children": [ + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18StableMetricReaderP10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC18StableMetricReaderP10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMetricReader>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18StableMetricReaderP8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC18StableMetricReaderP8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMetricReader>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(registration:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CollectionRegistration", + "printedName": "VideoSDKRTC.CollectionRegistration", + "usr": "s:11VideoSDKRTC22CollectionRegistrationP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18StableMetricReaderP8register12registrationyAA22CollectionRegistration_p_tF", + "mangledName": "$s11VideoSDKRTC18StableMetricReaderP8register12registrationyAA22CollectionRegistration_p_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.StableMetricReader>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC18StableMetricReaderP", + "mangledName": "$s11VideoSDKRTC18StableMetricReaderP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : VideoSDKRTC.AggregationTemporalitySelectorProtocol, τ_0_0 : VideoSDKRTC.DefaultAggregationSelector>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DefaultAggregationSelector", + "printedName": "DefaultAggregationSelector", + "usr": "s:11VideoSDKRTC26DefaultAggregationSelectorP", + "mangledName": "$s11VideoSDKRTC26DefaultAggregationSelectorP" + }, + { + "kind": "Conformance", + "name": "AggregationTemporalitySelectorProtocol", + "printedName": "AggregationTemporalitySelectorProtocol", + "usr": "s:11VideoSDKRTC38AggregationTemporalitySelectorProtocolP", + "mangledName": "$s11VideoSDKRTC38AggregationTemporalitySelectorProtocolP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableObservableMeasurementSdk", + "printedName": "StableObservableMeasurementSdk", + "children": [ + { + "kind": "Var", + "name": "descriptor", + "printedName": "descriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC10descriptorAA20InstrumentDescriptorVvp", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC10descriptorAA20InstrumentDescriptorVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC10descriptorAA20InstrumentDescriptorVvg", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC10descriptorAA20InstrumentDescriptorVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "storages", + "printedName": "storages", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.AsynchronousMetricStorage]", + "children": [ + { + "kind": "TypeNominal", + "name": "AsynchronousMetricStorage", + "printedName": "VideoSDKRTC.AsynchronousMetricStorage", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC8storagesSayAA25AsynchronousMetricStorageCGvp", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC8storagesSayAA25AsynchronousMetricStorageCGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.AsynchronousMetricStorage]", + "children": [ + { + "kind": "TypeNominal", + "name": "AsynchronousMetricStorage", + "printedName": "VideoSDKRTC.AsynchronousMetricStorage", + "usr": "s:11VideoSDKRTC25AsynchronousMetricStorageC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC8storagesSayAA25AsynchronousMetricStorageCGvg", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC8storagesSayAA25AsynchronousMetricStorageCGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearActiveReader", + "printedName": "clearActiveReader()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC17clearActiveReaderyyF", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC17clearActiveReaderyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC6record5valueySi_tF", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC6record5valueySi_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC6record5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC6record5valueySd_tF", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC6record5valueySd_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC6record5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC30StableObservableMeasurementSdkC", + "mangledName": "$s11VideoSDKRTC30StableObservableMeasurementSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ObservableLongMeasurement", + "printedName": "ObservableLongMeasurement", + "usr": "s:11VideoSDKRTC25ObservableLongMeasurementP", + "mangledName": "$s11VideoSDKRTC25ObservableLongMeasurementP" + }, + { + "kind": "Conformance", + "name": "ObservableDoubleMeasurement", + "printedName": "ObservableDoubleMeasurement", + "usr": "s:11VideoSDKRTC27ObservableDoubleMeasurementP", + "mangledName": "$s11VideoSDKRTC27ObservableDoubleMeasurementP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StablePeriodicMetricReaderBuilder", + "printedName": "StablePeriodicMetricReaderBuilder", + "children": [ + { + "kind": "Var", + "name": "exporter", + "printedName": "exporter", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricExporter", + "printedName": "VideoSDKRTC.StableMetricExporter", + "usr": "s:11VideoSDKRTC20StableMetricExporterP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC8exporterAA0cE8Exporter_pvp", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC8exporterAA0cE8Exporter_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricExporter", + "printedName": "VideoSDKRTC.StableMetricExporter", + "usr": "s:11VideoSDKRTC20StableMetricExporterP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC8exporterAA0cE8Exporter_pvg", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC8exporterAA0cE8Exporter_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "exporterInterval", + "printedName": "exporterInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC16exporterIntervalSdvp", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC16exporterIntervalSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC16exporterIntervalSdvg", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC16exporterIntervalSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(exporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StablePeriodicMetricReaderBuilder", + "printedName": "VideoSDKRTC.StablePeriodicMetricReaderBuilder", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC" + }, + { + "kind": "TypeNominal", + "name": "StableMetricExporter", + "printedName": "VideoSDKRTC.StableMetricExporter", + "usr": "s:11VideoSDKRTC20StableMetricExporterP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC8exporterAcA0cE8Exporter_p_tcfc", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC8exporterAcA0cE8Exporter_p_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setInterval", + "printedName": "setInterval(timeInterval:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC11setInterval04timeI0ACXDSd_tF", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC11setInterval04timeI0ACXDSd_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "StablePeriodicMetricReaderSdk", + "printedName": "VideoSDKRTC.StablePeriodicMetricReaderSdk", + "usr": "s:11VideoSDKRTC29StablePeriodicMetricReaderSdkC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC5buildAA0cdeF3SdkCyF", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC5buildAA0cdeF3SdkCyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC33StablePeriodicMetricReaderBuilderC", + "mangledName": "$s11VideoSDKRTC33StablePeriodicMetricReaderBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StablePeriodicMetricReaderSdk", + "printedName": "StablePeriodicMetricReaderSdk", + "children": [ + { + "kind": "Function", + "name": "register", + "printedName": "register(registration:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CollectionRegistration", + "printedName": "VideoSDKRTC.CollectionRegistration", + "usr": "s:11VideoSDKRTC22CollectionRegistrationP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29StablePeriodicMetricReaderSdkC8register12registrationyAA22CollectionRegistration_p_tF", + "mangledName": "$s11VideoSDKRTC29StablePeriodicMetricReaderSdkC8register12registrationyAA22CollectionRegistration_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29StablePeriodicMetricReaderSdkC10forceFlushAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC29StablePeriodicMetricReaderSdkC10forceFlushAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExportResult", + "printedName": "VideoSDKRTC.ExportResult", + "usr": "s:11VideoSDKRTC12ExportResultO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29StablePeriodicMetricReaderSdkC8shutdownAA12ExportResultOyF", + "mangledName": "$s11VideoSDKRTC29StablePeriodicMetricReaderSdkC8shutdownAA12ExportResultOyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAggregationTemporality", + "printedName": "getAggregationTemporality(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AggregationTemporality", + "printedName": "VideoSDKRTC.AggregationTemporality", + "usr": "s:11VideoSDKRTC22AggregationTemporalityO" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29StablePeriodicMetricReaderSdkC25getAggregationTemporality3forAA0iJ0OAA14InstrumentTypeO_tF", + "mangledName": "$s11VideoSDKRTC29StablePeriodicMetricReaderSdkC25getAggregationTemporality3forAA0iJ0OAA14InstrumentTypeO_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDefaultAggregation", + "printedName": "getDefaultAggregation(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentType", + "printedName": "VideoSDKRTC.InstrumentType", + "usr": "s:11VideoSDKRTC14InstrumentTypeO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC29StablePeriodicMetricReaderSdkC21getDefaultAggregation3forAA0J0_pAA14InstrumentTypeO_tF", + "mangledName": "$s11VideoSDKRTC29StablePeriodicMetricReaderSdkC21getDefaultAggregation3forAA0J0_pAA14InstrumentTypeO_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC29StablePeriodicMetricReaderSdkC", + "mangledName": "$s11VideoSDKRTC29StablePeriodicMetricReaderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "StableMetricReader", + "printedName": "StableMetricReader", + "usr": "s:11VideoSDKRTC18StableMetricReaderP", + "mangledName": "$s11VideoSDKRTC18StableMetricReaderP" + }, + { + "kind": "Conformance", + "name": "AggregationTemporalitySelectorProtocol", + "printedName": "AggregationTemporalitySelectorProtocol", + "usr": "s:11VideoSDKRTC38AggregationTemporalitySelectorProtocolP", + "mangledName": "$s11VideoSDKRTC38AggregationTemporalitySelectorProtocolP" + }, + { + "kind": "Conformance", + "name": "DefaultAggregationSelector", + "printedName": "DefaultAggregationSelector", + "usr": "s:11VideoSDKRTC26DefaultAggregationSelectorP", + "mangledName": "$s11VideoSDKRTC26DefaultAggregationSelectorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableView", + "printedName": "StableView", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10StableViewC4nameSSSgvp", + "mangledName": "$s11VideoSDKRTC10StableViewC4nameSSSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10StableViewC4nameSSSgvg", + "mangledName": "$s11VideoSDKRTC10StableViewC4nameSSSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10StableViewC11descriptionSSSgvp", + "mangledName": "$s11VideoSDKRTC10StableViewC11descriptionSSSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10StableViewC11descriptionSSSgvg", + "mangledName": "$s11VideoSDKRTC10StableViewC11descriptionSSSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aggregation", + "printedName": "aggregation", + "children": [ + { + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10StableViewC11aggregationAA11Aggregation_pvp", + "mangledName": "$s11VideoSDKRTC10StableViewC11aggregationAA11Aggregation_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10StableViewC11aggregationAA11Aggregation_pvg", + "mangledName": "$s11VideoSDKRTC10StableViewC11aggregationAA11Aggregation_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributeProcessor", + "printedName": "attributeProcessor", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10StableViewC18attributeProcessorAA09AttributeF0Cvp", + "mangledName": "$s11VideoSDKRTC10StableViewC18attributeProcessorAA09AttributeF0Cvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10StableViewC18attributeProcessorAA09AttributeF0Cvg", + "mangledName": "$s11VideoSDKRTC10StableViewC18attributeProcessorAA09AttributeF0Cvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "builder", + "printedName": "builder()", + "children": [ + { + "kind": "TypeNominal", + "name": "ViewBuilder", + "printedName": "VideoSDKRTC.ViewBuilder", + "usr": "s:11VideoSDKRTC11ViewBuilderC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10StableViewC7builderAA0D7BuilderCyFZ", + "mangledName": "$s11VideoSDKRTC10StableViewC7builderAA0D7BuilderCyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC10StableViewC", + "mangledName": "$s11VideoSDKRTC10StableViewC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StableViewRegistry", + "printedName": "StableViewRegistry", + "children": [ + { + "kind": "Function", + "name": "findViews", + "printedName": "findViews(descriptor:meterScope:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.RegisteredView]", + "children": [ + { + "kind": "TypeNominal", + "name": "RegisteredView", + "printedName": "VideoSDKRTC.RegisteredView", + "usr": "s:11VideoSDKRTC14RegisteredViewC" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC18StableViewRegistryC9findViews10descriptor10meterScopeSayAA010RegisteredD0CGAA20InstrumentDescriptorV_AA015InstrumentationJ4InfoVtF", + "mangledName": "$s11VideoSDKRTC18StableViewRegistryC9findViews10descriptor10meterScopeSayAA010RegisteredD0CGAA20InstrumentDescriptorV_AA015InstrumentationJ4InfoVtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC18StableViewRegistryC", + "mangledName": "$s11VideoSDKRTC18StableViewRegistryC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Status", + "printedName": "Status", + "children": [ + { + "kind": "Var", + "name": "ok", + "printedName": "ok", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Status.Type) -> VideoSDKRTC.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC6StatusO2okyA2CmF", + "mangledName": "$s11VideoSDKRTC6StatusO2okyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unset", + "printedName": "unset", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Status.Type) -> VideoSDKRTC.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC6StatusO5unsetyA2CmF", + "mangledName": "$s11VideoSDKRTC6StatusO5unsetyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Status.Type) -> (Swift.String) -> VideoSDKRTC.Status", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideoSDKRTC.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(description: Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC6StatusO5erroryACSS_tcACmF", + "mangledName": "$s11VideoSDKRTC6StatusO5erroryACSS_tcACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "isOk", + "printedName": "isOk", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6StatusO4isOkSbvp", + "mangledName": "$s11VideoSDKRTC6StatusO4isOkSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6StatusO4isOkSbvg", + "mangledName": "$s11VideoSDKRTC6StatusO4isOkSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isError", + "printedName": "isError", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6StatusO7isErrorSbvp", + "mangledName": "$s11VideoSDKRTC6StatusO7isErrorSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6StatusO7isErrorSbvg", + "mangledName": "$s11VideoSDKRTC6StatusO7isErrorSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6StatusO4nameSSvp", + "mangledName": "$s11VideoSDKRTC6StatusO4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6StatusO4nameSSvg", + "mangledName": "$s11VideoSDKRTC6StatusO4nameSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6StatusO4codeSivp", + "mangledName": "$s11VideoSDKRTC6StatusO4codeSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6StatusO4codeSivg", + "mangledName": "$s11VideoSDKRTC6StatusO4codeSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6StatusO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC6StatusO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC6StatusO11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC6StatusO11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC6StatusO11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC6StatusO11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "VideoSDKRTC.Status", + "usr": "s:11VideoSDKRTC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC6StatusO4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC6StatusO4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6StatusO6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC6StatusO6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC6StatusO", + "mangledName": "$s11VideoSDKRTC6StatusO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StringUtils", + "printedName": "StringUtils", + "children": [ + { + "kind": "Function", + "name": "isPrintableString", + "printedName": "isPrintableString(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11StringUtilsV011isPrintableC0ySbSSFZ", + "mangledName": "$s11VideoSDKRTC11StringUtilsV011isPrintableC0ySbSSFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isValidMetricName", + "printedName": "isValidMetricName(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11StringUtilsV17isValidMetricNameySbSSFZ", + "mangledName": "$s11VideoSDKRTC11StringUtilsV17isValidMetricNameySbSSFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC11StringUtilsV", + "mangledName": "$s11VideoSDKRTC11StringUtilsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_NullValue", + "printedName": "Google_Protobuf_NullValue", + "children": [ + { + "kind": "Var", + "name": "nullValue", + "printedName": "nullValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_NullValue.Type) -> VideoSDKRTC.Google_Protobuf_NullValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO04nullF0yA2CmF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO04nullF0yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_NullValue.Type) -> (Swift.Int) -> VideoSDKRTC.Google_Protobuf_NullValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Google_Protobuf_NullValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO12UNRECOGNIZEDyACSicACmF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO12UNRECOGNIZEDyACSicACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueOACycfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueOACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO03rawF0ACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO03rawF0ACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO03rawF0Sivp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO03rawF0Sivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO03rawF0Sivg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO03rawF0Sivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_NullValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_NullValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_NullValueO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_NullValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Struct", + "printedName": "Google_Protobuf_Struct", + "children": [ + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV6fieldsSDySSAA0c1_D6_ValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructVACycfc", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(dictionaryLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Swift.String, VideoSDKRTC.Google_Protobuf_Value)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, VideoSDKRTC.Google_Protobuf_Value)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV17dictionaryLiteralACSS_AA0c1_D6_ValueVtd_tcfc", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV17dictionaryLiteralACSS_AA0c1_D6_ValueVtd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fields:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV6fieldsACSDySSAA0c1_D6_ValueVG_tcfc", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV6fieldsACSDySSAA0c1_D6_ValueVG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Subscript", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSScip", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSScip", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSScig", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSScig", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSScis", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSScis", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSSciM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructVyAA0c1_D6_ValueVSgSSciM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_StructV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByDictionaryLiteral", + "printedName": "ExpressibleByDictionaryLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "Key", + "printedName": "Key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Value", + "printedName": "Value", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ] + } + ], + "usr": "s:s30ExpressibleByDictionaryLiteralP", + "mangledName": "$ss30ExpressibleByDictionaryLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Value", + "printedName": "Google_Protobuf_Value", + "children": [ + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV4kindAC10OneOf_KindOSgvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nullValue", + "printedName": "nullValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0Ovp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0Ovp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0Ovg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0Ovg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0Ovs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0Ovs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0OvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04nullE0AA0c1_d5_NullE0OvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "numberValue", + "printedName": "numberValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06numberE0Sdvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06numberE0Sdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06numberE0Sdvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06numberE0Sdvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06numberE0Sdvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06numberE0Sdvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06numberE0SdvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06numberE0SdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06stringE0SSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "boolValue", + "printedName": "boolValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04boolE0Sbvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04boolE0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04boolE0Sbvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04boolE0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04boolE0Sbvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04boolE0Sbvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04boolE0SbvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04boolE0SbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "structValue", + "printedName": "structValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06structE0AA0c1_D7_StructVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "listValue", + "printedName": "listValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0Vvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0Vvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0Vvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0VvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04listE0AA0c1_d5_ListE0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_Kind", + "printedName": "OneOf_Kind", + "children": [ + { + "kind": "Var", + "name": "nullValue", + "printedName": "nullValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type) -> (VideoSDKRTC.Google_Protobuf_NullValue) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_NullValue) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_NullValue", + "printedName": "VideoSDKRTC.Google_Protobuf_NullValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_NullValueO" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO04nullE0yAeA0c1_d5_NullE0OcAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO04nullE0yAeA0c1_d5_NullE0OcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "numberValue", + "printedName": "numberValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type) -> (Swift.Double) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO06numberE0yAESdcAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO06numberE0yAESdcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type) -> (Swift.String) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO06stringE0yAESScAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO06stringE0yAESScAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "boolValue", + "printedName": "boolValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type) -> (Swift.Bool) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO04boolE0yAESbcAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO04boolE0yAESbcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "structValue", + "printedName": "structValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type) -> (VideoSDKRTC.Google_Protobuf_Struct) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Struct) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO06structE0yAeA0c1_D7_StructVcAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO06structE0yAeA0c1_D7_StructVcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "listValue", + "printedName": "listValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type) -> (VideoSDKRTC.Google_Protobuf_ListValue) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_ListValue) -> VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO04listE0yAeA0c1_d5_ListE0VcAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO04listE0yAeA0c1_d5_ListE0VcAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10OneOf_KindO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueVACycfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(integerLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV14integerLiteralACs5Int64V_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV14integerLiteralACs5Int64V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(floatLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV12floatLiteralACSd_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV12floatLiteralACSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(booleanLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV14booleanLiteralACSb_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV14booleanLiteralACSb_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV13stringLiteralACSS_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV13stringLiteralACSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(unicodeScalarLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV20unicodeScalarLiteralACSS_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV20unicodeScalarLiteralACSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(extendedGraphemeClusterLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV30extendedGraphemeClusterLiteralACSS_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV30extendedGraphemeClusterLiteralACSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(nilLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV10nilLiteralACyt_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV10nilLiteralACyt_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(numberValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06numberE0ACSd_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06numberE0ACSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06stringE0ACSS_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06stringE0ACSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(boolValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04boolE0ACSb_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04boolE0ACSb_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(structValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Struct", + "printedName": "VideoSDKRTC.Google_Protobuf_Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_StructV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV06structE0AcA0c1_D7_StructV_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV06structE0AcA0c1_D7_StructV_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(listValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04listE0AcA0c1_d5_ListE0V_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04listE0AcA0c1_d5_ListE0V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04hashE0Sivp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04hashE0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV04hashE0Sivg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV04hashE0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_ValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByBooleanLiteral", + "printedName": "ExpressibleByBooleanLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "BooleanLiteralType", + "printedName": "BooleanLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "usr": "s:s27ExpressibleByBooleanLiteralP", + "mangledName": "$ss27ExpressibleByBooleanLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByNilLiteral", + "printedName": "ExpressibleByNilLiteral", + "usr": "s:s23ExpressibleByNilLiteralP", + "mangledName": "$ss23ExpressibleByNilLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_ListValue", + "printedName": "Google_Protobuf_ListValue", + "children": [ + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV6valuesSayAA0c1_d1_F0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueVACycfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(arrayLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV12arrayLiteralAcA0c1_d1_F0Vd_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV12arrayLiteralAcA0c1_d1_F0Vd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(values:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV6valuesACSayAA0c1_d1_F0VG_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV6valuesACSayAA0c1_d1_F0VG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Subscript", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSicip", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSicip", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSicig", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSicig", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSicis", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSicis", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSiciM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueVyAA0c1_d1_F0VSiciM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_ListValue", + "printedName": "VideoSDKRTC.Google_Protobuf_ListValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25Google_Protobuf_ListValueV", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_ListValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByArrayLiteral", + "printedName": "ExpressibleByArrayLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Value", + "usr": "s:11VideoSDKRTC21Google_Protobuf_ValueV" + } + ] + } + ], + "usr": "s:s25ExpressibleByArrayLiteralP", + "mangledName": "$ss25ExpressibleByArrayLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SumAggregation", + "printedName": "SumAggregation", + "children": [ + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "SumAggregation", + "printedName": "VideoSDKRTC.SumAggregation", + "usr": "s:11VideoSDKRTC14SumAggregationC" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14SumAggregationC8instanceACvpZ", + "mangledName": "$s11VideoSDKRTC14SumAggregationC8instanceACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SumAggregation", + "printedName": "VideoSDKRTC.SumAggregation", + "usr": "s:11VideoSDKRTC14SumAggregationC" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14SumAggregationC8instanceACvgZ", + "mangledName": "$s11VideoSDKRTC14SumAggregationC8instanceACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "isCompatible", + "printedName": "isCompatible(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14SumAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "mangledName": "$s11VideoSDKRTC14SumAggregationC12isCompatible4withSbAA20InstrumentDescriptorV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createAggregator", + "printedName": "createAggregator(descriptor:exemplarFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableAggregator", + "printedName": "VideoSDKRTC.StableAggregator", + "usr": "s:11VideoSDKRTC16StableAggregatorP" + }, + { + "kind": "TypeNominal", + "name": "InstrumentDescriptor", + "printedName": "VideoSDKRTC.InstrumentDescriptor", + "usr": "s:11VideoSDKRTC20InstrumentDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "ExemplarFilter", + "printedName": "VideoSDKRTC.ExemplarFilter", + "usr": "s:11VideoSDKRTC14ExemplarFilterP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14SumAggregationC16createAggregator10descriptor14exemplarFilterAA06StableF0_pAA20InstrumentDescriptorV_AA08ExemplarI0_ptF", + "mangledName": "$s11VideoSDKRTC14SumAggregationC16createAggregator10descriptor14exemplarFilterAA06StableF0_pAA20InstrumentDescriptorV_AA08ExemplarI0_ptF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC14SumAggregationC", + "mangledName": "$s11VideoSDKRTC14SumAggregationC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Aggregation", + "printedName": "Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP", + "mangledName": "$s11VideoSDKRTC11AggregationP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SumAggregator", + "printedName": "SumAggregator", + "children": [ + { + "kind": "Var", + "name": "isMonotonic", + "printedName": "isMonotonic", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC13SumAggregatorC11isMonotonicSbvp", + "mangledName": "$s11VideoSDKRTC13SumAggregatorC11isMonotonicSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "Final", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC13SumAggregatorC11isMonotonicSbvg", + "mangledName": "$s11VideoSDKRTC13SumAggregatorC11isMonotonicSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC13SumAggregatorC", + "mangledName": "$s11VideoSDKRTC13SumAggregatorC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SummaryPointData", + "printedName": "SummaryPointData", + "children": [ + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16SummaryPointDataC5counts6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC5counts6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC5counts6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC5counts6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC5counts6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC5counts6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC5counts6UInt64VvM", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC5counts6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sum", + "printedName": "sum", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16SummaryPointDataC3sumSdvp", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC3sumSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC3sumSdvg", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC3sumSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC3sumSdvs", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC3sumSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC3sumSdvM", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC3sumSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ValueAtQuantile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.ValueAtQuantile", + "usr": "s:11VideoSDKRTC15ValueAtQuantileP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvp", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ValueAtQuantile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.ValueAtQuantile", + "usr": "s:11VideoSDKRTC15ValueAtQuantileP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvg", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.ValueAtQuantile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueAtQuantile", + "printedName": "VideoSDKRTC.ValueAtQuantile", + "usr": "s:11VideoSDKRTC15ValueAtQuantileP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvs", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvM", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC6valuesSayAA15ValueAtQuantile_pGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16SummaryPointDataC", + "mangledName": "$s11VideoSDKRTC16SummaryPointDataC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:11VideoSDKRTC9PointDataC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "VideoSDKRTC.PointData" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SwiftProtobufContiguousBytes", + "printedName": "SwiftProtobufContiguousBytes", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(repeating:count:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP9repeating5countxs5UInt8V_Sitcfc", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP9repeating5countxs5UInt8V_Sitcfc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesPyxqd__cSTRd__s5UInt8V7ElementRtd__lufc", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesPyxqd__cSTRd__s5UInt8V7ElementRtd__lufc", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SwiftProtobufContiguousBytes, τ_1_0 : Swift.Sequence, τ_1_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP5countSivp", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP5countSivp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP5countSivg", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP5countSivg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "withUnsafeBytes", + "printedName": "withUnsafeBytes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.UnsafeRawBufferPointer) throws -> τ_1_0", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "UnsafeRawBufferPointer", + "printedName": "Swift.UnsafeRawBufferPointer", + "usr": "s:SW" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP010withUnsafeF0yqd__qd__SWKXEKlF", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP010withUnsafeF0yqd__qd__SWKXEKlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Rethrows", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "withUnsafeMutableBytes", + "printedName": "withUnsafeMutableBytes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.UnsafeMutableRawBufferPointer) throws -> τ_1_0", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawBufferPointer", + "printedName": "Swift.UnsafeMutableRawBufferPointer", + "usr": "s:Sw" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP017withUnsafeMutableF0yqd__qd__SwKXEKlF", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP017withUnsafeMutableF0yqd__qd__SwKXEKlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.SwiftProtobufContiguousBytes>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Rethrows", + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SynchronousMetricStorage", + "printedName": "SynchronousMetricStorage", + "children": [ + { + "kind": "Var", + "name": "metricDescriptor", + "printedName": "metricDescriptor", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24SynchronousMetricStorageC16metricDescriptorAA0dG0Vvp", + "mangledName": "$s11VideoSDKRTC24SynchronousMetricStorageC16metricDescriptorAA0dG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MetricDescriptor", + "printedName": "VideoSDKRTC.MetricDescriptor", + "usr": "s:11VideoSDKRTC16MetricDescriptorV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24SynchronousMetricStorageC16metricDescriptorAA0dG0Vvg", + "mangledName": "$s11VideoSDKRTC24SynchronousMetricStorageC16metricDescriptorAA0dG0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "collect", + "printedName": "collect(resource:scope:startEpochNanos:epochNanos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StableMetricData", + "printedName": "VideoSDKRTC.StableMetricData", + "usr": "s:11VideoSDKRTC16StableMetricDataV" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24SynchronousMetricStorageC7collect8resource5scope15startEpochNanos05epochK0AA06StableD4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", + "mangledName": "$s11VideoSDKRTC24SynchronousMetricStorageC7collect8resource5scope15startEpochNanos05epochK0AA06StableD4DataVAA8ResourceV_AA24InstrumentationScopeInfoVs6UInt64VAPtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEmpty", + "printedName": "isEmpty()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24SynchronousMetricStorageC7isEmptySbyF", + "mangledName": "$s11VideoSDKRTC24SynchronousMetricStorageC7isEmptySbyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordLong", + "printedName": "recordLong(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24SynchronousMetricStorageC10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC24SynchronousMetricStorageC10recordLong5value10attributesySi_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordDouble", + "printedName": "recordDouble(value:attributes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : VideoSDKRTC.AttributeValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AttributeValue", + "printedName": "VideoSDKRTC.AttributeValue", + "usr": "s:11VideoSDKRTC14AttributeValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24SynchronousMetricStorageC12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", + "mangledName": "$s11VideoSDKRTC24SynchronousMetricStorageC12recordDouble5value10attributesySd_SDySSAA14AttributeValueOGtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC24SynchronousMetricStorageC", + "mangledName": "$s11VideoSDKRTC24SynchronousMetricStorageC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "MetricStorage", + "printedName": "MetricStorage", + "usr": "s:11VideoSDKRTC13MetricStorageP", + "mangledName": "$s11VideoSDKRTC13MetricStorageP" + }, + { + "kind": "Conformance", + "name": "WritableMetricStorage", + "printedName": "WritableMetricStorage", + "usr": "s:11VideoSDKRTC21WritableMetricStorageP", + "mangledName": "$s11VideoSDKRTC21WritableMetricStorageP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TextFormatDecodingError", + "printedName": "TextFormatDecodingError", + "children": [ + { + "kind": "Var", + "name": "malformedText", + "printedName": "malformedText", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO09malformedC0yA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO09malformedC0yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "malformedNumber", + "printedName": "malformedNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO15malformedNumberyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO15malformedNumberyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "trailingGarbage", + "printedName": "trailingGarbage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO15trailingGarbageyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO15trailingGarbageyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "truncated", + "printedName": "truncated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO9truncatedyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO9truncatedyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "invalidUTF8", + "printedName": "invalidUTF8", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO11invalidUTF8yA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO11invalidUTF8yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "schemaMismatch", + "printedName": "schemaMismatch", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO14schemaMismatchyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO14schemaMismatchyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "missingFieldNames", + "printedName": "missingFieldNames", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO17missingFieldNamesyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO17missingFieldNamesyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unknownField", + "printedName": "unknownField", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO12unknownFieldyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO12unknownFieldyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unrecognizedEnumValue", + "printedName": "unrecognizedEnumValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO21unrecognizedEnumValueyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO21unrecognizedEnumValueyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "conflictingOneOf", + "printedName": "conflictingOneOf", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO16conflictingOneOfyA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO16conflictingOneOfyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "internalExtensionError", + "printedName": "internalExtensionError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO017internalExtensionF0yA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO017internalExtensionF0yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "messageDepthLimit", + "printedName": "messageDepthLimit", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.TextFormatDecodingError.Type) -> VideoSDKRTC.TextFormatDecodingError", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.TextFormatDecodingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO17messageDepthLimityA2CmF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO17messageDepthLimityA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + }, + { + "kind": "TypeNominal", + "name": "TextFormatDecodingError", + "printedName": "VideoSDKRTC.TextFormatDecodingError", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO9hashValueSivp", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO9hashValueSivg", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC23TextFormatDecodingErrorO", + "mangledName": "$s11VideoSDKRTC23TextFormatDecodingErrorO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TextFormatDecodingOptions", + "printedName": "TextFormatDecodingOptions", + "children": [ + { + "kind": "Var", + "name": "messageDepthLimit", + "printedName": "messageDepthLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivp", + "mangledName": "$s11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivg", + "mangledName": "$s11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivs", + "mangledName": "$s11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivM", + "mangledName": "$s11VideoSDKRTC25TextFormatDecodingOptionsV17messageDepthLimitSivM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatDecodingOptions", + "printedName": "VideoSDKRTC.TextFormatDecodingOptions", + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC25TextFormatDecodingOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25TextFormatDecodingOptionsV", + "mangledName": "$s11VideoSDKRTC25TextFormatDecodingOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TextFormatEncodingOptions", + "printedName": "TextFormatEncodingOptions", + "children": [ + { + "kind": "Var", + "name": "printUnknownFields", + "printedName": "printUnknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvp", + "mangledName": "$s11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvg", + "mangledName": "$s11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvs", + "mangledName": "$s11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvM", + "mangledName": "$s11VideoSDKRTC25TextFormatEncodingOptionsV18printUnknownFieldsSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatEncodingOptions", + "printedName": "VideoSDKRTC.TextFormatEncodingOptions", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsVACycfc", + "mangledName": "$s11VideoSDKRTC25TextFormatEncodingOptionsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25TextFormatEncodingOptionsV", + "mangledName": "$s11VideoSDKRTC25TextFormatEncodingOptionsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TextMapBaggagePropagator", + "printedName": "TextMapBaggagePropagator", + "children": [ + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP6fieldsShySSGvp", + "mangledName": "$s11VideoSDKRTC24TextMapBaggagePropagatorP6fieldsShySSGvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP6fieldsShySSGvg", + "mangledName": "$s11VideoSDKRTC24TextMapBaggagePropagatorP6fieldsShySSGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.TextMapBaggagePropagator>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "inject", + "printedName": "inject(baggage:carrier:setter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP6inject7baggage7carrier6setteryAA0E0_p_SDyS2SGzqd__tAA6SetterRd__lF", + "mangledName": "$s11VideoSDKRTC24TextMapBaggagePropagatorP6inject7baggage7carrier6setteryAA0E0_p_SDyS2SGzqd__tAA6SetterRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.TextMapBaggagePropagator, τ_1_0 : VideoSDKRTC.Setter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "extract", + "printedName": "extract(carrier:getter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Baggage?", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP7extract7carrier6getterAA0E0_pSgSDyS2SG_qd__tAA6GetterRd__lF", + "mangledName": "$s11VideoSDKRTC24TextMapBaggagePropagatorP7extract7carrier6getterAA0E0_pSgSDyS2SG_qd__tAA6GetterRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.TextMapBaggagePropagator, τ_1_0 : VideoSDKRTC.Getter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP", + "mangledName": "$s11VideoSDKRTC24TextMapBaggagePropagatorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TextMapPropagator", + "printedName": "TextMapPropagator", + "children": [ + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP6fieldsShySSGvp", + "mangledName": "$s11VideoSDKRTC17TextMapPropagatorP6fieldsShySSGvp", + "moduleName": "VideoSDKRTC", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP6fieldsShySSGvg", + "mangledName": "$s11VideoSDKRTC17TextMapPropagatorP6fieldsShySSGvg", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.TextMapPropagator>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "inject", + "printedName": "inject(spanContext:carrier:setter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP6inject11spanContext7carrier6setteryAA04SpanH0V_SDyS2SGzqd__tAA6SetterRd__lF", + "mangledName": "$s11VideoSDKRTC17TextMapPropagatorP6inject11spanContext7carrier6setteryAA04SpanH0V_SDyS2SGzqd__tAA6SetterRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.TextMapPropagator, τ_1_0 : VideoSDKRTC.Setter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "extract", + "printedName": "extract(carrier:getter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP7extract7carrier6getterAA11SpanContextVSgSDyS2SG_qd__tAA6GetterRd__lF", + "mangledName": "$s11VideoSDKRTC17TextMapPropagatorP7extract7carrier6getterAA11SpanContextVSgSDyS2SG_qd__tAA6GetterRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.TextMapPropagator, τ_1_0 : VideoSDKRTC.Getter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP", + "mangledName": "$s11VideoSDKRTC17TextMapPropagatorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Setter", + "printedName": "Setter", + "children": [ + { + "kind": "Function", + "name": "set", + "printedName": "set(carrier:key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6SetterP3set7carrier3key5valueySDyS2SGz_S2StF", + "mangledName": "$s11VideoSDKRTC6SetterP3set7carrier3key5valueySDyS2SGz_S2StF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Setter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC6SetterP", + "mangledName": "$s11VideoSDKRTC6SetterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Getter", + "printedName": "Getter", + "children": [ + { + "kind": "Function", + "name": "get", + "printedName": "get(carrier:key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6GetterP3get7carrier3keySaySSGSgSDyS2SG_SStF", + "mangledName": "$s11VideoSDKRTC6GetterP3get7carrier3keySaySSGSgSDyS2SG_SStF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Getter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC6GetterP", + "mangledName": "$s11VideoSDKRTC6GetterP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Timestamp", + "printedName": "Google_Protobuf_Timestamp", + "children": [ + { + "kind": "Var", + "name": "seconds", + "printedName": "seconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64Vvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64Vvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64Vvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64VvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV7secondss5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nanos", + "printedName": "nanos", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32Vvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32Vvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32Vvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32VvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV5nanoss5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampVACycfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(seconds:nanos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "hasDefaultArg": true, + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "hasDefaultArg": true, + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV7seconds5nanosACs5Int64V_s5Int32Vtcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV7seconds5nanosACs5Int64V_s5Int32Vtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(timeIntervalSince1970:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV21timeIntervalSince1970ACSd_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV21timeIntervalSince1970ACSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(timeIntervalSinceReferenceDate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV30timeIntervalSinceReferenceDateACSd_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV30timeIntervalSinceReferenceDateACSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(date:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV4dateAC10Foundation4DateV_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV4dateAC10Foundation4DateV_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "timeIntervalSince1970", + "printedName": "timeIntervalSince1970", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV21timeIntervalSince1970Sdvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV21timeIntervalSince1970Sdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV21timeIntervalSince1970Sdvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV21timeIntervalSince1970Sdvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeIntervalSinceReferenceDate", + "printedName": "timeIntervalSinceReferenceDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV30timeIntervalSinceReferenceDateSdvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV30timeIntervalSinceReferenceDateSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV30timeIntervalSinceReferenceDateSdvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV30timeIntervalSinceReferenceDateSdvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "date", + "printedName": "date", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV4date10Foundation4DateVvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV4date10Foundation4DateVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV4date10Foundation4DateVvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV4date10Foundation4DateVvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Timestamp", + "printedName": "VideoSDKRTC.Google_Protobuf_Timestamp", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25Google_Protobuf_TimestampV", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_TimestampV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Trace_V1_TracesData", + "printedName": "Opentelemetry_Proto_Trace_V1_TracesData", + "children": [ + { + "kind": "Var", + "name": "resourceSpans", + "printedName": "resourceSpans", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13resourceSpansSayAA0c1_d1_e1_f9_ResourceJ0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_TracesData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataVACycfc", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_TracesData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_TracesData", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_TracesDataV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "children": [ + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0Vvp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0Vvg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Resource_V1_Resource", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource", + "usr": "s:11VideoSDKRTC032Opentelemetry_Proto_Resource_V1_E0V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0Vvs", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0VvM", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8resourceAA0c1_d1_g1_f1_G0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasResource", + "printedName": "hasResource", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV03hasG0Sbvp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV03hasG0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV03hasG0Sbvg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV03hasG0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearResource", + "printedName": "clearResource()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05clearG0yyF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05clearG0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "scopeSpans", + "printedName": "scopeSpans", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvs", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvM", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV05scopeH0SayAA0c1_d1_e1_f6_ScopeH0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "schemaURL", + "printedName": "schemaURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvs", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvM", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9schemaURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansVACycfc", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV", + "mangledName": "$s11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "printedName": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "children": [ + { + "kind": "Var", + "name": "scope", + "printedName": "scope", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_InstrumentationScope", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope", + "usr": "s:11VideoSDKRTC50Opentelemetry_Proto_Common_V1_InstrumentationScopeV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0VvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5scopeAA0c1_d8_Common_f16_InstrumentationG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasScope", + "printedName": "hasScope", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV03hasG0Sbvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV03hasG0Sbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV03hasG0Sbvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV03hasG0Sbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearScope", + "printedName": "clearScope()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV05clearG0yyF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV05clearG0yyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "spans", + "printedName": "spans", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV5spansSayAA0c1_d1_e1_F5_SpanVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "schemaURL", + "printedName": "schemaURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9schemaURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansVACycfc", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ScopeSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV", + "mangledName": "$s11VideoSDKRTC39Opentelemetry_Proto_Trace_V1_ScopeSpansV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "Opentelemetry_Proto_Trace_V1_Span", + "children": [ + { + "kind": "Var", + "name": "traceID", + "printedName": "traceID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV7traceID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "spanID", + "printedName": "spanID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6spanID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "traceState", + "printedName": "traceState", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10traceStateSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "parentSpanID", + "printedName": "parentSpanID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV06parentG2ID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4kindAC0G4KindOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "startTimeUnixNano", + "printedName": "startTimeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17startTimeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "endTimeUnixNano", + "printedName": "endTimeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV15endTimeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedAttributesCount", + "printedName": "droppedAttributesCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV22droppedAttributesCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "events", + "printedName": "events", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event]", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event]", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event]", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6eventsSayAC5EventVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedEventsCount", + "printedName": "droppedEventsCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV18droppedEventsCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "links", + "printedName": "links", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link]", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5linksSayAC4LinkVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedLinksCount", + "printedName": "droppedLinksCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17droppedLinksCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Status", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Status", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Status", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV6statusAA0c1_d1_e1_F7_StatusVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasStatus", + "printedName": "hasStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hasStatusSbvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hasStatusSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hasStatusSbvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hasStatusSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearStatus", + "printedName": "clearStatus()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV11clearStatusyyF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV11clearStatusyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SpanKind", + "printedName": "SpanKind", + "children": [ + { + "kind": "Var", + "name": "unspecified", + "printedName": "unspecified", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO11unspecifiedyA2EmF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO11unspecifiedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "internal", + "printedName": "internal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8internalyA2EmF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8internalyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "server", + "printedName": "server", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO6serveryA2EmF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO6serveryA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "client", + "printedName": "client", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO6clientyA2EmF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO6clientyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "producer", + "printedName": "producer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8produceryA2EmF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8produceryA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "consumer", + "printedName": "consumer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8consumeryA2EmF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8consumeryA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type) -> (Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO12UNRECOGNIZEDyAESicAEmF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO12UNRECOGNIZEDyAESicAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindOAEycfc", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvsZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvMZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO8allCasesSayAEGvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanKind", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV0G4KindO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Event", + "printedName": "Event", + "children": [ + { + "kind": "Var", + "name": "timeUnixNano", + "printedName": "timeUnixNano", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV12timeUnixNanos6UInt64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedAttributesCount", + "printedName": "droppedAttributesCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV22droppedAttributesCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventVAEycfc", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV5EventV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Link", + "printedName": "Link", + "children": [ + { + "kind": "Var", + "name": "traceID", + "printedName": "traceID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV7traceID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "spanID", + "printedName": "spanID", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV6spanID10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "traceState", + "printedName": "traceState", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10traceStateSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Common_V1_KeyValue", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue", + "usr": "s:11VideoSDKRTC38Opentelemetry_Proto_Common_V1_KeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV10attributesSayAA0c1_d8_Common_F9_KeyValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "droppedAttributesCount", + "printedName": "droppedAttributesCount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32Vvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32Vvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32Vvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32VvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV22droppedAttributesCounts6UInt32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkVAEycfc", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkVAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV" + }, + { + "kind": "TypeNominal", + "name": "Link", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV4LinkV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanVACycfc", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Span", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV", + "mangledName": "$s11VideoSDKRTC33Opentelemetry_Proto_Trace_V1_SpanV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Trace_V1_Status", + "printedName": "Opentelemetry_Proto_Trace_V1_Status", + "children": [ + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvp", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvg", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvs", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvM", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV7messageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvp", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvg", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvs", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvM", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV4codeAC0G4CodeOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StatusCode", + "printedName": "StatusCode", + "children": [ + { + "kind": "Var", + "name": "unset", + "printedName": "unset", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO5unsetyA2EmF", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO5unsetyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "ok", + "printedName": "ok", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO2okyA2EmF", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO2okyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO5erroryA2EmF", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO5erroryA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type) -> (Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO12UNRECOGNIZEDyAESicAEmF", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO12UNRECOGNIZEDyAESicAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeOAEycfc", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode]", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode]", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode]", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvsZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvsZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvMZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO8allCasesSayAEGvMZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO17_protobuf_nameMapAA05_NameK0VvpZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO17_protobuf_nameMapAA05_NameK0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO17_protobuf_nameMapAA05_NameK0VvgZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO17_protobuf_nameMapAA05_NameK0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode]", + "children": [ + { + "kind": "TypeNominal", + "name": "StatusCode", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV0G4CodeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Status", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusVACycfc", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV17_protobuf_nameMapAA05_NameJ0VvpZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV17_protobuf_nameMapAA05_NameJ0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV17_protobuf_nameMapAA05_NameJ0VvgZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV17_protobuf_nameMapAA05_NameJ0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Status", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_Status", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV", + "mangledName": "$s11VideoSDKRTC35Opentelemetry_Proto_Trace_V1_StatusV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "printedName": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "children": [ + { + "kind": "Var", + "name": "resourceSpans", + "printedName": "resourceSpans", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans]", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Trace_V1_ResourceSpans", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans", + "usr": "s:11VideoSDKRTC42Opentelemetry_Proto_Trace_V1_ResourceSpansV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvs", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvM", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13resourceSpansSayAA0c1_d1_f1_g9_ResourceL0VGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestVACycfc", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14ServiceRequestV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "printedName": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "children": [ + { + "kind": "Var", + "name": "partialSuccess", + "printedName": "partialSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvs", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0VvM", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV14partialSuccessAA0c1_d1_e1_f1_g1_hf7PartialL0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPartialSuccess", + "printedName": "hasPartialSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17hasPartialSuccessSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPartialSuccess", + "printedName": "clearPartialSuccess()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV19clearPartialSuccessyyF", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV19clearPartialSuccessyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseVACycfc", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF15ServiceResponseV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "printedName": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "children": [ + { + "kind": "Var", + "name": "rejectedSpans", + "printedName": "rejectedSpans", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64Vvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64Vvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64Vvs", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64VvM", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13rejectedSpanss5Int64VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorMessage", + "printedName": "errorMessage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvs", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvM", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV12errorMessageSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessVACycfc", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvpZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvgZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV17_protobuf_nameMapAA05_NameM0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV" + }, + { + "kind": "TypeNominal", + "name": "Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "printedName": "VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV", + "mangledName": "$s11VideoSDKRTC045Opentelemetry_Proto_Collector_Trace_V1_ExportF14PartialSuccessV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TraceFlags", + "printedName": "TraceFlags", + "children": [ + { + "kind": "Var", + "name": "byte", + "printedName": "byte", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10TraceFlagsV4bytes5UInt8Vvp", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV4bytes5UInt8Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10TraceFlagsV4bytes5UInt8Vvg", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV4bytes5UInt8Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hexString", + "printedName": "hexString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10TraceFlagsV9hexStringSSvp", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV9hexStringSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10TraceFlagsV9hexStringSSvg", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV9hexStringSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceFlagsVACycfc", + "mangledName": "$s11VideoSDKRTC10TraceFlagsVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromByte:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceFlagsV8fromByteACs5UInt8V_tcfc", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV8fromByteACs5UInt8V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromHexString:withOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceFlagsV13fromHexString10withOffsetACSS_Sitcfc", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV13fromHexString10withOffsetACSS_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "sampled", + "printedName": "sampled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10TraceFlagsV7sampledSbvp", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV7sampledSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10TraceFlagsV7sampledSbvg", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV7sampledSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setIsSampled", + "printedName": "setIsSampled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceFlagsV12setIsSampledyySbF", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV12setIsSampledyySbF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "settingIsSampled", + "printedName": "settingIsSampled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceFlagsV16settingIsSampledyACSbF", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV16settingIsSampledyACSbF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10TraceFlagsV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10TraceFlagsV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceFlagsV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + }, + { + "kind": "TypeNominal", + "name": "TraceFlags", + "printedName": "VideoSDKRTC.TraceFlags", + "usr": "s:11VideoSDKRTC10TraceFlagsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceFlagsV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceFlagsV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC10TraceFlagsV", + "mangledName": "$s11VideoSDKRTC10TraceFlagsV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TraceId", + "printedName": "TraceId", + "children": [ + { + "kind": "Var", + "name": "size", + "printedName": "size", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV4sizeSivpZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV4sizeSivpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV4sizeSivgZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV4sizeSivgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "invalidId", + "printedName": "invalidId", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV07invalidD0s6UInt64VvpZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV07invalidD0s6UInt64VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV07invalidD0s6UInt64VvgZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV07invalidD0s6UInt64VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "invalid", + "printedName": "invalid", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV7invalidACvpZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV7invalidACvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV7invalidACvgZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV7invalidACvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "idHi", + "printedName": "idHi", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV4idHis6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC7TraceIdV4idHis6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV4idHis6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC7TraceIdV4idHis6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "idLo", + "printedName": "idLo", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV4idLos6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC7TraceIdV4idLos6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV4idLos6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC7TraceIdV4idLos6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(idHi:idLo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdV4idHi0E2LoACs6UInt64V_AGtcfc", + "mangledName": "$s11VideoSDKRTC7TraceIdV4idHi0E2LoACs6UInt64V_AGtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdVACycfc", + "mangledName": "$s11VideoSDKRTC7TraceIdVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "random", + "printedName": "random()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV6randomACyFZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV6randomACyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdV8fromDataAC10Foundation0F0V_tcfc", + "mangledName": "$s11VideoSDKRTC7TraceIdV8fromDataAC10Foundation0F0V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromBytes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdV9fromBytesACSays5UInt8VG_tcfc", + "mangledName": "$s11VideoSDKRTC7TraceIdV9fromBytesACSays5UInt8VG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromBytes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:s10ArraySliceV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdV9fromBytesACs10ArraySliceVys5UInt8VG_tcfc", + "mangledName": "$s11VideoSDKRTC7TraceIdV9fromBytesACs10ArraySliceVys5UInt8VG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromBytes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ], + "usr": "s:s10ArraySliceV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdV9fromBytesACs10ArraySliceVySJG_tcfc", + "mangledName": "$s11VideoSDKRTC7TraceIdV9fromBytesACs10ArraySliceVySJG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "copyBytesTo", + "printedName": "copyBytesTo(dest:destOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "paramValueOwnership": "InOut", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV11copyBytesTo4dest0H6Offsety10Foundation4DataVz_SitF", + "mangledName": "$s11VideoSDKRTC7TraceIdV11copyBytesTo4dest0H6Offsety10Foundation4DataVz_SitF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyBytesTo", + "printedName": "copyBytesTo(dest:destOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV11copyBytesTo4dest0H6OffsetySays5UInt8VGz_SitF", + "mangledName": "$s11VideoSDKRTC7TraceIdV11copyBytesTo4dest0H6OffsetySays5UInt8VGz_SitF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyBytesTo", + "printedName": "copyBytesTo(dest:destOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:s10ArraySliceV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV11copyBytesTo4dest0H6Offsetys10ArraySliceVys5UInt8VGz_SitF", + "mangledName": "$s11VideoSDKRTC7TraceIdV11copyBytesTo4dest0H6Offsetys10ArraySliceVys5UInt8VGz_SitF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromHexString:withOffset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdV13fromHexString10withOffsetACSS_Sitcfc", + "mangledName": "$s11VideoSDKRTC7TraceIdV13fromHexString10withOffsetACSS_Sitcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "isValid", + "printedName": "isValid", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV7isValidSbvp", + "mangledName": "$s11VideoSDKRTC7TraceIdV7isValidSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV7isValidSbvg", + "mangledName": "$s11VideoSDKRTC7TraceIdV7isValidSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hexString", + "printedName": "hexString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV9hexStringSSvp", + "mangledName": "$s11VideoSDKRTC7TraceIdV9hexStringSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV9hexStringSSvg", + "mangledName": "$s11VideoSDKRTC7TraceIdV9hexStringSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rawHigherLong", + "printedName": "rawHigherLong", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV13rawHigherLongs6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC7TraceIdV13rawHigherLongs6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV13rawHigherLongs6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC7TraceIdV13rawHigherLongs6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rawLowerLong", + "printedName": "rawLowerLong", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV12rawLowerLongs6UInt64Vvp", + "mangledName": "$s11VideoSDKRTC7TraceIdV12rawLowerLongs6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV12rawLowerLongs6UInt64Vvg", + "mangledName": "$s11VideoSDKRTC7TraceIdV12rawLowerLongs6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV11descriptionSSvp", + "mangledName": "$s11VideoSDKRTC7TraceIdV11descriptionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV11descriptionSSvg", + "mangledName": "$s11VideoSDKRTC7TraceIdV11descriptionSSvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV1loiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV1loiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC7TraceIdV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceId", + "printedName": "VideoSDKRTC.TraceId", + "usr": "s:11VideoSDKRTC7TraceIdV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC7TraceIdV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC7TraceIdV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7TraceIdV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC7TraceIdV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7TraceIdV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC7TraceIdV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV4hash4intoys6HasherVz_tF", + "mangledName": "$s11VideoSDKRTC7TraceIdV4hash4intoys6HasherVz_tF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7TraceIdV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC7TraceIdV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC7TraceIdV", + "mangledName": "$s11VideoSDKRTC7TraceIdV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Tracer", + "printedName": "Tracer", + "children": [ + { + "kind": "Function", + "name": "spanBuilder", + "printedName": "spanBuilder(spanName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanBuilder", + "printedName": "VideoSDKRTC.SpanBuilder", + "usr": "s:11VideoSDKRTC11SpanBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC6TracerP11spanBuilder0D4NameAA04SpanE0_pSS_tF", + "mangledName": "$s11VideoSDKRTC6TracerP11spanBuilder0D4NameAA04SpanE0_pSS_tF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Tracer>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC6TracerP", + "mangledName": "$s11VideoSDKRTC6TracerP", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TracerProvider", + "printedName": "TracerProvider", + "children": [ + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationName:instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Tracer", + "printedName": "VideoSDKRTC.Tracer", + "usr": "s:11VideoSDKRTC6TracerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14TracerProviderP3get19instrumentationName0F7VersionAA0C0_pSS_SSSgtF", + "mangledName": "$s11VideoSDKRTC14TracerProviderP3get19instrumentationName0F7VersionAA0C0_pSS_SSSgtF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.TracerProvider>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC14TracerProviderP", + "mangledName": "$s11VideoSDKRTC14TracerProviderP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TracerProviderBuilder", + "printedName": "TracerProviderBuilder", + "children": [ + { + "kind": "Var", + "name": "clock", + "printedName": "clock", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC5clockAA5Clock_pvp", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC5clockAA5Clock_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC5clockAA5Clock_pvg", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC5clockAA5Clock_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "idGenerator", + "printedName": "idGenerator", + "children": [ + { + "kind": "TypeNominal", + "name": "IdGenerator", + "printedName": "VideoSDKRTC.IdGenerator", + "usr": "s:11VideoSDKRTC11IdGeneratorP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC11idGeneratorAA02IdG0_pvp", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC11idGeneratorAA02IdG0_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "IdGenerator", + "printedName": "VideoSDKRTC.IdGenerator", + "usr": "s:11VideoSDKRTC11IdGeneratorP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC11idGeneratorAA02IdG0_pvg", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC11idGeneratorAA02IdG0_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resource", + "printedName": "resource", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC8resourceAA8ResourceVvp", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC8resourceAA8ResourceVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC8resourceAA8ResourceVvg", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC8resourceAA8ResourceVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanLimits", + "printedName": "spanLimits", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC10spanLimitsAA04SpanG0Vvp", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC10spanLimitsAA04SpanG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC10spanLimitsAA04SpanG0Vvg", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC10spanLimitsAA04SpanG0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sampler", + "printedName": "sampler", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC7samplerAA7Sampler_pvp", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC7samplerAA7Sampler_pvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC7samplerAA7Sampler_pvg", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC7samplerAA7Sampler_pvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanProcessors", + "printedName": "spanProcessors", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC14spanProcessorsSayAA13SpanProcessor_pGvp", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC14spanProcessorsSayAA13SpanProcessor_pGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC14spanProcessorsSayAA13SpanProcessor_pGvg", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC14spanProcessorsSayAA13SpanProcessor_pGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TracerProviderBuilder", + "printedName": "VideoSDKRTC.TracerProviderBuilder", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderCACycfc", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(clock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC4with5clockACXDAA5Clock_p_tF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC4with5clockACXDAA5Clock_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(idGenerator:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "IdGenerator", + "printedName": "VideoSDKRTC.IdGenerator", + "usr": "s:11VideoSDKRTC11IdGeneratorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC4with11idGeneratorACXDAA02IdH0_p_tF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC4with11idGeneratorACXDAA02IdH0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(resource:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC4with8resourceACXDAA8ResourceV_tF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC4with8resourceACXDAA8ResourceV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(spanLimits:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC4with10spanLimitsACXDAA04SpanH0V_tF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC4with10spanLimitsACXDAA04SpanH0V_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(sampler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC4with7samplerACXDAA7Sampler_p_tF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC4with7samplerACXDAA7Sampler_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(spanProcessor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC3add13spanProcessorACXDAA04SpanH0_p_tF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC3add13spanProcessorACXDAA04SpanH0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(spanProcessors:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC3add14spanProcessorsACXDSayAA13SpanProcessor_pG_tF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC3add14spanProcessorsACXDSayAA13SpanProcessor_pG_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "TracerProviderSdk", + "printedName": "VideoSDKRTC.TracerProviderSdk", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC5buildAA0cD3SdkCyF", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC5buildAA0cD3SdkCyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC21TracerProviderBuilderC", + "mangledName": "$s11VideoSDKRTC21TracerProviderBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TracerProviderSdk", + "printedName": "TracerProviderSdk", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(clock:idGenerator:resource:spanLimits:sampler:spanProcessors:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TracerProviderSdk", + "printedName": "VideoSDKRTC.TracerProviderSdk", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC5ClockP" + }, + { + "kind": "TypeNominal", + "name": "IdGenerator", + "printedName": "VideoSDKRTC.IdGenerator", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC11IdGeneratorP" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC8ResourceV" + }, + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC10SpanLimitsV" + }, + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC7SamplerP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC5clock11idGenerator8resource10spanLimits7sampler0J10ProcessorsAcA5Clock_p_AA02IdH0_pAA8ResourceVAA04SpanK0VAA7Sampler_pSayAA0Q9Processor_pGtcfc", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC5clock11idGenerator8resource10spanLimits7sampler0J10ProcessorsAcA5Clock_p_AA02IdH0_pAA8ResourceVAA04SpanK0VAA7Sampler_pSayAA0Q9Processor_pGtcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(instrumentationName:instrumentationVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Tracer", + "printedName": "VideoSDKRTC.Tracer", + "usr": "s:11VideoSDKRTC6TracerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC3get19instrumentationName0G7VersionAA0C0_pSS_SSSgtF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC3get19instrumentationName0G7VersionAA0C0_pSS_SSSgtF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveClock", + "printedName": "getActiveClock()", + "children": [ + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC14getActiveClockAA0H0_pyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC14getActiveClockAA0H0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateActiveClock", + "printedName": "updateActiveClock(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Clock", + "printedName": "VideoSDKRTC.Clock", + "usr": "s:11VideoSDKRTC5ClockP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC17updateActiveClockyyAA0H0_pF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC17updateActiveClockyyAA0H0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveIdGenerator", + "printedName": "getActiveIdGenerator()", + "children": [ + { + "kind": "TypeNominal", + "name": "IdGenerator", + "printedName": "VideoSDKRTC.IdGenerator", + "usr": "s:11VideoSDKRTC11IdGeneratorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC20getActiveIdGeneratorAA0hI0_pyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC20getActiveIdGeneratorAA0hI0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateActiveIdGenerator", + "printedName": "updateActiveIdGenerator(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IdGenerator", + "printedName": "VideoSDKRTC.IdGenerator", + "usr": "s:11VideoSDKRTC11IdGeneratorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC23updateActiveIdGeneratoryyAA0hI0_pF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC23updateActiveIdGeneratoryyAA0hI0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveResource", + "printedName": "getActiveResource()", + "children": [ + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC17getActiveResourceAA0H0VyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC17getActiveResourceAA0H0VyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateActiveResource", + "printedName": "updateActiveResource(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Resource", + "printedName": "VideoSDKRTC.Resource", + "usr": "s:11VideoSDKRTC8ResourceV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC20updateActiveResourceyyAA0H0VF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC20updateActiveResourceyyAA0H0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveSpanLimits", + "printedName": "getActiveSpanLimits()", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC19getActiveSpanLimitsAA0hI0VyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC19getActiveSpanLimitsAA0hI0VyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateActiveSpanLimits", + "printedName": "updateActiveSpanLimits(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SpanLimits", + "printedName": "VideoSDKRTC.SpanLimits", + "usr": "s:11VideoSDKRTC10SpanLimitsV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC22updateActiveSpanLimitsyyAA0hI0VF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC22updateActiveSpanLimitsyyAA0hI0VF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveSampler", + "printedName": "getActiveSampler()", + "children": [ + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC16getActiveSamplerAA0H0_pyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC16getActiveSamplerAA0H0_pyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateActiveSampler", + "printedName": "updateActiveSampler(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sampler", + "printedName": "VideoSDKRTC.Sampler", + "usr": "s:11VideoSDKRTC7SamplerP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC19updateActiveSampleryyAA0H0_pF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC19updateActiveSampleryyAA0H0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActiveSpanProcessors", + "printedName": "getActiveSpanProcessors()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.SpanProcessor]", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC23getActiveSpanProcessorsSayAA0H9Processor_pGyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC23getActiveSpanProcessorsSayAA0H9Processor_pGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addSpanProcessor", + "printedName": "addSpanProcessor(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SpanProcessor", + "printedName": "VideoSDKRTC.SpanProcessor", + "usr": "s:11VideoSDKRTC13SpanProcessorP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC16addSpanProcessoryyAA0gH0_pF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC16addSpanProcessoryyAA0gH0_pF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resetSpanProcessors", + "printedName": "resetSpanProcessors()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC19resetSpanProcessorsyyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC19resetSpanProcessorsyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shutdown", + "printedName": "shutdown()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC8shutdownyyF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC8shutdownyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceFlush", + "printedName": "forceFlush(timeout:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC10forceFlush7timeoutySdSg_tF", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC10forceFlush7timeoutySdSg_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC17TracerProviderSdkC", + "mangledName": "$s11VideoSDKRTC17TracerProviderSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "TracerProvider", + "printedName": "TracerProvider", + "usr": "s:11VideoSDKRTC14TracerProviderP", + "mangledName": "$s11VideoSDKRTC14TracerProviderP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TracerSdk", + "printedName": "TracerSdk", + "children": [ + { + "kind": "Var", + "name": "instrumentationScopeInfo", + "printedName": "instrumentationScopeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC9TracerSdkC24instrumentationScopeInfoAA015InstrumentationfG0Vvp", + "mangledName": "$s11VideoSDKRTC9TracerSdkC24instrumentationScopeInfoAA015InstrumentationfG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InstrumentationScopeInfo", + "printedName": "VideoSDKRTC.InstrumentationScopeInfo", + "usr": "s:11VideoSDKRTC24InstrumentationScopeInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC9TracerSdkC24instrumentationScopeInfoAA015InstrumentationfG0Vvg", + "mangledName": "$s11VideoSDKRTC9TracerSdkC24instrumentationScopeInfoAA015InstrumentationfG0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "spanBuilder", + "printedName": "spanBuilder(spanName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanBuilder", + "printedName": "VideoSDKRTC.SpanBuilder", + "usr": "s:11VideoSDKRTC11SpanBuilderP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC9TracerSdkC11spanBuilder0E4NameAA04SpanF0_pSS_tF", + "mangledName": "$s11VideoSDKRTC9TracerSdkC11spanBuilder0E4NameAA04SpanF0_pSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC9TracerSdkC", + "mangledName": "$s11VideoSDKRTC9TracerSdkC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Tracer", + "printedName": "Tracer", + "usr": "s:11VideoSDKRTC6TracerP", + "mangledName": "$s11VideoSDKRTC6TracerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TraceState", + "printedName": "TraceState", + "children": [ + { + "kind": "Var", + "name": "entries", + "printedName": "entries", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.TraceState.Entry]", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.TraceState.Entry", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10TraceStateV7entriesSayAC5EntryVGvp", + "mangledName": "$s11VideoSDKRTC10TraceStateV7entriesSayAC5EntryVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.TraceState.Entry]", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.TraceState.Entry", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10TraceStateV7entriesSayAC5EntryVGvg", + "mangledName": "$s11VideoSDKRTC10TraceStateV7entriesSayAC5EntryVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceStateVACycfc", + "mangledName": "$s11VideoSDKRTC10TraceStateVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(entries:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.TraceState?", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.TraceState.Entry]", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.TraceState.Entry", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceStateV7entriesACSgSayAC5EntryVG_tcfc", + "mangledName": "$s11VideoSDKRTC10TraceStateV7entriesACSgSayAC5EntryVG_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceStateV3get3keySSSgSS_tF", + "mangledName": "$s11VideoSDKRTC10TraceStateV3get3keySSSgSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setting", + "printedName": "setting(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceStateV7setting3key5valueACSS_SStF", + "mangledName": "$s11VideoSDKRTC10TraceStateV7setting3key5valueACSS_SStF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removing", + "printedName": "removing(key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceStateV8removing3keyACSS_tF", + "mangledName": "$s11VideoSDKRTC10TraceStateV8removing3keyACSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Entry", + "printedName": "Entry", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV3keySSvp", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV3keySSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV3keySSvg", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV3keySSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV5valueSSvp", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV5valueSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV5valueSSvg", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV5valueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.TraceState.Entry?", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.TraceState.Entry", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV3key5valueAESgSS_SStcfc", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV3key5valueAESgSS_SStcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.TraceState.Entry", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV4fromAEs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.TraceState.Entry", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV" + }, + { + "kind": "TypeNominal", + "name": "Entry", + "printedName": "VideoSDKRTC.TraceState.Entry", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV2eeoiySbAE_AEtFZ", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV2eeoiySbAE_AEtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC10TraceStateV5EntryV", + "mangledName": "$s11VideoSDKRTC10TraceStateV5EntryV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC10TraceStateV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s11VideoSDKRTC10TraceStateV4fromACs7Decoder_p_tKcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + }, + { + "kind": "TypeNominal", + "name": "TraceState", + "printedName": "VideoSDKRTC.TraceState", + "usr": "s:11VideoSDKRTC10TraceStateV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceStateV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC10TraceStateV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC10TraceStateV6encode2toys7Encoder_p_tKF", + "mangledName": "$s11VideoSDKRTC10TraceStateV6encode2toys7Encoder_p_tKF", + "moduleName": "VideoSDKRTC", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC10TraceStateV", + "mangledName": "$s11VideoSDKRTC10TraceStateV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Syntax", + "printedName": "Google_Protobuf_Syntax", + "children": [ + { + "kind": "Var", + "name": "proto2", + "printedName": "proto2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Syntax.Type) -> VideoSDKRTC.Google_Protobuf_Syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO6proto2yA2CmF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO6proto2yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "proto3", + "printedName": "proto3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Syntax.Type) -> VideoSDKRTC.Google_Protobuf_Syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO6proto3yA2CmF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO6proto3yA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "editions", + "printedName": "editions", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Syntax.Type) -> VideoSDKRTC.Google_Protobuf_Syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO8editionsyA2CmF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO8editionsyA2CmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Syntax.Type) -> (Swift.Int) -> VideoSDKRTC.Google_Protobuf_Syntax", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Google_Protobuf_Syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO12UNRECOGNIZEDyACSicACmF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO12UNRECOGNIZEDyACSicACmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxOACycfc", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxOACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax?", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO8rawValueACSgSi_tcfc", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO8rawValueACSgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Syntax]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Syntax]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_SyntaxO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Syntax]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Type", + "printedName": "Google_Protobuf_Type", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Field", + "printedName": "VideoSDKRTC.Google_Protobuf_Field", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Field", + "printedName": "VideoSDKRTC.Google_Protobuf_Field", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Field", + "printedName": "VideoSDKRTC.Google_Protobuf_Field", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6fieldsSayAA0c1_D6_FieldVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "oneofs", + "printedName": "oneofs", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6oneofsSaySSGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7optionsSayAA0c1_D7_OptionVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sourceContext", + "printedName": "sourceContext", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0Vvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0Vvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0Vvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0VvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13sourceContextAA0c1_d7_SourceG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSourceContext", + "printedName": "hasSourceContext", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV16hasSourceContextSbvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV16hasSourceContextSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV16hasSourceContextSbvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV16hasSourceContextSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSourceContext", + "printedName": "clearSourceContext()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV18clearSourceContextyyF", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV18clearSourceContextyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "syntax", + "printedName": "syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV6syntaxAA0c1_D7_SyntaxOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "edition", + "printedName": "edition", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV7editionSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Type", + "printedName": "VideoSDKRTC.Google_Protobuf_Type", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeVACycfc", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Type", + "printedName": "VideoSDKRTC.Google_Protobuf_Type", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Type", + "printedName": "VideoSDKRTC.Google_Protobuf_Type", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20Google_Protobuf_TypeV", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_TypeV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Field", + "printedName": "Google_Protobuf_Field", + "children": [ + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4kindAC4KindOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "cardinality", + "printedName": "cardinality", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11cardinalityAC11CardinalityOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "number", + "printedName": "number", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32Vvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32Vvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32Vvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32VvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6numbers5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "typeURL", + "printedName": "typeURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7typeURLSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "oneofIndex", + "printedName": "oneofIndex", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32Vvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32Vvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32Vvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32VvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV10oneofIndexs5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "packed", + "printedName": "packed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV6packedSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV7optionsSayAA0c1_D7_OptionVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "jsonName", + "printedName": "jsonName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV8jsonNameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultValue", + "printedName": "defaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV12defaultValueSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Kind", + "printedName": "Kind", + "children": [ + { + "kind": "Var", + "name": "typeUnknown", + "printedName": "typeUnknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeUnknownyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeUnknownyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeDouble", + "printedName": "typeDouble", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeDoubleyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeDoubleyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeFloat", + "printedName": "typeFloat", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeFloatyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeFloatyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeInt64", + "printedName": "typeInt64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeInt64yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeInt64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeUint64", + "printedName": "typeUint64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeUint64yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeUint64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeInt32", + "printedName": "typeInt32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeInt32yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeInt32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeFixed64", + "printedName": "typeFixed64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeFixed64yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeFixed64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeFixed32", + "printedName": "typeFixed32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeFixed32yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeFixed32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeBool", + "printedName": "typeBool", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO8typeBoolyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO8typeBoolyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeString", + "printedName": "typeString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeStringyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeStringyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeGroup", + "printedName": "typeGroup", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeGroupyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeGroupyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeMessage", + "printedName": "typeMessage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeMessageyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO11typeMessageyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeBytes", + "printedName": "typeBytes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeBytesyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO9typeBytesyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeUint32", + "printedName": "typeUint32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeUint32yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeUint32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeEnum", + "printedName": "typeEnum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO8typeEnumyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO8typeEnumyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeSfixed32", + "printedName": "typeSfixed32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO12typeSfixed32yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO12typeSfixed32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeSfixed64", + "printedName": "typeSfixed64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO12typeSfixed64yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO12typeSfixed64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeSint32", + "printedName": "typeSint32", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeSint32yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeSint32yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "typeSint64", + "printedName": "typeSint64", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeSint64yA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO10typeSint64yA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Kind.Type) -> (Swift.Int) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Google_Protobuf_Field.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO12UNRECOGNIZEDyAESicAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO12UNRECOGNIZEDyAESicAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindOAEycfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind?", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field.Kind]", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field.Kind]", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV4KindO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field.Kind]", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Kind", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV4KindO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Cardinality", + "printedName": "Cardinality", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type) -> VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO7unknownyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO7unknownyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "optional", + "printedName": "optional", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type) -> VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8optionalyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8optionalyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "required", + "printedName": "required", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type) -> VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8requiredyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8requiredyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "repeated", + "printedName": "repeated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type) -> VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8repeatedyA2EmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8repeatedyA2EmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type) -> (Swift.Int) -> VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO12UNRECOGNIZEDyAESicAEmF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO12UNRECOGNIZEDyAESicAEmF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityOAEycfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityOAEycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality?", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8rawValueAESgSi_tcfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8rawValueAESgSi_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8rawValueSivp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8rawValueSivp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8rawValueSivg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8rawValueSivg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field.Cardinality]", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8allCasesSayAEGvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8allCasesSayAEGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field.Cardinality]", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8allCasesSayAEGvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO8allCasesSayAEGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:11VideoSDKRTC4EnumP", + "mangledName": "$s11VideoSDKRTC4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Field.Cardinality]", + "children": [ + { + "kind": "TypeNominal", + "name": "Cardinality", + "printedName": "VideoSDKRTC.Google_Protobuf_Field.Cardinality", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV11CardinalityO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Field", + "printedName": "VideoSDKRTC.Google_Protobuf_Field", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldVACycfc", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Field", + "printedName": "VideoSDKRTC.Google_Protobuf_Field", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Field", + "printedName": "VideoSDKRTC.Google_Protobuf_Field", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC21Google_Protobuf_FieldV", + "mangledName": "$s11VideoSDKRTC21Google_Protobuf_FieldV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Enum", + "printedName": "Google_Protobuf_Enum", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enumvalue", + "printedName": "enumvalue", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValue", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValue", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_EnumValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValue", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV9enumvalueSayAA0c1_d1_E5ValueVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7optionsSayAA0c1_D7_OptionVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sourceContext", + "printedName": "sourceContext", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0Vvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0Vvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0Vvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_SourceContext", + "printedName": "VideoSDKRTC.Google_Protobuf_SourceContext", + "usr": "s:11VideoSDKRTC29Google_Protobuf_SourceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0Vvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0Vvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0VvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13sourceContextAA0c1_d7_SourceG0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasSourceContext", + "printedName": "hasSourceContext", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV16hasSourceContextSbvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV16hasSourceContextSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV16hasSourceContextSbvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV16hasSourceContextSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearSourceContext", + "printedName": "clearSourceContext()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV18clearSourceContextyyF", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV18clearSourceContextyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "syntax", + "printedName": "syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Syntax", + "printedName": "VideoSDKRTC.Google_Protobuf_Syntax", + "usr": "s:11VideoSDKRTC22Google_Protobuf_SyntaxO" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV6syntaxAA0c1_D7_SyntaxOvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "edition", + "printedName": "edition", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV7editionSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Enum", + "printedName": "VideoSDKRTC.Google_Protobuf_Enum", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumVACycfc", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Enum", + "printedName": "VideoSDKRTC.Google_Protobuf_Enum", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Enum", + "printedName": "VideoSDKRTC.Google_Protobuf_Enum", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20Google_Protobuf_EnumV", + "mangledName": "$s11VideoSDKRTC20Google_Protobuf_EnumV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_EnumValue", + "printedName": "Google_Protobuf_EnumValue", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "number", + "printedName": "number", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32Vvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32Vvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32Vvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32VvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV6numbers5Int32VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Google_Protobuf_Option]", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV7optionsSayAA0c1_D7_OptionVGvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValue", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueVACycfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValue", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_EnumValue", + "printedName": "VideoSDKRTC.Google_Protobuf_EnumValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25Google_Protobuf_EnumValueV", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_EnumValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Option", + "printedName": "Google_Protobuf_Option", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV4nameSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Any", + "printedName": "VideoSDKRTC.Google_Protobuf_Any", + "usr": "s:11VideoSDKRTC19Google_Protobuf_AnyV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvs", + "moduleName": "VideoSDKRTC", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV5valueAA0c1_D4_AnyVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasValue", + "printedName": "hasValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV8hasValueSbvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV8hasValueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV8hasValueSbvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV8hasValueSbvg", + "moduleName": "VideoSDKRTC", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearValue", + "printedName": "clearValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV10clearValueyyF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV10clearValueyyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionVACycfc", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV17_protobuf_nameMapAA05_NameH0VvpZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV17_protobuf_nameMapAA05_NameH0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV17_protobuf_nameMapAA05_NameH0VvgZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV17_protobuf_nameMapAA05_NameH0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Option", + "printedName": "VideoSDKRTC.Google_Protobuf_Option", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV9hashValueSivp", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV9hashValueSivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV9hashValueSivg", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV9hashValueSivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC22Google_Protobuf_OptionV", + "mangledName": "$s11VideoSDKRTC22Google_Protobuf_OptionV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "UngroupedBatcher", + "printedName": "UngroupedBatcher", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "UngroupedBatcher", + "printedName": "VideoSDKRTC.UngroupedBatcher", + "usr": "s:11VideoSDKRTC16UngroupedBatcherC" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC16UngroupedBatcherCACycfc", + "mangledName": "$s11VideoSDKRTC16UngroupedBatcherCACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "finishCollectionCycle", + "printedName": "finishCollectionCycle()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.Metric]", + "children": [ + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16UngroupedBatcherC21finishCollectionCycleSayAA6MetricVGyF", + "mangledName": "$s11VideoSDKRTC16UngroupedBatcherC21finishCollectionCycleSayAA6MetricVGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "process", + "printedName": "process(metric:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metric", + "printedName": "VideoSDKRTC.Metric", + "usr": "s:11VideoSDKRTC6MetricV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC16UngroupedBatcherC7process6metricyAA6MetricV_tF", + "mangledName": "$s11VideoSDKRTC16UngroupedBatcherC7process6metricyAA6MetricV_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC16UngroupedBatcherC", + "mangledName": "$s11VideoSDKRTC16UngroupedBatcherC", + "moduleName": "VideoSDKRTC", + "deprecated": true, + "declAttributes": [ + "AccessControl", + "Available", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MetricProcessor", + "printedName": "MetricProcessor", + "usr": "s:11VideoSDKRTC15MetricProcessorP", + "mangledName": "$s11VideoSDKRTC15MetricProcessorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "UnknownStorage", + "printedName": "UnknownStorage", + "children": [ + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC14UnknownStorageV4data10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC14UnknownStorageV4data10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC14UnknownStorageV4data10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC14UnknownStorageV4data10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC14UnknownStorageVACycfc", + "mangledName": "$s11VideoSDKRTC14UnknownStorageVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14UnknownStorageV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC14UnknownStorageV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC14UnknownStorageV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC14UnknownStorageV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC14UnknownStorageV", + "mangledName": "$s11VideoSDKRTC14UnknownStorageV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ValueAtQuantile", + "printedName": "ValueAtQuantile", + "children": [ + { + "kind": "Function", + "name": "quantile", + "printedName": "quantile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ValueAtQuantileP8quantileSdyF", + "mangledName": "$s11VideoSDKRTC15ValueAtQuantileP8quantileSdyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ValueAtQuantile>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC15ValueAtQuantileP5valueSdyF", + "mangledName": "$s11VideoSDKRTC15ValueAtQuantileP5valueSdyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.ValueAtQuantile>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC15ValueAtQuantileP", + "mangledName": "$s11VideoSDKRTC15ValueAtQuantileP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Version", + "printedName": "Version", + "children": [ + { + "kind": "Var", + "name": "major", + "printedName": "major", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7VersionV5majorSivpZ", + "mangledName": "$s11VideoSDKRTC7VersionV5majorSivpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7VersionV5majorSivgZ", + "mangledName": "$s11VideoSDKRTC7VersionV5majorSivgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "minor", + "printedName": "minor", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7VersionV5minorSivpZ", + "mangledName": "$s11VideoSDKRTC7VersionV5minorSivpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7VersionV5minorSivgZ", + "mangledName": "$s11VideoSDKRTC7VersionV5minorSivgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "revision", + "printedName": "revision", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7VersionV8revisionSivpZ", + "mangledName": "$s11VideoSDKRTC7VersionV8revisionSivpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7VersionV8revisionSivgZ", + "mangledName": "$s11VideoSDKRTC7VersionV8revisionSivgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "versionString", + "printedName": "versionString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC7VersionV13versionStringSSvpZ", + "mangledName": "$s11VideoSDKRTC7VersionV13versionStringSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC7VersionV13versionStringSSvgZ", + "mangledName": "$s11VideoSDKRTC7VersionV13versionStringSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC7VersionV", + "mangledName": "$s11VideoSDKRTC7VersionV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "VideoQuality", + "printedName": "VideoQuality", + "children": [ + { + "kind": "Var", + "name": "high", + "printedName": "high", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoQuality.Type) -> VideoSDKRTC.VideoQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A7QualityO4highyA2CmF", + "mangledName": "$s11VideoSDKRTC0A7QualityO4highyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "medium", + "printedName": "medium", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoQuality.Type) -> VideoSDKRTC.VideoQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A7QualityO6mediumyA2CmF", + "mangledName": "$s11VideoSDKRTC0A7QualityO6mediumyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "low", + "printedName": "low", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideoSDKRTC.VideoQuality.Type) -> VideoSDKRTC.VideoQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC.VideoQuality.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11VideoSDKRTC0A7QualityO3lowyA2CmF", + "mangledName": "$s11VideoSDKRTC0A7QualityO3lowyA2CmF", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC0A7QualityO8rawValueSSvp", + "mangledName": "$s11VideoSDKRTC0A7QualityO8rawValueSSvp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC0A7QualityO8rawValueSSvg", + "mangledName": "$s11VideoSDKRTC0A7QualityO8rawValueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.VideoQuality?", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC0A7QualityO8rawValueACSgSS_tcfc", + "mangledName": "$s11VideoSDKRTC0A7QualityO8rawValueACSgSS_tcfc", + "moduleName": "VideoSDKRTC", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.VideoQuality]", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC0A7QualityO8allCasesSayACGvpZ", + "mangledName": "$s11VideoSDKRTC0A7QualityO8allCasesSayACGvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.VideoQuality]", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC0A7QualityO8allCasesSayACGvgZ", + "mangledName": "$s11VideoSDKRTC0A7QualityO8allCasesSayACGvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11VideoSDKRTC0A7QualityO", + "mangledName": "$s11VideoSDKRTC0A7QualityO", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[VideoSDKRTC.VideoQuality]", + "children": [ + { + "kind": "TypeNominal", + "name": "VideoQuality", + "printedName": "VideoSDKRTC.VideoQuality", + "usr": "s:11VideoSDKRTC0A7QualityO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebRTC", + "printedName": "WebRTC", + "declKind": "Import", + "moduleName": "VideoSDKRTC" + }, + { + "kind": "TypeDecl", + "name": "VideoSDK", + "printedName": "VideoSDK", + "children": [ + { + "kind": "Function", + "name": "config", + "printedName": "config(token:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC6config5tokenySS_tFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC6config5tokenySS_tFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initMeeting", + "printedName": "initMeeting(meetingId:participantId:participantName:micEnabled:webcamEnabled:customCameraVideoStream:mode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Meeting", + "printedName": "VideoSDKRTC.Meeting", + "usr": "s:11VideoSDKRTC7MeetingC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomRTCMediaStream", + "printedName": "VideoSDKRTC.CustomRTCMediaStream", + "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Mode?", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "VideoSDKRTC.Mode", + "usr": "s:11VideoSDKRTC4ModeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC11initMeeting9meetingId011participantG00H4Name10micEnabled06webcamK0012customCameraA6Stream4modeAA0E0CSS_S2SS2bAA014CustomRTCMediaO0CSgAA4ModeOSgtFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC11initMeeting9meetingId011participantG00H4Name10micEnabled06webcamK0012customCameraA6Stream4modeAA0E0CSS_S2SS2bAA014CustomRTCMediaO0CSgAA4ModeOSgtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createCameraVideoTrack", + "printedName": "createCameraVideoTrack(encoderConfig:facingMode:multiStream:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.CustomRTCMediaStream?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomRTCMediaStream", + "printedName": "VideoSDKRTC.CustomRTCMediaStream", + "usr": "s:11VideoSDKRTC20CustomRTCMediaStreamC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomVideoTrackConfig", + "printedName": "VideoSDKRTC.CustomVideoTrackConfig", + "usr": "s:11VideoSDKRTC06CustomA11TrackConfigO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AVFoundation.AVCaptureDevice.Position?", + "children": [ + { + "kind": "TypeNominal", + "name": "Position", + "printedName": "AVFoundation.AVCaptureDevice.Position", + "usr": "c:@E@AVCaptureDevicePosition" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC012createCameraA5Track13encoderConfig10facingMode11multiStreamAA014CustomRTCMediaL0CSgAA0mafH0OSg_So23AVCaptureDevicePositionVSgSbSgtKFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC012createCameraA5Track13encoderConfig10facingMode11multiStreamAA014CustomRTCMediaL0CSgAA0mafH0OSg_So23AVCaptureDevicePositionVSgSbSgtKFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAudioPermissionStatus", + "printedName": "getAudioPermissionStatus()", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC24getAudioPermissionStatusAA013authorisationG0OyFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC24getAudioPermissionStatusAA013authorisationG0OyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getVideoPermissionStatus", + "printedName": "getVideoPermissionStatus()", + "children": [ + { + "kind": "TypeNominal", + "name": "authorisationStatus", + "printedName": "VideoSDKRTC.authorisationStatus", + "usr": "s:11VideoSDKRTC19authorisationStatusO" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC03getA16PermissionStatusAA013authorisationF0OyFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC03getA16PermissionStatusAA013authorisationF0OyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAudioPermission", + "printedName": "getAudioPermission()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC18getAudioPermissionyyFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC18getAudioPermissionyyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getVideoPermission", + "printedName": "getVideoPermission()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC03getA10PermissionyyFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC03getA10PermissionyyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCameras", + "printedName": "getCameras()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC10getCamerasSaySSGyFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC10getCamerasSaySSGyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAudioDevices", + "printedName": "getAudioDevices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC0A3SDKC15getAudioDevicesSaySSGyFZ", + "mangledName": "$s11VideoSDKRTC0A3SDKC15getAudioDevicesSaySSGyFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC0A3SDKC", + "mangledName": "$s11VideoSDKRTC0A3SDKC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "Final" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ViewBuilder", + "printedName": "ViewBuilder", + "children": [ + { + "kind": "Function", + "name": "withName", + "printedName": "withName(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ViewBuilderC8withName4nameACXDSS_tF", + "mangledName": "$s11VideoSDKRTC11ViewBuilderC8withName4nameACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "withDescription", + "printedName": "withDescription(description:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ViewBuilderC15withDescription11descriptionACXDSS_tF", + "mangledName": "$s11VideoSDKRTC11ViewBuilderC15withDescription11descriptionACXDSS_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "withAggregation", + "printedName": "withAggregation(aggregation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Aggregation", + "printedName": "VideoSDKRTC.Aggregation", + "usr": "s:11VideoSDKRTC11AggregationP" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ViewBuilderC15withAggregation11aggregationACXDAA0F0_p_tF", + "mangledName": "$s11VideoSDKRTC11ViewBuilderC15withAggregation11aggregationACXDAA0F0_p_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addAttributeFilter", + "printedName": "addAttributeFilter(keyFilter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ViewBuilderC18addAttributeFilter03keyG0ACXDSbSSc_tF", + "mangledName": "$s11VideoSDKRTC11ViewBuilderC18addAttributeFilter03keyG0ACXDSbSSc_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addAttributeProcessor", + "printedName": "addAttributeProcessor(processor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "AttributeProcessor", + "printedName": "VideoSDKRTC.AttributeProcessor", + "usr": "s:11VideoSDKRTC18AttributeProcessorC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ViewBuilderC21addAttributeProcessor9processorACXDAA0fG0C_tF", + "mangledName": "$s11VideoSDKRTC11ViewBuilderC21addAttributeProcessor9processorACXDAA0fG0C_tF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "StableView", + "printedName": "VideoSDKRTC.StableView", + "usr": "s:11VideoSDKRTC10StableViewC" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC11ViewBuilderC5buildAA06StableC0CyF", + "mangledName": "$s11VideoSDKRTC11ViewBuilderC5buildAA06StableC0CyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11VideoSDKRTC11ViewBuilderC", + "mangledName": "$s11VideoSDKRTC11ViewBuilderC", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Visitor", + "printedName": "Visitor", + "children": [ + { + "kind": "Function", + "name": "visitSingularFloatField", + "printedName": "visitSingularFloatField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitSingularFloatField5value11fieldNumberySf_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitSingularFloatField5value11fieldNumberySf_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularDoubleField", + "printedName": "visitSingularDoubleField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitSingularDoubleField5value11fieldNumberySd_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitSingularDoubleField5value11fieldNumberySd_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularInt32Field", + "printedName": "visitSingularInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitSingularInt32Field5value11fieldNumberys0F0V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitSingularInt32Field5value11fieldNumberys0F0V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularInt64Field", + "printedName": "visitSingularInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitSingularInt64Field5value11fieldNumberys0F0V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitSingularInt64Field5value11fieldNumberys0F0V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularUInt32Field", + "printedName": "visitSingularUInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitSingularUInt32Field5value11fieldNumberys0F0V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitSingularUInt32Field5value11fieldNumberys0F0V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularUInt64Field", + "printedName": "visitSingularUInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitSingularUInt64Field5value11fieldNumberys0F0V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitSingularUInt64Field5value11fieldNumberys0F0V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSInt32Field", + "printedName": "visitSingularSInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitSingularSInt32Field5value11fieldNumberys5Int32V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitSingularSInt32Field5value11fieldNumberys5Int32V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSInt64Field", + "printedName": "visitSingularSInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitSingularSInt64Field5value11fieldNumberys5Int64V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitSingularSInt64Field5value11fieldNumberys5Int64V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularFixed32Field", + "printedName": "visitSingularFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP25visitSingularFixed32Field5value11fieldNumberys6UInt32V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP25visitSingularFixed32Field5value11fieldNumberys6UInt32V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularFixed64Field", + "printedName": "visitSingularFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP25visitSingularFixed64Field5value11fieldNumberys6UInt64V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP25visitSingularFixed64Field5value11fieldNumberys6UInt64V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSFixed32Field", + "printedName": "visitSingularSFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP26visitSingularSFixed32Field5value11fieldNumberys5Int32V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP26visitSingularSFixed32Field5value11fieldNumberys5Int32V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSFixed64Field", + "printedName": "visitSingularSFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP26visitSingularSFixed64Field5value11fieldNumberys5Int64V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP26visitSingularSFixed64Field5value11fieldNumberys5Int64V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularBoolField", + "printedName": "visitSingularBoolField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitSingularBoolField5value11fieldNumberySb_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitSingularBoolField5value11fieldNumberySb_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularStringField", + "printedName": "visitSingularStringField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitSingularStringField5value11fieldNumberySS_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitSingularStringField5value11fieldNumberySS_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularBytesField", + "printedName": "visitSingularBytesField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitSingularBytesField5value11fieldNumbery10Foundation4DataV_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitSingularBytesField5value11fieldNumbery10Foundation4DataV_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularEnumField", + "printedName": "visitSingularEnumField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitSingularEnumField5value11fieldNumberyqd___SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitSingularEnumField5value11fieldNumberyqd___SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularMessageField", + "printedName": "visitSingularMessageField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP25visitSingularMessageField5value11fieldNumberyqd___SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorP25visitSingularMessageField5value11fieldNumberyqd___SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularGroupField", + "printedName": "visitSingularGroupField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitSingularGroupField5value11fieldNumberyqd___SitKAA7MessageRd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitSingularGroupField5value11fieldNumberyqd___SitKAA7MessageRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedFloatField", + "printedName": "visitRepeatedFloatField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitRepeatedFloatField5value11fieldNumberySaySfG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitRepeatedFloatField5value11fieldNumberySaySfG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedDoubleField", + "printedName": "visitRepeatedDoubleField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitRepeatedDoubleField5value11fieldNumberySaySdG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitRepeatedDoubleField5value11fieldNumberySaySdG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedInt32Field", + "printedName": "visitRepeatedInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitRepeatedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitRepeatedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedInt64Field", + "printedName": "visitRepeatedInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitRepeatedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitRepeatedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedUInt32Field", + "printedName": "visitRepeatedUInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitRepeatedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitRepeatedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedUInt64Field", + "printedName": "visitRepeatedUInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitRepeatedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitRepeatedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSInt32Field", + "printedName": "visitRepeatedSInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitRepeatedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitRepeatedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSInt64Field", + "printedName": "visitRepeatedSInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitRepeatedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitRepeatedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedFixed32Field", + "printedName": "visitRepeatedFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP25visitRepeatedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP25visitRepeatedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedFixed64Field", + "printedName": "visitRepeatedFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP25visitRepeatedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP25visitRepeatedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSFixed32Field", + "printedName": "visitRepeatedSFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP26visitRepeatedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP26visitRepeatedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSFixed64Field", + "printedName": "visitRepeatedSFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP26visitRepeatedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP26visitRepeatedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedBoolField", + "printedName": "visitRepeatedBoolField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitRepeatedBoolField5value11fieldNumberySaySbG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitRepeatedBoolField5value11fieldNumberySaySbG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedStringField", + "printedName": "visitRepeatedStringField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitRepeatedStringField5value11fieldNumberySaySSG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitRepeatedStringField5value11fieldNumberySaySSG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedBytesField", + "printedName": "visitRepeatedBytesField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitRepeatedBytesField5value11fieldNumberySay10Foundation4DataVG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitRepeatedBytesField5value11fieldNumberySay10Foundation4DataVG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedEnumField", + "printedName": "visitRepeatedEnumField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitRepeatedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitRepeatedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedMessageField", + "printedName": "visitRepeatedMessageField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP25visitRepeatedMessageField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorP25visitRepeatedMessageField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedGroupField", + "printedName": "visitRepeatedGroupField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitRepeatedGroupField5value11fieldNumberySayqd__G_SitKAA7MessageRd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitRepeatedGroupField5value11fieldNumberySayqd__G_SitKAA7MessageRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedFloatField", + "printedName": "visitPackedFloatField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP21visitPackedFloatField5value11fieldNumberySaySfG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP21visitPackedFloatField5value11fieldNumberySaySfG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedDoubleField", + "printedName": "visitPackedDoubleField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitPackedDoubleField5value11fieldNumberySaySdG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitPackedDoubleField5value11fieldNumberySaySdG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedInt32Field", + "printedName": "visitPackedInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP21visitPackedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP21visitPackedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedInt64Field", + "printedName": "visitPackedInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP21visitPackedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP21visitPackedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedUInt32Field", + "printedName": "visitPackedUInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitPackedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitPackedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedUInt64Field", + "printedName": "visitPackedUInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitPackedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitPackedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSInt32Field", + "printedName": "visitPackedSInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitPackedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitPackedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSInt64Field", + "printedName": "visitPackedSInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP22visitPackedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP22visitPackedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedFixed32Field", + "printedName": "visitPackedFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitPackedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitPackedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedFixed64Field", + "printedName": "visitPackedFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP23visitPackedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP23visitPackedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSFixed32Field", + "printedName": "visitPackedSFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitPackedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitPackedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSFixed64Field", + "printedName": "visitPackedSFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP24visitPackedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP24visitPackedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedBoolField", + "printedName": "visitPackedBoolField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP20visitPackedBoolField5value11fieldNumberySaySbG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorP20visitPackedBoolField5value11fieldNumberySaySbG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedEnumField", + "printedName": "visitPackedEnumField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP20visitPackedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorP20visitPackedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitMapField", + "printedName": "visitMapField(fieldType:value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._ProtobufMap<τ_1_0, τ_1_1>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProtobufMap", + "printedName": "VideoSDKRTC._ProtobufMap<τ_1_0, τ_1_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:11VideoSDKRTC12_ProtobufMapV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_1_0.BaseType : τ_1_1.BaseType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_1.BaseType" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP13visitMapField9fieldType5value0G6NumberyAA09_ProtobufE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__AKQyd_0_GSitKAA0e3KeyH0Rd__AA0e5ValueH0Rd_0_r0_lF", + "mangledName": "$s11VideoSDKRTC7VisitorP13visitMapField9fieldType5value0G6NumberyAA09_ProtobufE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__AKQyd_0_GSitKAA0e3KeyH0Rd__AA0e5ValueH0Rd_0_r0_lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0, τ_1_1 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.MapKeyType, τ_1_1 : VideoSDKRTC.MapValueType>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitMapField", + "printedName": "visitMapField(fieldType:value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._ProtobufEnumMap<τ_1_0, τ_1_1>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProtobufEnumMap", + "printedName": "VideoSDKRTC._ProtobufEnumMap<τ_1_0, τ_1_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:11VideoSDKRTC16_ProtobufEnumMapV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_1_0.BaseType : τ_1_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP13visitMapField9fieldType5value0G6NumberyAA013_ProtobufEnumE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GSitKAA0e3KeyH0Rd__AA0L0Rd_0_Si8RawValueRtd_0_r0_lF", + "mangledName": "$s11VideoSDKRTC7VisitorP13visitMapField9fieldType5value0G6NumberyAA013_ProtobufEnumE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GSitKAA0e3KeyH0Rd__AA0L0Rd_0_Si8RawValueRtd_0_r0_lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0, τ_1_1 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.MapKeyType, τ_1_1 : VideoSDKRTC.Enum, τ_1_1.RawValue == Swift.Int>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitMapField", + "printedName": "visitMapField(fieldType:value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideoSDKRTC._ProtobufMessageMap<τ_1_0, τ_1_1>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProtobufMessageMap", + "printedName": "VideoSDKRTC._ProtobufMessageMap<τ_1_0, τ_1_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:11VideoSDKRTC19_ProtobufMessageMapV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_1_0.BaseType : τ_1_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_1_0.BaseType" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_1" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP13visitMapField9fieldType5value0G6NumberyAA016_ProtobufMessageE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GSitKAA0e3KeyH0Rd__SHRd_0_AA0L0Rd_0_r0_lF", + "mangledName": "$s11VideoSDKRTC7VisitorP13visitMapField9fieldType5value0G6NumberyAA016_ProtobufMessageE0Vyqd__qd_0_Gm_SDy04BaseH0Qyd__qd_0_GSitKAA0e3KeyH0Rd__SHRd_0_AA0L0Rd_0_r0_lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0, τ_1_1 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.MapKeyType, τ_1_1 : Swift.Hashable, τ_1_1 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitExtensionFields", + "printedName": "visitExtensionFields(fields:start:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP20visitExtensionFields6fields5start3endyAA0E13FieldValueSetV_S2itKF", + "mangledName": "$s11VideoSDKRTC7VisitorP20visitExtensionFields6fields5start3endyAA0E13FieldValueSetV_S2itKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitExtensionFieldsAsMessageSet", + "printedName": "visitExtensionFieldsAsMessageSet(fields:start:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP32visitExtensionFieldsAsMessageSet6fields5start3endyAA0e10FieldValueI0V_S2itKF", + "mangledName": "$s11VideoSDKRTC7VisitorP32visitExtensionFieldsAsMessageSet6fields5start3endyAA0e10FieldValueI0V_S2itKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitUnknown", + "printedName": "visitUnknown(bytes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorP12visitUnknown5bytesy10Foundation4DataV_tKF", + "mangledName": "$s11VideoSDKRTC7VisitorP12visitUnknown5bytesy10Foundation4DataV_tKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularFloatField", + "printedName": "visitSingularFloatField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitSingularFloatField5value11fieldNumberySf_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitSingularFloatField5value11fieldNumberySf_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularInt32Field", + "printedName": "visitSingularInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitSingularInt32Field5value11fieldNumberys0F0V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitSingularInt32Field5value11fieldNumberys0F0V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularUInt32Field", + "printedName": "visitSingularUInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitSingularUInt32Field5value11fieldNumberys0F0V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitSingularUInt32Field5value11fieldNumberys0F0V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSInt32Field", + "printedName": "visitSingularSInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitSingularSInt32Field5value11fieldNumberys5Int32V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitSingularSInt32Field5value11fieldNumberys5Int32V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSInt64Field", + "printedName": "visitSingularSInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitSingularSInt64Field5value11fieldNumberys5Int64V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitSingularSInt64Field5value11fieldNumberys5Int64V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularFixed32Field", + "printedName": "visitSingularFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE25visitSingularFixed32Field5value11fieldNumberys6UInt32V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE25visitSingularFixed32Field5value11fieldNumberys6UInt32V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularFixed64Field", + "printedName": "visitSingularFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE25visitSingularFixed64Field5value11fieldNumberys6UInt64V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE25visitSingularFixed64Field5value11fieldNumberys6UInt64V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSFixed32Field", + "printedName": "visitSingularSFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE26visitSingularSFixed32Field5value11fieldNumberys5Int32V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE26visitSingularSFixed32Field5value11fieldNumberys5Int32V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularSFixed64Field", + "printedName": "visitSingularSFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE26visitSingularSFixed64Field5value11fieldNumberys5Int64V_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE26visitSingularSFixed64Field5value11fieldNumberys5Int64V_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedFloatField", + "printedName": "visitRepeatedFloatField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitRepeatedFloatField5value11fieldNumberySaySfG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitRepeatedFloatField5value11fieldNumberySaySfG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedDoubleField", + "printedName": "visitRepeatedDoubleField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitRepeatedDoubleField5value11fieldNumberySaySdG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitRepeatedDoubleField5value11fieldNumberySaySdG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedInt32Field", + "printedName": "visitRepeatedInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitRepeatedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitRepeatedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedInt64Field", + "printedName": "visitRepeatedInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitRepeatedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitRepeatedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedUInt32Field", + "printedName": "visitRepeatedUInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitRepeatedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitRepeatedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedUInt64Field", + "printedName": "visitRepeatedUInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitRepeatedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitRepeatedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSInt32Field", + "printedName": "visitRepeatedSInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitRepeatedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitRepeatedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSInt64Field", + "printedName": "visitRepeatedSInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitRepeatedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitRepeatedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedFixed32Field", + "printedName": "visitRepeatedFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE25visitRepeatedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE25visitRepeatedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedFixed64Field", + "printedName": "visitRepeatedFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE25visitRepeatedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE25visitRepeatedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSFixed32Field", + "printedName": "visitRepeatedSFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE26visitRepeatedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE26visitRepeatedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedSFixed64Field", + "printedName": "visitRepeatedSFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE26visitRepeatedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE26visitRepeatedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedBoolField", + "printedName": "visitRepeatedBoolField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE22visitRepeatedBoolField5value11fieldNumberySaySbG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE22visitRepeatedBoolField5value11fieldNumberySaySbG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedStringField", + "printedName": "visitRepeatedStringField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitRepeatedStringField5value11fieldNumberySaySSG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitRepeatedStringField5value11fieldNumberySaySSG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedBytesField", + "printedName": "visitRepeatedBytesField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitRepeatedBytesField5value11fieldNumberySay10Foundation4DataVG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitRepeatedBytesField5value11fieldNumberySay10Foundation4DataVG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedEnumField", + "printedName": "visitRepeatedEnumField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE22visitRepeatedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE22visitRepeatedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedMessageField", + "printedName": "visitRepeatedMessageField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE25visitRepeatedMessageField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE25visitRepeatedMessageField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitRepeatedGroupField", + "printedName": "visitRepeatedGroupField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitRepeatedGroupField5value11fieldNumberySayqd__G_SitKAA7MessageRd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitRepeatedGroupField5value11fieldNumberySayqd__G_SitKAA7MessageRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedFloatField", + "printedName": "visitPackedFloatField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Float]", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE21visitPackedFloatField5value11fieldNumberySaySfG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE21visitPackedFloatField5value11fieldNumberySaySfG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedDoubleField", + "printedName": "visitPackedDoubleField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE22visitPackedDoubleField5value11fieldNumberySaySdG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE22visitPackedDoubleField5value11fieldNumberySaySdG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedInt32Field", + "printedName": "visitPackedInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE21visitPackedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE21visitPackedInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedInt64Field", + "printedName": "visitPackedInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE21visitPackedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE21visitPackedInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedUInt32Field", + "printedName": "visitPackedUInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE22visitPackedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE22visitPackedUInt32Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedUInt64Field", + "printedName": "visitPackedUInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE22visitPackedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE22visitPackedUInt64Field5value11fieldNumberySays0F0VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSInt32Field", + "printedName": "visitPackedSInt32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE22visitPackedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE22visitPackedSInt32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSInt64Field", + "printedName": "visitPackedSInt64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE22visitPackedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE22visitPackedSInt64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedFixed32Field", + "printedName": "visitPackedFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt32]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitPackedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitPackedFixed32Field5value11fieldNumberySays6UInt32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedFixed64Field", + "printedName": "visitPackedFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt64]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitPackedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitPackedFixed64Field5value11fieldNumberySays6UInt64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSFixed32Field", + "printedName": "visitPackedSFixed32Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int32]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitPackedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitPackedSFixed32Field5value11fieldNumberySays5Int32VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedSFixed64Field", + "printedName": "visitPackedSFixed64Field(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int64]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE24visitPackedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE24visitPackedSFixed64Field5value11fieldNumberySays5Int64VG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedBoolField", + "printedName": "visitPackedBoolField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Bool]", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE20visitPackedBoolField5value11fieldNumberySaySbG_SitKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE20visitPackedBoolField5value11fieldNumberySaySbG_SitKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitPackedEnumField", + "printedName": "visitPackedEnumField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE20visitPackedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE20visitPackedEnumField5value11fieldNumberySayqd__G_SitKAA0F0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Enum>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitSingularGroupField", + "printedName": "visitSingularGroupField(value:fieldNumber:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE23visitSingularGroupField5value11fieldNumberyqd___SitKAA7MessageRd__lF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE23visitSingularGroupField5value11fieldNumberyqd___SitKAA7MessageRd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : VideoSDKRTC.Visitor, τ_1_0 : VideoSDKRTC.Message>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitExtensionFieldsAsMessageSet", + "printedName": "visitExtensionFieldsAsMessageSet(fields:start:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE32visitExtensionFieldsAsMessageSet6fields5start3endyAA0e10FieldValueI0V_S2itKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE32visitExtensionFieldsAsMessageSet6fields5start3endyAA0e10FieldValueI0V_S2itKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "visitExtensionFields", + "printedName": "visitExtensionFields(fields:start:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExtensionFieldValueSet", + "printedName": "VideoSDKRTC.ExtensionFieldValueSet", + "usr": "s:11VideoSDKRTC22ExtensionFieldValueSetV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC7VisitorPAAE20visitExtensionFields6fields5start3endyAA0E13FieldValueSetV_S2itKF", + "mangledName": "$s11VideoSDKRTC7VisitorPAAE20visitExtensionFields6fields5start3endyAA0E13FieldValueSetV_S2itKF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:11VideoSDKRTC7VisitorP", + "mangledName": "$s11VideoSDKRTC7VisitorP", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "W3CBaggagePropagator", + "printedName": "W3CBaggagePropagator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "W3CBaggagePropagator", + "printedName": "VideoSDKRTC.W3CBaggagePropagator", + "usr": "s:11VideoSDKRTC20W3CBaggagePropagatorV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC20W3CBaggagePropagatorVACycfc", + "mangledName": "$s11VideoSDKRTC20W3CBaggagePropagatorVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC20W3CBaggagePropagatorV6fieldsShySSGvp", + "mangledName": "$s11VideoSDKRTC20W3CBaggagePropagatorV6fieldsShySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC20W3CBaggagePropagatorV6fieldsShySSGvg", + "mangledName": "$s11VideoSDKRTC20W3CBaggagePropagatorV6fieldsShySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "inject", + "printedName": "inject(baggage:carrier:setter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20W3CBaggagePropagatorV6inject7baggage7carrier6setteryAA7Baggage_p_SDyS2SGzxtAA6SetterRzlF", + "mangledName": "$s11VideoSDKRTC20W3CBaggagePropagatorV6inject7baggage7carrier6setteryAA7Baggage_p_SDyS2SGzxtAA6SetterRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Setter>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "extract", + "printedName": "extract(carrier:getter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.Baggage?", + "children": [ + { + "kind": "TypeNominal", + "name": "Baggage", + "printedName": "VideoSDKRTC.Baggage", + "usr": "s:11VideoSDKRTC7BaggageP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC20W3CBaggagePropagatorV7extract7carrier6getterAA7Baggage_pSgSDyS2SG_xtAA6GetterRzlF", + "mangledName": "$s11VideoSDKRTC20W3CBaggagePropagatorV7extract7carrier6getterAA7Baggage_pSgSDyS2SG_xtAA6GetterRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Getter>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC20W3CBaggagePropagatorV", + "mangledName": "$s11VideoSDKRTC20W3CBaggagePropagatorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "TextMapBaggagePropagator", + "printedName": "TextMapBaggagePropagator", + "usr": "s:11VideoSDKRTC24TextMapBaggagePropagatorP", + "mangledName": "$s11VideoSDKRTC24TextMapBaggagePropagatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "W3CTraceContextPropagator", + "printedName": "W3CTraceContextPropagator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "W3CTraceContextPropagator", + "printedName": "VideoSDKRTC.W3CTraceContextPropagator", + "usr": "s:11VideoSDKRTC25W3CTraceContextPropagatorV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25W3CTraceContextPropagatorVACycfc", + "mangledName": "$s11VideoSDKRTC25W3CTraceContextPropagatorVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25W3CTraceContextPropagatorV6fieldsShySSGvp", + "mangledName": "$s11VideoSDKRTC25W3CTraceContextPropagatorV6fieldsShySSGvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25W3CTraceContextPropagatorV6fieldsShySSGvg", + "mangledName": "$s11VideoSDKRTC25W3CTraceContextPropagatorV6fieldsShySSGvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "inject", + "printedName": "inject(spanContext:carrier:setter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25W3CTraceContextPropagatorV6inject04spanE07carrier6setteryAA04SpanE0V_SDyS2SGzxtAA6SetterRzlF", + "mangledName": "$s11VideoSDKRTC25W3CTraceContextPropagatorV6inject04spanE07carrier6setteryAA04SpanE0V_SDyS2SGzxtAA6SetterRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Setter>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "extract", + "printedName": "extract(carrier:getter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.SpanContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "SpanContext", + "printedName": "VideoSDKRTC.SpanContext", + "usr": "s:11VideoSDKRTC11SpanContextV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25W3CTraceContextPropagatorV7extract7carrier6getterAA04SpanE0VSgSDyS2SG_xtAA6GetterRzlF", + "mangledName": "$s11VideoSDKRTC25W3CTraceContextPropagatorV7extract7carrier6getterAA04SpanE0VSgSDyS2SG_xtAA6GetterRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Getter>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25W3CTraceContextPropagatorV", + "mangledName": "$s11VideoSDKRTC25W3CTraceContextPropagatorV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "TextMapPropagator", + "printedName": "TextMapPropagator", + "usr": "s:11VideoSDKRTC17TextMapPropagatorP", + "mangledName": "$s11VideoSDKRTC17TextMapPropagatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_DoubleValue", + "printedName": "Google_Protobuf_DoubleValue", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV5valueSdvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DoubleValue", + "printedName": "VideoSDKRTC.Google_Protobuf_DoubleValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueVACycfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DoubleValue", + "printedName": "VideoSDKRTC.Google_Protobuf_DoubleValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueVyACSdcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueVyACSdcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(floatLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DoubleValue", + "printedName": "VideoSDKRTC.Google_Protobuf_DoubleValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV12floatLiteralACSd_tcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV12floatLiteralACSd_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DoubleValue", + "printedName": "VideoSDKRTC.Google_Protobuf_DoubleValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_DoubleValue", + "printedName": "VideoSDKRTC.Google_Protobuf_DoubleValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27Google_Protobuf_DoubleValueV", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_DoubleValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_FloatValue", + "printedName": "Google_Protobuf_FloatValue", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV5valueSfvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FloatValue", + "printedName": "VideoSDKRTC.Google_Protobuf_FloatValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueVACycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FloatValue", + "printedName": "VideoSDKRTC.Google_Protobuf_FloatValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueVyACSfcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueVyACSfcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(floatLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FloatValue", + "printedName": "VideoSDKRTC.Google_Protobuf_FloatValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV12floatLiteralACSf_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV12floatLiteralACSf_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FloatValue", + "printedName": "VideoSDKRTC.Google_Protobuf_FloatValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_FloatValue", + "printedName": "VideoSDKRTC.Google_Protobuf_FloatValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC26Google_Protobuf_FloatValueV", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_FloatValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Int64Value", + "printedName": "Google_Protobuf_Int64Value", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0Vvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0Vvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0Vvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0VvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV5values0E0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int64Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueVACycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int64Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueVyACs0E0Vcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueVyACs0E0Vcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(integerLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int64Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV14integerLiteralACs0E0V_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV14integerLiteralACs0E0V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int64Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int64Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int64ValueV", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int64ValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_UInt64Value", + "printedName": "Google_Protobuf_UInt64Value", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0Vvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0Vvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0Vvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0VvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV5values0E0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt64Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueVACycfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt64Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueVyACs0E0Vcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueVyACs0E0Vcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(integerLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt64Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV14integerLiteralACs0E0V_tcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV14integerLiteralACs0E0V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt64Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt64Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt64Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt64ValueV", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt64ValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_Int32Value", + "printedName": "Google_Protobuf_Int32Value", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0Vvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0Vvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0Vvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0VvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV5values0E0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int32Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueVACycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int32Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueVyACs0E0Vcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueVyACs0E0Vcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(integerLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int32Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV14integerLiteralACs0E0V_tcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV14integerLiteralACs0E0V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int32Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_Int32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_Int32Value", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC26Google_Protobuf_Int32ValueV", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_Int32ValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_UInt32Value", + "printedName": "Google_Protobuf_UInt32Value", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0Vvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0Vvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0Vvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0Vvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0Vvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0VvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV5values0E0VvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt32Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueVACycfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt32Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueVyACs0E0Vcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueVyACs0E0Vcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(integerLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt32Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV14integerLiteralACs0E0V_tcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV14integerLiteralACs0E0V_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt32Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_UInt32Value", + "printedName": "VideoSDKRTC.Google_Protobuf_UInt32Value", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27Google_Protobuf_UInt32ValueV", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_UInt32ValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_BoolValue", + "printedName": "Google_Protobuf_BoolValue", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV5valueSbvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BoolValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BoolValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueVACycfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BoolValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BoolValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueVyACSbcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueVyACSbcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(booleanLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BoolValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BoolValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV14booleanLiteralACSb_tcfc", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV14booleanLiteralACSb_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BoolValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BoolValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BoolValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BoolValue", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC25Google_Protobuf_BoolValueV", + "mangledName": "$s11VideoSDKRTC25Google_Protobuf_BoolValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByBooleanLiteral", + "printedName": "ExpressibleByBooleanLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "BooleanLiteralType", + "printedName": "BooleanLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "usr": "s:s27ExpressibleByBooleanLiteralP", + "mangledName": "$ss27ExpressibleByBooleanLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_StringValue", + "printedName": "Google_Protobuf_StringValue", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV5valueSSvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_StringValue", + "printedName": "VideoSDKRTC.Google_Protobuf_StringValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueVACycfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_StringValue", + "printedName": "VideoSDKRTC.Google_Protobuf_StringValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueVyACSScfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueVyACSScfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_StringValue", + "printedName": "VideoSDKRTC.Google_Protobuf_StringValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV13stringLiteralACSS_tcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV13stringLiteralACSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(extendedGraphemeClusterLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_StringValue", + "printedName": "VideoSDKRTC.Google_Protobuf_StringValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV30extendedGraphemeClusterLiteralACSS_tcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV30extendedGraphemeClusterLiteralACSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(unicodeScalarLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_StringValue", + "printedName": "VideoSDKRTC.Google_Protobuf_StringValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV20unicodeScalarLiteralACSS_tcfc", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV20unicodeScalarLiteralACSS_tcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_StringValue", + "printedName": "VideoSDKRTC.Google_Protobuf_StringValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_StringValue", + "printedName": "VideoSDKRTC.Google_Protobuf_StringValue", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC27Google_Protobuf_StringValueV", + "mangledName": "$s11VideoSDKRTC27Google_Protobuf_StringValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Google_Protobuf_BytesValue", + "printedName": "Google_Protobuf_BytesValue", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV5value10Foundation4DataVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "VideoSDKRTC.UnknownStorage", + "usr": "s:11VideoSDKRTC14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvs", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvs", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvM", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV13unknownFieldsAA14UnknownStorageVvM", + "moduleName": "VideoSDKRTC", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BytesValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BytesValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueVACycfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueVACycfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BytesValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BytesValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueVyAC10Foundation4DataVcfc", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueVyAC10Foundation4DataVcfc", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV16protoMessageNameSSvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV16protoMessageNameSSvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV16protoMessageNameSSvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV16protoMessageNameSSvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV17_protobuf_nameMapAA05_NameI0VvpZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "VideoSDKRTC._NameMap", + "usr": "s:11VideoSDKRTC8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV17_protobuf_nameMapAA05_NameI0VvgZ", + "moduleName": "VideoSDKRTC", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV13decodeMessage7decoderyxz_tKAA10SPBDecoderRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.SPBDecoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV8traverse7visitoryxz_tKAA7VisitorRzlF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : VideoSDKRTC.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BytesValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BytesValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV" + }, + { + "kind": "TypeNominal", + "name": "Google_Protobuf_BytesValue", + "printedName": "VideoSDKRTC.Google_Protobuf_BytesValue", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV" + } + ], + "declKind": "Func", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV2eeoiySbAC_ACtFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV04hashF0Sivp", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV04hashF0Sivp", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV04hashF0Sivg", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV04hashF0Sivg", + "moduleName": "VideoSDKRTC", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11VideoSDKRTC26Google_Protobuf_BytesValueV", + "mangledName": "$s11VideoSDKRTC26Google_Protobuf_BytesValueV", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:11VideoSDKRTC7MessageP", + "mangledName": "$s11VideoSDKRTC7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:11VideoSDKRTC26_MessageImplementationBaseP", + "mangledName": "$s11VideoSDKRTC26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:11VideoSDKRTC19_ProtoNameProvidingP", + "mangledName": "$s11VideoSDKRTC19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "_MessageBase", + "printedName": "_MessageBase", + "usr": "s:11VideoSDKRTC12_MessageBaseP", + "mangledName": "$s11VideoSDKRTC12_MessageBaseP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AsyncSequence", + "printedName": "AsyncSequence", + "children": [ + { + "kind": "Function", + "name": "binaryProtobufDelimitedMessages", + "printedName": "binaryProtobufDelimitedMessages(of:extensions:partial:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AsyncMessageSequence", + "printedName": "VideoSDKRTC.AsyncMessageSequence<τ_0_0, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:11VideoSDKRTC20AsyncMessageSequenceV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_1_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideoSDKRTC.ExtensionMap?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExtensionMap", + "printedName": "VideoSDKRTC.ExtensionMap", + "usr": "s:11VideoSDKRTC12ExtensionMapP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BinaryDecodingOptions", + "printedName": "VideoSDKRTC.BinaryDecodingOptions", + "hasDefaultArg": true, + "usr": "s:11VideoSDKRTC21BinaryDecodingOptionsV" + } + ], + "declKind": "Func", + "usr": "s:Sci11VideoSDKRTCs5UInt8V7ElementRtzrlE31binaryProtobufDelimitedMessages2of10extensions7partial7optionsAA20AsyncMessageSequenceVyxqd__Gqd__m_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtAA0N0Rd__lF", + "mangledName": "$sSci11VideoSDKRTCs5UInt8V7ElementRtzrlE31binaryProtobufDelimitedMessages2of10extensions7partial7optionsAA20AsyncMessageSequenceVyxqd__Gqd__m_AA12ExtensionMap_pSgSbAA21BinaryDecodingOptionsVtAA0N0Rd__lF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : _Concurrency.AsyncSequence, τ_1_0 : VideoSDKRTC.Message, τ_0_0.Element == Swift.UInt8>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "Inlinable", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:Sci", + "mangledName": "$sSci", + "moduleName": "_Concurrency", + "genericSig": "<τ_0_0.AsyncIterator : _Concurrency.AsyncIteratorProtocol, τ_0_0.Element == τ_0_0.AsyncIterator.Element>", + "sugared_genericSig": "", + "intro_Macosx": "10.15", + "intro_iOS": "13.0", + "intro_tvOS": "13.0", + "intro_watchOS": "6.0", + "declAttributes": [ + "AtRethrows", + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": true + }, + { + "kind": "TypeDecl", + "name": "Data", + "printedName": "Data", + "children": [ + { + "kind": "Function", + "name": "toJSONString", + "printedName": "toJSONString()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV11VideoSDKRTCE12toJSONStringSSyF", + "mangledName": "$s10Foundation4DataV11VideoSDKRTCE12toJSONStringSSyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toJSON", + "printedName": "toJSON()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV11VideoSDKRTCE6toJSONSDySSypGyF", + "mangledName": "$s10Foundation4DataV11VideoSDKRTCE6toJSONSDySSypGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toJSONArray", + "printedName": "toJSONArray()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV11VideoSDKRTCE11toJSONArraySayypGyF", + "mangledName": "$s10Foundation4DataV11VideoSDKRTCE11toJSONArraySayypGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:10Foundation4DataV", + "mangledName": "$s10Foundation4DataV", + "moduleName": "Foundation", + "intro_Macosx": "10.10", + "intro_iOS": "8.0", + "intro_tvOS": "9.0", + "intro_watchOS": "2.0", + "declAttributes": [ + "Frozen", + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RandomAccessCollection", + "printedName": "RandomAccessCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sk", + "mangledName": "$sSk" + }, + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MutableDataProtocol", + "printedName": "MutableDataProtocol", + "usr": "s:10Foundation19MutableDataProtocolP", + "mangledName": "$s10Foundation19MutableDataProtocolP" + }, + { + "kind": "Conformance", + "name": "ContiguousBytes", + "printedName": "ContiguousBytes", + "usr": "s:10Foundation15ContiguousBytesP", + "mangledName": "$s10Foundation15ContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "DataProtocol", + "printedName": "DataProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "Regions", + "printedName": "Regions", + "children": [ + { + "kind": "TypeNominal", + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:s15CollectionOfOneV" + } + ] + } + ], + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "SwiftProtobufContiguousBytes", + "printedName": "SwiftProtobufContiguousBytes", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "ReferenceConvertible", + "printedName": "ReferenceConvertible", + "children": [ + { + "kind": "TypeWitness", + "name": "ReferenceType", + "printedName": "ReferenceType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ] + } + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Transferable", + "printedName": "Transferable", + "children": [ + { + "kind": "TypeWitness", + "name": "Representation", + "printedName": "Representation", + "children": [ + { + "kind": "TypeNominal", + "name": "OpaqueTypeArchetype", + "printedName": "some CoreTransferable.TransferRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "TransferRepresentation", + "printedName": "CoreTransferable.TransferRepresentation", + "usr": "s:16CoreTransferable22TransferRepresentationP" + }, + { + "kind": "TypeNominal", + "name": "Sendable", + "printedName": "Swift.Sendable", + "usr": "s:s8SendableP" + } + ] + } + ] + } + ], + "usr": "s:16CoreTransferable0B0P", + "mangledName": "$s16CoreTransferable0B0P" + } + ] + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "children": [ + { + "kind": "Function", + "name": "toJSON", + "printedName": "toJSON()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:SS11VideoSDKRTCE6toJSONSDySSypGyF", + "mangledName": "$sSS11VideoSDKRTCE6toJSONSDySSypGyF", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinStringLiteral", + "printedName": "_ExpressibleByBuiltinStringLiteral", + "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", + "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "UTF8View", + "printedName": "UTF8View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UTF16View", + "printedName": "UTF16View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", + "children": [ + { + "kind": "TypeNominal", + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sy", + "mangledName": "$sSy" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", + "children": [ + { + "kind": "TypeWitness", + "name": "StringInterpolation", + "printedName": "StringInterpolation", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" + } + ] + } + ], + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Transferable", + "printedName": "Transferable", + "children": [ + { + "kind": "TypeWitness", + "name": "Representation", + "printedName": "Representation", + "children": [ + { + "kind": "TypeNominal", + "name": "OpaqueTypeArchetype", + "printedName": "some CoreTransferable.TransferRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "TransferRepresentation", + "printedName": "CoreTransferable.TransferRepresentation", + "usr": "s:16CoreTransferable22TransferRepresentationP" + }, + { + "kind": "TypeNominal", + "name": "Sendable", + "printedName": "Swift.Sendable", + "usr": "s:s8SendableP" + } + ] + } + ] + } + ], + "usr": "s:16CoreTransferable0B0P", + "mangledName": "$s16CoreTransferable0B0P" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Dictionary", + "printedName": "Dictionary", + "children": [ + { + "kind": "Function", + "name": "toJSONString", + "printedName": "toJSONString()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:SD11VideoSDKRTCE12toJSONStringSSyF", + "mangledName": "$sSD11VideoSDKRTCE12toJSONStringSSyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:SD", + "mangledName": "$sSD", + "moduleName": "Swift", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", + "sugared_genericSig": "", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(key: τ_0_0, value: τ_0_1)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", + "usr": "s:SD8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(key: τ_0_0, value: τ_0_1)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Index", + "usr": "s:SD5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", + "usr": "s:SD8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Slice", + "printedName": "Swift.Slice<[τ_0_0 : τ_0_1]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:s5SliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices<[τ_0_0 : τ_0_1]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "ExpressibleByDictionaryLiteral", + "printedName": "ExpressibleByDictionaryLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "Key", + "printedName": "Key", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Value", + "printedName": "Value", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ] + } + ], + "usr": "s:s30ExpressibleByDictionaryLiteralP", + "mangledName": "$ss30ExpressibleByDictionaryLiteralP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Array", + "printedName": "Array", + "children": [ + { + "kind": "Function", + "name": "toJSONString", + "printedName": "toJSONString()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:Sa11VideoSDKRTCE12toJSONStringSSyF", + "mangledName": "$sSa11VideoSDKRTCE12toJSONStringSSyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:Sa", + "mangledName": "$sSa", + "moduleName": "Swift", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_DestructorSafeContainer", + "printedName": "_DestructorSafeContainer", + "usr": "s:s24_DestructorSafeContainerP", + "mangledName": "$ss24_DestructorSafeContainerP" + }, + { + "kind": "Conformance", + "name": "SwiftProtobufContiguousBytes", + "printedName": "SwiftProtobufContiguousBytes", + "usr": "s:11VideoSDKRTC28SwiftProtobufContiguousBytesP", + "mangledName": "$s11VideoSDKRTC28SwiftProtobufContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_ArrayProtocol", + "printedName": "_ArrayProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "_Buffer", + "printedName": "_Buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "_ArrayBuffer", + "printedName": "Swift._ArrayBuffer<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s12_ArrayBufferV" + } + ] + } + ], + "usr": "s:s14_ArrayProtocolP", + "mangledName": "$ss14_ArrayProtocolP" + }, + { + "kind": "Conformance", + "name": "RandomAccessCollection", + "printedName": "RandomAccessCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sk", + "mangledName": "$sSk" + }, + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "ExpressibleByArrayLiteral", + "printedName": "ExpressibleByArrayLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:s25ExpressibleByArrayLiteralP", + "mangledName": "$ss25ExpressibleByArrayLiteralP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSArray", + "printedName": "Foundation.NSArray", + "usr": "c:objc(cs)NSArray" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "ContiguousBytes", + "printedName": "ContiguousBytes", + "usr": "s:10Foundation15ContiguousBytesP", + "mangledName": "$s10Foundation15ContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "EncodableWithConfiguration", + "printedName": "EncodableWithConfiguration", + "children": [ + { + "kind": "TypeWitness", + "name": "EncodingConfiguration", + "printedName": "EncodingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.EncodingConfiguration" + } + ] + } + ], + "usr": "s:10Foundation26EncodableWithConfigurationP", + "mangledName": "$s10Foundation26EncodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "DecodableWithConfiguration", + "printedName": "DecodableWithConfiguration", + "children": [ + { + "kind": "TypeWitness", + "name": "DecodingConfiguration", + "printedName": "DecodingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.DecodingConfiguration" + } + ] + } + ], + "usr": "s:10Foundation26DecodableWithConfigurationP", + "mangledName": "$s10Foundation26DecodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "DataProtocol", + "printedName": "DataProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "Regions", + "printedName": "Regions", + "children": [ + { + "kind": "TypeNominal", + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s15CollectionOfOneV" + } + ] + } + ], + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" + }, + { + "kind": "Conformance", + "name": "MutableDataProtocol", + "printedName": "MutableDataProtocol", + "usr": "s:10Foundation19MutableDataProtocolP", + "mangledName": "$s10Foundation19MutableDataProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Encodable", + "printedName": "Encodable", + "children": [ + { + "kind": "Function", + "name": "toJSON", + "printedName": "toJSON()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:SE11VideoSDKRTCE6toJSONSDySSypGyF", + "mangledName": "$sSE11VideoSDKRTCE6toJSONSDySSypGyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toJSONArray", + "printedName": "toJSONArray()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:SE11VideoSDKRTCE11toJSONArraySayypGyF", + "mangledName": "$sSE11VideoSDKRTCE11toJSONArraySayypGyF", + "moduleName": "VideoSDKRTC", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:SE", + "mangledName": "$sSE", + "moduleName": "Swift", + "isExternal": true + }, + { + "kind": "TypeDecl", + "name": "Double", + "printedName": "Double", + "children": [ + { + "kind": "Var", + "name": "toMilliseconds", + "printedName": "toMilliseconds", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:Sd11VideoSDKRTCE14toMillisecondss6UInt64Vvp", + "mangledName": "$sSd11VideoSDKRTCE14toMillisecondss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:Sd11VideoSDKRTCE14toMillisecondss6UInt64Vvg", + "mangledName": "$sSd11VideoSDKRTCE14toMillisecondss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "toMicroseconds", + "printedName": "toMicroseconds", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:Sd11VideoSDKRTCE14toMicrosecondss6UInt64Vvp", + "mangledName": "$sSd11VideoSDKRTCE14toMicrosecondss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:Sd11VideoSDKRTCE14toMicrosecondss6UInt64Vvg", + "mangledName": "$sSd11VideoSDKRTCE14toMicrosecondss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "toNanoseconds", + "printedName": "toNanoseconds", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:Sd11VideoSDKRTCE13toNanosecondss6UInt64Vvp", + "mangledName": "$sSd11VideoSDKRTCE13toNanosecondss6UInt64Vvp", + "moduleName": "VideoSDKRTC", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:Sd11VideoSDKRTCE13toNanosecondss6UInt64Vvg", + "mangledName": "$sSd11VideoSDKRTCE13toNanosecondss6UInt64Vvg", + "moduleName": "VideoSDKRTC", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "fromMilliseconds", + "printedName": "fromMilliseconds(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:Sd11VideoSDKRTCE16fromMillisecondsySds5Int64VFZ", + "mangledName": "$sSd11VideoSDKRTCE16fromMillisecondsySds5Int64VFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fromMicroseconds", + "printedName": "fromMicroseconds(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:Sd11VideoSDKRTCE16fromMicrosecondsySds5Int64VFZ", + "mangledName": "$sSd11VideoSDKRTCE16fromMicrosecondsySds5Int64VFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fromNanoseconds", + "printedName": "fromNanoseconds(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:Sd11VideoSDKRTCE15fromNanosecondsySds5Int64VFZ", + "mangledName": "$sSd11VideoSDKRTCE15fromNanosecondsySds5Int64VFZ", + "moduleName": "VideoSDKRTC", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:Sd", + "mangledName": "$sSd", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_CVarArgPassedAsDouble", + "printedName": "_CVarArgPassedAsDouble", + "usr": "s:s22_CVarArgPassedAsDoubleP", + "mangledName": "$ss22_CVarArgPassedAsDoubleP" + }, + { + "kind": "Conformance", + "name": "_CVarArgAligned", + "printedName": "_CVarArgAligned", + "usr": "s:s15_CVarArgAlignedP", + "mangledName": "$ss15_CVarArgAlignedP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "BinaryFloatingPoint", + "printedName": "BinaryFloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "RawSignificand", + "printedName": "RawSignificand", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "RawExponent", + "printedName": "RawExponent", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + } + ], + "usr": "s:SB", + "mangledName": "$sSB" + }, + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "FloatingPoint", + "printedName": "FloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "Exponent", + "printedName": "Exponent", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SF", + "mangledName": "$sSF" + }, + { + "kind": "Conformance", + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinFloatLiteral", + "printedName": "_ExpressibleByBuiltinFloatLiteral", + "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", + "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ + { + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.Double.SIMD2Storage", + "usr": "s:Sd12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.Double.SIMD4Storage", + "usr": "s:Sd12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.Double.SIMD8Storage", + "usr": "s:Sd12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.Double.SIMD16Storage", + "usr": "s:Sd13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.Double.SIMD32Storage", + "usr": "s:Sd13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.Double.SIMD64Storage", + "usr": "s:Sd13SIMD64StorageV" + } + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "VectorArithmetic", + "printedName": "VectorArithmetic", + "usr": "s:7SwiftUI16VectorArithmeticP", + "mangledName": "$s7SwiftUI16VectorArithmeticP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:7SwiftUI18_FormatSpecifiableP", + "mangledName": "$s7SwiftUI18_FormatSpecifiableP" + }, + { + "kind": "Conformance", + "name": "Animatable", + "printedName": "Animatable", + "children": [ + { + "kind": "TypeWitness", + "name": "AnimatableData", + "printedName": "AnimatableData", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:7SwiftUI10AnimatableP", + "mangledName": "$s7SwiftUI10AnimatableP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/ActionEvent.swift", + "kind": "StringLiteral", + "offset": 1339, + "length": 26, + "value": "\"participant-mode-changed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/ActionEvent.swift", + "kind": "StringLiteral", + "offset": 1339, + "length": 26, + "value": "\"participant-mode-changed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Context\/ActivityContextManager.swift", + "kind": "IntegerLiteral", + "offset": 290, + "length": 2, + "value": "-2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Context\/ActivityContextManager.swift", + "kind": "StringLiteral", + "offset": 295, + "length": 22, + "value": "\"_os_activity_current\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Context\/ActivityContextManager.swift", + "kind": "IntegerLiteral", + "offset": 1419, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Context\/ActivityContextManager.swift", + "kind": "IntegerLiteral", + "offset": 1954, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Context\/ActivityContextManager.swift", + "kind": "StringLiteral", + "offset": 2706, + "length": 17, + "value": "\"ActivityContext\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Context\/ActivityContextManager.swift", + "kind": "BooleanLiteral", + "offset": 3309, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "StringLiteral", + "offset": 7502, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "StringLiteral", + "offset": 7678, + "length": 6, + "value": "\".Any\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "IntegerLiteral", + "offset": 7741, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "StringLiteral", + "offset": 7761, + "length": 10, + "value": "\"type_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "IntegerLiteral", + "offset": 7778, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "StringLiteral", + "offset": 7794, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "IntegerLiteral", + "offset": 8561, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "IntegerLiteral", + "offset": 8652, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "IntegerLiteral", + "offset": 9066, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "IntegerLiteral", + "offset": 9194, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "BooleanLiteral", + "offset": 9505, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "BooleanLiteral", + "offset": 9572, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/any.pb.swift", + "kind": "BooleanLiteral", + "offset": 9590, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 912, + "length": 7, + "value": "\"@type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 1077, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 1645, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 1694, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "IntegerLiteral", + "offset": 2405, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 2776, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 3850, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 4362, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 5432, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 6007, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 6290, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 6376, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 9690, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "IntegerLiteral", + "offset": 10003, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "IntegerLiteral", + "offset": 10120, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "IntegerLiteral", + "offset": 10965, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 12595, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 14083, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 14523, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 14899, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 15710, + "length": 4, + "value": "\"{}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 15805, + "length": 7, + "value": "\"@type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 16517, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 17069, + "length": 7, + "value": "\"@type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 17199, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "BooleanLiteral", + "offset": 18192, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AnyMessageStorage.swift", + "kind": "StringLiteral", + "offset": 18316, + "length": 7, + "value": "\"@type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "Array", + "offset": 3517, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "Array", + "offset": 3616, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "Array", + "offset": 5417, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 6188, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 6366, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "Array", + "offset": 6465, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10262, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10438, + "length": 6, + "value": "\".Api\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 10501, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10517, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 10530, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10546, + "length": 9, + "value": "\"methods\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 10562, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10578, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 10594, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10610, + "length": 9, + "value": "\"version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 10626, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10646, + "length": 16, + "value": "\"source_context\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 10669, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10685, + "length": 8, + "value": "\"mixins\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 10700, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 10716, + "length": 8, + "value": "\"syntax\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 11139, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 11220, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 11305, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 11390, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 11474, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 11566, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 11650, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 12220, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 12338, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 12456, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 12573, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 12692, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 12812, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 12927, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13113, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13162, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13211, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13260, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13323, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13370, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13417, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13478, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 13496, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13668, + "length": 9, + "value": "\".Method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 13734, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13750, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 13763, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13783, + "length": 18, + "value": "\"request_type_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 13808, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13828, + "length": 19, + "value": "\"request_streaming\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 13854, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13874, + "length": 19, + "value": "\"response_type_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 13900, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13920, + "length": 20, + "value": "\"response_streaming\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 13947, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13963, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 13979, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 13995, + "length": 8, + "value": "\"syntax\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 14418, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 14499, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 14590, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 14681, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 14773, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 14865, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 14950, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 15224, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 15355, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 15396, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 15488, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 15621, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 15663, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 15756, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 15874, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 15989, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16181, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16244, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16311, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16376, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16445, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16494, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16541, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16602, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 16620, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 16791, + "length": 8, + "value": "\".Mixin\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 16856, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 16872, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 16885, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "StringLiteral", + "offset": 16901, + "length": 6, + "value": "\"root\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 17322, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 17403, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 17677, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "IntegerLiteral", + "offset": 17788, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 17978, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 18021, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 18082, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/api.pb.swift", + "kind": "BooleanLiteral", + "offset": 18100, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "BooleanLiteral", + "offset": 1998, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "BooleanLiteral", + "offset": 3941, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 4918, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 4946, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5038, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5077, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5099, + "length": 2, + "value": "35" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5212, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5220, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5290, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5921, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5926, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5933, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 5975, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 6047, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 6079, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 6489, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 6568, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 7159, + "length": 10, + "value": "0x7fffffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "IntegerLiteral", + "offset": 7276, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/AsyncMessageSequence.swift", + "kind": "Array", + "offset": 7329, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/AttributeProcessor.swift", + "kind": "StringLiteral", + "offset": 1465, + "length": 24, + "value": "\"VideoSDKRTC.SimpleAttributeProcessor\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/AttributeProcessor.swift", + "kind": "StringLiteral", + "offset": 1948, + "length": 24, + "value": "\"VideoSDKRTC.JoinedAttributeProcessor\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/AttributesDictionary.swift", + "kind": "IntegerLiteral", + "offset": 633, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/AttributesDictionary.swift", + "kind": "IntegerLiteral", + "offset": 1873, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/AttributesDictionary.swift", + "kind": "Array", + "offset": 2813, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/AttributesDictionary.swift", + "kind": "IntegerLiteral", + "offset": 3653, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/AttributesDictionary.swift", + "kind": "IntegerLiteral", + "offset": 3814, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/AttributesDictionary.swift", + "kind": "IntegerLiteral", + "offset": 3907, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Common\/AttributeValue.swift", + "kind": "StringLiteral", + "offset": 609, + "length": 6, + "value": "\"true\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Common\/AttributeValue.swift", + "kind": "StringLiteral", + "offset": 618, + "length": 7, + "value": "\"false\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Common\/AttributeValue.swift", + "kind": "StringLiteral", + "offset": 2566, + "length": 4, + "value": "\"_0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Common\/AttributeValue.swift", + "kind": "StringLiteral", + "offset": 2566, + "length": 4, + "value": "\"_0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Common\/AttributeValue.swift", + "kind": "IntegerLiteral", + "offset": 2824, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Common\/AttributeValue.swift", + "kind": "StringLiteral", + "offset": 2944, + "length": 45, + "value": "\"Invalid number of keys found, expected one.\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "BooleanLiteral", + "offset": 546, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 609, + "length": 43, + "value": "\"error setting the default audio: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 651, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "Array", + "offset": 793, + "length": 24, + "value": "[(\"Speaker\", \"Speaker\")]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 981, + "length": 19, + "value": "\"iPhone Microphone\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 1004, + "length": 10, + "value": "\"Receiver\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "BooleanLiteral", + "offset": 1272, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "IntegerLiteral", + "offset": 1347, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 1503, + "length": 17, + "value": "\"microphonewired\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 1561, + "length": 12, + "value": "\"Headphones\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 1612, + "length": 12, + "value": "\"Headphones\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 2536, + "length": 66, + "value": "\"error changing to bluetooth device \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 2601, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 3158, + "length": 65, + "value": "\"error changing to built-in device \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 3222, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 3785, + "length": 60, + "value": "\"error changing to headphones \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 3844, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 4392, + "length": 60, + "value": "\"error changing to headphones \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 4451, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 4898, + "length": 57, + "value": "\"error changing to speaker \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 4954, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 5145, + "length": 12, + "value": "\"headphones\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 5486, + "length": 57, + "value": "\"error changing to speaker \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 5542, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 5717, + "length": 9, + "value": "\"speaker\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 5967, + "length": 57, + "value": "\"error changing to speaker \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 6023, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 6126, + "length": 24, + "value": "\"Device was not changed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "BooleanLiteral", + "offset": 6940, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 7027, + "length": 56, + "value": "\"error adding new device: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 7082, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "BooleanLiteral", + "offset": 7369, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 7456, + "length": 65, + "value": "\"error setting back to old device: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/AudioManager.swift", + "kind": "StringLiteral", + "offset": 7520, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Baggage.swift", + "kind": "BooleanLiteral", + "offset": 914, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 300, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 333, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 357, + "length": 4, + "value": "2048" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 389, + "length": 3, + "value": "512" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 2229, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "StringLiteral", + "offset": 2285, + "length": 19, + "value": "\"BatchWorker Queue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 2349, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "BooleanLiteral", + "offset": 3432, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 4511, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "IntegerLiteral", + "offset": 4772, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Processors\/BatchLogRecordProcessor.swift", + "kind": "StringLiteral", + "offset": 1221, + "length": 11, + "value": "\"VideoSDKRTC.BatchWorker\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 907, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 940, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 980, + "length": 4, + "value": "2048" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 1012, + "length": 3, + "value": "512" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 1513, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 1550, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 3005, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "StringLiteral", + "offset": 3167, + "length": 19, + "value": "\"BatchWorker Queue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 3231, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 4369, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 5439, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 5685, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/BatchSpanProcessor.swift", + "kind": "StringLiteral", + "offset": 2223, + "length": 11, + "value": "\"VideoSDKRTC.BatchWorker\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 1134, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 1316, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 1988, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 2824, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 2855, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 3013, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "StringLiteral", + "offset": 3241, + "length": 61, + "value": "\"Somehow BinaryDecoding unwound more objects than it started\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 3791, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 4665, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 4833, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 4890, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5036, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5045, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5066, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5093, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5132, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5186, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5195, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5224, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5329, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5353, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5362, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5387, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5418, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5462, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5525, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5534, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5567, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5684, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5727, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5736, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5764, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5773, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5802, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5837, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5899, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6028, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6075, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6084, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6116, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6125, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6158, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6197, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6267, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6408, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6443, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6594, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6603, + "length": 2, + "value": "25" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6635, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6674, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6766, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 6793, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 7625, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 7860, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 8110, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 8230, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 8394, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 8610, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 8733, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 9016, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 9254, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 9507, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 9627, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 9792, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 10008, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 10162, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 10497, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 10787, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 11074, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 11145, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 11603, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 11920, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 12202, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 12481, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 12552, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13002, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13340, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13633, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13923, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 13994, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 14443, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 14725, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 14962, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15224, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 15295, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15716, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 16087, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 16413, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 16740, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 16811, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17312, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17637, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17917, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18194, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 18265, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18712, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 18966, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 19071, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 19280, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 19385, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 19577, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 19700, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 19771, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 20016, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 20207, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 20461, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 20567, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 20776, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 20882, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 21074, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 21198, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 21269, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 21514, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 21706, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 21959, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 22063, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 22271, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 22375, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 22566, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 22688, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 22759, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 23002, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 23192, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 23445, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 23550, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 23758, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 23863, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 24054, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 24177, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 24248, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 24491, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 24682, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 24944, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 24965, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 25182, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 25203, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 25440, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 25466, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 25537, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 25923, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 25963, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 26221, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 26371, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 26661, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 26811, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 27084, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 27256, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 27600, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 27711, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 27921, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 28032, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 28225, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 28354, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 28769, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 29147, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 29525, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 29610, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "Array", + "offset": 30280, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 30555, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 30937, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 31368, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 31639, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 31918, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 32144, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 32423, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 33120, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 33386, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 33594, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 34281, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 34980, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 35372, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 35778, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 35871, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 36647, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 37056, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 37462, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 37579, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 38630, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 39013, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 39419, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 39536, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 40118, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 42556, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 42930, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 44274, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 44394, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 44771, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 44932, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 45268, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 46079, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 47389, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 47831, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 47992, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 48783, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 48870, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 48897, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 49246, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 50158, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 50245, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 50272, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51198, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51356, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51392, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51412, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51429, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51437, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51564, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51597, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "BooleanLiteral", + "offset": 51614, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51645, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51658, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51780, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51820, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51844, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51878, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51912, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 51920, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 52049, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 52636, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 53583, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 53763, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 53801, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 54038, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 54218, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 54256, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 54364, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 54525, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 54742, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 54906, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecoder.swift", + "kind": "IntegerLiteral", + "offset": 55841, + "length": 10, + "value": "0x7fffffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecodingOptions.swift", + "kind": "IntegerLiteral", + "offset": 899, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDecodingOptions.swift", + "kind": "BooleanLiteral", + "offset": 1717, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "BooleanLiteral", + "offset": 3202, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 3515, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 3670, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 3826, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 3948, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 4350, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "BooleanLiteral", + "offset": 5972, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "BooleanLiteral", + "offset": 7845, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8001, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8117, + "length": 10, + "value": "0x7fffffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8574, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8579, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8586, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8626, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8714, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8797, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 8937, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 9118, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 9296, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 9448, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10092, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10224, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10259, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10286, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10298, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10363, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10535, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10559, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "BooleanLiteral", + "offset": 10569, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10634, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10773, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10799, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10807, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10849, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryDelimited.swift", + "kind": "IntegerLiteral", + "offset": 10866, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 993, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 1225, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 1629, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 2338, + "length": 3, + "value": "127" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 2373, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 2380, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 2405, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 2840, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 2844, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4548, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 944, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 3950, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 5557, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 5884, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6213, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6542, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6870, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 7214, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 8731, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 8991, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 9393, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 10519, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 10887, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11256, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11641, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 12027, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 12397, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 14990, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 15435, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 16377, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 16912, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 17268, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 17822, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 17898, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 18579, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 18660, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 19301, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 19385, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingSizeVisitor.swift", + "kind": "IntegerLiteral", + "offset": 20096, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 3351, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 3355, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 5684, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6060, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6430, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6829, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 7222, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 7601, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 9395, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 9399, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 9638, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 10253, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 10327, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 10484, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 10557, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11024, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11103, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11246, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11318, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11746, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11828, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 11971, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/BinaryEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 12046, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/BoundCounterMetricSdkBase.swift", + "kind": "StringLiteral", + "offset": 111, + "length": 25, + "value": "\"VideoSDKRTC.BoundCounterMetricSdkBase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/BoundRawCounterMetricSdkBase.swift", + "kind": "StringLiteral", + "offset": 112, + "length": 28, + "value": "\"VideoSDKRTC.BoundRawCounterMetricSdkBase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/BoundRawHistogramMetricSdkBase.swift", + "kind": "StringLiteral", + "offset": 112, + "length": 30, + "value": "\"VideoSDKRTC.BoundRawHistogramMetricSdkBase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "kind": "IntegerLiteral", + "offset": 244, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "kind": "IntegerLiteral", + "offset": 244, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "kind": "IntegerLiteral", + "offset": 244, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Array", + "offset": 289, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1170, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1200, + "length": 8, + "value": "\"roomId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1234, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1268, + "length": 7, + "value": "\"count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1319, + "length": 7, + "value": "\"count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 1338, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 1342, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 1412, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1540, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1593, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1745, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1868, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 1913, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 2002, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Dictionary", + "offset": 2100, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 2105, + "length": 9, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 2113, + "length": 20, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 2361, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 2426, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 2530, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Dictionary", + "offset": 3087, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3130, + "length": 9, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3138, + "length": 15, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Dictionary", + "offset": 3342, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3658, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Dictionary", + "offset": 3822, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3839, + "length": 8, + "value": "\"roomId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3858, + "length": 8, + "value": "\"roomId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3881, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3900, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3923, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3940, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3961, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Array", + "offset": 3972, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 3988, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Array", + "offset": 3999, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4046, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Array", + "offset": 4126, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Dictionary", + "offset": 4229, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4265, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4314, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4355, + "length": 16, + "value": "\"infrastructure\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 4384, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4428, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 4478, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4599, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4695, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4717, + "length": 10, + "value": "\"codec_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4759, + "length": 11, + "value": "\"mime_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4786, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4829, + "length": 8, + "value": "\"jitter\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4851, + "length": 20, + "value": "\"delta_jitter_ms_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4913, + "length": 9, + "value": "\"bitrate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4936, + "length": 14, + "value": "\"delta_kbs_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 4992, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5019, + "length": 23, + "value": "\"delta_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5084, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5101, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5139, + "length": 27, + "value": "\"delta_rtt_connectivity_ms\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 5171, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5213, + "length": 14, + "value": "\"totalPackets\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5241, + "length": 18, + "value": "\"delta_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5301, + "length": 19, + "value": "\"concealmentEvents\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5334, + "length": 26, + "value": "\"delta_concealment_events\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5402, + "length": 30, + "value": "\"removedSampleForAccelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5446, + "length": 40, + "value": "\"delta_removed_samples_for_accelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5528, + "length": 32, + "value": "\"insertedSamplesForDecelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5574, + "length": 41, + "value": "\"delta_inserted_samples_for_decelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5657, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5680, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5735, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5832, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5854, + "length": 11, + "value": "\"codec_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5897, + "length": 11, + "value": "\"mime_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5924, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5967, + "length": 8, + "value": "\"jitter\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 5989, + "length": 21, + "value": "\"delta_jitter_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6052, + "length": 9, + "value": "\"bitrate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6075, + "length": 15, + "value": "\"delta_kbs_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6132, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6159, + "length": 24, + "value": "\"delta_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6225, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6242, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6280, + "length": 27, + "value": "\"delta_rtt_connectivity_ms\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 6312, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6354, + "length": 14, + "value": "\"totalPackets\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6382, + "length": 19, + "value": "\"delta_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6443, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6466, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6604, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6700, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Array", + "offset": 6781, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 6859, + "length": 6, + "value": "\"1234\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "Dictionary", + "offset": 6967, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7002, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7051, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7092, + "length": 16, + "value": "\"infrastructure\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 7121, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7164, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 7214, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7335, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7430, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7452, + "length": 10, + "value": "\"codec_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7494, + "length": 11, + "value": "\"mime_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7521, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7563, + "length": 8, + "value": "\"jitter\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7585, + "length": 20, + "value": "\"delta_jitter_ms_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7646, + "length": 9, + "value": "\"bitrate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7669, + "length": 14, + "value": "\"delta_kbs_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7724, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7751, + "length": 23, + "value": "\"delta_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7815, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7832, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7870, + "length": 27, + "value": "\"delta_rtt_connectivity_ms\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 7902, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7943, + "length": 14, + "value": "\"totalPackets\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 7971, + "length": 18, + "value": "\"delta_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8030, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8053, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8107, + "length": 6, + "value": "\"size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8127, + "length": 9, + "value": "\"size_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8178, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8274, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8296, + "length": 11, + "value": "\"codec_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8339, + "length": 11, + "value": "\"mime_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8366, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8408, + "length": 8, + "value": "\"jitter\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8430, + "length": 21, + "value": "\"delta_jitter_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8492, + "length": 9, + "value": "\"bitrate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8515, + "length": 15, + "value": "\"delta_kbs_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8571, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8598, + "length": 24, + "value": "\"delta_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8663, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8680, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8718, + "length": 27, + "value": "\"delta_rtt_connectivity_ms\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "IntegerLiteral", + "offset": 8750, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8791, + "length": 14, + "value": "\"totalPackets\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8819, + "length": 19, + "value": "\"delta_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8879, + "length": 12, + "value": "\"limitation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8905, + "length": 16, + "value": "\"limitation_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8962, + "length": 6, + "value": "\"size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 8982, + "length": 10, + "value": "\"size_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 9033, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 9056, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Collector.swift", + "kind": "StringLiteral", + "offset": 9211, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 2389, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 2550, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 2713, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 5654, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "Array", + "offset": 6215, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "Array", + "offset": 7193, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "Array", + "offset": 8991, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 9041, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 9783, + "length": 31, + "value": "\"opentelemetry.proto.common.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 9992, + "length": 11, + "value": "\".AnyValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10060, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 10080, + "length": 14, + "value": "\"string_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10101, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 10121, + "length": 12, + "value": "\"bool_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10140, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 10160, + "length": 11, + "value": "\"int_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10178, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 10198, + "length": 14, + "value": "\"double_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10219, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 10239, + "length": 13, + "value": "\"array_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10259, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 10279, + "length": 14, + "value": "\"kvlist_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10300, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 10320, + "length": 13, + "value": "\"bytes_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 10748, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 11000, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 11246, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 11493, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 11745, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 11839, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 11909, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 12195, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 12291, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 12361, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 12649, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 13486, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 13669, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 13851, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 14040, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 14228, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 14418, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 14604, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 14858, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 14919, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 14937, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 15128, + "length": 13, + "value": "\".ArrayValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 15199, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 15215, + "length": 8, + "value": "\"values\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 15638, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 15921, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 16153, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 16214, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 16232, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 16424, + "length": 15, + "value": "\".KeyValueList\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 16497, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 16513, + "length": 8, + "value": "\"values\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 16936, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 17219, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 17455, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 17516, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 17534, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 17722, + "length": 11, + "value": "\".KeyValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 17791, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 17807, + "length": 5, + "value": "\"key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 17819, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 17835, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 18257, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 18337, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 18909, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 19020, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 19246, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 19293, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 19354, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 19372, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 19575, + "length": 23, + "value": "\".InstrumentationScope\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 19656, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 19672, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 19685, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 19701, + "length": 9, + "value": "\"version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 19717, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 19733, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 19752, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "StringLiteral", + "offset": 19772, + "length": 26, + "value": "\"dropped_attributes_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 20213, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 20294, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 20378, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 20466, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 20759, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 20876, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 21000, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 21047, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "IntegerLiteral", + "offset": 21143, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 21391, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 21440, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 21495, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 21574, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 21635, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/common.pb.swift", + "kind": "BooleanLiteral", + "offset": 21653, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/CounterMetricSdk.swift", + "kind": "BooleanLiteral", + "offset": 346, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/CounterMetricSdk.swift", + "kind": "BooleanLiteral", + "offset": 503, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/CounterMetricSdkBase.swift", + "kind": "BooleanLiteral", + "offset": 627, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/CounterMetricSdkBase.swift", + "kind": "BooleanLiteral", + "offset": 778, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/CounterSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 265, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/CounterSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 291, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/CounterSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 584, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 622, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 631, + "length": 3, + "value": "160" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 640, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 2, + "value": "90" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 658, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 669, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 674, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 684, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 697, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 705, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 720, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 760, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 769, + "length": 3, + "value": "320" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 788, + "length": 3, + "value": "180" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 797, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 808, + "length": 3, + "value": "120" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 814, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 824, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 837, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 845, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 860, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 900, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 909, + "length": 3, + "value": "384" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 918, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 928, + "length": 3, + "value": "216" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 937, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 948, + "length": 3, + "value": "180" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 954, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 964, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 977, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 985, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1000, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1040, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1049, + "length": 3, + "value": "640" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1058, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1068, + "length": 3, + "value": "360" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1077, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1088, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1094, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1104, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1117, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1125, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1140, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1180, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1189, + "length": 3, + "value": "960" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1198, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1208, + "length": 3, + "value": "540" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1217, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1228, + "length": 3, + "value": "600" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1234, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1244, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1257, + "length": 2, + "value": "25" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1265, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1280, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1321, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1330, + "length": 4, + "value": "1280" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1340, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1350, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1359, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1370, + "length": 4, + "value": "2000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1377, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1387, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1400, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1408, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1423, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1465, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1474, + "length": 4, + "value": "1920" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1484, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1494, + "length": 4, + "value": "1080" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1515, + "length": 4, + "value": "3000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1522, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1532, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1545, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1553, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1568, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1610, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1619, + "length": 4, + "value": "2560" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1629, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1639, + "length": 4, + "value": "1440" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1649, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1660, + "length": 4, + "value": "5000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1667, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1677, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1690, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1698, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1713, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1755, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1764, + "length": 4, + "value": "3840" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1774, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1784, + "length": 4, + "value": "2160" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1794, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1805, + "length": 4, + "value": "8000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1812, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1822, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1835, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1843, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1858, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1898, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1907, + "length": 3, + "value": "160" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1916, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1926, + "length": 3, + "value": "120" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1935, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1946, + "length": 2, + "value": "80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1951, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1961, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 1974, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1982, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 1997, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2036, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2045, + "length": 3, + "value": "240" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2054, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2064, + "length": 3, + "value": "180" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2073, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2084, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2090, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2100, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2113, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2121, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2136, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2175, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2184, + "length": 3, + "value": "320" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2193, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2203, + "length": 3, + "value": "240" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2212, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2223, + "length": 3, + "value": "150" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2229, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2239, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2252, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2260, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2275, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2314, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2323, + "length": 3, + "value": "480" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2332, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2342, + "length": 3, + "value": "360" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2351, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2362, + "length": 3, + "value": "225" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2368, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2378, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2391, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2399, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2414, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2453, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2462, + "length": 3, + "value": "640" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2471, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2481, + "length": 3, + "value": "480" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2490, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2501, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2507, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2517, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2530, + "length": 2, + "value": "25" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2538, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2553, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2592, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2601, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2620, + "length": 3, + "value": "540" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2629, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2640, + "length": 3, + "value": "450" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2646, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2656, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2669, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2677, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2692, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2731, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2740, + "length": 3, + "value": "960" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2749, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2759, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2768, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2779, + "length": 4, + "value": "1500" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2786, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2796, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2809, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2817, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2832, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2873, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2882, + "length": 4, + "value": "1440" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2892, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2902, + "length": 4, + "value": "1080" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2912, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2923, + "length": 4, + "value": "2500" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2930, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2940, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 2953, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2961, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 2976, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3017, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3026, + "length": 4, + "value": "1920" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3036, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3046, + "length": 4, + "value": "1440" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3056, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3067, + "length": 4, + "value": "3500" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3074, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3084, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3097, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3105, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3120, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3387, + "length": 12, + "value": "\"sampleRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3401, + "length": 5, + "value": "16000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3412, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3423, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 12, + "value": "\"sampleSize\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3445, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3453, + "length": 8, + "value": "\"stereo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3463, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3474, + "length": 5, + "value": "\"dtx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3481, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3491, + "length": 5, + "value": "\"fec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3498, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3508, + "length": 17, + "value": "\"maxPlaybackRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3527, + "length": 5, + "value": "16000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3538, + "length": 12, + "value": "\"packetTime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3552, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3560, + "length": 17, + "value": "\"autoGainControl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3579, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3589, + "length": 18, + "value": "\"echoCancellation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3609, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3619, + "length": 18, + "value": "\"noiseSuppression\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3639, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3649, + "length": 14, + "value": "\"channelCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3665, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3698, + "length": 12, + "value": "\"sampleRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3712, + "length": 5, + "value": "32000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3723, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3734, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3742, + "length": 12, + "value": "\"sampleSize\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3756, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3764, + "length": 8, + "value": "\"stereo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3774, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3785, + "length": 5, + "value": "\"dtx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3792, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3802, + "length": 5, + "value": "\"fec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3809, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3819, + "length": 17, + "value": "\"maxPlaybackRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3838, + "length": 5, + "value": "32000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3849, + "length": 12, + "value": "\"packetTime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3863, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3871, + "length": 17, + "value": "\"autoGainControl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3890, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3900, + "length": 18, + "value": "\"echoCancellation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3920, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3930, + "length": 18, + "value": "\"noiseSuppression\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 3950, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 3960, + "length": 14, + "value": "\"channelCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 3976, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4008, + "length": 12, + "value": "\"sampleRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4022, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4033, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4044, + "length": 2, + "value": "40" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4052, + "length": 12, + "value": "\"sampleSize\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4066, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4074, + "length": 8, + "value": "\"stereo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4084, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4095, + "length": 5, + "value": "\"dtx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4102, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4113, + "length": 5, + "value": "\"fec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4120, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4130, + "length": 17, + "value": "\"maxPlaybackRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4149, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4160, + "length": 12, + "value": "\"packetTime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4174, + "length": 2, + "value": "40" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4182, + "length": 17, + "value": "\"autoGainControl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4201, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4212, + "length": 18, + "value": "\"echoCancellation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4232, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4243, + "length": 18, + "value": "\"noiseSuppression\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4263, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4274, + "length": 14, + "value": "\"channelCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4290, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4323, + "length": 12, + "value": "\"sampleRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4337, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4348, + "length": 12, + "value": "\"sampleSize\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4362, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4370, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4381, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4389, + "length": 8, + "value": "\"stereo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4399, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4409, + "length": 5, + "value": "\"dtx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4416, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4427, + "length": 5, + "value": "\"fec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4434, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4444, + "length": 17, + "value": "\"maxPlaybackRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4463, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4474, + "length": 12, + "value": "\"packetTime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4488, + "length": 2, + "value": "40" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4496, + "length": 17, + "value": "\"autoGainControl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4515, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4526, + "length": 18, + "value": "\"echoCancellation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4546, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4557, + "length": 18, + "value": "\"noiseSuppression\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4577, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4588, + "length": 14, + "value": "\"channelCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4604, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4634, + "length": 12, + "value": "\"sampleRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4648, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4659, + "length": 12, + "value": "\"sampleSize\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4673, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4681, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4692, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4701, + "length": 8, + "value": "\"stereo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4711, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4722, + "length": 5, + "value": "\"dtx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4729, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4740, + "length": 5, + "value": "\"fec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4747, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4757, + "length": 17, + "value": "\"maxPlaybackRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4776, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4787, + "length": 12, + "value": "\"packetTime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4801, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4809, + "length": 17, + "value": "\"autoGainControl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4828, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4839, + "length": 18, + "value": "\"echoCancellation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4859, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4870, + "length": 18, + "value": "\"noiseSuppression\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 4890, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4901, + "length": 14, + "value": "\"channelCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4917, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4954, + "length": 12, + "value": "\"sampleRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4968, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 4979, + "length": 12, + "value": "\"sampleSize\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 4993, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5001, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5012, + "length": 3, + "value": "192" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5021, + "length": 8, + "value": "\"stereo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 5031, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5041, + "length": 5, + "value": "\"dtx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 5048, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5059, + "length": 5, + "value": "\"fec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 5066, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5076, + "length": 17, + "value": "\"maxPlaybackRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5095, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5106, + "length": 12, + "value": "\"packetTime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5120, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5128, + "length": 17, + "value": "\"autoGainControl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 5147, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5158, + "length": 18, + "value": "\"echoCancellation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 5178, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5189, + "length": 18, + "value": "\"noiseSuppression\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "BooleanLiteral", + "offset": 5209, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5220, + "length": 14, + "value": "\"channelCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5236, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5463, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5472, + "length": 3, + "value": "640" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5481, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5491, + "length": 3, + "value": "360" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5500, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5511, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5517, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5527, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5540, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5568, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5577, + "length": 4, + "value": "1280" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5587, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5597, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5606, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5617, + "length": 3, + "value": "400" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5623, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5633, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5646, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5675, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5684, + "length": 4, + "value": "1280" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5694, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5704, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5713, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5724, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5731, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5741, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5754, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5785, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5794, + "length": 4, + "value": "1920" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5804, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5814, + "length": 4, + "value": "1080" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5824, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5835, + "length": 4, + "value": "1500" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5842, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5852, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5865, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5896, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5905, + "length": 4, + "value": "1920" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5915, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5925, + "length": 4, + "value": "1080" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5935, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5946, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5953, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "StringLiteral", + "offset": 5963, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "kind": "IntegerLiteral", + "offset": 5976, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 864, + "length": 10, + "value": "\"protocol\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 864, + "length": 10, + "value": "\"protocol\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 1565, + "length": 11, + "value": "\"succeeded\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 1565, + "length": 11, + "value": "\"succeeded\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 1917, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 1939, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 1963, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 1981, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 2005, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 2099, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 2123, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 2141, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 2165, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 2187, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 2404, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2465, + "length": 16, + "value": "\"candidate-pair\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2499, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2529, + "length": 13, + "value": "\"inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2569, + "length": 17, + "value": "\"local-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 14, + "value": "\"media-source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2648, + "length": 14, + "value": "\"outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2690, + "length": 18, + "value": "\"remote-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2737, + "length": 20, + "value": "\"remote-inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2787, + "length": 21, + "value": "\"remote-outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2826, + "length": 7, + "value": "\"track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2465, + "length": 16, + "value": "\"candidate-pair\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2499, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2529, + "length": 13, + "value": "\"inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2569, + "length": 17, + "value": "\"local-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 14, + "value": "\"media-source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2648, + "length": 14, + "value": "\"outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2690, + "length": 18, + "value": "\"remote-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2737, + "length": 20, + "value": "\"remote-inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2787, + "length": 21, + "value": "\"remote-outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2826, + "length": 7, + "value": "\"track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2913, + "length": 16, + "value": "\"candidate-pair\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2955, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 2980, + "length": 13, + "value": "\"inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3016, + "length": 17, + "value": "\"local-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3060, + "length": 14, + "value": "\"media-source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3098, + "length": 14, + "value": "\"outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3136, + "length": 18, + "value": "\"remote-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3182, + "length": 20, + "value": "\"remote-inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3231, + "length": 21, + "value": "\"remote-outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3282, + "length": 7, + "value": "\"track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3376, + "length": 16, + "value": "\"candidate-pair\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3410, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3440, + "length": 13, + "value": "\"inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3480, + "length": 17, + "value": "\"local-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3521, + "length": 14, + "value": "\"media-source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3559, + "length": 14, + "value": "\"outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3601, + "length": 18, + "value": "\"remote-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3648, + "length": 20, + "value": "\"remote-inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3698, + "length": 21, + "value": "\"remote-outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3737, + "length": 7, + "value": "\"track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 3919, + "length": 7, + "value": "\"track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4008, + "length": 13, + "value": "\"codec_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4023, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4035, + "length": 10, + "value": "\"codec_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 4047, + "length": 105, + "value": "[(\"mime_type\", nil), (\"clock_rate\", nil), (\"sdp_fmtp_line\", nil)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4162, + "length": 20, + "value": "\"delta_jitter_ms_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4184, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4195, + "length": 18, + "value": "\"delta_rtt_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 4215, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4228, + "length": 25, + "value": "\"percent_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4255, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4266, + "length": 18, + "value": "\"delta_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4286, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4297, + "length": 23, + "value": "\"delta_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4322, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4333, + "length": 18, + "value": "\"total_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4353, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4364, + "length": 23, + "value": "\"total_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4389, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4400, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4419, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4430, + "length": 17, + "value": "\"delta_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4449, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4460, + "length": 14, + "value": "\"delta_kbs_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4476, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4487, + "length": 14, + "value": "\"timestamp_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 4503, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4516, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4524, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4536, + "length": 26, + "value": "\"total_concealment_events\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4564, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4575, + "length": 26, + "value": "\"delta_concealment_events\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4603, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4614, + "length": 41, + "value": "\"total_inserted_samples_for_decelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4657, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4668, + "length": 41, + "value": "\"delta_inserted_samples_for_decelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4711, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4722, + "length": 40, + "value": "\"total_removed_samples_for_accelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4764, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4775, + "length": 40, + "value": "\"delta_removed_samples_for_accelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 4817, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4828, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4877, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4889, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4901, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 4916, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5002, + "length": 14, + "value": "\"codec_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5018, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5030, + "length": 11, + "value": "\"codec_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 5043, + "length": 105, + "value": "[(\"mime_type\", nil), (\"clock_rate\", nil), (\"sdp_fmtp_line\", nil)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5158, + "length": 21, + "value": "\"delta_jitter_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5181, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5192, + "length": 18, + "value": "\"delta_rtt_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 5212, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5225, + "length": 26, + "value": "\"percent_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5253, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5264, + "length": 19, + "value": "\"delta_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5285, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5296, + "length": 24, + "value": "\"delta_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5322, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5333, + "length": 19, + "value": "\"total_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5354, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5365, + "length": 24, + "value": "\"total_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5391, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5402, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5422, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5433, + "length": 18, + "value": "\"delta_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5453, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5464, + "length": 15, + "value": "\"delta_kbs_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5481, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5492, + "length": 15, + "value": "\"timestamp_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 5509, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5522, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5530, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5542, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5592, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5605, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5617, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5633, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5711, + "length": 13, + "value": "\"codec_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5726, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5734, + "length": 9, + "value": "\"size_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 5745, + "length": 77, + "value": "[(\"width\", nil), (\"height\", nil), (\"framerate\", nil)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5828, + "length": 10, + "value": "\"codec_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 5840, + "length": 59, + "value": "[(\"mime_type\", nil), (\"clock_rate\", nil)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5905, + "length": 20, + "value": "\"delta_jitter_ms_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5927, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5934, + "length": 25, + "value": "\"percent_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5961, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5968, + "length": 18, + "value": "\"delta_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 5988, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 5995, + "length": 23, + "value": "\"delta_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6020, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6027, + "length": 18, + "value": "\"total_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6047, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6054, + "length": 23, + "value": "\"total_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6079, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6086, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6105, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6112, + "length": 17, + "value": "\"delta_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6131, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6138, + "length": 14, + "value": "\"delta_kbs_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6154, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6161, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6169, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6177, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6222, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6234, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6242, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6257, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6341, + "length": 14, + "value": "\"codec_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6357, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6369, + "length": 10, + "value": "\"size_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 6381, + "length": 93, + "value": "[(\"width\", nil), (\"height\", nil), (\"framerate\", nil)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6484, + "length": 11, + "value": "\"codec_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 6497, + "length": 71, + "value": "[(\"mime_type\", nil), (\"clock_rate\", nil)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6578, + "length": 21, + "value": "\"delta_jitter_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6601, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6612, + "length": 18, + "value": "\"delta_rtt_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 6632, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6645, + "length": 26, + "value": "\"percent_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6673, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6684, + "length": 19, + "value": "\"delta_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6705, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6716, + "length": 24, + "value": "\"delta_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6742, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6753, + "length": 19, + "value": "\"total_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6774, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6785, + "length": 24, + "value": "\"total_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6811, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6822, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6842, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6853, + "length": 18, + "value": "\"delta_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6873, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6884, + "length": 15, + "value": "\"delta_kbs_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 6901, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 6912, + "length": 16, + "value": "\"limitation_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7001, + "length": 19, + "value": "\"resolutionChanges\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 7022, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7043, + "length": 15, + "value": "\"timestamp_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7060, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7073, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7081, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7093, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7143, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7156, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7168, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7184, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7320, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7328, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7340, + "length": 8, + "value": "\"roomId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7350, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7362, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7372, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7384, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 7397, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7408, + "length": 7, + "value": "\"count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "IntegerLiteral", + "offset": 7417, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7428, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7437, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7450, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7459, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7472, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7483, + "length": 43, + "value": "[(\"infrastructure\", 3)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7536, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7544, + "length": 181, + "value": "[(\"delta_kbs_bandwidth_in\", 0), (\"delta_kbs_bandwidth_out\", 0), (\"delta_rtt_connectivity_ms\", 0), (\"total_rtt_connectivity_ms\", 0)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7832, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7843, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7863, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7874, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7894, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7918, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 7947, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7967, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 7994, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "Dictionary", + "offset": 8026, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 8081, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 8164, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 8322, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 8407, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 8490, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Common\/DataModels.swift", + "kind": "StringLiteral", + "offset": 8648, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/DefaultBaggageBuilder.swift", + "kind": "BooleanLiteral", + "offset": 216, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/DefaultBaggageBuilder.swift", + "kind": "BooleanLiteral", + "offset": 534, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/DefaultLogger.swift", + "kind": "BooleanLiteral", + "offset": 199, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/DefaultLogger.swift", + "kind": "BooleanLiteral", + "offset": 259, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/DefaultLoggerProvider.swift", + "kind": "BooleanLiteral", + "offset": 301, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/DefaultLoggerProvider.swift", + "kind": "BooleanLiteral", + "offset": 374, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/DefaultMeterProvider.swift", + "kind": "BooleanLiteral", + "offset": 298, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/DefaultMeterProvider.swift", + "kind": "StringLiteral", + "offset": 560, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/DefaultMeterProvider.swift", + "kind": "BooleanLiteral", + "offset": 616, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/DefaultMeterProvider.swift", + "kind": "BooleanLiteral", + "offset": 1138, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 3224, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 4470, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 4588, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 4750, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 4862, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 4929, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 4998, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 5069, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 8253, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 8324, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 8389, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 8456, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 8540, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 8609, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 9113, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 9282, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 9648, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 10027, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 11486, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 11865, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 12857, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 13118, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 14635, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 14669, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 14815, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 14848, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 15231, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 16864, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 17394, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 19014, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 22594, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 25469, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27200, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27229, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27257, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27285, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27314, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27342, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27372, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27402, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27429, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27458, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27487, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27518, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27547, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27577, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27605, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27637, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27669, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27699, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27837, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27865, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27893, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27922, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27950, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 27980, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28010, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28037, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28066, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28094, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28125, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28154, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28184, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28212, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28244, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28276, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28306, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28336, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28656, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28687, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28718, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28859, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28890, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 28921, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 30929, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 31605, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 31751, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 32436, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 32815, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 34085, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 35718, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 38448, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 38949, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 42056, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 42605, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 43539, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 45967, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 46472, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 46987, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 47490, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 48232, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 48801, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 55072, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 55100, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 55131, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 55272, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 55303, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 55337, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 56663, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 57400, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 58165, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 59447, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 60402, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 61522, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 63469, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 66852, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 67389, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 68050, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 68488, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 68990, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 69841, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 69923, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 70546, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71306, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71335, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71362, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71504, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71531, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71565, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71944, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 71975, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72006, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72147, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72178, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72209, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72726, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72765, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72804, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72960, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 72999, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 73037, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 73905, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 73945, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 73982, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74029, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74069, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74107, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74145, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74182, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74224, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74264, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74422, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74459, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74506, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74546, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74584, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74622, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74659, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74701, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74741, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 74780, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 77495, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 78120, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 78750, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 79550, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 80670, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 81613, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 82660, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 83144, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 84485, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 84962, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 85780, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 87238, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 87899, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 87940, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 87976, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 88129, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 88165, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 88198, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 89228, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 89906, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 90353, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 90791, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 93056, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98518, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98548, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98579, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98610, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98756, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98787, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98818, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 98855, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99133, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99163, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99190, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99328, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99355, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99384, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99677, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99707, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99736, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99876, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99905, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 99936, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100249, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100279, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100311, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100338, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100474, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100506, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100533, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100560, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100856, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100886, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 100923, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101064, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101101, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101133, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101422, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101452, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101480, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101628, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101656, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 101695, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 104673, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 106036, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 106427, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 109300, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 110178, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 110635, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 111301, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 111884, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 113200, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 113229, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 113257, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 113403, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 113431, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 113461, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 116085, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 116275, + "length": 20, + "value": "\".FileDescriptorSet\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 116352, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 116368, + "length": 6, + "value": "\"file\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 116471, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 116489, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 116906, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117182, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 117396, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 117457, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 117475, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117660, + "length": 22, + "value": "\".FileDescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117739, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117755, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117768, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117784, + "length": 9, + "value": "\"package\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117800, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117816, + "length": 12, + "value": "\"dependency\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117835, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117856, + "length": 19, + "value": "\"public_dependency\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117882, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117903, + "length": 17, + "value": "\"weak_dependency\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117927, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117947, + "length": 14, + "value": "\"message_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 117968, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 117988, + "length": 11, + "value": "\"enum_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 118006, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 118022, + "length": 9, + "value": "\"service\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 118038, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 118054, + "length": 11, + "value": "\"extension\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 118072, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 118088, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 118104, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 118124, + "length": 18, + "value": "\"source_code_info\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 118149, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 118166, + "length": 8, + "value": "\"syntax\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 118181, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 118198, + "length": 9, + "value": "\"edition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 118311, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 118376, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 118440, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 118508, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 118570, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 118588, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119005, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119087, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119172, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119259, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119348, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119434, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119519, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119608, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119694, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119787, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119880, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 119971, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 120056, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 120629, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 120745, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 120872, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 120998, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121118, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121236, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121362, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121475, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121599, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121737, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121868, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 121980, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 122097, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122322, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122373, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122428, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122495, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122558, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122615, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122666, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122715, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122772, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122823, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122888, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122937, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 122988, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 123049, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 123067, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123248, + "length": 18, + "value": "\".DescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123323, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123339, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123352, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123368, + "length": 7, + "value": "\"field\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123382, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123398, + "length": 11, + "value": "\"extension\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123416, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123436, + "length": 13, + "value": "\"nested_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123456, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123476, + "length": 11, + "value": "\"enum_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123494, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123514, + "length": 17, + "value": "\"extension_range\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123538, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123558, + "length": 12, + "value": "\"oneof_decl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123577, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123593, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123609, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123629, + "length": 16, + "value": "\"reserved_range\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 123652, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 123673, + "length": 15, + "value": "\"reserved_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 123786, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 123854, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 123921, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 123986, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 124057, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 124123, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 124185, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 124203, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 124620, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 124702, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 124785, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 124873, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 124959, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 125051, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 125140, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 125226, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 125313, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 125404, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 125981, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126099, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126223, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126343, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126475, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126601, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126714, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126840, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 126970, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 127097, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127310, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127355, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127412, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127467, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127518, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127581, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127634, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127685, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127746, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127805, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127866, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 127884, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 128111, + "length": 17, + "value": "\".ExtensionRange\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 128185, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 128201, + "length": 7, + "value": "\"start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 128215, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 128231, + "length": 5, + "value": "\"end\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 128243, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 128259, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 128366, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 128384, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 128801, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 128883, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 128963, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 129536, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 129647, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 129764, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 130012, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 130055, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 130106, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 130167, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 130185, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 130411, + "length": 16, + "value": "\".ReservedRange\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 130484, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 130500, + "length": 7, + "value": "\"start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 130514, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 130530, + "length": 5, + "value": "\"end\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 130950, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 131032, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 131599, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 131710, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 131956, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 131999, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 132060, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 132078, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 132265, + "length": 24, + "value": "\".ExtensionRangeOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 132346, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 132368, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 132397, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 132413, + "length": 13, + "value": "\"declaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 132433, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 132450, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 132467, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 132483, + "length": 14, + "value": "\"verification\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 132601, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 132677, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 132740, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 132758, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 133175, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 133264, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 133352, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 133440, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 133539, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 133546, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 134247, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 134362, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 134480, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 134627, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 134722, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 134733, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 134987, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 135044, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 135097, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 135158, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 135219, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 135314, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 135332, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 135489, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 135505, + "length": 13, + "value": "\"DECLARATION\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 135525, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 135541, + "length": 12, + "value": "\"UNVERIFIED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 135787, + "length": 14, + "value": "\".Declaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 135858, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 135874, + "length": 8, + "value": "\"number\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 135889, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 135909, + "length": 11, + "value": "\"full_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 135927, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 135943, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 135956, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 135972, + "length": 10, + "value": "\"reserved\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 135989, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 136005, + "length": 10, + "value": "\"repeated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 136430, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 136513, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 136599, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 136681, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 136765, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 137337, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 137454, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 137567, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 137682, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 137797, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 138053, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 138106, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 138151, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 138204, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 138257, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 138318, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 138336, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138522, + "length": 23, + "value": "\".FieldDescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138602, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138618, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138631, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138647, + "length": 8, + "value": "\"number\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138662, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138678, + "length": 7, + "value": "\"label\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138692, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138708, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138721, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138741, + "length": 11, + "value": "\"type_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138759, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138775, + "length": 10, + "value": "\"extendee\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138792, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138812, + "length": 15, + "value": "\"default_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138834, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138854, + "length": 13, + "value": "\"oneof_index\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138874, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138895, + "length": 11, + "value": "\"json_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138913, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138929, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 138945, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 138966, + "length": 17, + "value": "\"proto3_optional\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 140350, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 140370, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 140900, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 140988, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141080, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141169, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141256, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141342, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141434, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141530, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141622, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141715, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 141808, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 142488, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 142615, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 142739, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 142861, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 142982, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 143109, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 143240, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 143367, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 143495, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 143622, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 143754, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144241, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144307, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144371, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144433, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144503, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144573, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144651, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144725, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144795, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144863, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144945, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 144967, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 145015, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 145082, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 145100, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145247, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145263, + "length": 13, + "value": "\"TYPE_DOUBLE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145283, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145299, + "length": 12, + "value": "\"TYPE_FLOAT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145318, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145334, + "length": 12, + "value": "\"TYPE_INT64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145353, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145369, + "length": 13, + "value": "\"TYPE_UINT64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145389, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145405, + "length": 12, + "value": "\"TYPE_INT32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145424, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145440, + "length": 14, + "value": "\"TYPE_FIXED64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145461, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145477, + "length": 14, + "value": "\"TYPE_FIXED32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145498, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145514, + "length": 11, + "value": "\"TYPE_BOOL\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145532, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145548, + "length": 13, + "value": "\"TYPE_STRING\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145568, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145585, + "length": 12, + "value": "\"TYPE_GROUP\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145604, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145621, + "length": 14, + "value": "\"TYPE_MESSAGE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145642, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145659, + "length": 12, + "value": "\"TYPE_BYTES\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145678, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145695, + "length": 13, + "value": "\"TYPE_UINT32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145715, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145732, + "length": 11, + "value": "\"TYPE_ENUM\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145750, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145767, + "length": 15, + "value": "\"TYPE_SFIXED32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145789, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145806, + "length": 15, + "value": "\"TYPE_SFIXED64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145828, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145845, + "length": 13, + "value": "\"TYPE_SINT32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 145865, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 145882, + "length": 13, + "value": "\"TYPE_SINT64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 146037, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 146053, + "length": 16, + "value": "\"LABEL_OPTIONAL\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 146076, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 146092, + "length": 16, + "value": "\"LABEL_REQUIRED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 146115, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 146131, + "length": 16, + "value": "\"LABEL_REPEATED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 146331, + "length": 23, + "value": "\".OneofDescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 146411, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 146427, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 146440, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 146456, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 146563, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 146581, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 146998, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 147080, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 147653, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 147770, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 147996, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 148047, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 148108, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 148126, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 148311, + "length": 22, + "value": "\".EnumDescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 148390, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 148406, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 148419, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 148435, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 148449, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 148465, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 148481, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 148501, + "length": 16, + "value": "\"reserved_range\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 148524, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 148544, + "length": 15, + "value": "\"reserved_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 148657, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 148719, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 148737, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 149154, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 149236, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 149319, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 149405, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 149496, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 150072, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 150190, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 150303, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 150437, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 150564, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 150784, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 150829, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 150880, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 150941, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 151000, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 151061, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 151079, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 151317, + "length": 20, + "value": "\".EnumReservedRange\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 151394, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 151410, + "length": 7, + "value": "\"start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 151424, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 151440, + "length": 5, + "value": "\"end\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 151860, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 151942, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 152509, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 152620, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 152882, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 152925, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 152986, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 153004, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 153194, + "length": 27, + "value": "\".EnumValueDescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 153278, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 153294, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 153307, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 153323, + "length": 8, + "value": "\"number\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 153338, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 153354, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 153461, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 153479, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 153896, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 153978, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 154061, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 154634, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 154748, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 154865, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155099, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155148, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155199, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155260, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155278, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 155466, + "length": 25, + "value": "\".ServiceDescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 155548, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 155564, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 155577, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 155593, + "length": 8, + "value": "\"method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 155608, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 155624, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155732, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155794, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 155812, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 156229, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 156311, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 156395, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 156968, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 157088, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 157201, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 157431, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 157478, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 157529, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 157590, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 157608, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 157795, + "length": 24, + "value": "\".MethodDescriptorProto\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 157876, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 157892, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 157905, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 157925, + "length": 12, + "value": "\"input_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 157944, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 157964, + "length": 13, + "value": "\"output_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 157984, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 158000, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 158016, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 158036, + "length": 18, + "value": "\"client_streaming\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 158061, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 158081, + "length": 18, + "value": "\"server_streaming\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 158197, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 158215, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 158632, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 158714, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 158801, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 158889, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 158975, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 159066, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 159644, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 159762, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 159881, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 159998, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 160120, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 160242, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160470, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160525, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160582, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160633, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160700, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160767, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160828, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 160846, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161023, + "length": 14, + "value": "\".FileOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161094, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161114, + "length": 14, + "value": "\"java_package\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161135, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161155, + "length": 22, + "value": "\"java_outer_classname\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161184, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161205, + "length": 21, + "value": "\"java_multiple_files\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161233, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161254, + "length": 31, + "value": "\"java_generate_equals_and_hash\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161292, + "length": 2, + "value": "27" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161313, + "length": 24, + "value": "\"java_string_check_utf8\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161344, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161364, + "length": 14, + "value": "\"optimize_for\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161385, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161406, + "length": 12, + "value": "\"go_package\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161425, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161446, + "length": 21, + "value": "\"cc_generic_services\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161474, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161495, + "length": 23, + "value": "\"java_generic_services\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161525, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161546, + "length": 21, + "value": "\"py_generic_services\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161574, + "length": 2, + "value": "42" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161595, + "length": 22, + "value": "\"php_generic_services\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161624, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161641, + "length": 12, + "value": "\"deprecated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161660, + "length": 2, + "value": "31" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161681, + "length": 18, + "value": "\"cc_enable_arenas\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161706, + "length": 2, + "value": "36" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161727, + "length": 19, + "value": "\"objc_class_prefix\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161753, + "length": 2, + "value": "37" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161774, + "length": 18, + "value": "\"csharp_namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161799, + "length": 2, + "value": "39" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161820, + "length": 14, + "value": "\"swift_prefix\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161841, + "length": 2, + "value": "40" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161862, + "length": 18, + "value": "\"php_class_prefix\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161887, + "length": 2, + "value": "41" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161908, + "length": 15, + "value": "\"php_namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161930, + "length": 2, + "value": "44" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 161951, + "length": 24, + "value": "\"php_metadata_namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 161982, + "length": 2, + "value": "45" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 162003, + "length": 14, + "value": "\"ruby_package\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 162024, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 162041, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 162058, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 162080, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "Array", + "offset": 163088, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 164584, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 164726, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 164809, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 164829, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 165359, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 165454, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 165556, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 165649, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 165749, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 165843, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 165943, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166045, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166145, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166253, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166346, + "length": 2, + "value": "27" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166448, + "length": 2, + "value": "31" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166545, + "length": 2, + "value": "36" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166645, + "length": 2, + "value": "37" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166745, + "length": 2, + "value": "39" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166841, + "length": 2, + "value": "40" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 166940, + "length": 2, + "value": "41" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 167037, + "length": 2, + "value": "42" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 167138, + "length": 2, + "value": "44" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 167243, + "length": 2, + "value": "45" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 167339, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 167433, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 167539, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 167546, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 168327, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 168464, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 168592, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 168726, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 168855, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 168990, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 169127, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 169262, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 169405, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 169533, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 169670, + "length": 2, + "value": "27" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 169802, + "length": 2, + "value": "31" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 169937, + "length": 2, + "value": "36" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 170072, + "length": 2, + "value": "37" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 170203, + "length": 2, + "value": "39" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 170337, + "length": 2, + "value": "40" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 170469, + "length": 2, + "value": "41" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 170605, + "length": 2, + "value": "42" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 170745, + "length": 2, + "value": "44" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 170876, + "length": 2, + "value": "45" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 171005, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 171168, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 171267, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 171278, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 171756, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 171846, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 171934, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172038, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172130, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172206, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172278, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172366, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172458, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172546, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172636, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172710, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172792, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172876, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 172960, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173036, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173118, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173196, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173290, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173366, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173436, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173528, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173550, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173598, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173665, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173760, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 173778, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 173920, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 173936, + "length": 7, + "value": "\"SPEED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 173950, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 173966, + "length": 11, + "value": "\"CODE_SIZE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 173984, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174000, + "length": 14, + "value": "\"LITE_RUNTIME\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174192, + "length": 17, + "value": "\".MessageOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 174266, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174286, + "length": 25, + "value": "\"message_set_wire_format\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 174318, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174338, + "length": 33, + "value": "\"no_standard_descriptor_accessor\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 174378, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174394, + "length": 12, + "value": "\"deprecated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 174413, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174433, + "length": 11, + "value": "\"map_entry\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 174451, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174472, + "length": 40, + "value": "\"deprecated_legacy_json_field_conflicts\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 174519, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174536, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 174553, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 174575, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 174701, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 174764, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 174840, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 174858, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175275, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175371, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175475, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175561, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175645, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175756, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175844, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175943, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 175950, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 176641, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 176776, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 176893, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 177008, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 177149, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 177268, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 177415, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 177510, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 177521, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 177765, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 177858, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 177915, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 177968, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 178073, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 178126, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 178199, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 178260, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 178355, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 178373, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178551, + "length": 15, + "value": "\".FieldOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178623, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178639, + "length": 7, + "value": "\"ctype\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178653, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178669, + "length": 8, + "value": "\"packed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178684, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178700, + "length": 8, + "value": "\"jstype\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178715, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178731, + "length": 6, + "value": "\"lazy\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178744, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178765, + "length": 17, + "value": "\"unverified_lazy\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178789, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178805, + "length": 12, + "value": "\"deprecated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178824, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178841, + "length": 6, + "value": "\"weak\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178854, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178875, + "length": 14, + "value": "\"debug_redact\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178896, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178913, + "length": 11, + "value": "\"retention\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178931, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178948, + "length": 9, + "value": "\"targets\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 178964, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 178985, + "length": 18, + "value": "\"edition_defaults\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 179010, + "length": 2, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 179027, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 179044, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 179066, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 179192, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 179255, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 179331, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 179349, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 179766, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 179847, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 179929, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180015, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180095, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180177, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180258, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180349, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180437, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180523, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180606, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180700, + "length": 2, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180788, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180887, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 180894, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 181568, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 181681, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 181798, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 181909, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182022, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182133, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182255, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182374, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182491, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182611, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182746, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 182861, + "length": 2, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 183008, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 183103, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 183114, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183324, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183373, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183422, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183467, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183532, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183589, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183634, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183693, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183748, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183797, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183862, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183915, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 183988, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 184049, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 184144, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 184162, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184298, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184314, + "length": 8, + "value": "\"STRING\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184329, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184345, + "length": 6, + "value": "\"CORD\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184358, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184374, + "length": 14, + "value": "\"STRING_PIECE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184523, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184539, + "length": 11, + "value": "\"JS_NORMAL\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184557, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184573, + "length": 11, + "value": "\"JS_STRING\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184591, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184607, + "length": 11, + "value": "\"JS_NUMBER\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184762, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184778, + "length": 19, + "value": "\"RETENTION_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184804, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184820, + "length": 19, + "value": "\"RETENTION_RUNTIME\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 184846, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 184862, + "length": 18, + "value": "\"RETENTION_SOURCE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185025, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185041, + "length": 21, + "value": "\"TARGET_TYPE_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185069, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185085, + "length": 18, + "value": "\"TARGET_TYPE_FILE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185110, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185126, + "length": 29, + "value": "\"TARGET_TYPE_EXTENSION_RANGE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185162, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185178, + "length": 21, + "value": "\"TARGET_TYPE_MESSAGE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185206, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185222, + "length": 19, + "value": "\"TARGET_TYPE_FIELD\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185248, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185264, + "length": 19, + "value": "\"TARGET_TYPE_ONEOF\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185290, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185306, + "length": 18, + "value": "\"TARGET_TYPE_ENUM\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185331, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185347, + "length": 24, + "value": "\"TARGET_TYPE_ENUM_ENTRY\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185378, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185394, + "length": 21, + "value": "\"TARGET_TYPE_SERVICE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185422, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185438, + "length": 20, + "value": "\"TARGET_TYPE_METHOD\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185677, + "length": 17, + "value": "\".EditionDefault\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185751, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185767, + "length": 9, + "value": "\"edition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 185783, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 185799, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 186221, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 186306, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 186879, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 186993, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187239, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187286, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187347, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187365, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 187543, + "length": 15, + "value": "\".OneofOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 187615, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 187631, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 187648, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 187670, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187796, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187859, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187935, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 187953, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 188370, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 188457, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 188556, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 188563, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 189243, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 189389, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 189484, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 189495, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 189711, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 189784, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 189845, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 189940, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 189958, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 190135, + "length": 14, + "value": "\".EnumOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 190206, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 190226, + "length": 13, + "value": "\"allow_alias\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 190246, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 190262, + "length": 12, + "value": "\"deprecated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 190281, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 190301, + "length": 40, + "value": "\"deprecated_legacy_json_field_conflicts\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 190348, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 190364, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 190381, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 190403, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 190529, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 190592, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 190668, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 190686, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 191103, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 191189, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 191275, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 191385, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 191472, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 191571, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 191578, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 192256, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 192373, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 192514, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 192632, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 192778, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 192873, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 192884, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193102, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193159, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193264, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193317, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193390, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193451, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193546, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 193564, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 193746, + "length": 19, + "value": "\".EnumValueOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 193822, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 193838, + "length": 12, + "value": "\"deprecated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 193857, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 193873, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 193890, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 193910, + "length": 14, + "value": "\"debug_redact\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 193931, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 193953, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 194079, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 194142, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 194218, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 194236, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 194653, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 194739, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 194826, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 194913, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 195012, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 195019, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 195702, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 195820, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 195938, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 196084, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 196179, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 196190, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 196418, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 196471, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 196530, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 196603, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 196664, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 196759, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 196777, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 196957, + "length": 17, + "value": "\".ServiceOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 197031, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 197048, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 197065, + "length": 2, + "value": "33" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 197082, + "length": 12, + "value": "\"deprecated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 197101, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 197123, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 197249, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 197312, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 197388, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 197406, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 197823, + "length": 2, + "value": "33" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 197910, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 197998, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 198097, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 198104, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 198785, + "length": 2, + "value": "33" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 198904, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 199051, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 199146, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 199157, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 199377, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 199434, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 199507, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 199568, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 199663, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 199681, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 199860, + "length": 16, + "value": "\".MethodOptions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 199933, + "length": 2, + "value": "33" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 199950, + "length": 12, + "value": "\"deprecated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 199969, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 199990, + "length": 19, + "value": "\"idempotency_level\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 200016, + "length": 2, + "value": "35" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 200033, + "length": 10, + "value": "\"features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 200050, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 200072, + "length": 22, + "value": "\"uninterpreted_option\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 200198, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 200261, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 200337, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 200355, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 200772, + "length": 2, + "value": "33" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 200859, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 200952, + "length": 2, + "value": "35" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 201040, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 201139, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 201146, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 201826, + "length": 2, + "value": "33" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 201950, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 202069, + "length": 2, + "value": "35" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 202216, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 202311, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 202322, + "length": 9, + "value": "536870912" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 202544, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 202613, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 202666, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 202739, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 202800, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 202895, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 202913, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203061, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203077, + "length": 21, + "value": "\"IDEMPOTENCY_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203105, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203121, + "length": 17, + "value": "\"NO_SIDE_EFFECTS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203145, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203161, + "length": 12, + "value": "\"IDEMPOTENT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203356, + "length": 22, + "value": "\".UninterpretedOption\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203435, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203451, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203464, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203484, + "length": 18, + "value": "\"identifier_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203509, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203529, + "length": 20, + "value": "\"positive_int_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203556, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203576, + "length": 20, + "value": "\"negative_int_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203603, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203623, + "length": 14, + "value": "\"double_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203644, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203664, + "length": 14, + "value": "\"string_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 203685, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 203705, + "length": 17, + "value": "\"aggregate_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 203819, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 203837, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 204254, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 204336, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 204429, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 204523, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 204616, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 204705, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 204793, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 205375, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 205495, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 205620, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 205744, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 205864, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 205983, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 206106, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206328, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206395, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206464, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206533, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206592, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206651, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206716, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206777, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 206795, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 207024, + "length": 11, + "value": "\".NamePart\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 207092, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 207112, + "length": 11, + "value": "\"name_part\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 207130, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 207150, + "length": 14, + "value": "\"is_extension\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 207244, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 207291, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 207309, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 207726, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 207812, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 208390, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 208508, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 208758, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 208817, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 208878, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 208896, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209072, + "length": 13, + "value": "\".FeatureSet\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 209142, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209162, + "length": 16, + "value": "\"field_presence\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 209185, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209205, + "length": 11, + "value": "\"enum_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 209223, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209243, + "length": 25, + "value": "\"repeated_field_encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 209275, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209295, + "length": 25, + "value": "\"string_field_validation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 209327, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209347, + "length": 18, + "value": "\"message_encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 209372, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209392, + "length": 13, + "value": "\"json_format\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 209412, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 209434, + "length": 14, + "value": "\"raw_features\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 210746, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 210891, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 210911, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 211441, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 211536, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 211626, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 211729, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 211832, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 211929, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 212021, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 212119, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 212126, + "length": 4, + "value": "1002" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 212132, + "length": 4, + "value": "9995" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 212139, + "length": 5, + "value": "10000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 212915, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213040, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213178, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213316, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213448, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213575, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213706, + "length": 3, + "value": "999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213809, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 213820, + "length": 5, + "value": "10000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214296, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214366, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214462, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214558, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214642, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214716, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214792, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214814, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214862, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 214929, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 215024, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 215042, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215184, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215200, + "length": 24, + "value": "\"FIELD_PRESENCE_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215231, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215247, + "length": 10, + "value": "\"EXPLICIT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215264, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215280, + "length": 10, + "value": "\"IMPLICIT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215297, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215313, + "length": 17, + "value": "\"LEGACY_REQUIRED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215465, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215481, + "length": 19, + "value": "\"ENUM_TYPE_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215507, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215523, + "length": 6, + "value": "\"OPEN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215536, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215552, + "length": 8, + "value": "\"CLOSED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215708, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215724, + "length": 33, + "value": "\"REPEATED_FIELD_ENCODING_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215764, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215780, + "length": 8, + "value": "\"PACKED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215795, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215811, + "length": 10, + "value": "\"EXPANDED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 215969, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 215985, + "length": 33, + "value": "\"STRING_FIELD_VALIDATION_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216025, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216041, + "length": 11, + "value": "\"MANDATORY\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216059, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216075, + "length": 6, + "value": "\"HINT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216088, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216104, + "length": 6, + "value": "\"NONE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216252, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216268, + "length": 26, + "value": "\"MESSAGE_ENCODING_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216301, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216317, + "length": 17, + "value": "\"LENGTH_PREFIXED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216341, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216357, + "length": 11, + "value": "\"DELIMITED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216505, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216521, + "length": 21, + "value": "\"JSON_FORMAT_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216549, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216565, + "length": 7, + "value": "\"ALLOW\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216579, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216595, + "length": 20, + "value": "\"LEGACY_BEST_EFFORT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216793, + "length": 17, + "value": "\".SourceCodeInfo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 216867, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 216883, + "length": 10, + "value": "\"location\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 217308, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 217596, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 217812, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 217873, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 217891, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 218110, + "length": 11, + "value": "\".Location\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218178, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 218194, + "length": 6, + "value": "\"path\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218207, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 218223, + "length": 6, + "value": "\"span\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218236, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 218256, + "length": 18, + "value": "\"leading_comments\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218281, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 218301, + "length": 19, + "value": "\"trailing_comments\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218327, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 218347, + "length": 27, + "value": "\"leading_detached_comments\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218789, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218869, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 218949, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 219042, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 219136, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 219722, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 219830, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 219950, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 220075, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 220228, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 220454, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 220497, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 220564, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 220633, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 220714, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 220775, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 220793, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 220976, + "length": 20, + "value": "\".GeneratedCodeInfo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 221053, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 221069, + "length": 12, + "value": "\"annotation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 221496, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 221790, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 222016, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 222077, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 222095, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 222322, + "length": 13, + "value": "\".Annotation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 222392, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 222408, + "length": 6, + "value": "\"path\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 222421, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 222441, + "length": 13, + "value": "\"source_file\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 222461, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 222477, + "length": 7, + "value": "\"begin\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 222491, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 222507, + "length": 5, + "value": "\"end\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 222519, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 222535, + "length": 10, + "value": "\"semantic\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 222960, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 223040, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 223128, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 223210, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 223290, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 223860, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 223975, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 224088, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 224199, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 224314, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 224554, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 224611, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 224658, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 224701, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 224754, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 224815, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "BooleanLiteral", + "offset": 224833, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 224988, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 225004, + "length": 6, + "value": "\"NONE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 225017, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 225033, + "length": 5, + "value": "\"SET\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "IntegerLiteral", + "offset": 225045, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/descriptor.pb.swift", + "kind": "StringLiteral", + "offset": 225061, + "length": 7, + "value": "\"ALIAS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 214, + "length": 28, + "value": "\"CFBundleShortVersionString\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 456, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 593, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 696, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 743, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 943, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1049, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1071, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1337, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "IntegerLiteral", + "offset": 1429, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1653, + "length": 9, + "value": "\"sdkType\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1664, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1683, + "length": 12, + "value": "\"sdkVersion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1722, + "length": 10, + "value": "\"platform\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1734, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1753, + "length": 17, + "value": "\"deviceUserAgent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1790, + "length": 7, + "value": "\"model\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1799, + "length": 25, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1823, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1876, + "length": 11, + "value": "\"osVersion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 497, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 576, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 649, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 678, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1511, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1530, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1591, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1668, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1695, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1739, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1768, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 2127, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 2358, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 2563, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 2600, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "StringLiteral", + "offset": 274, + "length": 6, + "value": "\"VideoSDKRTC.Handle\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "StringLiteral", + "offset": 3082, + "length": 40, + "value": "\"This aggregator does not support diff.\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleExplicitBucketHistogramAggregator.swift", + "kind": "StringLiteral", + "offset": 3267, + "length": 43, + "value": "\"This aggregator does not support toPoint.\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/DoubleGaugeBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 442, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/DoubleGaugeBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 473, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/DoubleHistogramMeterBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 822, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/DoubleHistogramMeterBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 845, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleLastValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1455, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleLastValueAggregator.swift", + "kind": "FloatLiteral", + "offset": 1708, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleLastValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1835, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/DoubleParser.swift", + "kind": "IntegerLiteral", + "offset": 1062, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/DoubleParser.swift", + "kind": "IntegerLiteral", + "offset": 1569, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/DoubleParser.swift", + "kind": "IntegerLiteral", + "offset": 1703, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/Internal\/DoublePointData.swift", + "kind": "StringLiteral", + "offset": 117, + "length": 15, + "value": "\"VideoSDKRTC.DoublePointData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1614, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleSumAggregator.swift", + "kind": "FloatLiteral", + "offset": 1865, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1989, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DoubleSumAggregator.swift", + "kind": "StringLiteral", + "offset": 117, + "length": 19, + "value": "\"VideoSDKRTC.DoubleSumAggregator\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DropAggregation.swift", + "kind": "BooleanLiteral", + "offset": 463, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DropAggregator.swift", + "kind": "IntegerLiteral", + "offset": 228, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/DropAggregator.swift", + "kind": "IntegerLiteral", + "offset": 246, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 5180, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 5614, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "StringLiteral", + "offset": 5947, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "StringLiteral", + "offset": 6128, + "length": 11, + "value": "\".Duration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 6196, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "StringLiteral", + "offset": 6212, + "length": 9, + "value": "\"seconds\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 6228, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "StringLiteral", + "offset": 6244, + "length": 7, + "value": "\"nanos\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 6666, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 6749, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 6944, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 7024, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 7054, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "IntegerLiteral", + "offset": 7132, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "BooleanLiteral", + "offset": 7334, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "BooleanLiteral", + "offset": 7379, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "BooleanLiteral", + "offset": 7440, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/duration.pb.swift", + "kind": "BooleanLiteral", + "offset": 7458, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/empty.pb.swift", + "kind": "StringLiteral", + "offset": 3336, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/empty.pb.swift", + "kind": "StringLiteral", + "offset": 3514, + "length": 8, + "value": "\".Empty\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/empty.pb.swift", + "kind": "BooleanLiteral", + "offset": 3976, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/empty.pb.swift", + "kind": "BooleanLiteral", + "offset": 3994, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/EmptyMetricStorage.swift", + "kind": "StringLiteral", + "offset": 496, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/EmptyMetricStorage.swift", + "kind": "StringLiteral", + "offset": 513, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/EmptyMetricStorage.swift", + "kind": "StringLiteral", + "offset": 523, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/EmptyMetricStorage.swift", + "kind": "BooleanLiteral", + "offset": 762, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/EntryKey.swift", + "kind": "IntegerLiteral", + "offset": 566, + "length": 3, + "value": "255" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/EntryKey.swift", + "kind": "StringLiteral", + "offset": 642, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/EntryKey.swift", + "kind": "IntegerLiteral", + "offset": 1342, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/EntryMetadata.swift", + "kind": "IntegerLiteral", + "offset": 348, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/EntryValue.swift", + "kind": "IntegerLiteral", + "offset": 380, + "length": 3, + "value": "255" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/EntryValue.swift", + "kind": "StringLiteral", + "offset": 464, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Propagation\/EnvironmentContextPropagator.swift", + "kind": "StringLiteral", + "offset": 305, + "length": 13, + "value": "\"TRACEPARENT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Propagation\/EnvironmentContextPropagator.swift", + "kind": "StringLiteral", + "offset": 347, + "length": 12, + "value": "\"TRACESTATE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Propagation\/EnvironmentContextPropagator.swift", + "kind": "StringLiteral", + "offset": 821, + "length": 13, + "value": "\"traceparent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Propagation\/EnvironmentContextPropagator.swift", + "kind": "StringLiteral", + "offset": 906, + "length": 12, + "value": "\"tracestate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Propagation\/EnvironmentContextPropagator.swift", + "kind": "StringLiteral", + "offset": 1089, + "length": 13, + "value": "\"traceparent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Propagation\/EnvironmentContextPropagator.swift", + "kind": "StringLiteral", + "offset": 1175, + "length": 12, + "value": "\"tracestate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "StringLiteral", + "offset": 281, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "StringLiteral", + "offset": 343, + "length": 3, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "StringLiteral", + "offset": 621, + "length": 28, + "value": "\"OTEL_EXPORTER_OTLP_HEADERS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "StringLiteral", + "offset": 868, + "length": 54, + "value": "\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "StringLiteral", + "offset": 971, + "length": 12, + "value": "\"0123456789\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "StringLiteral", + "offset": 1034, + "length": 17, + "value": "\"!#$%&'*+-.^_`|~\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "IntegerLiteral", + "offset": 1308, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "IntegerLiteral", + "offset": 1329, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "StringLiteral", + "offset": 1385, + "length": 9, + "value": "\"^\"|\"$\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "IntegerLiteral", + "offset": 2164, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "IntegerLiteral", + "offset": 2234, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "IntegerLiteral", + "offset": 2357, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/EnvVarHeaders.swift", + "kind": "IntegerLiteral", + "offset": 2535, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/EnvVarResource.swift", + "kind": "StringLiteral", + "offset": 302, + "length": 26, + "value": "\"OTEL_RESOURCE_ATTRIBUTES\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/EnvVarResource.swift", + "kind": "StringLiteral", + "offset": 382, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/EnvVarResource.swift", + "kind": "StringLiteral", + "offset": 444, + "length": 3, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/EnvVarResource.swift", + "kind": "IntegerLiteral", + "offset": 2116, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/EnvVarResource.swift", + "kind": "IntegerLiteral", + "offset": 2185, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/EnvVarResource.swift", + "kind": "IntegerLiteral", + "offset": 2277, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/EnvVarResource.swift", + "kind": "StringLiteral", + "offset": 2330, + "length": 9, + "value": "\"^\"|\"$\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/ExemplarData.swift", + "kind": "StringLiteral", + "offset": 936, + "length": 18, + "value": "\"VideoSDKRTC.DoubleExemplarData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/ExemplarData.swift", + "kind": "StringLiteral", + "offset": 1489, + "length": 16, + "value": "\"VideoSDKRTC.LongExemplarData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarFilter.swift", + "kind": "BooleanLiteral", + "offset": 493, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarFilter.swift", + "kind": "BooleanLiteral", + "offset": 625, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarFilter.swift", + "kind": "BooleanLiteral", + "offset": 823, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarFilter.swift", + "kind": "BooleanLiteral", + "offset": 952, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "BooleanLiteral", + "offset": 1422, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 1770, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 2110, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "BooleanLiteral", + "offset": 2232, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 2515, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "BooleanLiteral", + "offset": 2639, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "BooleanLiteral", + "offset": 3089, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "StringLiteral", + "offset": 1177, + "length": 27, + "value": "\"VideoSDKRTC.FixedSizedExemplarReservoir\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 4141, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 4567, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 4692, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 4754, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 4766, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 4798, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 4899, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ExemplarReservoir.swift", + "kind": "StringLiteral", + "offset": 3140, + "length": 33, + "value": "\"VideoSDKRTC.RandomFixedSizedExemplarReservoir\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/ExplicitBucketHistogramAggregation.swift", + "kind": "Array", + "offset": 233, + "length": 70, + "value": "[0, 5, 10, 25, 50, 75, 100, 250, 500, 750, 1000, 2500, 5000, 7500]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/ExplicitBucketHistogramAggregation.swift", + "kind": "BooleanLiteral", + "offset": 1155, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/ExplicitBucketHistogramAggregation.swift", + "kind": "BooleanLiteral", + "offset": 1196, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "BooleanLiteral", + "offset": 1753, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "Array", + "offset": 4799, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "IntegerLiteral", + "offset": 5004, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "Array", + "offset": 6496, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "IntegerLiteral", + "offset": 6701, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "Array", + "offset": 9764, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "IntegerLiteral", + "offset": 9968, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "Array", + "offset": 11507, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "IntegerLiteral", + "offset": 11711, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "Array", + "offset": 14910, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "IntegerLiteral", + "offset": 15117, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "Array", + "offset": 18488, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFields.swift", + "kind": "IntegerLiteral", + "offset": 18693, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "BooleanLiteral", + "offset": 1099, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "BooleanLiteral", + "offset": 1240, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "BooleanLiteral", + "offset": 1307, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "BooleanLiteral", + "offset": 1353, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "BooleanLiteral", + "offset": 1384, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "IntegerLiteral", + "offset": 1731, + "length": 8, + "value": "16777619" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "BooleanLiteral", + "offset": 2814, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ExtensionFieldValueSet.swift", + "kind": "BooleanLiteral", + "offset": 2845, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 279, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 365, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 370, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 476, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 525, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 629, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 679, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 708, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 811, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 872, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 906, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 951, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "FloatLiteral", + "offset": 973, + "length": 5, + "value": "0.008" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 981, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 1007, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 1072, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "FloatLiteral", + "offset": 1090, + "length": 5, + "value": "0.008" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 1098, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 1124, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1152, + "length": 23, + "value": "\"total_KBytes_received\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 19, + "value": "\"total_KBytes_sent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1252, + "length": 23, + "value": "\"delta_KBytes_received\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1301, + "length": 19, + "value": "\"delta_KBytes_sent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1342, + "length": 20, + "value": "\"kbs_speed_received\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1390, + "length": 16, + "value": "\"kbs_speed_sent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 1688, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1822, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1829, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1845, + "length": 10, + "value": "\"totalRTT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1875, + "length": 27, + "value": "\"total_rtt_connectivity_ms\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 1915, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1930, + "length": 22, + "value": "\"totalRTTMeasurements\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 1972, + "length": 32, + "value": "\"total_rtt_connectivity_measure\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 2017, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 2061, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 2140, + "length": 27, + "value": "\"total_rtt_connectivity_ms\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 2180, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 2250, + "length": 32, + "value": "\"total_rtt_connectivity_measure\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 2295, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 2300, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 2462, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 2707, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 2734, + "length": 10, + "value": "\"totalRTT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 2771, + "length": 22, + "value": "\"totalRTTMeasurements\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 2995, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 3033, + "length": 7, + "value": "\"relay\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 3058, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 3132, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 3306, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 3311, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 3412, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 3417, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 3444, + "length": 24, + "value": "\"kbs_incoming_bandwidth\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 3500, + "length": 24, + "value": "\"kbs_outgoing_bandwidth\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 3755, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 3833, + "length": 9, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 3841, + "length": 9, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 3847, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 3890, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 3903, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 4157, + "length": 9, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 4165, + "length": 9, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 4171, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 4214, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 4227, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 4626, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 4836, + "length": 20, + "value": "\"percentPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 4876, + "length": 25, + "value": "\"percent_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 4906, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 4921, + "length": 17, + "value": "\"packetsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 4958, + "length": 18, + "value": "\"total_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 4981, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 4996, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 5029, + "length": 23, + "value": "\"total_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5057, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 5072, + "length": 15, + "value": "\"bytesReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 5107, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5129, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5230, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5302, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 5364, + "length": 23, + "value": "\"total_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5400, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 5471, + "length": 18, + "value": "\"total_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5502, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 5572, + "length": 18, + "value": "\"total_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5603, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5644, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "FloatLiteral", + "offset": 5719, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5802, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5807, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 5878, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 5911, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 6015, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6064, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 6189, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 6223, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "FloatLiteral", + "offset": 6258, + "length": 5, + "value": "0.008" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 6266, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 6330, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6358, + "length": 20, + "value": "\"percentPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6408, + "length": 17, + "value": "\"packetsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6452, + "length": 22, + "value": "\"deltaPacketsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6506, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6542, + "length": 18, + "value": "\"deltaPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6588, + "length": 16, + "value": "\"KBytesReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6630, + "length": 21, + "value": "\"deltaKBytesReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 6682, + "length": 13, + "value": "\"kbsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 6918, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 6972, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 7162, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 7253, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 7332, + "length": 26, + "value": "\"total_concealment_events\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 7371, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 7488, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 7593, + "length": 41, + "value": "\"total_inserted_samples_for_deceleration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 7647, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 7762, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 7865, + "length": 40, + "value": "\"total_removed_samples_for_acceleration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 7918, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 7943, + "length": 24, + "value": "\"totalConcealmentEvents\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8001, + "length": 24, + "value": "\"deltaConcealmentEvents\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8059, + "length": 37, + "value": "\"totalInsertedSamplesForDeceleration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8143, + "length": 37, + "value": "\"deltaInsertedSamplesForDeceleration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8227, + "length": 36, + "value": "\"totalRemovedSamplesForAcceleration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8309, + "length": 36, + "value": "\"deltaRemovedSamplesForAcceleration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 8577, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8779, + "length": 23, + "value": "\"delta_ms_decode_frame\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8827, + "length": 26, + "value": "\"delta_ms_decode_frame_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 8858, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8873, + "length": 16, + "value": "\"frames_decoded\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8914, + "length": 25, + "value": "\"total_frames_decoded_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 8944, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 8959, + "length": 19, + "value": "\"total_decode_time\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9003, + "length": 23, + "value": "\"total_time_decoded_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 9031, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9107, + "length": 23, + "value": "\"total_time_decoded_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 9146, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9203, + "length": 25, + "value": "\"total_frames_decoded_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 9241, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 9414, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 9437, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 9466, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9490, + "length": 23, + "value": "\"delta_ms_decode_frame\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9543, + "length": 16, + "value": "\"frames_decoded\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9584, + "length": 19, + "value": "\"total_decode_time\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9715, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9776, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 9839, + "length": 11, + "value": "\"framerate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10200, + "length": 10, + "value": "\"pliCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10228, + "length": 19, + "value": "\"total_pli_sent_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 10252, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10267, + "length": 11, + "value": "\"nackCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10296, + "length": 20, + "value": "\"total_nack_sent_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 10321, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10336, + "length": 15, + "value": "\"deltaPliCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 10353, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10368, + "length": 16, + "value": "\"deltaNackCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 10386, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 10497, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10551, + "length": 19, + "value": "\"total_pli_sent_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 10583, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10636, + "length": 20, + "value": "\"total_nack_sent_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 10669, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10801, + "length": 10, + "value": "\"pliCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10831, + "length": 11, + "value": "\"nackCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10863, + "length": 15, + "value": "\"deltaPliCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 10903, + "length": 16, + "value": "\"deltaNackCount\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 11134, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11317, + "length": 13, + "value": "\"packetsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11350, + "length": 19, + "value": "\"total_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 11374, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11389, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11422, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 11440, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11481, + "length": 11, + "value": "\"bytesSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11512, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 11535, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11602, + "length": 19, + "value": "\"total_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 11634, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 11731, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 11783, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 11814, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 11976, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12025, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 12130, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 12160, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "FloatLiteral", + "offset": 12191, + "length": 5, + "value": "0.008" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 12199, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 12225, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12249, + "length": 13, + "value": "\"packetsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12285, + "length": 18, + "value": "\"deltaPacketsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12331, + "length": 12, + "value": "\"KBytesSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12365, + "length": 17, + "value": "\"deltaKBytesSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12409, + "length": 9, + "value": "\"kbsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 12626, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12670, + "length": 24, + "value": "\"total_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 12707, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 12736, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "FloatLiteral", + "offset": 12761, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 12942, + "length": 24, + "value": "\"total_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 12979, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 13094, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 13146, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 13182, + "length": 18, + "value": "\"deltaPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 13228, + "length": 14, + "value": "\"fractionLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 14031, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 14066, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14166, + "length": 8, + "value": "\"reason\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14193, + "length": 11, + "value": "\"durations\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14226, + "length": 19, + "value": "\"resolutionChanges\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14361, + "length": 10, + "value": "\"channels\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 14410, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14421, + "length": 12, + "value": "\"clock_rate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 14473, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14484, + "length": 11, + "value": "\"mime_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14534, + "length": 12, + "value": "\"audio\/opus\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14556, + "length": 15, + "value": "\"sdp_fmtp_line\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14613, + "length": 9, + "value": "\"apt=100\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14718, + "length": 12, + "value": "\"clock_rate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 14770, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14781, + "length": 11, + "value": "\"mime_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 14831, + "length": 11, + "value": "\"video\/rtx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 15035, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 15079, + "length": 18, + "value": "\"total_rtt_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 15110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 15158, + "length": 23, + "value": "\"total_rtt_measure_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 15194, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 15256, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 15263, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 15275, + "length": 10, + "value": "\"totalRTT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 15308, + "length": 22, + "value": "\"totalRTTMeasurements\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 15428, + "length": 15, + "value": "\"timestamp_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 15802, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 15964, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 16099, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 16268, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 16378, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 16405, + "length": 10, + "value": "\"totalRTT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 16442, + "length": 22, + "value": "\"totalRTTMeasurements\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 16662, + "length": 16, + "value": "\"candidate-pair\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "BooleanLiteral", + "offset": 16707, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "BooleanLiteral", + "offset": 16853, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "BooleanLiteral", + "offset": 17053, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17372, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17482, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17534, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17569, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17606, + "length": 23, + "value": "\"total_KBytes_received\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17710, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17762, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17797, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17835, + "length": 19, + "value": "\"total_KBytes_sent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17935, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 17987, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18022, + "length": 17, + "value": "\"delta_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18059, + "length": 23, + "value": "\"delta_KBytes_received\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18163, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18215, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18250, + "length": 18, + "value": "\"delta_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18288, + "length": 19, + "value": "\"delta_KBytes_sent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18388, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18440, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18475, + "length": 14, + "value": "\"delta_kbs_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18509, + "length": 20, + "value": "\"kbs_speed_received\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18610, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18662, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18697, + "length": 15, + "value": "\"delta_kbs_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18732, + "length": 16, + "value": "\"kbs_speed_sent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18829, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18881, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18916, + "length": 27, + "value": "\"delta_rtt_connectivity_ms\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 18961, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19050, + "length": 17, + "value": "\"local-candidate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19160, + "length": 9, + "value": "\"network\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19235, + "length": 20, + "value": "\"local_candidate_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19392, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19450, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19488, + "length": 16, + "value": "\"infrastructure\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19546, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19640, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19698, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19733, + "length": 26, + "value": "\"local_candidate_protocol\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19801, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19895, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19953, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 19988, + "length": 32, + "value": "\"local_candidate_relay_protocol\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 20155, + "length": 13, + "value": "\"inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Array", + "offset": 20398, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 20505, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 20534, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 20994, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21206, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21242, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21297, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21307, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21411, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21447, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21502, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21512, + "length": 13, + "value": "\"codec_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21609, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21645, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21700, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21710, + "length": 18, + "value": "\"total_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21735, + "length": 17, + "value": "\"packetsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21818, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21854, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21909, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21919, + "length": 18, + "value": "\"delta_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 21944, + "length": 22, + "value": "\"deltaPacketsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22033, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22069, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22124, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22134, + "length": 23, + "value": "\"total_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22164, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22244, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22280, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22335, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22345, + "length": 23, + "value": "\"delta_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22375, + "length": 18, + "value": "\"deltaPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22460, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22496, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22551, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22561, + "length": 25, + "value": "\"percent_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22593, + "length": 20, + "value": "\"percentPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22680, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22716, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22771, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22781, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22805, + "length": 16, + "value": "\"KBytesReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22888, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22924, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22979, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 22989, + "length": 17, + "value": "\"delta_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23013, + "length": 21, + "value": "\"deltaKBytesReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23099, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23133, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23186, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23196, + "length": 14, + "value": "\"delta_kbs_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23217, + "length": 13, + "value": "\"kbsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23295, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23329, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23382, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23392, + "length": 20, + "value": "\"delta_jitter_ms_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23484, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23518, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23571, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23604, + "length": 26, + "value": "\"total_concealment_events\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23642, + "length": 24, + "value": "\"totalConcealmentEvents\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23753, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23787, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23840, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23873, + "length": 26, + "value": "\"delta_concealment_events\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 23911, + "length": 24, + "value": "\"deltaConcealmentEvents\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24022, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24056, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24109, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24142, + "length": 41, + "value": "\"total_inserted_samples_for_decelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24221, + "length": 37, + "value": "\"totalInsertedSamplesForDecelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24345, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24379, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24432, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24465, + "length": 41, + "value": "\"delta_inserted_samples_for_decelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24544, + "length": 37, + "value": "\"deltaInsertedSamplesForDecelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24668, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24702, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24755, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24788, + "length": 40, + "value": "\"total_removed_samples_for_accelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24866, + "length": 36, + "value": "\"totalRemovedSamplesForAccelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 24989, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25023, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25076, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25109, + "length": 40, + "value": "\"delta_removed_samples_for_accelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25187, + "length": 35, + "value": "\"deltaRemovedSampleForAccelaration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25309, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25343, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25396, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25406, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25514, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25548, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25601, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25636, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25776, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25810, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25863, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 25898, + "length": 17, + "value": "\"media_source_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26470, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26615, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26651, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26706, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26716, + "length": 11, + "value": "\"direction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26820, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26856, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26911, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 26921, + "length": 13, + "value": "\"codec_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27018, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27054, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27109, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27119, + "length": 18, + "value": "\"total_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27151, + "length": 17, + "value": "\"packetsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27234, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27270, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27325, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27362, + "length": 18, + "value": "\"delta_packets_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27394, + "length": 22, + "value": "\"deltaPacketsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27502, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27536, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27589, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27599, + "length": 23, + "value": "\"total_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27636, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27714, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27748, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27801, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27834, + "length": 23, + "value": "\"delta_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27871, + "length": 18, + "value": "\"deltaPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 27975, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28009, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28062, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28095, + "length": 25, + "value": "\"percent_packets_lost_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28134, + "length": 20, + "value": "\"percentPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28240, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28274, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28327, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28337, + "length": 17, + "value": "\"total_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28368, + "length": 16, + "value": "\"KBytesReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28449, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28483, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28536, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28546, + "length": 17, + "value": "\"delta_KBytes_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28577, + "length": 21, + "value": "\"deltaKBytesReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28663, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28697, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28750, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28760, + "length": 14, + "value": "\"delta_kbs_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28788, + "length": 13, + "value": "\"kbsReceived\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28866, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28900, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28953, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 28963, + "length": 20, + "value": "\"delta_jitter_ms_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29055, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29089, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29142, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29152, + "length": 9, + "value": "\"size_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29237, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29271, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29324, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29334, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29442, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29476, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29529, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29539, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29658, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29692, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29745, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29755, + "length": 17, + "value": "\"media_source_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 29882, + "length": 14, + "value": "\"outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 30251, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 30281, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 30297, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 30715, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 30802, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 30839, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 30895, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 30905, + "length": 14, + "value": "\"codec_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31007, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31044, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31100, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31110, + "length": 19, + "value": "\"total_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31136, + "length": 13, + "value": "\"packetsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31216, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31251, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31305, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31315, + "length": 19, + "value": "\"delta_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31341, + "length": 18, + "value": "\"deltaPacketsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31427, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31462, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31516, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31526, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31551, + "length": 12, + "value": "\"KBytesSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31631, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31666, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31720, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31730, + "length": 18, + "value": "\"delta_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31755, + "length": 17, + "value": "\"deltaKBytesSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31840, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31875, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31929, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31939, + "length": 15, + "value": "\"delta_kbs_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 31961, + "length": 9, + "value": "\"kbsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32038, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32073, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32127, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32137, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32249, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32284, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32338, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32348, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32471, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32506, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32560, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 32570, + "length": 17, + "value": "\"media_source_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33089, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33418, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33455, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33511, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33521, + "length": 14, + "value": "\"codec_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33623, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33660, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33716, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33726, + "length": 19, + "value": "\"total_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33756, + "length": 13, + "value": "\"packetsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33836, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33871, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33925, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33935, + "length": 19, + "value": "\"delta_packets_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 33965, + "length": 18, + "value": "\"deltaPacketsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34051, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34086, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34140, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34150, + "length": 18, + "value": "\"total_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34179, + "length": 12, + "value": "\"KBytesSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34259, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34294, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34348, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34358, + "length": 18, + "value": "\"delta_KBytes_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34387, + "length": 17, + "value": "\"deltaKBytesSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34472, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34507, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34561, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34571, + "length": 15, + "value": "\"delta_kbs_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34597, + "length": 9, + "value": "\"kbsSent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34674, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34709, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34763, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34773, + "length": 10, + "value": "\"size_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34863, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34898, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34952, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 34962, + "length": 16, + "value": "\"limitation_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35060, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35095, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35149, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35159, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35271, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35306, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35360, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35370, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35493, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35528, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35582, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35592, + "length": 17, + "value": "\"media_source_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 35722, + "length": 7, + "value": "\"codec\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Array", + "offset": 35769, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36093, + "length": 13, + "value": "\"codec_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36175, + "length": 14, + "value": "\"codec_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36400, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36423, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36434, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36470, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36535, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36545, + "length": 10, + "value": "\"codec_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36743, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36766, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36777, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36813, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36878, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 36888, + "length": 11, + "value": "\"codec_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37340, + "length": 13, + "value": "\"codec_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37422, + "length": 14, + "value": "\"codec_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37647, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37670, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37681, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37717, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37782, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37792, + "length": 10, + "value": "\"codec_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 37990, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 38013, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 38024, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 38060, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 38125, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 38135, + "length": 11, + "value": "\"codec_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 38323, + "length": 20, + "value": "\"remote-inbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 38445, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 38638, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39237, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39271, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39324, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39334, + "length": 18, + "value": "\"delta_rtt_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39359, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39424, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39458, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39511, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39521, + "length": 21, + "value": "\"delta_jitter_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39609, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39643, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39696, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39706, + "length": 15, + "value": "\"timestamp_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39816, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39850, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39903, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39913, + "length": 24, + "value": "\"total_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 39947, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40020, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40054, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40107, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40117, + "length": 24, + "value": "\"delta_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40151, + "length": 18, + "value": "\"deltaPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40229, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40263, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40316, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40326, + "length": 26, + "value": "\"percent_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40362, + "length": 14, + "value": "\"fractionLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 40486, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41085, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41119, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41172, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41182, + "length": 18, + "value": "\"delta_rtt_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41207, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41272, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41306, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41359, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41369, + "length": 21, + "value": "\"delta_jitter_ms_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41457, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41491, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41544, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41554, + "length": 15, + "value": "\"timestamp_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41664, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41698, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41751, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41761, + "length": 24, + "value": "\"total_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41795, + "length": 13, + "value": "\"packetsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41868, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41902, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41955, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41965, + "length": 24, + "value": "\"delta_packets_lost_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 41999, + "length": 18, + "value": "\"deltaPacketsLost\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42080, + "length": 21, + "value": "\"remote-outbound-rtp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "IntegerLiteral", + "offset": 42203, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42397, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42665, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42699, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42752, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42762, + "length": 17, + "value": "\"delta_rtt_ms_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42786, + "length": 5, + "value": "\"rtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42851, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42885, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42938, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 42948, + "length": 14, + "value": "\"timestamp_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43065, + "length": 14, + "value": "\"media-source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Array", + "offset": 43119, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 43319, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 43402, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43436, + "length": 17, + "value": "\"media_source_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43598, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43621, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43643, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43667, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43720, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 43730, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 44005, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 44088, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44135, + "length": 17, + "value": "\"media_source_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44297, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44320, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44342, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44366, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44419, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44429, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44539, + "length": 7, + "value": "\"track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Array", + "offset": 44586, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 44787, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 44870, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44917, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 44964, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45081, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45124, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45209, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45232, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45251, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45279, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45336, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45346, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45440, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45526, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45549, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45568, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45596, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45653, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 45663, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 45973, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Dictionary", + "offset": 46056, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46103, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46150, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46267, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46310, + "length": 10, + "value": "\"track_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46395, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46418, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46437, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46465, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46522, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46532, + "length": 13, + "value": "\"track_id_in\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46626, + "length": 11, + "value": "\"track_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46712, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46735, + "length": 6, + "value": "\"ssrc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46754, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46782, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46839, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "StringLiteral", + "offset": 46849, + "length": 14, + "value": "\"track_id_out\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Extractor.swift", + "kind": "Array", + "offset": 47026, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "Array", + "offset": 9025, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "StringLiteral", + "offset": 9360, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "StringLiteral", + "offset": 9542, + "length": 12, + "value": "\".FieldMask\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "IntegerLiteral", + "offset": 9611, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "StringLiteral", + "offset": 9627, + "length": 7, + "value": "\"paths\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "IntegerLiteral", + "offset": 10049, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "IntegerLiteral", + "offset": 10326, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "BooleanLiteral", + "offset": 10526, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "BooleanLiteral", + "offset": 10587, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/field_mask.pb.swift", + "kind": "BooleanLiteral", + "offset": 10605, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTag.swift", + "kind": "IntegerLiteral", + "offset": 1267, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTag.swift", + "kind": "IntegerLiteral", + "offset": 1660, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTag.swift", + "kind": "IntegerLiteral", + "offset": 2198, + "length": 4, + "value": "0x07" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTag.swift", + "kind": "IntegerLiteral", + "offset": 2206, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTag.swift", + "kind": "IntegerLiteral", + "offset": 2261, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTag.swift", + "kind": "IntegerLiteral", + "offset": 2520, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "FloatLiteral", + "offset": 3383, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "FloatLiteral", + "offset": 4531, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 5692, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 6847, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 8005, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 9169, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 10330, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 11492, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 12657, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 13827, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 14997, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "IntegerLiteral", + "offset": 16172, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "BooleanLiteral", + "offset": 17337, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "BooleanLiteral", + "offset": 18506, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "BooleanLiteral", + "offset": 19614, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/FieldTypes.swift", + "kind": "BooleanLiteral", + "offset": 20699, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/FilteredExemplarReservoir.swift", + "kind": "StringLiteral", + "offset": 118, + "length": 25, + "value": "\"VideoSDKRTC.FilteredExemplarReservoir\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Extensions.swift", + "kind": "StringLiteral", + "offset": 749, + "length": 21, + "value": "\"type.googleapis.com\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Extensions.swift", + "kind": "BooleanLiteral", + "offset": 1788, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3036, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Extensions.swift", + "kind": "StringLiteral", + "offset": 5272, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 743, + "length": 33, + "value": "\"org.swift.protobuf.typeRegistry\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 1107, + "length": 3, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 1140, + "length": 3, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 1526, + "length": 3, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 1763, + "length": 21, + "value": "\"google.protobuf.Any\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 1814, + "length": 27, + "value": "\"google.protobuf.BoolValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 1877, + "length": 28, + "value": "\"google.protobuf.BytesValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 1942, + "length": 29, + "value": "\"google.protobuf.DoubleValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2009, + "length": 26, + "value": "\"google.protobuf.Duration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2070, + "length": 23, + "value": "\"google.protobuf.Empty\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2125, + "length": 27, + "value": "\"google.protobuf.FieldMask\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2188, + "length": 28, + "value": "\"google.protobuf.FloatValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2253, + "length": 28, + "value": "\"google.protobuf.Int32Value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2318, + "length": 28, + "value": "\"google.protobuf.Int64Value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2383, + "length": 27, + "value": "\"google.protobuf.ListValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2446, + "length": 29, + "value": "\"google.protobuf.StringValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2513, + "length": 24, + "value": "\"google.protobuf.Struct\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2570, + "length": 27, + "value": "\"google.protobuf.Timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2633, + "length": 29, + "value": "\"google.protobuf.UInt32Value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2700, + "length": 29, + "value": "\"google.protobuf.UInt64Value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "StringLiteral", + "offset": 2767, + "length": 23, + "value": "\"google.protobuf.Value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "BooleanLiteral", + "offset": 4291, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Any+Registry.swift", + "kind": "BooleanLiteral", + "offset": 4764, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 771, + "length": 12, + "value": "315576000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 901, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 917, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 996, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "BooleanLiteral", + "offset": 1017, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1078, + "length": 3, + "value": "\"-\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1149, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "BooleanLiteral", + "offset": 1253, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1267, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1277, + "length": 3, + "value": "\"2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1282, + "length": 3, + "value": "\"3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1287, + "length": 3, + "value": "\"4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1292, + "length": 3, + "value": "\"5\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 3, + "value": "\"6\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1302, + "length": 3, + "value": "\"7\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1307, + "length": 3, + "value": "\"8\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1312, + "length": 3, + "value": "\"9\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1360, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1371, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1735, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1746, + "length": 3, + "value": "\"s\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1857, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 1896, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1926, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1965, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2023, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2900, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3297, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3310, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 3325, + "length": 19, + "value": "\"-0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 3342, + "length": 1, + "value": "\"s\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 3358, + "length": 27, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 3369, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 3383, + "length": 1, + "value": "\"s\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3672, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3690, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 4158, + "length": 18, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "StringLiteral", + "offset": 4173, + "length": 1, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5958, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5967, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 6004, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 6022, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 6031, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Duration+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 6068, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1154, + "length": 4, + "value": "0x20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1167, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "BooleanLiteral", + "offset": 1187, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "BooleanLiteral", + "offset": 1212, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1438, + "length": 3, + "value": "\"_\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1519, + "length": 3, + "value": "\"a\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1525, + "length": 3, + "value": "\"z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1685, + "length": 3, + "value": "\"A\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1691, + "length": 3, + "value": "\"Z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1722, + "length": 3, + "value": "\"a\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1728, + "length": 3, + "value": "\"z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1732, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1738, + "length": 3, + "value": "\"9\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1742, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1746, + "length": 3, + "value": "\"(\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 1750, + "length": 3, + "value": "\")\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2125, + "length": 3, + "value": "\"_\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2156, + "length": 3, + "value": "\"A\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2162, + "length": 3, + "value": "\"Z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2195, + "length": 3, + "value": "\"_\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2252, + "length": 3, + "value": "\"a\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2258, + "length": 3, + "value": "\"z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2262, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2268, + "length": 3, + "value": "\"9\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2272, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2276, + "length": 3, + "value": "\"(\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2280, + "length": 3, + "value": "\")\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "Array", + "offset": 2633, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2661, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 2758, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2790, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2995, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3060, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3095, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 5655, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 5690, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_FieldMask+Extensions.swift", + "kind": "StringLiteral", + "offset": 5697, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_ListValue+Extensions.swift", + "kind": "StringLiteral", + "offset": 1283, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_ListValue+Extensions.swift", + "kind": "StringLiteral", + "offset": 1322, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_ListValue+Extensions.swift", + "kind": "StringLiteral", + "offset": 1480, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_ListValue+Extensions.swift", + "kind": "StringLiteral", + "offset": 1519, + "length": 3, + "value": "\"]\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_ListValue+Extensions.swift", + "kind": "BooleanLiteral", + "offset": 2036, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_NullValue+Extensions.swift", + "kind": "StringLiteral", + "offset": 766, + "length": 6, + "value": "\"null\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Struct+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1458, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Struct+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1531, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Struct+Extensions.swift", + "kind": "BooleanLiteral", + "offset": 1829, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 697, + "length": 12, + "value": "-62135596800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 776, + "length": 12, + "value": "253402300799" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1308, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1465, + "length": 2, + "value": "48" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1486, + "length": 2, + "value": "57" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1507, + "length": 2, + "value": "45" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1529, + "length": 2, + "value": "58" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1550, + "length": 2, + "value": "43" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1574, + "length": 2, + "value": "84" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1598, + "length": 2, + "value": "90" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1621, + "length": 2, + "value": "46" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1839, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 1853, + "length": 3, + "value": "528" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2213, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2229, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2244, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2258, + "length": 5, + "value": "53328" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2339, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2349, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2359, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2369, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2384, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2409, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2426, + "length": 4, + "value": "9999" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2558, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2568, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2583, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2609, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2627, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2754, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2764, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2779, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2808, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2825, + "length": 2, + "value": "31" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2953, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2964, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 2980, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3007, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3139, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3150, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3166, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3195, + "length": 2, + "value": "59" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3345, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3356, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3379, + "length": 2, + "value": "61" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "Array", + "offset": 3769, + "length": 55, + "value": "[0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3862, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3889, + "length": 3, + "value": "400" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3896, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3911, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3918, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3932, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3937, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3965, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 3982, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4011, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4122, + "length": 3, + "value": "365" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4142, + "length": 6, + "value": "719527" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4184, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4189, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4226, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4231, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4270, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4275, + "length": 3, + "value": "400" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4343, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4384, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4481, + "length": 5, + "value": "86400" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4558, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4583, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4657, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4680, + "length": 9, + "value": "100000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4839, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4855, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 4891, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5080, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5201, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5217, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5271, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5287, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5315, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5341, + "length": 2, + "value": "59" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5360, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5529, + "length": 4, + "value": "3600" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5581, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5642, + "length": 4, + "value": "3600" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5694, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5867, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 5957, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6540, + "length": 50, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6557, + "length": 1, + "value": "\"-\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6573, + "length": 1, + "value": "\"-\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6589, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6610, + "length": 49, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6626, + "length": 1, + "value": "\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6642, + "length": 1, + "value": "\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6658, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6752, + "length": 44, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6766, + "length": 1, + "value": "\"T\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6780, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 6794, + "length": 1, + "value": "\"Z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 7085, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "IntegerLiteral", + "offset": 7103, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 7572, + "length": 18, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Timestamp+Extensions.swift", + "kind": "StringLiteral", + "offset": 7587, + "length": 1, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Value+Extensions.swift", + "kind": "StringLiteral", + "offset": 2826, + "length": 3, + "value": "\"n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Value+Extensions.swift", + "kind": "StringLiteral", + "offset": 2971, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Value+Extensions.swift", + "kind": "StringLiteral", + "offset": 3093, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Value+Extensions.swift", + "kind": "StringLiteral", + "offset": 3214, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Value+Extensions.swift", + "kind": "StringLiteral", + "offset": 3219, + "length": 3, + "value": "\"f\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Value+Extensions.swift", + "kind": "StringLiteral", + "offset": 3305, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Wrappers+Extensions.swift", + "kind": "StringLiteral", + "offset": 3726, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Wrappers+Extensions.swift", + "kind": "StringLiteral", + "offset": 3743, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Wrappers+Extensions.swift", + "kind": "StringLiteral", + "offset": 4344, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Wrappers+Extensions.swift", + "kind": "StringLiteral", + "offset": 4361, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Wrappers+Extensions.swift", + "kind": "StringLiteral", + "offset": 5858, + "length": 6, + "value": "\"true\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Google_Protobuf_Wrappers+Extensions.swift", + "kind": "StringLiteral", + "offset": 5867, + "length": 7, + "value": "\"false\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/HashVisitor.swift", + "kind": "IntegerLiteral", + "offset": 660, + "length": 10, + "value": "2166136261" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/HashVisitor.swift", + "kind": "IntegerLiteral", + "offset": 701, + "length": 8, + "value": "16777619" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/Headers.swift", + "kind": "StringLiteral", + "offset": 512, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/Headers.swift", + "kind": "IntegerLiteral", + "offset": 566, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/Headers.swift", + "kind": "StringLiteral", + "offset": 604, + "length": 37, + "value": "\"OTel-OTLP-Exporter-Swift\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/Headers.swift", + "kind": "StringLiteral", + "offset": 640, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 305, + "length": 3, + "value": "180" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 329, + "length": 3, + "value": "180" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 346, + "length": 3, + "value": "180" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 352, + "length": 3, + "value": "360" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 376, + "length": 3, + "value": "360" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 393, + "length": 3, + "value": "360" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 399, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 423, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 440, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 446, + "length": 4, + "value": "1080" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 471, + "length": 4, + "value": "1080" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 489, + "length": 4, + "value": "1080" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 496, + "length": 4, + "value": "1440" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 521, + "length": 4, + "value": "1440" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 560, + "length": 4, + "value": "1440" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 585, + "length": 4, + "value": "2160" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 626, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "BooleanLiteral", + "offset": 793, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 1207, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "StringLiteral", + "offset": 1268, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "StringLiteral", + "offset": 1290, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "StringLiteral", + "offset": 1296, + "length": 7, + "value": "\"track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "StringLiteral", + "offset": 1350, + "length": 13, + "value": "\"frameHeight\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 1376, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "StringLiteral", + "offset": 1420, + "length": 12, + "value": "\"frameWidth\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Helper.swift", + "kind": "IntegerLiteral", + "offset": 1445, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "Array", + "offset": 488, + "length": 119, + "value": "[5, 10, 25, 50, 75, 100, 250, 500, 750, 1000, 2500, 5000, 7500, 10000]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 758, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1310, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1386, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1518, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1701, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "StringLiteral", + "offset": 209, + "length": 19, + "value": "\"VideoSDKRTC.HistogramAggregator\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 3385, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 3403, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 3498, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/HistogramAggregator.swift", + "kind": "IntegerLiteral", + "offset": 3527, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/HistogramExemplarReservoir.swift", + "kind": "IntegerLiteral", + "offset": 283, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/HistogramExemplarReservoir.swift", + "kind": "StringLiteral", + "offset": 118, + "length": 26, + "value": "\"VideoSDKRTC.HistogramExemplarReservoir\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/Internal\/HistogramPointData.swift", + "kind": "StringLiteral", + "offset": 117, + "length": 18, + "value": "\"VideoSDKRTC.HistogramPointData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 749, + "length": 8, + "value": "\"layout\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 788, + "length": 7, + "value": "\"theme\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 825, + "length": 6, + "value": "\"mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 860, + "length": 9, + "value": "\"quality\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 901, + "length": 13, + "value": "\"orientation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1602, + "length": 8, + "value": "\"layout\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1641, + "length": 7, + "value": "\"theme\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 6, + "value": "\"mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1713, + "length": 9, + "value": "\"quality\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1754, + "length": 13, + "value": "\"orientation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1875, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1918, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 1960, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2123, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2174, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2223, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2310, + "length": 15, + "value": "\"downstreamUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2359, + "length": 16, + "value": "\"playbackHlsUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2410, + "length": 15, + "value": "\"livestreamUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "IntegerLiteral", + "offset": 2633, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2904, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2939, + "length": 10, + "value": "\"priority\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 2982, + "length": 10, + "value": "\"gridSize\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3084, + "length": 9, + "value": "\"SPEAKER\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3101, + "length": 5, + "value": "\"PIN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3084, + "length": 9, + "value": "\"SPEAKER\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3101, + "length": 5, + "value": "\"PIN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3165, + "length": 6, + "value": "\"GRID\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3185, + "length": 11, + "value": "\"SPOTLIGHT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3208, + "length": 9, + "value": "\"SIDEBAR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3165, + "length": 6, + "value": "\"GRID\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3185, + "length": 11, + "value": "\"SPOTLIGHT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3208, + "length": 9, + "value": "\"SIDEBAR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3274, + "length": 9, + "value": "\"DEFAULT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3293, + "length": 7, + "value": "\"LIGHT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3309, + "length": 6, + "value": "\"DARK\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3274, + "length": 9, + "value": "\"DEFAULT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3293, + "length": 7, + "value": "\"LIGHT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3309, + "length": 6, + "value": "\"DARK\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3379, + "length": 17, + "value": "\"video-and-audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3406, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3379, + "length": 17, + "value": "\"video-and-audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3406, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3469, + "length": 6, + "value": "\"high\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3469, + "length": 6, + "value": "\"high\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3550, + "length": 11, + "value": "\"landscape\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/HLSConfig.swift", + "kind": "StringLiteral", + "offset": 3550, + "length": 11, + "value": "\"landscape\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Export\/InMemoryLogRecordExporter.swift", + "kind": "BooleanLiteral", + "offset": 253, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/Export\/InMemoryLogRecordExporter.swift", + "kind": "BooleanLiteral", + "offset": 689, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Common\/InstrumentationLibraryInfo.swift", + "kind": "StringLiteral", + "offset": 353, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/InstrumentSelectorBuilder.swift", + "kind": "StringLiteral", + "offset": 221, + "length": 4, + "value": "\".*\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Internal.swift", + "kind": "BooleanLiteral", + "offset": 1493, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Internal.swift", + "kind": "BooleanLiteral", + "offset": 1524, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Internal.swift", + "kind": "BooleanLiteral", + "offset": 1855, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Internal.swift", + "kind": "BooleanLiteral", + "offset": 1886, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSBroadcastScreenCapturer.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 10, + "value": "\"rtc_SSFD\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSBroadcastScreenCapturer.swift", + "kind": "StringLiteral", + "offset": 408, + "length": 23, + "value": "\"RTCAppGroupIdentifier\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSBroadcastScreenCapturer.swift", + "kind": "StringLiteral", + "offset": 476, + "length": 27, + "value": "\"RTCScreenSharingExtension\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSBroadcastScreenCapturer.swift", + "kind": "BooleanLiteral", + "offset": 774, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSBroadcastScreenCapturer.swift", + "kind": "BooleanLiteral", + "offset": 1705, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSBroadcastScreenCapturer.swift", + "kind": "BooleanLiteral", + "offset": 1869, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 610, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 805, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 839, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 866, + "length": 31, + "value": "\"DEBUG::failure: create socket\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 979, + "length": 31, + "value": "\"DEBUG::open socket connection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 1045, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 1075, + "length": 34, + "value": "\"DEBUG::failed setting up address\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 1131, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 1178, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 1209, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 1314, + "length": 37, + "value": "\"DEBUG::failure: socket file missing\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 1372, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 1430, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 1437, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 1464, + "length": 52, + "value": "\"DEBUG::failure: socket failed listening connection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 1537, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 1795, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 1826, + "length": 52, + "value": "\"DEBUG::failure: socket failed accepting connection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 2071, + "length": 21, + "value": "\"DEBUG::streams open\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 2200, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 2462, + "length": 30, + "value": "\"DEBUG::closing server socket\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 2713, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 2942, + "length": 37, + "value": "\"DEBUG::failure: fd path is too long\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 3000, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 3301, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 3411, + "length": 29, + "value": "\"DEBUG::failure: no address?\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 3461, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "IntegerLiteral", + "offset": 3600, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 3774, + "length": 27, + "value": "\"DEBUG::failure: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 3800, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 3822, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 3854, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 4636, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 4918, + "length": 26, + "value": "\"DEBUG::streams scheduled\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 4974, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 5057, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 5175, + "length": 24, + "value": "\"DEBUG::streams stopped\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 5271, + "length": 26, + "value": "\"DEBUG::unscheduleStreams\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "BooleanLiteral", + "offset": 5527, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnection.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 25, + "value": "\"VideoSDKRTC.BroadcastSocketConnection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "BooleanLiteral", + "offset": 805, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 901, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 1057, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 1157, + "length": 16, + "value": "\"Content-Length\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 1326, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 1550, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 1981, + "length": 14, + "value": "\"Buffer-Width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 2110, + "length": 15, + "value": "\"Buffer-Height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 2250, + "length": 20, + "value": "\"Buffer-Orientation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "BooleanLiteral", + "offset": 2430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 2895, + "length": 37, + "value": "\"Warning::CVPixelBufferCreate failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "BooleanLiteral", + "offset": 2953, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "BooleanLiteral", + "offset": 3046, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "Array", + "offset": 3221, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "Array", + "offset": 3531, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 3648, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 3653, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 3687, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 5285, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 5414, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 5436, + "length": 40, + "value": "\"DEBUG::error reading bytes from stream\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "IntegerLiteral", + "offset": 5613, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 3560, + "length": 27, + "value": "\"VideoSDKRTC.SocketConnectionFrameReader\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 6720, + "length": 37, + "value": "\"DEBUG::server stream open completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 6893, + "length": 38, + "value": "\"DEBUG::server stream end encountered\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 7006, + "length": 92, + "value": "\"DEBUG::server stream error encountered: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 7094, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/ScreenShare\/iOSSocketConnectionFrameReader.swift", + "kind": "StringLiteral", + "offset": 7097, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "StringLiteral", + "offset": 345, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Array", + "offset": 539, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Dictionary", + "offset": 586, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Array", + "offset": 767, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Array", + "offset": 805, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Dictionary", + "offset": 1012, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Array", + "offset": 1270, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "StringLiteral", + "offset": 1313, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Array", + "offset": 1529, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "StringLiteral", + "offset": 1572, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Dictionary", + "offset": 1805, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/JSON+Extension.swift", + "kind": "Array", + "offset": 2025, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 686, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 713, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 1567, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 1822, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 1995, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 2479, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 2782, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 3272, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 3574, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 4342, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 4777, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 5259, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 5561, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 6291, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "IntegerLiteral", + "offset": 6707, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 7193, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 9771, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 10417, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 11228, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 12032, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13409, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15423, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15491, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15712, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 16875, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "StringLiteral", + "offset": 17044, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17123, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17247, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18070, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "StringLiteral", + "offset": 18239, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18318, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18547, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 19451, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "StringLiteral", + "offset": 19620, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 19699, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecoder.swift", + "kind": "BooleanLiteral", + "offset": 19823, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecodingOptions.swift", + "kind": "IntegerLiteral", + "offset": 888, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONDecodingOptions.swift", + "kind": "BooleanLiteral", + "offset": 1166, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 576, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 617, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 658, + "length": 3, + "value": "\"2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 701, + "length": 3, + "value": "\"3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 743, + "length": 3, + "value": "\"4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 785, + "length": 3, + "value": "\"5\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 826, + "length": 3, + "value": "\"6\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 869, + "length": 3, + "value": "\"7\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 912, + "length": 3, + "value": "\"8\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 954, + "length": 3, + "value": "\"9\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 997, + "length": 3, + "value": "\"-\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1039, + "length": 3, + "value": "\"+\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1083, + "length": 3, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1126, + "length": 3, + "value": "\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1169, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1218, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1266, + "length": 4, + "value": "\"\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1317, + "length": 3, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1372, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1428, + "length": 3, + "value": "\"]\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1482, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1537, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1581, + "length": 3, + "value": "\"A\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1625, + "length": 3, + "value": "\"B\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1669, + "length": 3, + "value": "\"C\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1713, + "length": 3, + "value": "\"D\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1757, + "length": 3, + "value": "\"E\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1801, + "length": 3, + "value": "\"F\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1845, + "length": 3, + "value": "\"Z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1889, + "length": 3, + "value": "\"a\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 1933, + "length": 3, + "value": "\"z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 4809, + "length": 5, + "value": "\"\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 5048, + "length": 5, + "value": "\"\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 5125, + "length": 6, + "value": "\"]\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 6403, + "length": 6, + "value": "\"null\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 6665, + "length": 9, + "value": "\"\"NaN\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6735, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 6774, + "length": 15, + "value": "\"\"-Infinity\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 6847, + "length": 14, + "value": "\"\"Infinity\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 7226, + "length": 9, + "value": "\"\"NaN\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7296, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 7335, + "length": 15, + "value": "\"\"-Infinity\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 7408, + "length": 14, + "value": "\"\"Infinity\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7668, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7711, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7771, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7911, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8136, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10365, + "length": 6, + "value": "\"true\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10421, + "length": 7, + "value": "\"false\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 10739, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10761, + "length": 5, + "value": "\"\\b\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 10785, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10807, + "length": 5, + "value": "\"\\t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 10831, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10854, + "length": 5, + "value": "\"\\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 10878, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10901, + "length": 5, + "value": "\"\\f\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 10925, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10948, + "length": 5, + "value": "\"\\r\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 10972, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 10995, + "length": 6, + "value": "\"\\\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11020, + "length": 2, + "value": "92" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 11043, + "length": 6, + "value": "\"\\\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11068, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11072, + "length": 2, + "value": "31" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11076, + "length": 3, + "value": "127" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11082, + "length": 3, + "value": "159" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "StringLiteral", + "offset": 11155, + "length": 7, + "value": "\"\\u00\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11216, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11274, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11297, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11302, + "length": 3, + "value": "126" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11388, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11395, + "length": 5, + "value": "0x7ff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11430, + "length": 4, + "value": "0xc0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11474, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11506, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11549, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11573, + "length": 5, + "value": "0x800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11581, + "length": 6, + "value": "0xffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11617, + "length": 4, + "value": "0xe0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11661, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11694, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11739, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11744, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11779, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11822, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11878, + "length": 4, + "value": "0xf0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11922, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 11955, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12000, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12006, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12041, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12086, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12091, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12126, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12169, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12469, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12599, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12632, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12674, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12701, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12757, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12816, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12822, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12882, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12888, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12948, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 12953, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13011, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13044, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13085, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13139, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13190, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13269, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13323, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13329, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13385, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13391, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13447, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13452, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13506, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13532, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13561, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13614, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13620, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13676, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13682, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13738, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13743, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13814, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13843, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13897, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13903, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13959, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncoder.swift", + "kind": "IntegerLiteral", + "offset": 13965, + "length": 2, + "value": "63" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingOptions.swift", + "kind": "BooleanLiteral", + "offset": 854, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingOptions.swift", + "kind": "BooleanLiteral", + "offset": 979, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingOptions.swift", + "kind": "BooleanLiteral", + "offset": 1143, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4654, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4771, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 10995, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 11172, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 12470, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 12646, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 12727, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 12834, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 13124, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 13299, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 13388, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 13476, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 13739, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 13915, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 14009, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 14097, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 1416, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 1505, + "length": 3, + "value": "\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 1683, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 1922, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 2097, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 2375, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 2755, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 3037, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 4392, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 4680, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 4957, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 5189, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONMapEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 5589, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 570, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 608, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 640, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 676, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 717, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 755, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 799, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 840, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 881, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 924, + "length": 3, + "value": "\"7\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 966, + "length": 3, + "value": "\"9\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1009, + "length": 3, + "value": "\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1053, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1095, + "length": 3, + "value": "\"+\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1138, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1185, + "length": 3, + "value": "\";\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1234, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1284, + "length": 4, + "value": "\"'\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1332, + "length": 4, + "value": "\"\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1383, + "length": 3, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1425, + "length": 3, + "value": "\"#\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1472, + "length": 3, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1520, + "length": 3, + "value": "\"_\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1570, + "length": 3, + "value": "\"?\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1613, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1668, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1724, + "length": 3, + "value": "\"]\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1778, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1833, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 3, + "value": "\"<\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1942, + "length": 3, + "value": "\">\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 1985, + "length": 3, + "value": "\"-\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2029, + "length": 3, + "value": "\"a\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2073, + "length": 3, + "value": "\"A\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2117, + "length": 3, + "value": "\"b\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2161, + "length": 3, + "value": "\"e\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2205, + "length": 3, + "value": "\"E\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2249, + "length": 3, + "value": "\"f\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2293, + "length": 3, + "value": "\"I\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2337, + "length": 3, + "value": "\"l\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2381, + "length": 3, + "value": "\"n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2425, + "length": 3, + "value": "\"N\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2469, + "length": 3, + "value": "\"r\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2513, + "length": 3, + "value": "\"s\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2557, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2601, + "length": 3, + "value": "\"u\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2645, + "length": 3, + "value": "\"z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 2689, + "length": 3, + "value": "\"Z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2782, + "length": 2, + "value": "48" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2793, + "length": 2, + "value": "57" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2820, + "length": 2, + "value": "48" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2848, + "length": 2, + "value": "65" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2852, + "length": 2, + "value": "97" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2863, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2873, + "length": 2, + "value": "66" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2877, + "length": 2, + "value": "98" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2888, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2898, + "length": 2, + "value": "67" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2902, + "length": 2, + "value": "99" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2913, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2923, + "length": 2, + "value": "68" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2927, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2939, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2949, + "length": 2, + "value": "69" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2953, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2965, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2975, + "length": 2, + "value": "70" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2979, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 2991, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "Array", + "offset": 3319, + "length": 1203, + "value": "[-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, 62, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -1, -1, -1, -1, 0, 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, -1, -1, -1, -1, 63, -1, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 5611, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 5645, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 5683, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 6695, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 6804, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 6876, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 6904, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 7333, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 7337, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 7779, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 7799, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 7821, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 7873, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 7920, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 8029, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 8856, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9102, + "length": 2, + "value": "61" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9145, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9524, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9566, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9592, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9614, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9650, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9672, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9708, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9729, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9784, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9810, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9832, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9938, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9955, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 9991, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10009, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10045, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10074, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10090, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10144, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10161, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10197, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10226, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10242, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10296, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 10325, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 11396, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 11407, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 11418, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 11548, + "length": 6, + "value": "0xD800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 11571, + "length": 6, + "value": "0xE000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 11685, + "length": 6, + "value": "0xDC00" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 11984, + "length": 4, + "value": "\"\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 12006, + "length": 3, + "value": "\"u\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12541, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12552, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12563, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12593, + "length": 6, + "value": "0xDC00" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12626, + "length": 6, + "value": "0xE000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12799, + "length": 6, + "value": "0xD800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12843, + "length": 6, + "value": "0xDC00" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12881, + "length": 7, + "value": "0x10000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 12899, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 13426, + "length": 8, + "value": "\"\b\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 13497, + "length": 8, + "value": "\"\f\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 13568, + "length": 8, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 13639, + "length": 8, + "value": "\"\r\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 13710, + "length": 8, + "value": "\"\t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 15463, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 15490, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 15629, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 15839, + "length": 59, + "value": "\"Somehow JSONDecoding unwound more objects than it started\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 19179, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 19212, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 19268, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 19485, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 19495, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 19639, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 21544, + "length": 18, + "value": "0x8000000000000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "FloatLiteral", + "offset": 24047, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 27511, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 28095, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 29619, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 31665, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 33499, + "length": 5, + "value": "\"NaN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 33536, + "length": 5, + "value": "\"Inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 33578, + "length": 6, + "value": "\"-Inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 33622, + "length": 10, + "value": "\"Infinity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 33669, + "length": 11, + "value": "\"-Infinity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 33907, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 35893, + "length": 5, + "value": "\"NaN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 35931, + "length": 5, + "value": "\"Inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 35974, + "length": 6, + "value": "\"-Inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 36019, + "length": 10, + "value": "\"Infinity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 36067, + "length": 11, + "value": "\"-Infinity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 36307, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 39077, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 39172, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 39395, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 39426, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 39770, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 40285, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 40449, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 41013, + "length": 7, + "value": "\"false\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 41029, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 41046, + "length": 6, + "value": "\"true\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 41061, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 42533, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 43354, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "StringLiteral", + "offset": 43422, + "length": 3, + "value": "\"]\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 46421, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 46443, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 48192, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 48204, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 48236, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 48305, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 48696, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 48846, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 48906, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 49814, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 49875, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "IntegerLiteral", + "offset": 49916, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/JSONScanner.swift", + "kind": "BooleanLiteral", + "offset": 50219, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/LabelSetSdk.swift", + "kind": "StringLiteral", + "offset": 469, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/LabelSetSdk.swift", + "kind": "BooleanLiteral", + "offset": 499, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/LabelSetSdk.swift", + "kind": "StringLiteral", + "offset": 526, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/LabelSetSdk.swift", + "kind": "StringLiteral", + "offset": 532, + "length": 1, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/LabelSetSdk.swift", + "kind": "StringLiteral", + "offset": 538, + "length": 22, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/LabelSetSdk.swift", + "kind": "StringLiteral", + "offset": 618, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/LabelSetSdk.swift", + "kind": "BooleanLiteral", + "offset": 688, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LastValueAggregation.swift", + "kind": "IntegerLiteral", + "offset": 621, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LastValueAggregation.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/LastValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 246, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/LastValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 272, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 1592, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 1725, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 1728, + "length": 45, + "value": "\"pthread_mutex_init failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 1772, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 1875, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 1878, + "length": 48, + "value": "\"pthread_mutex_destroy failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 1925, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 2228, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 2231, + "length": 45, + "value": "\"pthread_mutex_lock failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 2275, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 2548, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 2551, + "length": 47, + "value": "\"pthread_mutex_unlock failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 2597, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 3779, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 3914, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 3917, + "length": 46, + "value": "\"pthread_rwlock_init failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 3962, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 4067, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 4070, + "length": 49, + "value": "\"pthread_rwlock_destroy failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 4118, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 4435, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 4438, + "length": 48, + "value": "\"pthread_rwlock_rdlock failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 4485, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 4770, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 4773, + "length": 48, + "value": "\"pthread_rwlock_wrlock failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 4820, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "IntegerLiteral", + "offset": 5095, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 5098, + "length": 48, + "value": "\"pthread_rwlock_unlock failed with error \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Internal\/Locks.swift", + "kind": "StringLiteral", + "offset": 5145, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerBuilderSdk.swift", + "kind": "BooleanLiteral", + "offset": 425, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerProviderBuilder.swift", + "kind": "Array", + "offset": 393, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerProviderSdk.swift", + "kind": "Array", + "offset": 481, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "BooleanLiteral", + "offset": 478, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 817, + "length": 140, + "value": "\"Events cannot be emitted from Logger without an event domain. Use `LoggerBuilder.setEventDomain(_ domain: String) when obtaining a Logger.\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1049, + "length": 8, + "value": "\"unused\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1074, + "length": 8, + "value": "\"unused\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1099, + "length": 14, + "value": "\"event.domain\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1137, + "length": 8, + "value": "\"unused\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1148, + "length": 12, + "value": "\"event.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1219, + "length": 8, + "value": "\"unused\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "BooleanLiteral", + "offset": 1364, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1385, + "length": 14, + "value": "\"event.domain\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "StringLiteral", + "offset": 1583, + "length": 12, + "value": "\"event.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "BooleanLiteral", + "offset": 1820, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSdk.swift", + "kind": "BooleanLiteral", + "offset": 2341, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSharedState.swift", + "kind": "BooleanLiteral", + "offset": 291, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 587, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 790, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 849, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 1208, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 1413, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LoggerSharedState.swift", + "kind": "BooleanLiteral", + "offset": 1587, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LogLimits.swift", + "kind": "IntegerLiteral", + "offset": 180, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Logs\/LogRecordBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 1809, + "length": 12, + "value": "\"event.data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2287, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2319, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2345, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2372, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2399, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2426, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2452, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2479, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2506, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2533, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2558, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2585, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2612, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2639, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2665, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2692, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2719, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2746, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2773, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2801, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2829, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2857, + "length": 2, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2884, + "length": 2, + "value": "22" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2912, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 2940, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3091, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3117, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3144, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3171, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3198, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3224, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3251, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3278, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3305, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3330, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3356, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3383, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3410, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3436, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3463, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3490, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3517, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3544, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3572, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3600, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3628, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3655, + "length": 2, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3683, + "length": 2, + "value": "22" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3711, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 3739, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 5136, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 5165, + "length": 3, + "value": "255" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 5322, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 5357, + "length": 3, + "value": "255" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "Array", + "offset": 6816, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "Array", + "offset": 7866, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "Array", + "offset": 9260, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 10147, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 11198, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "Array", + "offset": 12516, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 12566, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 12991, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15008, + "length": 29, + "value": "\"opentelemetry.proto.logs.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15173, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15189, + "length": 29, + "value": "\"SEVERITY_NUMBER_UNSPECIFIED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15225, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15241, + "length": 23, + "value": "\"SEVERITY_NUMBER_TRACE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15271, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15287, + "length": 24, + "value": "\"SEVERITY_NUMBER_TRACE2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15318, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15334, + "length": 24, + "value": "\"SEVERITY_NUMBER_TRACE3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15365, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15381, + "length": 24, + "value": "\"SEVERITY_NUMBER_TRACE4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15412, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15428, + "length": 23, + "value": "\"SEVERITY_NUMBER_DEBUG\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15458, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15474, + "length": 24, + "value": "\"SEVERITY_NUMBER_DEBUG2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15505, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15521, + "length": 24, + "value": "\"SEVERITY_NUMBER_DEBUG3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15552, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15568, + "length": 24, + "value": "\"SEVERITY_NUMBER_DEBUG4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15599, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15615, + "length": 22, + "value": "\"SEVERITY_NUMBER_INFO\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15644, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15661, + "length": 23, + "value": "\"SEVERITY_NUMBER_INFO2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15691, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15708, + "length": 23, + "value": "\"SEVERITY_NUMBER_INFO3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15738, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15755, + "length": 23, + "value": "\"SEVERITY_NUMBER_INFO4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15785, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15802, + "length": 22, + "value": "\"SEVERITY_NUMBER_WARN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15831, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15848, + "length": 23, + "value": "\"SEVERITY_NUMBER_WARN2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15878, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15895, + "length": 23, + "value": "\"SEVERITY_NUMBER_WARN3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15925, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15942, + "length": 23, + "value": "\"SEVERITY_NUMBER_WARN4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 15972, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 15989, + "length": 23, + "value": "\"SEVERITY_NUMBER_ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16019, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16036, + "length": 24, + "value": "\"SEVERITY_NUMBER_ERROR2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16067, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16084, + "length": 24, + "value": "\"SEVERITY_NUMBER_ERROR3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16115, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16132, + "length": 24, + "value": "\"SEVERITY_NUMBER_ERROR4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16163, + "length": 2, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16180, + "length": 23, + "value": "\"SEVERITY_NUMBER_FATAL\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16210, + "length": 2, + "value": "22" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16227, + "length": 24, + "value": "\"SEVERITY_NUMBER_FATAL2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16258, + "length": 2, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16275, + "length": 24, + "value": "\"SEVERITY_NUMBER_FATAL3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16306, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16323, + "length": 24, + "value": "\"SEVERITY_NUMBER_FATAL4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16491, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16507, + "length": 29, + "value": "\"LOG_RECORD_FLAGS_DO_NOT_USE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16543, + "length": 3, + "value": "255" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16561, + "length": 35, + "value": "\"LOG_RECORD_FLAGS_TRACE_FLAGS_MASK\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16783, + "length": 11, + "value": "\".LogsData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 16852, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 16872, + "length": 15, + "value": "\"resource_logs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 17303, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 17604, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 17840, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 17901, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 17919, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 18112, + "length": 15, + "value": "\".ResourceLogs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 18185, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 18201, + "length": 10, + "value": "\"resource\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 18218, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 18238, + "length": 12, + "value": "\"scope_logs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 18257, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 18277, + "length": 12, + "value": "\"schema_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 18705, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 18792, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 18879, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 19458, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 19584, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 19705, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 19943, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 19996, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 20049, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 20110, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 20128, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 20315, + "length": 12, + "value": "\".ScopeLogs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 20385, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 20401, + "length": 7, + "value": "\"scope\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 20415, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 20435, + "length": 13, + "value": "\"log_records\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 20455, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 20475, + "length": 12, + "value": "\"schema_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 20902, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 20986, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 21074, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 21650, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 21778, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 21899, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 22125, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 22180, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 22233, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 22294, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 22312, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22499, + "length": 12, + "value": "\".LogRecord\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22569, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22589, + "length": 16, + "value": "\"time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22612, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22633, + "length": 25, + "value": "\"observed_time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22665, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22685, + "length": 17, + "value": "\"severity_number\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22709, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22729, + "length": 15, + "value": "\"severity_text\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22751, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22767, + "length": 6, + "value": "\"body\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22780, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22796, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22815, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22835, + "length": 26, + "value": "\"dropped_attributes_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22868, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22884, + "length": 7, + "value": "\"flags\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22898, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22918, + "length": 10, + "value": "\"trace_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 22935, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "StringLiteral", + "offset": 22956, + "length": 9, + "value": "\"span_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 23380, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 23470, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 23559, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 23648, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 23731, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 23819, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 23918, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 24001, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 24084, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 24167, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 24682, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 24769, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 24905, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25032, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25142, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25270, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25317, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25413, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25443, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25523, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25639, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25753, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25799, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "IntegerLiteral", + "offset": 25894, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26133, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26208, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26271, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26330, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26375, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26509, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26554, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26603, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26650, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26711, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs.pb.swift", + "kind": "BooleanLiteral", + "offset": 26729, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "Array", + "offset": 2101, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 4474, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 5522, + "length": 39, + "value": "\"opentelemetry.proto.collector.logs.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 5766, + "length": 27, + "value": "\".ExportLogsServiceRequest\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 5851, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 5871, + "length": 15, + "value": "\"resource_logs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 6302, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 6603, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 6891, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 6952, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 6970, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 7186, + "length": 28, + "value": "\".ExportLogsServiceResponse\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 7272, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 7292, + "length": 17, + "value": "\"partial_success\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 7725, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 8317, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8617, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8678, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8696, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 8911, + "length": 27, + "value": "\".ExportLogsPartialSuccess\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 8996, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 9016, + "length": 22, + "value": "\"rejected_log_records\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9045, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "StringLiteral", + "offset": 9065, + "length": 15, + "value": "\"error_message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9496, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9590, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9805, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9896, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 10023, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10323, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10382, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10443, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/logs_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10461, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongCounterMeterBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 418, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongCounterMeterBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 449, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongCounterSdk.swift", + "kind": "IntegerLiteral", + "offset": 646, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongCounterSdk.swift", + "kind": "IntegerLiteral", + "offset": 1352, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongGaugeBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 436, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongGaugeBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 467, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongHistogramMeterSdk.swift", + "kind": "IntegerLiteral", + "offset": 661, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LongLastValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1440, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LongLastValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1693, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LongLastValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1818, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/Internal\/LongPointData.swift", + "kind": "StringLiteral", + "offset": 117, + "length": 13, + "value": "\"VideoSDKRTC.LongPointData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LongSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1588, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LongSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1839, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LongSumAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1961, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/LongSumAggregator.swift", + "kind": "StringLiteral", + "offset": 117, + "length": 17, + "value": "\"VideoSDKRTC.LongSumAggregator\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongUpDownCounterBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 490, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/LongUpDownCounterBuilderSdk.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/MathUtils.swift", + "kind": "IntegerLiteral", + "offset": 999, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/MathUtils.swift", + "kind": "IntegerLiteral", + "offset": 1036, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/MathUtils.swift", + "kind": "IntegerLiteral", + "offset": 1474, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/MathUtils.swift", + "kind": "IntegerLiteral", + "offset": 1493, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/MathUtils.swift", + "kind": "IntegerLiteral", + "offset": 1510, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/MathUtils.swift", + "kind": "IntegerLiteral", + "offset": 1519, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MaxValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 204, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MaxValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 230, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MaxValueAggregator.swift", + "kind": "IntegerLiteral", + "offset": 603, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Measurement.swift", + "kind": "BooleanLiteral", + "offset": 1205, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Measurement.swift", + "kind": "FloatLiteral", + "offset": 1242, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Measurement.swift", + "kind": "BooleanLiteral", + "offset": 1263, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Measurement.swift", + "kind": "BooleanLiteral", + "offset": 1550, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Measurement.swift", + "kind": "IntegerLiteral", + "offset": 1568, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Measurement.swift", + "kind": "BooleanLiteral", + "offset": 1607, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MeasureMinMaxSumCountAggregator.swift", + "kind": "IntegerLiteral", + "offset": 500, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MeasureMinMaxSumCountAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1255, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MeasureMinMaxSumCountAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1311, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MeasureMinMaxSumCountAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1673, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Aggregators\/MeasureMinMaxSumCountAggregator.swift", + "kind": "IntegerLiteral", + "offset": 1691, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 260, + "length": 8, + "value": "\"ARDAMS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 291, + "length": 10, + "value": "\"ARDAMSv0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 324, + "length": 10, + "value": "\"ARDAMSa0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 10, + "value": "\"ARDAMSb0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 260, + "length": 8, + "value": "\"ARDAMS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 291, + "length": 10, + "value": "\"ARDAMSv0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 324, + "length": 10, + "value": "\"ARDAMSa0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 10, + "value": "\"ARDAMSb0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 1125, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "IntegerLiteral", + "offset": 2552, + "length": 10, + "value": "1000000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 3064, + "length": 9, + "value": "\"started\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 3304, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 3323, + "length": 147, + "value": "\"trackId: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 3358, + "length": 2, + "value": "\" || kind: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 3390, + "length": 2, + "value": "\" || source: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 3426, + "length": 2, + "value": "\" || isEnabled: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 3469, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 3963, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 5757, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 6003, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "IntegerLiteral", + "offset": 6443, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 6618, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "IntegerLiteral", + "offset": 7131, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 7549, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 7755, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 7939, + "length": 59, + "value": "\"Error in PeerConnectionUtils :: stopCapture() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 7997, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 8010, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 9181, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "IntegerLiteral", + "offset": 9201, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 9291, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "IntegerLiteral", + "offset": 9312, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 9405, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "IntegerLiteral", + "offset": 9429, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "IntegerLiteral", + "offset": 9716, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "BooleanLiteral", + "offset": 9891, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 11045, + "length": 12, + "value": "\"authorised\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "StringLiteral", + "offset": 12309, + "length": 12, + "value": "\"authorised\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "kind": "Array", + "offset": 13053, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "IntegerLiteral", + "offset": 1179, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "StringLiteral", + "offset": 1190, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "BooleanLiteral", + "offset": 1211, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "BooleanLiteral", + "offset": 1221, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "StringLiteral", + "offset": 1492, + "length": 43, + "value": "\"Error in Stream() :: producer \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "StringLiteral", + "offset": 1534, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "StringLiteral", + "offset": 1547, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "BooleanLiteral", + "offset": 1622, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "StringLiteral", + "offset": 2118, + "length": 43, + "value": "\"Error in Stream() :: consumer \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "StringLiteral", + "offset": 2160, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "kind": "StringLiteral", + "offset": 2173, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "Dictionary", + "offset": 600, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "Dictionary", + "offset": 753, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 1578, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 1764, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 1800, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 2314, + "length": 7, + "value": "\"Guest\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 2408, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 2526, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 2564, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 2607, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "IntegerLiteral", + "offset": 7728, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "IntegerLiteral", + "offset": 7734, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "IntegerLiteral", + "offset": 7744, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "IntegerLiteral", + "offset": 7755, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 7887, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 7964, + "length": 27, + "value": "\"RTCScreenSharingExtension\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 8362, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 8513, + "length": 35, + "value": "\"videosdk.flutter.startScreenShare\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 8600, + "length": 34, + "value": "\"videosdk.flutter.stopScreenShare\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 10429, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 11162, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "Dictionary", + "offset": 14314, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 14378, + "length": 13, + "value": "\"multiStream\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 14428, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 14457, + "length": 13, + "value": "\"customTrack\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 14543, + "length": 13, + "value": "\"customTrack\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 14560, + "length": 26, + "value": "\"Not Specify Custom Track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 14706, + "length": 46, + "value": "\"startVideo() Calling With Custom Video Track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 14755, + "length": 49, + "value": "\"startVideo() Calling Without Custom Video Track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "StringLiteral", + "offset": 15834, + "length": 26, + "value": "\"Enable Webcam Successful\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 22445, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 22477, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 22588, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 22620, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 22824, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 22865, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 23174, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 23212, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "kind": "BooleanLiteral", + "offset": 23299, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 203, + "length": 12, + "value": "\"CONNECTING\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 203, + "length": 12, + "value": "\"CONNECTING\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 336, + "length": 12, + "value": "\"CONFERENCE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 336, + "length": 12, + "value": "\"CONFERENCE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 470, + "length": 4, + "value": "4000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 502, + "length": 4, + "value": "4001" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 4, + "value": "4002" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 567, + "length": 4, + "value": "4003" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 606, + "length": 4, + "value": "4004" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 644, + "length": 4, + "value": "4005" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 680, + "length": 4, + "value": "4006" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 717, + "length": 4, + "value": "4007" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 753, + "length": 4, + "value": "4008" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 792, + "length": 4, + "value": "4009" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 4, + "value": "4010" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 867, + "length": 4, + "value": "4011" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 905, + "length": 4, + "value": "4012" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 945, + "length": 4, + "value": "4013" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 984, + "length": 4, + "value": "4014" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1026, + "length": 4, + "value": "4015" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1059, + "length": 4, + "value": "4016" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1091, + "length": 4, + "value": "4017" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1155, + "length": 4, + "value": "5001" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1189, + "length": 4, + "value": "5002" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1216, + "length": 4, + "value": "5003" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1273, + "length": 4, + "value": "3011" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1311, + "length": 4, + "value": "3012" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1351, + "length": 4, + "value": "3013" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1407, + "length": 4, + "value": "3014" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1463, + "length": 4, + "value": "3015" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1521, + "length": 4, + "value": "3016" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 470, + "length": 4, + "value": "4000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 502, + "length": 4, + "value": "4001" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 4, + "value": "4002" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 567, + "length": 4, + "value": "4003" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 606, + "length": 4, + "value": "4004" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 644, + "length": 4, + "value": "4005" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 680, + "length": 4, + "value": "4006" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 717, + "length": 4, + "value": "4007" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 753, + "length": 4, + "value": "4008" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 792, + "length": 4, + "value": "4009" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 4, + "value": "4010" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 867, + "length": 4, + "value": "4011" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 905, + "length": 4, + "value": "4012" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 945, + "length": 4, + "value": "4013" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 984, + "length": 4, + "value": "4014" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1026, + "length": 4, + "value": "4015" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1059, + "length": 4, + "value": "4016" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1091, + "length": 4, + "value": "4017" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1155, + "length": 4, + "value": "5001" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1189, + "length": 4, + "value": "5002" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1216, + "length": 4, + "value": "5003" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1273, + "length": 4, + "value": "3011" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1311, + "length": 4, + "value": "3012" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1351, + "length": 4, + "value": "3013" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1407, + "length": 4, + "value": "3014" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1463, + "length": 4, + "value": "3015" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1521, + "length": 4, + "value": "3016" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 470, + "length": 4, + "value": "4000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 502, + "length": 4, + "value": "4001" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 4, + "value": "4002" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 567, + "length": 4, + "value": "4003" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 606, + "length": 4, + "value": "4004" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 644, + "length": 4, + "value": "4005" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 680, + "length": 4, + "value": "4006" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 717, + "length": 4, + "value": "4007" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 753, + "length": 4, + "value": "4008" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 792, + "length": 4, + "value": "4009" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 4, + "value": "4010" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 867, + "length": 4, + "value": "4011" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 905, + "length": 4, + "value": "4012" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 945, + "length": 4, + "value": "4013" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 984, + "length": 4, + "value": "4014" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1026, + "length": 4, + "value": "4015" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1059, + "length": 4, + "value": "4016" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1091, + "length": 4, + "value": "4017" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1155, + "length": 4, + "value": "5001" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1189, + "length": 4, + "value": "5002" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1216, + "length": 4, + "value": "5003" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1273, + "length": 4, + "value": "3011" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1311, + "length": 4, + "value": "3012" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1351, + "length": 4, + "value": "3013" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1407, + "length": 4, + "value": "3014" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1463, + "length": 4, + "value": "3015" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "IntegerLiteral", + "offset": 1521, + "length": 4, + "value": "3016" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 1610, + "length": 13, + "value": "\"HLS_STARTED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 1610, + "length": 13, + "value": "\"HLS_STARTED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 1780, + "length": 19, + "value": "\"RECORDING_STARTED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 1780, + "length": 19, + "value": "\"RECORDING_STARTED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 1963, + "length": 20, + "value": "\"LIVESTREAM_STARTED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/MeetingStateEnum.swift", + "kind": "StringLiteral", + "offset": 1963, + "length": 20, + "value": "\"LIVESTREAM_STARTED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message.swift", + "kind": "BooleanLiteral", + "offset": 5374, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message.swift", + "kind": "BooleanLiteral", + "offset": 7865, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions.swift", + "kind": "BooleanLiteral", + "offset": 1359, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions.swift", + "kind": "IntegerLiteral", + "offset": 1964, + "length": 10, + "value": "0x7fffffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions.swift", + "kind": "IntegerLiteral", + "offset": 2062, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions.swift", + "kind": "IntegerLiteral", + "offset": 2223, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions.swift", + "kind": "BooleanLiteral", + "offset": 4172, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions.swift", + "kind": "BooleanLiteral", + "offset": 5547, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions.swift", + "kind": "IntegerLiteral", + "offset": 6368, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions_Data.swift", + "kind": "BooleanLiteral", + "offset": 1579, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions_Data.swift", + "kind": "BooleanLiteral", + "offset": 2888, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+BinaryAdditions_Data.swift", + "kind": "BooleanLiteral", + "offset": 3669, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+JSONAdditions.swift", + "kind": "IntegerLiteral", + "offset": 5136, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+JSONArrayAdditions.swift", + "kind": "IntegerLiteral", + "offset": 5679, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Message+TextFormatAdditions.swift", + "kind": "IntegerLiteral", + "offset": 3106, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/Meter.swift", + "kind": "BooleanLiteral", + "offset": 5781, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/Meter.swift", + "kind": "BooleanLiteral", + "offset": 5967, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/Meter.swift", + "kind": "BooleanLiteral", + "offset": 6143, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/Meter.swift", + "kind": "BooleanLiteral", + "offset": 6328, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/Meter.swift", + "kind": "BooleanLiteral", + "offset": 6551, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Metrics\/Meter.swift", + "kind": "BooleanLiteral", + "offset": 6806, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/MeterProviderSdk.swift", + "kind": "IntegerLiteral", + "offset": 314, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/MeterProviderSdk.swift", + "kind": "BooleanLiteral", + "offset": 1365, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/MeterProviderSdk.swift", + "kind": "StringLiteral", + "offset": 3164, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/MeterProviderSdk.swift", + "kind": "StringLiteral", + "offset": 3227, + "length": 9, + "value": "\"version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "BooleanLiteral", + "offset": 1070, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "BooleanLiteral", + "offset": 2582, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 5541, + "length": 102, + "value": "\"Expected [SumData] type for doubleGauge aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 5642, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 6077, + "length": 96, + "value": "\"Expected [SumData] type for intGauge aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 6172, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 6609, + "length": 100, + "value": "\"Expected [SumData] type for doubleSum aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 6708, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 7155, + "length": 108, + "value": "\"Expected [SummaryData] type for doubleSummary aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 7262, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 7695, + "length": 94, + "value": "\"Expected [SumData] type for intSum aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 7788, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 8229, + "length": 102, + "value": "\"Expected [SummaryData] type for intSummary aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 8330, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 8785, + "length": 112, + "value": "\"Expected [HistogramData] type for doubleHistogram aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 8896, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 9345, + "length": 106, + "value": "\"Expected [HistogramData] type for intHistogram aggregationType, but instead found \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/Metric.swift", + "kind": "StringLiteral", + "offset": 9450, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 5449, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 5481, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 5507, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 5661, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 5687, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 5718, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 7157, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 7186, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 7346, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 7386, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 8880, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 9948, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 11396, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 20583, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 21098, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 21449, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 21996, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 22856, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 23999, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 24778, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 25030, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 25237, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 25568, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 25718, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 25941, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 26095, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 28415, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 28667, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 28874, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 29092, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 29672, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 30316, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 31009, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 31188, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 31342, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 31456, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 31847, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 33241, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 33493, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 33700, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 33953, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 34533, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 35511, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 35998, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 37309, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 37487, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 37602, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 37993, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 38682, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 39235, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 39767, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 40903, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 41155, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 41362, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 41471, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 42025, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 42287, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 42441, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 43238, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 43385, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "Array", + "offset": 44279, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 44486, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 44849, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 44999, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 48542, + "length": 32, + "value": "\"opentelemetry.proto.metrics.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 48719, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 48735, + "length": 37, + "value": "\"AGGREGATION_TEMPORALITY_UNSPECIFIED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 48779, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 48795, + "length": 31, + "value": "\"AGGREGATION_TEMPORALITY_DELTA\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 48833, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 48849, + "length": 36, + "value": "\"AGGREGATION_TEMPORALITY_CUMULATIVE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 49030, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 49046, + "length": 29, + "value": "\"DATA_POINT_FLAGS_DO_NOT_USE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 49082, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 49098, + "length": 41, + "value": "\"DATA_POINT_FLAGS_NO_RECORDED_VALUE_MASK\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 49329, + "length": 14, + "value": "\".MetricsData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 49400, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 49420, + "length": 18, + "value": "\"resource_metrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 49853, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 50162, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 50416, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 50477, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 50495, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 50691, + "length": 18, + "value": "\".ResourceMetrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 50766, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 50782, + "length": 10, + "value": "\"resource\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 50799, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 50819, + "length": 15, + "value": "\"scope_metrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 50841, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 50861, + "length": 12, + "value": "\"schema_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 51288, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 51375, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 51465, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 52043, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 52175, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 52296, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 52546, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 52605, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 52658, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 52719, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 52737, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 52930, + "length": 15, + "value": "\".ScopeMetrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 53002, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 53018, + "length": 7, + "value": "\"scope\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 53032, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 53048, + "length": 9, + "value": "\"metrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 53064, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 53084, + "length": 12, + "value": "\"schema_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 53511, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 53595, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 53680, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 54255, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 54377, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 54498, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 54736, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 54785, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 54838, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 54899, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 54917, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55104, + "length": 9, + "value": "\".Metric\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55170, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55186, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55199, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55215, + "length": 13, + "value": "\"description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55235, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55251, + "length": 6, + "value": "\"unit\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55264, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55280, + "length": 7, + "value": "\"gauge\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55294, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55310, + "length": 5, + "value": "\"sum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55322, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55338, + "length": 11, + "value": "\"histogram\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55356, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55377, + "length": 23, + "value": "\"exponential_histogram\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55407, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 55424, + "length": 9, + "value": "\"summary\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55848, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 55929, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 56019, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 56100, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 56190, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 56259, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 56534, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 56622, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 56691, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 56962, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 57056, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 57125, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 57408, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 57514, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 57583, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 57888, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 57981, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 58050, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 58818, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 58947, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 59058, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 59256, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 59429, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 59614, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 59821, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 60003, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 60254, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 60315, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 60358, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 60401, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 60462, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 60480, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 60666, + "length": 8, + "value": "\".Gauge\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 60731, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 60751, + "length": 13, + "value": "\"data_points\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 61179, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 61473, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 61705, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 61766, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 61784, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 61968, + "length": 6, + "value": "\".Sum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 62031, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 62051, + "length": 13, + "value": "\"data_points\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 62071, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 62091, + "length": 25, + "value": "\"aggregation_temporality\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 62123, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 62143, + "length": 14, + "value": "\"is_monotonic\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 62572, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 62660, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 62757, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 63049, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 63201, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 63237, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 63324, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 63552, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 63631, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 63688, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 63749, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 63767, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 63957, + "length": 12, + "value": "\".Histogram\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 64026, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 64046, + "length": 13, + "value": "\"data_points\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 64066, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 64086, + "length": 25, + "value": "\"aggregation_temporality\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 64526, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 64614, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 64917, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 65069, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 65309, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 65388, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 65449, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 65467, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 65668, + "length": 23, + "value": "\".ExponentialHistogram\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 65748, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 65768, + "length": 13, + "value": "\"data_points\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 65788, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 65808, + "length": 25, + "value": "\"aggregation_temporality\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 66248, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 66336, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 66639, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 66791, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 67053, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 67132, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 67193, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 67211, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 67399, + "length": 10, + "value": "\".Summary\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 67466, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 67486, + "length": 13, + "value": "\"data_points\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 67914, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 68208, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 68444, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 68505, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 68523, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 68719, + "length": 18, + "value": "\".NumberDataPoint\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 68794, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 68810, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 68829, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 68849, + "length": 22, + "value": "\"start_time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 68878, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 68898, + "length": 16, + "value": "\"time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 68921, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 68941, + "length": 11, + "value": "\"as_double\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 68959, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 68979, + "length": 8, + "value": "\"as_int\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 68994, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 69010, + "length": 11, + "value": "\"exemplars\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 69028, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 69044, + "length": 7, + "value": "\"flags\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 69466, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 69561, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 69651, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 69900, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 69987, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 70234, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 70322, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 70824, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 70916, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 70953, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 71040, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 71166, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 71292, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 71417, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 71545, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 71575, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 71654, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 71906, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 71975, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 72034, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 72079, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 72132, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 72177, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 72238, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 72256, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72455, + "length": 21, + "value": "\".HistogramDataPoint\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72533, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72549, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72568, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72588, + "length": 22, + "value": "\"start_time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72617, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72637, + "length": 16, + "value": "\"time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72660, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72676, + "length": 7, + "value": "\"count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72690, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72706, + "length": 5, + "value": "\"sum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72718, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72738, + "length": 15, + "value": "\"bucket_counts\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72760, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72780, + "length": 17, + "value": "\"explicit_bounds\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72804, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72820, + "length": 11, + "value": "\"exemplars\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72838, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72855, + "length": 7, + "value": "\"flags\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72869, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72886, + "length": 5, + "value": "\"min\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 72898, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 72915, + "length": 5, + "value": "\"max\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73335, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73430, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73520, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73603, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73684, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73774, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73865, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 73952, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74040, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74123, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74205, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74707, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74799, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74836, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74923, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 74953, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75033, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75141, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75271, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75400, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75522, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75646, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75676, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75755, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75864, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 75977, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76240, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76309, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76368, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76413, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76456, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76515, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76578, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76631, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76676, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76719, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76762, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76823, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 76841, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77051, + "length": 32, + "value": "\".ExponentialHistogramDataPoint\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77140, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77156, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77175, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77195, + "length": 22, + "value": "\"start_time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77224, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77244, + "length": 16, + "value": "\"time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77267, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77283, + "length": 7, + "value": "\"count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77297, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77313, + "length": 5, + "value": "\"sum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77325, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77341, + "length": 7, + "value": "\"scale\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77355, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77375, + "length": 12, + "value": "\"zero_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77394, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77410, + "length": 10, + "value": "\"positive\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77427, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77443, + "length": 10, + "value": "\"negative\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77460, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77477, + "length": 7, + "value": "\"flags\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77491, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77508, + "length": 11, + "value": "\"exemplars\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77526, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77543, + "length": 5, + "value": "\"min\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77555, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77572, + "length": 5, + "value": "\"max\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 77584, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 77605, + "length": 16, + "value": "\"zero_threshold\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78036, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78124, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78219, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78309, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78392, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78473, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78555, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78642, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78729, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78816, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78899, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 78987, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 79069, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 79151, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 79744, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 79786, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 79878, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 79915, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80002, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80032, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80112, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80220, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80254, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80333, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80367, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80451, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80565, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80683, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80717, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80796, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 80919, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 81028, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 81141, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 81184, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 81271, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81552, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81621, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81680, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81725, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81768, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81813, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81866, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81919, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 81972, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 82017, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 82070, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 82113, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 82156, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 82217, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 82278, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 82296, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 82574, + "length": 10, + "value": "\".Buckets\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 82641, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 82657, + "length": 8, + "value": "\"offset\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 82672, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 82692, + "length": 15, + "value": "\"bucket_counts\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 83122, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 83205, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 83407, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 83487, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 83612, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 83900, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 83959, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 84020, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 84038, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84235, + "length": 19, + "value": "\".SummaryDataPoint\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84311, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84327, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84346, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84366, + "length": 22, + "value": "\"start_time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84395, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84415, + "length": 16, + "value": "\"time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84438, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84454, + "length": 7, + "value": "\"count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84468, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84484, + "length": 5, + "value": "\"sum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84496, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84516, + "length": 17, + "value": "\"quantile_values\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84540, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 84556, + "length": 7, + "value": "\"flags\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 84978, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85073, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85163, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85246, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85326, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85418, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85506, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85712, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85804, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85841, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85928, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 85958, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 86038, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 86066, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 86143, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 86275, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 86399, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 86429, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 86508, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 86762, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 86831, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 86890, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 86935, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 86976, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 87039, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 87084, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 87145, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 87163, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 87423, + "length": 18, + "value": "\".ValueAtQuantile\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 87498, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 87514, + "length": 10, + "value": "\"quantile\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 87531, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 87547, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 87969, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 88054, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 88251, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 88333, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 88363, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 88442, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 88724, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 88769, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 88830, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 88848, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 89037, + "length": 11, + "value": "\".Exemplar\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89105, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 89125, + "length": 21, + "value": "\"filtered_attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89153, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 89173, + "length": 16, + "value": "\"time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89196, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 89216, + "length": 11, + "value": "\"as_double\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89234, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 89254, + "length": 8, + "value": "\"as_int\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89269, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 89289, + "length": 9, + "value": "\"span_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89305, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "StringLiteral", + "offset": 89325, + "length": 10, + "value": "\"trace_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89750, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 89840, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 90089, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 90171, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 90254, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 90501, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 91012, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 91099, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 91225, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 91343, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 91459, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 91584, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "IntegerLiteral", + "offset": 91728, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 91982, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 92041, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 92086, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 92133, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 92182, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 92243, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics.pb.swift", + "kind": "BooleanLiteral", + "offset": 92261, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "Array", + "offset": 2124, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 4525, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 5591, + "length": 42, + "value": "\"opentelemetry.proto.collector.metrics.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 5841, + "length": 30, + "value": "\".ExportMetricsServiceRequest\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 5928, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 5948, + "length": 18, + "value": "\"resource_metrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 6381, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 6690, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 6996, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 7057, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 7075, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 7294, + "length": 31, + "value": "\".ExportMetricsServiceResponse\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 7382, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 7402, + "length": 17, + "value": "\"partial_success\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 7834, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 8425, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8737, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8798, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8816, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 9034, + "length": 30, + "value": "\".ExportMetricsPartialSuccess\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9121, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 9141, + "length": 22, + "value": "\"rejected_data_points\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9170, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "StringLiteral", + "offset": 9190, + "length": 15, + "value": "\"error_message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9620, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9714, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9928, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 10019, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 10146, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10458, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10517, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10578, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/metrics_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10596, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/metric\/MetricsAdapter.swift", + "kind": "StringLiteral", + "offset": 10456, + "length": 6, + "value": "\"unit\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/MetricStorage.swift", + "kind": "IntegerLiteral", + "offset": 177, + "length": 5, + "value": "2000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/MonitoringObject.swift", + "kind": "Array", + "offset": 591, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/MonitoringObject.swift", + "kind": "Array", + "offset": 717, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/MonitoringObject.swift", + "kind": "Array", + "offset": 745, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/MultiSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 829, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/MultiSpanProcessor.swift", + "kind": "IntegerLiteral", + "offset": 916, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "BooleanLiteral", + "offset": 1131, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "StringLiteral", + "offset": 1170, + "length": 3, + "value": "\"_\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "BooleanLiteral", + "offset": 1205, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "BooleanLiteral", + "offset": 1324, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "StringLiteral", + "offset": 4754, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "BooleanLiteral", + "offset": 5430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "Dictionary", + "offset": 6716, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "Dictionary", + "offset": 6835, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/NameMap.swift", + "kind": "Dictionary", + "offset": 7065, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/NoopSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 188, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/NoopSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 218, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/metric\/OltpHTTPMetricExporter.swift", + "kind": "StringLiteral", + "offset": 174, + "length": 34, + "value": "\"http:\/\/localhost:4318\/v1\/metrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/metric\/OltpHTTPMetricExporter.swift", + "kind": "Array", + "offset": 325, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/metric\/OltpHTTPMetricExporter.swift", + "kind": "Array", + "offset": 781, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/metric\/OltpHTTPMetricExporter.swift", + "kind": "IntegerLiteral", + "offset": 1874, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/OpenTelemetry.swift", + "kind": "StringLiteral", + "offset": 374, + "length": 9, + "value": "\"v1.20.0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/OtlpConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 214, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/OtlpHttpExporterBase.swift", + "kind": "StringLiteral", + "offset": 773, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/OtlpHttpExporterBase.swift", + "kind": "StringLiteral", + "offset": 975, + "length": 24, + "value": "\"application\/x-protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/OtlpHttpExporterBase.swift", + "kind": "StringLiteral", + "offset": 1021, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/OtlpHttpExporterBase.swift", + "kind": "StringLiteral", + "offset": 1097, + "length": 15, + "value": "\"Authorization\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/OtlpHttpExporterBase.swift", + "kind": "StringLiteral", + "offset": 1150, + "length": 34, + "value": "\"Error serializing body: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/OtlpHttpExporterBase.swift", + "kind": "StringLiteral", + "offset": 1183, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/logs\/OtlpHttpLogExporter.swift", + "kind": "StringLiteral", + "offset": 175, + "length": 31, + "value": "\"http:\/\/localhost:4318\/v1\/logs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/logs\/OtlpHttpLogExporter.swift", + "kind": "Array", + "offset": 338, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/logs\/OtlpHttpLogExporter.swift", + "kind": "Array", + "offset": 782, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/logs\/OtlpHttpLogExporter.swift", + "kind": "IntegerLiteral", + "offset": 1977, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/trace\/OtlpHttpTraceExporter.swift", + "kind": "StringLiteral", + "offset": 173, + "length": 33, + "value": "\"http:\/\/localhost:4318\/v1\/traces\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/trace\/OtlpHttpTraceExporter.swift", + "kind": "Array", + "offset": 320, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/trace\/OtlpHttpTraceExporter.swift", + "kind": "Array", + "offset": 726, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolHttp\/trace\/OtlpHttpTraceExporter.swift", + "kind": "IntegerLiteral", + "offset": 1743, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/common\/OTPCConstants.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 12, + "value": "\"User-Agent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "Dictionary", + "offset": 1227, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 1744, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3229, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3268, + "length": 10, + "value": "\"ARDAMSa0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "Dictionary", + "offset": 3372, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3453, + "length": 26, + "value": "\"Error in getAudioStats()\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3490, + "length": 7, + "value": "\"DEBUG\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3703, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3742, + "length": 10, + "value": "\"ARDAMSv0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "Dictionary", + "offset": 3846, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3927, + "length": 26, + "value": "\"Error in getVideoStats()\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 3964, + "length": 7, + "value": "\"DEBUG\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 5740, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 5861, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 5874, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 5996, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6009, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6097, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6111, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6197, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6210, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 6291, + "length": 48, + "value": "\"error in pin() \n Unknown pin type \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 6337, + "length": 1, + "value": "\")\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 6351, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6602, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6616, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6739, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6753, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6844, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 6931, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 7012, + "length": 50, + "value": "\"error in pin() \n Unknown unpin type \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 7060, + "length": 1, + "value": "\")\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 7074, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 7245, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 7302, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "BooleanLiteral", + "offset": 7350, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 7696, + "length": 36, + "value": "\"Error in setPinState() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 7731, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "StringLiteral", + "offset": 7744, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "IntegerLiteral", + "offset": 8117, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "IntegerLiteral", + "offset": 8512, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "IntegerLiteral", + "offset": 8786, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", + "kind": "IntegerLiteral", + "offset": 8790, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/ParticipantPinState.swift", + "kind": "BooleanLiteral", + "offset": 298, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/ParticipantPinState.swift", + "kind": "BooleanLiteral", + "offset": 319, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/Peer.swift", + "kind": "StringLiteral", + "offset": 513, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/Peer.swift", + "kind": "StringLiteral", + "offset": 533, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/Peer.swift", + "kind": "StringLiteral", + "offset": 563, + "length": 13, + "value": "\"displayName\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/Peer.swift", + "kind": "StringLiteral", + "offset": 592, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/Peer.swift", + "kind": "StringLiteral", + "offset": 617, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/Peer.swift", + "kind": "StringLiteral", + "offset": 641, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Probe.swift", + "kind": "IntegerLiteral", + "offset": 1002, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Probe.swift", + "kind": "IntegerLiteral", + "offset": 1356, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/Probe.swift", + "kind": "BooleanLiteral", + "offset": 1651, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/PropagatedSpan.swift", + "kind": "StringLiteral", + "offset": 901, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/PropagatedSpan.swift", + "kind": "StringLiteral", + "offset": 1130, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/PropagatedSpan.swift", + "kind": "StringLiteral", + "offset": 1426, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/PropagatedSpan.swift", + "kind": "BooleanLiteral", + "offset": 2130, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/PropagatedSpan.swift", + "kind": "StringLiteral", + "offset": 2288, + "length": 16, + "value": "\"PropagatedSpan\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/PropagatedSpanBuilder.swift", + "kind": "BooleanLiteral", + "offset": 258, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/PropagatedSpanBuilder.swift", + "kind": "BooleanLiteral", + "offset": 1450, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "Dictionary", + "offset": 307, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "Dictionary", + "offset": 387, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "Dictionary", + "offset": 800, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "StringLiteral", + "offset": 1207, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "StringLiteral", + "offset": 1253, + "length": 10, + "value": "\"messages\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "StringLiteral", + "offset": 1472, + "length": 37, + "value": "\"Error in subscribe() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "StringLiteral", + "offset": 1508, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "StringLiteral", + "offset": 1521, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "IntegerLiteral", + "offset": 2123, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "Array", + "offset": 2532, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", + "kind": "Array", + "offset": 2810, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 592, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 636, + "length": 7, + "value": "\"topic\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 659, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 685, + "length": 9, + "value": "\"message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 710, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 737, + "length": 10, + "value": "\"senderId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 763, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 792, + "length": 12, + "value": "\"senderName\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 820, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 848, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 875, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "kind": "StringLiteral", + "offset": 124, + "length": 13, + "value": "\"VideoSDKRTC.PubSubMessage\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/PushMetricController.swift", + "kind": "StringLiteral", + "offset": 270, + "length": 56, + "value": "\"org.opentelemetry.PushMetricController.pushMetricQueue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Export\/PushMetricController.swift", + "kind": "BooleanLiteral", + "offset": 975, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawCounterMetricSdk.swift", + "kind": "BooleanLiteral", + "offset": 436, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawCounterMetricSdk.swift", + "kind": "BooleanLiteral", + "offset": 644, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawCounterMetricSdkBase.swift", + "kind": "BooleanLiteral", + "offset": 708, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawCounterMetricSdkBase.swift", + "kind": "BooleanLiteral", + "offset": 2110, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawHistogramMetricSdk.swift", + "kind": "BooleanLiteral", + "offset": 503, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawHistogramMetricSdk.swift", + "kind": "BooleanLiteral", + "offset": 840, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawHistogramMetricSdkBase.swift", + "kind": "BooleanLiteral", + "offset": 844, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Raw\/RawHistogramMetricSdkBase.swift", + "kind": "BooleanLiteral", + "offset": 998, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "BooleanLiteral", + "offset": 253, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "StringLiteral", + "offset": 322, + "length": 64, + "value": "\"org.opentelemetry.RecordEventsReadableSpan.internalStatusQueue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "StringLiteral", + "offset": 570, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "IntegerLiteral", + "offset": 2686, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "IntegerLiteral", + "offset": 2773, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "BooleanLiteral", + "offset": 3659, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "BooleanLiteral", + "offset": 3717, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "IntegerLiteral", + "offset": 10458, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "IntegerLiteral", + "offset": 10550, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "IntegerLiteral", + "offset": 11947, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "BooleanLiteral", + "offset": 12197, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "BooleanLiteral", + "offset": 12243, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "BooleanLiteral", + "offset": 12267, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "BooleanLiteral", + "offset": 12454, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/RecordEventsReadableSpan.swift", + "kind": "StringLiteral", + "offset": 12680, + "length": 28, + "value": "\"RecordEventsReadableSpan{}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/RegisteredReader.swift", + "kind": "IntegerLiteral", + "offset": 208, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/RegisteredReader.swift", + "kind": "IntegerLiteral", + "offset": 374, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/RegisteredReader.swift", + "kind": "BooleanLiteral", + "offset": 798, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "IntegerLiteral", + "offset": 265, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "IntegerLiteral", + "offset": 302, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "IntegerLiteral", + "offset": 329, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "IntegerLiteral", + "offset": 1745, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "IntegerLiteral", + "offset": 1769, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "IntegerLiteral", + "offset": 1818, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "BooleanLiteral", + "offset": 2137, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exemplar\/ReservoirCell.swift", + "kind": "BooleanLiteral", + "offset": 2176, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "IntegerLiteral", + "offset": 342, + "length": 3, + "value": "255" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "StringLiteral", + "offset": 675, + "length": 35, + "value": "\"unknown_service:\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "StringLiteral", + "offset": 709, + "length": 3, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "StringLiteral", + "offset": 812, + "length": 15, + "value": "\"opentelemetry\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "StringLiteral", + "offset": 933, + "length": 7, + "value": "\"swift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "StringLiteral", + "offset": 1045, + "length": 7, + "value": "\"1.0.0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "BooleanLiteral", + "offset": 2521, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/Resource.swift", + "kind": "BooleanLiteral", + "offset": 2566, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "Array", + "offset": 1908, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 2084, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "StringLiteral", + "offset": 2433, + "length": 33, + "value": "\"opentelemetry.proto.resource.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "StringLiteral", + "offset": 2646, + "length": 11, + "value": "\".Resource\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 2714, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "StringLiteral", + "offset": 2730, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 2749, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "StringLiteral", + "offset": 2769, + "length": 26, + "value": "\"dropped_attributes_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 3210, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 3298, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 3603, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 3650, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "IntegerLiteral", + "offset": 3746, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "BooleanLiteral", + "offset": 3986, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "BooleanLiteral", + "offset": 4065, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "BooleanLiteral", + "offset": 4126, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/resource.pb.swift", + "kind": "BooleanLiteral", + "offset": 4144, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 655, + "length": 16, + "value": "\"browser.brands\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 1719, + "length": 18, + "value": "\"browser.platform\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 2114, + "length": 16, + "value": "\"browser.mobile\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 2565, + "length": 18, + "value": "\"browser.language\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 21, + "value": "\"user_agent.original\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 3411, + "length": 16, + "value": "\"cloud.provider\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 3701, + "length": 18, + "value": "\"cloud.account.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 4464, + "length": 14, + "value": "\"cloud.region\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 6720, + "length": 19, + "value": "\"cloud.resource_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 7175, + "length": 25, + "value": "\"cloud.availability_zone\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 7504, + "length": 16, + "value": "\"cloud.platform\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 7914, + "length": 23, + "value": "\"aws.ecs.container.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 8260, + "length": 21, + "value": "\"aws.ecs.cluster.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 8590, + "length": 20, + "value": "\"aws.ecs.launchtype\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 8966, + "length": 18, + "value": "\"aws.ecs.task.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 9234, + "length": 21, + "value": "\"aws.ecs.task.family\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 9508, + "length": 23, + "value": "\"aws.ecs.task.revision\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 9777, + "length": 21, + "value": "\"aws.eks.cluster.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 10287, + "length": 21, + "value": "\"aws.log.group.names\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 10756, + "length": 20, + "value": "\"aws.log.group.arns\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 11052, + "length": 22, + "value": "\"aws.log.stream.names\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 11676, + "length": 21, + "value": "\"aws.log.stream.arns\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 11950, + "length": 35, + "value": "\"heroku.release.creation_timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 12231, + "length": 23, + "value": "\"heroku.release.commit\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 12485, + "length": 15, + "value": "\"heroku.app.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 12724, + "length": 16, + "value": "\"container.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13094, + "length": 14, + "value": "\"container.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13418, + "length": 19, + "value": "\"container.runtime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13682, + "length": 22, + "value": "\"container.image.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13896, + "length": 21, + "value": "\"container.image.tag\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 14268, + "length": 24, + "value": "\"deployment.environment\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 15345, + "length": 11, + "value": "\"device.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 15797, + "length": 25, + "value": "\"device.model.identifier\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 16237, + "length": 19, + "value": "\"device.model.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 16692, + "length": 21, + "value": "\"device.manufacturer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 18004, + "length": 11, + "value": "\"faas.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 18942, + "length": 14, + "value": "\"faas.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 19364, + "length": 15, + "value": "\"faas.instance\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 19905, + "length": 17, + "value": "\"faas.max_memory\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 20352, + "length": 9, + "value": "\"host.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 20686, + "length": 11, + "value": "\"host.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 20916, + "length": 11, + "value": "\"host.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 21150, + "length": 11, + "value": "\"host.arch\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 21480, + "length": 17, + "value": "\"host.image.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 21731, + "length": 15, + "value": "\"host.image.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22016, + "length": 20, + "value": "\"host.image.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22244, + "length": 18, + "value": "\"k8s.cluster.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22446, + "length": 15, + "value": "\"k8s.node.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22672, + "length": 14, + "value": "\"k8s.node.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22913, + "length": 20, + "value": "\"k8s.namespace.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 23141, + "length": 13, + "value": "\"k8s.pod.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 23355, + "length": 14, + "value": "\"k8s.pod.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 23701, + "length": 20, + "value": "\"k8s.container.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24088, + "length": 29, + "value": "\"k8s.container.restart_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24346, + "length": 20, + "value": "\"k8s.replicaset.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24575, + "length": 21, + "value": "\"k8s.replicaset.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24825, + "length": 20, + "value": "\"k8s.deployment.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25054, + "length": 21, + "value": "\"k8s.deployment.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25307, + "length": 21, + "value": "\"k8s.statefulset.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25540, + "length": 22, + "value": "\"k8s.statefulset.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25788, + "length": 19, + "value": "\"k8s.daemonset.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26013, + "length": 20, + "value": "\"k8s.daemonset.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26241, + "length": 13, + "value": "\"k8s.job.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26442, + "length": 14, + "value": "\"k8s.job.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26676, + "length": 17, + "value": "\"k8s.cronjob.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26893, + "length": 18, + "value": "\"k8s.cronjob.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 27103, + "length": 9, + "value": "\"os.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 27493, + "length": 16, + "value": "\"os.description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 27767, + "length": 9, + "value": "\"os.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28118, + "length": 12, + "value": "\"os.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28304, + "length": 13, + "value": "\"process.pid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28509, + "length": 20, + "value": "\"process.parent_pid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28892, + "length": 25, + "value": "\"process.executable.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 29292, + "length": 25, + "value": "\"process.executable.path\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 29715, + "length": 17, + "value": "\"process.command\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 30206, + "length": 22, + "value": "\"process.command_line\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 30805, + "length": 22, + "value": "\"process.command_args\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 31037, + "length": 15, + "value": "\"process.owner\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 31361, + "length": 22, + "value": "\"process.runtime.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 31658, + "length": 25, + "value": "\"process.runtime.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 32045, + "length": 29, + "value": "\"process.runtime.description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 32612, + "length": 14, + "value": "\"service.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 33347, + "length": 19, + "value": "\"service.namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 34518, + "length": 21, + "value": "\"service.instance.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 34763, + "length": 17, + "value": "\"service.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35007, + "length": 20, + "value": "\"telemetry.sdk.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35269, + "length": 24, + "value": "\"telemetry.sdk.language\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35511, + "length": 23, + "value": "\"telemetry.sdk.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35776, + "length": 24, + "value": "\"telemetry.auto.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35995, + "length": 16, + "value": "\"webengine.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 36214, + "length": 19, + "value": "\"webengine.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 36564, + "length": 23, + "value": "\"webengine.description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 36858, + "length": 17, + "value": "\"otel.scope.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 37131, + "length": 20, + "value": "\"otel.scope.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 37396, + "length": 19, + "value": "\"otel.library.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 37642, + "length": 22, + "value": "\"otel.library.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 37928, + "length": 15, + "value": "\"alibaba_cloud\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 38049, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 38158, + "length": 7, + "value": "\"azure\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 38273, + "length": 5, + "value": "\"gcp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 38396, + "length": 8, + "value": "\"heroku\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 38505, + "length": 11, + "value": "\"ibm_cloud\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 38625, + "length": 15, + "value": "\"tencent_cloud\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 39143, + "length": 19, + "value": "\"alibaba_cloud_ecs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 39290, + "length": 18, + "value": "\"alibaba_cloud_fc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 39447, + "length": 25, + "value": "\"alibaba_cloud_openshift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 39587, + "length": 9, + "value": "\"aws_ec2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 39715, + "length": 9, + "value": "\"aws_ecs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 39844, + "length": 9, + "value": "\"aws_eks\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 39956, + "length": 12, + "value": "\"aws_lambda\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 40092, + "length": 23, + "value": "\"aws_elastic_beanstalk\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 40225, + "length": 16, + "value": "\"aws_app_runner\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 40368, + "length": 15, + "value": "\"aws_openshift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 40496, + "length": 10, + "value": "\"azure_vm\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 40638, + "length": 27, + "value": "\"azure_container_instances\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 40781, + "length": 11, + "value": "\"azure_aks\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 40905, + "length": 17, + "value": "\"azure_functions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 41038, + "length": 19, + "value": "\"azure_app_service\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 41178, + "length": 17, + "value": "\"azure_openshift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 41328, + "length": 20, + "value": "\"gcp_compute_engine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 41459, + "length": 15, + "value": "\"gcp_cloud_run\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 41613, + "length": 23, + "value": "\"gcp_kubernetes_engine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 41765, + "length": 21, + "value": "\"gcp_cloud_functions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 41911, + "length": 16, + "value": "\"gcp_app_engine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 42056, + "length": 15, + "value": "\"gcp_openshift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 42202, + "length": 21, + "value": "\"ibm_cloud_openshift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 42363, + "length": 19, + "value": "\"tencent_cloud_cvm\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 42527, + "length": 19, + "value": "\"tencent_cloud_eks\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 42690, + "length": 19, + "value": "\"tencent_cloud_scf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43207, + "length": 5, + "value": "\"ec2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43276, + "length": 9, + "value": "\"fargate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43207, + "length": 5, + "value": "\"ec2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43276, + "length": 9, + "value": "\"fargate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43549, + "length": 7, + "value": "\"amd64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43645, + "length": 7, + "value": "\"arm32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43741, + "length": 7, + "value": "\"arm64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43838, + "length": 6, + "value": "\"ia64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 43942, + "length": 7, + "value": "\"ppc32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 44047, + "length": 7, + "value": "\"ppc64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 44156, + "length": 7, + "value": "\"s390x\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 44255, + "length": 5, + "value": "\"x86\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 44714, + "length": 9, + "value": "\"windows\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 44810, + "length": 7, + "value": "\"linux\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 44912, + "length": 8, + "value": "\"darwin\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45011, + "length": 9, + "value": "\"freebsd\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45109, + "length": 8, + "value": "\"netbsd\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45208, + "length": 9, + "value": "\"openbsd\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45319, + "length": 14, + "value": "\"dragonflybsd\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45442, + "length": 6, + "value": "\"hpux\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45564, + "length": 5, + "value": "\"aix\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45674, + "length": 9, + "value": "\"solaris\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 45771, + "length": 6, + "value": "\"z_os\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 46263, + "length": 5, + "value": "\"cpp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 46371, + "length": 8, + "value": "\"dotnet\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 46482, + "length": 8, + "value": "\"erlang\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 46585, + "length": 4, + "value": "\"go\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 46688, + "length": 6, + "value": "\"java\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 46797, + "length": 8, + "value": "\"nodejs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 46902, + "length": 5, + "value": "\"php\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 47010, + "length": 8, + "value": "\"python\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 47117, + "length": 6, + "value": "\"ruby\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 47224, + "length": 7, + "value": "\"webjs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 47332, + "length": 7, + "value": "\"swift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 655, + "length": 16, + "value": "\"browser.brands\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 1719, + "length": 18, + "value": "\"browser.platform\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 2114, + "length": 16, + "value": "\"browser.mobile\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 2565, + "length": 18, + "value": "\"browser.language\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 21, + "value": "\"user_agent.original\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 3411, + "length": 16, + "value": "\"cloud.provider\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 3701, + "length": 18, + "value": "\"cloud.account.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 4464, + "length": 14, + "value": "\"cloud.region\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 6720, + "length": 19, + "value": "\"cloud.resource_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 7175, + "length": 25, + "value": "\"cloud.availability_zone\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 7504, + "length": 16, + "value": "\"cloud.platform\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 7914, + "length": 23, + "value": "\"aws.ecs.container.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 8260, + "length": 21, + "value": "\"aws.ecs.cluster.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 8590, + "length": 20, + "value": "\"aws.ecs.launchtype\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 8966, + "length": 18, + "value": "\"aws.ecs.task.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 9234, + "length": 21, + "value": "\"aws.ecs.task.family\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 9508, + "length": 23, + "value": "\"aws.ecs.task.revision\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 9777, + "length": 21, + "value": "\"aws.eks.cluster.arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 10287, + "length": 21, + "value": "\"aws.log.group.names\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 10756, + "length": 20, + "value": "\"aws.log.group.arns\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 11052, + "length": 22, + "value": "\"aws.log.stream.names\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 11676, + "length": 21, + "value": "\"aws.log.stream.arns\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 11950, + "length": 35, + "value": "\"heroku.release.creation_timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 12231, + "length": 23, + "value": "\"heroku.release.commit\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 12485, + "length": 15, + "value": "\"heroku.app.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 12724, + "length": 16, + "value": "\"container.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13094, + "length": 14, + "value": "\"container.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13418, + "length": 19, + "value": "\"container.runtime\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13682, + "length": 22, + "value": "\"container.image.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 13896, + "length": 21, + "value": "\"container.image.tag\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 14268, + "length": 24, + "value": "\"deployment.environment\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 15345, + "length": 11, + "value": "\"device.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 15797, + "length": 25, + "value": "\"device.model.identifier\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 16237, + "length": 19, + "value": "\"device.model.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 16692, + "length": 21, + "value": "\"device.manufacturer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 18004, + "length": 11, + "value": "\"faas.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 18942, + "length": 14, + "value": "\"faas.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 19364, + "length": 15, + "value": "\"faas.instance\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 19905, + "length": 17, + "value": "\"faas.max_memory\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 20352, + "length": 9, + "value": "\"host.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 20686, + "length": 11, + "value": "\"host.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 20916, + "length": 11, + "value": "\"host.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 21150, + "length": 11, + "value": "\"host.arch\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 21480, + "length": 17, + "value": "\"host.image.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 21731, + "length": 15, + "value": "\"host.image.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22016, + "length": 20, + "value": "\"host.image.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22244, + "length": 18, + "value": "\"k8s.cluster.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22446, + "length": 15, + "value": "\"k8s.node.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22672, + "length": 14, + "value": "\"k8s.node.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 22913, + "length": 20, + "value": "\"k8s.namespace.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 23141, + "length": 13, + "value": "\"k8s.pod.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 23355, + "length": 14, + "value": "\"k8s.pod.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 23701, + "length": 20, + "value": "\"k8s.container.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24088, + "length": 29, + "value": "\"k8s.container.restart_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24346, + "length": 20, + "value": "\"k8s.replicaset.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24575, + "length": 21, + "value": "\"k8s.replicaset.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 24825, + "length": 20, + "value": "\"k8s.deployment.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25054, + "length": 21, + "value": "\"k8s.deployment.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25307, + "length": 21, + "value": "\"k8s.statefulset.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25540, + "length": 22, + "value": "\"k8s.statefulset.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 25788, + "length": 19, + "value": "\"k8s.daemonset.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26013, + "length": 20, + "value": "\"k8s.daemonset.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26241, + "length": 13, + "value": "\"k8s.job.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26442, + "length": 14, + "value": "\"k8s.job.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26676, + "length": 17, + "value": "\"k8s.cronjob.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 26893, + "length": 18, + "value": "\"k8s.cronjob.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 27103, + "length": 9, + "value": "\"os.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 27493, + "length": 16, + "value": "\"os.description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 27767, + "length": 9, + "value": "\"os.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28118, + "length": 12, + "value": "\"os.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28304, + "length": 13, + "value": "\"process.pid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28509, + "length": 20, + "value": "\"process.parent_pid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 28892, + "length": 25, + "value": "\"process.executable.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 29292, + "length": 25, + "value": "\"process.executable.path\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 29715, + "length": 17, + "value": "\"process.command\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 30206, + "length": 22, + "value": "\"process.command_line\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 30805, + "length": 22, + "value": "\"process.command_args\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 31037, + "length": 15, + "value": "\"process.owner\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 31361, + "length": 22, + "value": "\"process.runtime.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 31658, + "length": 25, + "value": "\"process.runtime.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 32045, + "length": 29, + "value": "\"process.runtime.description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 32612, + "length": 14, + "value": "\"service.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 33347, + "length": 19, + "value": "\"service.namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 34518, + "length": 21, + "value": "\"service.instance.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 34763, + "length": 17, + "value": "\"service.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35007, + "length": 20, + "value": "\"telemetry.sdk.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35269, + "length": 24, + "value": "\"telemetry.sdk.language\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35511, + "length": 23, + "value": "\"telemetry.sdk.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35776, + "length": 24, + "value": "\"telemetry.auto.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 35995, + "length": 16, + "value": "\"webengine.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 36214, + "length": 19, + "value": "\"webengine.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 36564, + "length": 23, + "value": "\"webengine.description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 36858, + "length": 17, + "value": "\"otel.scope.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 37131, + "length": 20, + "value": "\"otel.scope.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 37396, + "length": 19, + "value": "\"otel.library.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Resources\/ResourceAttributes.swift", + "kind": "StringLiteral", + "offset": 37642, + "length": 22, + "value": "\"otel.library.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 942, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 1689, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 1733, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 1920, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 1958, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 2042, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 2083, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 2115, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 2148, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 2619, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 2651, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 2846, + "length": 13, + "value": "\"RoomMetrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 773, + "length": 10, + "value": "\"VideoSDKRTC.RoomClient\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3087, + "length": 15, + "value": "\"consumerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 3125, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3168, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3290, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3417, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3491, + "length": 18, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3508, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3576, + "length": 15, + "value": "\"consumerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 3640, + "length": 15, + "value": "\"consumerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 3659, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 3843, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 3989, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 4118, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 4216, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 4336, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 4461, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 4466, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 4851, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 4967, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 5094, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 5168, + "length": 18, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 5185, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 5253, + "length": 15, + "value": "\"consumerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 5317, + "length": 15, + "value": "\"consumerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 5336, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 5549, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 5724, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 5853, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 5951, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 6060, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 6196, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 6201, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 6583, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 6621, + "length": 38, + "value": "\"ERR :: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 6658, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 6789, + "length": 15, + "value": "\"producerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 6842, + "length": 15, + "value": "\"producerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 6861, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 6917, + "length": 15, + "value": "\"producerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 6955, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 6988, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7036, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 7047, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7164, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 7170, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7225, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7397, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 7538, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 7543, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7589, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7703, + "length": 15, + "value": "\"producerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7790, + "length": 15, + "value": "\"producerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7840, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7888, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 7899, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 7966, + "length": 15, + "value": "\"producerStats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8016, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8064, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 8075, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8203, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 8209, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8264, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8436, + "length": 9, + "value": "\"trackId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 8632, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 8637, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8834, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8874, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8911, + "length": 11, + "value": "\"timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 8959, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 8990, + "length": 7, + "value": "\"stats\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 9111, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9149, + "length": 38, + "value": "\"ERR :: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9186, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9549, + "length": 31, + "value": "\"Meeting is in CONNECTED State\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9834, + "length": 9, + "value": "\"baseUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9859, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9911, + "length": 15, + "value": "\"observability\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 9949, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9954, + "length": 5, + "value": "\"jwt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 9975, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 10032, + "length": 15, + "value": "\"observability\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 10070, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 10075, + "length": 8, + "value": "\"traces\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 10106, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 10162, + "length": 15, + "value": "\"observability\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 10200, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 10205, + "length": 6, + "value": "\"logs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 10234, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 10294, + "length": 15, + "value": "\"observability\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 10332, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 10337, + "length": 10, + "value": "\"metaData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 10370, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 10992, + "length": 12, + "value": "\"iOS(2.1.0)\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11247, + "length": 32, + "value": "\"Meeting is in CONNECTING State\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 11293, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 11384, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11419, + "length": 11, + "value": "\"modelName\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11486, + "length": 7, + "value": "\"brand\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11497, + "length": 7, + "value": "\"Apple\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11536, + "length": 11, + "value": "\"osVersion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 11634, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11669, + "length": 9, + "value": "\"sdkType\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11682, + "length": 5, + "value": "\"iOS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11719, + "length": 12, + "value": "\"sdkVersion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11778, + "length": 10, + "value": "\"platform\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11792, + "length": 5, + "value": "\"iOS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11829, + "length": 17, + "value": "\"deviceUserAgent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11876, + "length": 7, + "value": "\"model\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11885, + "length": 25, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11909, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 11978, + "length": 11, + "value": "\"osVersion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 12075, + "length": 12, + "value": "\"deviceInfo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 12133, + "length": 13, + "value": "\"displayName\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 12274, + "length": 24, + "value": "\"customCameraVideoTrack\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 12377, + "length": 13, + "value": "\"multiStream\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 12438, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 12497, + "length": 6, + "value": "\"mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 12616, + "length": 16, + "value": "\"Join() Calling\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 12978, + "length": 28, + "value": "\"Meeting is in FAILED State\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 13036, + "length": 26, + "value": "\"Protoo Connection Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 13402, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 13932, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14095, + "length": 29, + "value": "\"Loading Router Capabilities\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14139, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14331, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 14360, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14410, + "length": 18, + "value": "\"headerExtensions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14503, + "length": 5, + "value": "\"uri\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14524, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14531, + "length": 28, + "value": "\"urn:3gpp:video-orientation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14586, + "length": 18, + "value": "\"headerExtensions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14653, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 14757, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 15093, + "length": 47, + "value": "\"Router Capabilities Loaded \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 15139, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 15493, + "length": 42, + "value": "\"setupDeviceAndTransports Error: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 15534, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 15696, + "length": 23, + "value": "\"Create Send Transport\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 16760, + "length": 15, + "value": "\"sendTransport\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 16972, + "length": 37, + "value": "\"Send Transport Created Successfully\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 17061, + "length": 38, + "value": "\"createSendTransport Error : \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 17098, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 17213, + "length": 46, + "value": "\"error while creating sendTransport: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 17258, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 17271, + "length": 46, + "value": "\"error while creating sendTransport: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 17316, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 17481, + "length": 26, + "value": "\"Create Receive Transport\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18452, + "length": 11, + "value": "\"transport\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18643, + "length": 40, + "value": "\"Receive Transport Created Successfully\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18733, + "length": 40, + "value": "\"createReceiveTransport Error: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18772, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18887, + "length": 46, + "value": "\"error while creating recvTransport: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18932, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18945, + "length": 46, + "value": "\"error while creating recvTransport: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 18990, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 19736, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 19803, + "length": 33, + "value": "\"Error in joinRoom() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 19835, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 19848, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 19875, + "length": 22, + "value": "\"join Error: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 19896, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 20017, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 20043, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20262, + "length": 15, + "value": "\"Changing Mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20309, + "length": 18, + "value": "\"peer.currentMode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20383, + "length": 20, + "value": "\"peer.requestedMode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20559, + "length": 46, + "value": "\"error in changeMode() \n You are already in \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20624, + "length": 7, + "value": "\" mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20643, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20759, + "length": 38, + "value": "\"Already in the \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20791, + "length": 4, + "value": "\" mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20809, + "length": 38, + "value": "\"Already in the \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 20841, + "length": 4, + "value": "\" mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21037, + "length": 36, + "value": "\"Starting mode change to CONFERENCE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 21106, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 21142, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 21220, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21391, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 21408, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 21414, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21470, + "length": 60, + "value": "\"Error in changeMode() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21529, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21541, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21656, + "length": 57, + "value": "\"Change Mode Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21712, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 21866, + "length": 32, + "value": "\"Starting mode change to VIEWER\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22053, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 22070, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 22076, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22132, + "length": 60, + "value": "\"Error in changeMode() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22191, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22203, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22318, + "length": 57, + "value": "\"Change Mode Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22374, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 22443, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 22480, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22725, + "length": 52, + "value": "\"Error in changeMode() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22758, + "length": 2, + "value": "\" is not valid mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22789, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22899, + "length": 58, + "value": "\"Change Mode Failed \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 22938, + "length": 2, + "value": "\" is not valid mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23018, + "length": 31, + "value": "\"Error Changing Mode: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23048, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23293, + "length": 24, + "value": "\"startRecording() Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23400, + "length": 12, + "value": "\"webhookUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23435, + "length": 24, + "value": "\"webhookUrl Not Specify\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23555, + "length": 12, + "value": "\"awsDirPath\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23583, + "length": 26, + "value": "\"awsDirPath not specified\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23692, + "length": 8, + "value": "\"config\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23722, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 23955, + "length": 64, + "value": "\"startRecordScreenResp: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24018, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24055, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 24072, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 24078, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24126, + "length": 68, + "value": "\"Error in startRecording() ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24193, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24205, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24321, + "length": 69, + "value": "\"startRecording() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24389, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24402, + "length": 69, + "value": "\"startRecording() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24470, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24580, + "length": 22, + "value": "\"startRecording() End\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24718, + "length": 23, + "value": "\"stopRecording() Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 24755, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24876, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 24893, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 24899, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 24947, + "length": 67, + "value": "\"Error in stopRecording() ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25013, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25025, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25140, + "length": 64, + "value": "\"stopRecording() Failed ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25203, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25216, + "length": 67, + "value": "\"stopRecording() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25282, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25391, + "length": 21, + "value": "\"stopRecording() End\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25590, + "length": 25, + "value": "\"startLivestream() Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 25629, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25766, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 25783, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 25789, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25837, + "length": 70, + "value": "\"Error in startLivestream() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25906, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 25918, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26035, + "length": 68, + "value": "\"startLivestream() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26102, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26115, + "length": 68, + "value": "\"startLivestream() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26182, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26293, + "length": 23, + "value": "\"startLivestream() End\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26434, + "length": 24, + "value": "\"stopLivestream() Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 26472, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26590, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 26607, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 26613, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26661, + "length": 68, + "value": "\"Error in stopLivestream() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26728, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26741, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26857, + "length": 66, + "value": "\"stopLivestream() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26922, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 26935, + "length": 66, + "value": "\"stopLivestream() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27000, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27110, + "length": 22, + "value": "\"stopLivestream() End\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27303, + "length": 16, + "value": "\"close() called\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 27333, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27436, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 27453, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 27459, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27507, + "length": 58, + "value": "\"Error in closeRoom() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27564, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27577, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27688, + "length": 15, + "value": "\"Already close\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27769, + "length": 34, + "value": "\"Meeting is in DISCONNECTED State\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 27975, + "length": 18, + "value": "\"startHls() Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28008, + "length": 8, + "value": "\"config\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28153, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 28170, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 28176, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28224, + "length": 56, + "value": "\"Error in startHls() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28279, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28292, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28402, + "length": 54, + "value": "\"startHls() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28455, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28468, + "length": 54, + "value": "\"startHls() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28521, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28625, + "length": 16, + "value": "\"startHls() End\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28750, + "length": 17, + "value": "\"stopHls() Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 28781, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28878, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 28895, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 28901, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 28949, + "length": 54, + "value": "\"Error in stopHls() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29002, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29015, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29124, + "length": 53, + "value": "\"stopHls() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29176, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29189, + "length": 52, + "value": "\"stopHls() Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29240, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29343, + "length": 15, + "value": "\"stopHls() End\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 29479, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29615, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 29632, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 29638, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29686, + "length": 38, + "value": "\"error in publish() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29723, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29736, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29917, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 29934, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 29940, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 29988, + "length": 42, + "value": "\"error in subscribe() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 30029, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 30042, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 30244, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 30261, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 30267, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 30315, + "length": 46, + "value": "\"error in unsubscribe() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 30360, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 30373, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 30769, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 31041, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 32299, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 32641, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 32867, + "length": 15, + "value": "[(\"share\", true)]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 33019, + "length": 8, + "value": "\"peerid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 33260, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 33900, + "length": 29, + "value": "\"SendTransport doesn't ready\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 33941, + "length": 29, + "value": "\"SendTransport doesn't ready\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 34145, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 34253, + "length": 39, + "value": "\"MediaSoup device cannot produce video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 34304, + "length": 39, + "value": "\"MediaSoup device cannot produce video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 34599, + "length": 16, + "value": "\"Creating Track\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 34629, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 34978, + "length": 30, + "value": "\"WebCam Track Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 35020, + "length": 30, + "value": "\"WebCam Track Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 35159, + "length": 24, + "value": "\"WebCam Track Generated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 35265, + "length": 35, + "value": "\"Generating Producer Configuration\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 35314, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 35383, + "length": 25, + "value": "\"videoGoogleStartBitrate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 35410, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 35675, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 35695, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 35787, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 35808, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 35939, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 35986, + "length": 11, + "value": "\"simulcast\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 36033, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 36139, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36186, + "length": 11, + "value": "\"simulcast\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 36199, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36307, + "length": 34, + "value": "\"Producer Configuration Generated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36399, + "length": 61, + "value": "\" with multiStream \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 36454, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36459, + "length": 5, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36463, + "length": 61, + "value": "\" with multiStream \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 36518, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36523, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36589, + "length": 76, + "value": "\"Track Generated with height \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36627, + "length": 3, + "value": "\" and width \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36646, + "length": 1, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36664, + "length": 53, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 36679, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 36831, + "length": 26, + "value": "\"Creating Webcam Producer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 36871, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 36932, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 37326, + "length": 33, + "value": "\"WebCam Producer Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 37371, + "length": 33, + "value": "\"WebCam Producer Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 37512, + "length": 22, + "value": "\"Enable WebCam Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 37546, + "length": 22, + "value": "\"Enable WebCam Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 37856, + "length": 25, + "value": "\"Webcam Producer Created\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 38052, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 38832, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 38849, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 38855, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 38911, + "length": 45, + "value": "\"Error in restartIce \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 38955, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 38968, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39139, + "length": 47, + "value": "\"Error in restartICE() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39185, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39198, + "length": 47, + "value": "\"Error in restartICE() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39244, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39590, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 39607, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 39613, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39669, + "length": 45, + "value": "\"Error in restartIce \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39713, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39726, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39897, + "length": 47, + "value": "\"Error in restartICE() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39943, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 39956, + "length": 47, + "value": "\"Error in restartICE() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40002, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40121, + "length": 35, + "value": "\"Error in restartIce() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40155, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40167, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40194, + "length": 30, + "value": "\"error in iceRestart \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40223, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40366, + "length": 19, + "value": "\"Transport::closed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40565, + "length": 11, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40575, + "length": 26, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 40598, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40732, + "length": 37, + "value": "\"Enable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40762, + "length": 5, + "value": "\" Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 40783, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40896, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 40913, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 40919, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 40967, + "length": 62, + "value": "\"Error in enablePeerMic() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41028, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41041, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41156, + "length": 74, + "value": "\"Enable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41186, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41229, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41242, + "length": 74, + "value": "\"Enable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41272, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41315, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41424, + "length": 41, + "value": "\"Enable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41454, + "length": 9, + "value": "\" Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41599, + "length": 38, + "value": "\"Disable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41630, + "length": 5, + "value": "\" Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 41651, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41767, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 41784, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 41790, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41838, + "length": 64, + "value": "\"Error in disablePeerMic() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41901, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 41914, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42030, + "length": 75, + "value": "\"Enable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42060, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42104, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42117, + "length": 76, + "value": "\"Disable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42148, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42192, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42302, + "length": 42, + "value": "\"Disable Peer Mic for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42333, + "length": 9, + "value": "\" Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42482, + "length": 40, + "value": "\"Enable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42515, + "length": 5, + "value": "\" Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 42536, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42658, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 42675, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 42681, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42729, + "length": 68, + "value": "\"Error in enablePeerWebcam() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42796, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42809, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42927, + "length": 80, + "value": "\"Enable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 42960, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43006, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43019, + "length": 80, + "value": "\"Enable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43052, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43098, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43210, + "length": 44, + "value": "\"Enable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43243, + "length": 9, + "value": "\" Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43394, + "length": 41, + "value": "\"Disable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43428, + "length": 5, + "value": "\" Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Dictionary", + "offset": 43449, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43574, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 43591, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 43597, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43645, + "length": 70, + "value": "\"Error in disablePeerWebcam() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43714, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43727, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43846, + "length": 82, + "value": "\"Disable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43880, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43927, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43940, + "length": 82, + "value": "\"Disable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 43974, + "length": 6, + "value": "\" Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44021, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44134, + "length": 45, + "value": "\"Disable Peer WebCam for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44168, + "length": 9, + "value": "\" Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44305, + "length": 29, + "value": "\"Remove \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44322, + "length": 4, + "value": "\" Peer Start\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44432, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 44449, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 44455, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44503, + "length": 60, + "value": "\"Error in removePeer() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44562, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44575, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44687, + "length": 67, + "value": "\"Remove \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44704, + "length": 4, + "value": "\" Peer Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44753, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44766, + "length": 67, + "value": "\"Remove \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44783, + "length": 4, + "value": "\" Peer Failed \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44832, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44938, + "length": 33, + "value": "\"Remove \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 44955, + "length": 4, + "value": "\" Peer Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45148, + "length": 29, + "value": "\"Protoo REQ: pinStateChanged\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45205, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45223, + "length": 7, + "value": "\"state\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45383, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 45400, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 45406, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45454, + "length": 55, + "value": "\"error in onPinStateChanged() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45508, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45521, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45637, + "length": 56, + "value": "\"PinStateChange Request Failed \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45692, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45705, + "length": 56, + "value": "\"PinStateChange Request Failed \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45760, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 45837, + "length": 33, + "value": "\"Emitted `pinStateChanged` Event\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46008, + "length": 34, + "value": "\"PinStateChange Request Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46415, + "length": 31, + "value": "\"Sending PauseConsumer Request\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46565, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 46582, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 46588, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46636, + "length": 66, + "value": "\"error in pauseConsumer() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46701, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46714, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46829, + "length": 61, + "value": "\"Error while pausing consumer \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46868, + "length": 1, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46889, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46902, + "length": 61, + "value": "\"Error while pausing consumer \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46941, + "length": 1, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 46962, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47071, + "length": 41, + "value": "\"PauseConsumer Request Sent Successfully\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47246, + "length": 32, + "value": "\"Sending ResumeConsumer Request\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47400, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 47417, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 47423, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47471, + "length": 68, + "value": "\"error in resumeConsumer() \n ProtooException \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47538, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47551, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47667, + "length": 63, + "value": "\"Error while resuming consumer \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47707, + "length": 1, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47729, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47742, + "length": 63, + "value": "\"Error while resuming consumer \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47782, + "length": 1, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47804, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 47914, + "length": 42, + "value": "\"ResumeConsumer Request Sent Successfully\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48087, + "length": 4, + "value": "\"hd\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48171, + "length": 3, + "value": "\"s\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 48179, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48260, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 48268, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48499, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 48516, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 48522, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48570, + "length": 72, + "value": "\"Error in setConsumerPreferredLayers() ProtooException: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48641, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48654, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48737, + "length": 55, + "value": "\"Setting \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48765, + "length": 7, + "value": "\" Quality for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48791, + "length": 15, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 48995, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 49043, + "length": 6, + "value": "\"kind\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 49099, + "length": 12, + "value": "\"producerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 49164, + "length": 15, + "value": "\"rtpParameters\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 49233, + "length": 9, + "value": "\"appData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 49414, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 49493, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 50691, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 50755, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 50821, + "length": 15, + "value": "\"iceParameters\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 50905, + "length": 15, + "value": "\"iceCandidates\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 50992, + "length": 16, + "value": "\"dtlsParameters\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 51362, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "StringLiteral", + "offset": 51420, + "length": 7, + "value": "\"peers\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "Array", + "offset": 51483, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "BooleanLiteral", + "offset": 51639, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 51780, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", + "kind": "IntegerLiteral", + "offset": 51901, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 1760, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "Dictionary", + "offset": 1788, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 1818, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2127, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2220, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2270, + "length": 9, + "value": "\"appData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2301, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "BooleanLiteral", + "offset": 2322, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2410, + "length": 25, + "value": "\"Protoo REQ: newConsumer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2583, + "length": 19, + "value": "\"Creating Consumer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2838, + "length": 18, + "value": "\"Consumer Created\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 2972, + "length": 35, + "value": "\"New Consumer Created Successfully\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3189, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3286, + "length": 42, + "value": "\"error in onNewConsumer :: onStatsChanged\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3340, + "length": 7, + "value": "\"DEBUG\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3459, + "length": 26, + "value": "\"Consumer Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3497, + "length": 26, + "value": "\"Consumer Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3644, + "length": 30, + "value": "\"New Consumer Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3686, + "length": 30, + "value": "\"New Consumer Creation Failed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 3885, + "length": 24, + "value": "\"Do not want to consume\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 4041, + "length": 12, + "value": "\"consumerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 4850, + "length": 23, + "value": "\"Protoo REQ: enableMic\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 5051, + "length": 29, + "value": "\"EnableMic Request Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 5160, + "length": 40, + "value": "\"error in enableMic request \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 5199, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 5211, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 5486, + "length": 26, + "value": "\"Protoo REQ: enableWebcam\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 5712, + "length": 32, + "value": "\"EnableWebCam Request Completed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6206, + "length": 6, + "value": "\"code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "IntegerLiteral", + "offset": 6225, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6397, + "length": 8, + "value": "\"status\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6421, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6610, + "length": 15, + "value": "\"downstreamUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6641, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6694, + "length": 16, + "value": "\"playbackHlsUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6726, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6778, + "length": 15, + "value": "\"livestreamUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6809, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 6996, + "length": 12, + "value": "\"isPlayable\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "BooleanLiteral", + "offset": 7022, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7159, + "length": 15, + "value": "\"downstreamUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7190, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7214, + "length": 16, + "value": "\"playbackHlsUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7246, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7270, + "length": 15, + "value": "\"livestreamUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7301, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7450, + "length": 8, + "value": "\"status\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7474, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7697, + "length": 8, + "value": "\"status\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7721, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 7924, + "length": 7, + "value": "\"state\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "Dictionary", + "offset": 7954, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8045, + "length": 5, + "value": "\"cam\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "BooleanLiteral", + "offset": 8064, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8084, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "BooleanLiteral", + "offset": 8105, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8183, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8222, + "length": 10, + "value": "\"pinnedBy\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8248, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8328, + "length": 38, + "value": "\"Pin state Change for \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8362, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8365, + "length": 17, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8381, + "length": 7, + "value": "\"state\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8507, + "length": 40, + "value": "\"error in pinStateChanged() \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8546, + "length": 14, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8559, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8685, + "length": 6, + "value": "\"mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8707, + "length": 12, + "value": "\"CONFERENCE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8810, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8908, + "length": 13, + "value": "\"transportId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8937, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 8981, + "length": 15, + "value": "\"iceParameters\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "Dictionary", + "offset": 9019, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9104, + "length": 58, + "value": "\"Protoo Noti: restartIce for transportId : \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9161, + "length": 17, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9177, + "length": 15, + "value": "\"iceParameters\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9416, + "length": 82, + "value": "\"handleNotificationError \n data: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9457, + "length": 1, + "value": "\" & peerId: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9497, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9509, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9891, + "length": 7, + "value": "\"video\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9919, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 9929, + "length": 7, + "value": "\"audio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 10186, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 10241, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 10367, + "length": 85, + "value": "\"transport `connect` Event : Transport is about to establish the ICE+DTLS connection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 10978, + "length": 85, + "value": "\"transport `connect` Event : Transport is about to establish the ICE+DTLS connection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 11370, + "length": 59, + "value": "\"Transport Event connectionStateChange: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient+Extension.swift", + "kind": "StringLiteral", + "offset": 11428, + "length": 15, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "BooleanLiteral", + "offset": 1821, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "BooleanLiteral", + "offset": 1897, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 2328, + "length": 17, + "value": "\"AlwaysOnSampler\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 2778, + "length": 18, + "value": "\"AlwaysOffSampler\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "FloatLiteral", + "offset": 3415, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "FloatLiteral", + "offset": 3484, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "BooleanLiteral", + "offset": 4026, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 5210, + "length": 25, + "value": "\"TraceIdRatioBased{%.6f}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 7970, + "length": 215, + "value": "\"ParentBasedSampler{root:\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 8002, + "length": 1, + "value": "\", remoteParentSampled:\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 8046, + "length": 22, + "value": "\" remoteParentNotSampled:\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 8095, + "length": 18, + "value": "\" localParentSampled:\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 8136, + "length": 21, + "value": "\" localParentNotSampled:\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Samplers\/Samplers.swift", + "kind": "StringLiteral", + "offset": 8183, + "length": 1, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "Array", + "offset": 180, + "length": 15, + "value": "[\"q\", \"h\", \"f\"]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "Array", + "offset": 331, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 373, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 464, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 500, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 523, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 589, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 613, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "BooleanLiteral", + "offset": 745, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "BooleanLiteral", + "offset": 919, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 970, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 1008, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "FloatLiteral", + "offset": 1075, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 1177, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 1243, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 1275, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 1703, + "length": 11, + "value": "\"simulcast\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 2048, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 2076, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 2106, + "length": 10, + "value": "\"encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 2374, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 2377, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 2409, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 2445, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 2525, + "length": 3, + "value": "960" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "Array", + "offset": 2606, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 2860, + "length": 3, + "value": "480" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "Array", + "offset": 3249, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 3278, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 3541, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 3566, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 3732, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 3762, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 3823, + "length": 10, + "value": "\"encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 3915, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "BooleanLiteral", + "offset": 3950, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 4191, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 4219, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 4255, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 4291, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 4328, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 4365, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "FloatLiteral", + "offset": 4412, + "length": 4, + "value": "16.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 4419, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "FloatLiteral", + "offset": 4442, + "length": 3, + "value": "4.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 4448, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 5129, + "length": 10, + "value": "\"encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 5278, + "length": 10, + "value": "\"encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 5348, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 5368, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "FloatLiteral", + "offset": 5827, + "length": 4, + "value": "16.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "FloatLiteral", + "offset": 5832, + "length": 3, + "value": "9.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "FloatLiteral", + "offset": 5857, + "length": 3, + "value": "4.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "FloatLiteral", + "offset": 5861, + "length": 3, + "value": "3.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "Dictionary", + "offset": 6090, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6196, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6225, + "length": 12, + "value": "\"oneSixNine\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6409, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 6438, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6506, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 6533, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6605, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6637, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 6658, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6681, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6712, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 6732, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 6755, + "length": 10, + "value": "\"encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "Dictionary", + "offset": 6994, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7084, + "length": 13, + "value": "\"aspectRatio\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7113, + "length": 11, + "value": "\"fourThree\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7296, + "length": 11, + "value": "\"frameRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 7325, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7393, + "length": 9, + "value": "\"bitRate\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 7420, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7492, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7524, + "length": 8, + "value": "\"height\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 7545, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7568, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7599, + "length": 7, + "value": "\"width\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "IntegerLiteral", + "offset": 7619, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", + "kind": "StringLiteral", + "offset": 7642, + "length": 10, + "value": "\"encoding\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SDKConstants.swift", + "kind": "StringLiteral", + "offset": 216, + "length": 31, + "value": "\"wss:\/\/call-api.videosdk.live\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 1227, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 1342, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 1455, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 1568, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 1683, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 1798, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 1912, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2026, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2142, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2258, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2374, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2490, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2601, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2716, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2828, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 2945, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3068, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3189, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3304, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3421, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3536, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3651, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3768, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3885, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4001, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4117, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4235, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4353, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4471, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4589, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4702, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4819, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 4933, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5052, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5177, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5300, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5413, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5528, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5641, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5754, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5869, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 5984, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6098, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6212, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6328, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6444, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6560, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6676, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6787, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 6904, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7140, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7405, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7644, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7776, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7936, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SelectiveVisitor.swift", + "kind": "BooleanLiteral", + "offset": 8019, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 611, + "length": 16, + "value": "\"exception.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 915, + "length": 19, + "value": "\"exception.message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 1515, + "length": 22, + "value": "\"exception.stacktrace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 1789, + "length": 13, + "value": "\"http.method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 2033, + "length": 18, + "value": "\"http.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 2339, + "length": 19, + "value": "\"net.protocol.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 2941, + "length": 22, + "value": "\"net.protocol.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 3596, + "length": 15, + "value": "\"net.peer.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 4160, + "length": 15, + "value": "\"net.peer.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 4417, + "length": 13, + "value": "\"http.scheme\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 5079, + "length": 12, + "value": "\"http.route\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 5873, + "length": 15, + "value": "\"net.host.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 6520, + "length": 15, + "value": "\"net.host.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 6764, + "length": 12, + "value": "\"event.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 7119, + "length": 14, + "value": "\"event.domain\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 7738, + "length": 16, + "value": "\"log.record.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 7969, + "length": 18, + "value": "\"feature_flag.key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 8247, + "length": 28, + "value": "\"feature_flag.provider_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 9171, + "length": 22, + "value": "\"feature_flag.variant\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 9675, + "length": 24, + "value": "\"aws.lambda.invoked_arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 10068, + "length": 22, + "value": "\"cloudevents.event_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 10566, + "length": 26, + "value": "\"cloudevents.event_source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 10933, + "length": 32, + "value": "\"cloudevents.event_spec_version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 11417, + "length": 24, + "value": "\"cloudevents.event_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 11799, + "length": 27, + "value": "\"cloudevents.event_subject\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 12133, + "length": 22, + "value": "\"opentracing.ref_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 12450, + "length": 11, + "value": "\"db.system\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 12784, + "length": 22, + "value": "\"db.connection_string\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 13045, + "length": 9, + "value": "\"db.user\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 13499, + "length": 26, + "value": "\"db.jdbc.driver_classname\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 14192, + "length": 9, + "value": "\"db.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 14476, + "length": 14, + "value": "\"db.statement\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 15284, + "length": 14, + "value": "\"db.operation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 15689, + "length": 20, + "value": "\"net.sock.peer.addr\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 15893, + "length": 20, + "value": "\"net.sock.peer.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 16340, + "length": 17, + "value": "\"net.sock.family\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 16563, + "length": 20, + "value": "\"net.sock.peer.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 16807, + "length": 15, + "value": "\"net.transport\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 17354, + "length": 24, + "value": "\"db.mssql.instance_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 17621, + "length": 24, + "value": "\"db.cassandra.page_size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 18037, + "length": 32, + "value": "\"db.cassandra.consistency_level\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 18727, + "length": 20, + "value": "\"db.cassandra.table\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 18885, + "length": 26, + "value": "\"db.cassandra.idempotence\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 19277, + "length": 42, + "value": "\"db.cassandra.speculative_execution_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 19582, + "length": 29, + "value": "\"db.cassandra.coordinator.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 19856, + "length": 29, + "value": "\"db.cassandra.coordinator.dc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 20314, + "length": 25, + "value": "\"db.redis.database_index\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 20641, + "length": 23, + "value": "\"db.mongodb.collection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 21275, + "length": 14, + "value": "\"db.sql.table\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 21529, + "length": 23, + "value": "\"db.cosmosdb.client_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 21793, + "length": 28, + "value": "\"db.cosmosdb.operation_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 22963, + "length": 21, + "value": "\"user_agent.original\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23234, + "length": 29, + "value": "\"db.cosmosdb.connection_mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23470, + "length": 23, + "value": "\"db.cosmosdb.container\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23629, + "length": 36, + "value": "\"db.cosmosdb.request_content_length\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23894, + "length": 25, + "value": "\"db.cosmosdb.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 24163, + "length": 29, + "value": "\"db.cosmosdb.sub_status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 24444, + "length": 28, + "value": "\"db.cosmosdb.request_charge\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 24748, + "length": 18, + "value": "\"otel.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 25024, + "length": 25, + "value": "\"otel.status_description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 25799, + "length": 14, + "value": "\"faas.trigger\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 26069, + "length": 20, + "value": "\"faas.invocation_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 28331, + "length": 19, + "value": "\"cloud.resource_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 28772, + "length": 26, + "value": "\"faas.document.collection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 29076, + "length": 25, + "value": "\"faas.document.operation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 29481, + "length": 20, + "value": "\"faas.document.time\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 29873, + "length": 20, + "value": "\"faas.document.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 30139, + "length": 13, + "value": "\"http.target\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 31188, + "length": 16, + "value": "\"http.client_ip\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 31436, + "length": 20, + "value": "\"net.sock.host.addr\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 31641, + "length": 20, + "value": "\"net.sock.host.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 32058, + "length": 18, + "value": "\"messaging.system\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 32470, + "length": 21, + "value": "\"messaging.operation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 33192, + "length": 31, + "value": "\"messaging.batch.message_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 33521, + "length": 22, + "value": "\"messaging.message.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 33910, + "length": 35, + "value": "\"messaging.message.conversation_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 34300, + "length": 38, + "value": "\"messaging.message.payload_size_bytes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 34603, + "length": 49, + "value": "\"messaging.message.payload_compressed_size_bytes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35009, + "length": 11, + "value": "\"faas.time\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35324, + "length": 11, + "value": "\"faas.cron\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35523, + "length": 16, + "value": "\"faas.coldstart\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35840, + "length": 19, + "value": "\"faas.invoked_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 36204, + "length": 23, + "value": "\"faas.invoked_provider\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 36544, + "length": 21, + "value": "\"faas.invoked_region\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 36919, + "length": 26, + "value": "\"net.host.connection.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 37425, + "length": 29, + "value": "\"net.host.connection.subtype\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 37662, + "length": 23, + "value": "\"net.host.carrier.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 37889, + "length": 22, + "value": "\"net.host.carrier.mcc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 38115, + "length": 22, + "value": "\"net.host.carrier.mnc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 38399, + "length": 22, + "value": "\"net.host.carrier.icc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 38784, + "length": 14, + "value": "\"peer.service\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 39135, + "length": 12, + "value": "\"enduser.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 39421, + "length": 14, + "value": "\"enduser.role\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 39994, + "length": 15, + "value": "\"enduser.scope\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 40209, + "length": 11, + "value": "\"thread.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 40399, + "length": 13, + "value": "\"thread.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 40675, + "length": 15, + "value": "\"code.function\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 41082, + "length": 16, + "value": "\"code.namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 41423, + "length": 15, + "value": "\"code.filepath\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 41715, + "length": 13, + "value": "\"code.lineno\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 42007, + "length": 13, + "value": "\"code.column\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 42512, + "length": 29, + "value": "\"http.request_content_length\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 43036, + "length": 30, + "value": "\"http.response_content_length\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 43649, + "length": 10, + "value": "\"http.url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 44149, + "length": 19, + "value": "\"http.resend_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 44435, + "length": 12, + "value": "\"rpc.system\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 45113, + "length": 13, + "value": "\"rpc.service\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 45738, + "length": 12, + "value": "\"rpc.method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 46091, + "length": 16, + "value": "\"aws.request_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 46369, + "length": 26, + "value": "\"aws.dynamodb.table_names\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 47122, + "length": 32, + "value": "\"aws.dynamodb.consumed_capacity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 47759, + "length": 38, + "value": "\"aws.dynamodb.item_collection_metrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 48126, + "length": 40, + "value": "\"aws.dynamodb.provisioned_read_capacity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 48499, + "length": 41, + "value": "\"aws.dynamodb.provisioned_write_capacity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 48694, + "length": 30, + "value": "\"aws.dynamodb.consistent_read\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49119, + "length": 25, + "value": "\"aws.dynamodb.projection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49346, + "length": 20, + "value": "\"aws.dynamodb.limit\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49650, + "length": 32, + "value": "\"aws.dynamodb.attributes_to_get\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49917, + "length": 25, + "value": "\"aws.dynamodb.index_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 50214, + "length": 21, + "value": "\"aws.dynamodb.select\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 50778, + "length": 39, + "value": "\"aws.dynamodb.global_secondary_indexes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 51338, + "length": 38, + "value": "\"aws.dynamodb.local_secondary_indexes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 51699, + "length": 36, + "value": "\"aws.dynamodb.exclusive_start_table\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 51967, + "length": 26, + "value": "\"aws.dynamodb.table_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52146, + "length": 27, + "value": "\"aws.dynamodb.scan_forward\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52381, + "length": 22, + "value": "\"aws.dynamodb.segment\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52630, + "length": 29, + "value": "\"aws.dynamodb.total_segments\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52862, + "length": 20, + "value": "\"aws.dynamodb.count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 53106, + "length": 28, + "value": "\"aws.dynamodb.scanned_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 53465, + "length": 36, + "value": "\"aws.dynamodb.attribute_definitions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 54075, + "length": 45, + "value": "\"aws.dynamodb.global_secondary_index_updates\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 54695, + "length": 15, + "value": "\"aws.s3.bucket\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 56595, + "length": 12, + "value": "\"aws.s3.key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 57367, + "length": 20, + "value": "\"aws.s3.copy_source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 58469, + "length": 18, + "value": "\"aws.s3.upload_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 59165, + "length": 15, + "value": "\"aws.s3.delete\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 59944, + "length": 20, + "value": "\"aws.s3.part_number\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 60192, + "length": 24, + "value": "\"graphql.operation.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 60652, + "length": 24, + "value": "\"graphql.operation.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 60998, + "length": 18, + "value": "\"graphql.document\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 61508, + "length": 28, + "value": "\"messaging.destination.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 61999, + "length": 23, + "value": "\"messaging.source.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 62616, + "length": 32, + "value": "\"messaging.destination.template\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 62874, + "length": 33, + "value": "\"messaging.destination.temporary\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 63123, + "length": 33, + "value": "\"messaging.destination.anonymous\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 63720, + "length": 27, + "value": "\"messaging.source.template\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 63963, + "length": 28, + "value": "\"messaging.source.temporary\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 64197, + "length": 28, + "value": "\"messaging.source.anonymous\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 64724, + "length": 23, + "value": "\"messaging.consumer.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 64992, + "length": 44, + "value": "\"messaging.rabbitmq.destination.routing_key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 65642, + "length": 29, + "value": "\"messaging.kafka.message.key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 65972, + "length": 32, + "value": "\"messaging.kafka.consumer.group\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 66259, + "length": 27, + "value": "\"messaging.kafka.client_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 66513, + "length": 39, + "value": "\"messaging.kafka.destination.partition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 66775, + "length": 34, + "value": "\"messaging.kafka.source.partition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67050, + "length": 32, + "value": "\"messaging.kafka.message.offset\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67242, + "length": 35, + "value": "\"messaging.kafka.message.tombstone\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67557, + "length": 30, + "value": "\"messaging.rocketmq.namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67914, + "length": 33, + "value": "\"messaging.rocketmq.client_group\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 68189, + "length": 30, + "value": "\"messaging.rocketmq.client_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 68532, + "length": 47, + "value": "\"messaging.rocketmq.message.delivery_timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 68861, + "length": 45, + "value": "\"messaging.rocketmq.message.delay_time_level\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 69257, + "length": 34, + "value": "\"messaging.rocketmq.message.group\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 69539, + "length": 33, + "value": "\"messaging.rocketmq.message.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 69815, + "length": 32, + "value": "\"messaging.rocketmq.message.tag\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 70151, + "length": 33, + "value": "\"messaging.rocketmq.message.keys\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 70497, + "length": 38, + "value": "\"messaging.rocketmq.consumption_model\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 70839, + "length": 22, + "value": "\"rpc.grpc.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 71206, + "length": 21, + "value": "\"rpc.jsonrpc.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 71753, + "length": 24, + "value": "\"rpc.jsonrpc.request_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72045, + "length": 24, + "value": "\"rpc.jsonrpc.error_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72387, + "length": 27, + "value": "\"rpc.jsonrpc.error_message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72638, + "length": 14, + "value": "\"message.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72956, + "length": 12, + "value": "\"message.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 73105, + "length": 25, + "value": "\"message.compressed_size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 73271, + "length": 27, + "value": "\"message.uncompressed_size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 73641, + "length": 28, + "value": "\"rpc.connect_rpc.error_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 74924, + "length": 19, + "value": "\"exception.escaped\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 75370, + "length": 11, + "value": "\"exception\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 75677, + "length": 9, + "value": "\"browser\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 75797, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 75912, + "length": 5, + "value": "\"k8s\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 76394, + "length": 10, + "value": "\"child_of\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 76540, + "length": 14, + "value": "\"follows_from\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 76394, + "length": 10, + "value": "\"child_of\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 76540, + "length": 14, + "value": "\"follows_from\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 76937, + "length": 11, + "value": "\"other_sql\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77052, + "length": 7, + "value": "\"mssql\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77178, + "length": 14, + "value": "\"mssqlcompact\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77281, + "length": 7, + "value": "\"mysql\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77388, + "length": 8, + "value": "\"oracle\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77485, + "length": 5, + "value": "\"db2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77589, + "length": 12, + "value": "\"postgresql\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77703, + "length": 10, + "value": "\"redshift\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77807, + "length": 6, + "value": "\"hive\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 77912, + "length": 12, + "value": "\"cloudscape\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78026, + "length": 8, + "value": "\"hsqldb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78138, + "length": 10, + "value": "\"progress\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78241, + "length": 7, + "value": "\"maxdb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78341, + "length": 8, + "value": "\"hanadb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78440, + "length": 8, + "value": "\"ingres\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78543, + "length": 10, + "value": "\"firstsql\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78647, + "length": 5, + "value": "\"edb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78755, + "length": 7, + "value": "\"cache\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78881, + "length": 8, + "value": "\"adabas\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 78984, + "length": 10, + "value": "\"firebird\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79090, + "length": 7, + "value": "\"derby\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79194, + "length": 11, + "value": "\"filemaker\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79300, + "length": 10, + "value": "\"informix\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79407, + "length": 11, + "value": "\"instantdb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79515, + "length": 11, + "value": "\"interbase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79619, + "length": 9, + "value": "\"mariadb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79721, + "length": 9, + "value": "\"netezza\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79832, + "length": 11, + "value": "\"pervasive\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 79940, + "length": 11, + "value": "\"pointbase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80042, + "length": 8, + "value": "\"sqlite\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80141, + "length": 8, + "value": "\"sybase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80244, + "length": 10, + "value": "\"teradata\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80347, + "length": 9, + "value": "\"vertica\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80439, + "length": 4, + "value": "\"h2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80546, + "length": 12, + "value": "\"coldfusion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80662, + "length": 11, + "value": "\"cassandra\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80769, + "length": 7, + "value": "\"hbase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80869, + "length": 9, + "value": "\"mongodb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 80967, + "length": 7, + "value": "\"redis\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81071, + "length": 11, + "value": "\"couchbase\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81175, + "length": 9, + "value": "\"couchdb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81296, + "length": 10, + "value": "\"cosmosdb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81408, + "length": 10, + "value": "\"dynamodb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81507, + "length": 7, + "value": "\"neo4j\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81610, + "length": 7, + "value": "\"geode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81722, + "length": 15, + "value": "\"elasticsearch\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81834, + "length": 11, + "value": "\"memcached\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 81946, + "length": 13, + "value": "\"cockroachdb\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 82058, + "length": 12, + "value": "\"opensearch\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 82169, + "length": 12, + "value": "\"clickhouse\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 82280, + "length": 9, + "value": "\"spanner\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 82378, + "length": 7, + "value": "\"trino\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 82947, + "length": 6, + "value": "\"inet\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 83054, + "length": 7, + "value": "\"inet6\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 83172, + "length": 6, + "value": "\"unix\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 83651, + "length": 8, + "value": "\"ip_tcp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 83753, + "length": 8, + "value": "\"ip_udp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 83887, + "length": 6, + "value": "\"pipe\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84006, + "length": 8, + "value": "\"inproc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84131, + "length": 7, + "value": "\"other\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84708, + "length": 5, + "value": "\"all\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84785, + "length": 13, + "value": "\"each_quorum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84860, + "length": 8, + "value": "\"quorum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84942, + "length": 14, + "value": "\"local_quorum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85012, + "length": 5, + "value": "\"one\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85073, + "length": 5, + "value": "\"two\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85138, + "length": 7, + "value": "\"three\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85213, + "length": 11, + "value": "\"local_one\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85280, + "length": 5, + "value": "\"any\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85347, + "length": 8, + "value": "\"serial\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85429, + "length": 14, + "value": "\"local_serial\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84708, + "length": 5, + "value": "\"all\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84785, + "length": 13, + "value": "\"each_quorum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84860, + "length": 8, + "value": "\"quorum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 84942, + "length": 14, + "value": "\"local_quorum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85012, + "length": 5, + "value": "\"one\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85073, + "length": 5, + "value": "\"two\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85138, + "length": 7, + "value": "\"three\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85213, + "length": 11, + "value": "\"local_one\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85280, + "length": 5, + "value": "\"any\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85347, + "length": 8, + "value": "\"serial\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85429, + "length": 14, + "value": "\"local_serial\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85729, + "length": 9, + "value": "\"Invalid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85844, + "length": 8, + "value": "\"Create\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 85956, + "length": 7, + "value": "\"Patch\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86065, + "length": 6, + "value": "\"Read\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86182, + "length": 10, + "value": "\"ReadFeed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86298, + "length": 8, + "value": "\"Delete\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86414, + "length": 9, + "value": "\"Replace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86531, + "length": 9, + "value": "\"Execute\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86644, + "length": 7, + "value": "\"Query\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86753, + "length": 6, + "value": "\"Head\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86870, + "length": 10, + "value": "\"HeadFeed\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 86986, + "length": 8, + "value": "\"Upsert\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 87098, + "length": 7, + "value": "\"Batch\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 87218, + "length": 11, + "value": "\"QueryPlan\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 87358, + "length": 19, + "value": "\"ExecuteJavaScript\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 87840, + "length": 9, + "value": "\"gateway\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 87922, + "length": 8, + "value": "\"direct\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 87840, + "length": 9, + "value": "\"gateway\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 87922, + "length": 8, + "value": "\"direct\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88289, + "length": 4, + "value": "\"OK\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88379, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88289, + "length": 4, + "value": "\"OK\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88379, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88700, + "length": 12, + "value": "\"datasource\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88813, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88952, + "length": 8, + "value": "\"pubsub\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 89063, + "length": 7, + "value": "\"timer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 89152, + "length": 7, + "value": "\"other\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88700, + "length": 12, + "value": "\"datasource\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88813, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 88952, + "length": 8, + "value": "\"pubsub\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 89063, + "length": 7, + "value": "\"timer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 89152, + "length": 7, + "value": "\"other\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 89502, + "length": 8, + "value": "\"insert\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 89632, + "length": 6, + "value": "\"edit\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 89761, + "length": 8, + "value": "\"delete\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 90344, + "length": 9, + "value": "\"publish\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 90456, + "length": 9, + "value": "\"receive\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 90568, + "length": 9, + "value": "\"process\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 91088, + "length": 15, + "value": "\"alibaba_cloud\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 91215, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 91330, + "length": 7, + "value": "\"azure\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 91451, + "length": 5, + "value": "\"gcp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 91571, + "length": 15, + "value": "\"tencent_cloud\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 92105, + "length": 6, + "value": "\"wifi\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 92213, + "length": 7, + "value": "\"wired\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 92320, + "length": 6, + "value": "\"cell\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 92440, + "length": 13, + "value": "\"unavailable\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 92559, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 93211, + "length": 6, + "value": "\"gprs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 93320, + "length": 6, + "value": "\"edge\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 93429, + "length": 6, + "value": "\"umts\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 93538, + "length": 6, + "value": "\"cdma\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 93655, + "length": 8, + "value": "\"evdo_0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 93774, + "length": 8, + "value": "\"evdo_a\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 93904, + "length": 16, + "value": "\"cdma2000_1xrtt\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94025, + "length": 7, + "value": "\"hsdpa\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94137, + "length": 7, + "value": "\"hsupa\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94247, + "length": 6, + "value": "\"hspa\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94356, + "length": 6, + "value": "\"iden\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94473, + "length": 8, + "value": "\"evdo_b\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94582, + "length": 5, + "value": "\"lte\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94692, + "length": 7, + "value": "\"ehrpd\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94804, + "length": 7, + "value": "\"hspap\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 94912, + "length": 5, + "value": "\"gsm\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 95027, + "length": 10, + "value": "\"td_scdma\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 95142, + "length": 7, + "value": "\"iwlan\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 95263, + "length": 4, + "value": "\"nr\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 95402, + "length": 7, + "value": "\"nrnsa\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 95515, + "length": 8, + "value": "\"lte_ca\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 95964, + "length": 6, + "value": "\"grpc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96065, + "length": 10, + "value": "\"java_rmi\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96172, + "length": 12, + "value": "\"dotnet_wcf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96287, + "length": 14, + "value": "\"apache_dubbo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96402, + "length": 13, + "value": "\"connect_rpc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96861, + "length": 7, + "value": "\"query\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96942, + "length": 10, + "value": "\"mutation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97034, + "length": 14, + "value": "\"subscription\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96861, + "length": 7, + "value": "\"query\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 96942, + "length": 10, + "value": "\"mutation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97034, + "length": 14, + "value": "\"subscription\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97280, + "length": 8, + "value": "\"normal\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97354, + "length": 6, + "value": "\"fifo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97428, + "length": 7, + "value": "\"delay\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97515, + "length": 13, + "value": "\"transaction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97280, + "length": 8, + "value": "\"normal\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97354, + "length": 6, + "value": "\"fifo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97428, + "length": 7, + "value": "\"delay\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97515, + "length": 13, + "value": "\"transaction\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97838, + "length": 12, + "value": "\"clustering\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97942, + "length": 14, + "value": "\"broadcasting\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97838, + "length": 12, + "value": "\"clustering\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 97942, + "length": 14, + "value": "\"broadcasting\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98239, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98308, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98373, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98456, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98541, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98610, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98689, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98774, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98861, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98950, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99015, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99091, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99169, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99239, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99313, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99383, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99465, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98239, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98308, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98373, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98456, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98541, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98610, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98689, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98774, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98861, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98950, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99015, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99091, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99169, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99239, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99313, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99383, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99465, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98239, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98308, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98373, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98456, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98541, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98610, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98689, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98774, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98861, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 98950, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99015, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99091, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99169, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99239, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99313, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99383, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "IntegerLiteral", + "offset": 99465, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 99680, + "length": 6, + "value": "\"SENT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 99752, + "length": 10, + "value": "\"RECEIVED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 99680, + "length": 6, + "value": "\"SENT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 99752, + "length": 10, + "value": "\"RECEIVED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100093, + "length": 11, + "value": "\"cancelled\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100168, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100259, + "length": 18, + "value": "\"invalid_argument\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100361, + "length": 19, + "value": "\"deadline_exceeded\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100448, + "length": 11, + "value": "\"not_found\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100537, + "length": 16, + "value": "\"already_exists\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100637, + "length": 19, + "value": "\"permission_denied\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100742, + "length": 20, + "value": "\"resource_exhausted\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100850, + "length": 21, + "value": "\"failed_precondition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100935, + "length": 9, + "value": "\"aborted\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101018, + "length": 14, + "value": "\"out_of_range\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101108, + "length": 15, + "value": "\"unimplemented\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101191, + "length": 10, + "value": "\"internal\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101273, + "length": 13, + "value": "\"unavailable\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101354, + "length": 11, + "value": "\"data_loss\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101445, + "length": 17, + "value": "\"unauthenticated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100093, + "length": 11, + "value": "\"cancelled\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100168, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100259, + "length": 18, + "value": "\"invalid_argument\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100361, + "length": 19, + "value": "\"deadline_exceeded\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100448, + "length": 11, + "value": "\"not_found\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100537, + "length": 16, + "value": "\"already_exists\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100637, + "length": 19, + "value": "\"permission_denied\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100742, + "length": 20, + "value": "\"resource_exhausted\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100850, + "length": 21, + "value": "\"failed_precondition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 100935, + "length": 9, + "value": "\"aborted\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101018, + "length": 14, + "value": "\"out_of_range\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101108, + "length": 15, + "value": "\"unimplemented\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101191, + "length": 10, + "value": "\"internal\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101273, + "length": 13, + "value": "\"unavailable\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101354, + "length": 11, + "value": "\"data_loss\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 101445, + "length": 17, + "value": "\"unauthenticated\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 611, + "length": 16, + "value": "\"exception.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 915, + "length": 19, + "value": "\"exception.message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 1515, + "length": 22, + "value": "\"exception.stacktrace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 1789, + "length": 13, + "value": "\"http.method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 2033, + "length": 18, + "value": "\"http.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 2339, + "length": 19, + "value": "\"net.protocol.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 2941, + "length": 22, + "value": "\"net.protocol.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 3596, + "length": 15, + "value": "\"net.peer.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 4160, + "length": 15, + "value": "\"net.peer.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 4417, + "length": 13, + "value": "\"http.scheme\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 5079, + "length": 12, + "value": "\"http.route\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 5873, + "length": 15, + "value": "\"net.host.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 6520, + "length": 15, + "value": "\"net.host.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 6764, + "length": 12, + "value": "\"event.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 7119, + "length": 14, + "value": "\"event.domain\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 7738, + "length": 16, + "value": "\"log.record.uid\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 7969, + "length": 18, + "value": "\"feature_flag.key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 8247, + "length": 28, + "value": "\"feature_flag.provider_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 9171, + "length": 22, + "value": "\"feature_flag.variant\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 9675, + "length": 24, + "value": "\"aws.lambda.invoked_arn\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 10068, + "length": 22, + "value": "\"cloudevents.event_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 10566, + "length": 26, + "value": "\"cloudevents.event_source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 10933, + "length": 32, + "value": "\"cloudevents.event_spec_version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 11417, + "length": 24, + "value": "\"cloudevents.event_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 11799, + "length": 27, + "value": "\"cloudevents.event_subject\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 12133, + "length": 22, + "value": "\"opentracing.ref_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 12450, + "length": 11, + "value": "\"db.system\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 12784, + "length": 22, + "value": "\"db.connection_string\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 13045, + "length": 9, + "value": "\"db.user\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 13499, + "length": 26, + "value": "\"db.jdbc.driver_classname\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 14192, + "length": 9, + "value": "\"db.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 14476, + "length": 14, + "value": "\"db.statement\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 15284, + "length": 14, + "value": "\"db.operation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 15689, + "length": 20, + "value": "\"net.sock.peer.addr\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 15893, + "length": 20, + "value": "\"net.sock.peer.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 16340, + "length": 17, + "value": "\"net.sock.family\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 16563, + "length": 20, + "value": "\"net.sock.peer.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 16807, + "length": 15, + "value": "\"net.transport\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 17354, + "length": 24, + "value": "\"db.mssql.instance_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 17621, + "length": 24, + "value": "\"db.cassandra.page_size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 18037, + "length": 32, + "value": "\"db.cassandra.consistency_level\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 18727, + "length": 20, + "value": "\"db.cassandra.table\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 18885, + "length": 26, + "value": "\"db.cassandra.idempotence\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 19277, + "length": 42, + "value": "\"db.cassandra.speculative_execution_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 19582, + "length": 29, + "value": "\"db.cassandra.coordinator.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 19856, + "length": 29, + "value": "\"db.cassandra.coordinator.dc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 20314, + "length": 25, + "value": "\"db.redis.database_index\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 20641, + "length": 23, + "value": "\"db.mongodb.collection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 21275, + "length": 14, + "value": "\"db.sql.table\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 21529, + "length": 23, + "value": "\"db.cosmosdb.client_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 21793, + "length": 28, + "value": "\"db.cosmosdb.operation_type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 22963, + "length": 21, + "value": "\"user_agent.original\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23234, + "length": 29, + "value": "\"db.cosmosdb.connection_mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23470, + "length": 23, + "value": "\"db.cosmosdb.container\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23629, + "length": 36, + "value": "\"db.cosmosdb.request_content_length\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 23894, + "length": 25, + "value": "\"db.cosmosdb.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 24163, + "length": 29, + "value": "\"db.cosmosdb.sub_status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 24444, + "length": 28, + "value": "\"db.cosmosdb.request_charge\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 24748, + "length": 18, + "value": "\"otel.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 25024, + "length": 25, + "value": "\"otel.status_description\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 25799, + "length": 14, + "value": "\"faas.trigger\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 26069, + "length": 20, + "value": "\"faas.invocation_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 28331, + "length": 19, + "value": "\"cloud.resource_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 28772, + "length": 26, + "value": "\"faas.document.collection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 29076, + "length": 25, + "value": "\"faas.document.operation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 29481, + "length": 20, + "value": "\"faas.document.time\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 29873, + "length": 20, + "value": "\"faas.document.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 30139, + "length": 13, + "value": "\"http.target\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 31188, + "length": 16, + "value": "\"http.client_ip\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 31436, + "length": 20, + "value": "\"net.sock.host.addr\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 31641, + "length": 20, + "value": "\"net.sock.host.port\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 32058, + "length": 18, + "value": "\"messaging.system\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 32470, + "length": 21, + "value": "\"messaging.operation\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 33192, + "length": 31, + "value": "\"messaging.batch.message_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 33521, + "length": 22, + "value": "\"messaging.message.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 33910, + "length": 35, + "value": "\"messaging.message.conversation_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 34300, + "length": 38, + "value": "\"messaging.message.payload_size_bytes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 34603, + "length": 49, + "value": "\"messaging.message.payload_compressed_size_bytes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35009, + "length": 11, + "value": "\"faas.time\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35324, + "length": 11, + "value": "\"faas.cron\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35523, + "length": 16, + "value": "\"faas.coldstart\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 35840, + "length": 19, + "value": "\"faas.invoked_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 36204, + "length": 23, + "value": "\"faas.invoked_provider\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 36544, + "length": 21, + "value": "\"faas.invoked_region\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 36919, + "length": 26, + "value": "\"net.host.connection.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 37425, + "length": 29, + "value": "\"net.host.connection.subtype\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 37662, + "length": 23, + "value": "\"net.host.carrier.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 37889, + "length": 22, + "value": "\"net.host.carrier.mcc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 38115, + "length": 22, + "value": "\"net.host.carrier.mnc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 38399, + "length": 22, + "value": "\"net.host.carrier.icc\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 38784, + "length": 14, + "value": "\"peer.service\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 39135, + "length": 12, + "value": "\"enduser.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 39421, + "length": 14, + "value": "\"enduser.role\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 39994, + "length": 15, + "value": "\"enduser.scope\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 40209, + "length": 11, + "value": "\"thread.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 40399, + "length": 13, + "value": "\"thread.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 40675, + "length": 15, + "value": "\"code.function\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 41082, + "length": 16, + "value": "\"code.namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 41423, + "length": 15, + "value": "\"code.filepath\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 41715, + "length": 13, + "value": "\"code.lineno\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 42007, + "length": 13, + "value": "\"code.column\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 42512, + "length": 29, + "value": "\"http.request_content_length\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 43036, + "length": 30, + "value": "\"http.response_content_length\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 43649, + "length": 10, + "value": "\"http.url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 44149, + "length": 19, + "value": "\"http.resend_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 44435, + "length": 12, + "value": "\"rpc.system\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 45113, + "length": 13, + "value": "\"rpc.service\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 45738, + "length": 12, + "value": "\"rpc.method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 46091, + "length": 16, + "value": "\"aws.request_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 46369, + "length": 26, + "value": "\"aws.dynamodb.table_names\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 47122, + "length": 32, + "value": "\"aws.dynamodb.consumed_capacity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 47759, + "length": 38, + "value": "\"aws.dynamodb.item_collection_metrics\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 48126, + "length": 40, + "value": "\"aws.dynamodb.provisioned_read_capacity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 48499, + "length": 41, + "value": "\"aws.dynamodb.provisioned_write_capacity\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 48694, + "length": 30, + "value": "\"aws.dynamodb.consistent_read\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49119, + "length": 25, + "value": "\"aws.dynamodb.projection\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49346, + "length": 20, + "value": "\"aws.dynamodb.limit\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49650, + "length": 32, + "value": "\"aws.dynamodb.attributes_to_get\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 49917, + "length": 25, + "value": "\"aws.dynamodb.index_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 50214, + "length": 21, + "value": "\"aws.dynamodb.select\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 50778, + "length": 39, + "value": "\"aws.dynamodb.global_secondary_indexes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 51338, + "length": 38, + "value": "\"aws.dynamodb.local_secondary_indexes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 51699, + "length": 36, + "value": "\"aws.dynamodb.exclusive_start_table\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 51967, + "length": 26, + "value": "\"aws.dynamodb.table_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52146, + "length": 27, + "value": "\"aws.dynamodb.scan_forward\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52381, + "length": 22, + "value": "\"aws.dynamodb.segment\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52630, + "length": 29, + "value": "\"aws.dynamodb.total_segments\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 52862, + "length": 20, + "value": "\"aws.dynamodb.count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 53106, + "length": 28, + "value": "\"aws.dynamodb.scanned_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 53465, + "length": 36, + "value": "\"aws.dynamodb.attribute_definitions\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 54075, + "length": 45, + "value": "\"aws.dynamodb.global_secondary_index_updates\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 54695, + "length": 15, + "value": "\"aws.s3.bucket\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 56595, + "length": 12, + "value": "\"aws.s3.key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 57367, + "length": 20, + "value": "\"aws.s3.copy_source\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 58469, + "length": 18, + "value": "\"aws.s3.upload_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 59165, + "length": 15, + "value": "\"aws.s3.delete\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 59944, + "length": 20, + "value": "\"aws.s3.part_number\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 60192, + "length": 24, + "value": "\"graphql.operation.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 60652, + "length": 24, + "value": "\"graphql.operation.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 60998, + "length": 18, + "value": "\"graphql.document\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 61508, + "length": 28, + "value": "\"messaging.destination.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 61999, + "length": 23, + "value": "\"messaging.source.name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 62616, + "length": 32, + "value": "\"messaging.destination.template\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 62874, + "length": 33, + "value": "\"messaging.destination.temporary\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 63123, + "length": 33, + "value": "\"messaging.destination.anonymous\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 63720, + "length": 27, + "value": "\"messaging.source.template\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 63963, + "length": 28, + "value": "\"messaging.source.temporary\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 64197, + "length": 28, + "value": "\"messaging.source.anonymous\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 64724, + "length": 23, + "value": "\"messaging.consumer.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 64992, + "length": 44, + "value": "\"messaging.rabbitmq.destination.routing_key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 65642, + "length": 29, + "value": "\"messaging.kafka.message.key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 65972, + "length": 32, + "value": "\"messaging.kafka.consumer.group\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 66259, + "length": 27, + "value": "\"messaging.kafka.client_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 66513, + "length": 39, + "value": "\"messaging.kafka.destination.partition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 66775, + "length": 34, + "value": "\"messaging.kafka.source.partition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67050, + "length": 32, + "value": "\"messaging.kafka.message.offset\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67242, + "length": 35, + "value": "\"messaging.kafka.message.tombstone\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67557, + "length": 30, + "value": "\"messaging.rocketmq.namespace\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 67914, + "length": 33, + "value": "\"messaging.rocketmq.client_group\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 68189, + "length": 30, + "value": "\"messaging.rocketmq.client_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 68532, + "length": 47, + "value": "\"messaging.rocketmq.message.delivery_timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 68861, + "length": 45, + "value": "\"messaging.rocketmq.message.delay_time_level\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 69257, + "length": 34, + "value": "\"messaging.rocketmq.message.group\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 69539, + "length": 33, + "value": "\"messaging.rocketmq.message.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 69815, + "length": 32, + "value": "\"messaging.rocketmq.message.tag\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 70151, + "length": 33, + "value": "\"messaging.rocketmq.message.keys\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 70497, + "length": 38, + "value": "\"messaging.rocketmq.consumption_model\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 70839, + "length": 22, + "value": "\"rpc.grpc.status_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 71206, + "length": 21, + "value": "\"rpc.jsonrpc.version\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 71753, + "length": 24, + "value": "\"rpc.jsonrpc.request_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72045, + "length": 24, + "value": "\"rpc.jsonrpc.error_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72387, + "length": 27, + "value": "\"rpc.jsonrpc.error_message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72638, + "length": 14, + "value": "\"message.type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 72956, + "length": 12, + "value": "\"message.id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 73105, + "length": 25, + "value": "\"message.compressed_size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 73271, + "length": 27, + "value": "\"message.uncompressed_size\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 73641, + "length": 28, + "value": "\"rpc.connect_rpc.error_code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 74924, + "length": 19, + "value": "\"exception.escaped\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SemanticAttributes.swift", + "kind": "StringLiteral", + "offset": 75370, + "length": 11, + "value": "\"exception\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 197, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 209, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 226, + "length": 6, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 243, + "length": 6, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 260, + "length": 5, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 276, + "length": 6, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 293, + "length": 6, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 6, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 327, + "length": 4, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 342, + "length": 5, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 358, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 374, + "length": 5, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 390, + "length": 4, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 405, + "length": 5, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 5, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 437, + "length": 5, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 453, + "length": 5, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 6, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 486, + "length": 6, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 503, + "length": 6, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 520, + "length": 5, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 536, + "length": 6, + "value": "22" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 553, + "length": 6, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 570, + "length": 6, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 685, + "length": 7, + "value": "\"TRACE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 742, + "length": 8, + "value": "\"TRACE2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 800, + "length": 8, + "value": "\"TRACE3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 858, + "length": 8, + "value": "\"TRACE4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 915, + "length": 7, + "value": "\"DEBUG\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 972, + "length": 8, + "value": "\"DEBUG2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1030, + "length": 8, + "value": "\"DEBUG3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1088, + "length": 8, + "value": "\"DEBUG4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1144, + "length": 6, + "value": "\"INFO\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1199, + "length": 7, + "value": "\"INFO2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1255, + "length": 7, + "value": "\"INFO3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1311, + "length": 7, + "value": "\"INFO4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 6, + "value": "\"WARN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1421, + "length": 7, + "value": "\"WARN2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1477, + "length": 7, + "value": "\"WARN3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1533, + "length": 7, + "value": "\"WARN4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1589, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1646, + "length": 8, + "value": "\"ERROR2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1704, + "length": 8, + "value": "\"ERROR3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1762, + "length": 8, + "value": "\"ERROR4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1819, + "length": 7, + "value": "\"FATAL\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1876, + "length": 8, + "value": "\"FATAL2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1934, + "length": 8, + "value": "\"FATAL3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "StringLiteral", + "offset": 1992, + "length": 8, + "value": "\"FATAL4\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 197, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 209, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 226, + "length": 6, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 243, + "length": 6, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 260, + "length": 5, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 276, + "length": 6, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 293, + "length": 6, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 6, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 327, + "length": 4, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 342, + "length": 5, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 358, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 374, + "length": 5, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 390, + "length": 4, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 405, + "length": 5, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 5, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 437, + "length": 5, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 453, + "length": 5, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 6, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 486, + "length": 6, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 503, + "length": 6, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 520, + "length": 5, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 536, + "length": 6, + "value": "22" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 553, + "length": 6, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 570, + "length": 6, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 197, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 209, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 226, + "length": 6, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 243, + "length": 6, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 260, + "length": 5, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 276, + "length": 6, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 293, + "length": 6, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 6, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 327, + "length": 4, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 342, + "length": 5, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 358, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 374, + "length": 5, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 390, + "length": 4, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 405, + "length": 5, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 5, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 437, + "length": 5, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 453, + "length": 5, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 6, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 486, + "length": 6, + "value": "19" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 503, + "length": 6, + "value": "20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 520, + "length": 5, + "value": "21" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 536, + "length": 6, + "value": "22" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 553, + "length": 6, + "value": "23" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Logs\/Severity.swift", + "kind": "IntegerLiteral", + "offset": 570, + "length": 6, + "value": "24" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SimpleExtensionMap.swift", + "kind": "BooleanLiteral", + "offset": 2728, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SimpleExtensionMap.swift", + "kind": "BooleanLiteral", + "offset": 2785, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/SimpleSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 457, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/SimpleSpanProcessor.swift", + "kind": "StringLiteral", + "offset": 516, + "length": 38, + "value": "\"io.opentelemetry.simplespanprocessor\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/SimpleSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 590, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanProcessors\/SimpleSpanProcessor.swift", + "kind": "BooleanLiteral", + "offset": 627, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 997, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "Dictionary", + "offset": 1095, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1226, + "length": 31, + "value": "\"wss:\/\/call-api.videosdk.live\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1260, + "length": 10, + "value": "\"?roomId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1286, + "length": 10, + "value": "\"&peerId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1328, + "length": 10, + "value": "\"&secret=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1449, + "length": 8, + "value": "\"protoo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1479, + "length": 24, + "value": "\"Sec-WebSocket-Protocol\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1774, + "length": 8, + "value": "\"wss:\/\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1791, + "length": 11, + "value": "\"\/?roomId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1818, + "length": 10, + "value": "\"&peerId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1860, + "length": 10, + "value": "\"&secret=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 1895, + "length": 8, + "value": "\"&mode=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2014, + "length": 8, + "value": "\"protoo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2044, + "length": 24, + "value": "\"Sec-WebSocket-Protocol\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2772, + "length": 13, + "value": "\"displayName\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2829, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2839, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2858, + "length": 8, + "value": "\"secret\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2901, + "length": 17, + "value": "\"rtpCapabilities\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2958, + "length": 12, + "value": "\"deviceInfo\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 2990, + "length": 9, + "value": "\"sdkType\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3001, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3024, + "length": 12, + "value": "\"sdkVersion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3067, + "length": 10, + "value": "\"platform\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3079, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3102, + "length": 17, + "value": "\"deviceUserAgent\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3143, + "length": 7, + "value": "\"model\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3152, + "length": 25, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3237, + "length": 11, + "value": "\"osVersion\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 3551, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 3558, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3610, + "length": 10, + "value": "\"forceTcp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 3622, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3641, + "length": 11, + "value": "\"producing\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3677, + "length": 11, + "value": "\"consuming\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3950, + "length": 13, + "value": "\"transportId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 3990, + "length": 16, + "value": "\"dtlsParameters\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 4340, + "length": 13, + "value": "\"transportId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 4380, + "length": 6, + "value": "\"kind\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 4406, + "length": 15, + "value": "\"rtpParameters\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 4459, + "length": 9, + "value": "\"appData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 4682, + "length": 12, + "value": "\"producerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "Dictionary", + "offset": 4983, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 5000, + "length": 12, + "value": "\"webhookUrl\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 5075, + "length": 12, + "value": "\"awsDirPath\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 5156, + "length": 8, + "value": "\"config\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 5518, + "length": 9, + "value": "\"outputs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "Dictionary", + "offset": 5914, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 5987, + "length": 8, + "value": "\"config\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 6217, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 6405, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 6596, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 6790, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 6978, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 7245, + "length": 8, + "value": "\"peerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 7263, + "length": 7, + "value": "\"state\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "Dictionary", + "offset": 7637, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 7708, + "length": 7, + "value": "\"topic\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 7736, + "length": 9, + "value": "\"message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 7768, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 7959, + "length": 7, + "value": "\"topic\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 8141, + "length": 7, + "value": "\"topic\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 8469, + "length": 12, + "value": "\"consumerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 8667, + "length": 12, + "value": "\"consumerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 8930, + "length": 12, + "value": "\"consumerId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 8968, + "length": 14, + "value": "\"spatialLayer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 9010, + "length": 15, + "value": "\"temporalLayer\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 9294, + "length": 6, + "value": "\"mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 9535, + "length": 15, + "value": "\"participantId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 9568, + "length": 6, + "value": "\"mode\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 9808, + "length": 13, + "value": "\"transportId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "Dictionary", + "offset": 10101, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 10233, + "length": 8, + "value": "\"method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 10271, + "length": 8, + "value": "\"roomId\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 10305, + "length": 9, + "value": "\"request\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 10316, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 10334, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 10363, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "Dictionary", + "offset": 10432, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "IntegerLiteral", + "offset": 10490, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "Dictionary", + "offset": 11070, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11129, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11158, + "length": 10, + "value": "\"response\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 11170, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11188, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 11194, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11212, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11583, + "length": 36, + "value": "\"websocket is connected: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11618, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 11647, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11813, + "length": 57, + "value": "\"websocket is disconnected: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11850, + "length": 4, + "value": "\" with code: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 11869, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 11942, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12095, + "length": 10, + "value": "\"response\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12150, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12274, + "length": 8, + "value": "\"method\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12482, + "length": 42, + "value": "\"unknown protoo request.method \n \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12523, + "length": 13, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12535, + "length": 7, + "value": "\"ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 12623, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "BooleanLiteral", + "offset": 12747, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12818, + "length": 46, + "value": "\"websocket encountered an error: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12863, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12897, + "length": 41, + "value": "\"Meeting failed to connect. \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 12937, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 13000, + "length": 59, + "value": "\"websocket encountered an error: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 13058, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 13092, + "length": 54, + "value": "\"Meeting failed to connect. \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 13145, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 13191, + "length": 32, + "value": "\"websocket encountered an error\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "kind": "StringLiteral", + "offset": 13256, + "length": 28, + "value": "\"Meeting failed to connect.\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "StringLiteral", + "offset": 3364, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "StringLiteral", + "offset": 3550, + "length": 16, + "value": "\".SourceContext\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "IntegerLiteral", + "offset": 3623, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "StringLiteral", + "offset": 3643, + "length": 11, + "value": "\"file_name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "IntegerLiteral", + "offset": 4069, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "IntegerLiteral", + "offset": 4355, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "BooleanLiteral", + "offset": 4569, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "BooleanLiteral", + "offset": 4630, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/source_context.pb.swift", + "kind": "BooleanLiteral", + "offset": 4648, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Span.swift", + "kind": "IntegerLiteral", + "offset": 4850, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Span.swift", + "kind": "IntegerLiteral", + "offset": 4858, + "length": 3, + "value": "400" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Span.swift", + "kind": "IntegerLiteral", + "offset": 4904, + "length": 3, + "value": "400" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Span.swift", + "kind": "IntegerLiteral", + "offset": 4912, + "length": 3, + "value": "600" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanBuilderSdk.swift", + "kind": "BooleanLiteral", + "offset": 411, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanBuilderSdk.swift", + "kind": "BooleanLiteral", + "offset": 487, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanBuilderSdk.swift", + "kind": "IntegerLiteral", + "offset": 944, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanBuilderSdk.swift", + "kind": "BooleanLiteral", + "offset": 1039, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanBuilderSdk.swift", + "kind": "IntegerLiteral", + "offset": 2514, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanBuilderSdk.swift", + "kind": "BooleanLiteral", + "offset": 3522, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanBuilderSdk.swift", + "kind": "BooleanLiteral", + "offset": 5380, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanContext.swift", + "kind": "BooleanLiteral", + "offset": 2021, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanContext.swift", + "kind": "BooleanLiteral", + "offset": 2940, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanContext.swift", + "kind": "StringLiteral", + "offset": 3447, + "length": 99, + "value": "\"SpanContext{traceId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanContext.swift", + "kind": "StringLiteral", + "offset": 3478, + "length": 1, + "value": "\", spanId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanContext.swift", + "kind": "StringLiteral", + "offset": 3496, + "length": 1, + "value": "\", traceFlags=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanContext.swift", + "kind": "StringLiteral", + "offset": 3522, + "length": 1, + "value": "\"}, isRemote=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanContext.swift", + "kind": "StringLiteral", + "offset": 3545, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Data\/SpanData.swift", + "kind": "BooleanLiteral", + "offset": 1806, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Data\/SpanData.swift", + "kind": "BooleanLiteral", + "offset": 1921, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Data\/SpanData.swift", + "kind": "IntegerLiteral", + "offset": 2279, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Data\/SpanData.swift", + "kind": "IntegerLiteral", + "offset": 2611, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/Data\/SpanData.swift", + "kind": "IntegerLiteral", + "offset": 2958, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 352, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 396, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 1796, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 1826, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 2391, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 2838, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 3296, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 5065, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 5197, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 5229, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "IntegerLiteral", + "offset": 5310, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "StringLiteral", + "offset": 5525, + "length": 9, + "value": "\"%016llx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "StringLiteral", + "offset": 5982, + "length": 29, + "value": "\"SpanId{spanId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/SpanId.swift", + "kind": "StringLiteral", + "offset": 6009, + "length": 1, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 545, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 664, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 795, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 923, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1156, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1174, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1369, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1387, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1580, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1598, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1817, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 1835, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 2052, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/SpanLimits.swift", + "kind": "IntegerLiteral", + "offset": 2070, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "IntegerLiteral", + "offset": 1200, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "StringLiteral", + "offset": 1308, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "IntegerLiteral", + "offset": 1459, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "IntegerLiteral", + "offset": 1561, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "IntegerLiteral", + "offset": 1662, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "IntegerLiteral", + "offset": 1762, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "IntegerLiteral", + "offset": 1863, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "IntegerLiteral", + "offset": 2771, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/SPBStringUtils.swift", + "kind": "BooleanLiteral", + "offset": 3039, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/StableMeterProviderSdk.swift", + "kind": "StringLiteral", + "offset": 249, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/StableMeterSharedState.swift", + "kind": "IntegerLiteral", + "offset": 2320, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/StableMeterSharedState.swift", + "kind": "IntegerLiteral", + "offset": 2362, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 800, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 817, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 827, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 4738, + "length": 19, + "value": "\"VideoSDKRTC.StableHistogramData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 5065, + "length": 30, + "value": "\"VideoSDKRTC.StableExponentialHistogramData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 5394, + "length": 15, + "value": "\"VideoSDKRTC.StableGaugeData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 5708, + "length": 13, + "value": "\"VideoSDKRTC.StableSumData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/StableMetricData.swift", + "kind": "StringLiteral", + "offset": 6020, + "length": 17, + "value": "\"VideoSDKRTC.StableSummaryData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/StableObservableMeasurement.swift", + "kind": "IntegerLiteral", + "offset": 485, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/StableObservableMeasurement.swift", + "kind": "IntegerLiteral", + "offset": 517, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exporter\/StablePeriodicMeterReaderBuilder.swift", + "kind": "FloatLiteral", + "offset": 277, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exporter\/StablePeriodicMetricReaderSdk.swift", + "kind": "StringLiteral", + "offset": 300, + "length": 63, + "value": "\"org.opentelemetry.StablePeriodicMetricReaderSdk.scheduleQueue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Exporter\/StablePeriodicMetricReaderSdk.swift", + "kind": "FloatLiteral", + "offset": 550, + "length": 4, + "value": "60.0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/StableViewRegistry.swift", + "kind": "StringLiteral", + "offset": 545, + "length": 4, + "value": "\".*\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/StableViewRegistry.swift", + "kind": "BooleanLiteral", + "offset": 1085, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/StableViewRegistry.swift", + "kind": "BooleanLiteral", + "offset": 1275, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/StableViewRegistry.swift", + "kind": "BooleanLiteral", + "offset": 1405, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/StableViewRegistry.swift", + "kind": "BooleanLiteral", + "offset": 1548, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/StableViewRegistry.swift", + "kind": "BooleanLiteral", + "offset": 1693, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/View\/StableViewRegistry.swift", + "kind": "BooleanLiteral", + "offset": 1733, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "BooleanLiteral", + "offset": 767, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "BooleanLiteral", + "offset": 797, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 907, + "length": 4, + "value": "\"ok\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 960, + "length": 7, + "value": "\"unset\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 1032, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "IntegerLiteral", + "offset": 1151, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "IntegerLiteral", + "offset": 1201, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "IntegerLiteral", + "offset": 1267, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 1443, + "length": 56, + "value": "\"Status{statusCode=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 1469, + "length": 1, + "value": "\", description=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 1, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 1536, + "length": 28, + "value": "\"Status{statusCode=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 1562, + "length": 1, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "IntegerLiteral", + "offset": 2126, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Status.swift", + "kind": "StringLiteral", + "offset": 2268, + "length": 45, + "value": "\"Invalid number of keys found, expected one.\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/StringUtils.swift", + "kind": "BooleanLiteral", + "offset": 536, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/StringUtils.swift", + "kind": "BooleanLiteral", + "offset": 581, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/StringUtils.swift", + "kind": "StringLiteral", + "offset": 704, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/StringUtils.swift", + "kind": "StringLiteral", + "offset": 734, + "length": 3, + "value": "\"~\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/StringUtils.swift", + "kind": "StringLiteral", + "offset": 984, + "length": 25, + "value": "\"[aA-zZ][aA-zZ0-9_\\-.]*\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/StringUtils.swift", + "kind": "BooleanLiteral", + "offset": 1093, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/StringUtils.swift", + "kind": "BooleanLiteral", + "offset": 1123, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 2874, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 3025, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "Dictionary", + "offset": 4032, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 5118, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 5514, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "Array", + "offset": 7089, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 7604, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 7738, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 7754, + "length": 12, + "value": "\"NULL_VALUE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 7936, + "length": 9, + "value": "\".Struct\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 8002, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 8018, + "length": 8, + "value": "\"fields\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 8441, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 8849, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 9045, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 9106, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 9124, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 9295, + "length": 8, + "value": "\".Value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 9360, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 9380, + "length": 12, + "value": "\"null_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 9399, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 9419, + "length": 14, + "value": "\"number_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 9440, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 9460, + "length": 14, + "value": "\"string_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 9481, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 9501, + "length": 12, + "value": "\"bool_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 9520, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 9540, + "length": 14, + "value": "\"struct_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 9561, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 9581, + "length": 12, + "value": "\"list_value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 10008, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 10273, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 10523, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 10773, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 11017, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 11093, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 11162, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 11449, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 11528, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 11597, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 12461, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 12649, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 12837, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 13019, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 13208, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 13393, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 13611, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 13672, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 13690, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 13865, + "length": 12, + "value": "\".ListValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 13934, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "StringLiteral", + "offset": 13950, + "length": 8, + "value": "\"values\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 14373, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "IntegerLiteral", + "offset": 14655, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 14857, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 14918, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/struct.pb.swift", + "kind": "BooleanLiteral", + "offset": 14936, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/SumAggregation.swift", + "kind": "BooleanLiteral", + "offset": 438, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/SumAggregation.swift", + "kind": "BooleanLiteral", + "offset": 479, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/SumAggregation.swift", + "kind": "IntegerLiteral", + "offset": 959, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Aggregation\/SumAggregation.swift", + "kind": "IntegerLiteral", + "offset": 1288, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/Data\/Internal\/SummaryPointData.swift", + "kind": "StringLiteral", + "offset": 117, + "length": 16, + "value": "\"VideoSDKRTC.SummaryPointData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/SwiftExtensions.swift", + "kind": "IntegerLiteral", + "offset": 281, + "length": 5, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/SwiftExtensions.swift", + "kind": "IntegerLiteral", + "offset": 428, + "length": 9, + "value": "1000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/SwiftExtensions.swift", + "kind": "IntegerLiteral", + "offset": 653, + "length": 13, + "value": "1000000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/SwiftExtensions.swift", + "kind": "IntegerLiteral", + "offset": 840, + "length": 5, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/SwiftExtensions.swift", + "kind": "IntegerLiteral", + "offset": 953, + "length": 9, + "value": "1000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/SwiftExtensions.swift", + "kind": "IntegerLiteral", + "offset": 1067, + "length": 13, + "value": "1000000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "IntegerLiteral", + "offset": 2664, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "BooleanLiteral", + "offset": 3913, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4232, + "length": 157, + "value": "\"max cardinality (\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4291, + "length": 1, + "value": "\") reached for metric store. Discarding recorded value \"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4355, + "length": 1, + "value": "\"\" with attributes: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4388, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4773, + "length": 157, + "value": "\"max cardinality (\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4832, + "length": 1, + "value": "\") reached for metric store. Discarding recorded value \"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4896, + "length": 1, + "value": "\"\" with attributes: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Metrics\/Stable\/State\/SynchronousMetricStorage.swift", + "kind": "StringLiteral", + "offset": 4929, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "IntegerLiteral", + "offset": 895, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "IntegerLiteral", + "offset": 2462, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "IntegerLiteral", + "offset": 2799, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "IntegerLiteral", + "offset": 3044, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 3730, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 3753, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 3920, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 4733, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 4756, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 4923, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 6070, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 6093, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 6260, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 7403, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 7426, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 7593, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 8700, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 8723, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 8890, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 9997, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 10020, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 10187, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13388, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13411, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 13578, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 14399, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 14422, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 14589, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15413, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15436, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 15603, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17269, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17292, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 17459, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "IntegerLiteral", + "offset": 18420, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18704, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18727, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 18894, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "IntegerLiteral", + "offset": 19648, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "IntegerLiteral", + "offset": 20371, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 21097, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 21533, + "length": 5, + "value": "\"key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 21540, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 21644, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 21653, + "length": 3, + "value": "\"2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 22302, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 22325, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 22492, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 23135, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 23571, + "length": 5, + "value": "\"key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 23578, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 23682, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 23691, + "length": 3, + "value": "\"2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 24352, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 24375, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 24542, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 25159, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 25595, + "length": 5, + "value": "\"key\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 25602, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 25706, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "StringLiteral", + "offset": 25715, + "length": 3, + "value": "\"2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 26353, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 26376, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecoder.swift", + "kind": "BooleanLiteral", + "offset": 26543, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatDecodingOptions.swift", + "kind": "IntegerLiteral", + "offset": 920, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 597, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 640, + "length": 3, + "value": "\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 683, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 726, + "length": 3, + "value": "\"-\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 773, + "length": 4, + "value": "\"\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 823, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 866, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 920, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 975, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 1030, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 1086, + "length": 3, + "value": "\"]\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 1131, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 1176, + "length": 3, + "value": "\"A\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 1204, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "Array", + "offset": 1426, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 2998, + "length": 4, + "value": "\": \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 6, + "value": "\" {\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 3484, + "length": 5, + "value": "\"}\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 3646, + "length": 4, + "value": "\", \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 4072, + "length": 5, + "value": "\"nan\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4138, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 6, + "value": "\"-inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 4241, + "length": 5, + "value": "\"inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 4467, + "length": 5, + "value": "\"nan\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4533, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 4572, + "length": 6, + "value": "\"-inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 4636, + "length": 5, + "value": "\"inf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4830, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4875, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4911, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4968, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 4975, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5010, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5066, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5072, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5133, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5215, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5440, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5813, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 5848, + "length": 4, + "value": "\"0x\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5913, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5933, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 5990, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6022, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6061, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6283, + "length": 6, + "value": "\"true\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6292, + "length": 7, + "value": "\"false\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6522, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6560, + "length": 5, + "value": "\"\\b\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6584, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6622, + "length": 5, + "value": "\"\\t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6646, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6685, + "length": 5, + "value": "\"\\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6709, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6748, + "length": 5, + "value": "\"\\v\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6772, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6811, + "length": 5, + "value": "\"\\f\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6835, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6874, + "length": 5, + "value": "\"\\r\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6898, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 6937, + "length": 6, + "value": "\"\\\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 6962, + "length": 2, + "value": "92" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 7001, + "length": 6, + "value": "\"\\\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7026, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7030, + "length": 2, + "value": "31" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7034, + "length": 3, + "value": "127" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7174, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7235, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7239, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7299, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7320, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7324, + "length": 3, + "value": "127" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7420, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7427, + "length": 5, + "value": "0x7ff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7462, + "length": 4, + "value": "0xc0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7485, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7518, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7541, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7563, + "length": 5, + "value": "0x800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7571, + "length": 6, + "value": "0xffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7607, + "length": 4, + "value": "0xe0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7651, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7684, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7729, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7734, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7769, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7812, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7868, + "length": 4, + "value": "0xf0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7912, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7945, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7990, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 7996, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8031, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8076, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8081, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8116, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8159, + "length": 4, + "value": "0x3f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8438, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8463, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8593, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 8631, + "length": 5, + "value": "\"\\b\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8657, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 8695, + "length": 5, + "value": "\"\\t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8721, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 8760, + "length": 5, + "value": "\"\\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8786, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 8825, + "length": 5, + "value": "\"\\v\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8851, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 8890, + "length": 5, + "value": "\"\\f\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8916, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 8955, + "length": 5, + "value": "\"\\r\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 8981, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 9020, + "length": 6, + "value": "\"\\\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 9047, + "length": 2, + "value": "92" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "StringLiteral", + "offset": 9086, + "length": 6, + "value": "\"\\\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 9113, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 9118, + "length": 3, + "value": "126" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 9329, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 9384, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 9388, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncoder.swift", + "kind": "IntegerLiteral", + "offset": 9442, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingOptions.swift", + "kind": "BooleanLiteral", + "offset": 734, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "Dictionary", + "offset": 617, + "length": 22, + "value": "[(1, \"key\"), (2, \"value\")]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "Dictionary", + "offset": 1572, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 2707, + "length": 3, + "value": "\"]\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 3597, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 3946, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 4936, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "Array", + "offset": 5431, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 5635, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 5954, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6123, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6510, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 6604, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7206, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 7670, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7811, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 7917, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 8836, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 9013, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "Dictionary", + "offset": 11847, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "Dictionary", + "offset": 13001, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 13688, + "length": 9, + "value": "\"#json: \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "StringLiteral", + "offset": 13774, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "Dictionary", + "offset": 19363, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 20959, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "BooleanLiteral", + "offset": 21143, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 25670, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 25754, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 26257, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 26348, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 26809, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatEncodingVisitor.swift", + "kind": "IntegerLiteral", + "offset": 26903, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 576, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 614, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 646, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 682, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 723, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 761, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 805, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 846, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 887, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 3, + "value": "\"3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 973, + "length": 3, + "value": "\"7\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1015, + "length": 3, + "value": "\"9\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1058, + "length": 3, + "value": "\":\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1102, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1144, + "length": 3, + "value": "\"+\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1187, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1234, + "length": 3, + "value": "\";\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1283, + "length": 4, + "value": "\"\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1333, + "length": 4, + "value": "\"'\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1381, + "length": 4, + "value": "\"\\\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1432, + "length": 3, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1474, + "length": 3, + "value": "\"#\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1522, + "length": 3, + "value": "\"_\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1572, + "length": 3, + "value": "\"?\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1615, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1670, + "length": 3, + "value": "\"[\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1726, + "length": 3, + "value": "\"]\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1780, + "length": 3, + "value": "\"{\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 3, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1889, + "length": 3, + "value": "\"<\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1944, + "length": 3, + "value": "\">\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 1987, + "length": 3, + "value": "\"-\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2031, + "length": 3, + "value": "\"a\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2075, + "length": 3, + "value": "\"A\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2119, + "length": 3, + "value": "\"b\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2163, + "length": 3, + "value": "\"e\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2207, + "length": 3, + "value": "\"E\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2251, + "length": 3, + "value": "\"f\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2295, + "length": 3, + "value": "\"F\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2339, + "length": 3, + "value": "\"i\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2383, + "length": 3, + "value": "\"l\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2427, + "length": 3, + "value": "\"n\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2471, + "length": 3, + "value": "\"r\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2515, + "length": 3, + "value": "\"s\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2559, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2603, + "length": 3, + "value": "\"T\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2647, + "length": 3, + "value": "\"u\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2691, + "length": 3, + "value": "\"U\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2735, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2779, + "length": 3, + "value": "\"x\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2823, + "length": 3, + "value": "\"y\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2867, + "length": 3, + "value": "\"z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 2911, + "length": 3, + "value": "\"Z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 3117, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 3206, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 4077, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 4090, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 4102, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 5221, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 5242, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 5344, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 5914, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 5983, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 5987, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6100, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6107, + "length": 5, + "value": "0x7ff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6168, + "length": 4, + "value": "0xC0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6214, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6241, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6286, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6308, + "length": 5, + "value": "0x800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6316, + "length": 6, + "value": "0xffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6378, + "length": 4, + "value": "0xE0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6424, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6452, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6499, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6504, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6534, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6579, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6601, + "length": 7, + "value": "0x10000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6611, + "length": 8, + "value": "0x10FFFF" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6675, + "length": 4, + "value": "0xF0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6721, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6749, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6796, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6802, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6832, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6879, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6884, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6914, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 6959, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 7352, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 9627, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 9749, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 9780, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 9942, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "StringLiteral", + "offset": 10170, + "length": 65, + "value": "\"Somehow TextFormatDecoding unwound more objects than it started\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 10370, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 10564, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 10628, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 10739, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 10767, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 11298, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 11507, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 12396, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 12502, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 12601, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 12876, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 13354, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 13397, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 13447, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 13463, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 13804, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 13861, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 13881, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14061, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14080, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14122, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14157, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14176, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14447, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14512, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14647, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14651, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14859, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 14886, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15008, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15257, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15261, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15331, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15354, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15361, + "length": 5, + "value": "0x7ff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15432, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15455, + "length": 6, + "value": "0xD800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15464, + "length": 6, + "value": "0xDFFF" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15648, + "length": 5, + "value": "0x800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15656, + "length": 6, + "value": "0xffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15728, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15751, + "length": 7, + "value": "0x10000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15761, + "length": 8, + "value": "0x10FFFF" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 15835, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 16081, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 16117, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 16167, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 16205, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 16398, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 16872, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 17042, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 17646, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 17668, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 17712, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 17732, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 17832, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 17854, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18090, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18179, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18269, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18362, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18445, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18465, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18484, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18527, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18580, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18599, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18642, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18711, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18753, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18877, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18881, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18923, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 18950, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19010, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19146, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19150, + "length": 4, + "value": "0x7f" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19215, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19282, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19305, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19312, + "length": 5, + "value": "0x7ff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19378, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19383, + "length": 4, + "value": "0xC0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19429, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19454, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19459, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19504, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19535, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19558, + "length": 5, + "value": "0x800" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19566, + "length": 6, + "value": "0xffff" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19633, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19638, + "length": 4, + "value": "0xE0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19684, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19710, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19715, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19762, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19767, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19795, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19800, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19845, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19876, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19899, + "length": 7, + "value": "0x10000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19909, + "length": 8, + "value": "0x10FFFF" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19978, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 19983, + "length": 4, + "value": "0xF0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20029, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20055, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20060, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20107, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20113, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20141, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20146, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20193, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20198, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20226, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20231, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20276, + "length": 4, + "value": "0x3F" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20307, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20604, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20630, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20678, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20711, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20746, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20786, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20816, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20886, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20924, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 20984, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21027, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21087, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21129, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21189, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21230, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21290, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21338, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21398, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21435, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21495, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21540, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21585, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21621, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21678, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21709, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 21752, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 21987, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 22040, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 22166, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 22392, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 22547, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 22573, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 22995, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23011, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23195, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23228, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23283, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23317, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23386, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23693, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23808, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 23895, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 24136, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 24258, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 24288, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 24435, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 24504, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 24598, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 24972, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25093, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25123, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25383, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25469, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25802, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25812, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25941, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 25967, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 26275, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 26329, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 26508, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 26710, + "length": 18, + "value": "0x8000000000000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 27540, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 27682, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 27860, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 27959, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 28087, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 28795, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 28937, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 28966, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 29269, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 29417, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 29545, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 29673, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 29706, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30068, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30386, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30435, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30511, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30643, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30703, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30913, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 30989, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 31285, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 31543, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 31816, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 32296, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 32386, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 32723, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 32765, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 33062, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 33099, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 33152, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 33185, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 33337, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 33393, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 33893, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 33973, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 33995, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 34036, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 35345, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 35361, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 35452, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 35502, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 35739, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 35962, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 36125, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 36790, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 37906, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 37959, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 38039, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 38200, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 38893, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 39763, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 40266, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 40321, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 40415, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 40527, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 41241, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 41268, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 41702, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 41729, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 41779, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "BooleanLiteral", + "offset": 41809, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 42505, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 42607, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 42929, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TextFormatScanner.swift", + "kind": "IntegerLiteral", + "offset": 42949, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 6934, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 7199, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "StringLiteral", + "offset": 7533, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "StringLiteral", + "offset": 7715, + "length": 12, + "value": "\".Timestamp\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 7784, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "StringLiteral", + "offset": 7800, + "length": 9, + "value": "\"seconds\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 7816, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "StringLiteral", + "offset": 7832, + "length": 7, + "value": "\"nanos\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 8254, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 8337, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 8532, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 8612, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 8642, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "IntegerLiteral", + "offset": 8720, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "BooleanLiteral", + "offset": 8924, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "BooleanLiteral", + "offset": 8969, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "BooleanLiteral", + "offset": 9030, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/timestamp.pb.swift", + "kind": "BooleanLiteral", + "offset": 9048, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 592, + "length": 4, + "value": "1440" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 625, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 655, + "length": 5, + "value": "86400" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 689, + "length": 4, + "value": "3600" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 724, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 755, + "length": 10, + "value": "1000000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1390, + "length": 7, + "value": "2440588" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1853, + "length": 4, + "value": "1401" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1868, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1877, + "length": 6, + "value": "274277" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1885, + "length": 6, + "value": "146097" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1895, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1898, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1903, + "length": 2, + "value": "38" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1918, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1926, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1957, + "length": 4, + "value": "1461" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1964, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1980, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 1988, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2014, + "length": 3, + "value": "153" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2020, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2025, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2051, + "length": 3, + "value": "153" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2058, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2061, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2067, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2089, + "length": 4, + "value": "1461" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2097, + "length": 4, + "value": "4716" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2108, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2113, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2121, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2254, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "StringLiteral", + "offset": 2269, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2292, + "length": 7, + "value": "1000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2303, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "StringLiteral", + "offset": 2318, + "length": 38, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2346, + "length": 7, + "value": "1000000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "StringLiteral", + "offset": 2355, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2377, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2385, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "StringLiteral", + "offset": 2400, + "length": 33, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "IntegerLiteral", + "offset": 2426, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "StringLiteral", + "offset": 2432, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "StringLiteral", + "offset": 2456, + "length": 27, + "value": "\".\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/TimeUtils.swift", + "kind": "StringLiteral", + "offset": 2482, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 2509, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 3566, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 5009, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 8247, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 8717, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 9547, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 9844, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 9957, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 10117, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 10305, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 10498, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 12740, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 12774, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 12805, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 12834, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 12863, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 12894, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 13058, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 13089, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 13118, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 13147, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 13178, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 13209, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 13707, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 14117, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 14299, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "Array", + "offset": 15525, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 15707, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 17480, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 17508, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 17533, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 17688, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 17713, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 17741, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 19007, + "length": 30, + "value": "\"opentelemetry.proto.trace.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 19216, + "length": 13, + "value": "\".TracesData\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 19286, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 19306, + "length": 16, + "value": "\"resource_spans\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 19737, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 20040, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 20284, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 20345, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 20363, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 20555, + "length": 16, + "value": "\".ResourceSpans\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 20628, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 20644, + "length": 10, + "value": "\"resource\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 20661, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 20681, + "length": 13, + "value": "\"scope_spans\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 20701, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 20721, + "length": 12, + "value": "\"schema_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 21148, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 21235, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 21323, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 21901, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 22029, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 22150, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 22392, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 22447, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 22500, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 22561, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 22579, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 22768, + "length": 13, + "value": "\".ScopeSpans\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 22838, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 22854, + "length": 7, + "value": "\"scope\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 22868, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 22884, + "length": 7, + "value": "\"spans\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 22898, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 22918, + "length": 12, + "value": "\"schema_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 23345, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 23429, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 23512, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 24087, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 24205, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 24326, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 24556, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 24601, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 24654, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 24715, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 24733, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 24916, + "length": 7, + "value": "\".Span\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 24980, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25000, + "length": 10, + "value": "\"trace_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25017, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25037, + "length": 9, + "value": "\"span_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25053, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25073, + "length": 13, + "value": "\"trace_state\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25093, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25113, + "length": 16, + "value": "\"parent_span_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25136, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25152, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25165, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25181, + "length": 6, + "value": "\"kind\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25194, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25214, + "length": 22, + "value": "\"start_time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25243, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25263, + "length": 20, + "value": "\"end_time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25290, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25306, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25325, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25346, + "length": 26, + "value": "\"dropped_attributes_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25379, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25396, + "length": 8, + "value": "\"events\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25411, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25432, + "length": 22, + "value": "\"dropped_events_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25461, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25478, + "length": 7, + "value": "\"links\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25492, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25513, + "length": 21, + "value": "\"dropped_links_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25541, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 25558, + "length": 8, + "value": "\"status\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 25981, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26064, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26146, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26233, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26321, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26402, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26481, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26576, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26669, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26757, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26857, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 26942, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 27038, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 27122, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 27217, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 27797, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 27911, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28034, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28160, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28271, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28387, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28429, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28521, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28561, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28651, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28775, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28822, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 28918, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 29035, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 29079, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 29171, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 29286, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 29329, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 29420, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 29533, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 29758, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 29805, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 29860, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 29919, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 29962, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30005, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30074, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30139, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30194, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30273, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30320, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30391, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30436, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30505, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30554, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30615, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 30633, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 30777, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 30793, + "length": 23, + "value": "\"SPAN_KIND_UNSPECIFIED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 30823, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 30839, + "length": 20, + "value": "\"SPAN_KIND_INTERNAL\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 30866, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 30882, + "length": 18, + "value": "\"SPAN_KIND_SERVER\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 30907, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 30923, + "length": 18, + "value": "\"SPAN_KIND_CLIENT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 30948, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 30964, + "length": 20, + "value": "\"SPAN_KIND_PRODUCER\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 30991, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 31007, + "length": 20, + "value": "\"SPAN_KIND_CONSUMER\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 31247, + "length": 8, + "value": "\".Event\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 31312, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 31332, + "length": 16, + "value": "\"time_unix_nano\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 31355, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 31371, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 31384, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 31400, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 31419, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 31439, + "length": 26, + "value": "\"dropped_attributes_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 31880, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 31970, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32051, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32139, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32357, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32444, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32555, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32679, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32726, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 32822, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 33064, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 33107, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 33162, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 33241, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 33302, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 33320, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 33541, + "length": 7, + "value": "\".Link\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 33605, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 33625, + "length": 10, + "value": "\"trace_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 33642, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 33662, + "length": 9, + "value": "\"span_id\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 33678, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 33698, + "length": 13, + "value": "\"trace_state\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 33718, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 33734, + "length": 12, + "value": "\"attributes\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 33753, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 33773, + "length": 26, + "value": "\"dropped_attributes_count\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 34214, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 34297, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 34379, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 34466, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 34554, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 34851, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 34965, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 35088, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 35212, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 35259, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 35355, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 35585, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 35632, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 35687, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 35742, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 35821, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 35882, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 35900, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 36085, + "length": 9, + "value": "\".Status\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 36151, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 36167, + "length": 9, + "value": "\"message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 36183, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 36199, + "length": 6, + "value": "\"code\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 36620, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 36704, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 36982, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 37092, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 37316, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 37359, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 37420, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "BooleanLiteral", + "offset": 37438, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 37586, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 37602, + "length": 19, + "value": "\"STATUS_CODE_UNSET\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 37628, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 37644, + "length": 16, + "value": "\"STATUS_CODE_OK\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "IntegerLiteral", + "offset": 37667, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace.pb.swift", + "kind": "StringLiteral", + "offset": 37683, + "length": 19, + "value": "\"STATUS_CODE_ERROR\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "Array", + "offset": 2107, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 4477, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 5531, + "length": 40, + "value": "\"opentelemetry.proto.collector.trace.v1\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 5775, + "length": 28, + "value": "\".ExportTraceServiceRequest\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 5860, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 5880, + "length": 16, + "value": "\"resource_spans\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 6311, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 6614, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 6908, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 6969, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 6987, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 7202, + "length": 29, + "value": "\".ExportTraceServiceResponse\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 7288, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 7308, + "length": 17, + "value": "\"partial_success\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 7740, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 8331, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8635, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8696, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 8714, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 8928, + "length": 28, + "value": "\".ExportTracePartialSuccess\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9013, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 9033, + "length": 16, + "value": "\"rejected_spans\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9056, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "StringLiteral", + "offset": 9076, + "length": 15, + "value": "\"error_message\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9506, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9595, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9804, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 9890, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "IntegerLiteral", + "offset": 10017, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10311, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10370, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10431, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/proto\/trace_service.pb.swift", + "kind": "BooleanLiteral", + "offset": 10449, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 468, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 570, + "length": 3, + "value": "0x1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 642, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 681, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 799, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "StringLiteral", + "offset": 1054, + "length": 6, + "value": "\"%02x\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 1651, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 1783, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 1813, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 1894, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "IntegerLiteral", + "offset": 2213, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "StringLiteral", + "offset": 3006, + "length": 32, + "value": "\"TraceFlags{sampled=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceFlags.swift", + "kind": "StringLiteral", + "offset": 3036, + "length": 1, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 355, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 400, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 1988, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 2017, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 3853, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 4543, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 5243, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 5648, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 5677, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 5826, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 5892, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 5969, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 6048, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 6172, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 6321, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 6398, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "IntegerLiteral", + "offset": 6436, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "StringLiteral", + "offset": 6892, + "length": 16, + "value": "\"%016llx%016llx\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "StringLiteral", + "offset": 7394, + "length": 31, + "value": "\"TraceId{traceId=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "StringLiteral", + "offset": 7423, + "length": 1, + "value": "\"}\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "BooleanLiteral", + "offset": 7549, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "BooleanLiteral", + "offset": 7635, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceId.swift", + "kind": "BooleanLiteral", + "offset": 7676, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/trace\/utils\/TraceProtoUtils.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/Exporters\/OpenTelemetryProtocolCommon\/trace\/utils\/TraceProtoUtils.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerProviderBuilder.swift", + "kind": "Array", + "offset": 561, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerProviderSdk.swift", + "kind": "StringLiteral", + "offset": 359, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerProviderSdk.swift", + "kind": "Array", + "offset": 812, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerProviderSdk.swift", + "kind": "StringLiteral", + "offset": 1668, + "length": 48, + "value": "\"Tracer requested without instrumentation name.\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerProviderSdk.swift", + "kind": "StringLiteral", + "offset": 1916, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerProviderSdk.swift", + "kind": "IntegerLiteral", + "offset": 1970, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerProviderSdk.swift", + "kind": "IntegerLiteral", + "offset": 2358, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "BooleanLiteral", + "offset": 439, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 949, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 1139, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 1197, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 1979, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 2154, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "BooleanLiteral", + "offset": 2400, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 2748, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetrySDK\/Trace\/TracerSharedState.swift", + "kind": "IntegerLiteral", + "offset": 2841, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/TraceState.swift", + "kind": "IntegerLiteral", + "offset": 819, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 166, + "length": 3, + "value": "256" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 208, + "length": 3, + "value": "256" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 259, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 683, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 825, + "length": 4, + "value": "\" ,\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 1014, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 1284, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 1425, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 1702, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 1866, + "length": 30, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 1879, + "length": 1, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 1894, + "length": 1, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 2368, + "length": 43, + "value": "\"abcdefghijklmnopqrstuvwxyz0123456789_-*\/@\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 2572, + "length": 3, + "value": "\"z\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 2597, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 2710, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 2757, + "length": 3, + "value": "\"@\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 2783, + "length": 3, + "value": "\"@\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 2809, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 2841, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 3127, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 3152, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 3244, + "length": 4, + "value": "0x20" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 3267, + "length": 4, + "value": "0x7E" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 3285, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 3302, + "length": 3, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 3331, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "BooleanLiteral", + "offset": 3377, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "StringLiteral", + "offset": 3524, + "length": 3, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 3557, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 3622, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Internal\/TracestateUtils.swift", + "kind": "IntegerLiteral", + "offset": 3638, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 2857, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 2884, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 2911, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 3058, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 3085, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 3114, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "Array", + "offset": 3769, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "Array", + "offset": 3876, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "Array", + "offset": 3964, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 5319, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 5762, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 5854, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "Array", + "offset": 5945, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7516, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7550, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7583, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7615, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7647, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7680, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7712, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7746, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7780, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7811, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7844, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7877, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7912, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7945, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 7979, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8011, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8047, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8083, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8117, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8284, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8317, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8349, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8381, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8414, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8446, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8480, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8514, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8545, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8578, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8610, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8645, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8678, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8712, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8744, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8780, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8816, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8850, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 8884, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 9987, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 10017, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 10048, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 10079, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 10239, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 10270, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 10301, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 10332, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "Array", + "offset": 11043, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "Array", + "offset": 11127, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 12352, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "Array", + "offset": 12435, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14419, + "length": 17, + "value": "\"google.protobuf\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 14550, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14566, + "length": 15, + "value": "\"SYNTAX_PROTO2\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 14588, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14604, + "length": 15, + "value": "\"SYNTAX_PROTO3\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 14626, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14642, + "length": 17, + "value": "\"SYNTAX_EDITIONS\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14827, + "length": 7, + "value": "\".Type\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 14891, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14907, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 14920, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14936, + "length": 8, + "value": "\"fields\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 14951, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14967, + "length": 8, + "value": "\"oneofs\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 14982, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 14998, + "length": 9, + "value": "\"options\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 15014, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 15034, + "length": 16, + "value": "\"source_context\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 15057, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 15073, + "length": 8, + "value": "\"syntax\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 15088, + "length": 1, + "value": "7" + }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 15104, + "length": 9, + "value": "\"edition\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 244, + "offset": 15528, "length": 1, "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 263, + "offset": 15609, "length": 1, "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 244, + "offset": 15693, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 15776, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 15861, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 15953, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 16034, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 16607, "length": 1, "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 263, + "offset": 16723, "length": 1, "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 244, + "offset": 16838, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 16956, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 17075, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 17194, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 17311, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17499, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17546, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17593, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17642, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17705, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17752, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17801, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17862, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 17880, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 18051, + "length": 8, + "value": "\".Field\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 18116, "length": 1, "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/CameraPosition.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 18132, + "length": 6, + "value": "\"kind\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 263, + "offset": 18145, "length": 1, "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Constants.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 213, - "length": 31, - "value": "\"wss:\/\/call-api.videosdk.live\/\"" + "offset": 18161, + "length": 13, + "value": "\"cardinality\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 18181, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 214, - "length": 28, - "value": "\"CFBundleShortVersionString\"" + "offset": 18197, + "length": 8, + "value": "\"number\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 18212, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 696, - "length": 5, - "value": "\"ios\"" + "offset": 18228, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 18241, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/DeviceInfo.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 743, - "length": 9, - "value": "\"unknown\"" + "offset": 18261, + "length": 10, + "value": "\"type_url\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 18278, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 622, - "length": 7, - "value": "\"width\"" + "offset": 18298, + "length": 13, + "value": "\"oneof_index\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 631, - "length": 3, - "value": "160" + "offset": 18318, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 640, + "offset": 18334, "length": 8, - "value": "\"height\"" + "value": "\"packed\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 650, - "length": 2, - "value": "90" + "offset": 18349, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 658, + "offset": 18365, "length": 9, - "value": "\"bitRate\"" + "value": "\"options\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 669, + "offset": 18381, "length": 2, - "value": "60" + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 18402, + "length": 11, + "value": "\"json_name\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 674, - "length": 4, - "value": "1000" + "offset": 18420, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 684, - "length": 11, - "value": "\"frameRate\"" + "offset": 18441, + "length": 15, + "value": "\"default_value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 697, + "offset": 18871, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 18950, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19036, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19118, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19199, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19283, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19369, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19450, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19535, "length": 2, - "value": "15" + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19621, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 19909, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20035, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20066, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20145, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20256, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20373, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20408, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20491, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 20522, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20604, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20722, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20841, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 20969, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21160, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21217, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21264, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21307, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21356, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21411, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21458, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21507, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21558, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21617, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21678, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 21696, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 21824, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 705, + "offset": 21840, + "length": 14, + "value": "\"TYPE_UNKNOWN\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 21861, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 21877, "length": 13, - "value": "\"aspectRatio\"" + "value": "\"TYPE_DOUBLE\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 21897, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 720, + "offset": 21913, "length": 12, - "value": "\"oneSixNine\"" + "value": "\"TYPE_FLOAT\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 21932, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 760, - "length": 7, - "value": "\"width\"" + "offset": 21948, + "length": 12, + "value": "\"TYPE_INT64\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 769, - "length": 3, - "value": "320" + "offset": 21967, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 778, - "length": 8, - "value": "\"height\"" + "offset": 21983, + "length": 13, + "value": "\"TYPE_UINT64\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 788, - "length": 3, - "value": "180" + "offset": 22003, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 797, - "length": 9, - "value": "\"bitRate\"" + "offset": 22019, + "length": 12, + "value": "\"TYPE_INT32\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 808, - "length": 3, - "value": "120" + "offset": 22038, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 22054, + "length": 14, + "value": "\"TYPE_FIXED64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 814, - "length": 4, - "value": "1000" + "offset": 22075, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 824, + "offset": 22091, + "length": 14, + "value": "\"TYPE_FIXED32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 22112, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 22128, "length": 11, - "value": "\"frameRate\"" + "value": "\"TYPE_BOOL\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 837, - "length": 2, - "value": "15" + "offset": 22146, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 845, + "offset": 22162, "length": 13, - "value": "\"aspectRatio\"" + "value": "\"TYPE_STRING\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 860, - "length": 12, - "value": "\"oneSixNine\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 22182, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 900, - "length": 7, - "value": "\"width\"" + "offset": 22199, + "length": 12, + "value": "\"TYPE_GROUP\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 909, - "length": 3, - "value": "384" + "offset": 22218, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 918, - "length": 8, - "value": "\"height\"" + "offset": 22235, + "length": 14, + "value": "\"TYPE_MESSAGE\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 928, - "length": 3, - "value": "216" + "offset": 22256, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 937, - "length": 9, - "value": "\"bitRate\"" + "offset": 22273, + "length": 12, + "value": "\"TYPE_BYTES\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 948, - "length": 3, - "value": "180" + "offset": 22292, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 22309, + "length": 13, + "value": "\"TYPE_UINT32\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 954, - "length": 4, - "value": "1000" + "offset": 22329, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 964, + "offset": 22346, "length": 11, - "value": "\"frameRate\"" + "value": "\"TYPE_ENUM\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 977, + "offset": 22364, "length": 2, "value": "15" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 985, + "offset": 22381, + "length": 15, + "value": "\"TYPE_SFIXED32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 22403, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 22420, + "length": 15, + "value": "\"TYPE_SFIXED64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 22442, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 22459, "length": 13, - "value": "\"aspectRatio\"" + "value": "\"TYPE_SINT32\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 22479, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1000, - "length": 12, - "value": "\"oneSixNine\"" + "offset": 22496, + "length": 13, + "value": "\"TYPE_SINT64\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 22642, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1040, - "length": 7, - "value": "\"width\"" + "offset": 22658, + "length": 21, + "value": "\"CARDINALITY_UNKNOWN\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1049, - "length": 3, - "value": "640" + "offset": 22686, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1058, - "length": 8, - "value": "\"height\"" + "offset": 22702, + "length": 22, + "value": "\"CARDINALITY_OPTIONAL\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1068, - "length": 3, - "value": "360" + "offset": 22731, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1077, - "length": 9, - "value": "\"bitRate\"" + "offset": 22747, + "length": 22, + "value": "\"CARDINALITY_REQUIRED\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1088, - "length": 3, - "value": "300" + "offset": 22776, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 22792, + "length": 22, + "value": "\"CARDINALITY_REPEATED\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 22982, + "length": 7, + "value": "\".Enum\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1094, - "length": 4, - "value": "1000" + "offset": 23046, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "StringLiteral", + "offset": 23062, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 23075, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1104, + "offset": 23091, "length": 11, - "value": "\"frameRate\"" + "value": "\"enumvalue\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1117, - "length": 2, - "value": "20" + "offset": 23109, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1125, - "length": 13, - "value": "\"aspectRatio\"" + "offset": 23125, + "length": 9, + "value": "\"options\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1140, - "length": 12, - "value": "\"oneSixNine\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 23141, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1180, - "length": 7, - "value": "\"width\"" + "offset": 23161, + "length": 16, + "value": "\"source_context\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1189, - "length": 3, - "value": "960" + "offset": 23184, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1198, + "offset": 23200, "length": 8, - "value": "\"height\"" + "value": "\"syntax\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1208, - "length": 3, - "value": "540" + "offset": 23215, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1217, + "offset": 23231, "length": 9, - "value": "\"bitRate\"" + "value": "\"edition\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1228, - "length": 3, - "value": "600" + "offset": 23655, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1234, - "length": 4, - "value": "1000" + "offset": 23736, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1244, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 23823, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1257, - "length": 2, - "value": "25" + "offset": 23908, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1265, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 24000, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1280, - "length": 12, - "value": "\"oneSixNine\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 24081, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1321, - "length": 7, - "value": "\"width\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 24654, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1330, - "length": 4, - "value": "1280" + "offset": 24776, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1340, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 24894, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1350, - "length": 3, - "value": "720" + "offset": 25013, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1359, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 25132, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1370, - "length": 4, - "value": "2000" + "offset": 25249, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1377, - "length": 4, - "value": "1000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25437, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1387, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25490, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1400, - "length": 2, - "value": "30" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25539, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1408, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25602, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25649, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25698, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25759, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 25777, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1423, + "offset": 25952, "length": 12, - "value": "\"oneSixNine\"" + "value": "\".EnumValue\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 26021, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1465, - "length": 7, - "value": "\"width\"" + "offset": 26037, + "length": 6, + "value": "\"name\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1474, - "length": 4, - "value": "1920" + "offset": 26050, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1484, + "offset": 26066, "length": 8, - "value": "\"height\"" + "value": "\"number\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1494, - "length": 4, - "value": "1080" + "offset": 26081, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1504, + "offset": 26097, "length": 9, - "value": "\"bitRate\"" + "value": "\"options\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1515, - "length": 4, - "value": "3000" + "offset": 26521, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1522, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1532, - "length": 11, - "value": "\"frameRate\"" + "offset": 26602, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1545, - "length": 2, - "value": "30" + "offset": 26684, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1553, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 26962, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1568, - "length": 12, - "value": "\"oneSixNine\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 26993, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1610, - "length": 7, - "value": "\"width\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 27072, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1619, - "length": 4, - "value": "2560" + "offset": 27190, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1629, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 27388, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1639, - "length": 4, - "value": "1440" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 27435, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1649, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 27484, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1660, - "length": 4, - "value": "5000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 27545, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1667, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 27563, "length": 4, - "value": "1000" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1677, - "length": 11, - "value": "\"frameRate\"" + "offset": 27735, + "length": 9, + "value": "\".Option\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1690, - "length": 2, - "value": "30" + "offset": 27801, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1698, - "length": 13, - "value": "\"aspectRatio\"" + "offset": 27817, + "length": 6, + "value": "\"name\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1713, - "length": 12, - "value": "\"oneSixNine\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 27830, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "StringLiteral", - "offset": 1755, + "offset": 27846, "length": 7, - "value": "\"width\"" + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1764, - "length": 4, - "value": "3840" + "offset": 28268, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1774, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 28349, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", "kind": "IntegerLiteral", - "offset": 1784, - "length": 4, - "value": "2160" + "offset": 28922, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1794, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "IntegerLiteral", + "offset": 29033, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1805, - "length": 4, - "value": "8000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 29229, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1812, - "length": 4, - "value": "1000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 29276, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1822, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 29337, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1835, - "length": 2, - "value": "30" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/type.pb.swift", + "kind": "BooleanLiteral", + "offset": 29355, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 1843, - "length": 13, - "value": "\"aspectRatio\"" + "offset": 309, + "length": 57, + "value": "\"https:\/\/api.videosdk.live\/infra\/v1\/meetings\/init-config\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 1858, - "length": 12, - "value": "\"oneSixNine\"" + "offset": 423, + "length": 15, + "value": "\"Authorization\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 1898, - "length": 7, - "value": "\"width\"" + "offset": 465, + "length": 18, + "value": "\"application\/json\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1907, - "length": 3, - "value": "160" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", + "kind": "StringLiteral", + "offset": 505, + "length": 14, + "value": "\"Content-Type\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 1916, + "offset": 593, "length": 8, - "value": "\"height\"" + "value": "\"roomId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1926, - "length": 3, - "value": "120" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", + "kind": "Array", + "offset": 621, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 1935, - "length": 9, - "value": "\"bitRate\"" + "offset": 654, + "length": 6, + "value": "\"POST\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1946, - "length": 2, - "value": "80" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", + "kind": "StringLiteral", + "offset": 959, + "length": 20, + "value": "\"YourAppErrorDomain\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "IntegerLiteral", - "offset": 1951, - "length": 4, - "value": "1000" + "offset": 987, + "length": 2, + "value": "-1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 1961, - "length": 11, - "value": "\"frameRate\"" + "offset": 1029, + "length": 35, + "value": "\"No data received from the server.\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 1974, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", + "kind": "Array", + "offset": 1253, "length": 2, - "value": "15" + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 1982, - "length": 13, - "value": "\"aspectRatio\"" + "offset": 1365, + "length": 6, + "value": "\"data\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 1997, - "length": 11, - "value": "\"fourThree\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", + "kind": "Dictionary", + "offset": 1394, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 2036, - "length": 7, - "value": "\"width\"" + "offset": 1480, + "length": 20, + "value": "\"YourAppErrorDomain\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "IntegerLiteral", - "offset": 2045, - "length": 3, - "value": "240" + "offset": 1508, + "length": 2, + "value": "-2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/UrlFactory.swift", "kind": "StringLiteral", - "offset": 2054, - "length": 8, - "value": "\"height\"" + "offset": 1550, + "length": 32, + "value": "\"Failed to parse JSON response.\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "IntegerLiteral", - "offset": 2064, - "length": 3, - "value": "180" + "offset": 273, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", + "kind": "IntegerLiteral", + "offset": 280, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "StringLiteral", - "offset": 2073, - "length": 9, - "value": "\"bitRate\"" + "offset": 360, + "length": 64, + "value": "\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "IntegerLiteral", - "offset": 2084, - "length": 3, - "value": "100" + "offset": 448, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "IntegerLiteral", - "offset": 2090, - "length": 4, - "value": "1000" + "offset": 452, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2100, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", + "kind": "IntegerLiteral", + "offset": 580, + "length": 2, + "value": "89" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "IntegerLiteral", - "offset": 2113, - "length": 2, - "value": "15" + "offset": 585, + "length": 3, + "value": "122" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2121, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", + "kind": "IntegerLiteral", + "offset": 651, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2136, - "length": 11, - "value": "\"fourThree\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", + "kind": "IntegerLiteral", + "offset": 864, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "StringLiteral", - "offset": 2175, - "length": 7, - "value": "\"width\"" + "offset": 899, + "length": 26, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "IntegerLiteral", - "offset": 2184, - "length": 3, - "value": "320" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2193, - "length": 8, - "value": "\"height\"" + "offset": 917, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "IntegerLiteral", - "offset": 2203, - "length": 3, - "value": "240" + "offset": 921, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Utils.swift", "kind": "StringLiteral", - "offset": 2212, - "length": 9, - "value": "\"bitRate\"" + "offset": 924, + "length": 1, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2223, - "length": 3, - "value": "150" + "offset": 939, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2229, - "length": 4, - "value": "1000" + "offset": 944, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2239, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 951, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2252, - "length": 2, - "value": "15" + "offset": 968, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2260, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 994, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2275, - "length": 11, - "value": "\"fourThree\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 999, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2314, - "length": 7, - "value": "\"width\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 1007, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2323, - "length": 3, - "value": "480" + "offset": 1024, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2332, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 1050, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 1055, + "length": 2, + "value": "21" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2342, - "length": 3, - "value": "360" + "offset": 1063, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2351, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 1080, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2362, - "length": 3, - "value": "225" + "offset": 1106, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2368, - "length": 4, - "value": "1000" + "offset": 1111, + "length": 2, + "value": "28" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2378, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 1119, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2391, - "length": 2, - "value": "20" + "offset": 1136, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2399, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 1155, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2414, - "length": 11, - "value": "\"fourThree\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 1535, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2453, - "length": 7, - "value": "\"width\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2031, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2462, - "length": 3, - "value": "640" + "offset": 2036, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2471, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2043, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2481, - "length": 3, - "value": "480" + "offset": 2060, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2490, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2083, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2501, - "length": 3, - "value": "300" + "offset": 2100, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2507, - "length": 4, - "value": "1000" + "offset": 2197, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2517, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2218, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2530, + "offset": 2223, "length": 2, - "value": "25" + "value": "35" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2538, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2231, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2553, - "length": 11, - "value": "\"fourThree\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2246, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2592, - "length": 7, - "value": "\"width\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2264, + "length": 2, + "value": "28" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2601, - "length": 3, - "value": "720" + "offset": 2291, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2610, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2296, + "length": 2, + "value": "21" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2620, - "length": 3, - "value": "540" + "offset": 2304, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2629, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2319, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2640, - "length": 3, - "value": "450" + "offset": 2337, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2646, - "length": 4, - "value": "1000" + "offset": 2364, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2656, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2369, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2669, - "length": 2, - "value": "30" + "offset": 2377, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2677, - "length": 13, - "value": "\"aspectRatio\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 2392, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2692, - "length": 11, - "value": "\"fourThree\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 3183, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2731, - "length": 7, - "value": "\"width\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 3200, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2740, + "offset": 3281, "length": 3, - "value": "960" + "value": "128" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2749, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", + "kind": "IntegerLiteral", + "offset": 3303, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Varint.swift", "kind": "IntegerLiteral", - "offset": 2759, - "length": 3, - "value": "720" + "offset": 3324, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2768, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Version.swift", + "kind": "IntegerLiteral", + "offset": 682, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Version.swift", "kind": "IntegerLiteral", - "offset": 2779, - "length": 4, - "value": "1500" + "offset": 733, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Version.swift", "kind": "IntegerLiteral", - "offset": 2786, - "length": 4, - "value": "1000" + "offset": 789, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Version.swift", "kind": "StringLiteral", - "offset": 2796, - "length": 11, - "value": "\"frameRate\"" + "offset": 869, + "length": 31, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 2809, - "length": 2, - "value": "30" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Version.swift", + "kind": "StringLiteral", + "offset": 878, + "length": 1, + "value": "\".\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Version.swift", "kind": "StringLiteral", - "offset": 2817, - "length": 13, - "value": "\"aspectRatio\"" + "offset": 887, + "length": 1, + "value": "\".\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/Version.swift", "kind": "StringLiteral", - "offset": 2832, - "length": 11, - "value": "\"fourThree\"" + "offset": 899, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/VideoQuality.swift", + "kind": "Dictionary", + "offset": 294, + "length": 961, + "value": "[(\"sd\", [(\"low\", [(\"s\", 0), (\"t\", 2)]), (\"medium\", [(\"s\", 0), (\"t\", 2)]), (\"high\", [(\"s\", 1), (\"t\", 2)]), (\"s0t0\", [(\"s\", 0), (\"t\", 0)]), (\"s0t1\", [(\"s\", 0), (\"t\", 1)]), (\"s0t2\", [(\"s\", 0), (\"t\", 2)]), (\"s1t0\", [(\"s\", 1), (\"t\", 0)]), (\"s1t1\", [(\"s\", 1), (\"t\", 1)]), (\"s1t2\", [(\"s\", 1), (\"t\", 2)]), (\"s2t0\", [(\"s\", 2), (\"t\", 0)]), (\"s2t1\", [(\"s\", 2), (\"t\", 1)]), (\"s2t2\", [(\"s\", 2), (\"t\", 2)])]), (\"hd\", [(\"low\", [(\"s\", 0), (\"t\", 2)]), (\"medium\", [(\"s\", 1), (\"t\", 2)]), (\"high\", [(\"s\", 2), (\"t\", 2)]), (\"s0t0\", [(\"s\", 0), (\"t\", 0)]), (\"s0t1\", [(\"s\", 0), (\"t\", 1)]), (\"s0t2\", [(\"s\", 0), (\"t\", 2)]), (\"s1t0\", [(\"s\", 1), (\"t\", 0)]), (\"s1t1\", [(\"s\", 1), (\"t\", 1)]), (\"s1t2\", [(\"s\", 1), (\"t\", 2)]), (\"s2t0\", [(\"s\", 2), (\"t\", 0)]), (\"s2t1\", [(\"s\", 2), (\"t\", 1)]), (\"s2t2\", [(\"s\", 2), (\"t\", 2)])])]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", "kind": "StringLiteral", - "offset": 2873, + "offset": 1045, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", + "kind": "StringLiteral", + "offset": 1083, "length": 7, - "value": "\"width\"" + "value": "\"Guest\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 2882, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", + "kind": "BooleanLiteral", + "offset": 1119, "length": 4, - "value": "1440" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", + "kind": "BooleanLiteral", + "offset": 1155, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 2902, - "length": 4, - "value": "1080" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", + "kind": "StringLiteral", + "offset": 1369, + "length": 34, + "value": "\"JWT server token is not provided\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", "kind": "StringLiteral", - "offset": 2912, - "length": 9, - "value": "\"bitRate\"" + "offset": 1478, + "length": 27, + "value": "\"meetingId is not provided\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 2923, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", + "kind": "BooleanLiteral", + "offset": 2093, "length": 4, - "value": "2500" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 2930, - "length": 4, - "value": "1000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", + "kind": "Array", + "offset": 3290, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 2940, - "length": 11, - "value": "\"frameRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "Dictionary", + "offset": 404, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 2953, - "length": 2, - "value": "30" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "Dictionary", + "offset": 446, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 2961, - "length": 13, - "value": "\"aspectRatio\"" + "offset": 689, + "length": 9, + "value": "\"enabled\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "BooleanLiteral", + "offset": 712, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 2976, - "length": 11, - "value": "\"fourThree\"" + "offset": 817, + "length": 10, + "value": "\"endPoint\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3017, - "length": 7, - "value": "\"width\"" + "offset": 863, + "length": 5, + "value": "\"SDK\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3026, - "length": 4, - "value": "1920" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 872, + "length": 5, + "value": "\"iOS\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3036, + "offset": 900, "length": 8, - "value": "\"height\"" + "value": "\"roomId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3046, - "length": 4, - "value": "1440" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 944, + "length": 12, + "value": "\"customerId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3056, + "offset": 1179, "length": 9, - "value": "\"bitRate\"" + "value": "\"logText\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3067, - "length": 4, - "value": "3500" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 1221, + "length": 10, + "value": "\"logLevel\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3074, - "length": 4, - "value": "1000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 1265, + "length": 12, + "value": "\"attributes\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3084, - "length": 11, - "value": "\"frameRate\"" + "offset": 1389, + "length": 66, + "value": "\"Error in VideoSDKLogs :: createLog \"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3097, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 1454, "length": 2, - "value": "30" + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3105, - "length": 13, - "value": "\"aspectRatio\"" + "offset": 1645, + "length": 6, + "value": "\"POST\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3120, - "length": 11, - "value": "\"fourThree\"" + "offset": 1680, + "length": 18, + "value": "\"application\/json\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3387, - "length": 12, - "value": "\"sampleRate\"" + "offset": 1720, + "length": 14, + "value": "\"Content-Type\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3401, - "length": 5, - "value": "16000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 1774, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3412, - "length": 9, - "value": "\"bitRate\"" + "offset": 1798, + "length": 15, + "value": "\"Authorization\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3423, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "Array", + "offset": 1935, "length": 2, - "value": "24" + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3431, - "length": 12, - "value": "\"sampleSize\"" + "offset": 2024, + "length": 55, + "value": "\"pushLog: response error \"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3445, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 2078, "length": 2, - "value": "16" + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", "kind": "StringLiteral", - "offset": 3453, - "length": 8, - "value": "\"stereo\"" + "offset": 2282, + "length": 55, + "value": "\"pushLog: response error \"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3463, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKLogs.swift", + "kind": "StringLiteral", + "offset": 2336, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/VideoSDKMetrics.swift", + "kind": "IntegerLiteral", + "offset": 548, + "length": 4, + "value": "2000" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/VideoSDKMetrics.swift", + "kind": "IntegerLiteral", + "offset": 581, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/VideoSDKMetrics.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 2, + "value": "-1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/VideoSDKMetrics.swift", "kind": "StringLiteral", - "offset": 3474, - "length": 5, - "value": "\"dtx\"" + "offset": 640, + "length": 8, + "value": "\"peerId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3481, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/VideoSDKMetrics.swift", + "kind": "StringLiteral", + "offset": 676, + "length": 8, + "value": "\"roomId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/VideoSDKMetrics.swift", "kind": "StringLiteral", - "offset": 3491, - "length": 5, - "value": "\"fec\"" + "offset": 710, + "length": 6, + "value": "\"name\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3498, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/RoomStats\/VideoSDKMetrics.swift", + "kind": "Dictionary", + "offset": 1044, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3508, - "length": 17, - "value": "\"maxPlaybackRate\"" + "offset": 778, + "length": 9, + "value": "\"enabled\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3527, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "BooleanLiteral", + "offset": 801, "length": 5, - "value": "16000" + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3538, + "offset": 843, "length": 12, - "value": "\"packetTime\"" + "value": "\"pbEndPoint\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3552, - "length": 2, - "value": "20" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 1043, + "length": 14, + "value": "\"service-name\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3560, - "length": 17, - "value": "\"autoGainControl\"" + "offset": 1075, + "length": 15, + "value": "\"videosdk-otel\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3579, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 1093, + "length": 13, + "value": "\"sdk-version\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3589, - "length": 18, - "value": "\"echoCancellation\"" + "offset": 1123, + "length": 7, + "value": "\"2.1.0\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 1977, + "length": 46, + "value": "\"room_\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3619, - "length": 18, - "value": "\"noiseSuppression\"" + "offset": 1992, + "length": 6, + "value": "\"_peer_\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3639, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 2007, + "length": 5, + "value": "\"_sdk_\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3649, + "offset": 2022, "length": 14, - "value": "\"channelCount\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3665, - "length": 1, - "value": "1" + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3698, - "length": 12, - "value": "\"sampleRate\"" + "offset": 2076, + "length": 8, + "value": "\"roomId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3712, - "length": 5, - "value": "32000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 2140, + "length": 8, + "value": "\"peerId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3723, + "offset": 2204, "length": 9, - "value": "\"bitRate\"" + "value": "\"sdkName\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3734, - "length": 2, - "value": "24" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 2270, + "length": 8, + "value": "\"userId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3742, - "length": 12, - "value": "\"sampleSize\"" + "offset": 2311, + "length": 8, + "value": "\"userId\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3756, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 2335, "length": 2, - "value": "24" + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3764, - "length": 8, - "value": "\"stereo\"" + "offset": 2379, + "length": 7, + "value": "\"email\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3774, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 2419, + "length": 7, + "value": "\"email\"" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 2442, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3785, - "length": 5, - "value": "\"dtx\"" + "offset": 2586, + "length": 41, + "value": "\"Error in VideoSDKTelemetry \n \"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3792, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 2626, + "length": 14, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3802, - "length": 5, - "value": "\"fec\"" + "offset": 2639, + "length": 7, + "value": "\"DEBUG\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3809, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "Dictionary", + "offset": 2730, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3819, - "length": 17, - "value": "\"maxPlaybackRate\"" + "offset": 3370, + "length": 51, + "value": "\"Error in VideoSDKTelemetry :: trace() \n \"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3838, - "length": 5, - "value": "32000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 3420, + "length": 14, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3849, - "length": 12, - "value": "\"packetTime\"" + "offset": 3433, + "length": 7, + "value": "\"DEBUG\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 3863, - "length": 2, - "value": "30" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "Dictionary", + "offset": 3536, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3871, - "length": 17, - "value": "\"autoGainControl\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3890, - "length": 4, - "value": "true" + "offset": 4173, + "length": 63, + "value": "\"Error in VideoSDKTelemetry :: traceAutoComplete() \n \"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3900, - "length": 18, - "value": "\"echoCancellation\"" + "offset": 4235, + "length": 14, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3920, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", + "kind": "StringLiteral", + "offset": 4248, + "length": 7, + "value": "\"DEBUG\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/VideoSDKTelemetry.swift", "kind": "StringLiteral", - "offset": 3930, - "length": 18, - "value": "\"noiseSuppression\"" + "offset": 4460, + "length": 9, + "value": "\"message\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 3950, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "StringLiteral", + "offset": 201, "length": 4, - "value": "true" + "value": "\"00\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "StringLiteral", - "offset": 3960, - "length": 14, - "value": "\"channelCount\"" + "offset": 252, + "length": 3, + "value": "\"-\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "IntegerLiteral", - "offset": 3976, + "offset": 295, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4008, - "length": 12, - "value": "\"sampleRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "IntegerLiteral", + "offset": 338, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "IntegerLiteral", - "offset": 4022, - "length": 5, - "value": "48000" + "offset": 458, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4033, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "IntegerLiteral", - "offset": 4044, - "length": 2, - "value": "40" + "offset": 798, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "StringLiteral", - "offset": 4052, - "length": 12, - "value": "\"sampleSize\"" + "offset": 926, + "length": 9, + "value": "\"baggage\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 4066, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "StringLiteral", + "offset": 1147, "length": 2, - "value": "32" + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "StringLiteral", - "offset": 4074, - "length": 8, - "value": "\"stereo\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4084, - "length": 5, - "value": "false" + "offset": 1232, + "length": 3, + "value": "\"=\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "StringLiteral", - "offset": 4095, - "length": 5, - "value": "\"dtx\"" + "offset": 1331, + "length": 3, + "value": "\";\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4102, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "StringLiteral", + "offset": 1398, + "length": 3, + "value": "\",\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "StringLiteral", - "offset": 4113, - "length": 5, - "value": "\"fec\"" + "offset": 2140, + "length": 3, + "value": "\",\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4120, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "StringLiteral", + "offset": 2179, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "StringLiteral", - "offset": 4130, - "length": 17, - "value": "\"maxPlaybackRate\"" + "offset": 2209, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 4149, - "length": 5, - "value": "48000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "StringLiteral", + "offset": 2261, + "length": 3, + "value": "\";\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "StringLiteral", - "offset": 4160, - "length": 12, - "value": "\"packetTime\"" + "offset": 2522, + "length": 3, + "value": "\"=\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", "kind": "IntegerLiteral", - "offset": 4174, - "length": 2, - "value": "40" + "offset": 2560, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4182, - "length": 17, - "value": "\"autoGainControl\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "IntegerLiteral", + "offset": 2657, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4201, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Baggage\/Propagation\/W3CBaggagePropagator.swift", + "kind": "IntegerLiteral", + "offset": 2726, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "StringLiteral", - "offset": 4212, - "length": 18, - "value": "\"echoCancellation\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4232, - "length": 5, - "value": "false" + "offset": 311, + "length": 4, + "value": "\"00\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "StringLiteral", - "offset": 4243, - "length": 18, - "value": "\"noiseSuppression\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4263, - "length": 5, - "value": "false" + "offset": 362, + "length": 3, + "value": "\"-\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4274, - "length": 14, - "value": "\"channelCount\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 405, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4290, + "offset": 448, "length": 1, "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4323, - "length": 12, - "value": "\"sampleRate\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4337, - "length": 5, - "value": "48000" + "offset": 568, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4348, - "length": 12, - "value": "\"sampleSize\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 738, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4362, - "length": 2, - "value": "32" + "offset": 909, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "StringLiteral", - "offset": 4370, - "length": 9, - "value": "\"bitRate\"" + "offset": 1035, + "length": 13, + "value": "\"traceparent\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 4381, - "length": 2, - "value": "64" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "StringLiteral", + "offset": 1077, + "length": 12, + "value": "\"tracestate\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "StringLiteral", - "offset": 4389, - "length": 8, - "value": "\"stereo\"" + "offset": 1719, + "length": 4, + "value": "\"01\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4399, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "StringLiteral", + "offset": 1726, "length": 4, - "value": "true" + "value": "\"00\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4409, - "length": 5, - "value": "\"dtx\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 2396, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "BooleanLiteral", - "offset": 4416, + "offset": 3503, "length": 5, "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4427, - "length": 5, - "value": "\"fec\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4434, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 3888, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4444, - "length": 17, - "value": "\"maxPlaybackRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 4019, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4463, - "length": 5, - "value": "48000" + "offset": 4031, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4474, - "length": 12, - "value": "\"packetTime\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 4089, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4488, + "offset": 4101, "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4496, - "length": 17, - "value": "\"autoGainControl\"" + "value": "16" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4515, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 4130, + "length": 3, + "value": "0xF" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4526, - "length": 18, - "value": "\"echoCancellation\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 4149, + "length": 3, + "value": "0xF" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4546, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 4211, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4557, - "length": 18, - "value": "\"noiseSuppression\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 4227, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "BooleanLiteral", - "offset": 4577, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4588, - "length": 14, - "value": "\"channelCount\"" + "offset": 4380, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4604, + "offset": 4476, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4634, - "length": 12, - "value": "\"sampleRate\"" + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4648, - "length": 5, - "value": "48000" + "offset": 4919, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4659, - "length": 12, - "value": "\"sampleSize\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 5517, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4673, + "offset": 5529, "length": 2, - "value": "32" + "value": "16" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4681, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "IntegerLiteral", + "offset": 5597, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", "kind": "IntegerLiteral", - "offset": 4692, - "length": 3, - "value": "128" + "offset": 5603, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4701, - "length": 8, - "value": "\"stereo\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/OpenTelemetryApi\/Trace\/Propagation\/W3CTraceContextPropagator.swift", + "kind": "BooleanLiteral", + "offset": 5645, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4711, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 677, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4722, - "length": 5, - "value": "\"dtx\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4729, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 723, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4740, - "length": 5, - "value": "\"fec\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 745, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4747, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 765, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4757, - "length": 17, - "value": "\"maxPlaybackRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 784, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", "kind": "IntegerLiteral", - "offset": 4776, - "length": 5, - "value": "48000" + "offset": 677, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4787, - "length": 12, - "value": "\"packetTime\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", "kind": "IntegerLiteral", - "offset": 4801, - "length": 2, - "value": "60" + "offset": 723, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4809, - "length": 17, - "value": "\"autoGainControl\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 745, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4828, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 765, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4839, - "length": 18, - "value": "\"echoCancellation\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 784, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4859, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 677, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4870, - "length": 18, - "value": "\"noiseSuppression\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 4890, - "length": 5, - "value": "false" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 723, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4901, - "length": 14, - "value": "\"channelCount\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 745, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", "kind": "IntegerLiteral", - "offset": 4917, + "offset": 765, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4954, - "length": 12, - "value": "\"sampleRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 784, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", "kind": "IntegerLiteral", - "offset": 4968, - "length": 5, - "value": "48000" + "offset": 2209, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 4979, - "length": 12, - "value": "\"sampleSize\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", + "kind": "IntegerLiteral", + "offset": 2238, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/WireFormat.swift", "kind": "IntegerLiteral", - "offset": 4993, - "length": 2, - "value": "32" + "offset": 2268, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5001, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 3393, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5012, - "length": 3, - "value": "192" + "offset": 3856, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5021, - "length": 8, - "value": "\"stereo\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 4319, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 5031, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 4787, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5041, - "length": 5, - "value": "\"dtx\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 5250, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 5718, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 5048, + "offset": 6188, "length": 5, "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5059, - "length": 5, - "value": "\"fec\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "BooleanLiteral", - "offset": 5066, - "length": 4, - "value": "true" + "offset": 7960, + "length": 17, + "value": "\"google.protobuf\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5076, - "length": 17, - "value": "\"maxPlaybackRate\"" + "offset": 8144, + "length": 14, + "value": "\".DoubleValue\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5095, - "length": 5, - "value": "48000" + "offset": 8215, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5106, - "length": 12, - "value": "\"packetTime\"" + "offset": 8231, + "length": 7, + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5120, - "length": 2, - "value": "60" + "offset": 8653, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5128, - "length": 17, - "value": "\"autoGainControl\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 8847, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 8926, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 5147, + "offset": 9130, "length": 5, "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5158, - "length": 18, - "value": "\"echoCancellation\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 5178, + "offset": 9191, "length": 5, "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5189, - "length": 18, - "value": "\"noiseSuppression\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 5209, - "length": 5, - "value": "false" + "offset": 9209, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5220, - "length": 14, - "value": "\"channelCount\"" + "offset": 9385, + "length": 13, + "value": "\".FloatValue\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5236, + "offset": 9455, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5463, + "offset": 9471, "length": 7, - "value": "\"width\"" + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5472, - "length": 3, - "value": "640" + "offset": 9893, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5481, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 10086, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5491, - "length": 3, - "value": "360" + "offset": 10164, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5500, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 10366, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5511, - "length": 3, - "value": "200" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 10427, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5517, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 10445, "length": 4, - "value": "1000" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5527, - "length": 11, - "value": "\"frameRate\"" + "offset": 10621, + "length": 13, + "value": "\".Int64Value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5540, + "offset": 10691, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5568, + "offset": 10707, "length": 7, - "value": "\"width\"" + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5577, - "length": 4, - "value": "1280" + "offset": 11129, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5587, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 11322, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5597, - "length": 3, - "value": "720" + "offset": 11400, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5606, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 11602, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5617, - "length": 3, - "value": "400" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 11663, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5623, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 11681, "length": 4, - "value": "1000" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5633, - "length": 11, - "value": "\"frameRate\"" + "offset": 11858, + "length": 14, + "value": "\".UInt64Value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5646, + "offset": 11929, "length": 1, - "value": "5" + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5675, + "offset": 11945, "length": 7, - "value": "\"width\"" + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5684, - "length": 4, - "value": "1280" + "offset": 12367, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5694, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 12561, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5704, - "length": 3, - "value": "720" + "offset": 12640, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5713, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 12844, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5724, - "length": 4, - "value": "1000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 12905, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5731, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 12923, "length": 4, - "value": "1000" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5741, - "length": 11, - "value": "\"frameRate\"" + "offset": 13099, + "length": 13, + "value": "\".Int32Value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5754, - "length": 2, - "value": "15" + "offset": 13169, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5785, + "offset": 13185, "length": 7, - "value": "\"width\"" + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5794, - "length": 4, - "value": "1920" + "offset": 13607, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5804, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 13800, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5814, - "length": 4, - "value": "1080" + "offset": 13878, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5824, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 14080, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5835, - "length": 4, - "value": "1500" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 14141, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5842, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 14159, "length": 4, - "value": "1000" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5852, - "length": 11, - "value": "\"frameRate\"" + "offset": 14336, + "length": 14, + "value": "\".UInt32Value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5865, - "length": 2, - "value": "15" + "offset": 14407, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5896, + "offset": 14423, "length": 7, - "value": "\"width\"" + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5905, - "length": 4, - "value": "1920" + "offset": 14845, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5915, - "length": 8, - "value": "\"height\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 15039, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5925, - "length": 4, - "value": "1080" + "offset": 15118, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "StringLiteral", - "offset": 5935, - "length": 9, - "value": "\"bitRate\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 15322, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5946, - "length": 4, - "value": "1000" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 15383, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", - "kind": "IntegerLiteral", - "offset": 5953, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 15401, "length": 4, - "value": "1000" + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 5963, - "length": 11, - "value": "\"frameRate\"" + "offset": 15576, + "length": 12, + "value": "\".BoolValue\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/CustomTrackConfig.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "IntegerLiteral", - "offset": 5976, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", - "kind": "StringLiteral", - "offset": 260, - "length": 8, - "value": "\"ARDAMS\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", - "kind": "StringLiteral", - "offset": 291, - "length": 10, - "value": "\"ARDAMSv0\"" + "offset": 15645, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 324, - "length": 10, - "value": "\"ARDAMSa0\"" + "offset": 15661, + "length": 7, + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", - "kind": "StringLiteral", - "offset": 260, - "length": 8, - "value": "\"ARDAMS\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 16083, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", - "kind": "StringLiteral", - "offset": 291, - "length": 10, - "value": "\"ARDAMSv0\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 16275, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/MediaCapturer.swift", - "kind": "StringLiteral", - "offset": 324, - "length": 10, - "value": "\"ARDAMSa0\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 16356, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/MediaStream.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 1256, + "offset": 16556, "length": 5, "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", - "kind": "Dictionary", - "offset": 570, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 951, - "length": 4, - "value": "true" + "offset": 16617, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 987, + "offset": 16635, "length": 4, "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 1597, - "length": 2, - "value": "\"\"" + "offset": 16812, + "length": 14, + "value": "\".StringValue\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", - "kind": "BooleanLiteral", - "offset": 1635, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 16883, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Meeting.swift", - "kind": "BooleanLiteral", - "offset": 1678, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "StringLiteral", + "offset": 16899, + "length": 7, + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/SdkCapabilities.swift", - "kind": "Array", - "offset": 180, - "length": 15, - "value": "[\"q\", \"h\", \"f\"]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 17321, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/Participant.swift", - "kind": "Dictionary", - "offset": 1025, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 17598, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", - "kind": "Dictionary", - "offset": 307, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 17802, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", - "kind": "Dictionary", - "offset": 387, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 17863, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSub.swift", - "kind": "Dictionary", - "offset": 800, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 17881, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Classes\/PubSubMessage.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "StringLiteral", - "offset": 124, + "offset": 18057, "length": 13, - "value": "\"VideoSDKRTC.PubSubMessage\"" - }, - { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", - "kind": "BooleanLiteral", - "offset": 935, - "length": 5, - "value": "false" + "value": "\".BytesValue\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", - "kind": "Dictionary", - "offset": 1591, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 18127, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", - "kind": "Dictionary", - "offset": 1635, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "StringLiteral", + "offset": 18143, + "length": 7, + "value": "\"value\"" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", - "kind": "StringLiteral", - "offset": 766, - "length": 10, - "value": "\"VideoSDKRTC.RoomClient\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 18565, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/RoomClient.swift", - "kind": "Dictionary", - "offset": 6809, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "IntegerLiteral", + "offset": 18840, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", "kind": "BooleanLiteral", - "offset": 830, + "offset": 19042, "length": 5, "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", - "kind": "Dictionary", - "offset": 928, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 19103, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", - "kind": "Dictionary", - "offset": 6323, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/wrappers.pb.swift", + "kind": "BooleanLiteral", + "offset": 19121, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", - "kind": "Dictionary", - "offset": 8007, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 1186, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/Client\/SocketRequestHandler.swift", - "kind": "Dictionary", - "offset": 8976, - "length": 3, - "value": "[]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 1201, + "length": 2, + "value": "31" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/Others\/VideoQuality.swift", - "kind": "Dictionary", - "offset": 294, - "length": 961, - "value": "[(\"sd\", [(\"low\", [(\"s\", 0), (\"t\", 2)]), (\"medium\", [(\"s\", 0), (\"t\", 2)]), (\"high\", [(\"s\", 1), (\"t\", 2)]), (\"s0t0\", [(\"s\", 0), (\"t\", 0)]), (\"s0t1\", [(\"s\", 0), (\"t\", 1)]), (\"s0t2\", [(\"s\", 0), (\"t\", 2)]), (\"s1t0\", [(\"s\", 1), (\"t\", 0)]), (\"s1t1\", [(\"s\", 1), (\"t\", 1)]), (\"s1t2\", [(\"s\", 1), (\"t\", 2)]), (\"s2t0\", [(\"s\", 2), (\"t\", 0)]), (\"s2t1\", [(\"s\", 2), (\"t\", 1)]), (\"s2t2\", [(\"s\", 2), (\"t\", 2)])]), (\"hd\", [(\"low\", [(\"s\", 0), (\"t\", 2)]), (\"medium\", [(\"s\", 1), (\"t\", 2)]), (\"high\", [(\"s\", 2), (\"t\", 2)]), (\"s0t0\", [(\"s\", 0), (\"t\", 0)]), (\"s0t1\", [(\"s\", 0), (\"t\", 1)]), (\"s0t2\", [(\"s\", 0), (\"t\", 2)]), (\"s1t0\", [(\"s\", 1), (\"t\", 0)]), (\"s1t1\", [(\"s\", 1), (\"t\", 1)]), (\"s1t2\", [(\"s\", 1), (\"t\", 2)]), (\"s2t0\", [(\"s\", 2), (\"t\", 0)]), (\"s2t1\", [(\"s\", 2), (\"t\", 1)]), (\"s2t2\", [(\"s\", 2), (\"t\", 2)])])]" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 1740, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", - "kind": "StringLiteral", - "offset": 1044, + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 1755, "length": 2, - "value": "\"\"" + "value": "63" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", - "kind": "StringLiteral", - "offset": 1082, - "length": 7, - "value": "\"Guest\"" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 2265, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", - "kind": "BooleanLiteral", - "offset": 1118, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 2285, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", - "kind": "BooleanLiteral", - "offset": 1154, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 2793, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/parth\/Documents\/Zujo\/Parth\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Public\/VideoSDK.swift", - "kind": "BooleanLiteral", - "offset": 1909, - "length": 4, - "value": "true" + "filePath": "\/Users\/parth\/Documents\/Zujo\/videosdk-rtc-ios-sdk-private\/VideoSDKRTC\/Internal\/OpenTelemetrySwift\/SwiftProtobuf\/ZigZag.swift", + "kind": "IntegerLiteral", + "offset": 2813, + "length": 1, + "value": "1" } ] } \ No newline at end of file diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface index 5215959..198315f 100644 --- a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +++ b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -1,16 +1,554 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) +// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) // swift-module-flags: -target x86_64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name VideoSDKRTC // swift-module-flags-ignorable: -enable-bare-slash-regex import AVFoundation +import AVKit +import CoreMedia +import Darwin +import Dispatch import Foundation import Mediasoup +import ReplayKit import Swift +import UIKit @_exported import VideoSDKRTC import VideosdkWebSocket import WebRTC import _Concurrency import _StringProcessing +import _SwiftConcurrencyShims +import os.activity +import os.log +import os +public enum Aggregations { + public static func drop() -> any VideoSDKRTC.Aggregation + public static func defaultAggregation() -> any VideoSDKRTC.Aggregation + public static func sum() -> any VideoSDKRTC.Aggregation + public static func lastValue() -> any VideoSDKRTC.Aggregation + public static func explicitBucketHistogram() -> any VideoSDKRTC.Aggregation + public static func explicitBucketHistogram(buckets: [Swift.Double]) -> any VideoSDKRTC.Aggregation +} +public typealias AggregationResolver = (VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +public protocol DefaultAggregationSelector { + func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +} +@_hasMissingDesignatedInitializers public class AggregationSelector : VideoSDKRTC.DefaultAggregationSelector { + public static let instance: VideoSDKRTC.AggregationSelector + final public let selector: VideoSDKRTC.AggregationResolver + public func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation + public static func defaultSelector() -> VideoSDKRTC.AggregationResolver + public func with(instrumentType: VideoSDKRTC.InstrumentType, aggregation: any VideoSDKRTC.Aggregation) -> VideoSDKRTC.AggregationResolver + @objc deinit +} +public protocol AggregationTemporalitySelectorProtocol { + func getAggregationTemporality(for instrument: VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality +} +@_hasMissingDesignatedInitializers public class AggregationTemporalitySelector : VideoSDKRTC.AggregationTemporalitySelectorProtocol { + public func getAggregationTemporality(for instrument: VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality + public var aggregationTemporalitySelector: (VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality + @objc deinit +} +public enum AggregationTemporality { + case delta + case cumulative + public static func alwaysCumulative() -> VideoSDKRTC.AggregationTemporalitySelector + public static func deltaPreferred() -> VideoSDKRTC.AggregationTemporalitySelector + public static func == (a: VideoSDKRTC.AggregationTemporality, b: VideoSDKRTC.AggregationTemporality) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public enum AggregationType : Swift.String, Swift.Codable { + case intGauge + case doubleGauge + case doubleSum + case intSum + case doubleSummary + case intSummary + case doubleHistogram + case intHistogram + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +@_hasMissingDesignatedInitializers public class Aggregator { + public func update(value: T) + public func checkpoint() + public func toMetricData() -> any VideoSDKRTC.MetricData + public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public protocol Aggregation : AnyObject { + func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class AggregatorHandle { + public func aggregateThenMaybeReset(startEpochNano: Swift.UInt64, endEpochNano: Swift.UInt64, attributes: [Swift.String : VideoSDKRTC.AttributeValue], reset: Swift.Bool) -> VideoSDKRTC.PointData + public func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordLong(value: Swift.Int) + public func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordDouble(value: Swift.Double) + @objc deinit +} +public struct Google_Protobuf_Any { + public var typeURL: Swift.String { + get + set + } + public var value: Foundation.Data { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Any : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Any : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Any, rhs: VideoSDKRTC.Google_Protobuf_Any) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public enum AnyUnpackError : Swift.Error { + case typeMismatch + case malformedWellKnownTypeJSON + case malformedAnyField + public static func == (a: VideoSDKRTC.AnyUnpackError, b: VideoSDKRTC.AnyUnpackError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct Google_Protobuf_Api { + public var name: Swift.String + public var methods: [VideoSDKRTC.Google_Protobuf_Method] + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var version: Swift.String + public var sourceContext: VideoSDKRTC.Google_Protobuf_SourceContext { + get + set + } + public var hasSourceContext: Swift.Bool { + get + } + public mutating func clearSourceContext() + public var mixins: [VideoSDKRTC.Google_Protobuf_Mixin] + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Method { + public var name: Swift.String + public var requestTypeURL: Swift.String + public var requestStreaming: Swift.Bool + public var responseTypeURL: Swift.String + public var responseStreaming: Swift.Bool + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Mixin { + public var name: Swift.String + public var root: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Api : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Method : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Mixin : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Api : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Api, rhs: VideoSDKRTC.Google_Protobuf_Api) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Method : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Method, rhs: VideoSDKRTC.Google_Protobuf_Method) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Mixin : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Mixin, rhs: VideoSDKRTC.Google_Protobuf_Mixin) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol APIDoubleObserverMetricHandle { + func observe(value: Swift.Double) +} +public protocol APIIntObserverMetricHandle { + func observe(value: Swift.Int) +} +public struct ArrayWithCapacity { + public let capacity: Swift.Int + public init(capacity: Swift.Int) + public mutating func append(_ item: T) +} +extension VideoSDKRTC.ArrayWithCapacity : Swift.MutableCollection { + public var startIndex: Swift.Int { + get + } + public var endIndex: Swift.Int { + get + } + public subscript(index: Swift.Int) -> T { + get + set + } + public func index(after i: Swift.Int) -> Swift.Int + public typealias Element = T + public typealias Index = Swift.Int + public typealias Indices = Swift.DefaultIndices> + public typealias Iterator = Swift.IndexingIterator> + public typealias SubSequence = Swift.Slice> +} +@_hasMissingDesignatedInitializers public class AsynchronousMetricStorage : VideoSDKRTC.MetricStorage { + public var registeredReader: VideoSDKRTC.RegisteredReader { + get + } + public var metricDescriptor: VideoSDKRTC.MetricDescriptor { + get + } + public func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + public func isEmpty() -> Swift.Bool + @objc deinit +} +#if compiler(>=5.3) && $RethrowsProtocol +@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +extension _Concurrency.AsyncSequence where Self.Element == Swift.UInt8 { + @inlinable public func binaryProtobufDelimitedMessages(of messageType: M.Type = M.self, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) -> VideoSDKRTC.AsyncMessageSequence where M : VideoSDKRTC.Message { + AsyncMessageSequence( + base: self, + extensions: extensions, + partial: partial, + options: options + ) + } +} +#endif +#if compiler(>=5.3) && $RethrowsProtocol +@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +public struct AsyncMessageSequence : _Concurrency.AsyncSequence where Base : _Concurrency.AsyncSequence, M : VideoSDKRTC.Message, Base.Element == Swift.UInt8 { + public typealias Element = M + public init(base: Base, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) + public struct AsyncIterator : _Concurrency.AsyncIteratorProtocol { + @usableFromInline + internal var iterator: Base.AsyncIterator? + @usableFromInline + internal let extensions: (any VideoSDKRTC.ExtensionMap)? + @usableFromInline + internal let partial: Swift.Bool + @usableFromInline + internal let options: VideoSDKRTC.BinaryDecodingOptions + #if compiler(>=5.3) && $AsyncAwait + @inlinable internal mutating func nextVarInt() async throws -> Swift.UInt64? { + var messageSize: UInt64 = 0 + var shift: UInt64 = 0 + + while let byte = try await iterator?.next() { + messageSize |= UInt64(byte & 0x7f) << shift + shift += UInt64(7) + if shift > 35 { + iterator = nil + throw BinaryDelimited.Error.malformedLength + } + if (byte & 0x80 == 0) { + return messageSize + } + } + if (shift > 0) { + // The stream has ended inside a varint. + iterator = nil + throw BinaryDelimited.Error.truncated + } + return nil // End of stream reached. + } + #endif + #if compiler(>=5.3) && $AsyncAwait + @usableFromInline + internal mutating func readBytes(_ size: Swift.Int) async throws -> [Swift.UInt8] + #endif + #if compiler(>=5.3) && $AsyncAwait + @inlinable public mutating func next() async throws -> M? { + guard let messageSize = try await nextVarInt() else { + iterator = nil + return nil + } + guard messageSize <= UInt64(0x7fffffff) else { + iterator = nil + throw BinaryDecodingError.tooLarge + } + if messageSize == 0 { + return try M( + serializedBytes: [], + extensions: extensions, + partial: partial, + options: options + ) + } + let buffer = try await readBytes(Int(messageSize)) + return try M( + serializedBytes: buffer, + extensions: extensions, + partial: partial, + options: options + ) + } + #endif + public typealias Element = M + } + public func makeAsyncIterator() -> VideoSDKRTC.AsyncMessageSequence.AsyncIterator +} +#endif +#if compiler(>=5.3) && $RethrowsProtocol +@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +extension VideoSDKRTC.AsyncMessageSequence : Swift.Sendable where Base : Swift.Sendable { +} +#endif +#if compiler(>=5.3) && $RethrowsProtocol +@available(*, unavailable) +extension VideoSDKRTC.AsyncMessageSequence.AsyncIterator : Swift.Sendable { +} +#endif +public protocol AttributeProcessorProtocol { + func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] +} +@_hasMissingDesignatedInitializers public class AttributeProcessor : VideoSDKRTC.AttributeProcessorProtocol { + public func then(other: VideoSDKRTC.AttributeProcessor) -> VideoSDKRTC.AttributeProcessor + public func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] + public static func filterByKeyName(nameFilter: @escaping (Swift.String) -> Swift.Bool) -> VideoSDKRTC.AttributeProcessor + public static func append(attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.AttributeProcessor + @objc deinit +} +@_hasMissingDesignatedInitializers public class JoinedAttributeProcessor : VideoSDKRTC.AttributeProcessor { + override public func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] + override public func then(other: VideoSDKRTC.AttributeProcessor) -> VideoSDKRTC.AttributeProcessor + public func prepend(processor: VideoSDKRTC.AttributeProcessor) -> VideoSDKRTC.AttributeProcessor + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class NoopAttributeProcessor : VideoSDKRTC.AttributeProcessor { + override public func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] + @objc deinit +} +public struct AttributesDictionary { + public init(capacity: Swift.Int, valueLengthLimit: Swift.Int = Int.max) + public subscript(key: Swift.String) -> VideoSDKRTC.AttributeValue? { + get + set + } + @discardableResult + public mutating func updateValue(value: VideoSDKRTC.AttributeValue, forKey key: Swift.String) -> VideoSDKRTC.AttributeValue? + public mutating func updateValues(attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public mutating func updateValues(attributes: VideoSDKRTC.AttributesDictionary) + public mutating func removeValueForKey(key: Swift.String) -> VideoSDKRTC.AttributeValue? + public mutating func removeAll(keepCapacity: Swift.Int) + public var count: Swift.Int { + get + } + public var numberOfDroppedAttributes: Swift.Int { + get + } + public var values: [VideoSDKRTC.AttributeValue] { + get + } +} +extension VideoSDKRTC.AttributesDictionary : Swift.Sequence { + public func makeIterator() -> VideoSDKRTC.AttributesWithCapacityIterator + public typealias Element = (Swift.String, VideoSDKRTC.AttributeValue) + public typealias Iterator = VideoSDKRTC.AttributesWithCapacityIterator +} +public struct AttributesWithCapacityIterator : Swift.IteratorProtocol { + public mutating func next() -> (Swift.String, VideoSDKRTC.AttributeValue)? + public typealias Element = (Swift.String, VideoSDKRTC.AttributeValue) +} +@_hasMissingDesignatedInitializers open class AttributeSet : Swift.Hashable, Swift.Codable { + public var labels: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public static var empty: VideoSDKRTC.AttributeSet + required public init(labels: [Swift.String : VideoSDKRTC.AttributeValue]) + public static func == (lhs: VideoSDKRTC.AttributeSet, rhs: VideoSDKRTC.AttributeSet) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + @objc deinit + open func encode(to encoder: any Swift.Encoder) throws + open var hashValue: Swift.Int { + get + } + required public init(from decoder: any Swift.Decoder) throws +} +public enum AttributeValue : Swift.Equatable, Swift.CustomStringConvertible, Swift.Hashable { + case string(Swift.String) + case bool(Swift.Bool) + case int(Swift.Int) + case double(Swift.Double) + case stringArray([Swift.String]) + case boolArray([Swift.Bool]) + case intArray([Swift.Int]) + case doubleArray([Swift.Double]) + case set(VideoSDKRTC.AttributeSet) + public var description: Swift.String { + get + } + public init?(_ value: Any) + public static func == (a: VideoSDKRTC.AttributeValue, b: VideoSDKRTC.AttributeValue) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.AttributeValue { + public init(_ value: Swift.String) + public init(_ value: Swift.Bool) + public init(_ value: Swift.Int) + public init(_ value: Swift.Double) + public init(_ value: [Swift.String]) + public init(_ value: [Swift.Int]) + public init(_ value: [Swift.Double]) + public init(_ value: VideoSDKRTC.AttributeSet) +} +extension VideoSDKRTC.AttributeValue : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public protocol Baggage : AnyObject { + static func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder + func getEntries() -> [VideoSDKRTC.Entry] + func getEntryValue(key: VideoSDKRTC.EntryKey) -> VideoSDKRTC.EntryValue? +} +public func == (lhs: any VideoSDKRTC.Baggage, rhs: any VideoSDKRTC.Baggage) -> Swift.Bool +public protocol BaggageBuilder : AnyObject { + @discardableResult + func setParent(_ parent: (any VideoSDKRTC.Baggage)?) -> Self + @discardableResult + func setNoParent() -> Self + @discardableResult + func put(key: VideoSDKRTC.EntryKey, value: VideoSDKRTC.EntryValue, metadata: VideoSDKRTC.EntryMetadata?) -> Self + @discardableResult + func remove(key: VideoSDKRTC.EntryKey) -> Self + func build() -> any VideoSDKRTC.Baggage +} +public protocol BaggageManager : AnyObject { + func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder +} +public class BatchLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public init(logRecordExporter: any VideoSDKRTC.LogRecordExporter, scheduleDelay: Foundation.TimeInterval = 5, exportTimeout: Foundation.TimeInterval = 30, maxQueueSize: Swift.Int = 2048, maxExportBatchSize: Swift.Int = 512, willExportCallback: ((inout [VideoSDKRTC.ReadableLogRecord]) -> Swift.Void)? = nil) + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func forceFlush(timeout: Foundation.TimeInterval?) + public func shutdown() -> VideoSDKRTC.ExportResult + @objc deinit +} +public struct BatchSpanProcessor : VideoSDKRTC.SpanProcessor { + public init(spanExporter: any VideoSDKRTC.SpanExporter, scheduleDelay: Foundation.TimeInterval = 5, exportTimeout: Foundation.TimeInterval = 30, maxQueueSize: Swift.Int = 2048, maxExportBatchSize: Swift.Int = 512, willExportCallback: ((inout [VideoSDKRTC.SpanData]) -> Swift.Void)? = nil) + public let isStartRequired: Swift.Bool + public let isEndRequired: Swift.Bool + public func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + public func onEnd(span: any VideoSDKRTC.ReadableSpan) + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) +} +public enum BinaryDecodingError : Swift.Error { + case trailingGarbage + case truncated + case invalidUTF8 + case malformedProtobuf + case missingRequiredFields + case internalExtensionError + case messageDepthLimit + case tooLarge + public static func == (a: VideoSDKRTC.BinaryDecodingError, b: VideoSDKRTC.BinaryDecodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct BinaryDecodingOptions : Swift.Sendable { + public var messageDepthLimit: Swift.Int + public var discardUnknownFields: Swift.Bool + public init() +} +public enum BinaryDelimited { + public enum Error : Swift.Error { + case unknownStreamError + case truncated + case tooLarge + case malformedLength + case noBytesAvailable + public static func == (a: VideoSDKRTC.BinaryDelimited.Error, b: VideoSDKRTC.BinaryDelimited.Error) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } + public static func serialize(message: any VideoSDKRTC.Message, to stream: Foundation.OutputStream, partial: Swift.Bool = false) throws + public static func parse(messageType: M.Type, from stream: Foundation.InputStream, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws -> M where M : VideoSDKRTC.Message + public static func merge(into message: inout M, from stream: Foundation.InputStream, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws where M : VideoSDKRTC.Message +} +public enum BinaryEncodingError : Swift.Error { + case anyTranscodeFailure + case missingRequiredFields + case tooLarge + public static func == (a: VideoSDKRTC.BinaryEncodingError, b: VideoSDKRTC.BinaryEncodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +open class BoundCounterMetric { + public init() + open func add(value: T) + @objc deinit +} +open class BoundHistogramMetric { + public init(explicitBoundaries: Swift.Array? = nil) + open func record(value: T) + @objc deinit +} +open class BoundMeasureMetric { + public init() + open func record(value: T) + @objc deinit +} +open class BoundRawCounterMetric { + public init() + open func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date) + @objc deinit +} +open class BoundRawHistogramMetric { + public init() + open func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T) + @objc deinit +} +@_hasMissingDesignatedInitializers public class CallbackRegistration { + public func execute(reader: VideoSDKRTC.RegisteredReader, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) + @objc deinit +} public enum CameraPosition : Swift.Int { case back case front @@ -21,6 +559,197 @@ public enum CameraPosition : Swift.Int { get } } +public protocol Clock : AnyObject { + var now: Foundation.Date { get } +} +extension VideoSDKRTC.Clock { + public var nanoTime: Swift.UInt64 { + get + } +} +public func == (lhs: any VideoSDKRTC.Clock, rhs: any VideoSDKRTC.Clock) -> Swift.Bool +public protocol CollectionRegistration { +} +public struct Opentelemetry_Proto_Common_V1_AnyValue { + public var value: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value? + public var stringValue: Swift.String { + get + set + } + public var boolValue: Swift.Bool { + get + set + } + public var intValue: Swift.Int64 { + get + set + } + public var doubleValue: Swift.Double { + get + set + } + public var arrayValue: VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue { + get + set + } + public var kvlistValue: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList { + get + set + } + public var bytesValue: Foundation.Data { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Value : Swift.Equatable { + case stringValue(Swift.String) + case boolValue(Swift.Bool) + case intValue(Swift.Int64) + case doubleValue(Swift.Double) + case arrayValue(VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue) + case kvlistValue(VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList) + case bytesValue(Foundation.Data) + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value) -> Swift.Bool + } + public init() +} +public struct Opentelemetry_Proto_Common_V1_ArrayValue { + public var values: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Common_V1_KeyValueList { + public var values: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Common_V1_KeyValue { + public var key: Swift.String + public var value: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue { + get + set + } + public var hasValue: Swift.Bool { + get + } + public mutating func clearValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Common_V1_InstrumentationScope { + public var name: Swift.String + public var version: Swift.String + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct CommonAdapter { + public static func toProtoAttribute(key: Swift.String, attributeValue: VideoSDKRTC.AttributeValue) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue + public static func toProtoInstrumentationScope(instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope +} +public protocol ContextManager : AnyObject { + func getCurrentContextValue(forKey: VideoSDKRTC.OpenTelemetryContextKeys) -> Swift.AnyObject? + func setCurrentContextValue(forKey: VideoSDKRTC.OpenTelemetryContextKeys, value: Swift.AnyObject) + func removeContextValue(forKey: VideoSDKRTC.OpenTelemetryContextKeys, value: Swift.AnyObject) +} +public protocol ContextPropagators { + var textMapPropagator: any VideoSDKRTC.TextMapPropagator { get } + var textMapBaggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator { get } +} +public protocol CounterMetric { + associatedtype T + func add(value: Self.T, labelset: VideoSDKRTC.LabelSet) + func add(value: Self.T, labels: [Swift.String : Swift.String]) + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundCounterMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundCounterMetric +} +public struct AnyCounterMetric : VideoSDKRTC.CounterMetric { + public init(_ countable: U) where T == U.T, U : VideoSDKRTC.CounterMetric + public func add(value: T, labelset: VideoSDKRTC.LabelSet) + public func add(value: T, labels: [Swift.String : Swift.String]) + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundCounterMetric +} +public struct NoopCounterMetric : VideoSDKRTC.CounterMetric { + public init() + public func add(value: T, labelset: VideoSDKRTC.LabelSet) + public func add(value: T, labels: [Swift.String : Swift.String]) + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundCounterMetric +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class CounterSumAggregator : VideoSDKRTC.Aggregator where T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +@_hasMissingDesignatedInitializers public class CustomRTCMediaStream { + @objc deinit +} public enum CustomVideoTrackConfig { case h90p_w160p, h180p_w320p, h216p_w384p, h360p_w640p, h540p_w960p, h720p_w1280p, h1080p_w1920p, h1440p_w2560p, h2160p_w3840p, h120p_w160p, h180p_w240p, h240p_w320p, h360p_w480p, h480p_w640p, h540p_w720p, h720p_w960p, h1080p_w1440p, h1440p_w1920p public static func == (a: VideoSDKRTC.CustomVideoTrackConfig, b: VideoSDKRTC.CustomVideoTrackConfig) -> Swift.Bool @@ -29,196 +758,7653 @@ public enum CustomVideoTrackConfig { get } } -@_hasMissingDesignatedInitializers public class CustomRTCMediaStream { - @objc deinit -} -extension Foundation.Data { - public func toJSONString() -> Swift.String - public func toJSON() -> [Swift.String : Any] - public func toJSONArray() -> [Any] +@_hasMissingDesignatedInitializers public class DefaultAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.DefaultAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +final public class DefaultBaggage : VideoSDKRTC.Baggage, Swift.Equatable { + public init(entries: [VideoSDKRTC.EntryKey : VideoSDKRTC.Entry?]) + public static func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder + final public func getEntries() -> [VideoSDKRTC.Entry] + final public func getEntryValue(key: VideoSDKRTC.EntryKey) -> VideoSDKRTC.EntryValue? + public static func == (lhs: VideoSDKRTC.DefaultBaggage, rhs: VideoSDKRTC.DefaultBaggage) -> Swift.Bool + @objc deinit +} +public class DefaultBaggageBuilder : VideoSDKRTC.BaggageBuilder { + public init() + @discardableResult + public func setParent(_ parent: (any VideoSDKRTC.Baggage)?) -> Self + @discardableResult + public func setNoParent() -> Self + @discardableResult + public func put(key: VideoSDKRTC.EntryKey, value: VideoSDKRTC.EntryValue, metadata: VideoSDKRTC.EntryMetadata?) -> Self + @discardableResult + public func put(key: Swift.String, value: Swift.String, metadata: Swift.String? = nil) -> Self + @discardableResult + public func remove(key: VideoSDKRTC.EntryKey) -> Self + public func build() -> any VideoSDKRTC.Baggage + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultBaggageManager : VideoSDKRTC.BaggageManager { + public static var instance: VideoSDKRTC.DefaultBaggageManager + public func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder + public func getCurrentBaggage() -> (any VideoSDKRTC.Baggage)? + @objc deinit +} +public struct DefaultContextPropagators : VideoSDKRTC.ContextPropagators { + public var textMapPropagator: any VideoSDKRTC.TextMapPropagator + public var textMapBaggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator + public init() + public init(textPropagators: [any VideoSDKRTC.TextMapPropagator], baggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator) + public mutating func addTextMapPropagator(textFormat: any VideoSDKRTC.TextMapPropagator) +} +@_hasMissingDesignatedInitializers public class DefaultLogger : VideoSDKRTC.Logger { + public func eventBuilder(name: Swift.String) -> any VideoSDKRTC.EventBuilder + public func logRecordBuilder() -> any VideoSDKRTC.LogRecordBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultLoggerProvider : VideoSDKRTC.LoggerProvider { + public static let instance: any VideoSDKRTC.LoggerProvider + public func get(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.Logger + public func loggerBuilder(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.LoggerBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultMeterProvider : VideoSDKRTC.MeterProvider { + public static var instance: any VideoSDKRTC.MeterProvider + public static func setDefault(meterFactory: any VideoSDKRTC.MeterProvider) + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Meter + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultStableMeter : VideoSDKRTC.StableMeter { + public func counterBuilder(name: Swift.String) -> any VideoSDKRTC.LongCounterBuilder + public func upDownCounterBuilder(name: Swift.String) -> any VideoSDKRTC.LongUpDownCounterBuilder + public func histogramBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleHistogramBuilder + public func gaugeBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleGaugeBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultStableMeterProvider : VideoSDKRTC.StableMeterProvider { + public static func noop() -> any VideoSDKRTC.MeterBuilder + public func get(name: Swift.String) -> any VideoSDKRTC.StableMeter + public func meterBuilder(name: Swift.String) -> any VideoSDKRTC.MeterBuilder + public static var instance: any VideoSDKRTC.StableMeterProvider + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultTracer : VideoSDKRTC.Tracer { + public static var instance: VideoSDKRTC.DefaultTracer + public func spanBuilder(spanName: Swift.String) -> any VideoSDKRTC.SpanBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultTracerProvider : VideoSDKRTC.TracerProvider { + public static let instance: VideoSDKRTC.DefaultTracerProvider + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Tracer + @objc deinit +} +public struct Google_Protobuf_FileDescriptorSet { + public var file: [VideoSDKRTC.Google_Protobuf_FileDescriptorProto] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_FileDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var package: Swift.String { + get + set + } + public var hasPackage: Swift.Bool { + get + } + public mutating func clearPackage() + public var dependency: [Swift.String] + public var publicDependency: [Swift.Int32] + public var weakDependency: [Swift.Int32] + public var messageType: [VideoSDKRTC.Google_Protobuf_DescriptorProto] + public var enumType: [VideoSDKRTC.Google_Protobuf_EnumDescriptorProto] + public var service: [VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto] + public var `extension`: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_FileOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var sourceCodeInfo: VideoSDKRTC.Google_Protobuf_SourceCodeInfo { + get + set + } + public var hasSourceCodeInfo: Swift.Bool { + get + } + public mutating func clearSourceCodeInfo() + public var syntax: Swift.String { + get + set + } + public var hasSyntax: Swift.Bool { + get + } + public mutating func clearSyntax() + public var edition: Swift.String { + get + set + } + public var hasEdition: Swift.Bool { + get + } + public mutating func clearEdition() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_DescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var field: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto] + public var `extension`: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto] + public var nestedType: [VideoSDKRTC.Google_Protobuf_DescriptorProto] + public var enumType: [VideoSDKRTC.Google_Protobuf_EnumDescriptorProto] + public var extensionRange: [VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange] + public var oneofDecl: [VideoSDKRTC.Google_Protobuf_OneofDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_MessageOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var reservedRange: [VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange] + public var reservedName: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct ExtensionRange { + public var start: Swift.Int32 { + get + set + } + public var hasStart: Swift.Bool { + get + } + public mutating func clearStart() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var options: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public struct ReservedRange { + public var start: Swift.Int32 { + get + set + } + public var hasStart: Swift.Bool { + get + } + public mutating func clearStart() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_ExtensionRangeOptions : VideoSDKRTC.ExtensibleMessage { + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var declaration: [VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration] + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var verification: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState { + get + set + } + public var hasVerification: Swift.Bool { + get + } + public mutating func clearVerification() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum VerificationState : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case declaration + case unverified + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState] + public static var allCases: [VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState] { + get + } + } + public struct Declaration { + public var number: Swift.Int32 { + get + set + } + public var hasNumber: Swift.Bool { + get + } + public mutating func clearNumber() + public var fullName: Swift.String { + get + set + } + public var hasFullName: Swift.Bool { + get + } + public mutating func clearFullName() + public var type: Swift.String { + get + set + } + public var hasType: Swift.Bool { + get + } + public mutating func clearType() + public var reserved: Swift.Bool { + get + set + } + public var hasReserved: Swift.Bool { + get + } + public mutating func clearReserved() + public var repeated: Swift.Bool { + get + set + } + public var hasRepeated: Swift.Bool { + get + } + public mutating func clearRepeated() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_FieldDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var number: Swift.Int32 { + get + set + } + public var hasNumber: Swift.Bool { + get + } + public mutating func clearNumber() + public var label: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label { + get + set + } + public var hasLabel: Swift.Bool { + get + } + public mutating func clearLabel() + public var type: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum { + get + set + } + public var hasType: Swift.Bool { + get + } + public mutating func clearType() + public var typeName: Swift.String { + get + set + } + public var hasTypeName: Swift.Bool { + get + } + public mutating func clearTypeName() + public var extendee: Swift.String { + get + set + } + public var hasExtendee: Swift.Bool { + get + } + public mutating func clearExtendee() + public var defaultValue: Swift.String { + get + set + } + public var hasDefaultValue: Swift.Bool { + get + } + public mutating func clearDefaultValue() + public var oneofIndex: Swift.Int32 { + get + set + } + public var hasOneofIndex: Swift.Bool { + get + } + public mutating func clearOneofIndex() + public var jsonName: Swift.String { + get + set + } + public var hasJsonName: Swift.Bool { + get + } + public mutating func clearJsonName() + public var options: VideoSDKRTC.Google_Protobuf_FieldOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var proto3Optional: Swift.Bool { + get + set + } + public var hasProto3Optional: Swift.Bool { + get + } + public mutating func clearProto3Optional() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum TypeEnum : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case double + case float + case int64 + case uint64 + case int32 + case fixed64 + case fixed32 + case bool + case string + case group + case message + case bytes + case uint32 + case `enum` + case sfixed32 + case sfixed64 + case sint32 + case sint64 + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum] { + get + } + } + public enum Label : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case optional + case required + case repeated + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label] { + get + } + } + public init() +} +public struct Google_Protobuf_OneofDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var options: VideoSDKRTC.Google_Protobuf_OneofOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_EnumDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var value: [VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_EnumOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var reservedRange: [VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange] + public var reservedName: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct EnumReservedRange { + public var start: Swift.Int32 { + get + set + } + public var hasStart: Swift.Bool { + get + } + public mutating func clearStart() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_EnumValueDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var number: Swift.Int32 { + get + set + } + public var hasNumber: Swift.Bool { + get + } + public mutating func clearNumber() + public var options: VideoSDKRTC.Google_Protobuf_EnumValueOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_ServiceDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var method: [VideoSDKRTC.Google_Protobuf_MethodDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_ServiceOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_MethodDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var inputType: Swift.String { + get + set + } + public var hasInputType: Swift.Bool { + get + } + public mutating func clearInputType() + public var outputType: Swift.String { + get + set + } + public var hasOutputType: Swift.Bool { + get + } + public mutating func clearOutputType() + public var options: VideoSDKRTC.Google_Protobuf_MethodOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var clientStreaming: Swift.Bool { + get + set + } + public var hasClientStreaming: Swift.Bool { + get + } + public mutating func clearClientStreaming() + public var serverStreaming: Swift.Bool { + get + set + } + public var hasServerStreaming: Swift.Bool { + get + } + public mutating func clearServerStreaming() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_FileOptions : VideoSDKRTC.ExtensibleMessage { + public var javaPackage: Swift.String { + get + set + } + public var hasJavaPackage: Swift.Bool { + get + } + public mutating func clearJavaPackage() + public var javaOuterClassname: Swift.String { + get + set + } + public var hasJavaOuterClassname: Swift.Bool { + get + } + public mutating func clearJavaOuterClassname() + public var javaMultipleFiles: Swift.Bool { + get + set + } + public var hasJavaMultipleFiles: Swift.Bool { + get + } + public mutating func clearJavaMultipleFiles() + public var javaGenerateEqualsAndHash: Swift.Bool { + get + set + } + public var hasJavaGenerateEqualsAndHash: Swift.Bool { + get + } + public mutating func clearJavaGenerateEqualsAndHash() + public var javaStringCheckUtf8: Swift.Bool { + get + set + } + public var hasJavaStringCheckUtf8: Swift.Bool { + get + } + public mutating func clearJavaStringCheckUtf8() + public var optimizeFor: VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode { + get + set + } + public var hasOptimizeFor: Swift.Bool { + get + } + public mutating func clearOptimizeFor() + public var goPackage: Swift.String { + get + set + } + public var hasGoPackage: Swift.Bool { + get + } + public mutating func clearGoPackage() + public var ccGenericServices: Swift.Bool { + get + set + } + public var hasCcGenericServices: Swift.Bool { + get + } + public mutating func clearCcGenericServices() + public var javaGenericServices: Swift.Bool { + get + set + } + public var hasJavaGenericServices: Swift.Bool { + get + } + public mutating func clearJavaGenericServices() + public var pyGenericServices: Swift.Bool { + get + set + } + public var hasPyGenericServices: Swift.Bool { + get + } + public mutating func clearPyGenericServices() + public var phpGenericServices: Swift.Bool { + get + set + } + public var hasPhpGenericServices: Swift.Bool { + get + } + public mutating func clearPhpGenericServices() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var ccEnableArenas: Swift.Bool { + get + set + } + public var hasCcEnableArenas: Swift.Bool { + get + } + public mutating func clearCcEnableArenas() + public var objcClassPrefix: Swift.String { + get + set + } + public var hasObjcClassPrefix: Swift.Bool { + get + } + public mutating func clearObjcClassPrefix() + public var csharpNamespace: Swift.String { + get + set + } + public var hasCsharpNamespace: Swift.Bool { + get + } + public mutating func clearCsharpNamespace() + public var swiftPrefix: Swift.String { + get + set + } + public var hasSwiftPrefix: Swift.Bool { + get + } + public mutating func clearSwiftPrefix() + public var phpClassPrefix: Swift.String { + get + set + } + public var hasPhpClassPrefix: Swift.Bool { + get + } + public mutating func clearPhpClassPrefix() + public var phpNamespace: Swift.String { + get + set + } + public var hasPhpNamespace: Swift.Bool { + get + } + public mutating func clearPhpNamespace() + public var phpMetadataNamespace: Swift.String { + get + set + } + public var hasPhpMetadataNamespace: Swift.Bool { + get + } + public mutating func clearPhpMetadataNamespace() + public var rubyPackage: Swift.String { + get + set + } + public var hasRubyPackage: Swift.Bool { + get + } + public mutating func clearRubyPackage() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OptimizeMode : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case speed + case codeSize + case liteRuntime + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode] { + get + } + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_MessageOptions : VideoSDKRTC.ExtensibleMessage { + public var messageSetWireFormat: Swift.Bool { + get + set + } + public var hasMessageSetWireFormat: Swift.Bool { + get + } + public mutating func clearMessageSetWireFormat() + public var noStandardDescriptorAccessor: Swift.Bool { + get + set + } + public var hasNoStandardDescriptorAccessor: Swift.Bool { + get + } + public mutating func clearNoStandardDescriptorAccessor() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var mapEntry: Swift.Bool { + get + set + } + public var hasMapEntry: Swift.Bool { + get + } + public mutating func clearMapEntry() + public var deprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + set + } + public var hasDeprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + } + public mutating func clearDeprecatedLegacyJsonFieldConflicts() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_FieldOptions : VideoSDKRTC.ExtensibleMessage { + public var ctype: VideoSDKRTC.Google_Protobuf_FieldOptions.CType { + get + set + } + public var hasCtype: Swift.Bool { + get + } + public mutating func clearCtype() + public var packed: Swift.Bool { + get + set + } + public var hasPacked: Swift.Bool { + get + } + public mutating func clearPacked() + public var jstype: VideoSDKRTC.Google_Protobuf_FieldOptions.JSType { + get + set + } + public var hasJstype: Swift.Bool { + get + } + public mutating func clearJstype() + public var lazy: Swift.Bool { + get + set + } + public var hasLazy: Swift.Bool { + get + } + public mutating func clearLazy() + public var unverifiedLazy: Swift.Bool { + get + set + } + public var hasUnverifiedLazy: Swift.Bool { + get + } + public mutating func clearUnverifiedLazy() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var weak: Swift.Bool { + get + set + } + public var hasWeak: Swift.Bool { + get + } + public mutating func clearWeak() + public var debugRedact: Swift.Bool { + get + set + } + public var hasDebugRedact: Swift.Bool { + get + } + public mutating func clearDebugRedact() + public var retention: VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention { + get + set + } + public var hasRetention: Swift.Bool { + get + } + public mutating func clearRetention() + public var targets: [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType] + public var editionDefaults: [VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault] + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum CType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case string + case cord + case stringPiece + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.CType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.CType] { + get + } + } + public enum JSType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case jsNormal + case jsString + case jsNumber + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.JSType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.JSType] { + get + } + } + public enum OptionRetention : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case retentionUnknown + case retentionRuntime + case retentionSource + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention] { + get + } + } + public enum OptionTargetType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case targetTypeUnknown + case targetTypeFile + case targetTypeExtensionRange + case targetTypeMessage + case targetTypeField + case targetTypeOneof + case targetTypeEnum + case targetTypeEnumEntry + case targetTypeService + case targetTypeMethod + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType] { + get + } + } + public struct EditionDefault { + public var edition: Swift.String { + get + set + } + public var hasEdition: Swift.Bool { + get + } + public mutating func clearEdition() + public var value: Swift.String { + get + set + } + public var hasValue: Swift.Bool { + get + } + public mutating func clearValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_OneofOptions : VideoSDKRTC.ExtensibleMessage { + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_EnumOptions : VideoSDKRTC.ExtensibleMessage { + public var allowAlias: Swift.Bool { + get + set + } + public var hasAllowAlias: Swift.Bool { + get + } + public mutating func clearAllowAlias() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var deprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + set + } + public var hasDeprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + } + public mutating func clearDeprecatedLegacyJsonFieldConflicts() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_EnumValueOptions : VideoSDKRTC.ExtensibleMessage { + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var debugRedact: Swift.Bool { + get + set + } + public var hasDebugRedact: Swift.Bool { + get + } + public mutating func clearDebugRedact() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_ServiceOptions : VideoSDKRTC.ExtensibleMessage { + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_MethodOptions : VideoSDKRTC.ExtensibleMessage { + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var idempotencyLevel: VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel { + get + set + } + public var hasIdempotencyLevel: Swift.Bool { + get + } + public mutating func clearIdempotencyLevel() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum IdempotencyLevel : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case idempotencyUnknown + case noSideEffects + case idempotent + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel] + public static var allCases: [VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel] { + get + } + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_UninterpretedOption { + public var name: [VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart] + public var identifierValue: Swift.String { + get + set + } + public var hasIdentifierValue: Swift.Bool { + get + } + public mutating func clearIdentifierValue() + public var positiveIntValue: Swift.UInt64 { + get + set + } + public var hasPositiveIntValue: Swift.Bool { + get + } + public mutating func clearPositiveIntValue() + public var negativeIntValue: Swift.Int64 { + get + set + } + public var hasNegativeIntValue: Swift.Bool { + get + } + public mutating func clearNegativeIntValue() + public var doubleValue: Swift.Double { + get + set + } + public var hasDoubleValue: Swift.Bool { + get + } + public mutating func clearDoubleValue() + public var stringValue: Foundation.Data { + get + set + } + public var hasStringValue: Swift.Bool { + get + } + public mutating func clearStringValue() + public var aggregateValue: Swift.String { + get + set + } + public var hasAggregateValue: Swift.Bool { + get + } + public mutating func clearAggregateValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct NamePart { + public var namePart: Swift.String { + get + set + } + public var hasNamePart: Swift.Bool { + get + } + public mutating func clearNamePart() + public var isExtension: Swift.Bool { + get + set + } + public var hasIsExtension: Swift.Bool { + get + } + public mutating func clearIsExtension() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_FeatureSet : VideoSDKRTC.ExtensibleMessage { + public var fieldPresence: VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence { + get + set + } + public var hasFieldPresence: Swift.Bool { + get + } + public mutating func clearFieldPresence() + public var enumType: VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType { + get + set + } + public var hasEnumType: Swift.Bool { + get + } + public mutating func clearEnumType() + public var repeatedFieldEncoding: VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding { + get + set + } + public var hasRepeatedFieldEncoding: Swift.Bool { + get + } + public mutating func clearRepeatedFieldEncoding() + public var stringFieldValidation: VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation { + get + set + } + public var hasStringFieldValidation: Swift.Bool { + get + } + public mutating func clearStringFieldValidation() + public var messageEncoding: VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding { + get + set + } + public var hasMessageEncoding: Swift.Bool { + get + } + public mutating func clearMessageEncoding() + public var jsonFormat: VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat { + get + set + } + public var hasJsonFormat: Swift.Bool { + get + } + public mutating func clearJsonFormat() + public var rawFeatures: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasRawFeatures: Swift.Bool { + get + } + public mutating func clearRawFeatures() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum FieldPresence : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case explicit + case implicit + case legacyRequired + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence] { + get + } + } + public enum EnumType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case open + case closed + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType] { + get + } + } + public enum RepeatedFieldEncoding : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case packed + case expanded + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding] { + get + } + } + public enum StringFieldValidation : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case mandatory + case hint + case none + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation] { + get + } + } + public enum MessageEncoding : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case lengthPrefixed + case delimited + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding] { + get + } + } + public enum JsonFormat : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case allow + case legacyBestEffort + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat] { + get + } + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_SourceCodeInfo { + public var location: [VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct Location { + public var path: [Swift.Int32] + public var span: [Swift.Int32] + public var leadingComments: Swift.String { + get + set + } + public var hasLeadingComments: Swift.Bool { + get + } + public mutating func clearLeadingComments() + public var trailingComments: Swift.String { + get + set + } + public var hasTrailingComments: Swift.Bool { + get + } + public mutating func clearTrailingComments() + public var leadingDetachedComments: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_GeneratedCodeInfo { + public var annotation: [VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct Annotation { + public var path: [Swift.Int32] + public var sourceFile: Swift.String { + get + set + } + public var hasSourceFile: Swift.Bool { + get + } + public mutating func clearSourceFile() + public var begin: Swift.Int32 { + get + set + } + public var hasBegin: Swift.Bool { + get + } + public mutating func clearBegin() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var semantic: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic { + get + set + } + public var hasSemantic: Swift.Bool { + get + } + public mutating func clearSemantic() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum Semantic : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case none + case set + case alias + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic] + public static var allCases: [VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic] { + get + } + } + public init() + } + public init() +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorSet : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_OneofDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_MethodDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FileOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_MessageOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_OneofOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumValueOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ServiceOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_MethodOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorSet : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FileDescriptorSet, rhs: VideoSDKRTC.Google_Protobuf_FileDescriptorSet) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FileDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_FileDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_DescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange, rhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange, rhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions, rhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration, rhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_OneofDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_OneofDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_OneofDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange, rhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_MethodDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_MethodDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_MethodDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FileOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FileOptions, rhs: VideoSDKRTC.Google_Protobuf_FileOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_MessageOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_MessageOptions, rhs: VideoSDKRTC.Google_Protobuf_MessageOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldOptions, rhs: VideoSDKRTC.Google_Protobuf_FieldOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.CType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.JSType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault, rhs: VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_OneofOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_OneofOptions, rhs: VideoSDKRTC.Google_Protobuf_OneofOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumOptions, rhs: VideoSDKRTC.Google_Protobuf_EnumOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumValueOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumValueOptions, rhs: VideoSDKRTC.Google_Protobuf_EnumValueOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ServiceOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ServiceOptions, rhs: VideoSDKRTC.Google_Protobuf_ServiceOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_MethodOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_MethodOptions, rhs: VideoSDKRTC.Google_Protobuf_MethodOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption, rhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart, rhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FeatureSet, rhs: VideoSDKRTC.Google_Protobuf_FeatureSet) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo, rhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location, rhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo, rhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation, rhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +public protocol DoubleCounter { + mutating func add(value: Swift.Double) + mutating func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol DoubleCounterBuilder : AnyObject { + func build() -> any VideoSDKRTC.DoubleCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleCounter +} +@_hasMissingDesignatedInitializers public class DoubleCounterMeterBuilderSdk : VideoSDKRTC.DoubleCounterBuilder { + public func build() -> any VideoSDKRTC.DoubleCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleCounter + @objc deinit +} +public enum HistogramAggregatorError : Swift.Error { + case unsupportedOperation(Swift.String) +} +public class DoubleExplicitBucketHistogramAggregator : VideoSDKRTC.StableAggregator { + public init(boundaries: [Swift.Double], reservoirSupplier: @escaping () -> VideoSDKRTC.ExemplarReservoir) + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol DoubleGaugeBuilder : AnyObject { + func ofLongs() -> any VideoSDKRTC.LongGaugeBuilder + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleGauge +} +@_hasMissingDesignatedInitializers public class DoubleGaugeBuilderSdk : VideoSDKRTC.DoubleGaugeBuilder { + public func ofLongs() -> any VideoSDKRTC.LongGaugeBuilder + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleGauge + @objc deinit +} +public protocol DoubleHistogram { + mutating func record(value: Swift.Double) + mutating func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol DoubleHistogramBuilder : AnyObject { + func ofLongs() -> any VideoSDKRTC.LongHistogramBuilder + func build() -> any VideoSDKRTC.DoubleHistogram +} +@_hasMissingDesignatedInitializers public class DoubleHistogramMeterBuilderSdk : VideoSDKRTC.DoubleHistogramBuilder { + public func ofLongs() -> any VideoSDKRTC.LongHistogramBuilder + public func build() -> any VideoSDKRTC.DoubleHistogram + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleHistogramMeterSdk : VideoSDKRTC.DoubleHistogram, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public var storage: any VideoSDKRTC.WritableMetricStorage + public func record(value: Swift.Double) + public func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleLastValueAggregator : VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol DoubleObserverMetric { + func observe(value: Swift.Double, labelset: VideoSDKRTC.LabelSet) + func observe(value: Swift.Double, labels: [Swift.String : Swift.String]) +} +public struct NoopDoubleObserverMetric : VideoSDKRTC.DoubleObserverMetric { + public init() + public func observe(value: Swift.Double, labelset: VideoSDKRTC.LabelSet) + public func observe(value: Swift.Double, labels: [Swift.String : Swift.String]) +} +@_hasMissingDesignatedInitializers public class DoublePointData : VideoSDKRTC.PointData { + public var value: Swift.Double + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleSumAggregator : VideoSDKRTC.SumAggregator, VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol DoubleUpDownCounter { + mutating func add(value: Swift.Double) + mutating func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol DoubleUpDownCounterBuilder : AnyObject { + func build() -> any VideoSDKRTC.DoubleUpDownCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleUpDownCounter +} +@_hasMissingDesignatedInitializers public class DoubleUpDownCounterBuilderSdk : VideoSDKRTC.DoubleUpDownCounterBuilder { + public func build() -> any VideoSDKRTC.DoubleUpDownCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleUpDownCounter + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleUpDownCounterSdk : VideoSDKRTC.DoubleUpDownCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor { + get + } + public func add(value: Swift.Double) + public func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_hasMissingDesignatedInitializers public class DropAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.DropAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +@_hasMissingDesignatedInitializers public class DropAggregator : VideoSDKRTC.StableAggregator { + public static var POINT_DATA: VideoSDKRTC.PointData { + get + } + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) -> VideoSDKRTC.PointData + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public struct Google_Protobuf_Duration { + public var seconds: Swift.Int64 + public var nanos: Swift.Int32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Duration : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Duration : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Google_Protobuf_Empty { + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Empty : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Empty : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Empty, rhs: VideoSDKRTC.Google_Protobuf_Empty) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class EmptyMetricStorage { + public func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public static var instance: VideoSDKRTC.EmptyMetricStorage + public var metricDescriptor: VideoSDKRTC.MetricDescriptor + public func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + public func isEmpty() -> Swift.Bool + @objc deinit +} +public struct Entry : Swift.Equatable, Swift.Comparable { + public var key: VideoSDKRTC.EntryKey { + get + } + public var value: VideoSDKRTC.EntryValue { + get + } + public var metadata: VideoSDKRTC.EntryMetadata? { + get + } + public init(key: VideoSDKRTC.EntryKey, value: VideoSDKRTC.EntryValue, metadata: VideoSDKRTC.EntryMetadata?) + public static func < (lhs: VideoSDKRTC.Entry, rhs: VideoSDKRTC.Entry) -> Swift.Bool + public static func == (a: VideoSDKRTC.Entry, b: VideoSDKRTC.Entry) -> Swift.Bool +} +public struct EntryKey : Swift.Equatable, Swift.Comparable, Swift.Hashable { + public var name: Swift.String { + get + } + public init?(name: Swift.String) + public static func < (lhs: VideoSDKRTC.EntryKey, rhs: VideoSDKRTC.EntryKey) -> Swift.Bool + public static func == (a: VideoSDKRTC.EntryKey, b: VideoSDKRTC.EntryKey) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct EntryMetadata : Swift.Equatable { + public var metadata: Swift.String + public init?(metadata: Swift.String?) + public static func == (a: VideoSDKRTC.EntryMetadata, b: VideoSDKRTC.EntryMetadata) -> Swift.Bool +} +public struct EntryValue : Swift.Equatable { + public var string: Swift.String { + get + } + public init?(string: Swift.String) + public static func == (a: VideoSDKRTC.EntryValue, b: VideoSDKRTC.EntryValue) -> Swift.Bool +} +public protocol Enum : Swift.CaseIterable, Swift.Hashable, Swift.RawRepresentable, Swift.Sendable { + init() + init?(rawValue: Swift.Int) + var rawValue: Swift.Int { get } +} +extension VideoSDKRTC.Enum { + public func hash(into hasher: inout Swift.Hasher) +} +public struct EnvironmentContextPropagator : VideoSDKRTC.TextMapPropagator { + public let fields: Swift.Set + public init() + public func inject(spanContext: VideoSDKRTC.SpanContext, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + public func extract(carrier: [Swift.String : Swift.String], getter: G) -> VideoSDKRTC.SpanContext? where G : VideoSDKRTC.Getter +} +public struct EnvVarHeaders { + public static let attributes: [(Swift.String, Swift.String)]? + public static func attributes(for rawEnvAttributes: Swift.String? = ProcessInfo.processInfo.environment["OTEL_EXPORTER_OTLP_HEADERS"]) -> [(Swift.String, Swift.String)]? +} +public struct EnvVarResource { + public static let resource: VideoSDKRTC.Resource + public static func get(environment: [Swift.String : Swift.String] = ProcessInfo.processInfo.environment) -> VideoSDKRTC.Resource +} +public protocol EventBuilder : VideoSDKRTC.LogRecordBuilder { + func setData(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self +} +@_hasMissingDesignatedInitializers public class ExemplarData : Swift.Equatable { + public var filteredAttributes: [Swift.String : VideoSDKRTC.AttributeValue] + public var epochNanos: Swift.UInt64 + public var spanContext: VideoSDKRTC.SpanContext? + public static func == (lhs: VideoSDKRTC.ExemplarData, rhs: VideoSDKRTC.ExemplarData) -> Swift.Bool + @objc deinit +} +@_hasMissingDesignatedInitializers final public class DoubleExemplarData : VideoSDKRTC.ExemplarData { + final public var value: Swift.Double + @objc deinit +} +@_hasMissingDesignatedInitializers final public class LongExemplarData : VideoSDKRTC.ExemplarData { + final public var value: Swift.Int + @objc deinit +} +public protocol ExemplarFilter { + func shouldSampleMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool + func shouldSampleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool +} +public struct AlwaysOnFilter : VideoSDKRTC.ExemplarFilter { + public func shouldSampleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool + public func shouldSampleMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool +} +public struct AlwaysOffFilter : VideoSDKRTC.ExemplarFilter { + public init() + public func shouldSampleMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool + public func shouldSampleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class ExemplarReservoir { + public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class NoopExemplarReservoir : VideoSDKRTC.ExemplarReservoir { + override public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + @objc deinit +} +public enum ExemplarReservoirCollection { +} +@_hasMissingDesignatedInitializers public class FixedSizedExemplarReservoir : VideoSDKRTC.ExemplarReservoir { + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + @objc deinit +} +@_hasMissingDesignatedInitializers public class RandomFixedSizedExemplarReservoir : VideoSDKRTC.FixedSizedExemplarReservoir { + @objc deinit +} +@_hasMissingDesignatedInitializers public class ExplicitBucketHistogramAggregation : VideoSDKRTC.Aggregation { + public static var DEFAULT_BOUNDARIES: [Swift.Double] { + get + } + public static var instance: VideoSDKRTC.ExplicitBucketHistogramAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +public protocol ExponentialHistogramBuckets { + var scale: Swift.Int { get } + var offset: Swift.Int { get } + var bucketCounts: [Swift.Int] { get } + var totalCount: Swift.Int { get } +} +public enum ExportResult { + case success + case failure + public static func == (a: VideoSDKRTC.ExportResult, b: VideoSDKRTC.ExportResult) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public protocol ExtensibleMessage : VideoSDKRTC.Message { + var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet { get set } +} +extension VideoSDKRTC.ExtensibleMessage { + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, value: F.ValueType) where F : VideoSDKRTC.ExtensionField + public func getExtensionValue(ext: VideoSDKRTC.MessageExtension) -> F.ValueType? where F : VideoSDKRTC.ExtensionField + public func hasExtensionValue(ext: VideoSDKRTC.MessageExtension) -> Swift.Bool where F : VideoSDKRTC.ExtensionField + public mutating func clearExtensionValue(ext: VideoSDKRTC.MessageExtension) where F : VideoSDKRTC.ExtensionField +} +extension VideoSDKRTC.ExtensibleMessage { + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [T.BaseType]) where T : VideoSDKRTC.FieldType + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [T.BaseType]) where T : VideoSDKRTC.FieldType + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [E]) where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [E]) where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [M]) where M : Swift.Equatable, M : VideoSDKRTC.Message + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [M]) where M : Swift.Hashable, M : VideoSDKRTC.Message +} +public protocol AnyExtensionField { + func hash(into hasher: inout Swift.Hasher) + var protobufExtension: any VideoSDKRTC.AnyMessageExtension { get } + func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + mutating func decodeExtensionField(decoder: inout T) throws where T : VideoSDKRTC.SPBDecoder + func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + var isInitialized: Swift.Bool { get } +} +extension VideoSDKRTC.AnyExtensionField { + public var isInitialized: Swift.Bool { + get + } +} +public protocol ExtensionField : Swift.Hashable, VideoSDKRTC.AnyExtensionField { + associatedtype ValueType + var value: Self.ValueType { get set } + init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: Self.ValueType) + init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder +} +public struct OptionalExtensionField : VideoSDKRTC.ExtensionField where T : VideoSDKRTC.FieldType { + public typealias BaseType = T.BaseType + public typealias ValueType = VideoSDKRTC.OptionalExtensionField.BaseType + public var value: VideoSDKRTC.OptionalExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalExtensionField, rhs: VideoSDKRTC.OptionalExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedExtensionField : VideoSDKRTC.ExtensionField where T : VideoSDKRTC.FieldType { + public typealias BaseType = T.BaseType + public typealias ValueType = [VideoSDKRTC.RepeatedExtensionField.BaseType] + public var value: VideoSDKRTC.RepeatedExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedExtensionField, rhs: VideoSDKRTC.RepeatedExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct PackedExtensionField : VideoSDKRTC.ExtensionField where T : VideoSDKRTC.FieldType { + public typealias BaseType = T.BaseType + public typealias ValueType = [VideoSDKRTC.PackedExtensionField.BaseType] + public var value: VideoSDKRTC.PackedExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.PackedExtensionField, rhs: VideoSDKRTC.PackedExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.PackedExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct OptionalEnumExtensionField : VideoSDKRTC.ExtensionField where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int { + public typealias BaseType = E + public typealias ValueType = E + public var value: VideoSDKRTC.OptionalEnumExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalEnumExtensionField, rhs: VideoSDKRTC.OptionalEnumExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalEnumExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedEnumExtensionField : VideoSDKRTC.ExtensionField where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int { + public typealias BaseType = E + public typealias ValueType = [E] + public var value: VideoSDKRTC.RepeatedEnumExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedEnumExtensionField, rhs: VideoSDKRTC.RepeatedEnumExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedEnumExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct PackedEnumExtensionField : VideoSDKRTC.ExtensionField where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int { + public typealias BaseType = E + public typealias ValueType = [E] + public var value: VideoSDKRTC.PackedEnumExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.PackedEnumExtensionField, rhs: VideoSDKRTC.PackedEnumExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.PackedEnumExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct OptionalMessageExtensionField : VideoSDKRTC.ExtensionField where M : Swift.Equatable, M : VideoSDKRTC.Message { + public typealias BaseType = M + public typealias ValueType = VideoSDKRTC.OptionalMessageExtensionField.BaseType + public var value: VideoSDKRTC.OptionalMessageExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalMessageExtensionField, rhs: VideoSDKRTC.OptionalMessageExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalMessageExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedMessageExtensionField : VideoSDKRTC.ExtensionField where M : Swift.Equatable, M : VideoSDKRTC.Message { + public typealias BaseType = M + public typealias ValueType = [VideoSDKRTC.RepeatedMessageExtensionField.BaseType] + public var value: VideoSDKRTC.RepeatedMessageExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedMessageExtensionField, rhs: VideoSDKRTC.RepeatedMessageExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedMessageExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct OptionalGroupExtensionField : VideoSDKRTC.ExtensionField where G : Swift.Hashable, G : VideoSDKRTC.Message { + public typealias BaseType = G + public typealias ValueType = VideoSDKRTC.OptionalGroupExtensionField.BaseType + public var value: G + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalGroupExtensionField, rhs: VideoSDKRTC.OptionalGroupExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalGroupExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedGroupExtensionField : VideoSDKRTC.ExtensionField where G : Swift.Hashable, G : VideoSDKRTC.Message { + public typealias BaseType = G + public typealias ValueType = [VideoSDKRTC.RepeatedGroupExtensionField.BaseType] + public var value: VideoSDKRTC.RepeatedGroupExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedGroupExtensionField, rhs: VideoSDKRTC.RepeatedGroupExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedGroupExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct ExtensionFieldValueSet : Swift.Hashable { + public static func == (lhs: VideoSDKRTC.ExtensionFieldValueSet, rhs: VideoSDKRTC.ExtensionFieldValueSet) -> Swift.Bool + public init() + public func hash(into hasher: inout Swift.Hasher) + public func traverse(visitor: inout V, start: Swift.Int, end: Swift.Int) throws where V : VideoSDKRTC.Visitor + public subscript(index: Swift.Int) -> (any VideoSDKRTC.AnyExtensionField)? { + get + set + } + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public protocol ExtensionMap : Swift.Sendable { + subscript(messageType: any VideoSDKRTC.Message.Type, fieldNumber: Swift.Int) -> (any VideoSDKRTC.AnyMessageExtension)? { get } + func fieldNumberForProto(messageType: any VideoSDKRTC.Message.Type, protoFieldName: Swift.String) -> Swift.Int? +} +public struct Google_Protobuf_FieldMask { + public var paths: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_FieldMask : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldMask : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldMask, rhs: VideoSDKRTC.Google_Protobuf_FieldMask) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol FieldType { + associatedtype BaseType : Swift.Hashable + static var proto3DefaultValue: Self.BaseType { get } + static func decodeSingular(value: inout Self.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + static func decodeRepeated(value: inout [Self.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + static func visitSingular(value: Self.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + static func visitRepeated(value: [Self.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + static func visitPacked(value: [Self.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public protocol MapKeyType : VideoSDKRTC.FieldType { + static func _lessThan(lhs: Self.BaseType, rhs: Self.BaseType) -> Swift.Bool +} +extension VideoSDKRTC.MapKeyType where Self.BaseType : Swift.Comparable { + public static func _lessThan(lhs: Self.BaseType, rhs: Self.BaseType) -> Swift.Bool +} +public protocol MapValueType : VideoSDKRTC.FieldType { +} +public struct ProtobufFloat : VideoSDKRTC.FieldType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Float + public static var proto3DefaultValue: Swift.Float { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufFloat.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufFloat.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufFloat.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufFloat.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufFloat.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufDouble : VideoSDKRTC.FieldType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Double + public static var proto3DefaultValue: Swift.Double { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufDouble.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufDouble.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufDouble.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufDouble.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufDouble.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufInt32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int32 + public static var proto3DefaultValue: Swift.Int32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufInt32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufInt32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufInt32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufInt64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int64 + public static var proto3DefaultValue: Swift.Int64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufInt64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufInt64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufInt64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufUInt32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt32 + public static var proto3DefaultValue: Swift.UInt32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufUInt32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufUInt32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufUInt32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufUInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufUInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufUInt64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt64 + public static var proto3DefaultValue: Swift.UInt64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufUInt64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufUInt64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufUInt64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufUInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufUInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSInt32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int32 + public static var proto3DefaultValue: Swift.Int32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSInt32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSInt32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSInt32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSInt64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int64 + public static var proto3DefaultValue: Swift.Int64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSInt64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSInt64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSInt64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufFixed32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt32 + public static var proto3DefaultValue: Swift.UInt32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufFixed32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufFixed32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufFixed32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufFixed64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt64 + public static var proto3DefaultValue: Swift.UInt64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufFixed64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufFixed64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufFixed64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSFixed32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int32 + public static var proto3DefaultValue: Swift.Int32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSFixed32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSFixed32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSFixed32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSFixed64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int64 + public static var proto3DefaultValue: Swift.Int64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSFixed64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSFixed64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSFixed64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufBool : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Bool + public static var proto3DefaultValue: Swift.Bool { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufBool.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufBool.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufBool.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufBool.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufBool.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func _lessThan(lhs: VideoSDKRTC.ProtobufBool.BaseType, rhs: VideoSDKRTC.ProtobufBool.BaseType) -> Swift.Bool +} +public struct ProtobufString : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.String + public static var proto3DefaultValue: Swift.String { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufString.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufString.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufString.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufString.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufString.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufBytes : VideoSDKRTC.FieldType, VideoSDKRTC.MapValueType { + public typealias BaseType = Foundation.Data + public static var proto3DefaultValue: Foundation.Data { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufBytes.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufBytes.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufBytes.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufBytes.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufBytes.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +@_hasMissingDesignatedInitializers public class FilteredExemplarReservoir : VideoSDKRTC.ExemplarReservoir { + override public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + @objc deinit +} +public let defaultAnyTypeURLPrefix: Swift.String +extension VideoSDKRTC.Google_Protobuf_Any { + public init(message: any VideoSDKRTC.Message, partial: Swift.Bool = false, typePrefix: Swift.String = defaultAnyTypeURLPrefix) throws + public init(textFormatString: Swift.String, options: VideoSDKRTC.TextFormatDecodingOptions = TextFormatDecodingOptions(), extensions: (any VideoSDKRTC.ExtensionMap)? = nil) throws + public func isA(_ type: M.Type) -> Swift.Bool where M : VideoSDKRTC.Message + public func hash(into hasher: inout Swift.Hasher) +} +extension VideoSDKRTC.Google_Protobuf_Any { + @discardableResult + public static func register(messageType: any VideoSDKRTC.Message.Type) -> Swift.Bool + public static func messageType(forTypeURL url: Swift.String) -> (any VideoSDKRTC.Message.Type)? + public static func messageType(forMessageName name: Swift.String) -> (any VideoSDKRTC.Message.Type)? +} +extension VideoSDKRTC.Google_Protobuf_Duration { + public init(seconds: Swift.Int64 = 0, nanos: Swift.Int32 = 0) +} +extension VideoSDKRTC.Google_Protobuf_Duration : Swift.ExpressibleByFloatLiteral { + public typealias FloatLiteralType = Swift.Double + public init(floatLiteral value: Swift.Double) +} +extension VideoSDKRTC.Google_Protobuf_Duration { + public init(timeInterval: Foundation.TimeInterval) + public var timeInterval: Foundation.TimeInterval { + get + } +} +prefix public func - (operand: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Duration +public func + (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Duration +public func - (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Duration +public func - (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Timestamp) -> VideoSDKRTC.Google_Protobuf_Duration +extension VideoSDKRTC.Google_Protobuf_FieldMask { + public init(protoPaths: [Swift.String]) + public init(protoPaths: Swift.String...) + public init?(jsonPaths: Swift.String...) +} +extension VideoSDKRTC.Google_Protobuf_ListValue : Swift.ExpressibleByArrayLiteral { + public typealias Element = VideoSDKRTC.Google_Protobuf_Value + public init(arrayLiteral elements: VideoSDKRTC.Google_Protobuf_ListValue.Element...) + public typealias ArrayLiteralElement = VideoSDKRTC.Google_Protobuf_ListValue.Element +} +extension VideoSDKRTC.Google_Protobuf_ListValue { + public init(values: [VideoSDKRTC.Google_Protobuf_Value]) + public subscript(index: Swift.Int) -> VideoSDKRTC.Google_Protobuf_Value { + get + set(newValue) + } +} +extension VideoSDKRTC.Google_Protobuf_Struct : Swift.ExpressibleByDictionaryLiteral { + public typealias Key = Swift.String + public typealias Value = VideoSDKRTC.Google_Protobuf_Value + public init(dictionaryLiteral: (Swift.String, VideoSDKRTC.Google_Protobuf_Value)...) +} +extension VideoSDKRTC.Google_Protobuf_Struct { + public init(fields: [Swift.String : VideoSDKRTC.Google_Protobuf_Value]) + public subscript(key: Swift.String) -> VideoSDKRTC.Google_Protobuf_Value? { + get + set(newValue) + } +} +extension VideoSDKRTC.Google_Protobuf_Timestamp { + public init(seconds: Swift.Int64 = 0, nanos: Swift.Int32 = 0) +} +extension VideoSDKRTC.Google_Protobuf_Timestamp { + public init(timeIntervalSince1970: Foundation.TimeInterval) + public init(timeIntervalSinceReferenceDate: Foundation.TimeInterval) + public init(date: Foundation.Date) + public var timeIntervalSince1970: Foundation.TimeInterval { + get + } + public var timeIntervalSinceReferenceDate: Foundation.TimeInterval { + get + } + public var date: Foundation.Date { + get + } +} +public func + (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Timestamp +public func + (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Timestamp) -> VideoSDKRTC.Google_Protobuf_Timestamp +public func - (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Timestamp +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByIntegerLiteral { + public typealias IntegerLiteralType = Swift.Int64 + public init(integerLiteral value: Swift.Int64) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByFloatLiteral { + public typealias FloatLiteralType = Swift.Double + public init(floatLiteral value: Swift.Double) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByBooleanLiteral { + public typealias BooleanLiteralType = Swift.Bool + public init(booleanLiteral value: Swift.Bool) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByStringLiteral { + public typealias StringLiteralType = Swift.String + public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias UnicodeScalarLiteralType = Swift.String + public init(stringLiteral value: Swift.String) + public init(unicodeScalarLiteral value: Swift.String) + public init(extendedGraphemeClusterLiteral value: Swift.String) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByNilLiteral { + public init(nilLiteral: ()) +} +extension VideoSDKRTC.Google_Protobuf_Value { + public init(numberValue: Swift.Double) + public init(stringValue: Swift.String) + public init(boolValue: Swift.Bool) + public init(structValue: VideoSDKRTC.Google_Protobuf_Struct) + public init(listValue: VideoSDKRTC.Google_Protobuf_ListValue) +} +extension VideoSDKRTC.Google_Protobuf_DoubleValue : Swift.ExpressibleByFloatLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufDouble + public typealias FloatLiteralType = VideoSDKRTC.Google_Protobuf_DoubleValue.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_DoubleValue.WrappedType.BaseType) + public init(floatLiteral: VideoSDKRTC.Google_Protobuf_DoubleValue.FloatLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_FloatValue : Swift.ExpressibleByFloatLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufFloat + public typealias FloatLiteralType = Swift.Float + public init(_ value: VideoSDKRTC.Google_Protobuf_FloatValue.WrappedType.BaseType) + public init(floatLiteral: VideoSDKRTC.Google_Protobuf_FloatValue.FloatLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_Int64Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufInt64 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_Int64Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_Int64Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_Int64Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_UInt64Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufUInt64 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_UInt64Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_UInt64Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_UInt64Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_Int32Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufInt32 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_Int32Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_Int32Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_Int32Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_UInt32Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufUInt32 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_UInt32Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_UInt32Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_UInt32Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_BoolValue : Swift.ExpressibleByBooleanLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufBool + public typealias BooleanLiteralType = Swift.Bool + public init(_ value: VideoSDKRTC.Google_Protobuf_BoolValue.WrappedType.BaseType) + public init(booleanLiteral: Swift.Bool) +} +extension VideoSDKRTC.Google_Protobuf_StringValue : Swift.ExpressibleByStringLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufString + public typealias StringLiteralType = Swift.String + public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias UnicodeScalarLiteralType = Swift.String + public init(_ value: VideoSDKRTC.Google_Protobuf_StringValue.WrappedType.BaseType) + public init(stringLiteral: Swift.String) + public init(extendedGraphemeClusterLiteral: Swift.String) + public init(unicodeScalarLiteral: Swift.String) +} +extension VideoSDKRTC.Google_Protobuf_BytesValue { + public typealias WrappedType = VideoSDKRTC.ProtobufBytes + public init(_ value: VideoSDKRTC.Google_Protobuf_BytesValue.WrappedType.BaseType) +} +public struct Headers { + public static func getUserAgentHeader() -> Swift.String +} +@_hasMissingDesignatedInitializers public class HistogramAggregator : VideoSDKRTC.Aggregator where T : Swift.Comparable, T : Swift.SignedNumeric { + public init(explicitBoundaries: Swift.Array? = nil) throws + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +@_hasMissingDesignatedInitializers public class HistogramExemplarReservoir : VideoSDKRTC.FixedSizedExemplarReservoir { + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public protocol HistogramMetric { + associatedtype T + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundHistogramMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundHistogramMetric +} +extension VideoSDKRTC.HistogramMetric { + public func record(value: Self.T, labelset: VideoSDKRTC.LabelSet) + public func record(value: Self.T, labels: [Swift.String : Swift.String]) +} +public struct AnyHistogramMetric : VideoSDKRTC.HistogramMetric { + public init(_ histogram: U) where T == U.T, U : VideoSDKRTC.HistogramMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundHistogramMetric +} +public struct NoopHistogramMetric : VideoSDKRTC.HistogramMetric { + public init() + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundHistogramMetric +} +@_hasMissingDesignatedInitializers public class HistogramPointData : VideoSDKRTC.PointData { + public var sum: Swift.Double + public var count: Swift.UInt64 + public var min: Swift.Double + public var max: Swift.Double + public var boundaries: [Swift.Double] + public var counts: [Swift.Int] + public var hasMin: Swift.Bool + public var hasMax: Swift.Bool + @objc deinit +} +public class HLSConfig { + public var layout: VideoSDKRTC.ConfigLayout + public var theme: VideoSDKRTC.ConfigTheme + public var mode: VideoSDKRTC.ConfigMode + public var quality: VideoSDKRTC.ConfigQuality + public var orientation: VideoSDKRTC.ConfigOrientation + public init(layout: VideoSDKRTC.ConfigLayout, theme: VideoSDKRTC.ConfigTheme, mode: VideoSDKRTC.ConfigMode, quality: VideoSDKRTC.ConfigQuality, orientation: VideoSDKRTC.ConfigOrientation) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public class RecordingConfig { + public var layout: VideoSDKRTC.ConfigLayout + public var theme: VideoSDKRTC.ConfigTheme + public var mode: VideoSDKRTC.ConfigMode + public var quality: VideoSDKRTC.ConfigQuality + public var orientation: VideoSDKRTC.ConfigOrientation + public init(layout: VideoSDKRTC.ConfigLayout, theme: VideoSDKRTC.ConfigTheme, mode: VideoSDKRTC.ConfigMode, quality: VideoSDKRTC.ConfigQuality, orientation: VideoSDKRTC.ConfigOrientation) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public class HLSUrl { + public var downstreamUrl: Swift.String + public var playbackHlsUrl: Swift.String + public var livestreamUrl: Swift.String + public init(downstreamUrl: Swift.String? = nil, playbackHlsUrl: Swift.String? = nil, livestreamUrl: Swift.String? = nil) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public class ConfigLayout { + public var type: VideoSDKRTC.ConfigLayoutGrid + public var priority: VideoSDKRTC.ConfigLayoutPriority + public var gridSize: Swift.Int + public init(type: VideoSDKRTC.ConfigLayoutGrid, priority: VideoSDKRTC.ConfigLayoutPriority, gridSize: Swift.Int) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public enum ConfigLayoutPriority : Swift.String { + case SPEAKER, PIN + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigLayoutGrid : Swift.String { + case GRID, SPOTLIGHT, SIDEBAR + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigTheme : Swift.String { + case DEFAULT, LIGHT, DARK + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigMode : Swift.String { + case video_and_audio, audio + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigQuality : Swift.String { + case high, med, low + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigOrientation : Swift.String { + case landscape, portrait + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public protocol IdGenerator { + func generateSpanId() -> VideoSDKRTC.SpanId + func generateTraceId() -> VideoSDKRTC.TraceId +} +@_hasMissingDesignatedInitializers public class InMemoryLogRecordExporter : VideoSDKRTC.LogRecordExporter { + public func getFinishedLogRecords() -> [VideoSDKRTC.ReadableLogRecord] + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func shutdown() + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public protocol Instrument : Swift.Equatable { + var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor { get } +} +extension VideoSDKRTC.Instrument { + public static func == (lhs: Self, rhs: Self) -> Swift.Bool +} +public struct InstrumentationScopeInfo : Swift.Hashable, Swift.Codable, Swift.Equatable { + public var name: Swift.String { + get + } + public var version: Swift.String? { + get + } + public var schemaUrl: Swift.String? { + get + } + public init() + public init(name: Swift.String, version: Swift.String? = nil, schemaUrl: Swift.String? = nil) + public func hash(into hasher: inout Swift.Hasher) + public static func == (a: VideoSDKRTC.InstrumentationScopeInfo, b: VideoSDKRTC.InstrumentationScopeInfo) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public struct InstrumentDescriptor : Swift.Equatable { + public let name: Swift.String + public let description: Swift.String + public let unit: Swift.String + public let type: VideoSDKRTC.InstrumentType + public let valueType: VideoSDKRTC.InstrumentValueType + public init(name: Swift.String, description: Swift.String, unit: Swift.String, type: VideoSDKRTC.InstrumentType, valueType: VideoSDKRTC.InstrumentValueType) + public static func == (lhs: VideoSDKRTC.InstrumentDescriptor, rhs: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class InstrumentSelector { + public static func builder() -> VideoSDKRTC.InstrumentSelectorBuilder + @objc deinit +} +public class InstrumentSelectorBuilder { + public init() + public func setInstrument(type: VideoSDKRTC.InstrumentType) -> Self + public func setInstrument(name: Swift.String) -> Self + public func setMeter(name: Swift.String) -> Self + public func setMeter(version: Swift.String) -> Self + public func setMeter(schemaUrl: Swift.String) -> Self + public func build() -> VideoSDKRTC.InstrumentSelector + @objc deinit +} +public enum InstrumentType : Swift.CaseIterable { + case counter + case upDownCounter + case histogram + case observableCounter + case observableUpDownCounter + case observableGauge + public static func == (a: VideoSDKRTC.InstrumentType, b: VideoSDKRTC.InstrumentType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public typealias AllCases = [VideoSDKRTC.InstrumentType] + public static var allCases: [VideoSDKRTC.InstrumentType] { + get + } + public var hashValue: Swift.Int { + get + } +} +public enum InstrumentValueType { + case long + case double + public static func == (a: VideoSDKRTC.InstrumentValueType, b: VideoSDKRTC.InstrumentValueType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public enum Internal { + public static let emptyData: Foundation.Data + public static func areAllInitialized(_ listOfMessages: [any VideoSDKRTC.Message]) -> Swift.Bool + public static func areAllInitialized(_ mapToMessages: [K : any VideoSDKRTC.Message]) -> Swift.Bool where K : Swift.Hashable +} +public protocol IntObserverMetric { + func observe(value: Swift.Int, labelset: VideoSDKRTC.LabelSet) + func observe(value: Swift.Int, labels: [Swift.String : Swift.String]) +} +public struct NoopIntObserverMetric : VideoSDKRTC.IntObserverMetric { + public init() + public func observe(value: Swift.Int, labelset: VideoSDKRTC.LabelSet) + public func observe(value: Swift.Int, labels: [Swift.String : Swift.String]) +} +extension Foundation.Data { + public func toJSONString() -> Swift.String + public func toJSON() -> [Swift.String : Any] + public func toJSONArray() -> [Any] +} +extension Swift.String { + public func toJSON() -> [Swift.String : Any] +} +extension Swift.Dictionary { + public func toJSONString() -> Swift.String +} +extension Swift.Array { + public func toJSONString() -> Swift.String +} +extension Swift.Encodable { + public func toJSON() -> [Swift.String : Any] + public func toJSONArray() -> [Any] +} +public enum JSONDecodingError : Swift.Error { + case failure + case malformedNumber + case numberRange + case malformedMap + case malformedBool + case malformedString + case invalidUTF8 + case missingFieldNames + case schemaMismatch + case unrecognizedEnumValue + case illegalNull + case unquotedMapKey + case leadingZero + case truncated + case malformedDuration + case malformedTimestamp + case malformedFieldMask + case trailingGarbage + case conflictingOneOf + case messageDepthLimit + case unknownField(Swift.String) +} +public struct JSONDecodingOptions : Swift.Sendable { + public var messageDepthLimit: Swift.Int + public var ignoreUnknownFields: Swift.Bool + public init() +} +public enum JSONEncodingError : Swift.Error { + case anyTranscodeFailure + case timestampRange + case durationRange + case fieldMaskConversion + case missingFieldNames + case missingValue + case valueNumberNotFinite + public static func == (a: VideoSDKRTC.JSONEncodingError, b: VideoSDKRTC.JSONEncodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct JSONEncodingOptions : Swift.Sendable { + public var alwaysPrintInt64sAsNumbers: Swift.Bool + public var alwaysPrintEnumsAsInts: Swift.Bool + public var preserveProtoFieldNames: Swift.Bool + public init() +} +@_hasMissingDesignatedInitializers open class LabelSet : Swift.Hashable { + public var labels: [Swift.String : Swift.String] { + get + } + public static var empty: VideoSDKRTC.LabelSet + required public init(labels: [Swift.String : Swift.String]) + public static func == (lhs: VideoSDKRTC.LabelSet, rhs: VideoSDKRTC.LabelSet) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + @objc deinit + open var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class LastValueAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.LastValueAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class LastValueAggregator : VideoSDKRTC.Aggregator where T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public struct LivestreamOutput : Swift.Codable { + public let url: Swift.String + public let streamKey: Swift.String + public init(url: Swift.String, streamKey: Swift.String) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public protocol Logger { + func eventBuilder(name: Swift.String) -> any VideoSDKRTC.EventBuilder + func logRecordBuilder() -> any VideoSDKRTC.LogRecordBuilder +} +public protocol LoggerBuilder { + func setEventDomain(_ eventDomain: Swift.String) -> Self + func setSchemaUrl(_ schemaUrl: Swift.String) -> Self + func setInstrumentationVersion(_ instrumentationVersion: Swift.String) -> Self + func setIncludeTraceContext(_ includeTraceContext: Swift.Bool) -> Self + func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + func build() -> any VideoSDKRTC.Logger +} +@_hasMissingDesignatedInitializers public class LoggerBuilderSdk : VideoSDKRTC.LoggerBuilder { + public func setEventDomain(_ eventDomain: Swift.String) -> Self + public func setSchemaUrl(_ schemaUrl: Swift.String) -> Self + public func setInstrumentationVersion(_ instrumentationVersion: Swift.String) -> Self + public func setIncludeTraceContext(_ includeTraceContext: Swift.Bool) -> Self + public func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + public func build() -> any VideoSDKRTC.Logger + @objc deinit +} +public protocol LoggerProvider : AnyObject { + func get(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.Logger + func loggerBuilder(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.LoggerBuilder +} +public class LoggerProviderBuilder { + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var logLimits: VideoSDKRTC.LogLimits { + get + } + public var logProcessors: [any VideoSDKRTC.LogRecordProcessor] { + get + } + public init() + public func with(clock: any VideoSDKRTC.Clock) -> Self + public func with(resource: VideoSDKRTC.Resource) -> Self + public func with(logLimits: VideoSDKRTC.LogLimits) -> Self + public func with(processors: [any VideoSDKRTC.LogRecordProcessor]) -> Self + public func build() -> VideoSDKRTC.LoggerProviderSdk + @objc deinit +} +public class LoggerProviderSdk : VideoSDKRTC.LoggerProvider { + public init(clock: any VideoSDKRTC.Clock = MillisClock(), resource: VideoSDKRTC.Resource = EnvVarResource.get(), logLimits: VideoSDKRTC.LogLimits = LogLimits(), logRecordProcessors: [any VideoSDKRTC.LogRecordProcessor] = []) + public func get(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.Logger + public func loggerBuilder(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.LoggerBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class LoggerSdk : VideoSDKRTC.Logger { + public func eventBuilder(name: Swift.String) -> any VideoSDKRTC.EventBuilder + public func logRecordBuilder() -> any VideoSDKRTC.LogRecordBuilder + @objc deinit +} +public struct LogLimits { + public static let defaultMaxAttributeCount: Swift.Int + public static let defaultMaxAtributeLength: Swift.Int + public let maxAttributeCount: Swift.Int + public let maxAttributeLength: Swift.Int + public init(maxAttributeCount: Swift.Int = Self.defaultMaxAttributeCount, maxAttributeLength: Swift.Int = Self.defaultMaxAtributeLength) +} +@_hasMissingDesignatedInitializers public class LogRecordAdapter { + public static func toProtoResourceRecordLog(logRecordList: [VideoSDKRTC.ReadableLogRecord]) -> [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs] + @objc deinit +} +public protocol LogRecordBuilder { + func setTimestamp(_ timestamp: Foundation.Date) -> Self + func setObservedTimestamp(_ observed: Foundation.Date) -> Self + func setSpanContext(_ context: VideoSDKRTC.SpanContext) -> Self + func setSeverity(_ severity: VideoSDKRTC.Severity) -> Self + func setBody(_ body: Swift.String) -> Self + func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + func emit() +} +@_hasMissingDesignatedInitializers public class LogRecordBuilderSdk : VideoSDKRTC.EventBuilder { + public func setTimestamp(_ timestamp: Foundation.Date) -> Self + public func setObservedTimestamp(_ observed: Foundation.Date) -> Self + public func setSpanContext(_ context: VideoSDKRTC.SpanContext) -> Self + public func setSeverity(_ severity: VideoSDKRTC.Severity) -> Self + public func setBody(_ body: Swift.String) -> Self + public func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + public func setData(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + public func emit() + @objc deinit +} +public protocol LogRecordExporter { + func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + func shutdown() + func forceFlush() -> VideoSDKRTC.ExportResult +} +public protocol LogRecordProcessor { + func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + func forceFlush() -> VideoSDKRTC.ExportResult + func shutdown() -> VideoSDKRTC.ExportResult +} +public enum Opentelemetry_Proto_Logs_V1_SeverityNumber : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unspecified + case trace + case trace2 + case trace3 + case trace4 + case debug + case debug2 + case debug3 + case debug4 + case info + case info2 + case info3 + case info4 + case warn + case warn2 + case warn3 + case warn4 + case error + case error2 + case error3 + case error4 + case fatal + case fatal2 + case fatal3 + case fatal4 + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber] +} +public enum Opentelemetry_Proto_Logs_V1_LogRecordFlags : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case doNotUse + case traceFlagsMask + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags] +} +public struct Opentelemetry_Proto_Logs_V1_LogsData { + public var resourceLogs: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Logs_V1_ResourceLogs { + public var resource: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource { + get + set + } + public var hasResource: Swift.Bool { + get + } + public mutating func clearResource() + public var scopeLogs: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Logs_V1_ScopeLogs { + public var scope: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope { + get + set + } + public var hasScope: Swift.Bool { + get + } + public mutating func clearScope() + public var logRecords: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Logs_V1_LogRecord { + public var timeUnixNano: Swift.UInt64 + public var observedTimeUnixNano: Swift.UInt64 + public var severityNumber: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber + public var severityText: Swift.String + public var body: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue { + get + set + } + public var hasBody: Swift.Bool { + get + } + public mutating func clearBody() + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var flags: Swift.UInt32 + public var traceID: Foundation.Data + public var spanID: Foundation.Data + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest { + public var resourceLogs: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse { + public var partialSuccess: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess { + get + set + } + public var hasPartialSuccess: Swift.Bool { + get + } + public mutating func clearPartialSuccess() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess { + public var rejectedLogRecords: Swift.Int64 + public var errorMessage: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol LongCounter { + mutating func add(value: Swift.Int) + mutating func add(value: Swift.Int, attribute: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongCounterBuilder : AnyObject { + func ofDoubles() -> any VideoSDKRTC.DoubleCounterBuilder + func build() -> any VideoSDKRTC.LongCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongCounter +} +@_hasMissingDesignatedInitializers public class LongCounterMeterBuilderSdk : VideoSDKRTC.LongCounterBuilder { + public func ofDoubles() -> any VideoSDKRTC.DoubleCounterBuilder + public func build() -> any VideoSDKRTC.LongCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongCounter + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongCounterSdk : VideoSDKRTC.LongCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public func add(value: Swift.Int) + public func add(value: Swift.Int, attribute: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public struct DoubleCounterSdk : VideoSDKRTC.DoubleCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public mutating func add(value: Swift.Double) + public mutating func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongGaugeBuilder : AnyObject { + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongGauge +} +@_hasMissingDesignatedInitializers public class LongGaugeBuilderSdk : VideoSDKRTC.LongGaugeBuilder { + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongGauge + @objc deinit +} +public protocol LongHistogram { + mutating func record(value: Swift.Int) + mutating func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongHistogramBuilder : AnyObject { + func build() -> any VideoSDKRTC.LongHistogram +} +@_hasMissingDesignatedInitializers public class LongHistogramMeterBuilderSdk : VideoSDKRTC.LongHistogramBuilder { + public func build() -> any VideoSDKRTC.LongHistogram + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongHistogramMeterSdk : VideoSDKRTC.LongHistogram, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public func record(value: Swift.Int) + public func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongLastValueAggregator : VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongPointData : VideoSDKRTC.PointData { + public var value: Swift.Int + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongSumAggregator : VideoSDKRTC.SumAggregator, VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol LongUpDownCounter { + mutating func add(value: Swift.Int) + mutating func add(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongUpDownCounterBuilder : AnyObject { + func ofDoubles() -> any VideoSDKRTC.DoubleUpDownCounterBuilder + func build() -> any VideoSDKRTC.LongUpDownCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongUpDownCounter +} +@_hasMissingDesignatedInitializers public class LongUpDownCounterBuilderSdk : VideoSDKRTC.LongUpDownCounterBuilder { + public func ofDoubles() -> any VideoSDKRTC.DoubleUpDownCounterBuilder + public func build() -> any VideoSDKRTC.LongUpDownCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongUpDownCounter + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongUpDownCounterSdk : VideoSDKRTC.LongUpDownCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor { + get + } + public func add(value: Swift.Int) + public func add(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class MaxValueAggregator : VideoSDKRTC.Aggregator where T : Swift.Comparable, T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public struct Measurement { + public var startEpochNano: Swift.UInt64 { + get + } + public var epochNano: Swift.UInt64 { + get + } + public var hasLongValue: Swift.Bool { + get + } + public var longValue: Swift.Int { + get + } + public var doubleValue: Swift.Double { + get + } + public var hasDoubleValue: Swift.Bool { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public static func longMeasurement(startEpochNano: Swift.UInt64, endEpochNano: Swift.UInt64, value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.Measurement + public static func doubleMeasurement(startEpochNano: Swift.UInt64, endEpochNano: Swift.UInt64, value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.Measurement +} +public protocol MeasureMetric { + associatedtype T + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundMeasureMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundMeasureMetric +} +extension VideoSDKRTC.MeasureMetric { + public func record(value: Self.T, labelset: VideoSDKRTC.LabelSet) + public func record(value: Self.T, labels: [Swift.String : Swift.String]) +} +public struct AnyMeasureMetric : VideoSDKRTC.MeasureMetric { + public init(_ measurable: U) where T == U.T, U : VideoSDKRTC.MeasureMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundMeasureMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundMeasureMetric +} +public struct NoopMeasureMetric : VideoSDKRTC.MeasureMetric { + public init() + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundMeasureMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundMeasureMetric +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class MeasureMinMaxSumCountAggregator : VideoSDKRTC.Aggregator where T : Swift.Comparable, T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public enum authorisationStatus { + case notDetermined + case authorised + case denied + case restricted + public static func == (a: VideoSDKRTC.authorisationStatus, b: VideoSDKRTC.authorisationStatus) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public protocol AuthorisationDelegate : AnyObject { + func handlePermission() +} +@_hasMissingDesignatedInitializers public class MediaStream : Swift.Equatable { + public var id: Swift.String { + get + } + public var kind: VideoSDKRTC.MediaType { + get + } + public var track: WebRTC.RTCMediaStreamTrack { + get + } + public var producer: Mediasoup.Producer? { + get + } + public var consumer: Mediasoup.Consumer? { + get + } + @objc deinit +} +extension VideoSDKRTC.MediaStream { + public func pause() + public func resume() +} +extension VideoSDKRTC.MediaStream { + public static func == (lhs: VideoSDKRTC.MediaStream, rhs: VideoSDKRTC.MediaStream) -> Swift.Bool +} +public enum MediaType : Swift.Equatable { + case share + case state(value: Mediasoup.MediaKind) + public static func == (a: VideoSDKRTC.MediaType, b: VideoSDKRTC.MediaType) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class Meeting : Swift.Equatable { + public var id: Swift.String { + get + } + public var localParticipant: VideoSDKRTC.Participant { + get + } + public var participants: [Swift.String : VideoSDKRTC.Participant] { + get + } + public var pinnedParticipants: [Swift.String : VideoSDKRTC.ParticipantPinState] { + get + } + public var hlsUrls: VideoSDKRTC.HLSUrl? + public var hlsState: VideoSDKRTC.HLSState + public var liveStreamState: VideoSDKRTC.LiveStreamState + public var recordingState: VideoSDKRTC.RecordingState + public var pubsub: VideoSDKRTC.PubSub { + get + } + public var customVideoMediaStream: VideoSDKRTC.CustomRTCMediaStream? { + get + } + public var meetingMode: VideoSDKRTC.Mode? { + get + } + @objc deinit +} +extension VideoSDKRTC.Meeting { + public func join(cameraPosition: AVFoundation.AVCaptureDevice.Position) + public func leave() + public func end() + public func enableWebcam(customVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil) + public func disableWebcam() + public func switchWebcam() + public func muteMic() + public func unmuteMic() + public func startRecording(webhookUrl: Swift.String, awsDirPath: Swift.String? = nil, config: VideoSDKRTC.RecordingConfig? = nil) + public func stopRecording() + public func startLivestream(outputs: [VideoSDKRTC.LivestreamOutput]) + public func stopLivestream() + public func startHLS(config: VideoSDKRTC.HLSConfig? = nil) + public func stopHLS() + public func changeMode(_ mode: VideoSDKRTC.Mode) + #if compiler(>=5.3) && $AsyncAwait + @available(iOS 13.0.0, *) + public func enableScreenShare() async + #endif + #if compiler(>=5.3) && $AsyncAwait + @available(iOS 13.0.0, *) + public func disableScreenShare() async + #endif + public func changeMic(selectedDevice: Swift.String) + public func getMics() -> [(deviceName: Swift.String, deviceType: Swift.String)] + public func removeOberver() +} +extension VideoSDKRTC.Meeting { + public func addEventListener(_ meetingEventListener: any VideoSDKRTC.MeetingEventListener) + public func removeEventListener(_ meetingEventListener: any VideoSDKRTC.MeetingEventListener) +} +extension VideoSDKRTC.Meeting { + public static func == (lhs: VideoSDKRTC.Meeting, rhs: VideoSDKRTC.Meeting) -> Swift.Bool +} +public protocol MeetingEventListener : AnyObject { + func onMeetingJoined() + func onMeetingLeft() + func onParticipantJoined(_ participant: VideoSDKRTC.Participant) + func onParticipantLeft(_ participant: VideoSDKRTC.Participant) + func onRecordingStarted() + func onRecordingStoppped() + func onLivestreamStarted() + func onLivestreamStopped() + func onSpeakerChanged(participantId: Swift.String?) + func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + func onSocketError(message: Swift.String) + func onMeetingStateChanged(meetingState: VideoSDKRTC.MeetingState) + func onError(error: VideoSDKRTC.VideoSDKError) + func onHlsStateChanged(state: VideoSDKRTC.HLSState, hlsUrl: VideoSDKRTC.HLSUrl?) + func onLivestreamStateChanged(state: VideoSDKRTC.LiveStreamState) + func onRecordingStateChanged(state: VideoSDKRTC.RecordingState) + func onPinStateChanged(participantId: Swift.String, pinType: VideoSDKRTC.PinType) + func onParticipantModeChanged(participantId: Swift.String, mode: VideoSDKRTC.Mode) + func onMicChanged(selectedDevice: Swift.String) +} +extension VideoSDKRTC.MeetingEventListener { + public func onMeetingJoined() + public func onMeetingLeft() + public func onParticipantJoined(_ participant: VideoSDKRTC.Participant) + public func onParticipantLeft(_ participant: VideoSDKRTC.Participant) + public func onRecordingStarted() + public func onRecordingStoppped() + public func onLivestreamStarted() + public func onLivestreamStopped() + public func onSpeakerChanged(participantId: Swift.String?) + public func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + public func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + public func onSocketError(message: Swift.String) + public func onMeetingStateChanged(meetingState: VideoSDKRTC.MeetingState) + public func onError(error: VideoSDKRTC.VideoSDKError) + public func onHlsStateChanged(state: VideoSDKRTC.HLSState, hlsUrl: VideoSDKRTC.HLSUrl?) + public func onLivestreamStateChanged(state: VideoSDKRTC.LiveStreamState) + public func onRecordingStateChanged(state: VideoSDKRTC.RecordingState) + public func onPinStateChanged(participantId: Swift.String, pinType: VideoSDKRTC.PinType) + public func onParticipantModeChanged(participantId: Swift.String, mode: VideoSDKRTC.Mode) + public func onMicChanged(selectedDevice: Swift.String) +} +public enum MeetingState : Swift.String { + case CONNECTING, CONNECTED, CLOSING, CLOSED, CANCELLED + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum Mode : Swift.String { + case CONFERENCE, VIEWER + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum VideoSDKError : Swift.Int { + case UNKNOWN_ERROR + case INVALID_API_KEY + case INVALID_TOKEN + case INVALID_MEETING_ID + case INVALID_PARTICIPANT_ID + case DUPLICATE_PARTICIPANT + case ACCOUNT_DEACTIVATED + case ACCOUNT_DISCONTINUED + case INVALID_PERMISSIONS + case MAX_PARTCIPANT_REACHED + case MAX_SPEAKER_REACHED + case START_RECORDING_FAILED + case STOP_RECORDING_FAILED + case START_LIVESTREAM_FAILED + case STOP_LIVESTREAM_FAILED + case INVALID_LIVESTREAM_CONFIG + case START_HLS_FAILED + case STOP_HLS_FAILED + case RECORDING_FAILED + case LIVESTREAM_FAILED + case HLS_FAILED + case ERROR_GET_VIDEO_MEDIA + case ERROR_GET_AUDIO_MEDIA + case ERROR_GET_DISPLAY_MEDIA + case ERROR_GET_VIDEO_MEDIA_PERMISSION_DENIED + case ERROR_GET_AUDIO_MEDIA_PERMISSION_DENIED + case ERROR_GET_DISPLAY_MEDIA_PERMISSION_DENIED + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public enum HLSState : Swift.String { + case HLS_STARTED, HLS_STARTING, HLS_STOPPED, HLS_STOPPING, HLS_PLAYABLE + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum RecordingState : Swift.String { + case RECORDING_STARTED, RECORDING_STARTING, RECORDING_STOPPED, RECORDING_STOPPING + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum LiveStreamState : Swift.String { + case LIVESTREAM_STARTED, LIVESTREAM_STARTING, LIVESTREAM_STOPPED, LIVESTREAM_STOPPING + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public protocol Message : VideoSDKRTC._MessageBase { + init() + static var protoMessageName: Swift.String { get } + var isInitialized: Swift.Bool { get } + var unknownFields: VideoSDKRTC.UnknownStorage { get set } + mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + func hash(into hasher: inout Swift.Hasher) + func isEqualTo(message: any VideoSDKRTC.Message) -> Swift.Bool +} +public protocol _MessageBase : Swift.Sendable { +} +extension VideoSDKRTC.Message { + public var isInitialized: Swift.Bool { + get + } + public func hash(into hasher: inout Swift.Hasher) + public static func with(_ populator: (inout Self) throws -> ()) rethrows -> Self +} +public protocol _MessageImplementationBase : Swift.Hashable, VideoSDKRTC.Message { + func _protobuf_generated_isEqualTo(other: Self) -> Swift.Bool +} +extension VideoSDKRTC._MessageImplementationBase { + public func isEqualTo(message: any VideoSDKRTC.Message) -> Swift.Bool + public static func == (lhs: Self, rhs: Self) -> Swift.Bool + public func _protobuf_generated_isEqualTo(other: Self) -> Swift.Bool +} +extension VideoSDKRTC.Message { + public init(unpackingAny: VideoSDKRTC.Google_Protobuf_Any, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws +} +extension VideoSDKRTC.Message { + public func serializedBytes(partial: Swift.Bool = false) throws -> Bytes where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + @inlinable public init(serializedBytes bytes: Bytes, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes { + self.init() + try merge(serializedBytes: bytes, extensions: extensions, partial: partial, options: options) + } + @inlinable public mutating func merge(serializedBytes bytes: Bytes, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes { + try bytes.withUnsafeBytes { (body: UnsafeRawBufferPointer) in + try _merge(rawBuffer: body, extensions: extensions, partial: partial, options: options) + } + } + @usableFromInline + internal mutating func _merge(rawBuffer body: Swift.UnsafeRawBufferPointer, extensions: (any VideoSDKRTC.ExtensionMap)?, partial: Swift.Bool, options: VideoSDKRTC.BinaryDecodingOptions) throws +} +extension VideoSDKRTC.Message { + @inlinable public init(serializedData data: Foundation.Data, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws { + self.init() + try merge(serializedBytes: data, extensions: extensions, partial: partial, options: options) + } + @inlinable public mutating func merge(serializedData data: Foundation.Data, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws { + try merge(serializedBytes: data, extensions: extensions, partial: partial, options: options) + } + public func serializedData(partial: Swift.Bool = false) throws -> Foundation.Data +} +extension VideoSDKRTC.Message { + public func jsonString(options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Swift.String + public func jsonUTF8Bytes(options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Bytes where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public init(jsonString: Swift.String, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public init(jsonString: Swift.String, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public init(jsonUTF8Bytes: Bytes, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public init(jsonUTF8Bytes: Bytes, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes +} +extension VideoSDKRTC.Message { + public init(jsonUTF8Data: Foundation.Data, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public init(jsonUTF8Data: Foundation.Data, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public func jsonUTF8Data(options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Foundation.Data +} +extension VideoSDKRTC.Message { + public static func jsonString(from collection: C, options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Swift.String where Self == C.Element, C : Swift.Collection + public static func jsonUTF8Bytes(from collection: C, options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Bytes where Self == C.Element, C : Swift.Collection, Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public static func array(fromJSONString jsonString: Swift.String, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func array(fromJSONString jsonString: Swift.String, extensions: any VideoSDKRTC.ExtensionMap = SimpleExtensionMap(), options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func array(fromJSONUTF8Bytes jsonUTF8Bytes: Bytes, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public static func array(fromJSONUTF8Bytes jsonUTF8Bytes: Bytes, extensions: any VideoSDKRTC.ExtensionMap = SimpleExtensionMap(), options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes +} +extension VideoSDKRTC.Message { + public static func array(fromJSONUTF8Data jsonUTF8Data: Foundation.Data, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func array(fromJSONUTF8Data jsonUTF8Data: Foundation.Data, extensions: any VideoSDKRTC.ExtensionMap = SimpleExtensionMap(), options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func jsonUTF8Data(from collection: C, options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Foundation.Data where Self == C.Element, C : Swift.Collection +} +extension VideoSDKRTC.Message { + public func textFormatString() -> Swift.String + public func textFormatString(options: VideoSDKRTC.TextFormatEncodingOptions) -> Swift.String + public init(textFormatString: Swift.String, options: VideoSDKRTC.TextFormatDecodingOptions = TextFormatDecodingOptions(), extensions: (any VideoSDKRTC.ExtensionMap)? = nil) throws +} +public protocol AnyMessageExtension : Swift.Sendable { + var fieldNumber: Swift.Int { get } + var fieldName: Swift.String { get } + var messageType: any VideoSDKRTC.Message.Type { get } + func _protobuf_newField(decoder: inout D) throws -> (any VideoSDKRTC.AnyExtensionField)? where D : VideoSDKRTC.SPBDecoder +} +final public class MessageExtension : VideoSDKRTC.AnyMessageExtension where FieldType : VideoSDKRTC.ExtensionField, MessageType : VideoSDKRTC.Message { + final public let fieldNumber: Swift.Int + final public let fieldName: Swift.String + final public let messageType: any VideoSDKRTC.Message.Type + public init(_protobuf_fieldNumber: Swift.Int, fieldName: Swift.String) + final public func _protobuf_newField(decoder: inout D) throws -> (any VideoSDKRTC.AnyExtensionField)? where D : VideoSDKRTC.SPBDecoder + @objc deinit +} +public protocol Meter { + func createIntCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + func createDoubleCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + func createIntMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + func createDoubleMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + func createIntHistogram(name: Swift.String, explicitBoundaries: Swift.Array?, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + func createDoubleHistogram(name: Swift.String, explicitBoundaries: Swift.Array?, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + func createRawDoubleHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + func createRawIntHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + func createRawDoubleCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + func createRawIntCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + func createIntObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + func createDoubleObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric + func createIntObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + func createDoubleObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric + func getLabelSet(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.LabelSet +} +extension VideoSDKRTC.Meter { + public func createIntCounter(name: Swift.String) -> VideoSDKRTC.AnyCounterMetric + public func createDoubleCounter(name: Swift.String) -> VideoSDKRTC.AnyCounterMetric + public func createIntMeasure(name: Swift.String) -> VideoSDKRTC.AnyMeasureMetric + public func createDoubleMeasure(name: Swift.String) -> VideoSDKRTC.AnyMeasureMetric + public func createIntObserver(name: Swift.String, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + public func createDoubleObserver(name: Swift.String, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric +} +public protocol MeterBuilder : AnyObject { + func setSchemaUrl(schemaUrl: Swift.String) -> Self + func setInstrumentationVersion(instrumentationVersion: Swift.String) -> Self + func build() -> any VideoSDKRTC.StableMeter +} +@_hasMissingDesignatedInitializers public class MeterBuilderSdk : VideoSDKRTC.MeterBuilder { + public func setSchemaUrl(schemaUrl: Swift.String) -> Self + public func setInstrumentationVersion(instrumentationVersion: Swift.String) -> Self + public func build() -> any VideoSDKRTC.StableMeter + @objc deinit +} +public protocol MeterProvider : AnyObject { + func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String?) -> any VideoSDKRTC.Meter +} +public class MeterProviderBuilder { + public var resource: VideoSDKRTC.Resource { + get + } + public var metricExporter: any VideoSDKRTC.MetricExporter { + get + } + public var metricPushInterval: Foundation.TimeInterval { + get + } + public var metricProcessor: any VideoSDKRTC.MetricProcessor { + get + } + public init() + public func with(processor: any VideoSDKRTC.MetricProcessor) -> Self + public func with(exporter: any VideoSDKRTC.MetricExporter) -> Self + public func with(pushInterval: Foundation.TimeInterval) -> Self + public func with(resource: VideoSDKRTC.Resource) -> Self + public func build() -> any VideoSDKRTC.MeterProvider + @objc deinit +} +public class MeterProviderSdk : VideoSDKRTC.MeterProvider { + public static let defaultPushInterval: Swift.Double + convenience public init() + public init(metricProcessor: any VideoSDKRTC.MetricProcessor, metricExporter: any VideoSDKRTC.MetricExporter, metricPushInterval: Foundation.TimeInterval = MeterProviderSdk.defaultPushInterval, resource: VideoSDKRTC.Resource = EnvVarResource.get()) + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Meter + public func setMetricProcessor(_ metricProcessor: any VideoSDKRTC.MetricProcessor) + public func addMetricExporter(_ metricExporter: any VideoSDKRTC.MetricExporter) + public func setMetricPushInterval(_ interval: Foundation.TimeInterval) + public func setResource(_ resource: VideoSDKRTC.Resource) + @objc deinit +} +extension VideoSDKRTC.Meter { + public func addMetric(name _: Swift.String, type _: VideoSDKRTC.AggregationType, data _: [any VideoSDKRTC.MetricData]) +} +public struct Metric { + public var namespace: Swift.String { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var name: Swift.String { + get + } + public var description: Swift.String { + get + } + public var aggregationType: VideoSDKRTC.AggregationType { + get + } + public var data: [any VideoSDKRTC.MetricData] { + get + } +} +extension VideoSDKRTC.Metric : Swift.Equatable { + public static func == (lhs: VideoSDKRTC.Metric, rhs: VideoSDKRTC.Metric) -> Swift.Bool +} +extension VideoSDKRTC.Metric : Swift.Codable { + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public protocol MetricData { + var startTimestamp: Foundation.Date { get set } + var timestamp: Foundation.Date { get set } + var labels: [Swift.String : Swift.String] { get set } +} +public struct NoopMetricData : VideoSDKRTC.MetricData { + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] +} +public struct SumData : VideoSDKRTC.MetricData { + public init(startTimestamp: Foundation.Date, timestamp: Foundation.Date, labels: [Swift.String : Swift.String] = [String: String](), sum: T) + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] + public var sum: T +} +public struct SummaryData : VideoSDKRTC.MetricData { + public init(startTimestamp: Foundation.Date, timestamp: Foundation.Date, labels: [Swift.String : Swift.String] = [String: String](), count: Swift.Int, sum: T, min: T, max: T) + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] + public var count: Swift.Int + public var sum: T + public var min: T + public var max: T +} +public struct HistogramData : VideoSDKRTC.MetricData { + public init(startTimestamp: Foundation.Date, timestamp: Foundation.Date, labels: [Swift.String : Swift.String] = [String: String](), buckets: (boundaries: Swift.Array, counts: Swift.Array), count: Swift.Int, sum: T) + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] + public var buckets: (boundaries: Swift.Array, counts: Swift.Array) + public var count: Swift.Int + public var sum: T +} +extension VideoSDKRTC.NoopMetricData : Swift.Equatable, Swift.Codable { + public static func == (a: VideoSDKRTC.NoopMetricData, b: VideoSDKRTC.NoopMetricData) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.SumData : Swift.Equatable where T : Swift.Equatable { + public static func == (a: VideoSDKRTC.SumData, b: VideoSDKRTC.SumData) -> Swift.Bool +} +extension VideoSDKRTC.SumData : Swift.Codable where T : Swift.Decodable, T : Swift.Encodable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.SummaryData : Swift.Equatable where T : Swift.Equatable { + public static func == (a: VideoSDKRTC.SummaryData, b: VideoSDKRTC.SummaryData) -> Swift.Bool +} +extension VideoSDKRTC.SummaryData : Swift.Codable where T : Swift.Decodable, T : Swift.Encodable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.HistogramData : Swift.Equatable where T : Swift.Equatable { + public static func == (lhs: VideoSDKRTC.HistogramData, rhs: VideoSDKRTC.HistogramData) -> Swift.Bool +} +extension VideoSDKRTC.HistogramData : Swift.Codable where T : Swift.Decodable, T : Swift.Encodable { + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public struct MetricDescriptor : Swift.Hashable { + public var name: Swift.String { + get + } + public var description: Swift.String { + get + } + public var view: VideoSDKRTC.StableView { + get + } + public var instrument: VideoSDKRTC.InstrumentDescriptor { + get + } + public func aggregationName() -> Swift.String + public static func == (lhs: VideoSDKRTC.MetricDescriptor, rhs: VideoSDKRTC.MetricDescriptor) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public enum MetricExporterResultCode { + case success + case failureNotRetryable + case failureRetryable + public static func == (a: VideoSDKRTC.MetricExporterResultCode, b: VideoSDKRTC.MetricExporterResultCode) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public protocol MetricExporter { + func export(metrics: [VideoSDKRTC.Metric], shouldCancel: (() -> Swift.Bool)?) -> VideoSDKRTC.MetricExporterResultCode +} +public protocol MetricProcessor { + func finishCollectionCycle() -> [VideoSDKRTC.Metric] + func process(metric: VideoSDKRTC.Metric) +} +public class MetricProcessorSdk : VideoSDKRTC.MetricProcessor { + public init() + public func finishCollectionCycle() -> [VideoSDKRTC.Metric] + public func process(metric: VideoSDKRTC.Metric) + @objc deinit +} +public protocol MetricProducer : VideoSDKRTC.CollectionRegistration { + func collectAllMetrics() -> [VideoSDKRTC.StableMetricData] +} +public struct NoopMetricProducer : VideoSDKRTC.MetricProducer { + public func collectAllMetrics() -> [VideoSDKRTC.StableMetricData] +} +public enum Opentelemetry_Proto_Metrics_V1_AggregationTemporality : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unspecified + case delta + case cumulative + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality] +} +public enum Opentelemetry_Proto_Metrics_V1_DataPointFlags : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case doNotUse + case noRecordedValueMask + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags] +} +public struct Opentelemetry_Proto_Metrics_V1_MetricsData { + public var resourceMetrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ResourceMetrics { + public var resource: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource { + get + set + } + public var hasResource: Swift.Bool { + get + } + public mutating func clearResource() + public var scopeMetrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ScopeMetrics { + public var scope: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope { + get + set + } + public var hasScope: Swift.Bool { + get + } + public mutating func clearScope() + public var metrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Metric { + public var name: Swift.String + public var description_p: Swift.String + public var unit: Swift.String + public var data: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data? + public var gauge: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge { + get + set + } + public var sum: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum { + get + set + } + public var histogram: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram { + get + set + } + public var exponentialHistogram: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram { + get + set + } + public var summary: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Data : Swift.Equatable { + case gauge(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge) + case sum(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum) + case histogram(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram) + case exponentialHistogram(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram) + case summary(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary) + public static func == (a: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data, b: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data) -> Swift.Bool + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Gauge { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Sum { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint] + public var aggregationTemporality: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality + public var isMonotonic: Swift.Bool + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Histogram { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint] + public var aggregationTemporality: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ExponentialHistogram { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint] + public var aggregationTemporality: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Summary { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_NumberDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var value: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value? + public var asDouble: Swift.Double { + get + set + } + public var asInt: Swift.Int64 { + get + set + } + public var exemplars: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar] + public var flags: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Value : Swift.Equatable { + case asDouble(Swift.Double) + case asInt(Swift.Int64) + public static func == (a: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value, b: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value) -> Swift.Bool + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_HistogramDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var count: Swift.UInt64 + public var sum: Swift.Double { + get + set + } + public var hasSum: Swift.Bool { + get + } + public mutating func clearSum() + public var bucketCounts: [Swift.UInt64] + public var explicitBounds: [Swift.Double] + public var exemplars: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar] + public var flags: Swift.UInt32 + public var min: Swift.Double { + get + set + } + public var hasMin: Swift.Bool { + get + } + public mutating func clearMin() + public var max: Swift.Double { + get + set + } + public var hasMax: Swift.Bool { + get + } + public mutating func clearMax() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var count: Swift.UInt64 + public var sum: Swift.Double { + get + set + } + public var hasSum: Swift.Bool { + get + } + public mutating func clearSum() + public var scale: Swift.Int32 + public var zeroCount: Swift.UInt64 + public var positive: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets { + get + set + } + public var hasPositive: Swift.Bool { + get + } + public mutating func clearPositive() + public var negative: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets { + get + set + } + public var hasNegative: Swift.Bool { + get + } + public mutating func clearNegative() + public var flags: Swift.UInt32 + public var exemplars: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar] + public var min: Swift.Double { + get + set + } + public var hasMin: Swift.Bool { + get + } + public mutating func clearMin() + public var max: Swift.Double { + get + set + } + public var hasMax: Swift.Bool { + get + } + public mutating func clearMax() + public var zeroThreshold: Swift.Double + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct Buckets { + public var offset: Swift.Int32 + public var bucketCounts: [Swift.UInt64] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_SummaryDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var count: Swift.UInt64 + public var sum: Swift.Double + public var quantileValues: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile] + public var flags: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct ValueAtQuantile { + public var quantile: Swift.Double + public var value: Swift.Double + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Exemplar { + public var filteredAttributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var timeUnixNano: Swift.UInt64 + public var value: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value? + public var asDouble: Swift.Double { + get + set + } + public var asInt: Swift.Int64 { + get + set + } + public var spanID: Foundation.Data + public var traceID: Foundation.Data + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Value : Swift.Equatable { + case asDouble(Swift.Double) + case asInt(Swift.Int64) + public static func == (a: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value, b: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value) -> Swift.Bool + } + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest { + public var resourceMetrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse { + public var partialSuccess: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess { + get + set + } + public var hasPartialSuccess: Swift.Bool { + get + } + public mutating func clearPartialSuccess() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess { + public var rejectedDataPoints: Swift.Int64 + public var errorMessage: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public enum MetricsAdapter { + public static func toProtoResourceMetrics(stableMetricData: [VideoSDKRTC.StableMetricData]) -> [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public static func toProtoResourceMetrics(metricDataList: [VideoSDKRTC.Metric]) -> [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public static func toProtoMetric(stableMetric: VideoSDKRTC.StableMetricData) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric? + public static func toProtoMetric(metric: VideoSDKRTC.Metric) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric? +} +public struct MetricStorageConstants { +} +public protocol MetricStorage { + var metricDescriptor: VideoSDKRTC.MetricDescriptor { get } + mutating func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + func isEmpty() -> Swift.Bool +} +public protocol WritableMetricStorage { + mutating func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + mutating func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +@_hasMissingDesignatedInitializers public class MetricStorageRegistry { + @objc deinit +} +public class MillisClock : VideoSDKRTC.Clock { + public init() + public var now: Foundation.Date { + get + } + @objc deinit +} +public class MonotonicClock : VideoSDKRTC.Clock { + public init(clock: any VideoSDKRTC.Clock) + public var now: Foundation.Date { + get + } + @objc deinit +} +public class MultiLogRecordExporter : VideoSDKRTC.LogRecordExporter { + public init(logRecordExporters: [any VideoSDKRTC.LogRecordExporter]) + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func shutdown() + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public class MultiLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + public init(logRecordProcessors: [any VideoSDKRTC.LogRecordProcessor]) + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + @objc deinit +} +public class MultiSpanExporter : VideoSDKRTC.SpanExporter { + public init(spanExporters: [any VideoSDKRTC.SpanExporter]) + public func export(spans: [VideoSDKRTC.SpanData]) -> VideoSDKRTC.SpanExporterResultCode + public func flush() -> VideoSDKRTC.SpanExporterResultCode + public func shutdown() + @objc deinit +} +public struct MultiSpanProcessor : VideoSDKRTC.SpanProcessor { + public init(spanProcessors: [any VideoSDKRTC.SpanProcessor]) + public var isStartRequired: Swift.Bool { + get + } + public var isEndRequired: Swift.Bool { + get + } + public func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + public func onEnd(span: any VideoSDKRTC.ReadableSpan) + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) +} +public struct _NameMap : Swift.ExpressibleByDictionaryLiteral { + public enum NameDescription { + case same(proto: Swift.StaticString) + case standard(proto: Swift.StaticString) + case unique(proto: Swift.StaticString, json: Swift.StaticString) + case aliased(proto: Swift.StaticString, aliases: [Swift.StaticString]) + } + public init() + public init(dictionaryLiteral elements: (Swift.Int, VideoSDKRTC._NameMap.NameDescription)...) + public typealias Key = Swift.Int + public typealias Value = VideoSDKRTC._NameMap.NameDescription +} +@_hasMissingDesignatedInitializers public class NoopLogRecordExporter : VideoSDKRTC.LogRecordExporter { + public static let instance: VideoSDKRTC.NoopLogRecordExporter + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func shutdown() + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +@_hasMissingDesignatedInitializers public class NoopLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public static let noopLogRecordProcessor: VideoSDKRTC.NoopLogRecordProcessor + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + @objc deinit +} +public protocol ObservableDoubleCounter { +} +public protocol ObservableDoubleGauge { +} +public protocol ObservableDoubleMeasurement { + func record(value: Swift.Double) + func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol ObservableDoubleUpDownCounter { +} +public struct ObservableInstrumentSdk : VideoSDKRTC.ObservableDoubleCounter, VideoSDKRTC.ObservableLongCounter, VideoSDKRTC.ObservableLongGauge, VideoSDKRTC.ObservableLongUpDownCounter, VideoSDKRTC.ObservableDoubleGauge, VideoSDKRTC.ObservableDoubleUpDownCounter { +} +public protocol ObservableLongCounter { +} +public protocol ObservableLongGauge { +} +public protocol ObservableLongMeasurement { + func record(value: Swift.Int) + func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol ObservableLongUpDownCounter { +} +public func defaultOltpHTTPMetricsEndpoint() -> Foundation.URL +@_inheritsConvenienceInitializers public class OtlpHttpMetricExporter : VideoSDKRTC.OtlpHttpExporterBase, VideoSDKRTC.MetricExporter { + override public init(endpoint: Foundation.URL = defaultOltpHTTPMetricsEndpoint(), useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func export(metrics: [VideoSDKRTC.Metric], shouldCancel: (() -> Swift.Bool)?) -> VideoSDKRTC.MetricExporterResultCode + public func flush() -> VideoSDKRTC.MetricExporterResultCode + @objc deinit +} +public struct OpenTelemetry { + public static var version: Swift.String + public static var instance: VideoSDKRTC.OpenTelemetry + public var tracerProvider: any VideoSDKRTC.TracerProvider { + get + } + public var meterProvider: any VideoSDKRTC.MeterProvider { + get + } + public var stableMeterProvider: (any VideoSDKRTC.StableMeterProvider)? { + get + } + public var loggerProvider: any VideoSDKRTC.LoggerProvider { + get + } + public var baggageManager: any VideoSDKRTC.BaggageManager { + get + } + public var propagators: any VideoSDKRTC.ContextPropagators { + get + } + public var contextProvider: VideoSDKRTC.OpenTelemetryContextProvider { + get + } + public static func registerStableMeterProvider(meterProvider: any VideoSDKRTC.StableMeterProvider) + public static func registerTracerProvider(tracerProvider: any VideoSDKRTC.TracerProvider) + public static func registerMeterProvider(meterProvider: any VideoSDKRTC.MeterProvider) + public static func registerLoggerProvider(loggerProvider: any VideoSDKRTC.LoggerProvider) + public static func registerBaggageManager(baggageManager: any VideoSDKRTC.BaggageManager) + public static func registerPropagators(textPropagators: [any VideoSDKRTC.TextMapPropagator], baggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator) + public static func registerContextManager(contextManager: any VideoSDKRTC.ContextManager) +} +public enum OpenTelemetryContextKeys : Swift.String { + case span + case baggage + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct OpenTelemetryContextProvider { + public var activeSpan: (any VideoSDKRTC.Span)? { + get + } + public var activeBaggage: (any VideoSDKRTC.Baggage)? { + get + } + public func setActiveSpan(_ span: any VideoSDKRTC.Span) + public func setActiveBaggage(_ baggage: any VideoSDKRTC.Baggage) + public func removeContextForSpan(_ span: any VideoSDKRTC.Span) + public func removeContextForBaggage(_ baggage: any VideoSDKRTC.Baggage) +} +public struct OtlpConfiguration { + public static let DefaultTimeoutInterval: Foundation.TimeInterval + public let headers: [(Swift.String, Swift.String)]? + public let timeout: Foundation.TimeInterval + public init(timeout: Foundation.TimeInterval = OtlpConfiguration.DefaultTimeoutInterval, headers: [(Swift.String, Swift.String)]? = nil) +} +public class OtlpHttpExporterBase { + public init(endpoint: Foundation.URL, useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func createRequest(body: any VideoSDKRTC.Message, endpoint: Foundation.URL, authToken: Swift.String) -> Foundation.URLRequest + public func shutdown() + @objc deinit +} +public func defaultOltpHttpLoggingEndpoint() -> Foundation.URL +@_inheritsConvenienceInitializers public class OtlpHttpLogExporter : VideoSDKRTC.OtlpHttpExporterBase, VideoSDKRTC.LogRecordExporter { + override public init(endpoint: Foundation.URL = defaultOltpHttpLoggingEndpoint(), useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func forceFlush() -> VideoSDKRTC.ExportResult + public func flush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public func defaultOltpHttpTracesEndpoint() -> Foundation.URL +@_inheritsConvenienceInitializers public class OtlpHttpTraceExporter : VideoSDKRTC.OtlpHttpExporterBase, VideoSDKRTC.SpanExporter { + override public init(endpoint: Foundation.URL = defaultOltpHttpTracesEndpoint(), useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func export(spans: [VideoSDKRTC.SpanData]) -> VideoSDKRTC.SpanExporterResultCode + public func flush() -> VideoSDKRTC.SpanExporterResultCode + @objc deinit +} +public struct OtlpSpan : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct Attribute : Swift.Codable { + public struct Value : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public enum OTPCConstants { + public enum HTTP { + public static let userAgent: Swift.String + } +} +@_hasMissingDesignatedInitializers public class Participant : Swift.Equatable { + public var id: Swift.String { + get + } + public var displayName: Swift.String { + get + } + public var videoQuality: VideoSDKRTC.VideoQuality { + get + } + public var isLocal: Swift.Bool { + get + } + public var streams: [Swift.String : VideoSDKRTC.MediaStream] { + get + } + public var pinState: VideoSDKRTC.ParticipantPinState + public var mode: VideoSDKRTC.Mode + @objc deinit +} +extension VideoSDKRTC.Participant { + public func enableMic() + public func disableMic() + public func enableWebcam() + public func disableWebcam() + public func remove() + public func participantPinStateChanged(pinState: VideoSDKRTC.ParticipantPinState) + public func participantModeChanged(mode: VideoSDKRTC.Mode) + public func getAudioStats() -> [Swift.String : Any]? + public func getVideoStats() -> [Swift.String : Any]? +} +extension VideoSDKRTC.Participant { + public func addStream(_ stream: VideoSDKRTC.MediaStream) + @discardableResult + public func removeStream(_ streamId: Swift.String) -> VideoSDKRTC.MediaStream? + public func removeAllStreams() + public func setQuality(_ quality: VideoSDKRTC.VideoQuality) + public func pin(_ peerId: Swift.String = "", _ pinType: VideoSDKRTC.PinType = .SHARE_AND_CAM) + public func unpin(_ pinType: VideoSDKRTC.PinType = .SHARE_AND_CAM) + public func setPinState(pinState: VideoSDKRTC.ParticipantPinState, peerId: Swift.String = "") +} +extension VideoSDKRTC.Participant { + public func addEventListener(_ listener: any VideoSDKRTC.ParticipantEventListener) + public func removeEventListener(_ listener: any VideoSDKRTC.ParticipantEventListener) +} +extension VideoSDKRTC.Participant { + public static func == (lhs: VideoSDKRTC.Participant, rhs: VideoSDKRTC.Participant) -> Swift.Bool +} +public protocol ParticipantEventListener { + func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) + func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +} +extension VideoSDKRTC.ParticipantEventListener { + public func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) + public func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +} +public enum PinType : Swift.String { + case SHARE_AND_CAM, CAM, SHARE + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct ParticipantPinState : Swift.Codable { + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +@_hasMissingDesignatedInitializers public class PointData : Swift.Equatable { + public var startEpochNanos: Swift.UInt64 + public var endEpochNanos: Swift.UInt64 + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] + public var exemplars: [VideoSDKRTC.ExemplarData] + public static func - (left: VideoSDKRTC.PointData, right: VideoSDKRTC.PointData) -> Self + public static func == (lhs: VideoSDKRTC.PointData, rhs: VideoSDKRTC.PointData) -> Swift.Bool + @objc deinit +} +public protocol ProtobufAPIVersion_3 { +} +public protocol ProtobufAPIVersionCheck { + associatedtype Version : VideoSDKRTC.ProtobufAPIVersion_3 +} +public struct _ProtobufMap where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.FieldType { + public typealias Key = KeyType.BaseType + public typealias Value = ValueType.BaseType + public typealias BaseType = Swift.Dictionary.Key, VideoSDKRTC._ProtobufMap.Value> +} +public struct _ProtobufMessageMap where KeyType : VideoSDKRTC.MapKeyType, ValueType : Swift.Hashable, ValueType : VideoSDKRTC.Message { + public typealias Key = KeyType.BaseType + public typealias Value = ValueType + public typealias BaseType = Swift.Dictionary.Key, VideoSDKRTC._ProtobufMessageMap.Value> +} +public struct _ProtobufEnumMap where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.Enum { + public typealias Key = KeyType.BaseType + public typealias Value = ValueType + public typealias BaseType = Swift.Dictionary.Key, VideoSDKRTC._ProtobufEnumMap.Value> +} +public protocol _ProtoNameProviding { + static var _protobuf_nameMap: VideoSDKRTC._NameMap { get } +} +public struct ProxyMeter : VideoSDKRTC.Meter { + public func createRawDoubleCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + public func createRawIntCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + public func createRawDoubleHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + public func createRawIntHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + public func getLabelSet(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.LabelSet + public func createIntCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + public func createDoubleCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + public func createIntMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + public func createDoubleMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + public func createIntHistogram(name: Swift.String, explicitBoundaries: Swift.Array? = nil, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + public func createDoubleHistogram(name: Swift.String, explicitBoundaries: Swift.Array?, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + public func createIntObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + public func createDoubleObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric + public func createIntObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + public func createDoubleObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric +} +@_hasMissingDesignatedInitializers public class PubSub { + @objc deinit +} +extension VideoSDKRTC.PubSub { + public func publish(topic: Swift.String, message: Swift.String, options: [Swift.String : Any] = [:]) + public func subscribe(topic: Swift.String, forListener listener: any VideoSDKRTC.PubSubMessageListener) + public func unsubscribe(topic: Swift.String, forListener listener: any VideoSDKRTC.PubSubMessageListener) + public func getMessagesForTopic(_ topic: Swift.String) -> [VideoSDKRTC.PubSubMessage] +} +@objc @_hasMissingDesignatedInitializers public class PubSubMessage : ObjectiveC.NSObject { + public var id: Swift.String + public var topic: Swift.String + public var message: Swift.String + public var senderId: Swift.String + public var senderName: Swift.String + public var timestamp: Swift.String + @objc deinit +} +public protocol PubSubMessageListener { + func onMessageReceived(_ message: VideoSDKRTC.PubSubMessage) +} +public struct RandomIdGenerator : VideoSDKRTC.IdGenerator { + public init() + public func generateSpanId() -> VideoSDKRTC.SpanId + public func generateTraceId() -> VideoSDKRTC.TraceId +} +public protocol RawCounterMetric { + associatedtype T + func record(sum: Self.T, startDate: Foundation.Date, endDate: Foundation.Date, labels: [Swift.String : Swift.String]) + func record(sum: Self.T, startDate: Foundation.Date, endDate: Foundation.Date, labelset: VideoSDKRTC.LabelSet) + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawCounterMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawCounterMetric +} +public struct AnyRawCounterMetric : VideoSDKRTC.RawCounterMetric { + public init(_ countable: U) where T == U.T, U : VideoSDKRTC.RawCounterMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawCounterMetric + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labelset: VideoSDKRTC.LabelSet) + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labels: [Swift.String : Swift.String]) +} +public struct NoopRawCounterMetric : VideoSDKRTC.RawCounterMetric { + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labels: [Swift.String : Swift.String]) + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labelset: VideoSDKRTC.LabelSet) + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawCounterMetric +} +public protocol RawHistogramMetric { + associatedtype T + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawHistogramMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawHistogramMetric + func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: Self.T, labelset: VideoSDKRTC.LabelSet) + func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: Self.T, labels: [Swift.String : Swift.String]) +} +public struct AnyRawHistogramMetric : VideoSDKRTC.RawHistogramMetric { + public init(_ histogram: U) where T == U.T, U : VideoSDKRTC.RawHistogramMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawHistogramMetric + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labels: [Swift.String : Swift.String]) + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labelset: VideoSDKRTC.LabelSet) +} +public struct NoopRawHistogramMetric : VideoSDKRTC.RawHistogramMetric { + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labelset: VideoSDKRTC.LabelSet) + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labels: [Swift.String : Swift.String]) + public init() + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawHistogramMetric +} +public struct ReadableLogRecord : Swift.Codable { + public init(resource: VideoSDKRTC.Resource, instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo, timestamp: Foundation.Date, observedTimestamp: Foundation.Date? = nil, spanContext: VideoSDKRTC.SpanContext? = nil, severity: VideoSDKRTC.Severity? = nil, body: Swift.String? = nil, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var timestamp: Foundation.Date { + get + } + public var observedTimestamp: Foundation.Date? { + get + } + public var spanContext: VideoSDKRTC.SpanContext? { + get + } + public var severity: VideoSDKRTC.Severity? { + get + } + public var body: Swift.String? { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public protocol ReadableSpan : VideoSDKRTC.Span { + var name: Swift.String { get set } + var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { get } + func toSpanData() -> VideoSDKRTC.SpanData + var hasEnded: Swift.Bool { get } + var latency: Foundation.TimeInterval { get } +} +@_hasMissingDesignatedInitializers public class RecordEventsReadableSpan : VideoSDKRTC.ReadableSpan { + public var isRecording: Swift.Bool + public var name: Swift.String { + get + set + } + public var spanLimits: VideoSDKRTC.SpanLimits { + get + } + public var context: VideoSDKRTC.SpanContext { + get + } + public var parentContext: VideoSDKRTC.SpanContext? { + get + } + public var hasRemoteParent: Swift.Bool { + get + } + public var spanProcessor: any VideoSDKRTC.SpanProcessor { + get + } + public var links: [VideoSDKRTC.SpanData.Link] { + get + } + public var totalRecordedLinks: Swift.Int { + get + } + public var maxNumberOfAttributes: Swift.Int { + get + } + public var maxNumberOfAttributesPerEvent: Swift.Int { + get + } + public var kind: VideoSDKRTC.SpanKind { + get + } + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var startTime: Foundation.Date { + get + } + public var events: VideoSDKRTC.ArrayWithCapacity { + get + } + public var totalAttributeCount: Swift.Int { + get + } + public var totalRecordedEvents: Swift.Int { + get + } + public var status: VideoSDKRTC.Status { + get + set + } + public var latency: Foundation.TimeInterval { + get + } + public var endTime: Foundation.Date? { + get + } + public var hasEnded: Swift.Bool { + get + } + public static func startSpan(context: VideoSDKRTC.SpanContext, name: Swift.String, instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo, kind: VideoSDKRTC.SpanKind, parentContext: VideoSDKRTC.SpanContext?, hasRemoteParent: Swift.Bool, spanLimits: VideoSDKRTC.SpanLimits, spanProcessor: any VideoSDKRTC.SpanProcessor, clock: any VideoSDKRTC.Clock, resource: VideoSDKRTC.Resource, attributes: VideoSDKRTC.AttributesDictionary, links: [VideoSDKRTC.SpanData.Link], totalRecordedLinks: Swift.Int, startTime: Foundation.Date?) -> VideoSDKRTC.RecordEventsReadableSpan + public func toSpanData() -> VideoSDKRTC.SpanData + public func setAttribute(key: Swift.String, value: VideoSDKRTC.AttributeValue?) + public func addEvent(name: Swift.String) + public func addEvent(name: Swift.String, timestamp: Foundation.Date) + public func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue], timestamp: Foundation.Date) + public func end() + public func end(time: Foundation.Date) + public var description: Swift.String { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class RegisteredReader : Swift.Equatable, Swift.Hashable { + final public let id: Swift.Int32 + final public let reader: any VideoSDKRTC.StableMetricReader + final public let registry: VideoSDKRTC.StableViewRegistry + public var lastCollectedEpochNanos: Swift.UInt64 + public func hash(into hasher: inout Swift.Hasher) + public static func == (lhs: VideoSDKRTC.RegisteredReader, rhs: VideoSDKRTC.RegisteredReader) -> Swift.Bool + @objc deinit + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class RegisteredView { + public var selector: VideoSDKRTC.InstrumentSelector { + get + } + public var view: VideoSDKRTC.StableView { + get + } + public var attributeProcessor: VideoSDKRTC.AttributeProcessor { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class ReservoirCell { + @objc deinit +} +public protocol ReservoirCellSelector { + func reservoirCellIndex(for cells: [VideoSDKRTC.ReservoirCell], value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Int + func reservoirCellIndex(for cells: [VideoSDKRTC.ReservoirCell], value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Int + func reset() +} +public struct Resource : Swift.Equatable, Swift.Hashable, Swift.Codable { + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] + public init() + public init(attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public mutating func merge(other: VideoSDKRTC.Resource) + public func merging(other: VideoSDKRTC.Resource) -> VideoSDKRTC.Resource + public static func == (a: VideoSDKRTC.Resource, b: VideoSDKRTC.Resource) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public struct Opentelemetry_Proto_Resource_V1_Resource { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource, rhs: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct ResourceAdapter { + public static func toProtoResource(resource: VideoSDKRTC.Resource) -> VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource +} +public enum ResourceAttributes : Swift.String { + case browserBrands + case browserPlatform + case browserMobile + case browserLanguage + case userAgentOriginal + case cloudProvider + case cloudAccountId + case cloudRegion + case cloudResourceId + case cloudAvailabilityZone + case cloudPlatform + case awsEcsContainerArn + case awsEcsClusterArn + case awsEcsLaunchtype + case awsEcsTaskArn + case awsEcsTaskFamily + case awsEcsTaskRevision + case awsEksClusterArn + case awsLogGroupNames + case awsLogGroupArns + case awsLogStreamNames + case awsLogStreamArns + case herokuReleaseCreationTimestamp + case herokuReleaseCommit + case herokuAppId + case containerName + case containerId + case containerRuntime + case containerImageName + case containerImageTag + case deploymentEnvironment + case deviceId + case deviceModelIdentifier + case deviceModelName + case deviceManufacturer + case faasName + case faasVersion + case faasInstance + case faasMaxMemory + case hostId + case hostName + case hostType + case hostArch + case hostImageName + case hostImageId + case hostImageVersion + case k8sClusterName + case k8sNodeName + case k8sNodeUid + case k8sNamespaceName + case k8sPodUid + case k8sPodName + case k8sContainerName + case k8sContainerRestartCount + case k8sReplicasetUid + case k8sReplicasetName + case k8sDeploymentUid + case k8sDeploymentName + case k8sStatefulsetUid + case k8sStatefulsetName + case k8sDaemonsetUid + case k8sDaemonsetName + case k8sJobUid + case k8sJobName + case k8sCronjobUid + case k8sCronjobName + case osType + case osDescription + case osName + case osVersion + case processPid + case processParentPid + case processExecutableName + case processExecutablePath + case processCommand + case processCommandLine + case processCommandArgs + case processOwner + case processRuntimeName + case processRuntimeVersion + case processRuntimeDescription + case serviceName + case serviceNamespace + case serviceInstanceId + case serviceVersion + case telemetrySdkName + case telemetrySdkLanguage + case telemetrySdkVersion + case telemetryAutoVersion + case webengineName + case webengineVersion + case webengineDescription + case otelScopeName + case otelScopeVersion + case otelLibraryName + case otelLibraryVersion + public struct CloudProviderValues : Swift.CustomStringConvertible { + public static let alibabaCloud: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let aws: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let azure: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let gcp: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let heroku: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let ibmCloud: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let tencentCloud: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct CloudPlatformValues : Swift.CustomStringConvertible { + public static let alibabaCloudEcs: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let alibabaCloudFc: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let alibabaCloudOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsEc2: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsEcs: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsEks: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsLambda: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsElasticBeanstalk: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsAppRunner: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureVm: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureContainerInstances: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureAks: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureFunctions: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureAppService: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpComputeEngine: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpCloudRun: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpKubernetesEngine: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpCloudFunctions: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpAppEngine: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let ibmCloudOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let tencentCloudCvm: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let tencentCloudEks: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let tencentCloudScf: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum AwsEcsLaunchtypeValues : Swift.String { + case ec2 + case fargate + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct HostArchValues : Swift.CustomStringConvertible { + public static let amd64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let arm32: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let arm64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let ia64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let ppc32: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let ppc64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let s390x: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let x86: VideoSDKRTC.ResourceAttributes.HostArchValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct OsTypeValues : Swift.CustomStringConvertible { + public static let windows: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let linux: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let darwin: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let freebsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let netbsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let openbsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let dragonflybsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let hpux: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let aix: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let solaris: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let zOs: VideoSDKRTC.ResourceAttributes.OsTypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct TelemetrySdkLanguageValues : Swift.CustomStringConvertible { + public static let cpp: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let dotnet: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let erlang: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let go: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let java: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let nodejs: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let php: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let python: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let ruby: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let webjs: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let swift: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public func == (left: VideoSDKRTC.ResourceAttributes, right: Swift.String) -> Swift.Bool +public func == (left: Swift.String, right: VideoSDKRTC.ResourceAttributes) -> Swift.Bool +public protocol Sampler : AnyObject, Swift.CustomStringConvertible { + func shouldSample(parentContext: VideoSDKRTC.SpanContext?, traceId: VideoSDKRTC.TraceId, name: Swift.String, kind: VideoSDKRTC.SpanKind, attributes: [Swift.String : VideoSDKRTC.AttributeValue], parentLinks: [VideoSDKRTC.SpanData.Link]) -> any VideoSDKRTC.Decision +} +public protocol Decision { + var isSampled: Swift.Bool { get } + var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { get } +} +public enum Samplers { + public static var alwaysOn: any VideoSDKRTC.Sampler + public static var alwaysOff: any VideoSDKRTC.Sampler + public static func traceIdRatio(ratio: Swift.Double) -> any VideoSDKRTC.Sampler + public static func parentBased(root: any VideoSDKRTC.Sampler, remoteParentSampled: (any VideoSDKRTC.Sampler)? = nil, remoteParentNotSampled: (any VideoSDKRTC.Sampler)? = nil, localParentSampled: (any VideoSDKRTC.Sampler)? = nil, localParentNotSampled: (any VideoSDKRTC.Sampler)? = nil) -> any VideoSDKRTC.Sampler +} +public enum SemanticAttributes : Swift.String { + case exceptionType + case exceptionMessage + case exceptionStacktrace + case httpMethod + case httpStatusCode + case netProtocolName + case netProtocolVersion + case netPeerName + case netPeerPort + case httpScheme + case httpRoute + case netHostName + case netHostPort + case eventName + case eventDomain + case logRecordUid + case featureFlagKey + case featureFlagProviderName + case featureFlagVariant + case awsLambdaInvokedArn + case cloudeventsEventId + case cloudeventsEventSource + case cloudeventsEventSpecVersion + case cloudeventsEventType + case cloudeventsEventSubject + case opentracingRefType + case dbSystem + case dbConnectionString + case dbUser + case dbJdbcDriverClassname + case dbName + case dbStatement + case dbOperation + case netSockPeerAddr + case netSockPeerPort + case netSockFamily + case netSockPeerName + case netTransport + case dbMssqlInstanceName + case dbCassandraPageSize + case dbCassandraConsistencyLevel + case dbCassandraTable + case dbCassandraIdempotence + case dbCassandraSpeculativeExecutionCount + case dbCassandraCoordinatorId + case dbCassandraCoordinatorDc + case dbRedisDatabaseIndex + case dbMongodbCollection + case dbSqlTable + case dbCosmosdbClientId + case dbCosmosdbOperationType + case userAgentOriginal + case dbCosmosdbConnectionMode + case dbCosmosdbContainer + case dbCosmosdbRequestContentLength + case dbCosmosdbStatusCode + case dbCosmosdbSubStatusCode + case dbCosmosdbRequestCharge + case otelStatusCode + case otelStatusDescription + case faasTrigger + case faasInvocationId + case cloudResourceId + case faasDocumentCollection + case faasDocumentOperation + case faasDocumentTime + case faasDocumentName + case httpTarget + case httpClientIp + case netSockHostAddr + case netSockHostPort + case messagingSystem + case messagingOperation + case messagingBatchMessageCount + case messagingMessageId + case messagingMessageConversationId + case messagingMessagePayloadSizeBytes + case messagingMessagePayloadCompressedSizeBytes + case faasTime + case faasCron + case faasColdstart + case faasInvokedName + case faasInvokedProvider + case faasInvokedRegion + case netHostConnectionType + case netHostConnectionSubtype + case netHostCarrierName + case netHostCarrierMcc + case netHostCarrierMnc + case netHostCarrierIcc + case peerService + case enduserId + case enduserRole + case enduserScope + case threadId + case threadName + case codeFunction + case codeNamespace + case codeFilepath + case codeLineno + case codeColumn + case httpRequestContentLength + case httpResponseContentLength + case httpUrl + case httpResendCount + case rpcSystem + case rpcService + case rpcMethod + case awsRequestId + case awsDynamodbTableNames + case awsDynamodbConsumedCapacity + case awsDynamodbItemCollectionMetrics + case awsDynamodbProvisionedReadCapacity + case awsDynamodbProvisionedWriteCapacity + case awsDynamodbConsistentRead + case awsDynamodbProjection + case awsDynamodbLimit + case awsDynamodbAttributesToGet + case awsDynamodbIndexName + case awsDynamodbSelect + case awsDynamodbGlobalSecondaryIndexes + case awsDynamodbLocalSecondaryIndexes + case awsDynamodbExclusiveStartTable + case awsDynamodbTableCount + case awsDynamodbScanForward + case awsDynamodbSegment + case awsDynamodbTotalSegments + case awsDynamodbCount + case awsDynamodbScannedCount + case awsDynamodbAttributeDefinitions + case awsDynamodbGlobalSecondaryIndexUpdates + case awsS3Bucket + case awsS3Key + case awsS3CopySource + case awsS3UploadId + case awsS3Delete + case awsS3PartNumber + case graphqlOperationName + case graphqlOperationType + case graphqlDocument + case messagingDestinationName + case messagingSourceName + case messagingDestinationTemplate + case messagingDestinationTemporary + case messagingDestinationAnonymous + case messagingSourceTemplate + case messagingSourceTemporary + case messagingSourceAnonymous + case messagingConsumerId + case messagingRabbitmqDestinationRoutingKey + case messagingKafkaMessageKey + case messagingKafkaConsumerGroup + case messagingKafkaClientId + case messagingKafkaDestinationPartition + case messagingKafkaSourcePartition + case messagingKafkaMessageOffset + case messagingKafkaMessageTombstone + case messagingRocketmqNamespace + case messagingRocketmqClientGroup + case messagingRocketmqClientId + case messagingRocketmqMessageDeliveryTimestamp + case messagingRocketmqMessageDelayTimeLevel + case messagingRocketmqMessageGroup + case messagingRocketmqMessageType + case messagingRocketmqMessageTag + case messagingRocketmqMessageKeys + case messagingRocketmqConsumptionModel + case rpcGrpcStatusCode + case rpcJsonrpcVersion + case rpcJsonrpcRequestId + case rpcJsonrpcErrorCode + case rpcJsonrpcErrorMessage + case messageType + case messageId + case messageCompressedSize + case messageUncompressedSize + case rpcConnectRpcErrorCode + case exceptionEscaped + case exception + public struct EventDomainValues : Swift.CustomStringConvertible { + public static let browser: VideoSDKRTC.SemanticAttributes.EventDomainValues + public static let device: VideoSDKRTC.SemanticAttributes.EventDomainValues + public static let k8s: VideoSDKRTC.SemanticAttributes.EventDomainValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum OpentracingRefTypeValues : Swift.String { + case child_of + case follows_from + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct DbSystemValues : Swift.CustomStringConvertible { + public static let otherSql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mssql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mssqlcompact: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mysql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let oracle: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let db2: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let postgresql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let redshift: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hive: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cloudscape: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hsqldb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let progress: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let maxdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hanadb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let ingres: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let firstsql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let edb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cache: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let adabas: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let firebird: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let derby: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let filemaker: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let informix: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let instantdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let interbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mariadb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let netezza: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let pervasive: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let pointbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let sqlite: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let sybase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let teradata: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let vertica: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let h2: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let coldfusion: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cassandra: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mongodb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let redis: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let couchbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let couchdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cosmosdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let dynamodb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let neo4j: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let geode: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let elasticsearch: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let memcached: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cockroachdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let opensearch: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let clickhouse: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let spanner: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let trino: VideoSDKRTC.SemanticAttributes.DbSystemValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetSockFamilyValues : Swift.CustomStringConvertible { + public static let inet: VideoSDKRTC.SemanticAttributes.NetSockFamilyValues + public static let inet6: VideoSDKRTC.SemanticAttributes.NetSockFamilyValues + public static let unix: VideoSDKRTC.SemanticAttributes.NetSockFamilyValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetTransportValues : Swift.CustomStringConvertible { + public static let ipTcp: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let ipUdp: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let pipe: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let inproc: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let other: VideoSDKRTC.SemanticAttributes.NetTransportValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum DbCassandraConsistencyLevelValues : Swift.String { + case all + case each_quorum + case quorum + case local_quorum + case one + case two + case three + case local_one + case any + case serial + case local_serial + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct DbCosmosdbOperationTypeValues : Swift.CustomStringConvertible { + public static let invalid: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let create: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let patch: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let read: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let readFeed: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let delete: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let replace: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let execute: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let query: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let head: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let headFeed: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let upsert: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let batch: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let queryPlan: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let executeJavascript: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum DbCosmosdbConnectionModeValues : Swift.String { + case gateway + case direct + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum OtelStatusCodeValues : Swift.String { + case ok + case error + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum FaasTriggerValues : Swift.String { + case datasource + case http + case pubsub + case timer + case other + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct FaasDocumentOperationValues : Swift.CustomStringConvertible { + public static let insert: VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues + public static let edit: VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues + public static let delete: VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct MessagingOperationValues : Swift.CustomStringConvertible { + public static let publish: VideoSDKRTC.SemanticAttributes.MessagingOperationValues + public static let receive: VideoSDKRTC.SemanticAttributes.MessagingOperationValues + public static let process: VideoSDKRTC.SemanticAttributes.MessagingOperationValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct FaasInvokedProviderValues : Swift.CustomStringConvertible { + public static let alibabaCloud: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let aws: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let azure: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let gcp: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let tencentCloud: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetHostConnectionTypeValues : Swift.CustomStringConvertible { + public static let wifi: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let wired: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let cell: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let unavailable: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let unknown: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetHostConnectionSubtypeValues : Swift.CustomStringConvertible { + public static let gprs: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let edge: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let umts: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let cdma: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let evdo0: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let evdoA: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let cdma20001xrtt: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hsdpa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hsupa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hspa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let iden: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let evdoB: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let lte: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let ehrpd: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hspap: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let gsm: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let tdScdma: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let iwlan: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let nr: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let nrnsa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let lteCa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct RpcSystemValues : Swift.CustomStringConvertible { + public static let grpc: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let javaRmi: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let dotnetWcf: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let apacheDubbo: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let connectRpc: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum GraphqlOperationTypeValues : Swift.String { + case query + case mutation + case subscription + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum MessagingRocketmqMessageTypeValues : Swift.String { + case normal + case fifo + case delay + case transaction + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum MessagingRocketmqConsumptionModelValues : Swift.String { + case clustering + case broadcasting + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum RpcGrpcStatusCodeValues : Swift.Int { + case ok + case cancelled + case unknown + case invalid_argument + case deadline_exceeded + case not_found + case already_exists + case permission_denied + case resource_exhausted + case failed_precondition + case aborted + case out_of_range + case unimplemented + case `internal` + case unavailable + case data_loss + case unauthenticated + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } + } + public enum MessageTypeValues : Swift.String { + case sent + case received + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum RpcConnectRpcErrorCodeValues : Swift.String { + case cancelled + case unknown + case invalid_argument + case deadline_exceeded + case not_found + case already_exists + case permission_denied + case resource_exhausted + case failed_precondition + case aborted + case out_of_range + case unimplemented + case `internal` + case unavailable + case data_loss + case unauthenticated + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum Severity : Swift.Int, Swift.Comparable, Swift.CustomStringConvertible, Swift.Codable { + case trace, trace2, trace3, trace4, debug, debug2, debug3, debug4, info, info2, info3, info4, warn, warn2, warn3, warn4, error, error2, error3, error4, fatal, fatal2, fatal3, fatal4 + public var description: Swift.String { + get + } + public static func < (lhs: VideoSDKRTC.Severity, rhs: VideoSDKRTC.Severity) -> Swift.Bool + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public struct SimpleExtensionMap : VideoSDKRTC.ExtensionMap, Swift.ExpressibleByArrayLiteral { + public typealias Element = VideoSDKRTC.AnyMessageExtension + public init() + public init(arrayLiteral: any VideoSDKRTC.AnyMessageExtension...) + public init(_ others: VideoSDKRTC.SimpleExtensionMap...) + public subscript(messageType: any VideoSDKRTC.Message.Type, fieldNumber: Swift.Int) -> (any VideoSDKRTC.AnyMessageExtension)? { + get + } + public func fieldNumberForProto(messageType: any VideoSDKRTC.Message.Type, protoFieldName: Swift.String) -> Swift.Int? + public mutating func insert(_ newValue: any VideoSDKRTC.AnyMessageExtension) + public mutating func insert(contentsOf: [any VideoSDKRTC.AnyMessageExtension]) + public mutating func formUnion(_ other: VideoSDKRTC.SimpleExtensionMap) + public func union(_ other: VideoSDKRTC.SimpleExtensionMap) -> VideoSDKRTC.SimpleExtensionMap + public typealias ArrayLiteralElement = any VideoSDKRTC.AnyMessageExtension +} +public class SimpleLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public init(logRecordExporter: any VideoSDKRTC.LogRecordExporter) + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + @objc deinit +} +public struct SimpleSpanProcessor : VideoSDKRTC.SpanProcessor { + public let isStartRequired: Swift.Bool + public let isEndRequired: Swift.Bool + public func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + public mutating func onEnd(span: any VideoSDKRTC.ReadableSpan) + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) + public init(spanExporter: any VideoSDKRTC.SpanExporter) + public func reportingOnlySampled(sampled: Swift.Bool) -> VideoSDKRTC.SimpleSpanProcessor +} +public struct Google_Protobuf_SourceContext { + public var fileName: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_SourceContext : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_SourceContext : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_SourceContext, rhs: VideoSDKRTC.Google_Protobuf_SourceContext) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol Span : AnyObject, Swift.CustomStringConvertible { + var kind: VideoSDKRTC.SpanKind { get } + var context: VideoSDKRTC.SpanContext { get } + var isRecording: Swift.Bool { get } + var status: VideoSDKRTC.Status { get set } + var name: Swift.String { get set } + func setAttribute(key: Swift.String, value: VideoSDKRTC.AttributeValue?) + func addEvent(name: Swift.String) + func addEvent(name: Swift.String, timestamp: Foundation.Date) + func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue], timestamp: Foundation.Date) + func end() + func end(time: Foundation.Date) +} +extension VideoSDKRTC.Span { + public func hash(into hasher: inout Swift.Hasher) + public static func == (lhs: any VideoSDKRTC.Span, rhs: any VideoSDKRTC.Span) -> Swift.Bool +} +extension VideoSDKRTC.Span { + public func setAttribute(key: Swift.String, value: Swift.String) + public func setAttribute(key: Swift.String, value: Swift.Int) + public func setAttribute(key: Swift.String, value: Swift.Double) + public func setAttribute(key: Swift.String, value: Swift.Bool) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.String) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.Int) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.Double) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.Bool) +} +extension VideoSDKRTC.Span { + public func putHttpHostAttribute(string hostName: Swift.String, int port: Swift.Int) + public func putHttpStatusCode(statusCode: Swift.Int, reasonPhrase: Swift.String) +} +public struct SpanAdapter { + public static func toProtoResourceSpans(spanDataList: [VideoSDKRTC.SpanData]) -> [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans] + public static func toProtoSpan(spanData: VideoSDKRTC.SpanData) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span +} +public protocol SpanBuilder : AnyObject { + @discardableResult + func setParent(_ parent: any VideoSDKRTC.Span) -> Self + @discardableResult + func setParent(_ parent: VideoSDKRTC.SpanContext) -> Self + @discardableResult + func setNoParent() -> Self + @discardableResult + func addLink(spanContext: VideoSDKRTC.SpanContext) -> Self + @discardableResult + func addLink(spanContext: VideoSDKRTC.SpanContext, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.String) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.Int) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.Double) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.Bool) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: VideoSDKRTC.AttributeValue) -> Self + @discardableResult + func setSpanKind(spanKind: VideoSDKRTC.SpanKind) -> Self + @discardableResult + func setStartTime(time: Foundation.Date) -> Self + @discardableResult + func setActive(_ active: Swift.Bool) -> Self + func startSpan() -> any VideoSDKRTC.Span +} +extension VideoSDKRTC.SpanBuilder { + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.String) -> Self + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.Int) -> Self + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.Double) -> Self + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.Bool) -> Self +} +public struct SpanContext : Swift.Equatable, Swift.CustomStringConvertible, Swift.Hashable, Swift.Codable { + public var traceId: VideoSDKRTC.TraceId { + get + } + public var spanId: VideoSDKRTC.SpanId { + get + } + public var traceFlags: VideoSDKRTC.TraceFlags { + get + } + public var traceState: VideoSDKRTC.TraceState + public let isRemote: Swift.Bool + public static func create(traceId: VideoSDKRTC.TraceId, spanId: VideoSDKRTC.SpanId, traceFlags: VideoSDKRTC.TraceFlags, traceState: VideoSDKRTC.TraceState) -> VideoSDKRTC.SpanContext + public static func createFromRemoteParent(traceId: VideoSDKRTC.TraceId, spanId: VideoSDKRTC.SpanId, traceFlags: VideoSDKRTC.TraceFlags, traceState: VideoSDKRTC.TraceState) -> VideoSDKRTC.SpanContext + public var isValid: Swift.Bool { + get + } + public var isSampled: Swift.Bool { + get + } + public static func == (lhs: VideoSDKRTC.SpanContext, rhs: VideoSDKRTC.SpanContext) -> Swift.Bool + public var description: Swift.String { + get + } + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public struct SpanData : Swift.Equatable, Swift.Codable { + public var traceId: VideoSDKRTC.TraceId { + get + } + public var spanId: VideoSDKRTC.SpanId { + get + } + public var traceFlags: VideoSDKRTC.TraceFlags { + get + } + public var traceState: VideoSDKRTC.TraceState { + get + } + public var parentSpanId: VideoSDKRTC.SpanId? { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScope: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var name: Swift.String { + get + } + public var kind: VideoSDKRTC.SpanKind { + get + } + public var startTime: Foundation.Date { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public var events: [VideoSDKRTC.SpanData.Event] { + get + } + public var links: [VideoSDKRTC.SpanData.Link] { + get + } + public var status: VideoSDKRTC.Status { + get + } + public var endTime: Foundation.Date { + get + } + public var hasRemoteParent: Swift.Bool { + get + } + public var hasEnded: Swift.Bool { + get + } + public var totalRecordedEvents: Swift.Int { + get + } + public var totalRecordedLinks: Swift.Int { + get + } + public var totalAttributeCount: Swift.Int { + get + } + public static func == (lhs: VideoSDKRTC.SpanData, rhs: VideoSDKRTC.SpanData) -> Swift.Bool + @discardableResult + public mutating func settingName(_ name: Swift.String) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTraceId(_ traceId: VideoSDKRTC.TraceId) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingSpanId(_ spanId: VideoSDKRTC.SpanId) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTraceFlags(_ traceFlags: VideoSDKRTC.TraceFlags) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTraceState(_ traceState: VideoSDKRTC.TraceState) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingStartTime(_ time: Foundation.Date) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingEndTime(_ time: Foundation.Date) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingKind(_ kind: VideoSDKRTC.SpanKind) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingLinks(_ links: [VideoSDKRTC.SpanData.Link]) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingParentSpanId(_ parentSpanId: VideoSDKRTC.SpanId) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingResource(_ resource: VideoSDKRTC.Resource) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingStatus(_ status: VideoSDKRTC.Status) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingEvents(_ events: [VideoSDKRTC.SpanData.Event]) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingHasRemoteParent(_ hasRemoteParent: Swift.Bool) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingHasEnded(_ hasEnded: Swift.Bool) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTotalRecordedEvents(_ totalRecordedEvents: Swift.Int) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTotalRecordedLinks(_ totalRecordedLinks: Swift.Int) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTotalAttributeCount(_ totalAttributeCount: Swift.Int) -> VideoSDKRTC.SpanData + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.SpanData { + public struct Event : Swift.Equatable, Swift.Codable { + public var timestamp: Foundation.Date { + get + } + public var name: Swift.String { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public init(name: Swift.String, timestamp: Foundation.Date, attributes: [Swift.String : VideoSDKRTC.AttributeValue]? = nil) + public init(timestamp: Foundation.Date, event: VideoSDKRTC.SpanData.Event) + public static func == (a: VideoSDKRTC.SpanData.Event, b: VideoSDKRTC.SpanData.Event) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } +} +extension VideoSDKRTC.SpanData { + public struct Link : Swift.Codable { + public let context: VideoSDKRTC.SpanContext + public let attributes: [Swift.String : VideoSDKRTC.AttributeValue] + public init(context: VideoSDKRTC.SpanContext, attributes: [Swift.String : VideoSDKRTC.AttributeValue] = [String: AttributeValue]()) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } +} +public func == (lhs: VideoSDKRTC.SpanData.Link, rhs: VideoSDKRTC.SpanData.Link) -> Swift.Bool +public func == (lhs: [VideoSDKRTC.SpanData.Link], rhs: [VideoSDKRTC.SpanData.Link]) -> Swift.Bool +public protocol SpanExporter : AnyObject { + @discardableResult + func export(spans: [VideoSDKRTC.SpanData]) -> VideoSDKRTC.SpanExporterResultCode + func flush() -> VideoSDKRTC.SpanExporterResultCode + func shutdown() +} +public enum SpanExporterResultCode { + case success + case failure + public static func == (a: VideoSDKRTC.SpanExporterResultCode, b: VideoSDKRTC.SpanExporterResultCode) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct SpanId : Swift.Equatable, Swift.Comparable, Swift.Hashable, Swift.CustomStringConvertible, Swift.Codable { + public static let size: Swift.Int + public static let invalidId: Swift.UInt64 + public static let invalid: VideoSDKRTC.SpanId + public static func getSize() -> Swift.Int + public init(id: Swift.UInt64) + public init() + public static func random() -> VideoSDKRTC.SpanId + public init(fromBytes bytes: Swift.Array, withOffset offset: Swift.Int = 0) + public init(fromBytes bytes: Swift.ArraySlice, withOffset offset: Swift.Int = 0) + public init(fromBytes bytes: Swift.ArraySlice, withOffset offset: Swift.Int = 0) + public func copyBytesTo(dest: inout Foundation.Data, destOffset: Swift.Int) + public func copyBytesTo(dest: inout Swift.Array, destOffset: Swift.Int) + public func copyBytesTo(dest: inout Swift.ArraySlice, destOffset: Swift.Int) + public init(fromHexString hex: Swift.String, withOffset offset: Swift.Int = 0) + public var hexString: Swift.String { + get + } + public var rawValue: Swift.UInt64 { + get + } + public var isValid: Swift.Bool { + get + } + public var description: Swift.String { + get + } + public static func < (lhs: VideoSDKRTC.SpanId, rhs: VideoSDKRTC.SpanId) -> Swift.Bool + public static func == (lhs: VideoSDKRTC.SpanId, rhs: VideoSDKRTC.SpanId) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public enum SpanKind : Swift.String, Swift.Equatable, Swift.Codable { + case `internal` + case server + case client + case producer + case consumer + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct SpanLimits : Swift.Equatable { + public var attributeCountLimit: Swift.Int { + get + } + public var eventCountLimit: Swift.Int { + get + } + public var linkCountLimit: Swift.Int { + get + } + public var attributePerEventCountLimit: Swift.Int { + get + } + public var attributePerLinkCountLimit: Swift.Int { + get + } + public init() + @discardableResult + public func settingAttributeCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingEventCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingLinkCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingAttributePerEventCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingAttributePerLinkCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + public static func == (lhs: VideoSDKRTC.SpanLimits, rhs: VideoSDKRTC.SpanLimits) -> Swift.Bool +} +public protocol SpanProcessor { + var isStartRequired: Swift.Bool { get } + var isEndRequired: Swift.Bool { get } + func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + mutating func onEnd(span: any VideoSDKRTC.ReadableSpan) + mutating func shutdown() + func forceFlush(timeout: Foundation.TimeInterval?) +} +public protocol SPBDecoder { + mutating func handleConflictingOneOf() throws + mutating func nextFieldNumber() throws -> Swift.Int? + mutating func decodeSingularFloatField(value: inout Swift.Float) throws + mutating func decodeSingularFloatField(value: inout Swift.Float?) throws + mutating func decodeRepeatedFloatField(value: inout [Swift.Float]) throws + mutating func decodeSingularDoubleField(value: inout Swift.Double) throws + mutating func decodeSingularDoubleField(value: inout Swift.Double?) throws + mutating func decodeRepeatedDoubleField(value: inout [Swift.Double]) throws + mutating func decodeSingularInt32Field(value: inout Swift.Int32) throws + mutating func decodeSingularInt32Field(value: inout Swift.Int32?) throws + mutating func decodeRepeatedInt32Field(value: inout [Swift.Int32]) throws + mutating func decodeSingularInt64Field(value: inout Swift.Int64) throws + mutating func decodeSingularInt64Field(value: inout Swift.Int64?) throws + mutating func decodeRepeatedInt64Field(value: inout [Swift.Int64]) throws + mutating func decodeSingularUInt32Field(value: inout Swift.UInt32) throws + mutating func decodeSingularUInt32Field(value: inout Swift.UInt32?) throws + mutating func decodeRepeatedUInt32Field(value: inout [Swift.UInt32]) throws + mutating func decodeSingularUInt64Field(value: inout Swift.UInt64) throws + mutating func decodeSingularUInt64Field(value: inout Swift.UInt64?) throws + mutating func decodeRepeatedUInt64Field(value: inout [Swift.UInt64]) throws + mutating func decodeSingularSInt32Field(value: inout Swift.Int32) throws + mutating func decodeSingularSInt32Field(value: inout Swift.Int32?) throws + mutating func decodeRepeatedSInt32Field(value: inout [Swift.Int32]) throws + mutating func decodeSingularSInt64Field(value: inout Swift.Int64) throws + mutating func decodeSingularSInt64Field(value: inout Swift.Int64?) throws + mutating func decodeRepeatedSInt64Field(value: inout [Swift.Int64]) throws + mutating func decodeSingularFixed32Field(value: inout Swift.UInt32) throws + mutating func decodeSingularFixed32Field(value: inout Swift.UInt32?) throws + mutating func decodeRepeatedFixed32Field(value: inout [Swift.UInt32]) throws + mutating func decodeSingularFixed64Field(value: inout Swift.UInt64) throws + mutating func decodeSingularFixed64Field(value: inout Swift.UInt64?) throws + mutating func decodeRepeatedFixed64Field(value: inout [Swift.UInt64]) throws + mutating func decodeSingularSFixed32Field(value: inout Swift.Int32) throws + mutating func decodeSingularSFixed32Field(value: inout Swift.Int32?) throws + mutating func decodeRepeatedSFixed32Field(value: inout [Swift.Int32]) throws + mutating func decodeSingularSFixed64Field(value: inout Swift.Int64) throws + mutating func decodeSingularSFixed64Field(value: inout Swift.Int64?) throws + mutating func decodeRepeatedSFixed64Field(value: inout [Swift.Int64]) throws + mutating func decodeSingularBoolField(value: inout Swift.Bool) throws + mutating func decodeSingularBoolField(value: inout Swift.Bool?) throws + mutating func decodeRepeatedBoolField(value: inout [Swift.Bool]) throws + mutating func decodeSingularStringField(value: inout Swift.String) throws + mutating func decodeSingularStringField(value: inout Swift.String?) throws + mutating func decodeRepeatedStringField(value: inout [Swift.String]) throws + mutating func decodeSingularBytesField(value: inout Foundation.Data) throws + mutating func decodeSingularBytesField(value: inout Foundation.Data?) throws + mutating func decodeRepeatedBytesField(value: inout [Foundation.Data]) throws + mutating func decodeSingularEnumField(value: inout E) throws where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + mutating func decodeSingularEnumField(value: inout E?) throws where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + mutating func decodeRepeatedEnumField(value: inout [E]) throws where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + mutating func decodeSingularMessageField(value: inout M?) throws where M : VideoSDKRTC.Message + mutating func decodeRepeatedMessageField(value: inout [M]) throws where M : VideoSDKRTC.Message + mutating func decodeSingularGroupField(value: inout G?) throws where G : VideoSDKRTC.Message + mutating func decodeRepeatedGroupField(value: inout [G]) throws where G : VideoSDKRTC.Message + mutating func decodeMapField(fieldType: VideoSDKRTC._ProtobufMap.Type, value: inout VideoSDKRTC._ProtobufMap.BaseType) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.MapValueType + mutating func decodeMapField(fieldType: VideoSDKRTC._ProtobufEnumMap.Type, value: inout VideoSDKRTC._ProtobufEnumMap.BaseType) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.Enum, ValueType.RawValue == Swift.Int + mutating func decodeMapField(fieldType: VideoSDKRTC._ProtobufMessageMap.Type, value: inout VideoSDKRTC._ProtobufMessageMap.BaseType) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : Swift.Hashable, ValueType : VideoSDKRTC.Message + mutating func decodeExtensionField(values: inout VideoSDKRTC.ExtensionFieldValueSet, messageType: any VideoSDKRTC.Message.Type, fieldNumber: Swift.Int) throws + mutating func decodeExtensionFieldsAsMessageSet(values: inout VideoSDKRTC.ExtensionFieldValueSet, messageType: any VideoSDKRTC.Message.Type) throws +} +extension VideoSDKRTC.SPBDecoder { + public mutating func decodeExtensionFieldsAsMessageSet(values: inout VideoSDKRTC.ExtensionFieldValueSet, messageType: any VideoSDKRTC.Message.Type) throws +} +public protocol StableAggregator { + func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + func createHandle() -> VideoSDKRTC.AggregatorHandle + func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData +} +public protocol StableMeter { + func counterBuilder(name: Swift.String) -> any VideoSDKRTC.LongCounterBuilder + func upDownCounterBuilder(name: Swift.String) -> any VideoSDKRTC.LongUpDownCounterBuilder + func histogramBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleHistogramBuilder + func gaugeBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleGaugeBuilder +} +public protocol StableMeterProvider : AnyObject { + func get(name: Swift.String) -> any VideoSDKRTC.StableMeter + func meterBuilder(name: Swift.String) -> any VideoSDKRTC.MeterBuilder +} +public class StableMeterProviderBuilder { + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var metricReaders: [any VideoSDKRTC.StableMetricReader] { + get + } + public var registeredViews: [VideoSDKRTC.RegisteredView] { + get + } + public var exemplarFilter: any VideoSDKRTC.ExemplarFilter { + get + } + public init() + public func setClock(clock: any VideoSDKRTC.Clock) -> Self + public func setResource(resource: VideoSDKRTC.Resource) -> Self + public func registerView(selector: VideoSDKRTC.InstrumentSelector, view: VideoSDKRTC.StableView) -> Self + public func registerMetricReader(reader: any VideoSDKRTC.StableMetricReader) -> Self + public func build() -> VideoSDKRTC.StableMeterProviderSdk + @objc deinit +} +@_hasMissingDesignatedInitializers public class MeterProviderError : Swift.Error { + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableMeterProviderSdk : VideoSDKRTC.StableMeterProvider { + public func get(name: Swift.String) -> any VideoSDKRTC.StableMeter + public func meterBuilder(name: Swift.String) -> any VideoSDKRTC.MeterBuilder + public static func builder() -> VideoSDKRTC.StableMeterProviderBuilder + public func shutdown() -> VideoSDKRTC.ExportResult + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public class MeterProviderSharedState { + public init(clock: any VideoSDKRTC.Clock, resource: VideoSDKRTC.Resource, startEpochNanos: Swift.UInt64, exemplarFilter: any VideoSDKRTC.ExemplarFilter) + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var startEpochNanos: Swift.UInt64 { + get + } + public var exemplarFilter: any VideoSDKRTC.ExemplarFilter { + get + } + @objc deinit +} +public enum MetricDataType { + case LongGauge + case DoubleGauge + case LongSum + case DoubleSum + case Summary + case Histogram + case ExponentialHistogram + public static func == (a: VideoSDKRTC.MetricDataType, b: VideoSDKRTC.MetricDataType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct StableMetricData : Swift.Equatable { + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var name: Swift.String { + get + } + public var description: Swift.String { + get + } + public var unit: Swift.String { + get + } + public var type: VideoSDKRTC.MetricDataType { + get + } + public var data: VideoSDKRTC.StableMetricData.Data { + get + } + public static let empty: VideoSDKRTC.StableMetricData + @_hasMissingDesignatedInitializers public class Data : Swift.Equatable { + public var points: [VideoSDKRTC.PointData] { + get + } + public static func == (lhs: VideoSDKRTC.StableMetricData.Data, rhs: VideoSDKRTC.StableMetricData.Data) -> Swift.Bool + @objc deinit + } + public static func == (lhs: VideoSDKRTC.StableMetricData, rhs: VideoSDKRTC.StableMetricData) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class StableHistogramData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableExponentialHistogramData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableGaugeData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableSumData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableSummaryData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +public protocol StableMetricExporter : VideoSDKRTC.AggregationTemporalitySelectorProtocol, VideoSDKRTC.DefaultAggregationSelector { + func export(metrics: [VideoSDKRTC.StableMetricData]) -> VideoSDKRTC.ExportResult + func flush() -> VideoSDKRTC.ExportResult + func shutdown() -> VideoSDKRTC.ExportResult +} +extension VideoSDKRTC.StableMetricExporter { + public func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +} +public protocol StableMetricReader : VideoSDKRTC.AggregationTemporalitySelectorProtocol, VideoSDKRTC.DefaultAggregationSelector { + func forceFlush() -> VideoSDKRTC.ExportResult + func shutdown() -> VideoSDKRTC.ExportResult + func register(registration: any VideoSDKRTC.CollectionRegistration) +} +@_hasMissingDesignatedInitializers public class StableObservableMeasurementSdk : VideoSDKRTC.ObservableLongMeasurement, VideoSDKRTC.ObservableDoubleMeasurement { + public var descriptor: VideoSDKRTC.InstrumentDescriptor { + get + } + public var storages: [VideoSDKRTC.AsynchronousMetricStorage] { + get + } + public func clearActiveReader() + public func record(value: Swift.Int) + public func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func record(value: Swift.Double) + public func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public class StablePeriodicMetricReaderBuilder { + public var exporter: any VideoSDKRTC.StableMetricExporter { + get + } + public var exporterInterval: Swift.Double { + get + } + public init(exporter: any VideoSDKRTC.StableMetricExporter) + public func setInterval(timeInterval: Foundation.TimeInterval) -> Self + public func build() -> VideoSDKRTC.StablePeriodicMetricReaderSdk + @objc deinit +} +@_hasMissingDesignatedInitializers public class StablePeriodicMetricReaderSdk : VideoSDKRTC.StableMetricReader { + @objc deinit + public func register(registration: any VideoSDKRTC.CollectionRegistration) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + public func getAggregationTemporality(for instrument: VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality + public func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +} +@_hasMissingDesignatedInitializers public class StableView { + public var name: Swift.String? { + get + } + public var description: Swift.String? { + get + } + public var aggregation: any VideoSDKRTC.Aggregation { + get + } + public var attributeProcessor: VideoSDKRTC.AttributeProcessor { + get + } + public static func builder() -> VideoSDKRTC.ViewBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableViewRegistry { + public func findViews(descriptor: VideoSDKRTC.InstrumentDescriptor, meterScope: VideoSDKRTC.InstrumentationScopeInfo) -> [VideoSDKRTC.RegisteredView] + @objc deinit +} +public enum Status : Swift.Equatable { + case ok + case unset + case error(description: Swift.String) + public var isOk: Swift.Bool { + get + } + public var isError: Swift.Bool { + get + } + public var name: Swift.String { + get + } + public var code: Swift.Int { + get + } + public static func == (a: VideoSDKRTC.Status, b: VideoSDKRTC.Status) -> Swift.Bool +} +extension VideoSDKRTC.Status : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} +extension VideoSDKRTC.Status : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct StringUtils { + public static func isPrintableString(_ string: Swift.String) -> Swift.Bool + public static func isValidMetricName(_ metricName: Swift.String) -> Swift.Bool +} +public enum Google_Protobuf_NullValue : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case nullValue + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_NullValue] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_NullValue] +} +public struct Google_Protobuf_Struct { + public var fields: [Swift.String : VideoSDKRTC.Google_Protobuf_Value] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Value { + public var kind: VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind? + public var nullValue: VideoSDKRTC.Google_Protobuf_NullValue { + get + set + } + public var numberValue: Swift.Double { + get + set + } + public var stringValue: Swift.String { + get + set + } + public var boolValue: Swift.Bool { + get + set + } + public var structValue: VideoSDKRTC.Google_Protobuf_Struct { + get + set + } + public var listValue: VideoSDKRTC.Google_Protobuf_ListValue { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Kind : Swift.Equatable { + case nullValue(VideoSDKRTC.Google_Protobuf_NullValue) + case numberValue(Swift.Double) + case stringValue(Swift.String) + case boolValue(Swift.Bool) + case structValue(VideoSDKRTC.Google_Protobuf_Struct) + case listValue(VideoSDKRTC.Google_Protobuf_ListValue) + public static func == (a: VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind, b: VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind) -> Swift.Bool + } + public init() +} +public struct Google_Protobuf_ListValue { + public var values: [VideoSDKRTC.Google_Protobuf_Value] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Struct : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ListValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_NullValue : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_Struct : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Struct, rhs: VideoSDKRTC.Google_Protobuf_Struct) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Value, rhs: VideoSDKRTC.Google_Protobuf_Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ListValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ListValue, rhs: VideoSDKRTC.Google_Protobuf_ListValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class SumAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.SumAggregation { + get + } + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + @objc deinit +} +@_hasMissingDesignatedInitializers public class SumAggregator { + final public let isMonotonic: Swift.Bool + @objc deinit +} +@_hasMissingDesignatedInitializers public class SummaryPointData : VideoSDKRTC.PointData { + public var count: Swift.UInt64 + public var sum: Swift.Double + public var values: [any VideoSDKRTC.ValueAtQuantile] + @objc deinit +} +extension Swift.Double { + public var toMilliseconds: Swift.UInt64 { + get + } + public var toMicroseconds: Swift.UInt64 { + get + } + public var toNanoseconds: Swift.UInt64 { + get + } + public static func fromMilliseconds(_ millis: Swift.Int64) -> Foundation.TimeInterval + public static func fromMicroseconds(_ micros: Swift.Int64) -> Foundation.TimeInterval + public static func fromNanoseconds(_ nanos: Swift.Int64) -> Foundation.TimeInterval +} +public protocol SwiftProtobufContiguousBytes { + init(repeating: Swift.UInt8, count: Swift.Int) + init(_ sequence: S) where S : Swift.Sequence, S.Element == Swift.UInt8 + var count: Swift.Int { get } + func withUnsafeBytes(_ body: (Swift.UnsafeRawBufferPointer) throws -> R) rethrows -> R + mutating func withUnsafeMutableBytes(_ body: (Swift.UnsafeMutableRawBufferPointer) throws -> R) rethrows -> R +} +extension Swift.Array : VideoSDKRTC.SwiftProtobufContiguousBytes where Element == Swift.UInt8 { +} +extension Foundation.Data : VideoSDKRTC.SwiftProtobufContiguousBytes { +} +@_hasMissingDesignatedInitializers public class SynchronousMetricStorage { + public var metricDescriptor: VideoSDKRTC.MetricDescriptor { + get + } + public func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + public func isEmpty() -> Swift.Bool + public func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public enum TextFormatDecodingError : Swift.Error { + case malformedText + case malformedNumber + case trailingGarbage + case truncated + case invalidUTF8 + case schemaMismatch + case missingFieldNames + case unknownField + case unrecognizedEnumValue + case conflictingOneOf + case internalExtensionError + case messageDepthLimit + public static func == (a: VideoSDKRTC.TextFormatDecodingError, b: VideoSDKRTC.TextFormatDecodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct TextFormatDecodingOptions : Swift.Sendable { + public var messageDepthLimit: Swift.Int + public init() +} +public struct TextFormatEncodingOptions : Swift.Sendable { + public var printUnknownFields: Swift.Bool + public init() +} +public protocol TextMapBaggagePropagator { + var fields: Swift.Set { get } + func inject(baggage: any VideoSDKRTC.Baggage, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + @discardableResult + func extract(carrier: [Swift.String : Swift.String], getter: G) -> (any VideoSDKRTC.Baggage)? where G : VideoSDKRTC.Getter +} +public protocol TextMapPropagator { + var fields: Swift.Set { get } + func inject(spanContext: VideoSDKRTC.SpanContext, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + @discardableResult + func extract(carrier: [Swift.String : Swift.String], getter: G) -> VideoSDKRTC.SpanContext? where G : VideoSDKRTC.Getter +} +public protocol Setter { + func set(carrier: inout [Swift.String : Swift.String], key: Swift.String, value: Swift.String) +} +public protocol Getter { + func get(carrier: [Swift.String : Swift.String], key: Swift.String) -> [Swift.String]? +} +public struct Google_Protobuf_Timestamp { + public var seconds: Swift.Int64 + public var nanos: Swift.Int32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Timestamp : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Timestamp : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Timestamp) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Opentelemetry_Proto_Trace_V1_TracesData { + public var resourceSpans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Trace_V1_ResourceSpans { + public var resource: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource { + get + set + } + public var hasResource: Swift.Bool { + get + } + public mutating func clearResource() + public var scopeSpans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Trace_V1_ScopeSpans { + public var scope: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope { + get + set + } + public var hasScope: Swift.Bool { + get + } + public mutating func clearScope() + public var spans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Trace_V1_Span { + public var traceID: Foundation.Data + public var spanID: Foundation.Data + public var traceState: Swift.String + public var parentSpanID: Foundation.Data + public var name: Swift.String + public var kind: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind + public var startTimeUnixNano: Swift.UInt64 + public var endTimeUnixNano: Swift.UInt64 + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var events: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event] + public var droppedEventsCount: Swift.UInt32 + public var links: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link] + public var droppedLinksCount: Swift.UInt32 + public var status: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status { + get + set + } + public var hasStatus: Swift.Bool { + get + } + public mutating func clearStatus() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum SpanKind : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unspecified + case `internal` + case server + case client + case producer + case consumer + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + } + public struct Event { + public var timeUnixNano: Swift.UInt64 + public var name: Swift.String + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public struct Link { + public var traceID: Foundation.Data + public var spanID: Foundation.Data + public var traceState: Swift.String + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind] +} +public struct Opentelemetry_Proto_Trace_V1_Status { + public var message: Swift.String + public var code: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum StatusCode : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unset + case ok + case error + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + } + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode] +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +public struct Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest { + public var resourceSpans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse { + public var partialSuccess: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess { + get + set + } + public var hasPartialSuccess: Swift.Bool { + get + } + public mutating func clearPartialSuccess() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess { + public var rejectedSpans: Swift.Int64 + public var errorMessage: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() } -extension Swift.String { - public func toJSON() -> [Swift.String : Any] +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest : @unchecked Swift.Sendable { } -extension Swift.Dictionary { - public func toJSONString() -> Swift.String +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse : @unchecked Swift.Sendable { } -extension Swift.Array { - public func toJSONString() -> Swift.String +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess : @unchecked Swift.Sendable { } -extension Swift.Encodable { - public func toJSON() -> [Swift.String : Any] - public func toJSONArray() -> [Any] +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -public struct LivestreamOutput : Swift.Codable { - public let url: Swift.String - public let streamKey: Swift.String - public init(url: Swift.String, streamKey: Swift.String) - public func encode(to encoder: Swift.Encoder) throws - public init(from decoder: Swift.Decoder) throws +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -@_hasMissingDesignatedInitializers public class MediaStream : Swift.Equatable { - public var id: Swift.String { +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess) -> Swift.Bool + public var hashValue: Swift.Int { get } - public var kind: VideoSDKRTC.MediaType { +} +public struct TraceFlags : Swift.Equatable, Swift.CustomStringConvertible, Swift.Codable { + public var byte: Swift.UInt8 { get } - public var track: WebRTC.RTCMediaStreamTrack { + public var hexString: Swift.String { get } - public var producer: Mediasoup.Producer? { + public init() + public init(fromByte src: Swift.UInt8) + public init(fromHexString hex: Swift.String, withOffset offset: Swift.Int = 0) + public var sampled: Swift.Bool { get } - public var consumer: Mediasoup.Consumer? { + public mutating func setIsSampled(_ isSampled: Swift.Bool) + public func settingIsSampled(_ isSampled: Swift.Bool) -> VideoSDKRTC.TraceFlags + public var description: Swift.String { get } - @objc deinit + public static func == (a: VideoSDKRTC.TraceFlags, b: VideoSDKRTC.TraceFlags) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -extension VideoSDKRTC.MediaStream { - public func pause() - public func resume() +public struct TraceId : Swift.Comparable, Swift.Hashable, Swift.CustomStringConvertible, Swift.Equatable, Swift.Codable { + public static let size: Swift.Int + public static let invalidId: Swift.UInt64 + public static let invalid: VideoSDKRTC.TraceId + public var idHi: Swift.UInt64 { + get + } + public var idLo: Swift.UInt64 { + get + } + public init(idHi: Swift.UInt64, idLo: Swift.UInt64) + public init() + public static func random() -> VideoSDKRTC.TraceId + public init(fromData data: Foundation.Data) + public init(fromBytes bytes: [Swift.UInt8]) + public init(fromBytes bytes: Swift.ArraySlice) + public init(fromBytes bytes: Swift.ArraySlice) + public func copyBytesTo(dest: inout Foundation.Data, destOffset: Swift.Int) + public func copyBytesTo(dest: inout [Swift.UInt8], destOffset: Swift.Int) + public func copyBytesTo(dest: inout Swift.ArraySlice, destOffset: Swift.Int) + public init(fromHexString hex: Swift.String, withOffset offset: Swift.Int = 0) + public var isValid: Swift.Bool { + get + } + public var hexString: Swift.String { + get + } + public var rawHigherLong: Swift.UInt64 { + get + } + public var rawLowerLong: Swift.UInt64 { + get + } + public var description: Swift.String { + get + } + public static func < (lhs: VideoSDKRTC.TraceId, rhs: VideoSDKRTC.TraceId) -> Swift.Bool + public static func == (lhs: VideoSDKRTC.TraceId, rhs: VideoSDKRTC.TraceId) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws } -extension VideoSDKRTC.MediaStream { - public static func == (lhs: VideoSDKRTC.MediaStream, rhs: VideoSDKRTC.MediaStream) -> Swift.Bool +public protocol Tracer : AnyObject { + func spanBuilder(spanName: Swift.String) -> any VideoSDKRTC.SpanBuilder } -public enum MediaType : Swift.Equatable { - case share - case state(value: Mediasoup.MediaKind) - public static func == (a: VideoSDKRTC.MediaType, b: VideoSDKRTC.MediaType) -> Swift.Bool +public protocol TracerProvider { + func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String?) -> any VideoSDKRTC.Tracer } -@_hasMissingDesignatedInitializers public class Meeting : Swift.Equatable { - public var id: Swift.String { +public class TracerProviderBuilder { + public var clock: any VideoSDKRTC.Clock { get } - public var localParticipant: VideoSDKRTC.Participant { + public var idGenerator: any VideoSDKRTC.IdGenerator { get } - public var participants: [Swift.String : VideoSDKRTC.Participant] { + public var resource: VideoSDKRTC.Resource { get } - public var pubsub: VideoSDKRTC.PubSub { + public var spanLimits: VideoSDKRTC.SpanLimits { get } - public var customVideoMediaStream: VideoSDKRTC.CustomRTCMediaStream? { + public var sampler: any VideoSDKRTC.Sampler { + get + } + public var spanProcessors: [any VideoSDKRTC.SpanProcessor] { get } + public init() + public func with(clock: any VideoSDKRTC.Clock) -> Self + public func with(idGenerator: any VideoSDKRTC.IdGenerator) -> Self + public func with(resource: VideoSDKRTC.Resource) -> Self + public func with(spanLimits: VideoSDKRTC.SpanLimits) -> Self + public func with(sampler: any VideoSDKRTC.Sampler) -> Self + public func add(spanProcessor: any VideoSDKRTC.SpanProcessor) -> Self + public func add(spanProcessors: [any VideoSDKRTC.SpanProcessor]) -> Self + public func build() -> VideoSDKRTC.TracerProviderSdk @objc deinit } -extension VideoSDKRTC.Meeting { - public func join(cameraPosition: AVFoundation.AVCaptureDevice.Position) - public func leave() - public func end() - public func enableWebcam(customVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil) - public func disableWebcam() - public func switchWebcam() - public func muteMic() - public func unmuteMic() - public func startRecording(webhookUrl: Swift.String) - public func stopRecording() - public func startLivestream(outputs: [VideoSDKRTC.LivestreamOutput]) - public func stopLivestream() +public class TracerProviderSdk : VideoSDKRTC.TracerProvider { + public init(clock: any VideoSDKRTC.Clock = MillisClock(), idGenerator: any VideoSDKRTC.IdGenerator = RandomIdGenerator(), resource: VideoSDKRTC.Resource = EnvVarResource.get(), spanLimits: VideoSDKRTC.SpanLimits = SpanLimits(), sampler: any VideoSDKRTC.Sampler = Samplers.parentBased(root: Samplers.alwaysOn), spanProcessors: [any VideoSDKRTC.SpanProcessor] = []) + @objc deinit + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Tracer + public func getActiveClock() -> any VideoSDKRTC.Clock + public func updateActiveClock(_ newClock: any VideoSDKRTC.Clock) + public func getActiveIdGenerator() -> any VideoSDKRTC.IdGenerator + public func updateActiveIdGenerator(_ newGenerator: any VideoSDKRTC.IdGenerator) + public func getActiveResource() -> VideoSDKRTC.Resource + public func updateActiveResource(_ newResource: VideoSDKRTC.Resource) + public func getActiveSpanLimits() -> VideoSDKRTC.SpanLimits + public func updateActiveSpanLimits(_ spanLimits: VideoSDKRTC.SpanLimits) + public func getActiveSampler() -> any VideoSDKRTC.Sampler + public func updateActiveSampler(_ newSampler: any VideoSDKRTC.Sampler) + public func getActiveSpanProcessors() -> [any VideoSDKRTC.SpanProcessor] + public func addSpanProcessor(_ spanProcessor: any VideoSDKRTC.SpanProcessor) + public func resetSpanProcessors() + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) } -extension VideoSDKRTC.Meeting { - public func addEventListener(_ meetingEventListener: VideoSDKRTC.MeetingEventListener) - public func removeEventListener(_ meetingEventListener: VideoSDKRTC.MeetingEventListener) +@_hasMissingDesignatedInitializers public class TracerSdk : VideoSDKRTC.Tracer { + final public let instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo + public func spanBuilder(spanName: Swift.String) -> any VideoSDKRTC.SpanBuilder + @objc deinit } -extension VideoSDKRTC.Meeting { - public static func == (lhs: VideoSDKRTC.Meeting, rhs: VideoSDKRTC.Meeting) -> Swift.Bool +public struct TraceState : Swift.Equatable, Swift.Codable { + public var entries: [VideoSDKRTC.TraceState.Entry] { + get + } + public init() + public init?(entries: [VideoSDKRTC.TraceState.Entry]) + public func get(key: Swift.String) -> Swift.String? + public func setting(key: Swift.String, value: Swift.String) -> VideoSDKRTC.TraceState + public func removing(key: Swift.String) -> VideoSDKRTC.TraceState + public struct Entry : Swift.Equatable, Swift.Codable { + public var key: Swift.String { + get + } + public var value: Swift.String { + get + } + public init?(key: Swift.String, value: Swift.String) + public static func == (a: VideoSDKRTC.TraceState.Entry, b: VideoSDKRTC.TraceState.Entry) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } + public static func == (a: VideoSDKRTC.TraceState, b: VideoSDKRTC.TraceState) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public protocol MeetingEventListener : AnyObject { - func onMeetingJoined() - func onMeetingLeft() - func onParticipantJoined(_ participant: VideoSDKRTC.Participant) - func onParticipantLeft(_ participant: VideoSDKRTC.Participant) - func onRecordingStarted() - func onRecordingStoppped() - func onLivestreamStarted() - func onLivestreamStopped() - func onSpeakerChanged(participantId: Swift.String?) - func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) - func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) +public enum Google_Protobuf_Syntax : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case proto2 + case proto3 + case editions + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_Syntax] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_Syntax] } -extension VideoSDKRTC.MeetingEventListener { - public func onMeetingJoined() - public func onMeetingLeft() - public func onParticipantJoined(_ participant: VideoSDKRTC.Participant) - public func onParticipantLeft(_ participant: VideoSDKRTC.Participant) - public func onRecordingStarted() - public func onRecordingStoppped() - public func onLivestreamStarted() - public func onLivestreamStopped() - public func onSpeakerChanged(participantId: Swift.String?) - public func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) - public func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) +public struct Google_Protobuf_Type { + public var name: Swift.String + public var fields: [VideoSDKRTC.Google_Protobuf_Field] + public var oneofs: [Swift.String] + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var sourceContext: VideoSDKRTC.Google_Protobuf_SourceContext { + get + set + } + public var hasSourceContext: Swift.Bool { + get + } + public mutating func clearSourceContext() + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var edition: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() } -@_hasMissingDesignatedInitializers public class Participant : Swift.Equatable { - public var id: Swift.String { +public struct Google_Protobuf_Field { + public var kind: VideoSDKRTC.Google_Protobuf_Field.Kind + public var cardinality: VideoSDKRTC.Google_Protobuf_Field.Cardinality + public var number: Swift.Int32 + public var name: Swift.String + public var typeURL: Swift.String + public var oneofIndex: Swift.Int32 + public var packed: Swift.Bool + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var jsonName: Swift.String + public var defaultValue: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum Kind : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case typeUnknown + case typeDouble + case typeFloat + case typeInt64 + case typeUint64 + case typeInt32 + case typeFixed64 + case typeFixed32 + case typeBool + case typeString + case typeGroup + case typeMessage + case typeBytes + case typeUint32 + case typeEnum + case typeSfixed32 + case typeSfixed64 + case typeSint32 + case typeSint64 + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_Field.Kind] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_Field.Kind] + } + public enum Cardinality : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case optional + case required + case repeated + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_Field.Cardinality] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_Field.Cardinality] + } + public init() +} +public struct Google_Protobuf_Enum { + public var name: Swift.String + public var enumvalue: [VideoSDKRTC.Google_Protobuf_EnumValue] + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var sourceContext: VideoSDKRTC.Google_Protobuf_SourceContext { get + set } - public var displayName: Swift.String { + public var hasSourceContext: Swift.Bool { get } - public var videoQuality: VideoSDKRTC.VideoQuality { + public mutating func clearSourceContext() + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var edition: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_EnumValue { + public var name: Swift.String + public var number: Swift.Int32 + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Option { + public var name: Swift.String + public var value: VideoSDKRTC.Google_Protobuf_Any { get + set } - public var isLocal: Swift.Bool { + public var hasValue: Swift.Bool { get } - public var streams: [Swift.String : VideoSDKRTC.MediaStream] { + public mutating func clearValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Type : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Field : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Enum : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Option : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Syntax : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_Type : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Type, rhs: VideoSDKRTC.Google_Protobuf_Type) -> Swift.Bool + public var hashValue: Swift.Int { get } - @objc deinit } -extension VideoSDKRTC.Participant { - public func enableMic() - public func disableMic() - public func enableWebcam() - public func disableWebcam() - public func remove() +extension VideoSDKRTC.Google_Protobuf_Field : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Field, rhs: VideoSDKRTC.Google_Protobuf_Field) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -extension VideoSDKRTC.Participant { - public func addStream(_ stream: VideoSDKRTC.MediaStream) - @discardableResult - public func removeStream(_ streamId: Swift.String) -> VideoSDKRTC.MediaStream? - public func removeAllStreams() - public func setQuality(_ quality: VideoSDKRTC.VideoQuality) +extension VideoSDKRTC.Google_Protobuf_Field.Kind : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap } -extension VideoSDKRTC.Participant { - public func addEventListener(_ listener: VideoSDKRTC.ParticipantEventListener) - public func removeEventListener(_ listener: VideoSDKRTC.ParticipantEventListener) +extension VideoSDKRTC.Google_Protobuf_Field.Cardinality : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap } -extension VideoSDKRTC.Participant { - public static func == (lhs: VideoSDKRTC.Participant, rhs: VideoSDKRTC.Participant) -> Swift.Bool +extension VideoSDKRTC.Google_Protobuf_Enum : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Enum, rhs: VideoSDKRTC.Google_Protobuf_Enum) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -public protocol ParticipantEventListener { - func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) - func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +extension VideoSDKRTC.Google_Protobuf_EnumValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumValue, rhs: VideoSDKRTC.Google_Protobuf_EnumValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -extension VideoSDKRTC.ParticipantEventListener { - public func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) - public func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +extension VideoSDKRTC.Google_Protobuf_Option : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Option, rhs: VideoSDKRTC.Google_Protobuf_Option) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -@_hasMissingDesignatedInitializers public class PubSub { +@available(*, deprecated, message: "Use MetricProcessorSdk instead") +public class UngroupedBatcher : VideoSDKRTC.MetricProcessor { + public init() + public func finishCollectionCycle() -> [VideoSDKRTC.Metric] + public func process(metric: VideoSDKRTC.Metric) @objc deinit } -extension VideoSDKRTC.PubSub { - public func publish(topic: Swift.String, message: Swift.String, options: [Swift.String : Any] = [:]) - public func subscribe(topic: Swift.String, forListener listener: VideoSDKRTC.PubSubMessageListener) - public func unsubscribe(topic: Swift.String, forListener listener: VideoSDKRTC.PubSubMessageListener) - public func getMessagesForTopic(_ topic: Swift.String) -> [VideoSDKRTC.PubSubMessage] +public struct UnknownStorage : Swift.Equatable, @unchecked Swift.Sendable { + public var data: Foundation.Data { + get + } + public init() + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (a: VideoSDKRTC.UnknownStorage, b: VideoSDKRTC.UnknownStorage) -> Swift.Bool } -@objc @_hasMissingDesignatedInitializers public class PubSubMessage : ObjectiveC.NSObject { - public var id: Swift.String - public var topic: Swift.String - public var message: Swift.String - public var senderId: Swift.String - public var senderName: Swift.String - public var timestamp: Swift.String - @objc deinit +public protocol ValueAtQuantile { + func quantile() -> Swift.Double + func value() -> Swift.Double } -public protocol PubSubMessageListener { - func onMessageReceived(_ message: VideoSDKRTC.PubSubMessage) +public struct Version { + public static let major: Swift.Int + public static let minor: Swift.Int + public static let revision: Swift.Int + public static let versionString: Swift.String } public enum VideoQuality : Swift.String, Swift.CaseIterable { case high, medium, low @@ -234,15 +8420,424 @@ public enum VideoQuality : Swift.String, Swift.CaseIterable { } @_hasMissingDesignatedInitializers final public class VideoSDK { public static func config(token: Swift.String) - public static func initMeeting(meetingId: Swift.String, participantId: Swift.String = "", participantName: Swift.String = "Guest", micEnabled: Swift.Bool = true, webcamEnabled: Swift.Bool = true, customCameraVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil) -> VideoSDKRTC.Meeting + public static func initMeeting(meetingId: Swift.String, participantId: Swift.String = "", participantName: Swift.String = "Guest", micEnabled: Swift.Bool = true, webcamEnabled: Swift.Bool = true, customCameraVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil, mode: VideoSDKRTC.Mode? = .CONFERENCE) -> VideoSDKRTC.Meeting public static func createCameraVideoTrack(encoderConfig: VideoSDKRTC.CustomVideoTrackConfig? = .h360p_w640p, facingMode: AVFoundation.AVCaptureDevice.Position? = .front, multiStream: Swift.Bool? = true) throws -> VideoSDKRTC.CustomRTCMediaStream? @objc deinit } +extension VideoSDKRTC.VideoSDK { + public static func getAudioPermissionStatus() -> VideoSDKRTC.authorisationStatus + public static func getVideoPermissionStatus() -> VideoSDKRTC.authorisationStatus + public static func getAudioPermission() + public static func getVideoPermission() + public static func getCameras() -> [Swift.String] + public static func getAudioDevices() -> [Swift.String] +} +@_hasMissingDesignatedInitializers public class ViewBuilder { + public func withName(name: Swift.String) -> Self + public func withDescription(description: Swift.String) -> Self + public func withAggregation(aggregation: any VideoSDKRTC.Aggregation) -> Self + public func addAttributeFilter(keyFilter: @escaping (Swift.String) -> Swift.Bool) -> Self + public func addAttributeProcessor(processor: VideoSDKRTC.AttributeProcessor) -> Self + public func build() -> VideoSDKRTC.StableView + @objc deinit +} +public protocol Visitor { + mutating func visitSingularFloatField(value: Swift.Float, fieldNumber: Swift.Int) throws + mutating func visitSingularDoubleField(value: Swift.Double, fieldNumber: Swift.Int) throws + mutating func visitSingularInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + mutating func visitSingularInt64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + mutating func visitSingularUInt32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + mutating func visitSingularUInt64Field(value: Swift.UInt64, fieldNumber: Swift.Int) throws + mutating func visitSingularSInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + mutating func visitSingularSInt64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + mutating func visitSingularFixed32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + mutating func visitSingularFixed64Field(value: Swift.UInt64, fieldNumber: Swift.Int) throws + mutating func visitSingularSFixed32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + mutating func visitSingularSFixed64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + mutating func visitSingularBoolField(value: Swift.Bool, fieldNumber: Swift.Int) throws + mutating func visitSingularStringField(value: Swift.String, fieldNumber: Swift.Int) throws + mutating func visitSingularBytesField(value: Foundation.Data, fieldNumber: Swift.Int) throws + mutating func visitSingularEnumField(value: E, fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + mutating func visitSingularMessageField(value: M, fieldNumber: Swift.Int) throws where M : VideoSDKRTC.Message + mutating func visitSingularGroupField(value: G, fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + mutating func visitRepeatedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + mutating func visitRepeatedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + mutating func visitRepeatedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + mutating func visitRepeatedStringField(value: [Swift.String], fieldNumber: Swift.Int) throws + mutating func visitRepeatedBytesField(value: [Foundation.Data], fieldNumber: Swift.Int) throws + mutating func visitRepeatedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + mutating func visitRepeatedMessageField(value: [M], fieldNumber: Swift.Int) throws where M : VideoSDKRTC.Message + mutating func visitRepeatedGroupField(value: [G], fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + mutating func visitPackedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + mutating func visitPackedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + mutating func visitPackedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitPackedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitPackedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitPackedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitPackedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitPackedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitPackedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitPackedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitPackedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitPackedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitPackedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + mutating func visitPackedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + mutating func visitMapField(fieldType: VideoSDKRTC._ProtobufMap.Type, value: VideoSDKRTC._ProtobufMap.BaseType, fieldNumber: Swift.Int) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.MapValueType + mutating func visitMapField(fieldType: VideoSDKRTC._ProtobufEnumMap.Type, value: VideoSDKRTC._ProtobufEnumMap.BaseType, fieldNumber: Swift.Int) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.Enum, ValueType.RawValue == Swift.Int + mutating func visitMapField(fieldType: VideoSDKRTC._ProtobufMessageMap.Type, value: VideoSDKRTC._ProtobufMessageMap.BaseType, fieldNumber: Swift.Int) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : Swift.Hashable, ValueType : VideoSDKRTC.Message + mutating func visitExtensionFields(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws + mutating func visitExtensionFieldsAsMessageSet(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws + mutating func visitUnknown(bytes: Foundation.Data) throws +} +extension VideoSDKRTC.Visitor { + public mutating func visitSingularFloatField(value: Swift.Float, fieldNumber: Swift.Int) throws + public mutating func visitSingularInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + public mutating func visitSingularUInt32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + public mutating func visitSingularSInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + public mutating func visitSingularSInt64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + public mutating func visitSingularFixed32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + public mutating func visitSingularFixed64Field(value: Swift.UInt64, fieldNumber: Swift.Int) throws + public mutating func visitSingularSFixed32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + public mutating func visitSingularSFixed64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + public mutating func visitRepeatedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedStringField(value: [Swift.String], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedBytesField(value: [Foundation.Data], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + public mutating func visitRepeatedMessageField(value: [M], fieldNumber: Swift.Int) throws where M : VideoSDKRTC.Message + public mutating func visitRepeatedGroupField(value: [G], fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + public mutating func visitPackedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + public mutating func visitPackedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + public mutating func visitPackedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitPackedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitPackedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitPackedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitPackedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitPackedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitPackedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitPackedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitPackedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitPackedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitPackedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + public mutating func visitPackedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + public mutating func visitSingularGroupField(value: G, fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + public mutating func visitExtensionFieldsAsMessageSet(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws + public mutating func visitExtensionFields(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws +} +public struct W3CBaggagePropagator : VideoSDKRTC.TextMapBaggagePropagator { + public init() + public let fields: Swift.Set + public func inject(baggage: any VideoSDKRTC.Baggage, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + public func extract(carrier: [Swift.String : Swift.String], getter: G) -> (any VideoSDKRTC.Baggage)? where G : VideoSDKRTC.Getter +} +public struct W3CTraceContextPropagator : VideoSDKRTC.TextMapPropagator { + public init() + public let fields: Swift.Set + public func inject(spanContext: VideoSDKRTC.SpanContext, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + public func extract(carrier: [Swift.String : Swift.String], getter: G) -> VideoSDKRTC.SpanContext? where G : VideoSDKRTC.Getter +} +public struct Google_Protobuf_DoubleValue { + public var value: Swift.Double + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_FloatValue { + public var value: Swift.Float + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Int64Value { + public var value: Swift.Int64 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_UInt64Value { + public var value: Swift.UInt64 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Int32Value { + public var value: Swift.Int32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_UInt32Value { + public var value: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_BoolValue { + public var value: Swift.Bool + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_StringValue { + public var value: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_BytesValue { + public var value: Foundation.Data + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_DoubleValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FloatValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Int64Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UInt64Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Int32Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UInt32Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_BoolValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_StringValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_BytesValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DoubleValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DoubleValue, rhs: VideoSDKRTC.Google_Protobuf_DoubleValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FloatValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FloatValue, rhs: VideoSDKRTC.Google_Protobuf_FloatValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Int64Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Int64Value, rhs: VideoSDKRTC.Google_Protobuf_Int64Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_UInt64Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UInt64Value, rhs: VideoSDKRTC.Google_Protobuf_UInt64Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Int32Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Int32Value, rhs: VideoSDKRTC.Google_Protobuf_Int32Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_UInt32Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UInt32Value, rhs: VideoSDKRTC.Google_Protobuf_UInt32Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_BoolValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_BoolValue, rhs: VideoSDKRTC.Google_Protobuf_BoolValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_StringValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_StringValue, rhs: VideoSDKRTC.Google_Protobuf_StringValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_BytesValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_BytesValue, rhs: VideoSDKRTC.Google_Protobuf_BytesValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.AggregationTemporality : Swift.Equatable {} +extension VideoSDKRTC.AggregationTemporality : Swift.Hashable {} +extension VideoSDKRTC.AggregationType : Swift.Equatable {} +extension VideoSDKRTC.AggregationType : Swift.Hashable {} +extension VideoSDKRTC.AggregationType : Swift.RawRepresentable {} +extension VideoSDKRTC.AnyUnpackError : Swift.Equatable {} +extension VideoSDKRTC.AnyUnpackError : Swift.Hashable {} +extension VideoSDKRTC.BinaryDecodingError : Swift.Equatable {} +extension VideoSDKRTC.BinaryDecodingError : Swift.Hashable {} +extension VideoSDKRTC.BinaryDelimited.Error : Swift.Equatable {} +extension VideoSDKRTC.BinaryDelimited.Error : Swift.Hashable {} +extension VideoSDKRTC.BinaryEncodingError : Swift.Equatable {} +extension VideoSDKRTC.BinaryEncodingError : Swift.Hashable {} extension VideoSDKRTC.CameraPosition : Swift.Equatable {} extension VideoSDKRTC.CameraPosition : Swift.Hashable {} extension VideoSDKRTC.CameraPosition : Swift.RawRepresentable {} extension VideoSDKRTC.CustomVideoTrackConfig : Swift.Equatable {} extension VideoSDKRTC.CustomVideoTrackConfig : Swift.Hashable {} +extension VideoSDKRTC.EmptyMetricStorage : VideoSDKRTC.MetricStorage {} +extension VideoSDKRTC.EmptyMetricStorage : VideoSDKRTC.WritableMetricStorage {} +extension VideoSDKRTC.ExportResult : Swift.Equatable {} +extension VideoSDKRTC.ExportResult : Swift.Hashable {} +extension VideoSDKRTC.ConfigLayoutPriority : Swift.Equatable {} +extension VideoSDKRTC.ConfigLayoutPriority : Swift.Hashable {} +extension VideoSDKRTC.ConfigLayoutPriority : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigLayoutGrid : Swift.Equatable {} +extension VideoSDKRTC.ConfigLayoutGrid : Swift.Hashable {} +extension VideoSDKRTC.ConfigLayoutGrid : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigTheme : Swift.Equatable {} +extension VideoSDKRTC.ConfigTheme : Swift.Hashable {} +extension VideoSDKRTC.ConfigTheme : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigMode : Swift.Equatable {} +extension VideoSDKRTC.ConfigMode : Swift.Hashable {} +extension VideoSDKRTC.ConfigMode : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigQuality : Swift.Equatable {} +extension VideoSDKRTC.ConfigQuality : Swift.Hashable {} +extension VideoSDKRTC.ConfigQuality : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigOrientation : Swift.Equatable {} +extension VideoSDKRTC.ConfigOrientation : Swift.Hashable {} +extension VideoSDKRTC.ConfigOrientation : Swift.RawRepresentable {} +extension VideoSDKRTC.InstrumentType : Swift.Equatable {} +extension VideoSDKRTC.InstrumentType : Swift.Hashable {} +extension VideoSDKRTC.InstrumentValueType : Swift.Equatable {} +extension VideoSDKRTC.InstrumentValueType : Swift.Hashable {} +extension VideoSDKRTC.JSONEncodingError : Swift.Equatable {} +extension VideoSDKRTC.JSONEncodingError : Swift.Hashable {} +extension VideoSDKRTC.authorisationStatus : Swift.Equatable {} +extension VideoSDKRTC.authorisationStatus : Swift.Hashable {} +extension VideoSDKRTC.MeetingState : Swift.Equatable {} +extension VideoSDKRTC.MeetingState : Swift.Hashable {} +extension VideoSDKRTC.MeetingState : Swift.RawRepresentable {} +extension VideoSDKRTC.Mode : Swift.Equatable {} +extension VideoSDKRTC.Mode : Swift.Hashable {} +extension VideoSDKRTC.Mode : Swift.RawRepresentable {} +extension VideoSDKRTC.VideoSDKError : Swift.Equatable {} +extension VideoSDKRTC.VideoSDKError : Swift.Hashable {} +extension VideoSDKRTC.VideoSDKError : Swift.RawRepresentable {} +extension VideoSDKRTC.HLSState : Swift.Equatable {} +extension VideoSDKRTC.HLSState : Swift.Hashable {} +extension VideoSDKRTC.HLSState : Swift.RawRepresentable {} +extension VideoSDKRTC.RecordingState : Swift.Equatable {} +extension VideoSDKRTC.RecordingState : Swift.Hashable {} +extension VideoSDKRTC.RecordingState : Swift.RawRepresentable {} +extension VideoSDKRTC.LiveStreamState : Swift.Equatable {} +extension VideoSDKRTC.LiveStreamState : Swift.Hashable {} +extension VideoSDKRTC.LiveStreamState : Swift.RawRepresentable {} +extension VideoSDKRTC.MetricExporterResultCode : Swift.Equatable {} +extension VideoSDKRTC.MetricExporterResultCode : Swift.Hashable {} +extension VideoSDKRTC.OpenTelemetryContextKeys : Swift.Equatable {} +extension VideoSDKRTC.OpenTelemetryContextKeys : Swift.Hashable {} +extension VideoSDKRTC.OpenTelemetryContextKeys : Swift.RawRepresentable {} +extension VideoSDKRTC.PinType : Swift.Equatable {} +extension VideoSDKRTC.PinType : Swift.Hashable {} +extension VideoSDKRTC.PinType : Swift.RawRepresentable {} +extension VideoSDKRTC.ResourceAttributes : Swift.Equatable {} +extension VideoSDKRTC.ResourceAttributes : Swift.Hashable {} +extension VideoSDKRTC.ResourceAttributes : Swift.RawRepresentable {} +extension VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues : Swift.Equatable {} +extension VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues : Swift.Hashable {} +extension VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.FaasTriggerValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.FaasTriggerValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.FaasTriggerValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.MessageTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.MessageTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.MessageTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.Severity : Swift.Hashable {} +extension VideoSDKRTC.Severity : Swift.RawRepresentable {} +extension VideoSDKRTC.SpanExporterResultCode : Swift.Equatable {} +extension VideoSDKRTC.SpanExporterResultCode : Swift.Hashable {} +extension VideoSDKRTC.SpanKind : Swift.Hashable {} +extension VideoSDKRTC.SpanKind : Swift.RawRepresentable {} +extension VideoSDKRTC.MetricDataType : Swift.Equatable {} +extension VideoSDKRTC.MetricDataType : Swift.Hashable {} +extension VideoSDKRTC.SynchronousMetricStorage : VideoSDKRTC.MetricStorage {} +extension VideoSDKRTC.SynchronousMetricStorage : VideoSDKRTC.WritableMetricStorage {} +extension VideoSDKRTC.TextFormatDecodingError : Swift.Equatable {} +extension VideoSDKRTC.TextFormatDecodingError : Swift.Hashable {} extension VideoSDKRTC.VideoQuality : Swift.Equatable {} extension VideoSDKRTC.VideoQuality : Swift.Hashable {} extension VideoSDKRTC.VideoQuality : Swift.RawRepresentable {} diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index 1f0b986..2b43569 100644 Binary files a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index 5215959..198315f 100644 --- a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,16 +1,554 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) +// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) // swift-module-flags: -target x86_64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name VideoSDKRTC // swift-module-flags-ignorable: -enable-bare-slash-regex import AVFoundation +import AVKit +import CoreMedia +import Darwin +import Dispatch import Foundation import Mediasoup +import ReplayKit import Swift +import UIKit @_exported import VideoSDKRTC import VideosdkWebSocket import WebRTC import _Concurrency import _StringProcessing +import _SwiftConcurrencyShims +import os.activity +import os.log +import os +public enum Aggregations { + public static func drop() -> any VideoSDKRTC.Aggregation + public static func defaultAggregation() -> any VideoSDKRTC.Aggregation + public static func sum() -> any VideoSDKRTC.Aggregation + public static func lastValue() -> any VideoSDKRTC.Aggregation + public static func explicitBucketHistogram() -> any VideoSDKRTC.Aggregation + public static func explicitBucketHistogram(buckets: [Swift.Double]) -> any VideoSDKRTC.Aggregation +} +public typealias AggregationResolver = (VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +public protocol DefaultAggregationSelector { + func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +} +@_hasMissingDesignatedInitializers public class AggregationSelector : VideoSDKRTC.DefaultAggregationSelector { + public static let instance: VideoSDKRTC.AggregationSelector + final public let selector: VideoSDKRTC.AggregationResolver + public func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation + public static func defaultSelector() -> VideoSDKRTC.AggregationResolver + public func with(instrumentType: VideoSDKRTC.InstrumentType, aggregation: any VideoSDKRTC.Aggregation) -> VideoSDKRTC.AggregationResolver + @objc deinit +} +public protocol AggregationTemporalitySelectorProtocol { + func getAggregationTemporality(for instrument: VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality +} +@_hasMissingDesignatedInitializers public class AggregationTemporalitySelector : VideoSDKRTC.AggregationTemporalitySelectorProtocol { + public func getAggregationTemporality(for instrument: VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality + public var aggregationTemporalitySelector: (VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality + @objc deinit +} +public enum AggregationTemporality { + case delta + case cumulative + public static func alwaysCumulative() -> VideoSDKRTC.AggregationTemporalitySelector + public static func deltaPreferred() -> VideoSDKRTC.AggregationTemporalitySelector + public static func == (a: VideoSDKRTC.AggregationTemporality, b: VideoSDKRTC.AggregationTemporality) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public enum AggregationType : Swift.String, Swift.Codable { + case intGauge + case doubleGauge + case doubleSum + case intSum + case doubleSummary + case intSummary + case doubleHistogram + case intHistogram + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +@_hasMissingDesignatedInitializers public class Aggregator { + public func update(value: T) + public func checkpoint() + public func toMetricData() -> any VideoSDKRTC.MetricData + public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public protocol Aggregation : AnyObject { + func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class AggregatorHandle { + public func aggregateThenMaybeReset(startEpochNano: Swift.UInt64, endEpochNano: Swift.UInt64, attributes: [Swift.String : VideoSDKRTC.AttributeValue], reset: Swift.Bool) -> VideoSDKRTC.PointData + public func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordLong(value: Swift.Int) + public func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordDouble(value: Swift.Double) + @objc deinit +} +public struct Google_Protobuf_Any { + public var typeURL: Swift.String { + get + set + } + public var value: Foundation.Data { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Any : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Any : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Any, rhs: VideoSDKRTC.Google_Protobuf_Any) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public enum AnyUnpackError : Swift.Error { + case typeMismatch + case malformedWellKnownTypeJSON + case malformedAnyField + public static func == (a: VideoSDKRTC.AnyUnpackError, b: VideoSDKRTC.AnyUnpackError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct Google_Protobuf_Api { + public var name: Swift.String + public var methods: [VideoSDKRTC.Google_Protobuf_Method] + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var version: Swift.String + public var sourceContext: VideoSDKRTC.Google_Protobuf_SourceContext { + get + set + } + public var hasSourceContext: Swift.Bool { + get + } + public mutating func clearSourceContext() + public var mixins: [VideoSDKRTC.Google_Protobuf_Mixin] + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Method { + public var name: Swift.String + public var requestTypeURL: Swift.String + public var requestStreaming: Swift.Bool + public var responseTypeURL: Swift.String + public var responseStreaming: Swift.Bool + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Mixin { + public var name: Swift.String + public var root: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Api : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Method : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Mixin : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Api : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Api, rhs: VideoSDKRTC.Google_Protobuf_Api) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Method : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Method, rhs: VideoSDKRTC.Google_Protobuf_Method) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Mixin : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Mixin, rhs: VideoSDKRTC.Google_Protobuf_Mixin) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol APIDoubleObserverMetricHandle { + func observe(value: Swift.Double) +} +public protocol APIIntObserverMetricHandle { + func observe(value: Swift.Int) +} +public struct ArrayWithCapacity { + public let capacity: Swift.Int + public init(capacity: Swift.Int) + public mutating func append(_ item: T) +} +extension VideoSDKRTC.ArrayWithCapacity : Swift.MutableCollection { + public var startIndex: Swift.Int { + get + } + public var endIndex: Swift.Int { + get + } + public subscript(index: Swift.Int) -> T { + get + set + } + public func index(after i: Swift.Int) -> Swift.Int + public typealias Element = T + public typealias Index = Swift.Int + public typealias Indices = Swift.DefaultIndices> + public typealias Iterator = Swift.IndexingIterator> + public typealias SubSequence = Swift.Slice> +} +@_hasMissingDesignatedInitializers public class AsynchronousMetricStorage : VideoSDKRTC.MetricStorage { + public var registeredReader: VideoSDKRTC.RegisteredReader { + get + } + public var metricDescriptor: VideoSDKRTC.MetricDescriptor { + get + } + public func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + public func isEmpty() -> Swift.Bool + @objc deinit +} +#if compiler(>=5.3) && $RethrowsProtocol +@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +extension _Concurrency.AsyncSequence where Self.Element == Swift.UInt8 { + @inlinable public func binaryProtobufDelimitedMessages(of messageType: M.Type = M.self, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) -> VideoSDKRTC.AsyncMessageSequence where M : VideoSDKRTC.Message { + AsyncMessageSequence( + base: self, + extensions: extensions, + partial: partial, + options: options + ) + } +} +#endif +#if compiler(>=5.3) && $RethrowsProtocol +@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +public struct AsyncMessageSequence : _Concurrency.AsyncSequence where Base : _Concurrency.AsyncSequence, M : VideoSDKRTC.Message, Base.Element == Swift.UInt8 { + public typealias Element = M + public init(base: Base, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) + public struct AsyncIterator : _Concurrency.AsyncIteratorProtocol { + @usableFromInline + internal var iterator: Base.AsyncIterator? + @usableFromInline + internal let extensions: (any VideoSDKRTC.ExtensionMap)? + @usableFromInline + internal let partial: Swift.Bool + @usableFromInline + internal let options: VideoSDKRTC.BinaryDecodingOptions + #if compiler(>=5.3) && $AsyncAwait + @inlinable internal mutating func nextVarInt() async throws -> Swift.UInt64? { + var messageSize: UInt64 = 0 + var shift: UInt64 = 0 + + while let byte = try await iterator?.next() { + messageSize |= UInt64(byte & 0x7f) << shift + shift += UInt64(7) + if shift > 35 { + iterator = nil + throw BinaryDelimited.Error.malformedLength + } + if (byte & 0x80 == 0) { + return messageSize + } + } + if (shift > 0) { + // The stream has ended inside a varint. + iterator = nil + throw BinaryDelimited.Error.truncated + } + return nil // End of stream reached. + } + #endif + #if compiler(>=5.3) && $AsyncAwait + @usableFromInline + internal mutating func readBytes(_ size: Swift.Int) async throws -> [Swift.UInt8] + #endif + #if compiler(>=5.3) && $AsyncAwait + @inlinable public mutating func next() async throws -> M? { + guard let messageSize = try await nextVarInt() else { + iterator = nil + return nil + } + guard messageSize <= UInt64(0x7fffffff) else { + iterator = nil + throw BinaryDecodingError.tooLarge + } + if messageSize == 0 { + return try M( + serializedBytes: [], + extensions: extensions, + partial: partial, + options: options + ) + } + let buffer = try await readBytes(Int(messageSize)) + return try M( + serializedBytes: buffer, + extensions: extensions, + partial: partial, + options: options + ) + } + #endif + public typealias Element = M + } + public func makeAsyncIterator() -> VideoSDKRTC.AsyncMessageSequence.AsyncIterator +} +#endif +#if compiler(>=5.3) && $RethrowsProtocol +@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +extension VideoSDKRTC.AsyncMessageSequence : Swift.Sendable where Base : Swift.Sendable { +} +#endif +#if compiler(>=5.3) && $RethrowsProtocol +@available(*, unavailable) +extension VideoSDKRTC.AsyncMessageSequence.AsyncIterator : Swift.Sendable { +} +#endif +public protocol AttributeProcessorProtocol { + func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] +} +@_hasMissingDesignatedInitializers public class AttributeProcessor : VideoSDKRTC.AttributeProcessorProtocol { + public func then(other: VideoSDKRTC.AttributeProcessor) -> VideoSDKRTC.AttributeProcessor + public func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] + public static func filterByKeyName(nameFilter: @escaping (Swift.String) -> Swift.Bool) -> VideoSDKRTC.AttributeProcessor + public static func append(attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.AttributeProcessor + @objc deinit +} +@_hasMissingDesignatedInitializers public class JoinedAttributeProcessor : VideoSDKRTC.AttributeProcessor { + override public func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] + override public func then(other: VideoSDKRTC.AttributeProcessor) -> VideoSDKRTC.AttributeProcessor + public func prepend(processor: VideoSDKRTC.AttributeProcessor) -> VideoSDKRTC.AttributeProcessor + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class NoopAttributeProcessor : VideoSDKRTC.AttributeProcessor { + override public func process(incoming: [Swift.String : VideoSDKRTC.AttributeValue]) -> [Swift.String : VideoSDKRTC.AttributeValue] + @objc deinit +} +public struct AttributesDictionary { + public init(capacity: Swift.Int, valueLengthLimit: Swift.Int = Int.max) + public subscript(key: Swift.String) -> VideoSDKRTC.AttributeValue? { + get + set + } + @discardableResult + public mutating func updateValue(value: VideoSDKRTC.AttributeValue, forKey key: Swift.String) -> VideoSDKRTC.AttributeValue? + public mutating func updateValues(attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public mutating func updateValues(attributes: VideoSDKRTC.AttributesDictionary) + public mutating func removeValueForKey(key: Swift.String) -> VideoSDKRTC.AttributeValue? + public mutating func removeAll(keepCapacity: Swift.Int) + public var count: Swift.Int { + get + } + public var numberOfDroppedAttributes: Swift.Int { + get + } + public var values: [VideoSDKRTC.AttributeValue] { + get + } +} +extension VideoSDKRTC.AttributesDictionary : Swift.Sequence { + public func makeIterator() -> VideoSDKRTC.AttributesWithCapacityIterator + public typealias Element = (Swift.String, VideoSDKRTC.AttributeValue) + public typealias Iterator = VideoSDKRTC.AttributesWithCapacityIterator +} +public struct AttributesWithCapacityIterator : Swift.IteratorProtocol { + public mutating func next() -> (Swift.String, VideoSDKRTC.AttributeValue)? + public typealias Element = (Swift.String, VideoSDKRTC.AttributeValue) +} +@_hasMissingDesignatedInitializers open class AttributeSet : Swift.Hashable, Swift.Codable { + public var labels: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public static var empty: VideoSDKRTC.AttributeSet + required public init(labels: [Swift.String : VideoSDKRTC.AttributeValue]) + public static func == (lhs: VideoSDKRTC.AttributeSet, rhs: VideoSDKRTC.AttributeSet) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + @objc deinit + open func encode(to encoder: any Swift.Encoder) throws + open var hashValue: Swift.Int { + get + } + required public init(from decoder: any Swift.Decoder) throws +} +public enum AttributeValue : Swift.Equatable, Swift.CustomStringConvertible, Swift.Hashable { + case string(Swift.String) + case bool(Swift.Bool) + case int(Swift.Int) + case double(Swift.Double) + case stringArray([Swift.String]) + case boolArray([Swift.Bool]) + case intArray([Swift.Int]) + case doubleArray([Swift.Double]) + case set(VideoSDKRTC.AttributeSet) + public var description: Swift.String { + get + } + public init?(_ value: Any) + public static func == (a: VideoSDKRTC.AttributeValue, b: VideoSDKRTC.AttributeValue) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.AttributeValue { + public init(_ value: Swift.String) + public init(_ value: Swift.Bool) + public init(_ value: Swift.Int) + public init(_ value: Swift.Double) + public init(_ value: [Swift.String]) + public init(_ value: [Swift.Int]) + public init(_ value: [Swift.Double]) + public init(_ value: VideoSDKRTC.AttributeSet) +} +extension VideoSDKRTC.AttributeValue : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public protocol Baggage : AnyObject { + static func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder + func getEntries() -> [VideoSDKRTC.Entry] + func getEntryValue(key: VideoSDKRTC.EntryKey) -> VideoSDKRTC.EntryValue? +} +public func == (lhs: any VideoSDKRTC.Baggage, rhs: any VideoSDKRTC.Baggage) -> Swift.Bool +public protocol BaggageBuilder : AnyObject { + @discardableResult + func setParent(_ parent: (any VideoSDKRTC.Baggage)?) -> Self + @discardableResult + func setNoParent() -> Self + @discardableResult + func put(key: VideoSDKRTC.EntryKey, value: VideoSDKRTC.EntryValue, metadata: VideoSDKRTC.EntryMetadata?) -> Self + @discardableResult + func remove(key: VideoSDKRTC.EntryKey) -> Self + func build() -> any VideoSDKRTC.Baggage +} +public protocol BaggageManager : AnyObject { + func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder +} +public class BatchLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public init(logRecordExporter: any VideoSDKRTC.LogRecordExporter, scheduleDelay: Foundation.TimeInterval = 5, exportTimeout: Foundation.TimeInterval = 30, maxQueueSize: Swift.Int = 2048, maxExportBatchSize: Swift.Int = 512, willExportCallback: ((inout [VideoSDKRTC.ReadableLogRecord]) -> Swift.Void)? = nil) + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func forceFlush(timeout: Foundation.TimeInterval?) + public func shutdown() -> VideoSDKRTC.ExportResult + @objc deinit +} +public struct BatchSpanProcessor : VideoSDKRTC.SpanProcessor { + public init(spanExporter: any VideoSDKRTC.SpanExporter, scheduleDelay: Foundation.TimeInterval = 5, exportTimeout: Foundation.TimeInterval = 30, maxQueueSize: Swift.Int = 2048, maxExportBatchSize: Swift.Int = 512, willExportCallback: ((inout [VideoSDKRTC.SpanData]) -> Swift.Void)? = nil) + public let isStartRequired: Swift.Bool + public let isEndRequired: Swift.Bool + public func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + public func onEnd(span: any VideoSDKRTC.ReadableSpan) + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) +} +public enum BinaryDecodingError : Swift.Error { + case trailingGarbage + case truncated + case invalidUTF8 + case malformedProtobuf + case missingRequiredFields + case internalExtensionError + case messageDepthLimit + case tooLarge + public static func == (a: VideoSDKRTC.BinaryDecodingError, b: VideoSDKRTC.BinaryDecodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct BinaryDecodingOptions : Swift.Sendable { + public var messageDepthLimit: Swift.Int + public var discardUnknownFields: Swift.Bool + public init() +} +public enum BinaryDelimited { + public enum Error : Swift.Error { + case unknownStreamError + case truncated + case tooLarge + case malformedLength + case noBytesAvailable + public static func == (a: VideoSDKRTC.BinaryDelimited.Error, b: VideoSDKRTC.BinaryDelimited.Error) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } + public static func serialize(message: any VideoSDKRTC.Message, to stream: Foundation.OutputStream, partial: Swift.Bool = false) throws + public static func parse(messageType: M.Type, from stream: Foundation.InputStream, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws -> M where M : VideoSDKRTC.Message + public static func merge(into message: inout M, from stream: Foundation.InputStream, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws where M : VideoSDKRTC.Message +} +public enum BinaryEncodingError : Swift.Error { + case anyTranscodeFailure + case missingRequiredFields + case tooLarge + public static func == (a: VideoSDKRTC.BinaryEncodingError, b: VideoSDKRTC.BinaryEncodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +open class BoundCounterMetric { + public init() + open func add(value: T) + @objc deinit +} +open class BoundHistogramMetric { + public init(explicitBoundaries: Swift.Array? = nil) + open func record(value: T) + @objc deinit +} +open class BoundMeasureMetric { + public init() + open func record(value: T) + @objc deinit +} +open class BoundRawCounterMetric { + public init() + open func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date) + @objc deinit +} +open class BoundRawHistogramMetric { + public init() + open func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T) + @objc deinit +} +@_hasMissingDesignatedInitializers public class CallbackRegistration { + public func execute(reader: VideoSDKRTC.RegisteredReader, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) + @objc deinit +} public enum CameraPosition : Swift.Int { case back case front @@ -21,6 +559,197 @@ public enum CameraPosition : Swift.Int { get } } +public protocol Clock : AnyObject { + var now: Foundation.Date { get } +} +extension VideoSDKRTC.Clock { + public var nanoTime: Swift.UInt64 { + get + } +} +public func == (lhs: any VideoSDKRTC.Clock, rhs: any VideoSDKRTC.Clock) -> Swift.Bool +public protocol CollectionRegistration { +} +public struct Opentelemetry_Proto_Common_V1_AnyValue { + public var value: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value? + public var stringValue: Swift.String { + get + set + } + public var boolValue: Swift.Bool { + get + set + } + public var intValue: Swift.Int64 { + get + set + } + public var doubleValue: Swift.Double { + get + set + } + public var arrayValue: VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue { + get + set + } + public var kvlistValue: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList { + get + set + } + public var bytesValue: Foundation.Data { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Value : Swift.Equatable { + case stringValue(Swift.String) + case boolValue(Swift.Bool) + case intValue(Swift.Int64) + case doubleValue(Swift.Double) + case arrayValue(VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue) + case kvlistValue(VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList) + case bytesValue(Foundation.Data) + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value) -> Swift.Bool + } + public init() +} +public struct Opentelemetry_Proto_Common_V1_ArrayValue { + public var values: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Common_V1_KeyValueList { + public var values: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Common_V1_KeyValue { + public var key: Swift.String + public var value: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue { + get + set + } + public var hasValue: Swift.Bool { + get + } + public mutating func clearValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Common_V1_InstrumentationScope { + public var name: Swift.String + public var version: Swift.String + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue.OneOf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_ArrayValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValueList) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope, rhs: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct CommonAdapter { + public static func toProtoAttribute(key: Swift.String, attributeValue: VideoSDKRTC.AttributeValue) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue + public static func toProtoInstrumentationScope(instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo) -> VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope +} +public protocol ContextManager : AnyObject { + func getCurrentContextValue(forKey: VideoSDKRTC.OpenTelemetryContextKeys) -> Swift.AnyObject? + func setCurrentContextValue(forKey: VideoSDKRTC.OpenTelemetryContextKeys, value: Swift.AnyObject) + func removeContextValue(forKey: VideoSDKRTC.OpenTelemetryContextKeys, value: Swift.AnyObject) +} +public protocol ContextPropagators { + var textMapPropagator: any VideoSDKRTC.TextMapPropagator { get } + var textMapBaggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator { get } +} +public protocol CounterMetric { + associatedtype T + func add(value: Self.T, labelset: VideoSDKRTC.LabelSet) + func add(value: Self.T, labels: [Swift.String : Swift.String]) + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundCounterMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundCounterMetric +} +public struct AnyCounterMetric : VideoSDKRTC.CounterMetric { + public init(_ countable: U) where T == U.T, U : VideoSDKRTC.CounterMetric + public func add(value: T, labelset: VideoSDKRTC.LabelSet) + public func add(value: T, labels: [Swift.String : Swift.String]) + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundCounterMetric +} +public struct NoopCounterMetric : VideoSDKRTC.CounterMetric { + public init() + public func add(value: T, labelset: VideoSDKRTC.LabelSet) + public func add(value: T, labels: [Swift.String : Swift.String]) + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundCounterMetric +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class CounterSumAggregator : VideoSDKRTC.Aggregator where T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +@_hasMissingDesignatedInitializers public class CustomRTCMediaStream { + @objc deinit +} public enum CustomVideoTrackConfig { case h90p_w160p, h180p_w320p, h216p_w384p, h360p_w640p, h540p_w960p, h720p_w1280p, h1080p_w1920p, h1440p_w2560p, h2160p_w3840p, h120p_w160p, h180p_w240p, h240p_w320p, h360p_w480p, h480p_w640p, h540p_w720p, h720p_w960p, h1080p_w1440p, h1440p_w1920p public static func == (a: VideoSDKRTC.CustomVideoTrackConfig, b: VideoSDKRTC.CustomVideoTrackConfig) -> Swift.Bool @@ -29,196 +758,7653 @@ public enum CustomVideoTrackConfig { get } } -@_hasMissingDesignatedInitializers public class CustomRTCMediaStream { - @objc deinit -} -extension Foundation.Data { - public func toJSONString() -> Swift.String - public func toJSON() -> [Swift.String : Any] - public func toJSONArray() -> [Any] +@_hasMissingDesignatedInitializers public class DefaultAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.DefaultAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +final public class DefaultBaggage : VideoSDKRTC.Baggage, Swift.Equatable { + public init(entries: [VideoSDKRTC.EntryKey : VideoSDKRTC.Entry?]) + public static func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder + final public func getEntries() -> [VideoSDKRTC.Entry] + final public func getEntryValue(key: VideoSDKRTC.EntryKey) -> VideoSDKRTC.EntryValue? + public static func == (lhs: VideoSDKRTC.DefaultBaggage, rhs: VideoSDKRTC.DefaultBaggage) -> Swift.Bool + @objc deinit +} +public class DefaultBaggageBuilder : VideoSDKRTC.BaggageBuilder { + public init() + @discardableResult + public func setParent(_ parent: (any VideoSDKRTC.Baggage)?) -> Self + @discardableResult + public func setNoParent() -> Self + @discardableResult + public func put(key: VideoSDKRTC.EntryKey, value: VideoSDKRTC.EntryValue, metadata: VideoSDKRTC.EntryMetadata?) -> Self + @discardableResult + public func put(key: Swift.String, value: Swift.String, metadata: Swift.String? = nil) -> Self + @discardableResult + public func remove(key: VideoSDKRTC.EntryKey) -> Self + public func build() -> any VideoSDKRTC.Baggage + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultBaggageManager : VideoSDKRTC.BaggageManager { + public static var instance: VideoSDKRTC.DefaultBaggageManager + public func baggageBuilder() -> any VideoSDKRTC.BaggageBuilder + public func getCurrentBaggage() -> (any VideoSDKRTC.Baggage)? + @objc deinit +} +public struct DefaultContextPropagators : VideoSDKRTC.ContextPropagators { + public var textMapPropagator: any VideoSDKRTC.TextMapPropagator + public var textMapBaggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator + public init() + public init(textPropagators: [any VideoSDKRTC.TextMapPropagator], baggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator) + public mutating func addTextMapPropagator(textFormat: any VideoSDKRTC.TextMapPropagator) +} +@_hasMissingDesignatedInitializers public class DefaultLogger : VideoSDKRTC.Logger { + public func eventBuilder(name: Swift.String) -> any VideoSDKRTC.EventBuilder + public func logRecordBuilder() -> any VideoSDKRTC.LogRecordBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultLoggerProvider : VideoSDKRTC.LoggerProvider { + public static let instance: any VideoSDKRTC.LoggerProvider + public func get(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.Logger + public func loggerBuilder(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.LoggerBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultMeterProvider : VideoSDKRTC.MeterProvider { + public static var instance: any VideoSDKRTC.MeterProvider + public static func setDefault(meterFactory: any VideoSDKRTC.MeterProvider) + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Meter + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultStableMeter : VideoSDKRTC.StableMeter { + public func counterBuilder(name: Swift.String) -> any VideoSDKRTC.LongCounterBuilder + public func upDownCounterBuilder(name: Swift.String) -> any VideoSDKRTC.LongUpDownCounterBuilder + public func histogramBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleHistogramBuilder + public func gaugeBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleGaugeBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultStableMeterProvider : VideoSDKRTC.StableMeterProvider { + public static func noop() -> any VideoSDKRTC.MeterBuilder + public func get(name: Swift.String) -> any VideoSDKRTC.StableMeter + public func meterBuilder(name: Swift.String) -> any VideoSDKRTC.MeterBuilder + public static var instance: any VideoSDKRTC.StableMeterProvider + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultTracer : VideoSDKRTC.Tracer { + public static var instance: VideoSDKRTC.DefaultTracer + public func spanBuilder(spanName: Swift.String) -> any VideoSDKRTC.SpanBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class DefaultTracerProvider : VideoSDKRTC.TracerProvider { + public static let instance: VideoSDKRTC.DefaultTracerProvider + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Tracer + @objc deinit +} +public struct Google_Protobuf_FileDescriptorSet { + public var file: [VideoSDKRTC.Google_Protobuf_FileDescriptorProto] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_FileDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var package: Swift.String { + get + set + } + public var hasPackage: Swift.Bool { + get + } + public mutating func clearPackage() + public var dependency: [Swift.String] + public var publicDependency: [Swift.Int32] + public var weakDependency: [Swift.Int32] + public var messageType: [VideoSDKRTC.Google_Protobuf_DescriptorProto] + public var enumType: [VideoSDKRTC.Google_Protobuf_EnumDescriptorProto] + public var service: [VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto] + public var `extension`: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_FileOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var sourceCodeInfo: VideoSDKRTC.Google_Protobuf_SourceCodeInfo { + get + set + } + public var hasSourceCodeInfo: Swift.Bool { + get + } + public mutating func clearSourceCodeInfo() + public var syntax: Swift.String { + get + set + } + public var hasSyntax: Swift.Bool { + get + } + public mutating func clearSyntax() + public var edition: Swift.String { + get + set + } + public var hasEdition: Swift.Bool { + get + } + public mutating func clearEdition() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_DescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var field: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto] + public var `extension`: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto] + public var nestedType: [VideoSDKRTC.Google_Protobuf_DescriptorProto] + public var enumType: [VideoSDKRTC.Google_Protobuf_EnumDescriptorProto] + public var extensionRange: [VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange] + public var oneofDecl: [VideoSDKRTC.Google_Protobuf_OneofDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_MessageOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var reservedRange: [VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange] + public var reservedName: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct ExtensionRange { + public var start: Swift.Int32 { + get + set + } + public var hasStart: Swift.Bool { + get + } + public mutating func clearStart() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var options: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public struct ReservedRange { + public var start: Swift.Int32 { + get + set + } + public var hasStart: Swift.Bool { + get + } + public mutating func clearStart() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_ExtensionRangeOptions : VideoSDKRTC.ExtensibleMessage { + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var declaration: [VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration] + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var verification: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState { + get + set + } + public var hasVerification: Swift.Bool { + get + } + public mutating func clearVerification() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum VerificationState : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case declaration + case unverified + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState] + public static var allCases: [VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState] { + get + } + } + public struct Declaration { + public var number: Swift.Int32 { + get + set + } + public var hasNumber: Swift.Bool { + get + } + public mutating func clearNumber() + public var fullName: Swift.String { + get + set + } + public var hasFullName: Swift.Bool { + get + } + public mutating func clearFullName() + public var type: Swift.String { + get + set + } + public var hasType: Swift.Bool { + get + } + public mutating func clearType() + public var reserved: Swift.Bool { + get + set + } + public var hasReserved: Swift.Bool { + get + } + public mutating func clearReserved() + public var repeated: Swift.Bool { + get + set + } + public var hasRepeated: Swift.Bool { + get + } + public mutating func clearRepeated() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_FieldDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var number: Swift.Int32 { + get + set + } + public var hasNumber: Swift.Bool { + get + } + public mutating func clearNumber() + public var label: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label { + get + set + } + public var hasLabel: Swift.Bool { + get + } + public mutating func clearLabel() + public var type: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum { + get + set + } + public var hasType: Swift.Bool { + get + } + public mutating func clearType() + public var typeName: Swift.String { + get + set + } + public var hasTypeName: Swift.Bool { + get + } + public mutating func clearTypeName() + public var extendee: Swift.String { + get + set + } + public var hasExtendee: Swift.Bool { + get + } + public mutating func clearExtendee() + public var defaultValue: Swift.String { + get + set + } + public var hasDefaultValue: Swift.Bool { + get + } + public mutating func clearDefaultValue() + public var oneofIndex: Swift.Int32 { + get + set + } + public var hasOneofIndex: Swift.Bool { + get + } + public mutating func clearOneofIndex() + public var jsonName: Swift.String { + get + set + } + public var hasJsonName: Swift.Bool { + get + } + public mutating func clearJsonName() + public var options: VideoSDKRTC.Google_Protobuf_FieldOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var proto3Optional: Swift.Bool { + get + set + } + public var hasProto3Optional: Swift.Bool { + get + } + public mutating func clearProto3Optional() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum TypeEnum : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case double + case float + case int64 + case uint64 + case int32 + case fixed64 + case fixed32 + case bool + case string + case group + case message + case bytes + case uint32 + case `enum` + case sfixed32 + case sfixed64 + case sint32 + case sint64 + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum] { + get + } + } + public enum Label : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case optional + case required + case repeated + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label] { + get + } + } + public init() +} +public struct Google_Protobuf_OneofDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var options: VideoSDKRTC.Google_Protobuf_OneofOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_EnumDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var value: [VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_EnumOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var reservedRange: [VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange] + public var reservedName: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct EnumReservedRange { + public var start: Swift.Int32 { + get + set + } + public var hasStart: Swift.Bool { + get + } + public mutating func clearStart() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_EnumValueDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var number: Swift.Int32 { + get + set + } + public var hasNumber: Swift.Bool { + get + } + public mutating func clearNumber() + public var options: VideoSDKRTC.Google_Protobuf_EnumValueOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_ServiceDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var method: [VideoSDKRTC.Google_Protobuf_MethodDescriptorProto] + public var options: VideoSDKRTC.Google_Protobuf_ServiceOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_MethodDescriptorProto { + public var name: Swift.String { + get + set + } + public var hasName: Swift.Bool { + get + } + public mutating func clearName() + public var inputType: Swift.String { + get + set + } + public var hasInputType: Swift.Bool { + get + } + public mutating func clearInputType() + public var outputType: Swift.String { + get + set + } + public var hasOutputType: Swift.Bool { + get + } + public mutating func clearOutputType() + public var options: VideoSDKRTC.Google_Protobuf_MethodOptions { + get + set + } + public var hasOptions: Swift.Bool { + get + } + public mutating func clearOptions() + public var clientStreaming: Swift.Bool { + get + set + } + public var hasClientStreaming: Swift.Bool { + get + } + public mutating func clearClientStreaming() + public var serverStreaming: Swift.Bool { + get + set + } + public var hasServerStreaming: Swift.Bool { + get + } + public mutating func clearServerStreaming() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_FileOptions : VideoSDKRTC.ExtensibleMessage { + public var javaPackage: Swift.String { + get + set + } + public var hasJavaPackage: Swift.Bool { + get + } + public mutating func clearJavaPackage() + public var javaOuterClassname: Swift.String { + get + set + } + public var hasJavaOuterClassname: Swift.Bool { + get + } + public mutating func clearJavaOuterClassname() + public var javaMultipleFiles: Swift.Bool { + get + set + } + public var hasJavaMultipleFiles: Swift.Bool { + get + } + public mutating func clearJavaMultipleFiles() + public var javaGenerateEqualsAndHash: Swift.Bool { + get + set + } + public var hasJavaGenerateEqualsAndHash: Swift.Bool { + get + } + public mutating func clearJavaGenerateEqualsAndHash() + public var javaStringCheckUtf8: Swift.Bool { + get + set + } + public var hasJavaStringCheckUtf8: Swift.Bool { + get + } + public mutating func clearJavaStringCheckUtf8() + public var optimizeFor: VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode { + get + set + } + public var hasOptimizeFor: Swift.Bool { + get + } + public mutating func clearOptimizeFor() + public var goPackage: Swift.String { + get + set + } + public var hasGoPackage: Swift.Bool { + get + } + public mutating func clearGoPackage() + public var ccGenericServices: Swift.Bool { + get + set + } + public var hasCcGenericServices: Swift.Bool { + get + } + public mutating func clearCcGenericServices() + public var javaGenericServices: Swift.Bool { + get + set + } + public var hasJavaGenericServices: Swift.Bool { + get + } + public mutating func clearJavaGenericServices() + public var pyGenericServices: Swift.Bool { + get + set + } + public var hasPyGenericServices: Swift.Bool { + get + } + public mutating func clearPyGenericServices() + public var phpGenericServices: Swift.Bool { + get + set + } + public var hasPhpGenericServices: Swift.Bool { + get + } + public mutating func clearPhpGenericServices() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var ccEnableArenas: Swift.Bool { + get + set + } + public var hasCcEnableArenas: Swift.Bool { + get + } + public mutating func clearCcEnableArenas() + public var objcClassPrefix: Swift.String { + get + set + } + public var hasObjcClassPrefix: Swift.Bool { + get + } + public mutating func clearObjcClassPrefix() + public var csharpNamespace: Swift.String { + get + set + } + public var hasCsharpNamespace: Swift.Bool { + get + } + public mutating func clearCsharpNamespace() + public var swiftPrefix: Swift.String { + get + set + } + public var hasSwiftPrefix: Swift.Bool { + get + } + public mutating func clearSwiftPrefix() + public var phpClassPrefix: Swift.String { + get + set + } + public var hasPhpClassPrefix: Swift.Bool { + get + } + public mutating func clearPhpClassPrefix() + public var phpNamespace: Swift.String { + get + set + } + public var hasPhpNamespace: Swift.Bool { + get + } + public mutating func clearPhpNamespace() + public var phpMetadataNamespace: Swift.String { + get + set + } + public var hasPhpMetadataNamespace: Swift.Bool { + get + } + public mutating func clearPhpMetadataNamespace() + public var rubyPackage: Swift.String { + get + set + } + public var hasRubyPackage: Swift.Bool { + get + } + public mutating func clearRubyPackage() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OptimizeMode : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case speed + case codeSize + case liteRuntime + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode] { + get + } + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_MessageOptions : VideoSDKRTC.ExtensibleMessage { + public var messageSetWireFormat: Swift.Bool { + get + set + } + public var hasMessageSetWireFormat: Swift.Bool { + get + } + public mutating func clearMessageSetWireFormat() + public var noStandardDescriptorAccessor: Swift.Bool { + get + set + } + public var hasNoStandardDescriptorAccessor: Swift.Bool { + get + } + public mutating func clearNoStandardDescriptorAccessor() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var mapEntry: Swift.Bool { + get + set + } + public var hasMapEntry: Swift.Bool { + get + } + public mutating func clearMapEntry() + public var deprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + set + } + public var hasDeprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + } + public mutating func clearDeprecatedLegacyJsonFieldConflicts() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_FieldOptions : VideoSDKRTC.ExtensibleMessage { + public var ctype: VideoSDKRTC.Google_Protobuf_FieldOptions.CType { + get + set + } + public var hasCtype: Swift.Bool { + get + } + public mutating func clearCtype() + public var packed: Swift.Bool { + get + set + } + public var hasPacked: Swift.Bool { + get + } + public mutating func clearPacked() + public var jstype: VideoSDKRTC.Google_Protobuf_FieldOptions.JSType { + get + set + } + public var hasJstype: Swift.Bool { + get + } + public mutating func clearJstype() + public var lazy: Swift.Bool { + get + set + } + public var hasLazy: Swift.Bool { + get + } + public mutating func clearLazy() + public var unverifiedLazy: Swift.Bool { + get + set + } + public var hasUnverifiedLazy: Swift.Bool { + get + } + public mutating func clearUnverifiedLazy() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var weak: Swift.Bool { + get + set + } + public var hasWeak: Swift.Bool { + get + } + public mutating func clearWeak() + public var debugRedact: Swift.Bool { + get + set + } + public var hasDebugRedact: Swift.Bool { + get + } + public mutating func clearDebugRedact() + public var retention: VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention { + get + set + } + public var hasRetention: Swift.Bool { + get + } + public mutating func clearRetention() + public var targets: [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType] + public var editionDefaults: [VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault] + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum CType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case string + case cord + case stringPiece + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.CType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.CType] { + get + } + } + public enum JSType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case jsNormal + case jsString + case jsNumber + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.JSType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.JSType] { + get + } + } + public enum OptionRetention : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case retentionUnknown + case retentionRuntime + case retentionSource + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention] { + get + } + } + public enum OptionTargetType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case targetTypeUnknown + case targetTypeFile + case targetTypeExtensionRange + case targetTypeMessage + case targetTypeField + case targetTypeOneof + case targetTypeEnum + case targetTypeEnumEntry + case targetTypeService + case targetTypeMethod + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType] { + get + } + } + public struct EditionDefault { + public var edition: Swift.String { + get + set + } + public var hasEdition: Swift.Bool { + get + } + public mutating func clearEdition() + public var value: Swift.String { + get + set + } + public var hasValue: Swift.Bool { + get + } + public mutating func clearValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_OneofOptions : VideoSDKRTC.ExtensibleMessage { + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_EnumOptions : VideoSDKRTC.ExtensibleMessage { + public var allowAlias: Swift.Bool { + get + set + } + public var hasAllowAlias: Swift.Bool { + get + } + public mutating func clearAllowAlias() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var deprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + set + } + public var hasDeprecatedLegacyJsonFieldConflicts: Swift.Bool { + get + } + public mutating func clearDeprecatedLegacyJsonFieldConflicts() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_EnumValueOptions : VideoSDKRTC.ExtensibleMessage { + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var debugRedact: Swift.Bool { + get + set + } + public var hasDebugRedact: Swift.Bool { + get + } + public mutating func clearDebugRedact() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_ServiceOptions : VideoSDKRTC.ExtensibleMessage { + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_MethodOptions : VideoSDKRTC.ExtensibleMessage { + public var deprecated: Swift.Bool { + get + set + } + public var hasDeprecated: Swift.Bool { + get + } + public mutating func clearDeprecated() + public var idempotencyLevel: VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel { + get + set + } + public var hasIdempotencyLevel: Swift.Bool { + get + } + public mutating func clearIdempotencyLevel() + public var features: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasFeatures: Swift.Bool { + get + } + public mutating func clearFeatures() + public var uninterpretedOption: [VideoSDKRTC.Google_Protobuf_UninterpretedOption] + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum IdempotencyLevel : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case idempotencyUnknown + case noSideEffects + case idempotent + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel] + public static var allCases: [VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel] { + get + } + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_UninterpretedOption { + public var name: [VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart] + public var identifierValue: Swift.String { + get + set + } + public var hasIdentifierValue: Swift.Bool { + get + } + public mutating func clearIdentifierValue() + public var positiveIntValue: Swift.UInt64 { + get + set + } + public var hasPositiveIntValue: Swift.Bool { + get + } + public mutating func clearPositiveIntValue() + public var negativeIntValue: Swift.Int64 { + get + set + } + public var hasNegativeIntValue: Swift.Bool { + get + } + public mutating func clearNegativeIntValue() + public var doubleValue: Swift.Double { + get + set + } + public var hasDoubleValue: Swift.Bool { + get + } + public mutating func clearDoubleValue() + public var stringValue: Foundation.Data { + get + set + } + public var hasStringValue: Swift.Bool { + get + } + public mutating func clearStringValue() + public var aggregateValue: Swift.String { + get + set + } + public var hasAggregateValue: Swift.Bool { + get + } + public mutating func clearAggregateValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct NamePart { + public var namePart: Swift.String { + get + set + } + public var hasNamePart: Swift.Bool { + get + } + public mutating func clearNamePart() + public var isExtension: Swift.Bool { + get + set + } + public var hasIsExtension: Swift.Bool { + get + } + public mutating func clearIsExtension() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_FeatureSet : VideoSDKRTC.ExtensibleMessage { + public var fieldPresence: VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence { + get + set + } + public var hasFieldPresence: Swift.Bool { + get + } + public mutating func clearFieldPresence() + public var enumType: VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType { + get + set + } + public var hasEnumType: Swift.Bool { + get + } + public mutating func clearEnumType() + public var repeatedFieldEncoding: VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding { + get + set + } + public var hasRepeatedFieldEncoding: Swift.Bool { + get + } + public mutating func clearRepeatedFieldEncoding() + public var stringFieldValidation: VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation { + get + set + } + public var hasStringFieldValidation: Swift.Bool { + get + } + public mutating func clearStringFieldValidation() + public var messageEncoding: VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding { + get + set + } + public var hasMessageEncoding: Swift.Bool { + get + } + public mutating func clearMessageEncoding() + public var jsonFormat: VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat { + get + set + } + public var hasJsonFormat: Swift.Bool { + get + } + public mutating func clearJsonFormat() + public var rawFeatures: VideoSDKRTC.Google_Protobuf_FeatureSet { + get + set + } + public var hasRawFeatures: Swift.Bool { + get + } + public mutating func clearRawFeatures() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum FieldPresence : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case explicit + case implicit + case legacyRequired + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence] { + get + } + } + public enum EnumType : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case open + case closed + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType] { + get + } + } + public enum RepeatedFieldEncoding : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case packed + case expanded + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding] { + get + } + } + public enum StringFieldValidation : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case mandatory + case hint + case none + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation] { + get + } + } + public enum MessageEncoding : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case lengthPrefixed + case delimited + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding] { + get + } + } + public enum JsonFormat : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case allow + case legacyBestEffort + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat] + public static var allCases: [VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat] { + get + } + } + public init() + public var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet +} +public struct Google_Protobuf_SourceCodeInfo { + public var location: [VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct Location { + public var path: [Swift.Int32] + public var span: [Swift.Int32] + public var leadingComments: Swift.String { + get + set + } + public var hasLeadingComments: Swift.Bool { + get + } + public mutating func clearLeadingComments() + public var trailingComments: Swift.String { + get + set + } + public var hasTrailingComments: Swift.Bool { + get + } + public mutating func clearTrailingComments() + public var leadingDetachedComments: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Google_Protobuf_GeneratedCodeInfo { + public var annotation: [VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation] + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct Annotation { + public var path: [Swift.Int32] + public var sourceFile: Swift.String { + get + set + } + public var hasSourceFile: Swift.Bool { + get + } + public mutating func clearSourceFile() + public var begin: Swift.Int32 { + get + set + } + public var hasBegin: Swift.Bool { + get + } + public mutating func clearBegin() + public var end: Swift.Int32 { + get + set + } + public var hasEnd: Swift.Bool { + get + } + public mutating func clearEnd() + public var semantic: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic { + get + set + } + public var hasSemantic: Swift.Bool { + get + } + public mutating func clearSemantic() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum Semantic : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case none + case set + case alias + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic] + public static var allCases: [VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic] { + get + } + } + public init() + } + public init() +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorSet : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_OneofDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_MethodDescriptorProto : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FileOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_MessageOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_OneofOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumValueOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ServiceOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_MethodOptions : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorSet : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FileDescriptorSet, rhs: VideoSDKRTC.Google_Protobuf_FileDescriptorSet) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FileDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FileDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_FileDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_DescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange, rhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ExtensionRange) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange, rhs: VideoSDKRTC.Google_Protobuf_DescriptorProto.ReservedRange) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions, rhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.VerificationState : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration, rhs: VideoSDKRTC.Google_Protobuf_ExtensionRangeOptions.Declaration) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_FieldDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.TypeEnum : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldDescriptorProto.Label : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_OneofDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_OneofDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_OneofDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange, rhs: VideoSDKRTC.Google_Protobuf_EnumDescriptorProto.EnumReservedRange) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_EnumValueDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_ServiceDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_MethodDescriptorProto : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_MethodDescriptorProto, rhs: VideoSDKRTC.Google_Protobuf_MethodDescriptorProto) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FileOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FileOptions, rhs: VideoSDKRTC.Google_Protobuf_FileOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FileOptions.OptimizeMode : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_MessageOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_MessageOptions, rhs: VideoSDKRTC.Google_Protobuf_MessageOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldOptions, rhs: VideoSDKRTC.Google_Protobuf_FieldOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.CType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.JSType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.OptionRetention : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.OptionTargetType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault, rhs: VideoSDKRTC.Google_Protobuf_FieldOptions.EditionDefault) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_OneofOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_OneofOptions, rhs: VideoSDKRTC.Google_Protobuf_OneofOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumOptions, rhs: VideoSDKRTC.Google_Protobuf_EnumOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_EnumValueOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumValueOptions, rhs: VideoSDKRTC.Google_Protobuf_EnumValueOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ServiceOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ServiceOptions, rhs: VideoSDKRTC.Google_Protobuf_ServiceOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_MethodOptions : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_MethodOptions, rhs: VideoSDKRTC.Google_Protobuf_MethodOptions) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_MethodOptions.IdempotencyLevel : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption, rhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart, rhs: VideoSDKRTC.Google_Protobuf_UninterpretedOption.NamePart) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public var isInitialized: Swift.Bool { + get + } + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FeatureSet, rhs: VideoSDKRTC.Google_Protobuf_FeatureSet) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.FieldPresence : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.EnumType : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.RepeatedFieldEncoding : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.StringFieldValidation : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.MessageEncoding : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_FeatureSet.JsonFormat : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo, rhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location, rhs: VideoSDKRTC.Google_Protobuf_SourceCodeInfo.Location) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo, rhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation, rhs: VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +public protocol DoubleCounter { + mutating func add(value: Swift.Double) + mutating func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol DoubleCounterBuilder : AnyObject { + func build() -> any VideoSDKRTC.DoubleCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleCounter +} +@_hasMissingDesignatedInitializers public class DoubleCounterMeterBuilderSdk : VideoSDKRTC.DoubleCounterBuilder { + public func build() -> any VideoSDKRTC.DoubleCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleCounter + @objc deinit +} +public enum HistogramAggregatorError : Swift.Error { + case unsupportedOperation(Swift.String) +} +public class DoubleExplicitBucketHistogramAggregator : VideoSDKRTC.StableAggregator { + public init(boundaries: [Swift.Double], reservoirSupplier: @escaping () -> VideoSDKRTC.ExemplarReservoir) + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol DoubleGaugeBuilder : AnyObject { + func ofLongs() -> any VideoSDKRTC.LongGaugeBuilder + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleGauge +} +@_hasMissingDesignatedInitializers public class DoubleGaugeBuilderSdk : VideoSDKRTC.DoubleGaugeBuilder { + public func ofLongs() -> any VideoSDKRTC.LongGaugeBuilder + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleGauge + @objc deinit +} +public protocol DoubleHistogram { + mutating func record(value: Swift.Double) + mutating func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol DoubleHistogramBuilder : AnyObject { + func ofLongs() -> any VideoSDKRTC.LongHistogramBuilder + func build() -> any VideoSDKRTC.DoubleHistogram +} +@_hasMissingDesignatedInitializers public class DoubleHistogramMeterBuilderSdk : VideoSDKRTC.DoubleHistogramBuilder { + public func ofLongs() -> any VideoSDKRTC.LongHistogramBuilder + public func build() -> any VideoSDKRTC.DoubleHistogram + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleHistogramMeterSdk : VideoSDKRTC.DoubleHistogram, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public var storage: any VideoSDKRTC.WritableMetricStorage + public func record(value: Swift.Double) + public func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleLastValueAggregator : VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol DoubleObserverMetric { + func observe(value: Swift.Double, labelset: VideoSDKRTC.LabelSet) + func observe(value: Swift.Double, labels: [Swift.String : Swift.String]) +} +public struct NoopDoubleObserverMetric : VideoSDKRTC.DoubleObserverMetric { + public init() + public func observe(value: Swift.Double, labelset: VideoSDKRTC.LabelSet) + public func observe(value: Swift.Double, labels: [Swift.String : Swift.String]) +} +@_hasMissingDesignatedInitializers public class DoublePointData : VideoSDKRTC.PointData { + public var value: Swift.Double + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleSumAggregator : VideoSDKRTC.SumAggregator, VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol DoubleUpDownCounter { + mutating func add(value: Swift.Double) + mutating func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol DoubleUpDownCounterBuilder : AnyObject { + func build() -> any VideoSDKRTC.DoubleUpDownCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleUpDownCounter +} +@_hasMissingDesignatedInitializers public class DoubleUpDownCounterBuilderSdk : VideoSDKRTC.DoubleUpDownCounterBuilder { + public func build() -> any VideoSDKRTC.DoubleUpDownCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableDoubleMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableDoubleUpDownCounter + @objc deinit +} +@_hasMissingDesignatedInitializers public class DoubleUpDownCounterSdk : VideoSDKRTC.DoubleUpDownCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor { + get + } + public func add(value: Swift.Double) + public func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_hasMissingDesignatedInitializers public class DropAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.DropAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +@_hasMissingDesignatedInitializers public class DropAggregator : VideoSDKRTC.StableAggregator { + public static var POINT_DATA: VideoSDKRTC.PointData { + get + } + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) -> VideoSDKRTC.PointData + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public struct Google_Protobuf_Duration { + public var seconds: Swift.Int64 + public var nanos: Swift.Int32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Duration : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Duration : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Google_Protobuf_Empty { + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Empty : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Empty : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Empty, rhs: VideoSDKRTC.Google_Protobuf_Empty) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class EmptyMetricStorage { + public func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public static var instance: VideoSDKRTC.EmptyMetricStorage + public var metricDescriptor: VideoSDKRTC.MetricDescriptor + public func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + public func isEmpty() -> Swift.Bool + @objc deinit +} +public struct Entry : Swift.Equatable, Swift.Comparable { + public var key: VideoSDKRTC.EntryKey { + get + } + public var value: VideoSDKRTC.EntryValue { + get + } + public var metadata: VideoSDKRTC.EntryMetadata? { + get + } + public init(key: VideoSDKRTC.EntryKey, value: VideoSDKRTC.EntryValue, metadata: VideoSDKRTC.EntryMetadata?) + public static func < (lhs: VideoSDKRTC.Entry, rhs: VideoSDKRTC.Entry) -> Swift.Bool + public static func == (a: VideoSDKRTC.Entry, b: VideoSDKRTC.Entry) -> Swift.Bool +} +public struct EntryKey : Swift.Equatable, Swift.Comparable, Swift.Hashable { + public var name: Swift.String { + get + } + public init?(name: Swift.String) + public static func < (lhs: VideoSDKRTC.EntryKey, rhs: VideoSDKRTC.EntryKey) -> Swift.Bool + public static func == (a: VideoSDKRTC.EntryKey, b: VideoSDKRTC.EntryKey) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct EntryMetadata : Swift.Equatable { + public var metadata: Swift.String + public init?(metadata: Swift.String?) + public static func == (a: VideoSDKRTC.EntryMetadata, b: VideoSDKRTC.EntryMetadata) -> Swift.Bool +} +public struct EntryValue : Swift.Equatable { + public var string: Swift.String { + get + } + public init?(string: Swift.String) + public static func == (a: VideoSDKRTC.EntryValue, b: VideoSDKRTC.EntryValue) -> Swift.Bool +} +public protocol Enum : Swift.CaseIterable, Swift.Hashable, Swift.RawRepresentable, Swift.Sendable { + init() + init?(rawValue: Swift.Int) + var rawValue: Swift.Int { get } +} +extension VideoSDKRTC.Enum { + public func hash(into hasher: inout Swift.Hasher) +} +public struct EnvironmentContextPropagator : VideoSDKRTC.TextMapPropagator { + public let fields: Swift.Set + public init() + public func inject(spanContext: VideoSDKRTC.SpanContext, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + public func extract(carrier: [Swift.String : Swift.String], getter: G) -> VideoSDKRTC.SpanContext? where G : VideoSDKRTC.Getter +} +public struct EnvVarHeaders { + public static let attributes: [(Swift.String, Swift.String)]? + public static func attributes(for rawEnvAttributes: Swift.String? = ProcessInfo.processInfo.environment["OTEL_EXPORTER_OTLP_HEADERS"]) -> [(Swift.String, Swift.String)]? +} +public struct EnvVarResource { + public static let resource: VideoSDKRTC.Resource + public static func get(environment: [Swift.String : Swift.String] = ProcessInfo.processInfo.environment) -> VideoSDKRTC.Resource +} +public protocol EventBuilder : VideoSDKRTC.LogRecordBuilder { + func setData(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self +} +@_hasMissingDesignatedInitializers public class ExemplarData : Swift.Equatable { + public var filteredAttributes: [Swift.String : VideoSDKRTC.AttributeValue] + public var epochNanos: Swift.UInt64 + public var spanContext: VideoSDKRTC.SpanContext? + public static func == (lhs: VideoSDKRTC.ExemplarData, rhs: VideoSDKRTC.ExemplarData) -> Swift.Bool + @objc deinit +} +@_hasMissingDesignatedInitializers final public class DoubleExemplarData : VideoSDKRTC.ExemplarData { + final public var value: Swift.Double + @objc deinit +} +@_hasMissingDesignatedInitializers final public class LongExemplarData : VideoSDKRTC.ExemplarData { + final public var value: Swift.Int + @objc deinit +} +public protocol ExemplarFilter { + func shouldSampleMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool + func shouldSampleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool +} +public struct AlwaysOnFilter : VideoSDKRTC.ExemplarFilter { + public func shouldSampleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool + public func shouldSampleMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool +} +public struct AlwaysOffFilter : VideoSDKRTC.ExemplarFilter { + public init() + public func shouldSampleMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool + public func shouldSampleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class ExemplarReservoir { + public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class NoopExemplarReservoir : VideoSDKRTC.ExemplarReservoir { + override public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + @objc deinit +} +public enum ExemplarReservoirCollection { +} +@_hasMissingDesignatedInitializers public class FixedSizedExemplarReservoir : VideoSDKRTC.ExemplarReservoir { + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + @objc deinit +} +@_hasMissingDesignatedInitializers public class RandomFixedSizedExemplarReservoir : VideoSDKRTC.FixedSizedExemplarReservoir { + @objc deinit +} +@_hasMissingDesignatedInitializers public class ExplicitBucketHistogramAggregation : VideoSDKRTC.Aggregation { + public static var DEFAULT_BOUNDARIES: [Swift.Double] { + get + } + public static var instance: VideoSDKRTC.ExplicitBucketHistogramAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +public protocol ExponentialHistogramBuckets { + var scale: Swift.Int { get } + var offset: Swift.Int { get } + var bucketCounts: [Swift.Int] { get } + var totalCount: Swift.Int { get } +} +public enum ExportResult { + case success + case failure + public static func == (a: VideoSDKRTC.ExportResult, b: VideoSDKRTC.ExportResult) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public protocol ExtensibleMessage : VideoSDKRTC.Message { + var _protobuf_extensionFieldValues: VideoSDKRTC.ExtensionFieldValueSet { get set } +} +extension VideoSDKRTC.ExtensibleMessage { + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, value: F.ValueType) where F : VideoSDKRTC.ExtensionField + public func getExtensionValue(ext: VideoSDKRTC.MessageExtension) -> F.ValueType? where F : VideoSDKRTC.ExtensionField + public func hasExtensionValue(ext: VideoSDKRTC.MessageExtension) -> Swift.Bool where F : VideoSDKRTC.ExtensionField + public mutating func clearExtensionValue(ext: VideoSDKRTC.MessageExtension) where F : VideoSDKRTC.ExtensionField +} +extension VideoSDKRTC.ExtensibleMessage { + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [T.BaseType]) where T : VideoSDKRTC.FieldType + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [T.BaseType]) where T : VideoSDKRTC.FieldType + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [E]) where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [E]) where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [M]) where M : Swift.Equatable, M : VideoSDKRTC.Message + public mutating func setExtensionValue(ext: VideoSDKRTC.MessageExtension, Self>, value: [M]) where M : Swift.Hashable, M : VideoSDKRTC.Message +} +public protocol AnyExtensionField { + func hash(into hasher: inout Swift.Hasher) + var protobufExtension: any VideoSDKRTC.AnyMessageExtension { get } + func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + mutating func decodeExtensionField(decoder: inout T) throws where T : VideoSDKRTC.SPBDecoder + func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + var isInitialized: Swift.Bool { get } +} +extension VideoSDKRTC.AnyExtensionField { + public var isInitialized: Swift.Bool { + get + } +} +public protocol ExtensionField : Swift.Hashable, VideoSDKRTC.AnyExtensionField { + associatedtype ValueType + var value: Self.ValueType { get set } + init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: Self.ValueType) + init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder +} +public struct OptionalExtensionField : VideoSDKRTC.ExtensionField where T : VideoSDKRTC.FieldType { + public typealias BaseType = T.BaseType + public typealias ValueType = VideoSDKRTC.OptionalExtensionField.BaseType + public var value: VideoSDKRTC.OptionalExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalExtensionField, rhs: VideoSDKRTC.OptionalExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedExtensionField : VideoSDKRTC.ExtensionField where T : VideoSDKRTC.FieldType { + public typealias BaseType = T.BaseType + public typealias ValueType = [VideoSDKRTC.RepeatedExtensionField.BaseType] + public var value: VideoSDKRTC.RepeatedExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedExtensionField, rhs: VideoSDKRTC.RepeatedExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct PackedExtensionField : VideoSDKRTC.ExtensionField where T : VideoSDKRTC.FieldType { + public typealias BaseType = T.BaseType + public typealias ValueType = [VideoSDKRTC.PackedExtensionField.BaseType] + public var value: VideoSDKRTC.PackedExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.PackedExtensionField, rhs: VideoSDKRTC.PackedExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.PackedExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct OptionalEnumExtensionField : VideoSDKRTC.ExtensionField where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int { + public typealias BaseType = E + public typealias ValueType = E + public var value: VideoSDKRTC.OptionalEnumExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalEnumExtensionField, rhs: VideoSDKRTC.OptionalEnumExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalEnumExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedEnumExtensionField : VideoSDKRTC.ExtensionField where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int { + public typealias BaseType = E + public typealias ValueType = [E] + public var value: VideoSDKRTC.RepeatedEnumExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedEnumExtensionField, rhs: VideoSDKRTC.RepeatedEnumExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedEnumExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct PackedEnumExtensionField : VideoSDKRTC.ExtensionField where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int { + public typealias BaseType = E + public typealias ValueType = [E] + public var value: VideoSDKRTC.PackedEnumExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.PackedEnumExtensionField, rhs: VideoSDKRTC.PackedEnumExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.PackedEnumExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var hashValue: Swift.Int { + get + } +} +public struct OptionalMessageExtensionField : VideoSDKRTC.ExtensionField where M : Swift.Equatable, M : VideoSDKRTC.Message { + public typealias BaseType = M + public typealias ValueType = VideoSDKRTC.OptionalMessageExtensionField.BaseType + public var value: VideoSDKRTC.OptionalMessageExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalMessageExtensionField, rhs: VideoSDKRTC.OptionalMessageExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalMessageExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedMessageExtensionField : VideoSDKRTC.ExtensionField where M : Swift.Equatable, M : VideoSDKRTC.Message { + public typealias BaseType = M + public typealias ValueType = [VideoSDKRTC.RepeatedMessageExtensionField.BaseType] + public var value: VideoSDKRTC.RepeatedMessageExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedMessageExtensionField, rhs: VideoSDKRTC.RepeatedMessageExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedMessageExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct OptionalGroupExtensionField : VideoSDKRTC.ExtensionField where G : Swift.Hashable, G : VideoSDKRTC.Message { + public typealias BaseType = G + public typealias ValueType = VideoSDKRTC.OptionalGroupExtensionField.BaseType + public var value: G + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.OptionalGroupExtensionField, rhs: VideoSDKRTC.OptionalGroupExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.OptionalGroupExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct RepeatedGroupExtensionField : VideoSDKRTC.ExtensionField where G : Swift.Hashable, G : VideoSDKRTC.Message { + public typealias BaseType = G + public typealias ValueType = [VideoSDKRTC.RepeatedGroupExtensionField.BaseType] + public var value: VideoSDKRTC.RepeatedGroupExtensionField.ValueType + public var protobufExtension: any VideoSDKRTC.AnyMessageExtension + public static func == (lhs: VideoSDKRTC.RepeatedGroupExtensionField, rhs: VideoSDKRTC.RepeatedGroupExtensionField) -> Swift.Bool + public init(protobufExtension: any VideoSDKRTC.AnyMessageExtension, value: VideoSDKRTC.RepeatedGroupExtensionField.ValueType) + public func hash(into hasher: inout Swift.Hasher) + public func isEqual(other: any VideoSDKRTC.AnyExtensionField) -> Swift.Bool + public mutating func decodeExtensionField(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public init?(protobufExtension: any VideoSDKRTC.AnyMessageExtension, decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public struct ExtensionFieldValueSet : Swift.Hashable { + public static func == (lhs: VideoSDKRTC.ExtensionFieldValueSet, rhs: VideoSDKRTC.ExtensionFieldValueSet) -> Swift.Bool + public init() + public func hash(into hasher: inout Swift.Hasher) + public func traverse(visitor: inout V, start: Swift.Int, end: Swift.Int) throws where V : VideoSDKRTC.Visitor + public subscript(index: Swift.Int) -> (any VideoSDKRTC.AnyExtensionField)? { + get + set + } + public var isInitialized: Swift.Bool { + get + } + public var hashValue: Swift.Int { + get + } +} +public protocol ExtensionMap : Swift.Sendable { + subscript(messageType: any VideoSDKRTC.Message.Type, fieldNumber: Swift.Int) -> (any VideoSDKRTC.AnyMessageExtension)? { get } + func fieldNumberForProto(messageType: any VideoSDKRTC.Message.Type, protoFieldName: Swift.String) -> Swift.Int? +} +public struct Google_Protobuf_FieldMask { + public var paths: [Swift.String] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_FieldMask : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FieldMask : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FieldMask, rhs: VideoSDKRTC.Google_Protobuf_FieldMask) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol FieldType { + associatedtype BaseType : Swift.Hashable + static var proto3DefaultValue: Self.BaseType { get } + static func decodeSingular(value: inout Self.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + static func decodeRepeated(value: inout [Self.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + static func visitSingular(value: Self.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + static func visitRepeated(value: [Self.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + static func visitPacked(value: [Self.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public protocol MapKeyType : VideoSDKRTC.FieldType { + static func _lessThan(lhs: Self.BaseType, rhs: Self.BaseType) -> Swift.Bool +} +extension VideoSDKRTC.MapKeyType where Self.BaseType : Swift.Comparable { + public static func _lessThan(lhs: Self.BaseType, rhs: Self.BaseType) -> Swift.Bool +} +public protocol MapValueType : VideoSDKRTC.FieldType { +} +public struct ProtobufFloat : VideoSDKRTC.FieldType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Float + public static var proto3DefaultValue: Swift.Float { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufFloat.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufFloat.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufFloat.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufFloat.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufFloat.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufDouble : VideoSDKRTC.FieldType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Double + public static var proto3DefaultValue: Swift.Double { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufDouble.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufDouble.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufDouble.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufDouble.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufDouble.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufInt32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int32 + public static var proto3DefaultValue: Swift.Int32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufInt32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufInt32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufInt32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufInt64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int64 + public static var proto3DefaultValue: Swift.Int64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufInt64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufInt64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufInt64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufUInt32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt32 + public static var proto3DefaultValue: Swift.UInt32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufUInt32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufUInt32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufUInt32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufUInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufUInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufUInt64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt64 + public static var proto3DefaultValue: Swift.UInt64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufUInt64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufUInt64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufUInt64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufUInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufUInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSInt32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int32 + public static var proto3DefaultValue: Swift.Int32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSInt32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSInt32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSInt32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSInt64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int64 + public static var proto3DefaultValue: Swift.Int64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSInt64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSInt64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSInt64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufFixed32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt32 + public static var proto3DefaultValue: Swift.UInt32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufFixed32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufFixed32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufFixed32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufFixed64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.UInt64 + public static var proto3DefaultValue: Swift.UInt64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufFixed64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufFixed64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufFixed64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSFixed32 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int32 + public static var proto3DefaultValue: Swift.Int32 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSFixed32.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSFixed32.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSFixed32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufSFixed64 : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Int64 + public static var proto3DefaultValue: Swift.Int64 { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufSFixed64.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufSFixed64.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufSFixed64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufSFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufSFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufBool : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.Bool + public static var proto3DefaultValue: Swift.Bool { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufBool.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufBool.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufBool.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufBool.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufBool.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func _lessThan(lhs: VideoSDKRTC.ProtobufBool.BaseType, rhs: VideoSDKRTC.ProtobufBool.BaseType) -> Swift.Bool +} +public struct ProtobufString : VideoSDKRTC.FieldType, VideoSDKRTC.MapKeyType, VideoSDKRTC.MapValueType { + public typealias BaseType = Swift.String + public static var proto3DefaultValue: Swift.String { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufString.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufString.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufString.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufString.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufString.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +public struct ProtobufBytes : VideoSDKRTC.FieldType, VideoSDKRTC.MapValueType { + public typealias BaseType = Foundation.Data + public static var proto3DefaultValue: Foundation.Data { + get + } + public static func decodeSingular(value: inout VideoSDKRTC.ProtobufBytes.BaseType?, from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func decodeRepeated(value: inout [VideoSDKRTC.ProtobufBytes.BaseType], from decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public static func visitSingular(value: VideoSDKRTC.ProtobufBytes.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitRepeated(value: [VideoSDKRTC.ProtobufBytes.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func visitPacked(value: [VideoSDKRTC.ProtobufBytes.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : VideoSDKRTC.Visitor +} +@_hasMissingDesignatedInitializers public class FilteredExemplarReservoir : VideoSDKRTC.ExemplarReservoir { + override public func offerDoubleMeasurement(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + override public func collectAndReset(attribute: [Swift.String : VideoSDKRTC.AttributeValue]) -> [VideoSDKRTC.ExemplarData] + @objc deinit +} +public let defaultAnyTypeURLPrefix: Swift.String +extension VideoSDKRTC.Google_Protobuf_Any { + public init(message: any VideoSDKRTC.Message, partial: Swift.Bool = false, typePrefix: Swift.String = defaultAnyTypeURLPrefix) throws + public init(textFormatString: Swift.String, options: VideoSDKRTC.TextFormatDecodingOptions = TextFormatDecodingOptions(), extensions: (any VideoSDKRTC.ExtensionMap)? = nil) throws + public func isA(_ type: M.Type) -> Swift.Bool where M : VideoSDKRTC.Message + public func hash(into hasher: inout Swift.Hasher) +} +extension VideoSDKRTC.Google_Protobuf_Any { + @discardableResult + public static func register(messageType: any VideoSDKRTC.Message.Type) -> Swift.Bool + public static func messageType(forTypeURL url: Swift.String) -> (any VideoSDKRTC.Message.Type)? + public static func messageType(forMessageName name: Swift.String) -> (any VideoSDKRTC.Message.Type)? +} +extension VideoSDKRTC.Google_Protobuf_Duration { + public init(seconds: Swift.Int64 = 0, nanos: Swift.Int32 = 0) +} +extension VideoSDKRTC.Google_Protobuf_Duration : Swift.ExpressibleByFloatLiteral { + public typealias FloatLiteralType = Swift.Double + public init(floatLiteral value: Swift.Double) +} +extension VideoSDKRTC.Google_Protobuf_Duration { + public init(timeInterval: Foundation.TimeInterval) + public var timeInterval: Foundation.TimeInterval { + get + } +} +prefix public func - (operand: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Duration +public func + (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Duration +public func - (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Duration +public func - (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Timestamp) -> VideoSDKRTC.Google_Protobuf_Duration +extension VideoSDKRTC.Google_Protobuf_FieldMask { + public init(protoPaths: [Swift.String]) + public init(protoPaths: Swift.String...) + public init?(jsonPaths: Swift.String...) +} +extension VideoSDKRTC.Google_Protobuf_ListValue : Swift.ExpressibleByArrayLiteral { + public typealias Element = VideoSDKRTC.Google_Protobuf_Value + public init(arrayLiteral elements: VideoSDKRTC.Google_Protobuf_ListValue.Element...) + public typealias ArrayLiteralElement = VideoSDKRTC.Google_Protobuf_ListValue.Element +} +extension VideoSDKRTC.Google_Protobuf_ListValue { + public init(values: [VideoSDKRTC.Google_Protobuf_Value]) + public subscript(index: Swift.Int) -> VideoSDKRTC.Google_Protobuf_Value { + get + set(newValue) + } +} +extension VideoSDKRTC.Google_Protobuf_Struct : Swift.ExpressibleByDictionaryLiteral { + public typealias Key = Swift.String + public typealias Value = VideoSDKRTC.Google_Protobuf_Value + public init(dictionaryLiteral: (Swift.String, VideoSDKRTC.Google_Protobuf_Value)...) +} +extension VideoSDKRTC.Google_Protobuf_Struct { + public init(fields: [Swift.String : VideoSDKRTC.Google_Protobuf_Value]) + public subscript(key: Swift.String) -> VideoSDKRTC.Google_Protobuf_Value? { + get + set(newValue) + } +} +extension VideoSDKRTC.Google_Protobuf_Timestamp { + public init(seconds: Swift.Int64 = 0, nanos: Swift.Int32 = 0) +} +extension VideoSDKRTC.Google_Protobuf_Timestamp { + public init(timeIntervalSince1970: Foundation.TimeInterval) + public init(timeIntervalSinceReferenceDate: Foundation.TimeInterval) + public init(date: Foundation.Date) + public var timeIntervalSince1970: Foundation.TimeInterval { + get + } + public var timeIntervalSinceReferenceDate: Foundation.TimeInterval { + get + } + public var date: Foundation.Date { + get + } +} +public func + (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Timestamp +public func + (lhs: VideoSDKRTC.Google_Protobuf_Duration, rhs: VideoSDKRTC.Google_Protobuf_Timestamp) -> VideoSDKRTC.Google_Protobuf_Timestamp +public func - (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Duration) -> VideoSDKRTC.Google_Protobuf_Timestamp +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByIntegerLiteral { + public typealias IntegerLiteralType = Swift.Int64 + public init(integerLiteral value: Swift.Int64) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByFloatLiteral { + public typealias FloatLiteralType = Swift.Double + public init(floatLiteral value: Swift.Double) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByBooleanLiteral { + public typealias BooleanLiteralType = Swift.Bool + public init(booleanLiteral value: Swift.Bool) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByStringLiteral { + public typealias StringLiteralType = Swift.String + public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias UnicodeScalarLiteralType = Swift.String + public init(stringLiteral value: Swift.String) + public init(unicodeScalarLiteral value: Swift.String) + public init(extendedGraphemeClusterLiteral value: Swift.String) +} +extension VideoSDKRTC.Google_Protobuf_Value : Swift.ExpressibleByNilLiteral { + public init(nilLiteral: ()) +} +extension VideoSDKRTC.Google_Protobuf_Value { + public init(numberValue: Swift.Double) + public init(stringValue: Swift.String) + public init(boolValue: Swift.Bool) + public init(structValue: VideoSDKRTC.Google_Protobuf_Struct) + public init(listValue: VideoSDKRTC.Google_Protobuf_ListValue) +} +extension VideoSDKRTC.Google_Protobuf_DoubleValue : Swift.ExpressibleByFloatLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufDouble + public typealias FloatLiteralType = VideoSDKRTC.Google_Protobuf_DoubleValue.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_DoubleValue.WrappedType.BaseType) + public init(floatLiteral: VideoSDKRTC.Google_Protobuf_DoubleValue.FloatLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_FloatValue : Swift.ExpressibleByFloatLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufFloat + public typealias FloatLiteralType = Swift.Float + public init(_ value: VideoSDKRTC.Google_Protobuf_FloatValue.WrappedType.BaseType) + public init(floatLiteral: VideoSDKRTC.Google_Protobuf_FloatValue.FloatLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_Int64Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufInt64 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_Int64Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_Int64Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_Int64Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_UInt64Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufUInt64 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_UInt64Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_UInt64Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_UInt64Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_Int32Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufInt32 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_Int32Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_Int32Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_Int32Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_UInt32Value : Swift.ExpressibleByIntegerLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufUInt32 + public typealias IntegerLiteralType = VideoSDKRTC.Google_Protobuf_UInt32Value.WrappedType.BaseType + public init(_ value: VideoSDKRTC.Google_Protobuf_UInt32Value.WrappedType.BaseType) + public init(integerLiteral: VideoSDKRTC.Google_Protobuf_UInt32Value.IntegerLiteralType) +} +extension VideoSDKRTC.Google_Protobuf_BoolValue : Swift.ExpressibleByBooleanLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufBool + public typealias BooleanLiteralType = Swift.Bool + public init(_ value: VideoSDKRTC.Google_Protobuf_BoolValue.WrappedType.BaseType) + public init(booleanLiteral: Swift.Bool) +} +extension VideoSDKRTC.Google_Protobuf_StringValue : Swift.ExpressibleByStringLiteral { + public typealias WrappedType = VideoSDKRTC.ProtobufString + public typealias StringLiteralType = Swift.String + public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias UnicodeScalarLiteralType = Swift.String + public init(_ value: VideoSDKRTC.Google_Protobuf_StringValue.WrappedType.BaseType) + public init(stringLiteral: Swift.String) + public init(extendedGraphemeClusterLiteral: Swift.String) + public init(unicodeScalarLiteral: Swift.String) +} +extension VideoSDKRTC.Google_Protobuf_BytesValue { + public typealias WrappedType = VideoSDKRTC.ProtobufBytes + public init(_ value: VideoSDKRTC.Google_Protobuf_BytesValue.WrappedType.BaseType) +} +public struct Headers { + public static func getUserAgentHeader() -> Swift.String +} +@_hasMissingDesignatedInitializers public class HistogramAggregator : VideoSDKRTC.Aggregator where T : Swift.Comparable, T : Swift.SignedNumeric { + public init(explicitBoundaries: Swift.Array? = nil) throws + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +@_hasMissingDesignatedInitializers public class HistogramExemplarReservoir : VideoSDKRTC.FixedSizedExemplarReservoir { + override public func offerLongMeasurement(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public protocol HistogramMetric { + associatedtype T + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundHistogramMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundHistogramMetric +} +extension VideoSDKRTC.HistogramMetric { + public func record(value: Self.T, labelset: VideoSDKRTC.LabelSet) + public func record(value: Self.T, labels: [Swift.String : Swift.String]) +} +public struct AnyHistogramMetric : VideoSDKRTC.HistogramMetric { + public init(_ histogram: U) where T == U.T, U : VideoSDKRTC.HistogramMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundHistogramMetric +} +public struct NoopHistogramMetric : VideoSDKRTC.HistogramMetric { + public init() + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundHistogramMetric +} +@_hasMissingDesignatedInitializers public class HistogramPointData : VideoSDKRTC.PointData { + public var sum: Swift.Double + public var count: Swift.UInt64 + public var min: Swift.Double + public var max: Swift.Double + public var boundaries: [Swift.Double] + public var counts: [Swift.Int] + public var hasMin: Swift.Bool + public var hasMax: Swift.Bool + @objc deinit +} +public class HLSConfig { + public var layout: VideoSDKRTC.ConfigLayout + public var theme: VideoSDKRTC.ConfigTheme + public var mode: VideoSDKRTC.ConfigMode + public var quality: VideoSDKRTC.ConfigQuality + public var orientation: VideoSDKRTC.ConfigOrientation + public init(layout: VideoSDKRTC.ConfigLayout, theme: VideoSDKRTC.ConfigTheme, mode: VideoSDKRTC.ConfigMode, quality: VideoSDKRTC.ConfigQuality, orientation: VideoSDKRTC.ConfigOrientation) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public class RecordingConfig { + public var layout: VideoSDKRTC.ConfigLayout + public var theme: VideoSDKRTC.ConfigTheme + public var mode: VideoSDKRTC.ConfigMode + public var quality: VideoSDKRTC.ConfigQuality + public var orientation: VideoSDKRTC.ConfigOrientation + public init(layout: VideoSDKRTC.ConfigLayout, theme: VideoSDKRTC.ConfigTheme, mode: VideoSDKRTC.ConfigMode, quality: VideoSDKRTC.ConfigQuality, orientation: VideoSDKRTC.ConfigOrientation) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public class HLSUrl { + public var downstreamUrl: Swift.String + public var playbackHlsUrl: Swift.String + public var livestreamUrl: Swift.String + public init(downstreamUrl: Swift.String? = nil, playbackHlsUrl: Swift.String? = nil, livestreamUrl: Swift.String? = nil) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public class ConfigLayout { + public var type: VideoSDKRTC.ConfigLayoutGrid + public var priority: VideoSDKRTC.ConfigLayoutPriority + public var gridSize: Swift.Int + public init(type: VideoSDKRTC.ConfigLayoutGrid, priority: VideoSDKRTC.ConfigLayoutPriority, gridSize: Swift.Int) + public func toJson() -> [Swift.String : Any] + @objc deinit +} +public enum ConfigLayoutPriority : Swift.String { + case SPEAKER, PIN + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigLayoutGrid : Swift.String { + case GRID, SPOTLIGHT, SIDEBAR + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigTheme : Swift.String { + case DEFAULT, LIGHT, DARK + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigMode : Swift.String { + case video_and_audio, audio + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigQuality : Swift.String { + case high, med, low + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ConfigOrientation : Swift.String { + case landscape, portrait + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public protocol IdGenerator { + func generateSpanId() -> VideoSDKRTC.SpanId + func generateTraceId() -> VideoSDKRTC.TraceId +} +@_hasMissingDesignatedInitializers public class InMemoryLogRecordExporter : VideoSDKRTC.LogRecordExporter { + public func getFinishedLogRecords() -> [VideoSDKRTC.ReadableLogRecord] + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func shutdown() + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public protocol Instrument : Swift.Equatable { + var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor { get } +} +extension VideoSDKRTC.Instrument { + public static func == (lhs: Self, rhs: Self) -> Swift.Bool +} +public struct InstrumentationScopeInfo : Swift.Hashable, Swift.Codable, Swift.Equatable { + public var name: Swift.String { + get + } + public var version: Swift.String? { + get + } + public var schemaUrl: Swift.String? { + get + } + public init() + public init(name: Swift.String, version: Swift.String? = nil, schemaUrl: Swift.String? = nil) + public func hash(into hasher: inout Swift.Hasher) + public static func == (a: VideoSDKRTC.InstrumentationScopeInfo, b: VideoSDKRTC.InstrumentationScopeInfo) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public struct InstrumentDescriptor : Swift.Equatable { + public let name: Swift.String + public let description: Swift.String + public let unit: Swift.String + public let type: VideoSDKRTC.InstrumentType + public let valueType: VideoSDKRTC.InstrumentValueType + public init(name: Swift.String, description: Swift.String, unit: Swift.String, type: VideoSDKRTC.InstrumentType, valueType: VideoSDKRTC.InstrumentValueType) + public static func == (lhs: VideoSDKRTC.InstrumentDescriptor, rhs: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class InstrumentSelector { + public static func builder() -> VideoSDKRTC.InstrumentSelectorBuilder + @objc deinit +} +public class InstrumentSelectorBuilder { + public init() + public func setInstrument(type: VideoSDKRTC.InstrumentType) -> Self + public func setInstrument(name: Swift.String) -> Self + public func setMeter(name: Swift.String) -> Self + public func setMeter(version: Swift.String) -> Self + public func setMeter(schemaUrl: Swift.String) -> Self + public func build() -> VideoSDKRTC.InstrumentSelector + @objc deinit +} +public enum InstrumentType : Swift.CaseIterable { + case counter + case upDownCounter + case histogram + case observableCounter + case observableUpDownCounter + case observableGauge + public static func == (a: VideoSDKRTC.InstrumentType, b: VideoSDKRTC.InstrumentType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public typealias AllCases = [VideoSDKRTC.InstrumentType] + public static var allCases: [VideoSDKRTC.InstrumentType] { + get + } + public var hashValue: Swift.Int { + get + } +} +public enum InstrumentValueType { + case long + case double + public static func == (a: VideoSDKRTC.InstrumentValueType, b: VideoSDKRTC.InstrumentValueType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public enum Internal { + public static let emptyData: Foundation.Data + public static func areAllInitialized(_ listOfMessages: [any VideoSDKRTC.Message]) -> Swift.Bool + public static func areAllInitialized(_ mapToMessages: [K : any VideoSDKRTC.Message]) -> Swift.Bool where K : Swift.Hashable +} +public protocol IntObserverMetric { + func observe(value: Swift.Int, labelset: VideoSDKRTC.LabelSet) + func observe(value: Swift.Int, labels: [Swift.String : Swift.String]) +} +public struct NoopIntObserverMetric : VideoSDKRTC.IntObserverMetric { + public init() + public func observe(value: Swift.Int, labelset: VideoSDKRTC.LabelSet) + public func observe(value: Swift.Int, labels: [Swift.String : Swift.String]) +} +extension Foundation.Data { + public func toJSONString() -> Swift.String + public func toJSON() -> [Swift.String : Any] + public func toJSONArray() -> [Any] +} +extension Swift.String { + public func toJSON() -> [Swift.String : Any] +} +extension Swift.Dictionary { + public func toJSONString() -> Swift.String +} +extension Swift.Array { + public func toJSONString() -> Swift.String +} +extension Swift.Encodable { + public func toJSON() -> [Swift.String : Any] + public func toJSONArray() -> [Any] +} +public enum JSONDecodingError : Swift.Error { + case failure + case malformedNumber + case numberRange + case malformedMap + case malformedBool + case malformedString + case invalidUTF8 + case missingFieldNames + case schemaMismatch + case unrecognizedEnumValue + case illegalNull + case unquotedMapKey + case leadingZero + case truncated + case malformedDuration + case malformedTimestamp + case malformedFieldMask + case trailingGarbage + case conflictingOneOf + case messageDepthLimit + case unknownField(Swift.String) +} +public struct JSONDecodingOptions : Swift.Sendable { + public var messageDepthLimit: Swift.Int + public var ignoreUnknownFields: Swift.Bool + public init() +} +public enum JSONEncodingError : Swift.Error { + case anyTranscodeFailure + case timestampRange + case durationRange + case fieldMaskConversion + case missingFieldNames + case missingValue + case valueNumberNotFinite + public static func == (a: VideoSDKRTC.JSONEncodingError, b: VideoSDKRTC.JSONEncodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct JSONEncodingOptions : Swift.Sendable { + public var alwaysPrintInt64sAsNumbers: Swift.Bool + public var alwaysPrintEnumsAsInts: Swift.Bool + public var preserveProtoFieldNames: Swift.Bool + public init() +} +@_hasMissingDesignatedInitializers open class LabelSet : Swift.Hashable { + public var labels: [Swift.String : Swift.String] { + get + } + public static var empty: VideoSDKRTC.LabelSet + required public init(labels: [Swift.String : Swift.String]) + public static func == (lhs: VideoSDKRTC.LabelSet, rhs: VideoSDKRTC.LabelSet) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + @objc deinit + open var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class LastValueAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.LastValueAggregation { + get + } + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class LastValueAggregator : VideoSDKRTC.Aggregator where T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public struct LivestreamOutput : Swift.Codable { + public let url: Swift.String + public let streamKey: Swift.String + public init(url: Swift.String, streamKey: Swift.String) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public protocol Logger { + func eventBuilder(name: Swift.String) -> any VideoSDKRTC.EventBuilder + func logRecordBuilder() -> any VideoSDKRTC.LogRecordBuilder +} +public protocol LoggerBuilder { + func setEventDomain(_ eventDomain: Swift.String) -> Self + func setSchemaUrl(_ schemaUrl: Swift.String) -> Self + func setInstrumentationVersion(_ instrumentationVersion: Swift.String) -> Self + func setIncludeTraceContext(_ includeTraceContext: Swift.Bool) -> Self + func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + func build() -> any VideoSDKRTC.Logger +} +@_hasMissingDesignatedInitializers public class LoggerBuilderSdk : VideoSDKRTC.LoggerBuilder { + public func setEventDomain(_ eventDomain: Swift.String) -> Self + public func setSchemaUrl(_ schemaUrl: Swift.String) -> Self + public func setInstrumentationVersion(_ instrumentationVersion: Swift.String) -> Self + public func setIncludeTraceContext(_ includeTraceContext: Swift.Bool) -> Self + public func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + public func build() -> any VideoSDKRTC.Logger + @objc deinit +} +public protocol LoggerProvider : AnyObject { + func get(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.Logger + func loggerBuilder(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.LoggerBuilder +} +public class LoggerProviderBuilder { + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var logLimits: VideoSDKRTC.LogLimits { + get + } + public var logProcessors: [any VideoSDKRTC.LogRecordProcessor] { + get + } + public init() + public func with(clock: any VideoSDKRTC.Clock) -> Self + public func with(resource: VideoSDKRTC.Resource) -> Self + public func with(logLimits: VideoSDKRTC.LogLimits) -> Self + public func with(processors: [any VideoSDKRTC.LogRecordProcessor]) -> Self + public func build() -> VideoSDKRTC.LoggerProviderSdk + @objc deinit +} +public class LoggerProviderSdk : VideoSDKRTC.LoggerProvider { + public init(clock: any VideoSDKRTC.Clock = MillisClock(), resource: VideoSDKRTC.Resource = EnvVarResource.get(), logLimits: VideoSDKRTC.LogLimits = LogLimits(), logRecordProcessors: [any VideoSDKRTC.LogRecordProcessor] = []) + public func get(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.Logger + public func loggerBuilder(instrumentationScopeName: Swift.String) -> any VideoSDKRTC.LoggerBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class LoggerSdk : VideoSDKRTC.Logger { + public func eventBuilder(name: Swift.String) -> any VideoSDKRTC.EventBuilder + public func logRecordBuilder() -> any VideoSDKRTC.LogRecordBuilder + @objc deinit +} +public struct LogLimits { + public static let defaultMaxAttributeCount: Swift.Int + public static let defaultMaxAtributeLength: Swift.Int + public let maxAttributeCount: Swift.Int + public let maxAttributeLength: Swift.Int + public init(maxAttributeCount: Swift.Int = Self.defaultMaxAttributeCount, maxAttributeLength: Swift.Int = Self.defaultMaxAtributeLength) +} +@_hasMissingDesignatedInitializers public class LogRecordAdapter { + public static func toProtoResourceRecordLog(logRecordList: [VideoSDKRTC.ReadableLogRecord]) -> [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs] + @objc deinit +} +public protocol LogRecordBuilder { + func setTimestamp(_ timestamp: Foundation.Date) -> Self + func setObservedTimestamp(_ observed: Foundation.Date) -> Self + func setSpanContext(_ context: VideoSDKRTC.SpanContext) -> Self + func setSeverity(_ severity: VideoSDKRTC.Severity) -> Self + func setBody(_ body: Swift.String) -> Self + func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + func emit() +} +@_hasMissingDesignatedInitializers public class LogRecordBuilderSdk : VideoSDKRTC.EventBuilder { + public func setTimestamp(_ timestamp: Foundation.Date) -> Self + public func setObservedTimestamp(_ observed: Foundation.Date) -> Self + public func setSpanContext(_ context: VideoSDKRTC.SpanContext) -> Self + public func setSeverity(_ severity: VideoSDKRTC.Severity) -> Self + public func setBody(_ body: Swift.String) -> Self + public func setAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + public func setData(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + public func emit() + @objc deinit +} +public protocol LogRecordExporter { + func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + func shutdown() + func forceFlush() -> VideoSDKRTC.ExportResult +} +public protocol LogRecordProcessor { + func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + func forceFlush() -> VideoSDKRTC.ExportResult + func shutdown() -> VideoSDKRTC.ExportResult +} +public enum Opentelemetry_Proto_Logs_V1_SeverityNumber : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unspecified + case trace + case trace2 + case trace3 + case trace4 + case debug + case debug2 + case debug3 + case debug4 + case info + case info2 + case info3 + case info4 + case warn + case warn2 + case warn3 + case warn4 + case error + case error2 + case error3 + case error4 + case fatal + case fatal2 + case fatal3 + case fatal4 + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber] +} +public enum Opentelemetry_Proto_Logs_V1_LogRecordFlags : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case doNotUse + case traceFlagsMask + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags] +} +public struct Opentelemetry_Proto_Logs_V1_LogsData { + public var resourceLogs: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Logs_V1_ResourceLogs { + public var resource: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource { + get + set + } + public var hasResource: Swift.Bool { + get + } + public mutating func clearResource() + public var scopeLogs: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Logs_V1_ScopeLogs { + public var scope: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope { + get + set + } + public var hasScope: Swift.Bool { + get + } + public mutating func clearScope() + public var logRecords: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Logs_V1_LogRecord { + public var timeUnixNano: Swift.UInt64 + public var observedTimeUnixNano: Swift.UInt64 + public var severityNumber: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber + public var severityText: Swift.String + public var body: VideoSDKRTC.Opentelemetry_Proto_Common_V1_AnyValue { + get + set + } + public var hasBody: Swift.Bool { + get + } + public mutating func clearBody() + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var flags: Swift.UInt32 + public var traceID: Foundation.Data + public var spanID: Foundation.Data + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_SeverityNumber : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecordFlags : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogsData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ScopeLogs) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord, rhs: VideoSDKRTC.Opentelemetry_Proto_Logs_V1_LogRecord) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest { + public var resourceLogs: [VideoSDKRTC.Opentelemetry_Proto_Logs_V1_ResourceLogs] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse { + public var partialSuccess: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess { + get + set + } + public var hasPartialSuccess: Swift.Bool { + get + } + public mutating func clearPartialSuccess() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess { + public var rejectedLogRecords: Swift.Int64 + public var errorMessage: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceRequest) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsServiceResponse) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Logs_V1_ExportLogsPartialSuccess) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol LongCounter { + mutating func add(value: Swift.Int) + mutating func add(value: Swift.Int, attribute: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongCounterBuilder : AnyObject { + func ofDoubles() -> any VideoSDKRTC.DoubleCounterBuilder + func build() -> any VideoSDKRTC.LongCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongCounter +} +@_hasMissingDesignatedInitializers public class LongCounterMeterBuilderSdk : VideoSDKRTC.LongCounterBuilder { + public func ofDoubles() -> any VideoSDKRTC.DoubleCounterBuilder + public func build() -> any VideoSDKRTC.LongCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongCounter + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongCounterSdk : VideoSDKRTC.LongCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public func add(value: Swift.Int) + public func add(value: Swift.Int, attribute: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public struct DoubleCounterSdk : VideoSDKRTC.DoubleCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public mutating func add(value: Swift.Double) + public mutating func add(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongGaugeBuilder : AnyObject { + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongGauge +} +@_hasMissingDesignatedInitializers public class LongGaugeBuilderSdk : VideoSDKRTC.LongGaugeBuilder { + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongGauge + @objc deinit +} +public protocol LongHistogram { + mutating func record(value: Swift.Int) + mutating func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongHistogramBuilder : AnyObject { + func build() -> any VideoSDKRTC.LongHistogram +} +@_hasMissingDesignatedInitializers public class LongHistogramMeterBuilderSdk : VideoSDKRTC.LongHistogramBuilder { + public func build() -> any VideoSDKRTC.LongHistogram + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongHistogramMeterSdk : VideoSDKRTC.LongHistogram, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor + public func record(value: Swift.Int) + public func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongLastValueAggregator : VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongPointData : VideoSDKRTC.PointData { + public var value: Swift.Int + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongSumAggregator : VideoSDKRTC.SumAggregator, VideoSDKRTC.StableAggregator { + public func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + public func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + public func createHandle() -> VideoSDKRTC.AggregatorHandle + public func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData + @objc deinit +} +public protocol LongUpDownCounter { + mutating func add(value: Swift.Int) + mutating func add(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol LongUpDownCounterBuilder : AnyObject { + func ofDoubles() -> any VideoSDKRTC.DoubleUpDownCounterBuilder + func build() -> any VideoSDKRTC.LongUpDownCounter + func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongUpDownCounter +} +@_hasMissingDesignatedInitializers public class LongUpDownCounterBuilderSdk : VideoSDKRTC.LongUpDownCounterBuilder { + public func ofDoubles() -> any VideoSDKRTC.DoubleUpDownCounterBuilder + public func build() -> any VideoSDKRTC.LongUpDownCounter + public func buildWithCallback(_ callback: @escaping (any VideoSDKRTC.ObservableLongMeasurement) -> Swift.Void) -> any VideoSDKRTC.ObservableLongUpDownCounter + @objc deinit +} +@_hasMissingDesignatedInitializers public class LongUpDownCounterSdk : VideoSDKRTC.LongUpDownCounter, VideoSDKRTC.Instrument { + public var instrumentDescriptor: VideoSDKRTC.InstrumentDescriptor { + get + } + public func add(value: Swift.Int) + public func add(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class MaxValueAggregator : VideoSDKRTC.Aggregator where T : Swift.Comparable, T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public struct Measurement { + public var startEpochNano: Swift.UInt64 { + get + } + public var epochNano: Swift.UInt64 { + get + } + public var hasLongValue: Swift.Bool { + get + } + public var longValue: Swift.Int { + get + } + public var doubleValue: Swift.Double { + get + } + public var hasDoubleValue: Swift.Bool { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public static func longMeasurement(startEpochNano: Swift.UInt64, endEpochNano: Swift.UInt64, value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.Measurement + public static func doubleMeasurement(startEpochNano: Swift.UInt64, endEpochNano: Swift.UInt64, value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.Measurement +} +public protocol MeasureMetric { + associatedtype T + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundMeasureMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundMeasureMetric +} +extension VideoSDKRTC.MeasureMetric { + public func record(value: Self.T, labelset: VideoSDKRTC.LabelSet) + public func record(value: Self.T, labels: [Swift.String : Swift.String]) +} +public struct AnyMeasureMetric : VideoSDKRTC.MeasureMetric { + public init(_ measurable: U) where T == U.T, U : VideoSDKRTC.MeasureMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundMeasureMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundMeasureMetric +} +public struct NoopMeasureMetric : VideoSDKRTC.MeasureMetric { + public init() + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundMeasureMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundMeasureMetric +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class MeasureMinMaxSumCountAggregator : VideoSDKRTC.Aggregator where T : Swift.Comparable, T : Swift.SignedNumeric { + override public func update(value: T) + override public func checkpoint() + override public func toMetricData() -> any VideoSDKRTC.MetricData + override public func getAggregationType() -> VideoSDKRTC.AggregationType + @objc deinit +} +public enum authorisationStatus { + case notDetermined + case authorised + case denied + case restricted + public static func == (a: VideoSDKRTC.authorisationStatus, b: VideoSDKRTC.authorisationStatus) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public protocol AuthorisationDelegate : AnyObject { + func handlePermission() +} +@_hasMissingDesignatedInitializers public class MediaStream : Swift.Equatable { + public var id: Swift.String { + get + } + public var kind: VideoSDKRTC.MediaType { + get + } + public var track: WebRTC.RTCMediaStreamTrack { + get + } + public var producer: Mediasoup.Producer? { + get + } + public var consumer: Mediasoup.Consumer? { + get + } + @objc deinit +} +extension VideoSDKRTC.MediaStream { + public func pause() + public func resume() +} +extension VideoSDKRTC.MediaStream { + public static func == (lhs: VideoSDKRTC.MediaStream, rhs: VideoSDKRTC.MediaStream) -> Swift.Bool +} +public enum MediaType : Swift.Equatable { + case share + case state(value: Mediasoup.MediaKind) + public static func == (a: VideoSDKRTC.MediaType, b: VideoSDKRTC.MediaType) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class Meeting : Swift.Equatable { + public var id: Swift.String { + get + } + public var localParticipant: VideoSDKRTC.Participant { + get + } + public var participants: [Swift.String : VideoSDKRTC.Participant] { + get + } + public var pinnedParticipants: [Swift.String : VideoSDKRTC.ParticipantPinState] { + get + } + public var hlsUrls: VideoSDKRTC.HLSUrl? + public var hlsState: VideoSDKRTC.HLSState + public var liveStreamState: VideoSDKRTC.LiveStreamState + public var recordingState: VideoSDKRTC.RecordingState + public var pubsub: VideoSDKRTC.PubSub { + get + } + public var customVideoMediaStream: VideoSDKRTC.CustomRTCMediaStream? { + get + } + public var meetingMode: VideoSDKRTC.Mode? { + get + } + @objc deinit +} +extension VideoSDKRTC.Meeting { + public func join(cameraPosition: AVFoundation.AVCaptureDevice.Position) + public func leave() + public func end() + public func enableWebcam(customVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil) + public func disableWebcam() + public func switchWebcam() + public func muteMic() + public func unmuteMic() + public func startRecording(webhookUrl: Swift.String, awsDirPath: Swift.String? = nil, config: VideoSDKRTC.RecordingConfig? = nil) + public func stopRecording() + public func startLivestream(outputs: [VideoSDKRTC.LivestreamOutput]) + public func stopLivestream() + public func startHLS(config: VideoSDKRTC.HLSConfig? = nil) + public func stopHLS() + public func changeMode(_ mode: VideoSDKRTC.Mode) + #if compiler(>=5.3) && $AsyncAwait + @available(iOS 13.0.0, *) + public func enableScreenShare() async + #endif + #if compiler(>=5.3) && $AsyncAwait + @available(iOS 13.0.0, *) + public func disableScreenShare() async + #endif + public func changeMic(selectedDevice: Swift.String) + public func getMics() -> [(deviceName: Swift.String, deviceType: Swift.String)] + public func removeOberver() +} +extension VideoSDKRTC.Meeting { + public func addEventListener(_ meetingEventListener: any VideoSDKRTC.MeetingEventListener) + public func removeEventListener(_ meetingEventListener: any VideoSDKRTC.MeetingEventListener) +} +extension VideoSDKRTC.Meeting { + public static func == (lhs: VideoSDKRTC.Meeting, rhs: VideoSDKRTC.Meeting) -> Swift.Bool +} +public protocol MeetingEventListener : AnyObject { + func onMeetingJoined() + func onMeetingLeft() + func onParticipantJoined(_ participant: VideoSDKRTC.Participant) + func onParticipantLeft(_ participant: VideoSDKRTC.Participant) + func onRecordingStarted() + func onRecordingStoppped() + func onLivestreamStarted() + func onLivestreamStopped() + func onSpeakerChanged(participantId: Swift.String?) + func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + func onSocketError(message: Swift.String) + func onMeetingStateChanged(meetingState: VideoSDKRTC.MeetingState) + func onError(error: VideoSDKRTC.VideoSDKError) + func onHlsStateChanged(state: VideoSDKRTC.HLSState, hlsUrl: VideoSDKRTC.HLSUrl?) + func onLivestreamStateChanged(state: VideoSDKRTC.LiveStreamState) + func onRecordingStateChanged(state: VideoSDKRTC.RecordingState) + func onPinStateChanged(participantId: Swift.String, pinType: VideoSDKRTC.PinType) + func onParticipantModeChanged(participantId: Swift.String, mode: VideoSDKRTC.Mode) + func onMicChanged(selectedDevice: Swift.String) +} +extension VideoSDKRTC.MeetingEventListener { + public func onMeetingJoined() + public func onMeetingLeft() + public func onParticipantJoined(_ participant: VideoSDKRTC.Participant) + public func onParticipantLeft(_ participant: VideoSDKRTC.Participant) + public func onRecordingStarted() + public func onRecordingStoppped() + public func onLivestreamStarted() + public func onLivestreamStopped() + public func onSpeakerChanged(participantId: Swift.String?) + public func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + public func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) + public func onSocketError(message: Swift.String) + public func onMeetingStateChanged(meetingState: VideoSDKRTC.MeetingState) + public func onError(error: VideoSDKRTC.VideoSDKError) + public func onHlsStateChanged(state: VideoSDKRTC.HLSState, hlsUrl: VideoSDKRTC.HLSUrl?) + public func onLivestreamStateChanged(state: VideoSDKRTC.LiveStreamState) + public func onRecordingStateChanged(state: VideoSDKRTC.RecordingState) + public func onPinStateChanged(participantId: Swift.String, pinType: VideoSDKRTC.PinType) + public func onParticipantModeChanged(participantId: Swift.String, mode: VideoSDKRTC.Mode) + public func onMicChanged(selectedDevice: Swift.String) +} +public enum MeetingState : Swift.String { + case CONNECTING, CONNECTED, CLOSING, CLOSED, CANCELLED + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum Mode : Swift.String { + case CONFERENCE, VIEWER + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum VideoSDKError : Swift.Int { + case UNKNOWN_ERROR + case INVALID_API_KEY + case INVALID_TOKEN + case INVALID_MEETING_ID + case INVALID_PARTICIPANT_ID + case DUPLICATE_PARTICIPANT + case ACCOUNT_DEACTIVATED + case ACCOUNT_DISCONTINUED + case INVALID_PERMISSIONS + case MAX_PARTCIPANT_REACHED + case MAX_SPEAKER_REACHED + case START_RECORDING_FAILED + case STOP_RECORDING_FAILED + case START_LIVESTREAM_FAILED + case STOP_LIVESTREAM_FAILED + case INVALID_LIVESTREAM_CONFIG + case START_HLS_FAILED + case STOP_HLS_FAILED + case RECORDING_FAILED + case LIVESTREAM_FAILED + case HLS_FAILED + case ERROR_GET_VIDEO_MEDIA + case ERROR_GET_AUDIO_MEDIA + case ERROR_GET_DISPLAY_MEDIA + case ERROR_GET_VIDEO_MEDIA_PERMISSION_DENIED + case ERROR_GET_AUDIO_MEDIA_PERMISSION_DENIED + case ERROR_GET_DISPLAY_MEDIA_PERMISSION_DENIED + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public enum HLSState : Swift.String { + case HLS_STARTED, HLS_STARTING, HLS_STOPPED, HLS_STOPPING, HLS_PLAYABLE + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum RecordingState : Swift.String { + case RECORDING_STARTED, RECORDING_STARTING, RECORDING_STOPPED, RECORDING_STOPPING + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum LiveStreamState : Swift.String { + case LIVESTREAM_STARTED, LIVESTREAM_STARTING, LIVESTREAM_STOPPED, LIVESTREAM_STOPPING + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public protocol Message : VideoSDKRTC._MessageBase { + init() + static var protoMessageName: Swift.String { get } + var isInitialized: Swift.Bool { get } + var unknownFields: VideoSDKRTC.UnknownStorage { get set } + mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + func hash(into hasher: inout Swift.Hasher) + func isEqualTo(message: any VideoSDKRTC.Message) -> Swift.Bool +} +public protocol _MessageBase : Swift.Sendable { +} +extension VideoSDKRTC.Message { + public var isInitialized: Swift.Bool { + get + } + public func hash(into hasher: inout Swift.Hasher) + public static func with(_ populator: (inout Self) throws -> ()) rethrows -> Self +} +public protocol _MessageImplementationBase : Swift.Hashable, VideoSDKRTC.Message { + func _protobuf_generated_isEqualTo(other: Self) -> Swift.Bool +} +extension VideoSDKRTC._MessageImplementationBase { + public func isEqualTo(message: any VideoSDKRTC.Message) -> Swift.Bool + public static func == (lhs: Self, rhs: Self) -> Swift.Bool + public func _protobuf_generated_isEqualTo(other: Self) -> Swift.Bool +} +extension VideoSDKRTC.Message { + public init(unpackingAny: VideoSDKRTC.Google_Protobuf_Any, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws +} +extension VideoSDKRTC.Message { + public func serializedBytes(partial: Swift.Bool = false) throws -> Bytes where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + @inlinable public init(serializedBytes bytes: Bytes, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes { + self.init() + try merge(serializedBytes: bytes, extensions: extensions, partial: partial, options: options) + } + @inlinable public mutating func merge(serializedBytes bytes: Bytes, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes { + try bytes.withUnsafeBytes { (body: UnsafeRawBufferPointer) in + try _merge(rawBuffer: body, extensions: extensions, partial: partial, options: options) + } + } + @usableFromInline + internal mutating func _merge(rawBuffer body: Swift.UnsafeRawBufferPointer, extensions: (any VideoSDKRTC.ExtensionMap)?, partial: Swift.Bool, options: VideoSDKRTC.BinaryDecodingOptions) throws +} +extension VideoSDKRTC.Message { + @inlinable public init(serializedData data: Foundation.Data, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws { + self.init() + try merge(serializedBytes: data, extensions: extensions, partial: partial, options: options) + } + @inlinable public mutating func merge(serializedData data: Foundation.Data, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, partial: Swift.Bool = false, options: VideoSDKRTC.BinaryDecodingOptions = BinaryDecodingOptions()) throws { + try merge(serializedBytes: data, extensions: extensions, partial: partial, options: options) + } + public func serializedData(partial: Swift.Bool = false) throws -> Foundation.Data +} +extension VideoSDKRTC.Message { + public func jsonString(options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Swift.String + public func jsonUTF8Bytes(options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Bytes where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public init(jsonString: Swift.String, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public init(jsonString: Swift.String, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public init(jsonUTF8Bytes: Bytes, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public init(jsonUTF8Bytes: Bytes, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes +} +extension VideoSDKRTC.Message { + public init(jsonUTF8Data: Foundation.Data, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public init(jsonUTF8Data: Foundation.Data, extensions: (any VideoSDKRTC.ExtensionMap)? = nil, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws + public func jsonUTF8Data(options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Foundation.Data +} +extension VideoSDKRTC.Message { + public static func jsonString(from collection: C, options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Swift.String where Self == C.Element, C : Swift.Collection + public static func jsonUTF8Bytes(from collection: C, options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Bytes where Self == C.Element, C : Swift.Collection, Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public static func array(fromJSONString jsonString: Swift.String, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func array(fromJSONString jsonString: Swift.String, extensions: any VideoSDKRTC.ExtensionMap = SimpleExtensionMap(), options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func array(fromJSONUTF8Bytes jsonUTF8Bytes: Bytes, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes + public static func array(fromJSONUTF8Bytes jsonUTF8Bytes: Bytes, extensions: any VideoSDKRTC.ExtensionMap = SimpleExtensionMap(), options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] where Bytes : VideoSDKRTC.SwiftProtobufContiguousBytes +} +extension VideoSDKRTC.Message { + public static func array(fromJSONUTF8Data jsonUTF8Data: Foundation.Data, options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func array(fromJSONUTF8Data jsonUTF8Data: Foundation.Data, extensions: any VideoSDKRTC.ExtensionMap = SimpleExtensionMap(), options: VideoSDKRTC.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] + public static func jsonUTF8Data(from collection: C, options: VideoSDKRTC.JSONEncodingOptions = JSONEncodingOptions()) throws -> Foundation.Data where Self == C.Element, C : Swift.Collection +} +extension VideoSDKRTC.Message { + public func textFormatString() -> Swift.String + public func textFormatString(options: VideoSDKRTC.TextFormatEncodingOptions) -> Swift.String + public init(textFormatString: Swift.String, options: VideoSDKRTC.TextFormatDecodingOptions = TextFormatDecodingOptions(), extensions: (any VideoSDKRTC.ExtensionMap)? = nil) throws +} +public protocol AnyMessageExtension : Swift.Sendable { + var fieldNumber: Swift.Int { get } + var fieldName: Swift.String { get } + var messageType: any VideoSDKRTC.Message.Type { get } + func _protobuf_newField(decoder: inout D) throws -> (any VideoSDKRTC.AnyExtensionField)? where D : VideoSDKRTC.SPBDecoder +} +final public class MessageExtension : VideoSDKRTC.AnyMessageExtension where FieldType : VideoSDKRTC.ExtensionField, MessageType : VideoSDKRTC.Message { + final public let fieldNumber: Swift.Int + final public let fieldName: Swift.String + final public let messageType: any VideoSDKRTC.Message.Type + public init(_protobuf_fieldNumber: Swift.Int, fieldName: Swift.String) + final public func _protobuf_newField(decoder: inout D) throws -> (any VideoSDKRTC.AnyExtensionField)? where D : VideoSDKRTC.SPBDecoder + @objc deinit +} +public protocol Meter { + func createIntCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + func createDoubleCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + func createIntMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + func createDoubleMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + func createIntHistogram(name: Swift.String, explicitBoundaries: Swift.Array?, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + func createDoubleHistogram(name: Swift.String, explicitBoundaries: Swift.Array?, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + func createRawDoubleHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + func createRawIntHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + func createRawDoubleCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + func createRawIntCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + func createIntObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + func createDoubleObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric + func createIntObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + func createDoubleObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric + func getLabelSet(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.LabelSet +} +extension VideoSDKRTC.Meter { + public func createIntCounter(name: Swift.String) -> VideoSDKRTC.AnyCounterMetric + public func createDoubleCounter(name: Swift.String) -> VideoSDKRTC.AnyCounterMetric + public func createIntMeasure(name: Swift.String) -> VideoSDKRTC.AnyMeasureMetric + public func createDoubleMeasure(name: Swift.String) -> VideoSDKRTC.AnyMeasureMetric + public func createIntObserver(name: Swift.String, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + public func createDoubleObserver(name: Swift.String, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric +} +public protocol MeterBuilder : AnyObject { + func setSchemaUrl(schemaUrl: Swift.String) -> Self + func setInstrumentationVersion(instrumentationVersion: Swift.String) -> Self + func build() -> any VideoSDKRTC.StableMeter +} +@_hasMissingDesignatedInitializers public class MeterBuilderSdk : VideoSDKRTC.MeterBuilder { + public func setSchemaUrl(schemaUrl: Swift.String) -> Self + public func setInstrumentationVersion(instrumentationVersion: Swift.String) -> Self + public func build() -> any VideoSDKRTC.StableMeter + @objc deinit +} +public protocol MeterProvider : AnyObject { + func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String?) -> any VideoSDKRTC.Meter +} +public class MeterProviderBuilder { + public var resource: VideoSDKRTC.Resource { + get + } + public var metricExporter: any VideoSDKRTC.MetricExporter { + get + } + public var metricPushInterval: Foundation.TimeInterval { + get + } + public var metricProcessor: any VideoSDKRTC.MetricProcessor { + get + } + public init() + public func with(processor: any VideoSDKRTC.MetricProcessor) -> Self + public func with(exporter: any VideoSDKRTC.MetricExporter) -> Self + public func with(pushInterval: Foundation.TimeInterval) -> Self + public func with(resource: VideoSDKRTC.Resource) -> Self + public func build() -> any VideoSDKRTC.MeterProvider + @objc deinit +} +public class MeterProviderSdk : VideoSDKRTC.MeterProvider { + public static let defaultPushInterval: Swift.Double + convenience public init() + public init(metricProcessor: any VideoSDKRTC.MetricProcessor, metricExporter: any VideoSDKRTC.MetricExporter, metricPushInterval: Foundation.TimeInterval = MeterProviderSdk.defaultPushInterval, resource: VideoSDKRTC.Resource = EnvVarResource.get()) + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Meter + public func setMetricProcessor(_ metricProcessor: any VideoSDKRTC.MetricProcessor) + public func addMetricExporter(_ metricExporter: any VideoSDKRTC.MetricExporter) + public func setMetricPushInterval(_ interval: Foundation.TimeInterval) + public func setResource(_ resource: VideoSDKRTC.Resource) + @objc deinit +} +extension VideoSDKRTC.Meter { + public func addMetric(name _: Swift.String, type _: VideoSDKRTC.AggregationType, data _: [any VideoSDKRTC.MetricData]) +} +public struct Metric { + public var namespace: Swift.String { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var name: Swift.String { + get + } + public var description: Swift.String { + get + } + public var aggregationType: VideoSDKRTC.AggregationType { + get + } + public var data: [any VideoSDKRTC.MetricData] { + get + } +} +extension VideoSDKRTC.Metric : Swift.Equatable { + public static func == (lhs: VideoSDKRTC.Metric, rhs: VideoSDKRTC.Metric) -> Swift.Bool +} +extension VideoSDKRTC.Metric : Swift.Codable { + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public protocol MetricData { + var startTimestamp: Foundation.Date { get set } + var timestamp: Foundation.Date { get set } + var labels: [Swift.String : Swift.String] { get set } +} +public struct NoopMetricData : VideoSDKRTC.MetricData { + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] +} +public struct SumData : VideoSDKRTC.MetricData { + public init(startTimestamp: Foundation.Date, timestamp: Foundation.Date, labels: [Swift.String : Swift.String] = [String: String](), sum: T) + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] + public var sum: T +} +public struct SummaryData : VideoSDKRTC.MetricData { + public init(startTimestamp: Foundation.Date, timestamp: Foundation.Date, labels: [Swift.String : Swift.String] = [String: String](), count: Swift.Int, sum: T, min: T, max: T) + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] + public var count: Swift.Int + public var sum: T + public var min: T + public var max: T +} +public struct HistogramData : VideoSDKRTC.MetricData { + public init(startTimestamp: Foundation.Date, timestamp: Foundation.Date, labels: [Swift.String : Swift.String] = [String: String](), buckets: (boundaries: Swift.Array, counts: Swift.Array), count: Swift.Int, sum: T) + public var startTimestamp: Foundation.Date + public var timestamp: Foundation.Date + public var labels: [Swift.String : Swift.String] + public var buckets: (boundaries: Swift.Array, counts: Swift.Array) + public var count: Swift.Int + public var sum: T +} +extension VideoSDKRTC.NoopMetricData : Swift.Equatable, Swift.Codable { + public static func == (a: VideoSDKRTC.NoopMetricData, b: VideoSDKRTC.NoopMetricData) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.SumData : Swift.Equatable where T : Swift.Equatable { + public static func == (a: VideoSDKRTC.SumData, b: VideoSDKRTC.SumData) -> Swift.Bool +} +extension VideoSDKRTC.SumData : Swift.Codable where T : Swift.Decodable, T : Swift.Encodable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.SummaryData : Swift.Equatable where T : Swift.Equatable { + public static func == (a: VideoSDKRTC.SummaryData, b: VideoSDKRTC.SummaryData) -> Swift.Bool +} +extension VideoSDKRTC.SummaryData : Swift.Codable where T : Swift.Decodable, T : Swift.Encodable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.HistogramData : Swift.Equatable where T : Swift.Equatable { + public static func == (lhs: VideoSDKRTC.HistogramData, rhs: VideoSDKRTC.HistogramData) -> Swift.Bool +} +extension VideoSDKRTC.HistogramData : Swift.Codable where T : Swift.Decodable, T : Swift.Encodable { + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public struct MetricDescriptor : Swift.Hashable { + public var name: Swift.String { + get + } + public var description: Swift.String { + get + } + public var view: VideoSDKRTC.StableView { + get + } + public var instrument: VideoSDKRTC.InstrumentDescriptor { + get + } + public func aggregationName() -> Swift.String + public static func == (lhs: VideoSDKRTC.MetricDescriptor, rhs: VideoSDKRTC.MetricDescriptor) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public enum MetricExporterResultCode { + case success + case failureNotRetryable + case failureRetryable + public static func == (a: VideoSDKRTC.MetricExporterResultCode, b: VideoSDKRTC.MetricExporterResultCode) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public protocol MetricExporter { + func export(metrics: [VideoSDKRTC.Metric], shouldCancel: (() -> Swift.Bool)?) -> VideoSDKRTC.MetricExporterResultCode +} +public protocol MetricProcessor { + func finishCollectionCycle() -> [VideoSDKRTC.Metric] + func process(metric: VideoSDKRTC.Metric) +} +public class MetricProcessorSdk : VideoSDKRTC.MetricProcessor { + public init() + public func finishCollectionCycle() -> [VideoSDKRTC.Metric] + public func process(metric: VideoSDKRTC.Metric) + @objc deinit +} +public protocol MetricProducer : VideoSDKRTC.CollectionRegistration { + func collectAllMetrics() -> [VideoSDKRTC.StableMetricData] +} +public struct NoopMetricProducer : VideoSDKRTC.MetricProducer { + public func collectAllMetrics() -> [VideoSDKRTC.StableMetricData] +} +public enum Opentelemetry_Proto_Metrics_V1_AggregationTemporality : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unspecified + case delta + case cumulative + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality] +} +public enum Opentelemetry_Proto_Metrics_V1_DataPointFlags : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case doNotUse + case noRecordedValueMask + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags] +} +public struct Opentelemetry_Proto_Metrics_V1_MetricsData { + public var resourceMetrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ResourceMetrics { + public var resource: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource { + get + set + } + public var hasResource: Swift.Bool { + get + } + public mutating func clearResource() + public var scopeMetrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ScopeMetrics { + public var scope: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope { + get + set + } + public var hasScope: Swift.Bool { + get + } + public mutating func clearScope() + public var metrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Metric { + public var name: Swift.String + public var description_p: Swift.String + public var unit: Swift.String + public var data: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data? + public var gauge: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge { + get + set + } + public var sum: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum { + get + set + } + public var histogram: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram { + get + set + } + public var exponentialHistogram: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram { + get + set + } + public var summary: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Data : Swift.Equatable { + case gauge(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge) + case sum(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum) + case histogram(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram) + case exponentialHistogram(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram) + case summary(VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary) + public static func == (a: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data, b: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data) -> Swift.Bool + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Gauge { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Sum { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint] + public var aggregationTemporality: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality + public var isMonotonic: Swift.Bool + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Histogram { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint] + public var aggregationTemporality: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ExponentialHistogram { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint] + public var aggregationTemporality: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Summary { + public var dataPoints: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_NumberDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var value: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value? + public var asDouble: Swift.Double { + get + set + } + public var asInt: Swift.Int64 { + get + set + } + public var exemplars: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar] + public var flags: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Value : Swift.Equatable { + case asDouble(Swift.Double) + case asInt(Swift.Int64) + public static func == (a: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value, b: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value) -> Swift.Bool + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_HistogramDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var count: Swift.UInt64 + public var sum: Swift.Double { + get + set + } + public var hasSum: Swift.Bool { + get + } + public mutating func clearSum() + public var bucketCounts: [Swift.UInt64] + public var explicitBounds: [Swift.Double] + public var exemplars: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar] + public var flags: Swift.UInt32 + public var min: Swift.Double { + get + set + } + public var hasMin: Swift.Bool { + get + } + public mutating func clearMin() + public var max: Swift.Double { + get + set + } + public var hasMax: Swift.Bool { + get + } + public mutating func clearMax() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var count: Swift.UInt64 + public var sum: Swift.Double { + get + set + } + public var hasSum: Swift.Bool { + get + } + public mutating func clearSum() + public var scale: Swift.Int32 + public var zeroCount: Swift.UInt64 + public var positive: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets { + get + set + } + public var hasPositive: Swift.Bool { + get + } + public mutating func clearPositive() + public var negative: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets { + get + set + } + public var hasNegative: Swift.Bool { + get + } + public mutating func clearNegative() + public var flags: Swift.UInt32 + public var exemplars: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar] + public var min: Swift.Double { + get + set + } + public var hasMin: Swift.Bool { + get + } + public mutating func clearMin() + public var max: Swift.Double { + get + set + } + public var hasMax: Swift.Bool { + get + } + public mutating func clearMax() + public var zeroThreshold: Swift.Double + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct Buckets { + public var offset: Swift.Int32 + public var bucketCounts: [Swift.UInt64] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_SummaryDataPoint { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var startTimeUnixNano: Swift.UInt64 + public var timeUnixNano: Swift.UInt64 + public var count: Swift.UInt64 + public var sum: Swift.Double + public var quantileValues: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile] + public var flags: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public struct ValueAtQuantile { + public var quantile: Swift.Double + public var value: Swift.Double + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +public struct Opentelemetry_Proto_Metrics_V1_Exemplar { + public var filteredAttributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var timeUnixNano: Swift.UInt64 + public var value: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value? + public var asDouble: Swift.Double { + get + set + } + public var asInt: Swift.Int64 { + get + set + } + public var spanID: Foundation.Data + public var traceID: Foundation.Data + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Value : Swift.Equatable { + case asDouble(Swift.Double) + case asInt(Swift.Int64) + public static func == (a: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value, b: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value) -> Swift.Bool + } + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric.OneOf_Data : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint.OneOf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar.OneOf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_AggregationTemporality : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_DataPointFlags : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_MetricsData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ScopeMetrics) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Gauge) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Sum) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Histogram) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogram) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Summary) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_NumberDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_HistogramDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint.Buckets) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_SummaryDataPoint.ValueAtQuantile) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar, rhs: VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Exemplar) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest { + public var resourceMetrics: [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse { + public var partialSuccess: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess { + get + set + } + public var hasPartialSuccess: Swift.Bool { + get + } + public mutating func clearPartialSuccess() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess { + public var rejectedDataPoints: Swift.Int64 + public var errorMessage: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceRequest) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsServiceResponse) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Metrics_V1_ExportMetricsPartialSuccess) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public enum MetricsAdapter { + public static func toProtoResourceMetrics(stableMetricData: [VideoSDKRTC.StableMetricData]) -> [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public static func toProtoResourceMetrics(metricDataList: [VideoSDKRTC.Metric]) -> [VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_ResourceMetrics] + public static func toProtoMetric(stableMetric: VideoSDKRTC.StableMetricData) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric? + public static func toProtoMetric(metric: VideoSDKRTC.Metric) -> VideoSDKRTC.Opentelemetry_Proto_Metrics_V1_Metric? +} +public struct MetricStorageConstants { +} +public protocol MetricStorage { + var metricDescriptor: VideoSDKRTC.MetricDescriptor { get } + mutating func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + func isEmpty() -> Swift.Bool +} +public protocol WritableMetricStorage { + mutating func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + mutating func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +@_hasMissingDesignatedInitializers public class MetricStorageRegistry { + @objc deinit +} +public class MillisClock : VideoSDKRTC.Clock { + public init() + public var now: Foundation.Date { + get + } + @objc deinit +} +public class MonotonicClock : VideoSDKRTC.Clock { + public init(clock: any VideoSDKRTC.Clock) + public var now: Foundation.Date { + get + } + @objc deinit +} +public class MultiLogRecordExporter : VideoSDKRTC.LogRecordExporter { + public init(logRecordExporters: [any VideoSDKRTC.LogRecordExporter]) + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func shutdown() + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public class MultiLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + public init(logRecordProcessors: [any VideoSDKRTC.LogRecordProcessor]) + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + @objc deinit +} +public class MultiSpanExporter : VideoSDKRTC.SpanExporter { + public init(spanExporters: [any VideoSDKRTC.SpanExporter]) + public func export(spans: [VideoSDKRTC.SpanData]) -> VideoSDKRTC.SpanExporterResultCode + public func flush() -> VideoSDKRTC.SpanExporterResultCode + public func shutdown() + @objc deinit +} +public struct MultiSpanProcessor : VideoSDKRTC.SpanProcessor { + public init(spanProcessors: [any VideoSDKRTC.SpanProcessor]) + public var isStartRequired: Swift.Bool { + get + } + public var isEndRequired: Swift.Bool { + get + } + public func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + public func onEnd(span: any VideoSDKRTC.ReadableSpan) + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) +} +public struct _NameMap : Swift.ExpressibleByDictionaryLiteral { + public enum NameDescription { + case same(proto: Swift.StaticString) + case standard(proto: Swift.StaticString) + case unique(proto: Swift.StaticString, json: Swift.StaticString) + case aliased(proto: Swift.StaticString, aliases: [Swift.StaticString]) + } + public init() + public init(dictionaryLiteral elements: (Swift.Int, VideoSDKRTC._NameMap.NameDescription)...) + public typealias Key = Swift.Int + public typealias Value = VideoSDKRTC._NameMap.NameDescription +} +@_hasMissingDesignatedInitializers public class NoopLogRecordExporter : VideoSDKRTC.LogRecordExporter { + public static let instance: VideoSDKRTC.NoopLogRecordExporter + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func shutdown() + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +@_hasMissingDesignatedInitializers public class NoopLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public static let noopLogRecordProcessor: VideoSDKRTC.NoopLogRecordProcessor + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + @objc deinit +} +public protocol ObservableDoubleCounter { +} +public protocol ObservableDoubleGauge { +} +public protocol ObservableDoubleMeasurement { + func record(value: Swift.Double) + func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol ObservableDoubleUpDownCounter { +} +public struct ObservableInstrumentSdk : VideoSDKRTC.ObservableDoubleCounter, VideoSDKRTC.ObservableLongCounter, VideoSDKRTC.ObservableLongGauge, VideoSDKRTC.ObservableLongUpDownCounter, VideoSDKRTC.ObservableDoubleGauge, VideoSDKRTC.ObservableDoubleUpDownCounter { +} +public protocol ObservableLongCounter { +} +public protocol ObservableLongGauge { +} +public protocol ObservableLongMeasurement { + func record(value: Swift.Int) + func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) +} +public protocol ObservableLongUpDownCounter { +} +public func defaultOltpHTTPMetricsEndpoint() -> Foundation.URL +@_inheritsConvenienceInitializers public class OtlpHttpMetricExporter : VideoSDKRTC.OtlpHttpExporterBase, VideoSDKRTC.MetricExporter { + override public init(endpoint: Foundation.URL = defaultOltpHTTPMetricsEndpoint(), useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func export(metrics: [VideoSDKRTC.Metric], shouldCancel: (() -> Swift.Bool)?) -> VideoSDKRTC.MetricExporterResultCode + public func flush() -> VideoSDKRTC.MetricExporterResultCode + @objc deinit +} +public struct OpenTelemetry { + public static var version: Swift.String + public static var instance: VideoSDKRTC.OpenTelemetry + public var tracerProvider: any VideoSDKRTC.TracerProvider { + get + } + public var meterProvider: any VideoSDKRTC.MeterProvider { + get + } + public var stableMeterProvider: (any VideoSDKRTC.StableMeterProvider)? { + get + } + public var loggerProvider: any VideoSDKRTC.LoggerProvider { + get + } + public var baggageManager: any VideoSDKRTC.BaggageManager { + get + } + public var propagators: any VideoSDKRTC.ContextPropagators { + get + } + public var contextProvider: VideoSDKRTC.OpenTelemetryContextProvider { + get + } + public static func registerStableMeterProvider(meterProvider: any VideoSDKRTC.StableMeterProvider) + public static func registerTracerProvider(tracerProvider: any VideoSDKRTC.TracerProvider) + public static func registerMeterProvider(meterProvider: any VideoSDKRTC.MeterProvider) + public static func registerLoggerProvider(loggerProvider: any VideoSDKRTC.LoggerProvider) + public static func registerBaggageManager(baggageManager: any VideoSDKRTC.BaggageManager) + public static func registerPropagators(textPropagators: [any VideoSDKRTC.TextMapPropagator], baggagePropagator: any VideoSDKRTC.TextMapBaggagePropagator) + public static func registerContextManager(contextManager: any VideoSDKRTC.ContextManager) +} +public enum OpenTelemetryContextKeys : Swift.String { + case span + case baggage + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct OpenTelemetryContextProvider { + public var activeSpan: (any VideoSDKRTC.Span)? { + get + } + public var activeBaggage: (any VideoSDKRTC.Baggage)? { + get + } + public func setActiveSpan(_ span: any VideoSDKRTC.Span) + public func setActiveBaggage(_ baggage: any VideoSDKRTC.Baggage) + public func removeContextForSpan(_ span: any VideoSDKRTC.Span) + public func removeContextForBaggage(_ baggage: any VideoSDKRTC.Baggage) +} +public struct OtlpConfiguration { + public static let DefaultTimeoutInterval: Foundation.TimeInterval + public let headers: [(Swift.String, Swift.String)]? + public let timeout: Foundation.TimeInterval + public init(timeout: Foundation.TimeInterval = OtlpConfiguration.DefaultTimeoutInterval, headers: [(Swift.String, Swift.String)]? = nil) +} +public class OtlpHttpExporterBase { + public init(endpoint: Foundation.URL, useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func createRequest(body: any VideoSDKRTC.Message, endpoint: Foundation.URL, authToken: Swift.String) -> Foundation.URLRequest + public func shutdown() + @objc deinit +} +public func defaultOltpHttpLoggingEndpoint() -> Foundation.URL +@_inheritsConvenienceInitializers public class OtlpHttpLogExporter : VideoSDKRTC.OtlpHttpExporterBase, VideoSDKRTC.LogRecordExporter { + override public init(endpoint: Foundation.URL = defaultOltpHttpLoggingEndpoint(), useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func export(logRecords: [VideoSDKRTC.ReadableLogRecord]) -> VideoSDKRTC.ExportResult + public func forceFlush() -> VideoSDKRTC.ExportResult + public func flush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public func defaultOltpHttpTracesEndpoint() -> Foundation.URL +@_inheritsConvenienceInitializers public class OtlpHttpTraceExporter : VideoSDKRTC.OtlpHttpExporterBase, VideoSDKRTC.SpanExporter { + override public init(endpoint: Foundation.URL = defaultOltpHttpTracesEndpoint(), useSession: Foundation.URLSession? = nil, authToken: Swift.String) + public func export(spans: [VideoSDKRTC.SpanData]) -> VideoSDKRTC.SpanExporterResultCode + public func flush() -> VideoSDKRTC.SpanExporterResultCode + @objc deinit +} +public struct OtlpSpan : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct Attribute : Swift.Codable { + public struct Value : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public enum OTPCConstants { + public enum HTTP { + public static let userAgent: Swift.String + } +} +@_hasMissingDesignatedInitializers public class Participant : Swift.Equatable { + public var id: Swift.String { + get + } + public var displayName: Swift.String { + get + } + public var videoQuality: VideoSDKRTC.VideoQuality { + get + } + public var isLocal: Swift.Bool { + get + } + public var streams: [Swift.String : VideoSDKRTC.MediaStream] { + get + } + public var pinState: VideoSDKRTC.ParticipantPinState + public var mode: VideoSDKRTC.Mode + @objc deinit +} +extension VideoSDKRTC.Participant { + public func enableMic() + public func disableMic() + public func enableWebcam() + public func disableWebcam() + public func remove() + public func participantPinStateChanged(pinState: VideoSDKRTC.ParticipantPinState) + public func participantModeChanged(mode: VideoSDKRTC.Mode) + public func getAudioStats() -> [Swift.String : Any]? + public func getVideoStats() -> [Swift.String : Any]? +} +extension VideoSDKRTC.Participant { + public func addStream(_ stream: VideoSDKRTC.MediaStream) + @discardableResult + public func removeStream(_ streamId: Swift.String) -> VideoSDKRTC.MediaStream? + public func removeAllStreams() + public func setQuality(_ quality: VideoSDKRTC.VideoQuality) + public func pin(_ peerId: Swift.String = "", _ pinType: VideoSDKRTC.PinType = .SHARE_AND_CAM) + public func unpin(_ pinType: VideoSDKRTC.PinType = .SHARE_AND_CAM) + public func setPinState(pinState: VideoSDKRTC.ParticipantPinState, peerId: Swift.String = "") +} +extension VideoSDKRTC.Participant { + public func addEventListener(_ listener: any VideoSDKRTC.ParticipantEventListener) + public func removeEventListener(_ listener: any VideoSDKRTC.ParticipantEventListener) +} +extension VideoSDKRTC.Participant { + public static func == (lhs: VideoSDKRTC.Participant, rhs: VideoSDKRTC.Participant) -> Swift.Bool +} +public protocol ParticipantEventListener { + func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) + func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +} +extension VideoSDKRTC.ParticipantEventListener { + public func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) + public func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +} +public enum PinType : Swift.String { + case SHARE_AND_CAM, CAM, SHARE + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct ParticipantPinState : Swift.Codable { + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +@_hasMissingDesignatedInitializers public class PointData : Swift.Equatable { + public var startEpochNanos: Swift.UInt64 + public var endEpochNanos: Swift.UInt64 + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] + public var exemplars: [VideoSDKRTC.ExemplarData] + public static func - (left: VideoSDKRTC.PointData, right: VideoSDKRTC.PointData) -> Self + public static func == (lhs: VideoSDKRTC.PointData, rhs: VideoSDKRTC.PointData) -> Swift.Bool + @objc deinit +} +public protocol ProtobufAPIVersion_3 { +} +public protocol ProtobufAPIVersionCheck { + associatedtype Version : VideoSDKRTC.ProtobufAPIVersion_3 +} +public struct _ProtobufMap where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.FieldType { + public typealias Key = KeyType.BaseType + public typealias Value = ValueType.BaseType + public typealias BaseType = Swift.Dictionary.Key, VideoSDKRTC._ProtobufMap.Value> +} +public struct _ProtobufMessageMap where KeyType : VideoSDKRTC.MapKeyType, ValueType : Swift.Hashable, ValueType : VideoSDKRTC.Message { + public typealias Key = KeyType.BaseType + public typealias Value = ValueType + public typealias BaseType = Swift.Dictionary.Key, VideoSDKRTC._ProtobufMessageMap.Value> +} +public struct _ProtobufEnumMap where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.Enum { + public typealias Key = KeyType.BaseType + public typealias Value = ValueType + public typealias BaseType = Swift.Dictionary.Key, VideoSDKRTC._ProtobufEnumMap.Value> +} +public protocol _ProtoNameProviding { + static var _protobuf_nameMap: VideoSDKRTC._NameMap { get } +} +public struct ProxyMeter : VideoSDKRTC.Meter { + public func createRawDoubleCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + public func createRawIntCounter(name: Swift.String) -> VideoSDKRTC.AnyRawCounterMetric + public func createRawDoubleHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + public func createRawIntHistogram(name: Swift.String) -> VideoSDKRTC.AnyRawHistogramMetric + public func getLabelSet(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.LabelSet + public func createIntCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + public func createDoubleCounter(name: Swift.String, monotonic: Swift.Bool) -> VideoSDKRTC.AnyCounterMetric + public func createIntMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + public func createDoubleMeasure(name: Swift.String, absolute: Swift.Bool) -> VideoSDKRTC.AnyMeasureMetric + public func createIntHistogram(name: Swift.String, explicitBoundaries: Swift.Array? = nil, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + public func createDoubleHistogram(name: Swift.String, explicitBoundaries: Swift.Array?, absolute: Swift.Bool) -> VideoSDKRTC.AnyHistogramMetric + public func createIntObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + public func createDoubleObservableGauge(name: Swift.String, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric + public func createIntObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.IntObserverMetric) -> Swift.Void) -> any VideoSDKRTC.IntObserverMetric + public func createDoubleObserver(name: Swift.String, absolute: Swift.Bool, callback: @escaping (any VideoSDKRTC.DoubleObserverMetric) -> Swift.Void) -> any VideoSDKRTC.DoubleObserverMetric +} +@_hasMissingDesignatedInitializers public class PubSub { + @objc deinit +} +extension VideoSDKRTC.PubSub { + public func publish(topic: Swift.String, message: Swift.String, options: [Swift.String : Any] = [:]) + public func subscribe(topic: Swift.String, forListener listener: any VideoSDKRTC.PubSubMessageListener) + public func unsubscribe(topic: Swift.String, forListener listener: any VideoSDKRTC.PubSubMessageListener) + public func getMessagesForTopic(_ topic: Swift.String) -> [VideoSDKRTC.PubSubMessage] +} +@objc @_hasMissingDesignatedInitializers public class PubSubMessage : ObjectiveC.NSObject { + public var id: Swift.String + public var topic: Swift.String + public var message: Swift.String + public var senderId: Swift.String + public var senderName: Swift.String + public var timestamp: Swift.String + @objc deinit +} +public protocol PubSubMessageListener { + func onMessageReceived(_ message: VideoSDKRTC.PubSubMessage) +} +public struct RandomIdGenerator : VideoSDKRTC.IdGenerator { + public init() + public func generateSpanId() -> VideoSDKRTC.SpanId + public func generateTraceId() -> VideoSDKRTC.TraceId +} +public protocol RawCounterMetric { + associatedtype T + func record(sum: Self.T, startDate: Foundation.Date, endDate: Foundation.Date, labels: [Swift.String : Swift.String]) + func record(sum: Self.T, startDate: Foundation.Date, endDate: Foundation.Date, labelset: VideoSDKRTC.LabelSet) + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawCounterMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawCounterMetric +} +public struct AnyRawCounterMetric : VideoSDKRTC.RawCounterMetric { + public init(_ countable: U) where T == U.T, U : VideoSDKRTC.RawCounterMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawCounterMetric + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labelset: VideoSDKRTC.LabelSet) + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labels: [Swift.String : Swift.String]) +} +public struct NoopRawCounterMetric : VideoSDKRTC.RawCounterMetric { + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labels: [Swift.String : Swift.String]) + public func record(sum: T, startDate: Foundation.Date, endDate: Foundation.Date, labelset: VideoSDKRTC.LabelSet) + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawCounterMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawCounterMetric +} +public protocol RawHistogramMetric { + associatedtype T + func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawHistogramMetric + func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawHistogramMetric + func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: Self.T, labelset: VideoSDKRTC.LabelSet) + func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: Self.T, labels: [Swift.String : Swift.String]) +} +public struct AnyRawHistogramMetric : VideoSDKRTC.RawHistogramMetric { + public init(_ histogram: U) where T == U.T, U : VideoSDKRTC.RawHistogramMetric + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawHistogramMetric + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labels: [Swift.String : Swift.String]) + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labelset: VideoSDKRTC.LabelSet) +} +public struct NoopRawHistogramMetric : VideoSDKRTC.RawHistogramMetric { + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labelset: VideoSDKRTC.LabelSet) + public func record(explicitBoundaries: Swift.Array, counts: Swift.Array, startDate: Foundation.Date, endDate: Foundation.Date, count: Swift.Int, sum: T, labels: [Swift.String : Swift.String]) + public init() + public func bind(labelset: VideoSDKRTC.LabelSet) -> VideoSDKRTC.BoundRawHistogramMetric + public func bind(labels: [Swift.String : Swift.String]) -> VideoSDKRTC.BoundRawHistogramMetric +} +public struct ReadableLogRecord : Swift.Codable { + public init(resource: VideoSDKRTC.Resource, instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo, timestamp: Foundation.Date, observedTimestamp: Foundation.Date? = nil, spanContext: VideoSDKRTC.SpanContext? = nil, severity: VideoSDKRTC.Severity? = nil, body: Swift.String? = nil, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var timestamp: Foundation.Date { + get + } + public var observedTimestamp: Foundation.Date? { + get + } + public var spanContext: VideoSDKRTC.SpanContext? { + get + } + public var severity: VideoSDKRTC.Severity? { + get + } + public var body: Swift.String? { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public protocol ReadableSpan : VideoSDKRTC.Span { + var name: Swift.String { get set } + var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { get } + func toSpanData() -> VideoSDKRTC.SpanData + var hasEnded: Swift.Bool { get } + var latency: Foundation.TimeInterval { get } +} +@_hasMissingDesignatedInitializers public class RecordEventsReadableSpan : VideoSDKRTC.ReadableSpan { + public var isRecording: Swift.Bool + public var name: Swift.String { + get + set + } + public var spanLimits: VideoSDKRTC.SpanLimits { + get + } + public var context: VideoSDKRTC.SpanContext { + get + } + public var parentContext: VideoSDKRTC.SpanContext? { + get + } + public var hasRemoteParent: Swift.Bool { + get + } + public var spanProcessor: any VideoSDKRTC.SpanProcessor { + get + } + public var links: [VideoSDKRTC.SpanData.Link] { + get + } + public var totalRecordedLinks: Swift.Int { + get + } + public var maxNumberOfAttributes: Swift.Int { + get + } + public var maxNumberOfAttributesPerEvent: Swift.Int { + get + } + public var kind: VideoSDKRTC.SpanKind { + get + } + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var startTime: Foundation.Date { + get + } + public var events: VideoSDKRTC.ArrayWithCapacity { + get + } + public var totalAttributeCount: Swift.Int { + get + } + public var totalRecordedEvents: Swift.Int { + get + } + public var status: VideoSDKRTC.Status { + get + set + } + public var latency: Foundation.TimeInterval { + get + } + public var endTime: Foundation.Date? { + get + } + public var hasEnded: Swift.Bool { + get + } + public static func startSpan(context: VideoSDKRTC.SpanContext, name: Swift.String, instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo, kind: VideoSDKRTC.SpanKind, parentContext: VideoSDKRTC.SpanContext?, hasRemoteParent: Swift.Bool, spanLimits: VideoSDKRTC.SpanLimits, spanProcessor: any VideoSDKRTC.SpanProcessor, clock: any VideoSDKRTC.Clock, resource: VideoSDKRTC.Resource, attributes: VideoSDKRTC.AttributesDictionary, links: [VideoSDKRTC.SpanData.Link], totalRecordedLinks: Swift.Int, startTime: Foundation.Date?) -> VideoSDKRTC.RecordEventsReadableSpan + public func toSpanData() -> VideoSDKRTC.SpanData + public func setAttribute(key: Swift.String, value: VideoSDKRTC.AttributeValue?) + public func addEvent(name: Swift.String) + public func addEvent(name: Swift.String, timestamp: Foundation.Date) + public func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue], timestamp: Foundation.Date) + public func end() + public func end(time: Foundation.Date) + public var description: Swift.String { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class RegisteredReader : Swift.Equatable, Swift.Hashable { + final public let id: Swift.Int32 + final public let reader: any VideoSDKRTC.StableMetricReader + final public let registry: VideoSDKRTC.StableViewRegistry + public var lastCollectedEpochNanos: Swift.UInt64 + public func hash(into hasher: inout Swift.Hasher) + public static func == (lhs: VideoSDKRTC.RegisteredReader, rhs: VideoSDKRTC.RegisteredReader) -> Swift.Bool + @objc deinit + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class RegisteredView { + public var selector: VideoSDKRTC.InstrumentSelector { + get + } + public var view: VideoSDKRTC.StableView { + get + } + public var attributeProcessor: VideoSDKRTC.AttributeProcessor { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class ReservoirCell { + @objc deinit +} +public protocol ReservoirCellSelector { + func reservoirCellIndex(for cells: [VideoSDKRTC.ReservoirCell], value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Int + func reservoirCellIndex(for cells: [VideoSDKRTC.ReservoirCell], value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Swift.Int + func reset() +} +public struct Resource : Swift.Equatable, Swift.Hashable, Swift.Codable { + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] + public init() + public init(attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public mutating func merge(other: VideoSDKRTC.Resource) + public func merging(other: VideoSDKRTC.Resource) -> VideoSDKRTC.Resource + public static func == (a: VideoSDKRTC.Resource, b: VideoSDKRTC.Resource) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public struct Opentelemetry_Proto_Resource_V1_Resource { + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource, rhs: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct ResourceAdapter { + public static func toProtoResource(resource: VideoSDKRTC.Resource) -> VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource +} +public enum ResourceAttributes : Swift.String { + case browserBrands + case browserPlatform + case browserMobile + case browserLanguage + case userAgentOriginal + case cloudProvider + case cloudAccountId + case cloudRegion + case cloudResourceId + case cloudAvailabilityZone + case cloudPlatform + case awsEcsContainerArn + case awsEcsClusterArn + case awsEcsLaunchtype + case awsEcsTaskArn + case awsEcsTaskFamily + case awsEcsTaskRevision + case awsEksClusterArn + case awsLogGroupNames + case awsLogGroupArns + case awsLogStreamNames + case awsLogStreamArns + case herokuReleaseCreationTimestamp + case herokuReleaseCommit + case herokuAppId + case containerName + case containerId + case containerRuntime + case containerImageName + case containerImageTag + case deploymentEnvironment + case deviceId + case deviceModelIdentifier + case deviceModelName + case deviceManufacturer + case faasName + case faasVersion + case faasInstance + case faasMaxMemory + case hostId + case hostName + case hostType + case hostArch + case hostImageName + case hostImageId + case hostImageVersion + case k8sClusterName + case k8sNodeName + case k8sNodeUid + case k8sNamespaceName + case k8sPodUid + case k8sPodName + case k8sContainerName + case k8sContainerRestartCount + case k8sReplicasetUid + case k8sReplicasetName + case k8sDeploymentUid + case k8sDeploymentName + case k8sStatefulsetUid + case k8sStatefulsetName + case k8sDaemonsetUid + case k8sDaemonsetName + case k8sJobUid + case k8sJobName + case k8sCronjobUid + case k8sCronjobName + case osType + case osDescription + case osName + case osVersion + case processPid + case processParentPid + case processExecutableName + case processExecutablePath + case processCommand + case processCommandLine + case processCommandArgs + case processOwner + case processRuntimeName + case processRuntimeVersion + case processRuntimeDescription + case serviceName + case serviceNamespace + case serviceInstanceId + case serviceVersion + case telemetrySdkName + case telemetrySdkLanguage + case telemetrySdkVersion + case telemetryAutoVersion + case webengineName + case webengineVersion + case webengineDescription + case otelScopeName + case otelScopeVersion + case otelLibraryName + case otelLibraryVersion + public struct CloudProviderValues : Swift.CustomStringConvertible { + public static let alibabaCloud: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let aws: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let azure: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let gcp: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let heroku: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let ibmCloud: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public static let tencentCloud: VideoSDKRTC.ResourceAttributes.CloudProviderValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct CloudPlatformValues : Swift.CustomStringConvertible { + public static let alibabaCloudEcs: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let alibabaCloudFc: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let alibabaCloudOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsEc2: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsEcs: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsEks: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsLambda: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsElasticBeanstalk: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsAppRunner: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let awsOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureVm: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureContainerInstances: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureAks: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureFunctions: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureAppService: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let azureOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpComputeEngine: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpCloudRun: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpKubernetesEngine: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpCloudFunctions: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpAppEngine: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let gcpOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let ibmCloudOpenshift: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let tencentCloudCvm: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let tencentCloudEks: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public static let tencentCloudScf: VideoSDKRTC.ResourceAttributes.CloudPlatformValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum AwsEcsLaunchtypeValues : Swift.String { + case ec2 + case fargate + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct HostArchValues : Swift.CustomStringConvertible { + public static let amd64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let arm32: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let arm64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let ia64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let ppc32: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let ppc64: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let s390x: VideoSDKRTC.ResourceAttributes.HostArchValues + public static let x86: VideoSDKRTC.ResourceAttributes.HostArchValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct OsTypeValues : Swift.CustomStringConvertible { + public static let windows: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let linux: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let darwin: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let freebsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let netbsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let openbsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let dragonflybsd: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let hpux: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let aix: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let solaris: VideoSDKRTC.ResourceAttributes.OsTypeValues + public static let zOs: VideoSDKRTC.ResourceAttributes.OsTypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct TelemetrySdkLanguageValues : Swift.CustomStringConvertible { + public static let cpp: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let dotnet: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let erlang: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let go: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let java: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let nodejs: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let php: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let python: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let ruby: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let webjs: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public static let swift: VideoSDKRTC.ResourceAttributes.TelemetrySdkLanguageValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public func == (left: VideoSDKRTC.ResourceAttributes, right: Swift.String) -> Swift.Bool +public func == (left: Swift.String, right: VideoSDKRTC.ResourceAttributes) -> Swift.Bool +public protocol Sampler : AnyObject, Swift.CustomStringConvertible { + func shouldSample(parentContext: VideoSDKRTC.SpanContext?, traceId: VideoSDKRTC.TraceId, name: Swift.String, kind: VideoSDKRTC.SpanKind, attributes: [Swift.String : VideoSDKRTC.AttributeValue], parentLinks: [VideoSDKRTC.SpanData.Link]) -> any VideoSDKRTC.Decision +} +public protocol Decision { + var isSampled: Swift.Bool { get } + var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { get } +} +public enum Samplers { + public static var alwaysOn: any VideoSDKRTC.Sampler + public static var alwaysOff: any VideoSDKRTC.Sampler + public static func traceIdRatio(ratio: Swift.Double) -> any VideoSDKRTC.Sampler + public static func parentBased(root: any VideoSDKRTC.Sampler, remoteParentSampled: (any VideoSDKRTC.Sampler)? = nil, remoteParentNotSampled: (any VideoSDKRTC.Sampler)? = nil, localParentSampled: (any VideoSDKRTC.Sampler)? = nil, localParentNotSampled: (any VideoSDKRTC.Sampler)? = nil) -> any VideoSDKRTC.Sampler +} +public enum SemanticAttributes : Swift.String { + case exceptionType + case exceptionMessage + case exceptionStacktrace + case httpMethod + case httpStatusCode + case netProtocolName + case netProtocolVersion + case netPeerName + case netPeerPort + case httpScheme + case httpRoute + case netHostName + case netHostPort + case eventName + case eventDomain + case logRecordUid + case featureFlagKey + case featureFlagProviderName + case featureFlagVariant + case awsLambdaInvokedArn + case cloudeventsEventId + case cloudeventsEventSource + case cloudeventsEventSpecVersion + case cloudeventsEventType + case cloudeventsEventSubject + case opentracingRefType + case dbSystem + case dbConnectionString + case dbUser + case dbJdbcDriverClassname + case dbName + case dbStatement + case dbOperation + case netSockPeerAddr + case netSockPeerPort + case netSockFamily + case netSockPeerName + case netTransport + case dbMssqlInstanceName + case dbCassandraPageSize + case dbCassandraConsistencyLevel + case dbCassandraTable + case dbCassandraIdempotence + case dbCassandraSpeculativeExecutionCount + case dbCassandraCoordinatorId + case dbCassandraCoordinatorDc + case dbRedisDatabaseIndex + case dbMongodbCollection + case dbSqlTable + case dbCosmosdbClientId + case dbCosmosdbOperationType + case userAgentOriginal + case dbCosmosdbConnectionMode + case dbCosmosdbContainer + case dbCosmosdbRequestContentLength + case dbCosmosdbStatusCode + case dbCosmosdbSubStatusCode + case dbCosmosdbRequestCharge + case otelStatusCode + case otelStatusDescription + case faasTrigger + case faasInvocationId + case cloudResourceId + case faasDocumentCollection + case faasDocumentOperation + case faasDocumentTime + case faasDocumentName + case httpTarget + case httpClientIp + case netSockHostAddr + case netSockHostPort + case messagingSystem + case messagingOperation + case messagingBatchMessageCount + case messagingMessageId + case messagingMessageConversationId + case messagingMessagePayloadSizeBytes + case messagingMessagePayloadCompressedSizeBytes + case faasTime + case faasCron + case faasColdstart + case faasInvokedName + case faasInvokedProvider + case faasInvokedRegion + case netHostConnectionType + case netHostConnectionSubtype + case netHostCarrierName + case netHostCarrierMcc + case netHostCarrierMnc + case netHostCarrierIcc + case peerService + case enduserId + case enduserRole + case enduserScope + case threadId + case threadName + case codeFunction + case codeNamespace + case codeFilepath + case codeLineno + case codeColumn + case httpRequestContentLength + case httpResponseContentLength + case httpUrl + case httpResendCount + case rpcSystem + case rpcService + case rpcMethod + case awsRequestId + case awsDynamodbTableNames + case awsDynamodbConsumedCapacity + case awsDynamodbItemCollectionMetrics + case awsDynamodbProvisionedReadCapacity + case awsDynamodbProvisionedWriteCapacity + case awsDynamodbConsistentRead + case awsDynamodbProjection + case awsDynamodbLimit + case awsDynamodbAttributesToGet + case awsDynamodbIndexName + case awsDynamodbSelect + case awsDynamodbGlobalSecondaryIndexes + case awsDynamodbLocalSecondaryIndexes + case awsDynamodbExclusiveStartTable + case awsDynamodbTableCount + case awsDynamodbScanForward + case awsDynamodbSegment + case awsDynamodbTotalSegments + case awsDynamodbCount + case awsDynamodbScannedCount + case awsDynamodbAttributeDefinitions + case awsDynamodbGlobalSecondaryIndexUpdates + case awsS3Bucket + case awsS3Key + case awsS3CopySource + case awsS3UploadId + case awsS3Delete + case awsS3PartNumber + case graphqlOperationName + case graphqlOperationType + case graphqlDocument + case messagingDestinationName + case messagingSourceName + case messagingDestinationTemplate + case messagingDestinationTemporary + case messagingDestinationAnonymous + case messagingSourceTemplate + case messagingSourceTemporary + case messagingSourceAnonymous + case messagingConsumerId + case messagingRabbitmqDestinationRoutingKey + case messagingKafkaMessageKey + case messagingKafkaConsumerGroup + case messagingKafkaClientId + case messagingKafkaDestinationPartition + case messagingKafkaSourcePartition + case messagingKafkaMessageOffset + case messagingKafkaMessageTombstone + case messagingRocketmqNamespace + case messagingRocketmqClientGroup + case messagingRocketmqClientId + case messagingRocketmqMessageDeliveryTimestamp + case messagingRocketmqMessageDelayTimeLevel + case messagingRocketmqMessageGroup + case messagingRocketmqMessageType + case messagingRocketmqMessageTag + case messagingRocketmqMessageKeys + case messagingRocketmqConsumptionModel + case rpcGrpcStatusCode + case rpcJsonrpcVersion + case rpcJsonrpcRequestId + case rpcJsonrpcErrorCode + case rpcJsonrpcErrorMessage + case messageType + case messageId + case messageCompressedSize + case messageUncompressedSize + case rpcConnectRpcErrorCode + case exceptionEscaped + case exception + public struct EventDomainValues : Swift.CustomStringConvertible { + public static let browser: VideoSDKRTC.SemanticAttributes.EventDomainValues + public static let device: VideoSDKRTC.SemanticAttributes.EventDomainValues + public static let k8s: VideoSDKRTC.SemanticAttributes.EventDomainValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum OpentracingRefTypeValues : Swift.String { + case child_of + case follows_from + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct DbSystemValues : Swift.CustomStringConvertible { + public static let otherSql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mssql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mssqlcompact: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mysql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let oracle: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let db2: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let postgresql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let redshift: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hive: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cloudscape: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hsqldb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let progress: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let maxdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hanadb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let ingres: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let firstsql: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let edb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cache: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let adabas: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let firebird: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let derby: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let filemaker: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let informix: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let instantdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let interbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mariadb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let netezza: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let pervasive: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let pointbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let sqlite: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let sybase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let teradata: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let vertica: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let h2: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let coldfusion: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cassandra: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let hbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let mongodb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let redis: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let couchbase: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let couchdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cosmosdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let dynamodb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let neo4j: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let geode: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let elasticsearch: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let memcached: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let cockroachdb: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let opensearch: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let clickhouse: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let spanner: VideoSDKRTC.SemanticAttributes.DbSystemValues + public static let trino: VideoSDKRTC.SemanticAttributes.DbSystemValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetSockFamilyValues : Swift.CustomStringConvertible { + public static let inet: VideoSDKRTC.SemanticAttributes.NetSockFamilyValues + public static let inet6: VideoSDKRTC.SemanticAttributes.NetSockFamilyValues + public static let unix: VideoSDKRTC.SemanticAttributes.NetSockFamilyValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetTransportValues : Swift.CustomStringConvertible { + public static let ipTcp: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let ipUdp: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let pipe: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let inproc: VideoSDKRTC.SemanticAttributes.NetTransportValues + public static let other: VideoSDKRTC.SemanticAttributes.NetTransportValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum DbCassandraConsistencyLevelValues : Swift.String { + case all + case each_quorum + case quorum + case local_quorum + case one + case two + case three + case local_one + case any + case serial + case local_serial + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct DbCosmosdbOperationTypeValues : Swift.CustomStringConvertible { + public static let invalid: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let create: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let patch: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let read: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let readFeed: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let delete: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let replace: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let execute: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let query: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let head: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let headFeed: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let upsert: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let batch: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let queryPlan: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public static let executeJavascript: VideoSDKRTC.SemanticAttributes.DbCosmosdbOperationTypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum DbCosmosdbConnectionModeValues : Swift.String { + case gateway + case direct + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum OtelStatusCodeValues : Swift.String { + case ok + case error + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum FaasTriggerValues : Swift.String { + case datasource + case http + case pubsub + case timer + case other + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct FaasDocumentOperationValues : Swift.CustomStringConvertible { + public static let insert: VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues + public static let edit: VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues + public static let delete: VideoSDKRTC.SemanticAttributes.FaasDocumentOperationValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct MessagingOperationValues : Swift.CustomStringConvertible { + public static let publish: VideoSDKRTC.SemanticAttributes.MessagingOperationValues + public static let receive: VideoSDKRTC.SemanticAttributes.MessagingOperationValues + public static let process: VideoSDKRTC.SemanticAttributes.MessagingOperationValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct FaasInvokedProviderValues : Swift.CustomStringConvertible { + public static let alibabaCloud: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let aws: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let azure: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let gcp: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public static let tencentCloud: VideoSDKRTC.SemanticAttributes.FaasInvokedProviderValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetHostConnectionTypeValues : Swift.CustomStringConvertible { + public static let wifi: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let wired: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let cell: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let unavailable: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public static let unknown: VideoSDKRTC.SemanticAttributes.NetHostConnectionTypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct NetHostConnectionSubtypeValues : Swift.CustomStringConvertible { + public static let gprs: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let edge: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let umts: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let cdma: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let evdo0: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let evdoA: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let cdma20001xrtt: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hsdpa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hsupa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hspa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let iden: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let evdoB: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let lte: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let ehrpd: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let hspap: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let gsm: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let tdScdma: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let iwlan: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let nr: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let nrnsa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public static let lteCa: VideoSDKRTC.SemanticAttributes.NetHostConnectionSubtypeValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public struct RpcSystemValues : Swift.CustomStringConvertible { + public static let grpc: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let javaRmi: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let dotnetWcf: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let apacheDubbo: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public static let connectRpc: VideoSDKRTC.SemanticAttributes.RpcSystemValues + public init(_ customValue: Swift.String) + public var description: Swift.String { + get + } + } + public enum GraphqlOperationTypeValues : Swift.String { + case query + case mutation + case subscription + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum MessagingRocketmqMessageTypeValues : Swift.String { + case normal + case fifo + case delay + case transaction + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum MessagingRocketmqConsumptionModelValues : Swift.String { + case clustering + case broadcasting + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum RpcGrpcStatusCodeValues : Swift.Int { + case ok + case cancelled + case unknown + case invalid_argument + case deadline_exceeded + case not_found + case already_exists + case permission_denied + case resource_exhausted + case failed_precondition + case aborted + case out_of_range + case unimplemented + case `internal` + case unavailable + case data_loss + case unauthenticated + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } + } + public enum MessageTypeValues : Swift.String { + case sent + case received + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public enum RpcConnectRpcErrorCodeValues : Swift.String { + case cancelled + case unknown + case invalid_argument + case deadline_exceeded + case not_found + case already_exists + case permission_denied + case resource_exhausted + case failed_precondition + case aborted + case out_of_range + case unimplemented + case `internal` + case unavailable + case data_loss + case unauthenticated + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum Severity : Swift.Int, Swift.Comparable, Swift.CustomStringConvertible, Swift.Codable { + case trace, trace2, trace3, trace4, debug, debug2, debug3, debug4, info, info2, info3, info4, warn, warn2, warn3, warn4, error, error2, error3, error4, fatal, fatal2, fatal3, fatal4 + public var description: Swift.String { + get + } + public static func < (lhs: VideoSDKRTC.Severity, rhs: VideoSDKRTC.Severity) -> Swift.Bool + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public struct SimpleExtensionMap : VideoSDKRTC.ExtensionMap, Swift.ExpressibleByArrayLiteral { + public typealias Element = VideoSDKRTC.AnyMessageExtension + public init() + public init(arrayLiteral: any VideoSDKRTC.AnyMessageExtension...) + public init(_ others: VideoSDKRTC.SimpleExtensionMap...) + public subscript(messageType: any VideoSDKRTC.Message.Type, fieldNumber: Swift.Int) -> (any VideoSDKRTC.AnyMessageExtension)? { + get + } + public func fieldNumberForProto(messageType: any VideoSDKRTC.Message.Type, protoFieldName: Swift.String) -> Swift.Int? + public mutating func insert(_ newValue: any VideoSDKRTC.AnyMessageExtension) + public mutating func insert(contentsOf: [any VideoSDKRTC.AnyMessageExtension]) + public mutating func formUnion(_ other: VideoSDKRTC.SimpleExtensionMap) + public func union(_ other: VideoSDKRTC.SimpleExtensionMap) -> VideoSDKRTC.SimpleExtensionMap + public typealias ArrayLiteralElement = any VideoSDKRTC.AnyMessageExtension +} +public class SimpleLogRecordProcessor : VideoSDKRTC.LogRecordProcessor { + public init(logRecordExporter: any VideoSDKRTC.LogRecordExporter) + public func onEmit(logRecord: VideoSDKRTC.ReadableLogRecord) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + @objc deinit +} +public struct SimpleSpanProcessor : VideoSDKRTC.SpanProcessor { + public let isStartRequired: Swift.Bool + public let isEndRequired: Swift.Bool + public func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + public mutating func onEnd(span: any VideoSDKRTC.ReadableSpan) + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) + public init(spanExporter: any VideoSDKRTC.SpanExporter) + public func reportingOnlySampled(sampled: Swift.Bool) -> VideoSDKRTC.SimpleSpanProcessor +} +public struct Google_Protobuf_SourceContext { + public var fileName: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_SourceContext : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_SourceContext : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_SourceContext, rhs: VideoSDKRTC.Google_Protobuf_SourceContext) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public protocol Span : AnyObject, Swift.CustomStringConvertible { + var kind: VideoSDKRTC.SpanKind { get } + var context: VideoSDKRTC.SpanContext { get } + var isRecording: Swift.Bool { get } + var status: VideoSDKRTC.Status { get set } + var name: Swift.String { get set } + func setAttribute(key: Swift.String, value: VideoSDKRTC.AttributeValue?) + func addEvent(name: Swift.String) + func addEvent(name: Swift.String, timestamp: Foundation.Date) + func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + func addEvent(name: Swift.String, attributes: [Swift.String : VideoSDKRTC.AttributeValue], timestamp: Foundation.Date) + func end() + func end(time: Foundation.Date) +} +extension VideoSDKRTC.Span { + public func hash(into hasher: inout Swift.Hasher) + public static func == (lhs: any VideoSDKRTC.Span, rhs: any VideoSDKRTC.Span) -> Swift.Bool +} +extension VideoSDKRTC.Span { + public func setAttribute(key: Swift.String, value: Swift.String) + public func setAttribute(key: Swift.String, value: Swift.Int) + public func setAttribute(key: Swift.String, value: Swift.Double) + public func setAttribute(key: Swift.String, value: Swift.Bool) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.String) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.Int) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.Double) + public func setAttribute(key: VideoSDKRTC.SemanticAttributes, value: Swift.Bool) +} +extension VideoSDKRTC.Span { + public func putHttpHostAttribute(string hostName: Swift.String, int port: Swift.Int) + public func putHttpStatusCode(statusCode: Swift.Int, reasonPhrase: Swift.String) +} +public struct SpanAdapter { + public static func toProtoResourceSpans(spanDataList: [VideoSDKRTC.SpanData]) -> [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans] + public static func toProtoSpan(spanData: VideoSDKRTC.SpanData) -> VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span +} +public protocol SpanBuilder : AnyObject { + @discardableResult + func setParent(_ parent: any VideoSDKRTC.Span) -> Self + @discardableResult + func setParent(_ parent: VideoSDKRTC.SpanContext) -> Self + @discardableResult + func setNoParent() -> Self + @discardableResult + func addLink(spanContext: VideoSDKRTC.SpanContext) -> Self + @discardableResult + func addLink(spanContext: VideoSDKRTC.SpanContext, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.String) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.Int) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.Double) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: Swift.Bool) -> Self + @discardableResult + func setAttribute(key: Swift.String, value: VideoSDKRTC.AttributeValue) -> Self + @discardableResult + func setSpanKind(spanKind: VideoSDKRTC.SpanKind) -> Self + @discardableResult + func setStartTime(time: Foundation.Date) -> Self + @discardableResult + func setActive(_ active: Swift.Bool) -> Self + func startSpan() -> any VideoSDKRTC.Span +} +extension VideoSDKRTC.SpanBuilder { + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.String) -> Self + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.Int) -> Self + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.Double) -> Self + @discardableResult + public func setAttribute(key: Swift.String, value: Swift.Bool) -> Self +} +public struct SpanContext : Swift.Equatable, Swift.CustomStringConvertible, Swift.Hashable, Swift.Codable { + public var traceId: VideoSDKRTC.TraceId { + get + } + public var spanId: VideoSDKRTC.SpanId { + get + } + public var traceFlags: VideoSDKRTC.TraceFlags { + get + } + public var traceState: VideoSDKRTC.TraceState + public let isRemote: Swift.Bool + public static func create(traceId: VideoSDKRTC.TraceId, spanId: VideoSDKRTC.SpanId, traceFlags: VideoSDKRTC.TraceFlags, traceState: VideoSDKRTC.TraceState) -> VideoSDKRTC.SpanContext + public static func createFromRemoteParent(traceId: VideoSDKRTC.TraceId, spanId: VideoSDKRTC.SpanId, traceFlags: VideoSDKRTC.TraceFlags, traceState: VideoSDKRTC.TraceState) -> VideoSDKRTC.SpanContext + public var isValid: Swift.Bool { + get + } + public var isSampled: Swift.Bool { + get + } + public static func == (lhs: VideoSDKRTC.SpanContext, rhs: VideoSDKRTC.SpanContext) -> Swift.Bool + public var description: Swift.String { + get + } + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public struct SpanData : Swift.Equatable, Swift.Codable { + public var traceId: VideoSDKRTC.TraceId { + get + } + public var spanId: VideoSDKRTC.SpanId { + get + } + public var traceFlags: VideoSDKRTC.TraceFlags { + get + } + public var traceState: VideoSDKRTC.TraceState { + get + } + public var parentSpanId: VideoSDKRTC.SpanId? { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScope: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var name: Swift.String { + get + } + public var kind: VideoSDKRTC.SpanKind { + get + } + public var startTime: Foundation.Date { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public var events: [VideoSDKRTC.SpanData.Event] { + get + } + public var links: [VideoSDKRTC.SpanData.Link] { + get + } + public var status: VideoSDKRTC.Status { + get + } + public var endTime: Foundation.Date { + get + } + public var hasRemoteParent: Swift.Bool { + get + } + public var hasEnded: Swift.Bool { + get + } + public var totalRecordedEvents: Swift.Int { + get + } + public var totalRecordedLinks: Swift.Int { + get + } + public var totalAttributeCount: Swift.Int { + get + } + public static func == (lhs: VideoSDKRTC.SpanData, rhs: VideoSDKRTC.SpanData) -> Swift.Bool + @discardableResult + public mutating func settingName(_ name: Swift.String) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTraceId(_ traceId: VideoSDKRTC.TraceId) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingSpanId(_ spanId: VideoSDKRTC.SpanId) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTraceFlags(_ traceFlags: VideoSDKRTC.TraceFlags) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTraceState(_ traceState: VideoSDKRTC.TraceState) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingAttributes(_ attributes: [Swift.String : VideoSDKRTC.AttributeValue]) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingStartTime(_ time: Foundation.Date) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingEndTime(_ time: Foundation.Date) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingKind(_ kind: VideoSDKRTC.SpanKind) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingLinks(_ links: [VideoSDKRTC.SpanData.Link]) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingParentSpanId(_ parentSpanId: VideoSDKRTC.SpanId) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingResource(_ resource: VideoSDKRTC.Resource) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingStatus(_ status: VideoSDKRTC.Status) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingEvents(_ events: [VideoSDKRTC.SpanData.Event]) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingHasRemoteParent(_ hasRemoteParent: Swift.Bool) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingHasEnded(_ hasEnded: Swift.Bool) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTotalRecordedEvents(_ totalRecordedEvents: Swift.Int) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTotalRecordedLinks(_ totalRecordedLinks: Swift.Int) -> VideoSDKRTC.SpanData + @discardableResult + public mutating func settingTotalAttributeCount(_ totalAttributeCount: Swift.Int) -> VideoSDKRTC.SpanData + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension VideoSDKRTC.SpanData { + public struct Event : Swift.Equatable, Swift.Codable { + public var timestamp: Foundation.Date { + get + } + public var name: Swift.String { + get + } + public var attributes: [Swift.String : VideoSDKRTC.AttributeValue] { + get + } + public init(name: Swift.String, timestamp: Foundation.Date, attributes: [Swift.String : VideoSDKRTC.AttributeValue]? = nil) + public init(timestamp: Foundation.Date, event: VideoSDKRTC.SpanData.Event) + public static func == (a: VideoSDKRTC.SpanData.Event, b: VideoSDKRTC.SpanData.Event) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } +} +extension VideoSDKRTC.SpanData { + public struct Link : Swift.Codable { + public let context: VideoSDKRTC.SpanContext + public let attributes: [Swift.String : VideoSDKRTC.AttributeValue] + public init(context: VideoSDKRTC.SpanContext, attributes: [Swift.String : VideoSDKRTC.AttributeValue] = [String: AttributeValue]()) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } +} +public func == (lhs: VideoSDKRTC.SpanData.Link, rhs: VideoSDKRTC.SpanData.Link) -> Swift.Bool +public func == (lhs: [VideoSDKRTC.SpanData.Link], rhs: [VideoSDKRTC.SpanData.Link]) -> Swift.Bool +public protocol SpanExporter : AnyObject { + @discardableResult + func export(spans: [VideoSDKRTC.SpanData]) -> VideoSDKRTC.SpanExporterResultCode + func flush() -> VideoSDKRTC.SpanExporterResultCode + func shutdown() +} +public enum SpanExporterResultCode { + case success + case failure + public static func == (a: VideoSDKRTC.SpanExporterResultCode, b: VideoSDKRTC.SpanExporterResultCode) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct SpanId : Swift.Equatable, Swift.Comparable, Swift.Hashable, Swift.CustomStringConvertible, Swift.Codable { + public static let size: Swift.Int + public static let invalidId: Swift.UInt64 + public static let invalid: VideoSDKRTC.SpanId + public static func getSize() -> Swift.Int + public init(id: Swift.UInt64) + public init() + public static func random() -> VideoSDKRTC.SpanId + public init(fromBytes bytes: Swift.Array, withOffset offset: Swift.Int = 0) + public init(fromBytes bytes: Swift.ArraySlice, withOffset offset: Swift.Int = 0) + public init(fromBytes bytes: Swift.ArraySlice, withOffset offset: Swift.Int = 0) + public func copyBytesTo(dest: inout Foundation.Data, destOffset: Swift.Int) + public func copyBytesTo(dest: inout Swift.Array, destOffset: Swift.Int) + public func copyBytesTo(dest: inout Swift.ArraySlice, destOffset: Swift.Int) + public init(fromHexString hex: Swift.String, withOffset offset: Swift.Int = 0) + public var hexString: Swift.String { + get + } + public var rawValue: Swift.UInt64 { + get + } + public var isValid: Swift.Bool { + get + } + public var description: Swift.String { + get + } + public static func < (lhs: VideoSDKRTC.SpanId, rhs: VideoSDKRTC.SpanId) -> Swift.Bool + public static func == (lhs: VideoSDKRTC.SpanId, rhs: VideoSDKRTC.SpanId) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws +} +public enum SpanKind : Swift.String, Swift.Equatable, Swift.Codable { + case `internal` + case server + case client + case producer + case consumer + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct SpanLimits : Swift.Equatable { + public var attributeCountLimit: Swift.Int { + get + } + public var eventCountLimit: Swift.Int { + get + } + public var linkCountLimit: Swift.Int { + get + } + public var attributePerEventCountLimit: Swift.Int { + get + } + public var attributePerLinkCountLimit: Swift.Int { + get + } + public init() + @discardableResult + public func settingAttributeCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingEventCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingLinkCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingAttributePerEventCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + @discardableResult + public func settingAttributePerLinkCountLimit(_ number: Swift.UInt) -> VideoSDKRTC.SpanLimits + public static func == (lhs: VideoSDKRTC.SpanLimits, rhs: VideoSDKRTC.SpanLimits) -> Swift.Bool +} +public protocol SpanProcessor { + var isStartRequired: Swift.Bool { get } + var isEndRequired: Swift.Bool { get } + func onStart(parentContext: VideoSDKRTC.SpanContext?, span: any VideoSDKRTC.ReadableSpan) + mutating func onEnd(span: any VideoSDKRTC.ReadableSpan) + mutating func shutdown() + func forceFlush(timeout: Foundation.TimeInterval?) +} +public protocol SPBDecoder { + mutating func handleConflictingOneOf() throws + mutating func nextFieldNumber() throws -> Swift.Int? + mutating func decodeSingularFloatField(value: inout Swift.Float) throws + mutating func decodeSingularFloatField(value: inout Swift.Float?) throws + mutating func decodeRepeatedFloatField(value: inout [Swift.Float]) throws + mutating func decodeSingularDoubleField(value: inout Swift.Double) throws + mutating func decodeSingularDoubleField(value: inout Swift.Double?) throws + mutating func decodeRepeatedDoubleField(value: inout [Swift.Double]) throws + mutating func decodeSingularInt32Field(value: inout Swift.Int32) throws + mutating func decodeSingularInt32Field(value: inout Swift.Int32?) throws + mutating func decodeRepeatedInt32Field(value: inout [Swift.Int32]) throws + mutating func decodeSingularInt64Field(value: inout Swift.Int64) throws + mutating func decodeSingularInt64Field(value: inout Swift.Int64?) throws + mutating func decodeRepeatedInt64Field(value: inout [Swift.Int64]) throws + mutating func decodeSingularUInt32Field(value: inout Swift.UInt32) throws + mutating func decodeSingularUInt32Field(value: inout Swift.UInt32?) throws + mutating func decodeRepeatedUInt32Field(value: inout [Swift.UInt32]) throws + mutating func decodeSingularUInt64Field(value: inout Swift.UInt64) throws + mutating func decodeSingularUInt64Field(value: inout Swift.UInt64?) throws + mutating func decodeRepeatedUInt64Field(value: inout [Swift.UInt64]) throws + mutating func decodeSingularSInt32Field(value: inout Swift.Int32) throws + mutating func decodeSingularSInt32Field(value: inout Swift.Int32?) throws + mutating func decodeRepeatedSInt32Field(value: inout [Swift.Int32]) throws + mutating func decodeSingularSInt64Field(value: inout Swift.Int64) throws + mutating func decodeSingularSInt64Field(value: inout Swift.Int64?) throws + mutating func decodeRepeatedSInt64Field(value: inout [Swift.Int64]) throws + mutating func decodeSingularFixed32Field(value: inout Swift.UInt32) throws + mutating func decodeSingularFixed32Field(value: inout Swift.UInt32?) throws + mutating func decodeRepeatedFixed32Field(value: inout [Swift.UInt32]) throws + mutating func decodeSingularFixed64Field(value: inout Swift.UInt64) throws + mutating func decodeSingularFixed64Field(value: inout Swift.UInt64?) throws + mutating func decodeRepeatedFixed64Field(value: inout [Swift.UInt64]) throws + mutating func decodeSingularSFixed32Field(value: inout Swift.Int32) throws + mutating func decodeSingularSFixed32Field(value: inout Swift.Int32?) throws + mutating func decodeRepeatedSFixed32Field(value: inout [Swift.Int32]) throws + mutating func decodeSingularSFixed64Field(value: inout Swift.Int64) throws + mutating func decodeSingularSFixed64Field(value: inout Swift.Int64?) throws + mutating func decodeRepeatedSFixed64Field(value: inout [Swift.Int64]) throws + mutating func decodeSingularBoolField(value: inout Swift.Bool) throws + mutating func decodeSingularBoolField(value: inout Swift.Bool?) throws + mutating func decodeRepeatedBoolField(value: inout [Swift.Bool]) throws + mutating func decodeSingularStringField(value: inout Swift.String) throws + mutating func decodeSingularStringField(value: inout Swift.String?) throws + mutating func decodeRepeatedStringField(value: inout [Swift.String]) throws + mutating func decodeSingularBytesField(value: inout Foundation.Data) throws + mutating func decodeSingularBytesField(value: inout Foundation.Data?) throws + mutating func decodeRepeatedBytesField(value: inout [Foundation.Data]) throws + mutating func decodeSingularEnumField(value: inout E) throws where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + mutating func decodeSingularEnumField(value: inout E?) throws where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + mutating func decodeRepeatedEnumField(value: inout [E]) throws where E : VideoSDKRTC.Enum, E.RawValue == Swift.Int + mutating func decodeSingularMessageField(value: inout M?) throws where M : VideoSDKRTC.Message + mutating func decodeRepeatedMessageField(value: inout [M]) throws where M : VideoSDKRTC.Message + mutating func decodeSingularGroupField(value: inout G?) throws where G : VideoSDKRTC.Message + mutating func decodeRepeatedGroupField(value: inout [G]) throws where G : VideoSDKRTC.Message + mutating func decodeMapField(fieldType: VideoSDKRTC._ProtobufMap.Type, value: inout VideoSDKRTC._ProtobufMap.BaseType) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.MapValueType + mutating func decodeMapField(fieldType: VideoSDKRTC._ProtobufEnumMap.Type, value: inout VideoSDKRTC._ProtobufEnumMap.BaseType) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.Enum, ValueType.RawValue == Swift.Int + mutating func decodeMapField(fieldType: VideoSDKRTC._ProtobufMessageMap.Type, value: inout VideoSDKRTC._ProtobufMessageMap.BaseType) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : Swift.Hashable, ValueType : VideoSDKRTC.Message + mutating func decodeExtensionField(values: inout VideoSDKRTC.ExtensionFieldValueSet, messageType: any VideoSDKRTC.Message.Type, fieldNumber: Swift.Int) throws + mutating func decodeExtensionFieldsAsMessageSet(values: inout VideoSDKRTC.ExtensionFieldValueSet, messageType: any VideoSDKRTC.Message.Type) throws +} +extension VideoSDKRTC.SPBDecoder { + public mutating func decodeExtensionFieldsAsMessageSet(values: inout VideoSDKRTC.ExtensionFieldValueSet, messageType: any VideoSDKRTC.Message.Type) throws +} +public protocol StableAggregator { + func diff(previousCumulative: VideoSDKRTC.PointData, currentCumulative: VideoSDKRTC.PointData) throws -> VideoSDKRTC.PointData + func toPoint(measurement: VideoSDKRTC.Measurement) throws -> VideoSDKRTC.PointData + func createHandle() -> VideoSDKRTC.AggregatorHandle + func toMetricData(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, descriptor: VideoSDKRTC.MetricDescriptor, points: [VideoSDKRTC.PointData], temporality: VideoSDKRTC.AggregationTemporality) -> VideoSDKRTC.StableMetricData +} +public protocol StableMeter { + func counterBuilder(name: Swift.String) -> any VideoSDKRTC.LongCounterBuilder + func upDownCounterBuilder(name: Swift.String) -> any VideoSDKRTC.LongUpDownCounterBuilder + func histogramBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleHistogramBuilder + func gaugeBuilder(name: Swift.String) -> any VideoSDKRTC.DoubleGaugeBuilder +} +public protocol StableMeterProvider : AnyObject { + func get(name: Swift.String) -> any VideoSDKRTC.StableMeter + func meterBuilder(name: Swift.String) -> any VideoSDKRTC.MeterBuilder +} +public class StableMeterProviderBuilder { + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var metricReaders: [any VideoSDKRTC.StableMetricReader] { + get + } + public var registeredViews: [VideoSDKRTC.RegisteredView] { + get + } + public var exemplarFilter: any VideoSDKRTC.ExemplarFilter { + get + } + public init() + public func setClock(clock: any VideoSDKRTC.Clock) -> Self + public func setResource(resource: VideoSDKRTC.Resource) -> Self + public func registerView(selector: VideoSDKRTC.InstrumentSelector, view: VideoSDKRTC.StableView) -> Self + public func registerMetricReader(reader: any VideoSDKRTC.StableMetricReader) -> Self + public func build() -> VideoSDKRTC.StableMeterProviderSdk + @objc deinit +} +@_hasMissingDesignatedInitializers public class MeterProviderError : Swift.Error { + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableMeterProviderSdk : VideoSDKRTC.StableMeterProvider { + public func get(name: Swift.String) -> any VideoSDKRTC.StableMeter + public func meterBuilder(name: Swift.String) -> any VideoSDKRTC.MeterBuilder + public static func builder() -> VideoSDKRTC.StableMeterProviderBuilder + public func shutdown() -> VideoSDKRTC.ExportResult + public func forceFlush() -> VideoSDKRTC.ExportResult + @objc deinit +} +public class MeterProviderSharedState { + public init(clock: any VideoSDKRTC.Clock, resource: VideoSDKRTC.Resource, startEpochNanos: Swift.UInt64, exemplarFilter: any VideoSDKRTC.ExemplarFilter) + public var clock: any VideoSDKRTC.Clock { + get + } + public var resource: VideoSDKRTC.Resource { + get + } + public var startEpochNanos: Swift.UInt64 { + get + } + public var exemplarFilter: any VideoSDKRTC.ExemplarFilter { + get + } + @objc deinit +} +public enum MetricDataType { + case LongGauge + case DoubleGauge + case LongSum + case DoubleSum + case Summary + case Histogram + case ExponentialHistogram + public static func == (a: VideoSDKRTC.MetricDataType, b: VideoSDKRTC.MetricDataType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct StableMetricData : Swift.Equatable { + public var resource: VideoSDKRTC.Resource { + get + } + public var instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo { + get + } + public var name: Swift.String { + get + } + public var description: Swift.String { + get + } + public var unit: Swift.String { + get + } + public var type: VideoSDKRTC.MetricDataType { + get + } + public var data: VideoSDKRTC.StableMetricData.Data { + get + } + public static let empty: VideoSDKRTC.StableMetricData + @_hasMissingDesignatedInitializers public class Data : Swift.Equatable { + public var points: [VideoSDKRTC.PointData] { + get + } + public static func == (lhs: VideoSDKRTC.StableMetricData.Data, rhs: VideoSDKRTC.StableMetricData.Data) -> Swift.Bool + @objc deinit + } + public static func == (lhs: VideoSDKRTC.StableMetricData, rhs: VideoSDKRTC.StableMetricData) -> Swift.Bool +} +@_hasMissingDesignatedInitializers public class StableHistogramData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableExponentialHistogramData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableGaugeData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableSumData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableSummaryData : VideoSDKRTC.StableMetricData.Data { + public var aggregationTemporality: VideoSDKRTC.AggregationTemporality { + get + } + @objc deinit +} +public protocol StableMetricExporter : VideoSDKRTC.AggregationTemporalitySelectorProtocol, VideoSDKRTC.DefaultAggregationSelector { + func export(metrics: [VideoSDKRTC.StableMetricData]) -> VideoSDKRTC.ExportResult + func flush() -> VideoSDKRTC.ExportResult + func shutdown() -> VideoSDKRTC.ExportResult +} +extension VideoSDKRTC.StableMetricExporter { + public func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +} +public protocol StableMetricReader : VideoSDKRTC.AggregationTemporalitySelectorProtocol, VideoSDKRTC.DefaultAggregationSelector { + func forceFlush() -> VideoSDKRTC.ExportResult + func shutdown() -> VideoSDKRTC.ExportResult + func register(registration: any VideoSDKRTC.CollectionRegistration) +} +@_hasMissingDesignatedInitializers public class StableObservableMeasurementSdk : VideoSDKRTC.ObservableLongMeasurement, VideoSDKRTC.ObservableDoubleMeasurement { + public var descriptor: VideoSDKRTC.InstrumentDescriptor { + get + } + public var storages: [VideoSDKRTC.AsynchronousMetricStorage] { + get + } + public func clearActiveReader() + public func record(value: Swift.Int) + public func record(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func record(value: Swift.Double) + public func record(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public class StablePeriodicMetricReaderBuilder { + public var exporter: any VideoSDKRTC.StableMetricExporter { + get + } + public var exporterInterval: Swift.Double { + get + } + public init(exporter: any VideoSDKRTC.StableMetricExporter) + public func setInterval(timeInterval: Foundation.TimeInterval) -> Self + public func build() -> VideoSDKRTC.StablePeriodicMetricReaderSdk + @objc deinit +} +@_hasMissingDesignatedInitializers public class StablePeriodicMetricReaderSdk : VideoSDKRTC.StableMetricReader { + @objc deinit + public func register(registration: any VideoSDKRTC.CollectionRegistration) + public func forceFlush() -> VideoSDKRTC.ExportResult + public func shutdown() -> VideoSDKRTC.ExportResult + public func getAggregationTemporality(for instrument: VideoSDKRTC.InstrumentType) -> VideoSDKRTC.AggregationTemporality + public func getDefaultAggregation(for instrument: VideoSDKRTC.InstrumentType) -> any VideoSDKRTC.Aggregation +} +@_hasMissingDesignatedInitializers public class StableView { + public var name: Swift.String? { + get + } + public var description: Swift.String? { + get + } + public var aggregation: any VideoSDKRTC.Aggregation { + get + } + public var attributeProcessor: VideoSDKRTC.AttributeProcessor { + get + } + public static func builder() -> VideoSDKRTC.ViewBuilder + @objc deinit +} +@_hasMissingDesignatedInitializers public class StableViewRegistry { + public func findViews(descriptor: VideoSDKRTC.InstrumentDescriptor, meterScope: VideoSDKRTC.InstrumentationScopeInfo) -> [VideoSDKRTC.RegisteredView] + @objc deinit +} +public enum Status : Swift.Equatable { + case ok + case unset + case error(description: Swift.String) + public var isOk: Swift.Bool { + get + } + public var isError: Swift.Bool { + get + } + public var name: Swift.String { + get + } + public var code: Swift.Int { + get + } + public static func == (a: VideoSDKRTC.Status, b: VideoSDKRTC.Status) -> Swift.Bool +} +extension VideoSDKRTC.Status : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} +extension VideoSDKRTC.Status : Swift.Codable { + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct StringUtils { + public static func isPrintableString(_ string: Swift.String) -> Swift.Bool + public static func isValidMetricName(_ metricName: Swift.String) -> Swift.Bool +} +public enum Google_Protobuf_NullValue : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case nullValue + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_NullValue] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_NullValue] +} +public struct Google_Protobuf_Struct { + public var fields: [Swift.String : VideoSDKRTC.Google_Protobuf_Value] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Value { + public var kind: VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind? + public var nullValue: VideoSDKRTC.Google_Protobuf_NullValue { + get + set + } + public var numberValue: Swift.Double { + get + set + } + public var stringValue: Swift.String { + get + set + } + public var boolValue: Swift.Bool { + get + set + } + public var structValue: VideoSDKRTC.Google_Protobuf_Struct { + get + set + } + public var listValue: VideoSDKRTC.Google_Protobuf_ListValue { + get + set + } + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum OneOf_Kind : Swift.Equatable { + case nullValue(VideoSDKRTC.Google_Protobuf_NullValue) + case numberValue(Swift.Double) + case stringValue(Swift.String) + case boolValue(Swift.Bool) + case structValue(VideoSDKRTC.Google_Protobuf_Struct) + case listValue(VideoSDKRTC.Google_Protobuf_ListValue) + public static func == (a: VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind, b: VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind) -> Swift.Bool + } + public init() +} +public struct Google_Protobuf_ListValue { + public var values: [VideoSDKRTC.Google_Protobuf_Value] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Struct : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Value.OneOf_Kind : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_ListValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_NullValue : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_Struct : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Struct, rhs: VideoSDKRTC.Google_Protobuf_Struct) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Value, rhs: VideoSDKRTC.Google_Protobuf_Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_ListValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_ListValue, rhs: VideoSDKRTC.Google_Protobuf_ListValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class SumAggregation : VideoSDKRTC.Aggregation { + public static var instance: VideoSDKRTC.SumAggregation { + get + } + public func isCompatible(with descriptor: VideoSDKRTC.InstrumentDescriptor) -> Swift.Bool + public func createAggregator(descriptor: VideoSDKRTC.InstrumentDescriptor, exemplarFilter: any VideoSDKRTC.ExemplarFilter) -> any VideoSDKRTC.StableAggregator + @objc deinit +} +@_hasMissingDesignatedInitializers public class SumAggregator { + final public let isMonotonic: Swift.Bool + @objc deinit +} +@_hasMissingDesignatedInitializers public class SummaryPointData : VideoSDKRTC.PointData { + public var count: Swift.UInt64 + public var sum: Swift.Double + public var values: [any VideoSDKRTC.ValueAtQuantile] + @objc deinit +} +extension Swift.Double { + public var toMilliseconds: Swift.UInt64 { + get + } + public var toMicroseconds: Swift.UInt64 { + get + } + public var toNanoseconds: Swift.UInt64 { + get + } + public static func fromMilliseconds(_ millis: Swift.Int64) -> Foundation.TimeInterval + public static func fromMicroseconds(_ micros: Swift.Int64) -> Foundation.TimeInterval + public static func fromNanoseconds(_ nanos: Swift.Int64) -> Foundation.TimeInterval +} +public protocol SwiftProtobufContiguousBytes { + init(repeating: Swift.UInt8, count: Swift.Int) + init(_ sequence: S) where S : Swift.Sequence, S.Element == Swift.UInt8 + var count: Swift.Int { get } + func withUnsafeBytes(_ body: (Swift.UnsafeRawBufferPointer) throws -> R) rethrows -> R + mutating func withUnsafeMutableBytes(_ body: (Swift.UnsafeMutableRawBufferPointer) throws -> R) rethrows -> R +} +extension Swift.Array : VideoSDKRTC.SwiftProtobufContiguousBytes where Element == Swift.UInt8 { +} +extension Foundation.Data : VideoSDKRTC.SwiftProtobufContiguousBytes { +} +@_hasMissingDesignatedInitializers public class SynchronousMetricStorage { + public var metricDescriptor: VideoSDKRTC.MetricDescriptor { + get + } + public func collect(resource: VideoSDKRTC.Resource, scope: VideoSDKRTC.InstrumentationScopeInfo, startEpochNanos: Swift.UInt64, epochNanos: Swift.UInt64) -> VideoSDKRTC.StableMetricData + public func isEmpty() -> Swift.Bool + public func recordLong(value: Swift.Int, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + public func recordDouble(value: Swift.Double, attributes: [Swift.String : VideoSDKRTC.AttributeValue]) + @objc deinit +} +public enum TextFormatDecodingError : Swift.Error { + case malformedText + case malformedNumber + case trailingGarbage + case truncated + case invalidUTF8 + case schemaMismatch + case missingFieldNames + case unknownField + case unrecognizedEnumValue + case conflictingOneOf + case internalExtensionError + case messageDepthLimit + public static func == (a: VideoSDKRTC.TextFormatDecodingError, b: VideoSDKRTC.TextFormatDecodingError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct TextFormatDecodingOptions : Swift.Sendable { + public var messageDepthLimit: Swift.Int + public init() +} +public struct TextFormatEncodingOptions : Swift.Sendable { + public var printUnknownFields: Swift.Bool + public init() +} +public protocol TextMapBaggagePropagator { + var fields: Swift.Set { get } + func inject(baggage: any VideoSDKRTC.Baggage, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + @discardableResult + func extract(carrier: [Swift.String : Swift.String], getter: G) -> (any VideoSDKRTC.Baggage)? where G : VideoSDKRTC.Getter +} +public protocol TextMapPropagator { + var fields: Swift.Set { get } + func inject(spanContext: VideoSDKRTC.SpanContext, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + @discardableResult + func extract(carrier: [Swift.String : Swift.String], getter: G) -> VideoSDKRTC.SpanContext? where G : VideoSDKRTC.Getter +} +public protocol Setter { + func set(carrier: inout [Swift.String : Swift.String], key: Swift.String, value: Swift.String) +} +public protocol Getter { + func get(carrier: [Swift.String : Swift.String], key: Swift.String) -> [Swift.String]? +} +public struct Google_Protobuf_Timestamp { + public var seconds: Swift.Int64 + public var nanos: Swift.Int32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Timestamp : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Timestamp : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Timestamp, rhs: VideoSDKRTC.Google_Protobuf_Timestamp) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +public struct Opentelemetry_Proto_Trace_V1_TracesData { + public var resourceSpans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Trace_V1_ResourceSpans { + public var resource: VideoSDKRTC.Opentelemetry_Proto_Resource_V1_Resource { + get + set + } + public var hasResource: Swift.Bool { + get + } + public mutating func clearResource() + public var scopeSpans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Trace_V1_ScopeSpans { + public var scope: VideoSDKRTC.Opentelemetry_Proto_Common_V1_InstrumentationScope { + get + set + } + public var hasScope: Swift.Bool { + get + } + public mutating func clearScope() + public var spans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span] + public var schemaURL: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Trace_V1_Span { + public var traceID: Foundation.Data + public var spanID: Foundation.Data + public var traceState: Swift.String + public var parentSpanID: Foundation.Data + public var name: Swift.String + public var kind: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind + public var startTimeUnixNano: Swift.UInt64 + public var endTimeUnixNano: Swift.UInt64 + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var events: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event] + public var droppedEventsCount: Swift.UInt32 + public var links: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link] + public var droppedLinksCount: Swift.UInt32 + public var status: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status { + get + set + } + public var hasStatus: Swift.Bool { + get + } + public mutating func clearStatus() + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum SpanKind : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unspecified + case `internal` + case server + case client + case producer + case consumer + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + } + public struct Event { + public var timeUnixNano: Swift.UInt64 + public var name: Swift.String + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public struct Link { + public var traceID: Foundation.Data + public var spanID: Foundation.Data + public var traceState: Swift.String + public var attributes: [VideoSDKRTC.Opentelemetry_Proto_Common_V1_KeyValue] + public var droppedAttributesCount: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() + } + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind] +} +public struct Opentelemetry_Proto_Trace_V1_Status { + public var message: Swift.String + public var code: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum StatusCode : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unset + case ok + case error + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + } + public init() +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode : Swift.CaseIterable { + public static var allCases: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode] + public typealias AllCases = [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode] +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_TracesData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ScopeSpans) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.SpanKind : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Event) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Span.Link) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status, rhs: VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Opentelemetry_Proto_Trace_V1_Status.StatusCode : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +public struct Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest { + public var resourceSpans: [VideoSDKRTC.Opentelemetry_Proto_Trace_V1_ResourceSpans] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse { + public var partialSuccess: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess { + get + set + } + public var hasPartialSuccess: Swift.Bool { + get + } + public mutating func clearPartialSuccess() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess { + public var rejectedSpans: Swift.Int64 + public var errorMessage: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() } -extension Swift.String { - public func toJSON() -> [Swift.String : Any] +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest : @unchecked Swift.Sendable { } -extension Swift.Dictionary { - public func toJSONString() -> Swift.String +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse : @unchecked Swift.Sendable { } -extension Swift.Array { - public func toJSONString() -> Swift.String +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess : @unchecked Swift.Sendable { } -extension Swift.Encodable { - public func toJSON() -> [Swift.String : Any] - public func toJSONArray() -> [Any] +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceRequest) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -public struct LivestreamOutput : Swift.Codable { - public let url: Swift.String - public let streamKey: Swift.String - public init(url: Swift.String, streamKey: Swift.String) - public func encode(to encoder: Swift.Encoder) throws - public init(from decoder: Swift.Decoder) throws +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTraceServiceResponse) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -@_hasMissingDesignatedInitializers public class MediaStream : Swift.Equatable { - public var id: Swift.String { +extension VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess, rhs: VideoSDKRTC.Opentelemetry_Proto_Collector_Trace_V1_ExportTracePartialSuccess) -> Swift.Bool + public var hashValue: Swift.Int { get } - public var kind: VideoSDKRTC.MediaType { +} +public struct TraceFlags : Swift.Equatable, Swift.CustomStringConvertible, Swift.Codable { + public var byte: Swift.UInt8 { get } - public var track: WebRTC.RTCMediaStreamTrack { + public var hexString: Swift.String { get } - public var producer: Mediasoup.Producer? { + public init() + public init(fromByte src: Swift.UInt8) + public init(fromHexString hex: Swift.String, withOffset offset: Swift.Int = 0) + public var sampled: Swift.Bool { get } - public var consumer: Mediasoup.Consumer? { + public mutating func setIsSampled(_ isSampled: Swift.Bool) + public func settingIsSampled(_ isSampled: Swift.Bool) -> VideoSDKRTC.TraceFlags + public var description: Swift.String { get } - @objc deinit + public static func == (a: VideoSDKRTC.TraceFlags, b: VideoSDKRTC.TraceFlags) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -extension VideoSDKRTC.MediaStream { - public func pause() - public func resume() +public struct TraceId : Swift.Comparable, Swift.Hashable, Swift.CustomStringConvertible, Swift.Equatable, Swift.Codable { + public static let size: Swift.Int + public static let invalidId: Swift.UInt64 + public static let invalid: VideoSDKRTC.TraceId + public var idHi: Swift.UInt64 { + get + } + public var idLo: Swift.UInt64 { + get + } + public init(idHi: Swift.UInt64, idLo: Swift.UInt64) + public init() + public static func random() -> VideoSDKRTC.TraceId + public init(fromData data: Foundation.Data) + public init(fromBytes bytes: [Swift.UInt8]) + public init(fromBytes bytes: Swift.ArraySlice) + public init(fromBytes bytes: Swift.ArraySlice) + public func copyBytesTo(dest: inout Foundation.Data, destOffset: Swift.Int) + public func copyBytesTo(dest: inout [Swift.UInt8], destOffset: Swift.Int) + public func copyBytesTo(dest: inout Swift.ArraySlice, destOffset: Swift.Int) + public init(fromHexString hex: Swift.String, withOffset offset: Swift.Int = 0) + public var isValid: Swift.Bool { + get + } + public var hexString: Swift.String { + get + } + public var rawHigherLong: Swift.UInt64 { + get + } + public var rawLowerLong: Swift.UInt64 { + get + } + public var description: Swift.String { + get + } + public static func < (lhs: VideoSDKRTC.TraceId, rhs: VideoSDKRTC.TraceId) -> Swift.Bool + public static func == (lhs: VideoSDKRTC.TraceId, rhs: VideoSDKRTC.TraceId) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public func encode(to encoder: any Swift.Encoder) throws + public var hashValue: Swift.Int { + get + } + public init(from decoder: any Swift.Decoder) throws } -extension VideoSDKRTC.MediaStream { - public static func == (lhs: VideoSDKRTC.MediaStream, rhs: VideoSDKRTC.MediaStream) -> Swift.Bool +public protocol Tracer : AnyObject { + func spanBuilder(spanName: Swift.String) -> any VideoSDKRTC.SpanBuilder } -public enum MediaType : Swift.Equatable { - case share - case state(value: Mediasoup.MediaKind) - public static func == (a: VideoSDKRTC.MediaType, b: VideoSDKRTC.MediaType) -> Swift.Bool +public protocol TracerProvider { + func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String?) -> any VideoSDKRTC.Tracer } -@_hasMissingDesignatedInitializers public class Meeting : Swift.Equatable { - public var id: Swift.String { +public class TracerProviderBuilder { + public var clock: any VideoSDKRTC.Clock { get } - public var localParticipant: VideoSDKRTC.Participant { + public var idGenerator: any VideoSDKRTC.IdGenerator { get } - public var participants: [Swift.String : VideoSDKRTC.Participant] { + public var resource: VideoSDKRTC.Resource { get } - public var pubsub: VideoSDKRTC.PubSub { + public var spanLimits: VideoSDKRTC.SpanLimits { get } - public var customVideoMediaStream: VideoSDKRTC.CustomRTCMediaStream? { + public var sampler: any VideoSDKRTC.Sampler { + get + } + public var spanProcessors: [any VideoSDKRTC.SpanProcessor] { get } + public init() + public func with(clock: any VideoSDKRTC.Clock) -> Self + public func with(idGenerator: any VideoSDKRTC.IdGenerator) -> Self + public func with(resource: VideoSDKRTC.Resource) -> Self + public func with(spanLimits: VideoSDKRTC.SpanLimits) -> Self + public func with(sampler: any VideoSDKRTC.Sampler) -> Self + public func add(spanProcessor: any VideoSDKRTC.SpanProcessor) -> Self + public func add(spanProcessors: [any VideoSDKRTC.SpanProcessor]) -> Self + public func build() -> VideoSDKRTC.TracerProviderSdk @objc deinit } -extension VideoSDKRTC.Meeting { - public func join(cameraPosition: AVFoundation.AVCaptureDevice.Position) - public func leave() - public func end() - public func enableWebcam(customVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil) - public func disableWebcam() - public func switchWebcam() - public func muteMic() - public func unmuteMic() - public func startRecording(webhookUrl: Swift.String) - public func stopRecording() - public func startLivestream(outputs: [VideoSDKRTC.LivestreamOutput]) - public func stopLivestream() +public class TracerProviderSdk : VideoSDKRTC.TracerProvider { + public init(clock: any VideoSDKRTC.Clock = MillisClock(), idGenerator: any VideoSDKRTC.IdGenerator = RandomIdGenerator(), resource: VideoSDKRTC.Resource = EnvVarResource.get(), spanLimits: VideoSDKRTC.SpanLimits = SpanLimits(), sampler: any VideoSDKRTC.Sampler = Samplers.parentBased(root: Samplers.alwaysOn), spanProcessors: [any VideoSDKRTC.SpanProcessor] = []) + @objc deinit + public func get(instrumentationName: Swift.String, instrumentationVersion: Swift.String? = nil) -> any VideoSDKRTC.Tracer + public func getActiveClock() -> any VideoSDKRTC.Clock + public func updateActiveClock(_ newClock: any VideoSDKRTC.Clock) + public func getActiveIdGenerator() -> any VideoSDKRTC.IdGenerator + public func updateActiveIdGenerator(_ newGenerator: any VideoSDKRTC.IdGenerator) + public func getActiveResource() -> VideoSDKRTC.Resource + public func updateActiveResource(_ newResource: VideoSDKRTC.Resource) + public func getActiveSpanLimits() -> VideoSDKRTC.SpanLimits + public func updateActiveSpanLimits(_ spanLimits: VideoSDKRTC.SpanLimits) + public func getActiveSampler() -> any VideoSDKRTC.Sampler + public func updateActiveSampler(_ newSampler: any VideoSDKRTC.Sampler) + public func getActiveSpanProcessors() -> [any VideoSDKRTC.SpanProcessor] + public func addSpanProcessor(_ spanProcessor: any VideoSDKRTC.SpanProcessor) + public func resetSpanProcessors() + public func shutdown() + public func forceFlush(timeout: Foundation.TimeInterval? = nil) } -extension VideoSDKRTC.Meeting { - public func addEventListener(_ meetingEventListener: VideoSDKRTC.MeetingEventListener) - public func removeEventListener(_ meetingEventListener: VideoSDKRTC.MeetingEventListener) +@_hasMissingDesignatedInitializers public class TracerSdk : VideoSDKRTC.Tracer { + final public let instrumentationScopeInfo: VideoSDKRTC.InstrumentationScopeInfo + public func spanBuilder(spanName: Swift.String) -> any VideoSDKRTC.SpanBuilder + @objc deinit } -extension VideoSDKRTC.Meeting { - public static func == (lhs: VideoSDKRTC.Meeting, rhs: VideoSDKRTC.Meeting) -> Swift.Bool +public struct TraceState : Swift.Equatable, Swift.Codable { + public var entries: [VideoSDKRTC.TraceState.Entry] { + get + } + public init() + public init?(entries: [VideoSDKRTC.TraceState.Entry]) + public func get(key: Swift.String) -> Swift.String? + public func setting(key: Swift.String, value: Swift.String) -> VideoSDKRTC.TraceState + public func removing(key: Swift.String) -> VideoSDKRTC.TraceState + public struct Entry : Swift.Equatable, Swift.Codable { + public var key: Swift.String { + get + } + public var value: Swift.String { + get + } + public init?(key: Swift.String, value: Swift.String) + public static func == (a: VideoSDKRTC.TraceState.Entry, b: VideoSDKRTC.TraceState.Entry) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + } + public static func == (a: VideoSDKRTC.TraceState, b: VideoSDKRTC.TraceState) -> Swift.Bool + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public protocol MeetingEventListener : AnyObject { - func onMeetingJoined() - func onMeetingLeft() - func onParticipantJoined(_ participant: VideoSDKRTC.Participant) - func onParticipantLeft(_ participant: VideoSDKRTC.Participant) - func onRecordingStarted() - func onRecordingStoppped() - func onLivestreamStarted() - func onLivestreamStopped() - func onSpeakerChanged(participantId: Swift.String?) - func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) - func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) +public enum Google_Protobuf_Syntax : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case proto2 + case proto3 + case editions + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_Syntax] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_Syntax] } -extension VideoSDKRTC.MeetingEventListener { - public func onMeetingJoined() - public func onMeetingLeft() - public func onParticipantJoined(_ participant: VideoSDKRTC.Participant) - public func onParticipantLeft(_ participant: VideoSDKRTC.Participant) - public func onRecordingStarted() - public func onRecordingStoppped() - public func onLivestreamStarted() - public func onLivestreamStopped() - public func onSpeakerChanged(participantId: Swift.String?) - public func onMicRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) - public func onWebcamRequested(participantId: Swift.String?, accept: @escaping () -> Swift.Void, reject: @escaping () -> Swift.Void) +public struct Google_Protobuf_Type { + public var name: Swift.String + public var fields: [VideoSDKRTC.Google_Protobuf_Field] + public var oneofs: [Swift.String] + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var sourceContext: VideoSDKRTC.Google_Protobuf_SourceContext { + get + set + } + public var hasSourceContext: Swift.Bool { + get + } + public mutating func clearSourceContext() + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var edition: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() } -@_hasMissingDesignatedInitializers public class Participant : Swift.Equatable { - public var id: Swift.String { +public struct Google_Protobuf_Field { + public var kind: VideoSDKRTC.Google_Protobuf_Field.Kind + public var cardinality: VideoSDKRTC.Google_Protobuf_Field.Cardinality + public var number: Swift.Int32 + public var name: Swift.String + public var typeURL: Swift.String + public var oneofIndex: Swift.Int32 + public var packed: Swift.Bool + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var jsonName: Swift.String + public var defaultValue: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public enum Kind : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case typeUnknown + case typeDouble + case typeFloat + case typeInt64 + case typeUint64 + case typeInt32 + case typeFixed64 + case typeFixed32 + case typeBool + case typeString + case typeGroup + case typeMessage + case typeBytes + case typeUint32 + case typeEnum + case typeSfixed32 + case typeSfixed64 + case typeSint32 + case typeSint64 + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_Field.Kind] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_Field.Kind] + } + public enum Cardinality : VideoSDKRTC.Enum { + public typealias RawValue = Swift.Int + case unknown + case optional + case required + case repeated + case UNRECOGNIZED(Swift.Int) + public init() + public init?(rawValue: Swift.Int) + public var rawValue: Swift.Int { + get + } + public static let allCases: [VideoSDKRTC.Google_Protobuf_Field.Cardinality] + public typealias AllCases = [VideoSDKRTC.Google_Protobuf_Field.Cardinality] + } + public init() +} +public struct Google_Protobuf_Enum { + public var name: Swift.String + public var enumvalue: [VideoSDKRTC.Google_Protobuf_EnumValue] + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var sourceContext: VideoSDKRTC.Google_Protobuf_SourceContext { get + set } - public var displayName: Swift.String { + public var hasSourceContext: Swift.Bool { get } - public var videoQuality: VideoSDKRTC.VideoQuality { + public mutating func clearSourceContext() + public var syntax: VideoSDKRTC.Google_Protobuf_Syntax + public var edition: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_EnumValue { + public var name: Swift.String + public var number: Swift.Int32 + public var options: [VideoSDKRTC.Google_Protobuf_Option] + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Option { + public var name: Swift.String + public var value: VideoSDKRTC.Google_Protobuf_Any { get + set } - public var isLocal: Swift.Bool { + public var hasValue: Swift.Bool { get } - public var streams: [Swift.String : VideoSDKRTC.MediaStream] { + public mutating func clearValue() + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_Type : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Field : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Enum : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_EnumValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Option : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Syntax : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap +} +extension VideoSDKRTC.Google_Protobuf_Type : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Type, rhs: VideoSDKRTC.Google_Protobuf_Type) -> Swift.Bool + public var hashValue: Swift.Int { get } - @objc deinit } -extension VideoSDKRTC.Participant { - public func enableMic() - public func disableMic() - public func enableWebcam() - public func disableWebcam() - public func remove() +extension VideoSDKRTC.Google_Protobuf_Field : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Field, rhs: VideoSDKRTC.Google_Protobuf_Field) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -extension VideoSDKRTC.Participant { - public func addStream(_ stream: VideoSDKRTC.MediaStream) - @discardableResult - public func removeStream(_ streamId: Swift.String) -> VideoSDKRTC.MediaStream? - public func removeAllStreams() - public func setQuality(_ quality: VideoSDKRTC.VideoQuality) +extension VideoSDKRTC.Google_Protobuf_Field.Kind : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap } -extension VideoSDKRTC.Participant { - public func addEventListener(_ listener: VideoSDKRTC.ParticipantEventListener) - public func removeEventListener(_ listener: VideoSDKRTC.ParticipantEventListener) +extension VideoSDKRTC.Google_Protobuf_Field.Cardinality : VideoSDKRTC._ProtoNameProviding { + public static let _protobuf_nameMap: VideoSDKRTC._NameMap } -extension VideoSDKRTC.Participant { - public static func == (lhs: VideoSDKRTC.Participant, rhs: VideoSDKRTC.Participant) -> Swift.Bool +extension VideoSDKRTC.Google_Protobuf_Enum : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Enum, rhs: VideoSDKRTC.Google_Protobuf_Enum) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -public protocol ParticipantEventListener { - func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) - func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +extension VideoSDKRTC.Google_Protobuf_EnumValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_EnumValue, rhs: VideoSDKRTC.Google_Protobuf_EnumValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -extension VideoSDKRTC.ParticipantEventListener { - public func onStreamEnabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) - public func onStreamDisabled(_ stream: VideoSDKRTC.MediaStream, forParticipant participant: VideoSDKRTC.Participant) +extension VideoSDKRTC.Google_Protobuf_Option : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Option, rhs: VideoSDKRTC.Google_Protobuf_Option) -> Swift.Bool + public var hashValue: Swift.Int { + get + } } -@_hasMissingDesignatedInitializers public class PubSub { +@available(*, deprecated, message: "Use MetricProcessorSdk instead") +public class UngroupedBatcher : VideoSDKRTC.MetricProcessor { + public init() + public func finishCollectionCycle() -> [VideoSDKRTC.Metric] + public func process(metric: VideoSDKRTC.Metric) @objc deinit } -extension VideoSDKRTC.PubSub { - public func publish(topic: Swift.String, message: Swift.String, options: [Swift.String : Any] = [:]) - public func subscribe(topic: Swift.String, forListener listener: VideoSDKRTC.PubSubMessageListener) - public func unsubscribe(topic: Swift.String, forListener listener: VideoSDKRTC.PubSubMessageListener) - public func getMessagesForTopic(_ topic: Swift.String) -> [VideoSDKRTC.PubSubMessage] +public struct UnknownStorage : Swift.Equatable, @unchecked Swift.Sendable { + public var data: Foundation.Data { + get + } + public init() + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (a: VideoSDKRTC.UnknownStorage, b: VideoSDKRTC.UnknownStorage) -> Swift.Bool } -@objc @_hasMissingDesignatedInitializers public class PubSubMessage : ObjectiveC.NSObject { - public var id: Swift.String - public var topic: Swift.String - public var message: Swift.String - public var senderId: Swift.String - public var senderName: Swift.String - public var timestamp: Swift.String - @objc deinit +public protocol ValueAtQuantile { + func quantile() -> Swift.Double + func value() -> Swift.Double } -public protocol PubSubMessageListener { - func onMessageReceived(_ message: VideoSDKRTC.PubSubMessage) +public struct Version { + public static let major: Swift.Int + public static let minor: Swift.Int + public static let revision: Swift.Int + public static let versionString: Swift.String } public enum VideoQuality : Swift.String, Swift.CaseIterable { case high, medium, low @@ -234,15 +8420,424 @@ public enum VideoQuality : Swift.String, Swift.CaseIterable { } @_hasMissingDesignatedInitializers final public class VideoSDK { public static func config(token: Swift.String) - public static func initMeeting(meetingId: Swift.String, participantId: Swift.String = "", participantName: Swift.String = "Guest", micEnabled: Swift.Bool = true, webcamEnabled: Swift.Bool = true, customCameraVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil) -> VideoSDKRTC.Meeting + public static func initMeeting(meetingId: Swift.String, participantId: Swift.String = "", participantName: Swift.String = "Guest", micEnabled: Swift.Bool = true, webcamEnabled: Swift.Bool = true, customCameraVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil, mode: VideoSDKRTC.Mode? = .CONFERENCE) -> VideoSDKRTC.Meeting public static func createCameraVideoTrack(encoderConfig: VideoSDKRTC.CustomVideoTrackConfig? = .h360p_w640p, facingMode: AVFoundation.AVCaptureDevice.Position? = .front, multiStream: Swift.Bool? = true) throws -> VideoSDKRTC.CustomRTCMediaStream? @objc deinit } +extension VideoSDKRTC.VideoSDK { + public static func getAudioPermissionStatus() -> VideoSDKRTC.authorisationStatus + public static func getVideoPermissionStatus() -> VideoSDKRTC.authorisationStatus + public static func getAudioPermission() + public static func getVideoPermission() + public static func getCameras() -> [Swift.String] + public static func getAudioDevices() -> [Swift.String] +} +@_hasMissingDesignatedInitializers public class ViewBuilder { + public func withName(name: Swift.String) -> Self + public func withDescription(description: Swift.String) -> Self + public func withAggregation(aggregation: any VideoSDKRTC.Aggregation) -> Self + public func addAttributeFilter(keyFilter: @escaping (Swift.String) -> Swift.Bool) -> Self + public func addAttributeProcessor(processor: VideoSDKRTC.AttributeProcessor) -> Self + public func build() -> VideoSDKRTC.StableView + @objc deinit +} +public protocol Visitor { + mutating func visitSingularFloatField(value: Swift.Float, fieldNumber: Swift.Int) throws + mutating func visitSingularDoubleField(value: Swift.Double, fieldNumber: Swift.Int) throws + mutating func visitSingularInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + mutating func visitSingularInt64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + mutating func visitSingularUInt32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + mutating func visitSingularUInt64Field(value: Swift.UInt64, fieldNumber: Swift.Int) throws + mutating func visitSingularSInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + mutating func visitSingularSInt64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + mutating func visitSingularFixed32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + mutating func visitSingularFixed64Field(value: Swift.UInt64, fieldNumber: Swift.Int) throws + mutating func visitSingularSFixed32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + mutating func visitSingularSFixed64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + mutating func visitSingularBoolField(value: Swift.Bool, fieldNumber: Swift.Int) throws + mutating func visitSingularStringField(value: Swift.String, fieldNumber: Swift.Int) throws + mutating func visitSingularBytesField(value: Foundation.Data, fieldNumber: Swift.Int) throws + mutating func visitSingularEnumField(value: E, fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + mutating func visitSingularMessageField(value: M, fieldNumber: Swift.Int) throws where M : VideoSDKRTC.Message + mutating func visitSingularGroupField(value: G, fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + mutating func visitRepeatedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + mutating func visitRepeatedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + mutating func visitRepeatedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitRepeatedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitRepeatedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + mutating func visitRepeatedStringField(value: [Swift.String], fieldNumber: Swift.Int) throws + mutating func visitRepeatedBytesField(value: [Foundation.Data], fieldNumber: Swift.Int) throws + mutating func visitRepeatedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + mutating func visitRepeatedMessageField(value: [M], fieldNumber: Swift.Int) throws where M : VideoSDKRTC.Message + mutating func visitRepeatedGroupField(value: [G], fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + mutating func visitPackedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + mutating func visitPackedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + mutating func visitPackedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitPackedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitPackedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitPackedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitPackedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitPackedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitPackedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + mutating func visitPackedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + mutating func visitPackedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + mutating func visitPackedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + mutating func visitPackedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + mutating func visitPackedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + mutating func visitMapField(fieldType: VideoSDKRTC._ProtobufMap.Type, value: VideoSDKRTC._ProtobufMap.BaseType, fieldNumber: Swift.Int) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.MapValueType + mutating func visitMapField(fieldType: VideoSDKRTC._ProtobufEnumMap.Type, value: VideoSDKRTC._ProtobufEnumMap.BaseType, fieldNumber: Swift.Int) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : VideoSDKRTC.Enum, ValueType.RawValue == Swift.Int + mutating func visitMapField(fieldType: VideoSDKRTC._ProtobufMessageMap.Type, value: VideoSDKRTC._ProtobufMessageMap.BaseType, fieldNumber: Swift.Int) throws where KeyType : VideoSDKRTC.MapKeyType, ValueType : Swift.Hashable, ValueType : VideoSDKRTC.Message + mutating func visitExtensionFields(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws + mutating func visitExtensionFieldsAsMessageSet(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws + mutating func visitUnknown(bytes: Foundation.Data) throws +} +extension VideoSDKRTC.Visitor { + public mutating func visitSingularFloatField(value: Swift.Float, fieldNumber: Swift.Int) throws + public mutating func visitSingularInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + public mutating func visitSingularUInt32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + public mutating func visitSingularSInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + public mutating func visitSingularSInt64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + public mutating func visitSingularFixed32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws + public mutating func visitSingularFixed64Field(value: Swift.UInt64, fieldNumber: Swift.Int) throws + public mutating func visitSingularSFixed32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws + public mutating func visitSingularSFixed64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws + public mutating func visitRepeatedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedStringField(value: [Swift.String], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedBytesField(value: [Foundation.Data], fieldNumber: Swift.Int) throws + public mutating func visitRepeatedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + public mutating func visitRepeatedMessageField(value: [M], fieldNumber: Swift.Int) throws where M : VideoSDKRTC.Message + public mutating func visitRepeatedGroupField(value: [G], fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + public mutating func visitPackedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws + public mutating func visitPackedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws + public mutating func visitPackedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitPackedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitPackedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitPackedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitPackedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitPackedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitPackedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws + public mutating func visitPackedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws + public mutating func visitPackedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws + public mutating func visitPackedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws + public mutating func visitPackedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws + public mutating func visitPackedEnumField(value: [E], fieldNumber: Swift.Int) throws where E : VideoSDKRTC.Enum + public mutating func visitSingularGroupField(value: G, fieldNumber: Swift.Int) throws where G : VideoSDKRTC.Message + public mutating func visitExtensionFieldsAsMessageSet(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws + public mutating func visitExtensionFields(fields: VideoSDKRTC.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws +} +public struct W3CBaggagePropagator : VideoSDKRTC.TextMapBaggagePropagator { + public init() + public let fields: Swift.Set + public func inject(baggage: any VideoSDKRTC.Baggage, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + public func extract(carrier: [Swift.String : Swift.String], getter: G) -> (any VideoSDKRTC.Baggage)? where G : VideoSDKRTC.Getter +} +public struct W3CTraceContextPropagator : VideoSDKRTC.TextMapPropagator { + public init() + public let fields: Swift.Set + public func inject(spanContext: VideoSDKRTC.SpanContext, carrier: inout [Swift.String : Swift.String], setter: S) where S : VideoSDKRTC.Setter + public func extract(carrier: [Swift.String : Swift.String], getter: G) -> VideoSDKRTC.SpanContext? where G : VideoSDKRTC.Getter +} +public struct Google_Protobuf_DoubleValue { + public var value: Swift.Double + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_FloatValue { + public var value: Swift.Float + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Int64Value { + public var value: Swift.Int64 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_UInt64Value { + public var value: Swift.UInt64 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_Int32Value { + public var value: Swift.Int32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_UInt32Value { + public var value: Swift.UInt32 + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_BoolValue { + public var value: Swift.Bool + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_StringValue { + public var value: Swift.String + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +public struct Google_Protobuf_BytesValue { + public var value: Foundation.Data + public var unknownFields: VideoSDKRTC.UnknownStorage + public init() +} +extension VideoSDKRTC.Google_Protobuf_DoubleValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_FloatValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Int64Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UInt64Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_Int32Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_UInt32Value : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_BoolValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_StringValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_BytesValue : @unchecked Swift.Sendable { +} +extension VideoSDKRTC.Google_Protobuf_DoubleValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_DoubleValue, rhs: VideoSDKRTC.Google_Protobuf_DoubleValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_FloatValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_FloatValue, rhs: VideoSDKRTC.Google_Protobuf_FloatValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Int64Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Int64Value, rhs: VideoSDKRTC.Google_Protobuf_Int64Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_UInt64Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UInt64Value, rhs: VideoSDKRTC.Google_Protobuf_UInt64Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_Int32Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_Int32Value, rhs: VideoSDKRTC.Google_Protobuf_Int32Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_UInt32Value : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_UInt32Value, rhs: VideoSDKRTC.Google_Protobuf_UInt32Value) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_BoolValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_BoolValue, rhs: VideoSDKRTC.Google_Protobuf_BoolValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_StringValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_StringValue, rhs: VideoSDKRTC.Google_Protobuf_StringValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.Google_Protobuf_BytesValue : VideoSDKRTC.Message, VideoSDKRTC._MessageImplementationBase, VideoSDKRTC._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: VideoSDKRTC._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : VideoSDKRTC.SPBDecoder + public func traverse(visitor: inout V) throws where V : VideoSDKRTC.Visitor + public static func == (lhs: VideoSDKRTC.Google_Protobuf_BytesValue, rhs: VideoSDKRTC.Google_Protobuf_BytesValue) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension VideoSDKRTC.AggregationTemporality : Swift.Equatable {} +extension VideoSDKRTC.AggregationTemporality : Swift.Hashable {} +extension VideoSDKRTC.AggregationType : Swift.Equatable {} +extension VideoSDKRTC.AggregationType : Swift.Hashable {} +extension VideoSDKRTC.AggregationType : Swift.RawRepresentable {} +extension VideoSDKRTC.AnyUnpackError : Swift.Equatable {} +extension VideoSDKRTC.AnyUnpackError : Swift.Hashable {} +extension VideoSDKRTC.BinaryDecodingError : Swift.Equatable {} +extension VideoSDKRTC.BinaryDecodingError : Swift.Hashable {} +extension VideoSDKRTC.BinaryDelimited.Error : Swift.Equatable {} +extension VideoSDKRTC.BinaryDelimited.Error : Swift.Hashable {} +extension VideoSDKRTC.BinaryEncodingError : Swift.Equatable {} +extension VideoSDKRTC.BinaryEncodingError : Swift.Hashable {} extension VideoSDKRTC.CameraPosition : Swift.Equatable {} extension VideoSDKRTC.CameraPosition : Swift.Hashable {} extension VideoSDKRTC.CameraPosition : Swift.RawRepresentable {} extension VideoSDKRTC.CustomVideoTrackConfig : Swift.Equatable {} extension VideoSDKRTC.CustomVideoTrackConfig : Swift.Hashable {} +extension VideoSDKRTC.EmptyMetricStorage : VideoSDKRTC.MetricStorage {} +extension VideoSDKRTC.EmptyMetricStorage : VideoSDKRTC.WritableMetricStorage {} +extension VideoSDKRTC.ExportResult : Swift.Equatable {} +extension VideoSDKRTC.ExportResult : Swift.Hashable {} +extension VideoSDKRTC.ConfigLayoutPriority : Swift.Equatable {} +extension VideoSDKRTC.ConfigLayoutPriority : Swift.Hashable {} +extension VideoSDKRTC.ConfigLayoutPriority : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigLayoutGrid : Swift.Equatable {} +extension VideoSDKRTC.ConfigLayoutGrid : Swift.Hashable {} +extension VideoSDKRTC.ConfigLayoutGrid : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigTheme : Swift.Equatable {} +extension VideoSDKRTC.ConfigTheme : Swift.Hashable {} +extension VideoSDKRTC.ConfigTheme : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigMode : Swift.Equatable {} +extension VideoSDKRTC.ConfigMode : Swift.Hashable {} +extension VideoSDKRTC.ConfigMode : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigQuality : Swift.Equatable {} +extension VideoSDKRTC.ConfigQuality : Swift.Hashable {} +extension VideoSDKRTC.ConfigQuality : Swift.RawRepresentable {} +extension VideoSDKRTC.ConfigOrientation : Swift.Equatable {} +extension VideoSDKRTC.ConfigOrientation : Swift.Hashable {} +extension VideoSDKRTC.ConfigOrientation : Swift.RawRepresentable {} +extension VideoSDKRTC.InstrumentType : Swift.Equatable {} +extension VideoSDKRTC.InstrumentType : Swift.Hashable {} +extension VideoSDKRTC.InstrumentValueType : Swift.Equatable {} +extension VideoSDKRTC.InstrumentValueType : Swift.Hashable {} +extension VideoSDKRTC.JSONEncodingError : Swift.Equatable {} +extension VideoSDKRTC.JSONEncodingError : Swift.Hashable {} +extension VideoSDKRTC.authorisationStatus : Swift.Equatable {} +extension VideoSDKRTC.authorisationStatus : Swift.Hashable {} +extension VideoSDKRTC.MeetingState : Swift.Equatable {} +extension VideoSDKRTC.MeetingState : Swift.Hashable {} +extension VideoSDKRTC.MeetingState : Swift.RawRepresentable {} +extension VideoSDKRTC.Mode : Swift.Equatable {} +extension VideoSDKRTC.Mode : Swift.Hashable {} +extension VideoSDKRTC.Mode : Swift.RawRepresentable {} +extension VideoSDKRTC.VideoSDKError : Swift.Equatable {} +extension VideoSDKRTC.VideoSDKError : Swift.Hashable {} +extension VideoSDKRTC.VideoSDKError : Swift.RawRepresentable {} +extension VideoSDKRTC.HLSState : Swift.Equatable {} +extension VideoSDKRTC.HLSState : Swift.Hashable {} +extension VideoSDKRTC.HLSState : Swift.RawRepresentable {} +extension VideoSDKRTC.RecordingState : Swift.Equatable {} +extension VideoSDKRTC.RecordingState : Swift.Hashable {} +extension VideoSDKRTC.RecordingState : Swift.RawRepresentable {} +extension VideoSDKRTC.LiveStreamState : Swift.Equatable {} +extension VideoSDKRTC.LiveStreamState : Swift.Hashable {} +extension VideoSDKRTC.LiveStreamState : Swift.RawRepresentable {} +extension VideoSDKRTC.MetricExporterResultCode : Swift.Equatable {} +extension VideoSDKRTC.MetricExporterResultCode : Swift.Hashable {} +extension VideoSDKRTC.OpenTelemetryContextKeys : Swift.Equatable {} +extension VideoSDKRTC.OpenTelemetryContextKeys : Swift.Hashable {} +extension VideoSDKRTC.OpenTelemetryContextKeys : Swift.RawRepresentable {} +extension VideoSDKRTC.PinType : Swift.Equatable {} +extension VideoSDKRTC.PinType : Swift.Hashable {} +extension VideoSDKRTC.PinType : Swift.RawRepresentable {} +extension VideoSDKRTC.ResourceAttributes : Swift.Equatable {} +extension VideoSDKRTC.ResourceAttributes : Swift.Hashable {} +extension VideoSDKRTC.ResourceAttributes : Swift.RawRepresentable {} +extension VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues : Swift.Equatable {} +extension VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues : Swift.Hashable {} +extension VideoSDKRTC.ResourceAttributes.AwsEcsLaunchtypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.OpentracingRefTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.DbCassandraConsistencyLevelValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.DbCosmosdbConnectionModeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.OtelStatusCodeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.FaasTriggerValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.FaasTriggerValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.FaasTriggerValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.GraphqlOperationTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqMessageTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.MessagingRocketmqConsumptionModelValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.RpcGrpcStatusCodeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.MessageTypeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.MessageTypeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.MessageTypeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues : Swift.Equatable {} +extension VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues : Swift.Hashable {} +extension VideoSDKRTC.SemanticAttributes.RpcConnectRpcErrorCodeValues : Swift.RawRepresentable {} +extension VideoSDKRTC.Severity : Swift.Hashable {} +extension VideoSDKRTC.Severity : Swift.RawRepresentable {} +extension VideoSDKRTC.SpanExporterResultCode : Swift.Equatable {} +extension VideoSDKRTC.SpanExporterResultCode : Swift.Hashable {} +extension VideoSDKRTC.SpanKind : Swift.Hashable {} +extension VideoSDKRTC.SpanKind : Swift.RawRepresentable {} +extension VideoSDKRTC.MetricDataType : Swift.Equatable {} +extension VideoSDKRTC.MetricDataType : Swift.Hashable {} +extension VideoSDKRTC.SynchronousMetricStorage : VideoSDKRTC.MetricStorage {} +extension VideoSDKRTC.SynchronousMetricStorage : VideoSDKRTC.WritableMetricStorage {} +extension VideoSDKRTC.TextFormatDecodingError : Swift.Equatable {} +extension VideoSDKRTC.TextFormatDecodingError : Swift.Hashable {} extension VideoSDKRTC.VideoQuality : Swift.Equatable {} extension VideoSDKRTC.VideoQuality : Swift.Hashable {} extension VideoSDKRTC.VideoQuality : Swift.RawRepresentable {} diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/VideoSDKRTC b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/VideoSDKRTC index 10b2380..d2d033f 100755 Binary files a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/VideoSDKRTC and b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/VideoSDKRTC differ diff --git a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/_CodeSignature/CodeResources b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/_CodeSignature/CodeResources index 3c33381..6dcc32f 100644 --- a/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/_CodeSignature/CodeResources +++ b/Pods/VideoSDKRTC/Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/_CodeSignature/CodeResources @@ -4,57 +4,69 @@ files + Headers/BroadcastScreenCapturer.h + + dA//DxbOUtP477OjPL0fbO1ceLo= + + Headers/SocketConnection.h + + ygcQMVNrzhTClkTat7iVYHbf62A= + + Headers/SocketConnectionFrameReader.h + + iEyPU0kUfnWNTArj2W+5VF3EOi0= + Headers/VideoSDKRTC-Swift.h - /y5RkvJ8LcM/OgJVD+7Sd6pNWHs= + OMxoncYOfccrnN8ePGEfLRAhhUY= Headers/VideoSDKRTC-umbrella.h - tOr9MCB3HS67oFHLtcEM9T1gCQI= + m+7PCuEDYxIOQ5DQDzyJedyPuRE= Info.plist - gMKNkTEMtNC4PVjRriPaO2nYEj4= + aGt0rTobjhJx62DcZVEUaBLpwoo= Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.abi.json - YnYG8B2uGuqBW5Aq7JGubuZT/bE= + fO/kNR3dFD+2NuUMaS7302Fs4+8= Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - TqsW17hI84m5UuYX+FzcBWbnds4= + jHyxcFYPmYXOxK6RAawJL7s+DSQ= Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.swiftdoc - j/03JJRdxmFXHd6diZTpWYEzMOo= + T8QDG/+4+pm+mY4VKKU+9cIHpZw= Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.swiftinterface - TqsW17hI84m5UuYX+FzcBWbnds4= + jHyxcFYPmYXOxK6RAawJL7s+DSQ= Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.swiftmodule - 0fHfL+gT5EPnlqvtYwF6RWq9jUU= + kYFvVhe6Vw5fw3hfRj2pWH/8Q+4= Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.abi.json - YnYG8B2uGuqBW5Aq7JGubuZT/bE= + fO/kNR3dFD+2NuUMaS7302Fs4+8= Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - DjIb/ity9VBi66CRkQUfLr4dc70= + g+9RbsE/Y3LHfyyod8eFs2/Ohdk= Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - 3ypPTOq5GbHiIUgSFOpFBpeEaLQ= + JSyo18Vx54nhAbhe7398LQrZ7Yg= Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - DjIb/ity9VBi66CRkQUfLr4dc70= + g+9RbsE/Y3LHfyyod8eFs2/Ohdk= Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - 1cXX0E3IQFHO+We7Y4EtcAD4zAY= + JUKaVsUyuuJlE2guAH1qcAkz0bM= Modules/module.modulemap @@ -63,88 +75,109 @@ files2 + Headers/BroadcastScreenCapturer.h + + hash2 + + Cw1LhgW38qLd4IGphOtQCpfI15u7SUZIXJ7mAyFoH+4= + + + Headers/SocketConnection.h + + hash2 + + c5N4eu+umSoKe252t8qv1vYuPYaXpbV7rhT1YrAsuMM= + + + Headers/SocketConnectionFrameReader.h + + hash2 + + uAY9MzJdIlu8RUOU4FXDKfQO016UVL+WFPvIfkzZncY= + + Headers/VideoSDKRTC-Swift.h hash2 - bVcnqVfyNZxgR+1/RhM2neVRcUA86htT6Z9A2zIXPj0= + SA/7OeyzxHJteo05/N32HbxwP4INiPqo7PCadtvt79U= Headers/VideoSDKRTC-umbrella.h hash2 - 8EmiRAQAott+xD8eWpptjLU1K6sNKYYDK5IGzSJWEGA= + 6BqGPy+55uZARtRnzSGtsBKOf5RPq08t9crOqC7aMRA= Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.abi.json hash2 - rLbgwVwv5E7Vle33HEqrroWgalFmPo8C72S8t5ZuFOo= + 5TEkx+xeUt5HAmJBaH6Vd0OUwO8QZw5HMjMvL401K38= Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface hash2 - Y710XqDM9Gr6vcpXHB/Bx2nA5q4hjUuakkJrSNJlYis= + v5gJKtXVGoupaxI92EhOQe40hu+FmNBneYHuVHQEu5U= Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.swiftdoc hash2 - jtU/pM+FmP1FLcgAvFMxHoVcyqD/2uLqqkjZIkB1Rsg= + BdtTbd1sO1j2WoepEzVxOx+ZNMSZ6hVcRrIfKW3HKVk= Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.swiftinterface hash2 - Y710XqDM9Gr6vcpXHB/Bx2nA5q4hjUuakkJrSNJlYis= + v5gJKtXVGoupaxI92EhOQe40hu+FmNBneYHuVHQEu5U= Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - /RnP8pcW0lwpS+6s+U5WzEpHRKawXjUqlGxNx5AEfdY= + R9yPgkluxvSxvy+po4cIBMtBHTVMVgbfFv61RBe9QrM= Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.abi.json hash2 - rLbgwVwv5E7Vle33HEqrroWgalFmPo8C72S8t5ZuFOo= + 5TEkx+xeUt5HAmJBaH6Vd0OUwO8QZw5HMjMvL401K38= Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface hash2 - o6t5+qQxTpE4KsPnrCrQ66SjsweCmknIuBqmFNVey7U= + AGjCFfpQnHJI24GpFkB1bzQsj+GExU6FA2zH4hwePHk= Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.swiftdoc hash2 - /b+o22U1b96Kqe+2P7O+vm1XlR0r+E/qordW82LLdBg= + /kP5gCYW9s5BEEx+0J0kJ4MFHGZTDwpt9sbP2qqdRec= Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.swiftinterface hash2 - o6t5+qQxTpE4KsPnrCrQ66SjsweCmknIuBqmFNVey7U= + AGjCFfpQnHJI24GpFkB1bzQsj+GExU6FA2zH4hwePHk= Modules/VideoSDKRTC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - h7BC/LEArsqN7a09kFSouhANvSRzQS3bcbY1NPZkqm4= + 8EzrQKGnjLyqbNhwmukqssPNYVXxoTliprsVbnq2mfc= Modules/module.modulemap diff --git a/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/Info.plist b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/Info.plist new file mode 100644 index 0000000..4eb7501 --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/Info.plist @@ -0,0 +1,40 @@ + + + + + AvailableLibraries + + + LibraryIdentifier + ios-arm64_x86_64-simulator + LibraryPath + VideosdkWebSocket.framework + SupportedArchitectures + + arm64 + x86_64 + + SupportedPlatform + ios + SupportedPlatformVariant + simulator + + + LibraryIdentifier + ios-arm64 + LibraryPath + VideosdkWebSocket.framework + SupportedArchitectures + + arm64 + + SupportedPlatform + ios + + + CFBundlePackageType + XFWK + XCFrameworkFormatVersion + 1.0 + + diff --git a/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64/VideosdkWebSocket.framework/Headers/VideosdkWebSocket-Swift.h b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64/VideosdkWebSocket.framework/Headers/VideosdkWebSocket-Swift.h new file mode 100644 index 0000000..c0e7054 --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64/VideosdkWebSocket.framework/Headers/VideosdkWebSocket-Swift.h @@ -0,0 +1,287 @@ +#if 0 +#elif defined(__arm64__) && __arm64__ +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) +#ifndef VIDEOSDKWEBSOCKET_SWIFT_H +#define VIDEOSDKWEBSOCKET_SWIFT_H +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgcc-compat" + +#if !defined(__has_include) +# define __has_include(x) 0 +#endif +#if !defined(__has_attribute) +# define __has_attribute(x) 0 +#endif +#if !defined(__has_feature) +# define __has_feature(x) 0 +#endif +#if !defined(__has_warning) +# define __has_warning(x) 0 +#endif + +#if __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wduplicate-method-match" +#pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) +#include +#endif +#if defined(__cplusplus) +#include +#include +#include +#else +#include +#include +#include +#endif + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if __has_include() +# include +# elif !defined(__cplusplus) +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif +#if !defined(SWIFT_CLASS_PROPERTY) +# if __has_feature(objc_class_property) +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ +# else +# define SWIFT_CLASS_PROPERTY(...) +# endif +#endif + +#if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +#else +# define SWIFT_METHOD_FAMILY(X) +#endif +#if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +#else +# define SWIFT_NOESCAPE +#endif +#if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +#else +# define SWIFT_RELEASES_ARGUMENT +#endif +#if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +#else +# define SWIFT_WARN_UNUSED_RESULT +#endif +#if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +#else +# define SWIFT_NORETURN +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM_ATTR) +# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) +# else +# define SWIFT_ENUM_ATTR(_extensibility) +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# if __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) +# endif +#endif +#if !defined(SWIFT_UNAVAILABLE) +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) +#endif +#if !defined(SWIFT_UNAVAILABLE_MSG) +# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) +#endif +#if !defined(SWIFT_AVAILABILITY) +# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) +#endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif +#if !defined(SWIFT_DEPRECATED) +# define SWIFT_DEPRECATED __attribute__((deprecated)) +#endif +#if !defined(SWIFT_DEPRECATED_MSG) +# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) +#endif +#if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +#else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#endif +#if defined(__OBJC__) +#if !defined(IBSegueAction) +# define IBSegueAction +#endif +#endif +#if !defined(SWIFT_EXTERN) +# if defined(__cplusplus) +# define SWIFT_EXTERN extern "C" +# else +# define SWIFT_EXTERN extern +# endif +#endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) +#if __has_feature(modules) +#if __has_warning("-Watimport-in-framework-header") +#pragma clang diagnostic ignored "-Watimport-in-framework-header" +#endif +@import Foundation; +@import ObjectiveC; +#endif + +#endif +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#if __has_warning("-Wpragma-clang-attribute") +# pragma clang diagnostic ignored "-Wpragma-clang-attribute" +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" +#pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" + +#if __has_attribute(external_source_symbol) +# pragma push_macro("any") +# undef any +# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VideosdkWebSocket",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + +#if defined(__OBJC__) +@class NSStream; + +SWIFT_CLASS("_TtC17VideosdkWebSocket19FoundationTransport") +@interface FoundationTransport : NSObject +- (void)stream:(NSStream * _Nonnull)aStream handleEvent:(NSStreamEvent)eventCode; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +@end + +@class NSURLSession; +@class NSURLSessionWebSocketTask; +@class NSString; +@class NSData; + +SWIFT_CLASS("_TtC17VideosdkWebSocket12NativeEngine") SWIFT_AVAILABILITY(tvos,introduced=13.0) SWIFT_AVAILABILITY(watchos,introduced=6.0) SWIFT_AVAILABILITY(ios,introduced=13.0) SWIFT_AVAILABILITY(macos,introduced=10.15) +@interface NativeEngine : NSObject +- (void)URLSession:(NSURLSession * _Nonnull)session webSocketTask:(NSURLSessionWebSocketTask * _Nonnull)webSocketTask didOpenWithProtocol:(NSString * _Nullable)protocol; +- (void)URLSession:(NSURLSession * _Nonnull)session webSocketTask:(NSURLSessionWebSocketTask * _Nonnull)webSocketTask didCloseWithCode:(NSURLSessionWebSocketCloseCode)closeCode reason:(NSData * _Nullable)reason; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + +#endif +#if defined(__cplusplus) +#endif +#if __has_attribute(external_source_symbol) +# pragma clang attribute pop +#endif +#pragma clang diagnostic pop +#endif + +#else +#error unsupported Swift architecture +#endif diff --git a/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64/VideosdkWebSocket.framework/Info.plist b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64/VideosdkWebSocket.framework/Info.plist new file mode 100644 index 0000000..0853c84 Binary files /dev/null and b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64/VideosdkWebSocket.framework/Info.plist differ diff --git a/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios.abi.json b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios.abi.json new file mode 100644 index 0000000..7a0c5de --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios.abi.json @@ -0,0 +1,18610 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CompressionHandler", + "printedName": "CompressionHandler", + "children": [ + { + "kind": "Function", + "name": "load", + "printedName": "load(headers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18CompressionHandlerP4load7headersySDyS2SG_tF", + "mangledName": "$s17VideosdkWebSocket18CompressionHandlerP4load7headersySDyS2SG_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.CompressionHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decompress", + "printedName": "decompress(data:isFinal:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18CompressionHandlerP10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "mangledName": "$s17VideosdkWebSocket18CompressionHandlerP10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.CompressionHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compress", + "printedName": "compress(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18CompressionHandlerP8compress4data10Foundation4DataVSgAH_tF", + "mangledName": "$s17VideosdkWebSocket18CompressionHandlerP8compress4data10Foundation4DataVSgAH_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.CompressionHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket18CompressionHandlerP", + "mangledName": "$s17VideosdkWebSocket18CompressionHandlerP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "zlib", + "printedName": "zlib", + "declKind": "Import", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "TypeDecl", + "name": "WSCompression", + "printedName": "WSCompression", + "children": [ + { + "kind": "Var", + "name": "headerWSExtensionName", + "printedName": "headerWSExtensionName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket13WSCompressionC21headerWSExtensionNameSSvp", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC21headerWSExtensionNameSSvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC21headerWSExtensionNameSSvg", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC21headerWSExtensionNameSSvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "decompressor", + "printedName": "decompressor", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Decompressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Decompressor", + "printedName": "VideosdkWebSocket.Decompressor", + "usr": "s:17VideosdkWebSocket12DecompressorC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvp", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Decompressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Decompressor", + "printedName": "VideosdkWebSocket.Decompressor", + "usr": "s:17VideosdkWebSocket12DecompressorC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvg", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Decompressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Decompressor", + "printedName": "VideosdkWebSocket.Decompressor", + "usr": "s:17VideosdkWebSocket12DecompressorC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvs", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvM", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "compressor", + "printedName": "compressor", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Compressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Compressor", + "printedName": "VideosdkWebSocket.Compressor", + "usr": "s:17VideosdkWebSocket10CompressorC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvp", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Compressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Compressor", + "printedName": "VideosdkWebSocket.Compressor", + "usr": "s:17VideosdkWebSocket10CompressorC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvg", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Compressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Compressor", + "printedName": "VideosdkWebSocket.Compressor", + "usr": "s:17VideosdkWebSocket10CompressorC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvs", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvM", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "decompressorTakeOver", + "printedName": "decompressorTakeOver", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvp", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvg", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvs", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvM", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "compressorTakeOver", + "printedName": "compressorTakeOver", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvp", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvg", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvs", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvM", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "WSCompression", + "printedName": "VideosdkWebSocket.WSCompression", + "usr": "s:17VideosdkWebSocket13WSCompressionC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket13WSCompressionCACycfc", + "mangledName": "$s17VideosdkWebSocket13WSCompressionCACycfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load(headers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket13WSCompressionC4load7headersySDyS2SG_tF", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC4load7headersySDyS2SG_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decompress", + "printedName": "decompress(data:isFinal:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket13WSCompressionC10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compress", + "printedName": "compress(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket13WSCompressionC8compress4data10Foundation4DataVSgAH_tF", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC8compress4data10Foundation4DataVSgAH_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket13WSCompressionC", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CompressionHandler", + "printedName": "CompressionHandler", + "usr": "s:17VideosdkWebSocket18CompressionHandlerP", + "mangledName": "$s17VideosdkWebSocket18CompressionHandlerP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Decompressor", + "printedName": "Decompressor", + "children": [ + { + "kind": "Var", + "name": "strm", + "printedName": "strm", + "children": [ + { + "kind": "TypeNominal", + "name": "z_stream_s", + "printedName": "zlib.z_stream_s", + "usr": "c:@S@z_stream_s" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12DecompressorC4strm026_1E8A15CDB922173425E5369F4J5E3B16LLSo10z_stream_sVvp", + "mangledName": "$s17VideosdkWebSocket12DecompressorC4strm026_1E8A15CDB922173425E5369F4J5E3B16LLSo10z_stream_sVvp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "buffer", + "printedName": "buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12DecompressorC6buffer026_1E8A15CDB922173425E5369F4J5E3B16LLSays5UInt8VGvp", + "mangledName": "$s17VideosdkWebSocket12DecompressorC6buffer026_1E8A15CDB922173425E5369F4J5E3B16LLSays5UInt8VGvp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Var", + "name": "inflateInitialized", + "printedName": "inflateInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12DecompressorC18inflateInitialized026_1E8A15CDB922173425E5369F4K5E3B16LLSbvp", + "mangledName": "$s17VideosdkWebSocket12DecompressorC18inflateInitialized026_1E8A15CDB922173425E5369F4K5E3B16LLSbvp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 2, + "hasStorage": true + }, + { + "kind": "Var", + "name": "windowBits", + "printedName": "windowBits", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12DecompressorC10windowBits026_1E8A15CDB922173425E5369F4K5E3B16LLSivp", + "mangledName": "$s17VideosdkWebSocket12DecompressorC10windowBits026_1E8A15CDB922173425E5369F4K5E3B16LLSivp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(windowBits:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Decompressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Decompressor", + "printedName": "VideosdkWebSocket.Decompressor", + "usr": "s:17VideosdkWebSocket12DecompressorC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket12DecompressorC10windowBitsACSgSi_tcfc", + "mangledName": "$s17VideosdkWebSocket12DecompressorC10windowBitsACSgSi_tcfc", + "moduleName": "VideosdkWebSocket", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12DecompressorC5resetyyKF", + "mangledName": "$s17VideosdkWebSocket12DecompressorC5resetyyKF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decompress", + "printedName": "decompress(_:finish:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12DecompressorC10decompress_6finish10Foundation4DataVAH_SbtKF", + "mangledName": "$s17VideosdkWebSocket12DecompressorC10decompress_6finish10Foundation4DataVAH_SbtKF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decompress", + "printedName": "decompress(bytes:count:finish:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "UnsafePointer", + "printedName": "Swift.UnsafePointer", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:SP" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12DecompressorC10decompress5bytes5count6finish10Foundation4DataVSPys5UInt8VG_SiSbtKF", + "mangledName": "$s17VideosdkWebSocket12DecompressorC10decompress5bytes5count6finish10Foundation4DataVSPys5UInt8VG_SiSbtKF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket12DecompressorC", + "mangledName": "$s17VideosdkWebSocket12DecompressorC", + "moduleName": "VideosdkWebSocket", + "isOpen": true + }, + { + "kind": "TypeDecl", + "name": "Compressor", + "printedName": "Compressor", + "children": [ + { + "kind": "Var", + "name": "strm", + "printedName": "strm", + "children": [ + { + "kind": "TypeNominal", + "name": "z_stream_s", + "printedName": "zlib.z_stream_s", + "usr": "c:@S@z_stream_s" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket10CompressorC4strm026_1E8A15CDB922173425E5369F4J5E3B16LLSo10z_stream_sVvp", + "mangledName": "$s17VideosdkWebSocket10CompressorC4strm026_1E8A15CDB922173425E5369F4J5E3B16LLSo10z_stream_sVvp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "buffer", + "printedName": "buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket10CompressorC6buffer026_1E8A15CDB922173425E5369F4J5E3B16LLSays5UInt8VGvp", + "mangledName": "$s17VideosdkWebSocket10CompressorC6buffer026_1E8A15CDB922173425E5369F4J5E3B16LLSays5UInt8VGvp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Var", + "name": "deflateInitialized", + "printedName": "deflateInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket10CompressorC18deflateInitialized026_1E8A15CDB922173425E5369F4K5E3B16LLSbvp", + "mangledName": "$s17VideosdkWebSocket10CompressorC18deflateInitialized026_1E8A15CDB922173425E5369F4K5E3B16LLSbvp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 2, + "hasStorage": true + }, + { + "kind": "Var", + "name": "windowBits", + "printedName": "windowBits", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket10CompressorC10windowBits026_1E8A15CDB922173425E5369F4K5E3B16LLSivp", + "mangledName": "$s17VideosdkWebSocket10CompressorC10windowBits026_1E8A15CDB922173425E5369F4K5E3B16LLSivp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(windowBits:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Compressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Compressor", + "printedName": "VideosdkWebSocket.Compressor", + "usr": "s:17VideosdkWebSocket10CompressorC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket10CompressorC10windowBitsACSgSi_tcfc", + "mangledName": "$s17VideosdkWebSocket10CompressorC10windowBitsACSgSi_tcfc", + "moduleName": "VideosdkWebSocket", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket10CompressorC5resetyyKF", + "mangledName": "$s17VideosdkWebSocket10CompressorC5resetyyKF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compress", + "printedName": "compress(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket10CompressorC8compressy10Foundation4DataVAGKF", + "mangledName": "$s17VideosdkWebSocket10CompressorC8compressy10Foundation4DataVAGKF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket10CompressorC", + "mangledName": "$s17VideosdkWebSocket10CompressorC", + "moduleName": "VideosdkWebSocket", + "isOpen": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EngineDelegate", + "printedName": "EngineDelegate", + "children": [ + { + "kind": "Function", + "name": "didReceive", + "printedName": "didReceive(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket14EngineDelegateP10didReceive5eventyAA0bC5EventO_tF", + "mangledName": "$s17VideosdkWebSocket14EngineDelegateP10didReceive5eventyAA0bC5EventO_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.EngineDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket14EngineDelegateP", + "mangledName": "$s17VideosdkWebSocket14EngineDelegateP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Engine", + "printedName": "Engine", + "children": [ + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EngineDelegate", + "printedName": "VideosdkWebSocket.EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6EngineP8register8delegateyAA0D8Delegate_p_tF", + "mangledName": "$s17VideosdkWebSocket6EngineP8register8delegateyAA0D8Delegate_p_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Engine>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6EngineP5start7requesty10Foundation10URLRequestV_tF", + "mangledName": "$s17VideosdkWebSocket6EngineP5start7requesty10Foundation10URLRequestV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Engine>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop(closeCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6EngineP4stop9closeCodeys6UInt16V_tF", + "mangledName": "$s17VideosdkWebSocket6EngineP4stop9closeCodeys6UInt16V_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Engine>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceStop", + "printedName": "forceStop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6EngineP9forceStopyyF", + "mangledName": "$s17VideosdkWebSocket6EngineP9forceStopyyF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Engine>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:opcode:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6EngineP5write4data6opcode10completiony10Foundation4DataV_AA11FrameOpCodeOyycSgtF", + "mangledName": "$s17VideosdkWebSocket6EngineP5write4data6opcode10completiony10Foundation4DataV_AA11FrameOpCodeOyycSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Engine>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(string:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6EngineP5write6string10completionySS_yycSgtF", + "mangledName": "$s17VideosdkWebSocket6EngineP5write6string10completionySS_yycSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Engine>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket6EngineP", + "mangledName": "$s17VideosdkWebSocket6EngineP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "NativeEngine", + "printedName": "NativeEngine", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.EngineDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.EngineDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "EngineDelegate", + "printedName": "VideosdkWebSocket.EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.EngineDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "EngineDelegate", + "printedName": "VideosdkWebSocket.EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EngineDelegate", + "printedName": "VideosdkWebSocket.EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12NativeEngineC8register8delegateyAA0E8Delegate_p_tF", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC8register8delegateyAA0E8Delegate_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12NativeEngineC5start7requesty10Foundation10URLRequestV_tF", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC5start7requesty10Foundation10URLRequestV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop(closeCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12NativeEngineC4stop9closeCodeys6UInt16V_tF", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC4stop9closeCodeys6UInt16V_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceStop", + "printedName": "forceStop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12NativeEngineC9forceStopyyF", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC9forceStopyyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(string:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12NativeEngineC5write6string10completionySS_yycSgtF", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC5write6string10completionySS_yycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:opcode:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12NativeEngineC5write4data6opcode10completiony10Foundation4DataV_AA11FrameOpCodeOyycSgtF", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC5write4data6opcode10completiony10Foundation4DataV_AA11FrameOpCodeOyycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "urlSession", + "printedName": "urlSession(_:webSocketTask:didOpenWithProtocol:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLSession", + "printedName": "Foundation.URLSession", + "usr": "c:objc(cs)NSURLSession" + }, + { + "kind": "TypeNominal", + "name": "URLSessionWebSocketTask", + "printedName": "Foundation.URLSessionWebSocketTask", + "usr": "c:objc(cs)NSURLSessionWebSocketTask" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@VideosdkWebSocket@objc(cs)NativeEngine(im)URLSession:webSocketTask:didOpenWithProtocol:", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC10urlSession_03webC4Task19didOpenWithProtocolySo12NSURLSessionC_So0nbcI0CSSSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "objc_name": "URLSession:webSocketTask:didOpenWithProtocol:", + "declAttributes": [ + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "urlSession", + "printedName": "urlSession(_:webSocketTask:didCloseWith:reason:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLSession", + "printedName": "Foundation.URLSession", + "usr": "c:objc(cs)NSURLSession" + }, + { + "kind": "TypeNominal", + "name": "URLSessionWebSocketTask", + "printedName": "Foundation.URLSessionWebSocketTask", + "usr": "c:objc(cs)NSURLSessionWebSocketTask" + }, + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "Foundation.URLSessionWebSocketTask.CloseCode", + "usr": "c:@E@NSURLSessionWebSocketCloseCode" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@VideosdkWebSocket@objc(cs)NativeEngine(im)URLSession:webSocketTask:didCloseWithCode:reason:", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC10urlSession_03webC4Task12didCloseWith6reasonySo12NSURLSessionC_So0nbcI0CSo0nbcK4CodeV10Foundation4DataVSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "objc_name": "URLSession:webSocketTask:didCloseWithCode:reason:", + "declAttributes": [ + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NativeEngine", + "printedName": "VideosdkWebSocket.NativeEngine", + "usr": "c:@M@VideosdkWebSocket@objc(cs)NativeEngine" + } + ], + "declKind": "Constructor", + "usr": "c:@M@VideosdkWebSocket@objc(cs)NativeEngine(im)init", + "mangledName": "$s17VideosdkWebSocket12NativeEngineCACycfc", + "moduleName": "VideosdkWebSocket", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@VideosdkWebSocket@objc(cs)NativeEngine", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "intro_Macosx": "10.15", + "intro_iOS": "13.0", + "intro_tvOS": "13.0", + "intro_watchOS": "6.0", + "declAttributes": [ + "AccessControl", + "Available", + "Available", + "Available", + "Available", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Engine", + "printedName": "Engine", + "usr": "s:17VideosdkWebSocket6EngineP", + "mangledName": "$s17VideosdkWebSocket6EngineP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "WSEngine", + "printedName": "WSEngine", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.EngineDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.EngineDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "EngineDelegate", + "printedName": "VideosdkWebSocket.EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.EngineDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "EngineDelegate", + "printedName": "VideosdkWebSocket.EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "respondToPingWithPong", + "printedName": "respondToPingWithPong", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvp", + "mangledName": "$s17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvg", + "mangledName": "$s17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvs", + "mangledName": "$s17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvM", + "mangledName": "$s17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(transport:certPinner:headerValidator:httpHandler:framer:compressionHandler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WSEngine", + "printedName": "VideosdkWebSocket.WSEngine", + "usr": "s:17VideosdkWebSocket8WSEngineC" + }, + { + "kind": "TypeNominal", + "name": "Transport", + "printedName": "VideosdkWebSocket.Transport", + "usr": "s:17VideosdkWebSocket9TransportP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CertificatePinning?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificatePinning", + "printedName": "VideosdkWebSocket.CertificatePinning", + "usr": "s:17VideosdkWebSocket18CertificatePinningP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "HeaderValidator", + "printedName": "VideosdkWebSocket.HeaderValidator", + "hasDefaultArg": true, + "usr": "s:17VideosdkWebSocket15HeaderValidatorP" + }, + { + "kind": "TypeNominal", + "name": "HTTPHandler", + "printedName": "VideosdkWebSocket.HTTPHandler", + "hasDefaultArg": true, + "usr": "s:17VideosdkWebSocket11HTTPHandlerP" + }, + { + "kind": "TypeNominal", + "name": "Framer", + "printedName": "VideosdkWebSocket.Framer", + "hasDefaultArg": true, + "usr": "s:17VideosdkWebSocket6FramerP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CompressionHandler?", + "children": [ + { + "kind": "TypeNominal", + "name": "CompressionHandler", + "printedName": "VideosdkWebSocket.CompressionHandler", + "usr": "s:17VideosdkWebSocket18CompressionHandlerP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket8WSEngineC9transport10certPinner15headerValidator11httpHandler6framer011compressionK0AcA9Transport_p_AA18CertificatePinning_pSgAA06HeaderI0_pAA11HTTPHandler_pAA6Framer_pAA011CompressionK0_pSgtcfc", + "mangledName": "$s17VideosdkWebSocket8WSEngineC9transport10certPinner15headerValidator11httpHandler6framer011compressionK0AcA9Transport_p_AA18CertificatePinning_pSgAA06HeaderI0_pAA11HTTPHandler_pAA6Framer_pAA011CompressionK0_pSgtcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EngineDelegate", + "printedName": "VideosdkWebSocket.EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC8register8delegateyAA14EngineDelegate_p_tF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC8register8delegateyAA14EngineDelegate_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC5start7requesty10Foundation10URLRequestV_tF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC5start7requesty10Foundation10URLRequestV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop(closeCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "hasDefaultArg": true, + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC4stop9closeCodeys6UInt16V_tF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC4stop9closeCodeys6UInt16V_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceStop", + "printedName": "forceStop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC9forceStopyyF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC9forceStopyyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(string:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC5write6string10completionySS_yycSgtF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC5write6string10completionySS_yycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:opcode:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC5write4data6opcode10completiony10Foundation4DataV_AA11FrameOpCodeOyycSgtF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC5write4data6opcode10completiony10Foundation4DataV_AA11FrameOpCodeOyycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "connectionChanged", + "printedName": "connectionChanged(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC17connectionChanged5stateyAA15ConnectionStateO_tF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC17connectionChanged5stateyAA15ConnectionStateO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "didReceiveHTTP", + "printedName": "didReceiveHTTP(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC14didReceiveHTTP5eventyAA9HTTPEventO_tF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC14didReceiveHTTP5eventyAA9HTTPEventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "frameProcessed", + "printedName": "frameProcessed(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FrameEvent", + "printedName": "VideosdkWebSocket.FrameEvent", + "usr": "s:17VideosdkWebSocket10FrameEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC14frameProcessed5eventyAA10FrameEventO_tF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC14frameProcessed5eventyAA10FrameEventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decompress", + "printedName": "decompress(data:isFinal:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "didForm", + "printedName": "didForm(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC7didForm5eventyAA14FrameCollectorC5EventO_tF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC7didForm5eventyAA14FrameCollectorC5EventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket8WSEngineC", + "mangledName": "$s17VideosdkWebSocket8WSEngineC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Engine", + "printedName": "Engine", + "usr": "s:17VideosdkWebSocket6EngineP", + "mangledName": "$s17VideosdkWebSocket6EngineP" + }, + { + "kind": "Conformance", + "name": "TransportEventClient", + "printedName": "TransportEventClient", + "usr": "s:17VideosdkWebSocket20TransportEventClientP", + "mangledName": "$s17VideosdkWebSocket20TransportEventClientP" + }, + { + "kind": "Conformance", + "name": "FramerEventClient", + "printedName": "FramerEventClient", + "usr": "s:17VideosdkWebSocket17FramerEventClientP", + "mangledName": "$s17VideosdkWebSocket17FramerEventClientP" + }, + { + "kind": "Conformance", + "name": "FrameCollectorDelegate", + "printedName": "FrameCollectorDelegate", + "usr": "s:17VideosdkWebSocket22FrameCollectorDelegateP", + "mangledName": "$s17VideosdkWebSocket22FrameCollectorDelegateP" + }, + { + "kind": "Conformance", + "name": "HTTPHandlerDelegate", + "printedName": "HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP", + "mangledName": "$s17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FoundationHTTPHandler", + "printedName": "FoundationHTTPHandler", + "children": [ + { + "kind": "Var", + "name": "buffer", + "printedName": "buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvp", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvg", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvs", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvM", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPHandlerDelegate", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPHandlerDelegate", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationHTTPHandler", + "printedName": "VideosdkWebSocket.FoundationHTTPHandler", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerCACycfc", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerCACycfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "convert", + "printedName": "convert(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC7convert7request0D04DataVAF10URLRequestV_tF", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC7convert7request0D04DataVAF10URLRequestV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parse", + "printedName": "parse(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC5parse4dataSi0D04DataV_tF", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC5parse4dataSi0D04DataV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseContent", + "printedName": "parseContent(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC12parseContent4dataSb0D04DataV_tF", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC12parseContent4dataSb0D04DataV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPHandlerDelegate", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC8register8delegateyAA0E8Delegate_p_tF", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC8register8delegateyAA0E8Delegate_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "HTTPHandler", + "printedName": "HTTPHandler", + "usr": "s:17VideosdkWebSocket11HTTPHandlerP", + "mangledName": "$s17VideosdkWebSocket11HTTPHandlerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FoundationHTTPServerHandler", + "printedName": "FoundationHTTPServerHandler", + "children": [ + { + "kind": "Var", + "name": "buffer", + "printedName": "buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvp", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvg", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvs", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvM", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.HTTPServerDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.HTTPServerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPServerDelegate", + "printedName": "VideosdkWebSocket.HTTPServerDelegate", + "usr": "s:17VideosdkWebSocket18HTTPServerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.HTTPServerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPServerDelegate", + "printedName": "VideosdkWebSocket.HTTPServerDelegate", + "usr": "s:17VideosdkWebSocket18HTTPServerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "getVerb", + "printedName": "getVerb", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC7getVerbSo8NSStringCvp", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC7getVerbSo8NSStringCvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC7getVerbSo8NSStringCvg", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC7getVerbSo8NSStringCvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPServerDelegate", + "printedName": "VideosdkWebSocket.HTTPServerDelegate", + "usr": "s:17VideosdkWebSocket18HTTPServerDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC8register8delegateyAA0E8Delegate_p_tF", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC8register8delegateyAA0E8Delegate_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(headers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC14createResponse7headers0D04DataVSDyS2SG_tF", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC14createResponse7headers0D04DataVSDyS2SG_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parse", + "printedName": "parse(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC5parse4datay0D04DataV_tF", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC5parse4datay0D04DataV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseContent", + "printedName": "parseContent(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC12parseContent4dataSb0D04DataV_tF", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC12parseContent4dataSb0D04DataV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationHTTPServerHandler", + "printedName": "VideosdkWebSocket.FoundationHTTPServerHandler", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerCACycfc", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerCACycfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "HTTPServerHandler", + "printedName": "HTTPServerHandler", + "usr": "s:17VideosdkWebSocket17HTTPServerHandlerP", + "mangledName": "$s17VideosdkWebSocket17HTTPServerHandlerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FrameCollectorDelegate", + "printedName": "FrameCollectorDelegate", + "children": [ + { + "kind": "Function", + "name": "didForm", + "printedName": "didForm(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket22FrameCollectorDelegateP7didForm5eventyAA0dE0C5EventO_tF", + "mangledName": "$s17VideosdkWebSocket22FrameCollectorDelegateP7didForm5eventyAA0dE0C5EventO_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.FrameCollectorDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decompress", + "printedName": "decompress(data:isFinal:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket22FrameCollectorDelegateP10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "mangledName": "$s17VideosdkWebSocket22FrameCollectorDelegateP10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.FrameCollectorDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket22FrameCollectorDelegateP", + "mangledName": "$s17VideosdkWebSocket22FrameCollectorDelegateP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "FrameCollector", + "printedName": "FrameCollector", + "children": [ + { + "kind": "TypeDecl", + "name": "Event", + "printedName": "Event", + "children": [ + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameCollector.Event.Type) -> (Swift.String) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameCollector.Event.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO4textyAESScAEmF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5EventO4textyAESScAEmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "binary", + "printedName": "binary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameCollector.Event.Type) -> (Foundation.Data) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameCollector.Event.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO6binaryyAE10Foundation4DataVcAEmF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5EventO6binaryyAE10Foundation4DataVcAEmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "pong", + "printedName": "pong", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameCollector.Event.Type) -> (Foundation.Data?) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data?) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameCollector.Event.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO4pongyAE10Foundation4DataVSgcAEmF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5EventO4pongyAE10Foundation4DataVSgcAEmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "ping", + "printedName": "ping", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameCollector.Event.Type) -> (Foundation.Data?) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data?) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameCollector.Event.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO4pingyAE10Foundation4DataVSgcAEmF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5EventO4pingyAE10Foundation4DataVSgcAEmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameCollector.Event.Type) -> (Swift.Error) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameCollector.Event.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO5erroryAEs5Error_pcAEmF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5EventO5erroryAEs5Error_pcAEmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameCollector.Event.Type) -> (Swift.String, Swift.UInt16) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.UInt16) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.UInt16)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameCollector.Event.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO6closedyAESS_s6UInt16VtcAEmF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5EventO6closedyAESS_s6UInt16VtcAEmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5EventO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.FrameCollectorDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.FrameCollectorDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameCollectorDelegate", + "printedName": "VideosdkWebSocket.FrameCollectorDelegate", + "usr": "s:17VideosdkWebSocket22FrameCollectorDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.FrameCollectorDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameCollectorDelegate", + "printedName": "VideosdkWebSocket.FrameCollectorDelegate", + "usr": "s:17VideosdkWebSocket22FrameCollectorDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "buffer", + "printedName": "buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvp", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvg", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvs", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvM", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "frameCount", + "printedName": "frameCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket14FrameCollectorC10frameCountSivp", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC10frameCountSivp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC10frameCountSivg", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC10frameCountSivg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC10frameCountSivs", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC10frameCountSivs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC10frameCountSivM", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC10frameCountSivM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isText", + "printedName": "isText", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6isTextSbvp", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6isTextSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6isTextSbvg", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6isTextSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6isTextSbvs", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6isTextSbvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6isTextSbvM", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6isTextSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "needsDecompression", + "printedName": "needsDecompression", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvp", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvg", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvs", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvM", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Frame", + "printedName": "VideosdkWebSocket.Frame", + "usr": "s:17VideosdkWebSocket5FrameV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket14FrameCollectorC3add5frameyAA0D0V_tF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC3add5frameyAA0D0V_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5resetyyF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5resetyyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameCollector", + "printedName": "VideosdkWebSocket.FrameCollector", + "usr": "s:17VideosdkWebSocket14FrameCollectorC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket14FrameCollectorCACycfc", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorCACycfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket14FrameCollectorC", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "FinMask", + "printedName": "FinMask", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket7FinMasks5UInt8Vvp", + "mangledName": "$s17VideosdkWebSocket7FinMasks5UInt8Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "OpCodeMask", + "printedName": "OpCodeMask", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket10OpCodeMasks5UInt8Vvp", + "mangledName": "$s17VideosdkWebSocket10OpCodeMasks5UInt8Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "RSVMask", + "printedName": "RSVMask", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket7RSVMasks5UInt8Vvp", + "mangledName": "$s17VideosdkWebSocket7RSVMasks5UInt8Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "RSV1Mask", + "printedName": "RSV1Mask", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket8RSV1Masks5UInt8Vvp", + "mangledName": "$s17VideosdkWebSocket8RSV1Masks5UInt8Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "MaskMask", + "printedName": "MaskMask", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket04MaskD0s5UInt8Vvp", + "mangledName": "$s17VideosdkWebSocket04MaskD0s5UInt8Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "PayloadLenMask", + "printedName": "PayloadLenMask", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket14PayloadLenMasks5UInt8Vvp", + "mangledName": "$s17VideosdkWebSocket14PayloadLenMasks5UInt8Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "MaxFrameSize", + "printedName": "MaxFrameSize", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12MaxFrameSizeSivp", + "mangledName": "$s17VideosdkWebSocket12MaxFrameSizeSivp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true + }, + { + "kind": "TypeDecl", + "name": "CloseCode", + "printedName": "CloseCode", + "children": [ + { + "kind": "Var", + "name": "normal", + "printedName": "normal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO6normalyA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO6normalyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "goingAway", + "printedName": "goingAway", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO9goingAwayyA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO9goingAwayyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "protocolError", + "printedName": "protocolError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO13protocolErroryA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO13protocolErroryA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "protocolUnhandledType", + "printedName": "protocolUnhandledType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO21protocolUnhandledTypeyA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO21protocolUnhandledTypeyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "noStatusReceived", + "printedName": "noStatusReceived", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO16noStatusReceivedyA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO16noStatusReceivedyA2CmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "encoding", + "printedName": "encoding", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO8encodingyA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO8encodingyA2CmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "policyViolated", + "printedName": "policyViolated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO14policyViolatedyA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO14policyViolatedyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "messageTooBig", + "printedName": "messageTooBig", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO13messageTooBigyA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO13messageTooBigyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket9CloseCodeO8rawValues6UInt16Vvp", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO8rawValues6UInt16Vvp", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket9CloseCodeO8rawValues6UInt16Vvg", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO8rawValues6UInt16Vvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CloseCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket9CloseCodeO8rawValueACSgs6UInt16V_tcfc", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO8rawValueACSgs6UInt16V_tcfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket9CloseCodeO", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt16", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FrameOpCode", + "printedName": "FrameOpCode", + "children": [ + { + "kind": "Var", + "name": "continueFrame", + "printedName": "continueFrame", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameOpCode.Type) -> VideosdkWebSocket.FrameOpCode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameOpCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO08continueD0yA2CmF", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO08continueD0yA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "textFrame", + "printedName": "textFrame", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameOpCode.Type) -> VideosdkWebSocket.FrameOpCode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameOpCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO04textD0yA2CmF", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO04textD0yA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "binaryFrame", + "printedName": "binaryFrame", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameOpCode.Type) -> VideosdkWebSocket.FrameOpCode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameOpCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO06binaryD0yA2CmF", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO06binaryD0yA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "connectionClose", + "printedName": "connectionClose", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameOpCode.Type) -> VideosdkWebSocket.FrameOpCode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameOpCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO15connectionCloseyA2CmF", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO15connectionCloseyA2CmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "ping", + "printedName": "ping", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameOpCode.Type) -> VideosdkWebSocket.FrameOpCode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameOpCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO4pingyA2CmF", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO4pingyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "pong", + "printedName": "pong", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameOpCode.Type) -> VideosdkWebSocket.FrameOpCode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameOpCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO4pongyA2CmF", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO4pongyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameOpCode.Type) -> VideosdkWebSocket.FrameOpCode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameOpCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO7unknownyA2CmF", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO7unknownyA2CmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.FrameOpCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO8rawValues5UInt8Vvp", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO8rawValues5UInt8Vvp", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO8rawValues5UInt8Vvg", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO8rawValues5UInt8Vvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Frame", + "printedName": "Frame", + "children": [ + { + "kind": "Var", + "name": "isFin", + "printedName": "isFin", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket5FrameV5isFinSbvp", + "mangledName": "$s17VideosdkWebSocket5FrameV5isFinSbvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket5FrameV5isFinSbvg", + "mangledName": "$s17VideosdkWebSocket5FrameV5isFinSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "needsDecompression", + "printedName": "needsDecompression", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket5FrameV18needsDecompressionSbvp", + "mangledName": "$s17VideosdkWebSocket5FrameV18needsDecompressionSbvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket5FrameV18needsDecompressionSbvg", + "mangledName": "$s17VideosdkWebSocket5FrameV18needsDecompressionSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isMasked", + "printedName": "isMasked", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket5FrameV8isMaskedSbvp", + "mangledName": "$s17VideosdkWebSocket5FrameV8isMaskedSbvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket5FrameV8isMaskedSbvg", + "mangledName": "$s17VideosdkWebSocket5FrameV8isMaskedSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "opcode", + "printedName": "opcode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket5FrameV6opcodeAA0D6OpCodeOvp", + "mangledName": "$s17VideosdkWebSocket5FrameV6opcodeAA0D6OpCodeOvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket5FrameV6opcodeAA0D6OpCodeOvg", + "mangledName": "$s17VideosdkWebSocket5FrameV6opcodeAA0D6OpCodeOvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "payloadLength", + "printedName": "payloadLength", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket5FrameV13payloadLengths6UInt64Vvp", + "mangledName": "$s17VideosdkWebSocket5FrameV13payloadLengths6UInt64Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket5FrameV13payloadLengths6UInt64Vvg", + "mangledName": "$s17VideosdkWebSocket5FrameV13payloadLengths6UInt64Vvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "payload", + "printedName": "payload", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket5FrameV7payload10Foundation4DataVvp", + "mangledName": "$s17VideosdkWebSocket5FrameV7payload10Foundation4DataVvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket5FrameV7payload10Foundation4DataVvg", + "mangledName": "$s17VideosdkWebSocket5FrameV7payload10Foundation4DataVvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "closeCode", + "printedName": "closeCode", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket5FrameV9closeCodes6UInt16Vvp", + "mangledName": "$s17VideosdkWebSocket5FrameV9closeCodes6UInt16Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket5FrameV9closeCodes6UInt16Vvg", + "mangledName": "$s17VideosdkWebSocket5FrameV9closeCodes6UInt16Vvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(isFin:needsDecompression:isMasked:opcode:payloadLength:payload:closeCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Frame", + "printedName": "VideosdkWebSocket.Frame", + "usr": "s:17VideosdkWebSocket5FrameV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket5FrameV5isFin18needsDecompression0E6Masked6opcode13payloadLength0K09closeCodeACSb_S2bAA0d2OpN0Os6UInt64V10Foundation4DataVs6UInt16Vtcfc", + "mangledName": "$s17VideosdkWebSocket5FrameV5isFin18needsDecompression0E6Masked6opcode13payloadLength0K09closeCodeACSb_S2bAA0d2OpN0Os6UInt64V10Foundation4DataVs6UInt16Vtcfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:17VideosdkWebSocket5FrameV", + "mangledName": "$s17VideosdkWebSocket5FrameV", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "FrameEvent", + "printedName": "FrameEvent", + "children": [ + { + "kind": "Var", + "name": "frame", + "printedName": "frame", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameEvent.Type) -> (VideosdkWebSocket.Frame) -> VideosdkWebSocket.FrameEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Frame) -> VideosdkWebSocket.FrameEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameEvent", + "printedName": "VideosdkWebSocket.FrameEvent", + "usr": "s:17VideosdkWebSocket10FrameEventO" + }, + { + "kind": "TypeNominal", + "name": "Frame", + "printedName": "VideosdkWebSocket.Frame", + "usr": "s:17VideosdkWebSocket5FrameV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameEvent", + "printedName": "VideosdkWebSocket.FrameEvent", + "usr": "s:17VideosdkWebSocket10FrameEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket10FrameEventO5frameyAcA0D0VcACmF", + "mangledName": "$s17VideosdkWebSocket10FrameEventO5frameyAcA0D0VcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameEvent.Type) -> (Swift.Error) -> VideosdkWebSocket.FrameEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> VideosdkWebSocket.FrameEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameEvent", + "printedName": "VideosdkWebSocket.FrameEvent", + "usr": "s:17VideosdkWebSocket10FrameEventO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameEvent", + "printedName": "VideosdkWebSocket.FrameEvent", + "usr": "s:17VideosdkWebSocket10FrameEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket10FrameEventO5erroryACs5Error_pcACmF", + "mangledName": "$s17VideosdkWebSocket10FrameEventO5erroryACs5Error_pcACmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket10FrameEventO", + "mangledName": "$s17VideosdkWebSocket10FrameEventO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "FramerEventClient", + "printedName": "FramerEventClient", + "children": [ + { + "kind": "Function", + "name": "frameProcessed", + "printedName": "frameProcessed(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FrameEvent", + "printedName": "VideosdkWebSocket.FrameEvent", + "usr": "s:17VideosdkWebSocket10FrameEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17FramerEventClientP14frameProcessed5eventyAA05FrameE0O_tF", + "mangledName": "$s17VideosdkWebSocket17FramerEventClientP14frameProcessed5eventyAA05FrameE0O_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.FramerEventClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket17FramerEventClientP", + "mangledName": "$s17VideosdkWebSocket17FramerEventClientP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Framer", + "printedName": "Framer", + "children": [ + { + "kind": "Function", + "name": "add", + "printedName": "add(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6FramerP3add4datay10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket6FramerP3add4datay10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Framer>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FramerEventClient", + "printedName": "VideosdkWebSocket.FramerEventClient", + "usr": "s:17VideosdkWebSocket17FramerEventClientP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6FramerP8register8delegateyAA0D11EventClient_p_tF", + "mangledName": "$s17VideosdkWebSocket6FramerP8register8delegateyAA0D11EventClient_p_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Framer>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createWriteFrame", + "printedName": "createWriteFrame(opcode:payload:isCompressed:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6FramerP16createWriteFrame6opcode7payload12isCompressed10Foundation4DataVAA0G6OpCodeO_AJSbtF", + "mangledName": "$s17VideosdkWebSocket6FramerP16createWriteFrame6opcode7payload12isCompressed10Foundation4DataVAA0G6OpCodeO_AJSbtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Framer>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateCompression", + "printedName": "updateCompression(supports:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6FramerP17updateCompression8supportsySb_tF", + "mangledName": "$s17VideosdkWebSocket6FramerP17updateCompression8supportsySb_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Framer>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "supportsCompression", + "printedName": "supportsCompression()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6FramerP19supportsCompressionSbyF", + "mangledName": "$s17VideosdkWebSocket6FramerP19supportsCompressionSbyF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Framer>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket6FramerP", + "mangledName": "$s17VideosdkWebSocket6FramerP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "WSFramer", + "printedName": "WSFramer", + "children": [ + { + "kind": "Var", + "name": "compressionEnabled", + "printedName": "compressionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket8WSFramerC18compressionEnabledSbvp", + "mangledName": "$s17VideosdkWebSocket8WSFramerC18compressionEnabledSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSFramerC18compressionEnabledSbvg", + "mangledName": "$s17VideosdkWebSocket8WSFramerC18compressionEnabledSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSFramerC18compressionEnabledSbvs", + "mangledName": "$s17VideosdkWebSocket8WSFramerC18compressionEnabledSbvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSFramerC18compressionEnabledSbvM", + "mangledName": "$s17VideosdkWebSocket8WSFramerC18compressionEnabledSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(isServer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WSFramer", + "printedName": "VideosdkWebSocket.WSFramer", + "usr": "s:17VideosdkWebSocket8WSFramerC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket8WSFramerC8isServerACSb_tcfc", + "mangledName": "$s17VideosdkWebSocket8WSFramerC8isServerACSb_tcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "updateCompression", + "printedName": "updateCompression(supports:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSFramerC17updateCompression8supportsySb_tF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC17updateCompression8supportsySb_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "supportsCompression", + "printedName": "supportsCompression()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSFramerC19supportsCompressionSbyF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC19supportsCompressionSbyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "ProcessEvent", + "printedName": "ProcessEvent", + "children": [ + { + "kind": "Var", + "name": "needsMoreData", + "printedName": "needsMoreData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WSFramer.ProcessEvent.Type) -> VideosdkWebSocket.WSFramer.ProcessEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ProcessEvent", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProcessEvent", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO13needsMoreDatayA2EmF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC12ProcessEventO13needsMoreDatayA2EmF", + "moduleName": "VideosdkWebSocket", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "processedFrame", + "printedName": "processedFrame", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WSFramer.ProcessEvent.Type) -> (VideosdkWebSocket.Frame, Swift.Int) -> VideosdkWebSocket.WSFramer.ProcessEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Frame, Swift.Int) -> VideosdkWebSocket.WSFramer.ProcessEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ProcessEvent", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(VideosdkWebSocket.Frame, Swift.Int)", + "children": [ + { + "kind": "TypeNominal", + "name": "Frame", + "printedName": "VideosdkWebSocket.Frame", + "usr": "s:17VideosdkWebSocket5FrameV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProcessEvent", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO14processedFrameyAeA0H0V_SitcAEmF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC12ProcessEventO14processedFrameyAeA0H0V_SitcAEmF", + "moduleName": "VideosdkWebSocket", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WSFramer.ProcessEvent.Type) -> (Swift.Error) -> VideosdkWebSocket.WSFramer.ProcessEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> VideosdkWebSocket.WSFramer.ProcessEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ProcessEvent", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProcessEvent", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO6failedyAEs5Error_pcAEmF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC12ProcessEventO6failedyAEs5Error_pcAEmF", + "moduleName": "VideosdkWebSocket", + "fixedbinaryorder": 2 + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO", + "mangledName": "$s17VideosdkWebSocket8WSFramerC12ProcessEventO", + "moduleName": "VideosdkWebSocket", + "isEnumExhaustive": true + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSFramerC3add4datay10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC3add4datay10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FramerEventClient", + "printedName": "VideosdkWebSocket.FramerEventClient", + "usr": "s:17VideosdkWebSocket17FramerEventClientP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSFramerC8register8delegateyAA17FramerEventClient_p_tF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC8register8delegateyAA17FramerEventClient_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createWriteFrame", + "printedName": "createWriteFrame(opcode:payload:isCompressed:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSFramerC16createWriteFrame6opcode7payload12isCompressed10Foundation4DataVAA0G6OpCodeO_AJSbtF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC16createWriteFrame6opcode7payload12isCompressed10Foundation4DataVAA0G6OpCodeO_AJSbtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket8WSFramerC", + "mangledName": "$s17VideosdkWebSocket8WSFramerC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Framer", + "printedName": "Framer", + "usr": "s:17VideosdkWebSocket6FramerP", + "mangledName": "$s17VideosdkWebSocket6FramerP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MyWSArrayType", + "printedName": "MyWSArrayType", + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket13MyWSArrayTypeP", + "mangledName": "$s17VideosdkWebSocket13MyWSArrayTypeP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "writeUint16", + "printedName": "writeUint16(_:offset:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket11writeUint16_6offset5valueySays5UInt8VGz_Sis6UInt16VtF", + "mangledName": "$s17VideosdkWebSocket11writeUint16_6offset5valueySays5UInt8VGz_Sis6UInt16VtF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "writeUint32", + "printedName": "writeUint32(_:offset:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket11writeUint32_6offset5valueySays5UInt8VGz_Sis6UInt32VtF", + "mangledName": "$s17VideosdkWebSocket11writeUint32_6offset5valueySays5UInt8VGz_Sis6UInt32VtF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "writeUint64", + "printedName": "writeUint64(_:offset:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket11writeUint64_6offset5valueySays5UInt8VGz_Sis6UInt64VtF", + "mangledName": "$s17VideosdkWebSocket11writeUint64_6offset5valueySays5UInt8VGz_Sis6UInt64VtF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HTTPUpgradeError", + "printedName": "HTTPUpgradeError", + "children": [ + { + "kind": "Var", + "name": "notAnUpgrade", + "printedName": "notAnUpgrade", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.HTTPUpgradeError.Type) -> (Swift.Int, [Swift.String : Swift.String]) -> VideosdkWebSocket.HTTPUpgradeError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int, [Swift.String : Swift.String]) -> VideosdkWebSocket.HTTPUpgradeError", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPUpgradeError", + "printedName": "VideosdkWebSocket.HTTPUpgradeError", + "usr": "s:17VideosdkWebSocket16HTTPUpgradeErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Int, [Swift.String : Swift.String])", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.HTTPUpgradeError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPUpgradeError", + "printedName": "VideosdkWebSocket.HTTPUpgradeError", + "usr": "s:17VideosdkWebSocket16HTTPUpgradeErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket16HTTPUpgradeErrorO12notAnUpgradeyACSi_SDyS2SGtcACmF", + "mangledName": "$s17VideosdkWebSocket16HTTPUpgradeErrorO12notAnUpgradeyACSi_SDyS2SGtcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "invalidData", + "printedName": "invalidData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.HTTPUpgradeError.Type) -> VideosdkWebSocket.HTTPUpgradeError", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPUpgradeError", + "printedName": "VideosdkWebSocket.HTTPUpgradeError", + "usr": "s:17VideosdkWebSocket16HTTPUpgradeErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.HTTPUpgradeError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPUpgradeError", + "printedName": "VideosdkWebSocket.HTTPUpgradeError", + "usr": "s:17VideosdkWebSocket16HTTPUpgradeErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket16HTTPUpgradeErrorO11invalidDatayA2CmF", + "mangledName": "$s17VideosdkWebSocket16HTTPUpgradeErrorO11invalidDatayA2CmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket16HTTPUpgradeErrorO", + "mangledName": "$s17VideosdkWebSocket16HTTPUpgradeErrorO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "HTTPWSHeader", + "printedName": "HTTPWSHeader", + "children": [ + { + "kind": "Var", + "name": "upgradeName", + "printedName": "upgradeName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV11upgradeNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV11upgradeNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV11upgradeNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV11upgradeNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "upgradeValue", + "printedName": "upgradeValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV12upgradeValueSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV12upgradeValueSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV12upgradeValueSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV12upgradeValueSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hostName", + "printedName": "hostName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV8hostNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV8hostNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV8hostNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV8hostNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectionName", + "printedName": "connectionName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV14connectionNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV14connectionNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV14connectionNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV14connectionNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectionValue", + "printedName": "connectionValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV15connectionValueSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV15connectionValueSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV15connectionValueSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV15connectionValueSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "protocolName", + "printedName": "protocolName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV12protocolNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV12protocolNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV12protocolNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV12protocolNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "versionName", + "printedName": "versionName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV11versionNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV11versionNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV11versionNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV11versionNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "versionValue", + "printedName": "versionValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV12versionValueSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV12versionValueSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV12versionValueSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV12versionValueSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extensionName", + "printedName": "extensionName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV13extensionNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV13extensionNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV13extensionNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV13extensionNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "keyName", + "printedName": "keyName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV7keyNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV7keyNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV7keyNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV7keyNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "originName", + "printedName": "originName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV10originNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV10originNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV10originNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV10originNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "acceptName", + "printedName": "acceptName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV10acceptNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV10acceptNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV10acceptNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV10acceptNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "switchProtocolCode", + "printedName": "switchProtocolCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV18switchProtocolCodeSivpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV18switchProtocolCodeSivpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV18switchProtocolCodeSivgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV18switchProtocolCodeSivgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultSSLSchemes", + "printedName": "defaultSSLSchemes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV17defaultSSLSchemesSaySSGvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV17defaultSSLSchemesSaySSGvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV17defaultSSLSchemesSaySSGvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV17defaultSSLSchemesSaySSGvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createUpgrade", + "printedName": "createUpgrade(request:supportsCompression:secKeyValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV13createUpgrade7request19supportsCompression11secKeyValue10Foundation10URLRequestVAJ_SbSStFZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV13createUpgrade7request19supportsCompression11secKeyValue10Foundation10URLRequestVAJ_SbSStFZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateWebSocketKey", + "printedName": "generateWebSocketKey()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV08generatebC3KeySSyFZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV08generatebC3KeySSyFZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPWSHeader", + "printedName": "VideosdkWebSocket.HTTPWSHeader", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderVACycfc", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderVACycfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "HTTPEvent", + "printedName": "HTTPEvent", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.HTTPEvent.Type) -> ([Swift.String : Swift.String]) -> VideosdkWebSocket.HTTPEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Swift.String]) -> VideosdkWebSocket.HTTPEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.HTTPEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9HTTPEventO7successyACSDyS2SGcACmF", + "mangledName": "$s17VideosdkWebSocket9HTTPEventO7successyACSDyS2SGcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "failure", + "printedName": "failure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.HTTPEvent.Type) -> (Swift.Error) -> VideosdkWebSocket.HTTPEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> VideosdkWebSocket.HTTPEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.HTTPEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9HTTPEventO7failureyACs5Error_pcACmF", + "mangledName": "$s17VideosdkWebSocket9HTTPEventO7failureyACs5Error_pcACmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket9HTTPEventO", + "mangledName": "$s17VideosdkWebSocket9HTTPEventO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "HTTPHandlerDelegate", + "printedName": "HTTPHandlerDelegate", + "children": [ + { + "kind": "Function", + "name": "didReceiveHTTP", + "printedName": "didReceiveHTTP(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP14didReceiveHTTP5eventyAA9HTTPEventO_tF", + "mangledName": "$s17VideosdkWebSocket19HTTPHandlerDelegateP14didReceiveHTTP5eventyAA9HTTPEventO_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPHandlerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP", + "mangledName": "$s17VideosdkWebSocket19HTTPHandlerDelegateP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "HTTPHandler", + "printedName": "HTTPHandler", + "children": [ + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPHandlerDelegate", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket11HTTPHandlerP8register8delegateyAA0D8Delegate_p_tF", + "mangledName": "$s17VideosdkWebSocket11HTTPHandlerP8register8delegateyAA0D8Delegate_p_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "convert", + "printedName": "convert(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket11HTTPHandlerP7convert7request10Foundation4DataVAF10URLRequestV_tF", + "mangledName": "$s17VideosdkWebSocket11HTTPHandlerP7convert7request10Foundation4DataVAF10URLRequestV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parse", + "printedName": "parse(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket11HTTPHandlerP5parse4dataSi10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket11HTTPHandlerP5parse4dataSi10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket11HTTPHandlerP", + "mangledName": "$s17VideosdkWebSocket11HTTPHandlerP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "HTTPServerDelegate", + "printedName": "HTTPServerDelegate", + "children": [ + { + "kind": "Function", + "name": "didReceive", + "printedName": "didReceive(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18HTTPServerDelegateP10didReceive5eventyAA9HTTPEventO_tF", + "mangledName": "$s17VideosdkWebSocket18HTTPServerDelegateP10didReceive5eventyAA9HTTPEventO_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPServerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket18HTTPServerDelegateP", + "mangledName": "$s17VideosdkWebSocket18HTTPServerDelegateP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "HTTPServerHandler", + "printedName": "HTTPServerHandler", + "children": [ + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPServerDelegate", + "printedName": "VideosdkWebSocket.HTTPServerDelegate", + "usr": "s:17VideosdkWebSocket18HTTPServerDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17HTTPServerHandlerP8register8delegateyAA0D8Delegate_p_tF", + "mangledName": "$s17VideosdkWebSocket17HTTPServerHandlerP8register8delegateyAA0D8Delegate_p_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPServerHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parse", + "printedName": "parse(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17HTTPServerHandlerP5parse4datay10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket17HTTPServerHandlerP5parse4datay10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPServerHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(headers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17HTTPServerHandlerP14createResponse7headers10Foundation4DataVSDyS2SG_tF", + "mangledName": "$s17VideosdkWebSocket17HTTPServerHandlerP14createResponse7headers10Foundation4DataVSDyS2SG_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPServerHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket17HTTPServerHandlerP", + "mangledName": "$s17VideosdkWebSocket17HTTPServerHandlerP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "URLParts", + "printedName": "URLParts", + "children": [ + { + "kind": "Var", + "name": "port", + "printedName": "port", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket8URLPartsV4portSivp", + "mangledName": "$s17VideosdkWebSocket8URLPartsV4portSivp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8URLPartsV4portSivg", + "mangledName": "$s17VideosdkWebSocket8URLPartsV4portSivg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "host", + "printedName": "host", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket8URLPartsV4hostSSvp", + "mangledName": "$s17VideosdkWebSocket8URLPartsV4hostSSvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8URLPartsV4hostSSvg", + "mangledName": "$s17VideosdkWebSocket8URLPartsV4hostSSvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isTLS", + "printedName": "isTLS", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket8URLPartsV5isTLSSbvp", + "mangledName": "$s17VideosdkWebSocket8URLPartsV5isTLSSbvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8URLPartsV5isTLSSbvg", + "mangledName": "$s17VideosdkWebSocket8URLPartsV5isTLSSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(port:host:isTLS:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URLParts", + "printedName": "VideosdkWebSocket.URLParts", + "usr": "s:17VideosdkWebSocket8URLPartsV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket8URLPartsV4port4host5isTLSACSi_SSSbtcfc", + "mangledName": "$s17VideosdkWebSocket8URLPartsV4port4host5isTLSACSi_SSSbtcfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:17VideosdkWebSocket8URLPartsV", + "mangledName": "$s17VideosdkWebSocket8URLPartsV", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StringHTTPHandler", + "printedName": "StringHTTPHandler", + "children": [ + { + "kind": "Var", + "name": "buffer", + "printedName": "buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvp", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvg", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvs", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvM", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPHandlerDelegate", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPHandlerDelegate", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "StringHTTPHandler", + "printedName": "VideosdkWebSocket.StringHTTPHandler", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerCACycfc", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerCACycfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "convert", + "printedName": "convert(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC7convert7request10Foundation4DataVAF10URLRequestV_tF", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC7convert7request10Foundation4DataVAF10URLRequestV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parse", + "printedName": "parse(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC5parse4dataSi10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC5parse4dataSi10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseContent", + "printedName": "parseContent(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC12parseContent4dataSb10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC12parseContent4dataSb10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPHandlerDelegate", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC8register8delegateyAA0E8Delegate_p_tF", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC8register8delegateyAA0E8Delegate_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "HTTPHandler", + "printedName": "HTTPHandler", + "usr": "s:17VideosdkWebSocket11HTTPHandlerP", + "mangledName": "$s17VideosdkWebSocket11HTTPHandlerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "TypeDecl", + "name": "FoundationSecurityError", + "printedName": "FoundationSecurityError", + "children": [ + { + "kind": "Var", + "name": "invalidRequest", + "printedName": "invalidRequest", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FoundationSecurityError.Type) -> VideosdkWebSocket.FoundationSecurityError", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationSecurityError", + "printedName": "VideosdkWebSocket.FoundationSecurityError", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FoundationSecurityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationSecurityError", + "printedName": "VideosdkWebSocket.FoundationSecurityError", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO14invalidRequestyA2CmF", + "mangledName": "$s17VideosdkWebSocket23FoundationSecurityErrorO14invalidRequestyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FoundationSecurityError", + "printedName": "VideosdkWebSocket.FoundationSecurityError", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO" + }, + { + "kind": "TypeNominal", + "name": "FoundationSecurityError", + "printedName": "VideosdkWebSocket.FoundationSecurityError", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s17VideosdkWebSocket23FoundationSecurityErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO9hashValueSivp", + "mangledName": "$s17VideosdkWebSocket23FoundationSecurityErrorO9hashValueSivp", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO9hashValueSivg", + "mangledName": "$s17VideosdkWebSocket23FoundationSecurityErrorO9hashValueSivg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s17VideosdkWebSocket23FoundationSecurityErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO", + "mangledName": "$s17VideosdkWebSocket23FoundationSecurityErrorO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FoundationSecurity", + "printedName": "FoundationSecurity", + "children": [ + { + "kind": "Var", + "name": "allowSelfSigned", + "printedName": "allowSelfSigned", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvp", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvg", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvs", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvM", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(allowSelfSigned:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationSecurity", + "printedName": "VideosdkWebSocket.FoundationSecurity", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedACSb_tcfc", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedACSb_tcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "evaluateTrust", + "printedName": "evaluateTrust(trust:domain:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SecTrust", + "printedName": "Security.SecTrust", + "usr": "c:@T@SecTrustRef" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.PinningState) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PinningState", + "printedName": "VideosdkWebSocket.PinningState", + "usr": "s:17VideosdkWebSocket12PinningStateO" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC13evaluateTrust5trust6domain10completionySo03SecG3Refa_SSSgyAA12PinningStateOXEtF", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC13evaluateTrust5trust6domain10completionySo03SecG3Refa_SSSgyAA12PinningStateOXEtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(headers:key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC8validate7headers3keys5Error_pSgSDyS2SG_SStF", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC8validate7headers3keys5Error_pSgSDyS2SG_SStF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CertificatePinning", + "printedName": "CertificatePinning", + "usr": "s:17VideosdkWebSocket18CertificatePinningP", + "mangledName": "$s17VideosdkWebSocket18CertificatePinningP" + }, + { + "kind": "Conformance", + "name": "HeaderValidator", + "printedName": "HeaderValidator", + "usr": "s:17VideosdkWebSocket15HeaderValidatorP", + "mangledName": "$s17VideosdkWebSocket15HeaderValidatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SecurityErrorCode", + "printedName": "SecurityErrorCode", + "children": [ + { + "kind": "Var", + "name": "acceptFailed", + "printedName": "acceptFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.SecurityErrorCode.Type) -> VideosdkWebSocket.SecurityErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "SecurityErrorCode", + "printedName": "VideosdkWebSocket.SecurityErrorCode", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.SecurityErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SecurityErrorCode", + "printedName": "VideosdkWebSocket.SecurityErrorCode", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO12acceptFailedyA2CmF", + "mangledName": "$s17VideosdkWebSocket17SecurityErrorCodeO12acceptFailedyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "pinningFailed", + "printedName": "pinningFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.SecurityErrorCode.Type) -> VideosdkWebSocket.SecurityErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "SecurityErrorCode", + "printedName": "VideosdkWebSocket.SecurityErrorCode", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.SecurityErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SecurityErrorCode", + "printedName": "VideosdkWebSocket.SecurityErrorCode", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO13pinningFailedyA2CmF", + "mangledName": "$s17VideosdkWebSocket17SecurityErrorCodeO13pinningFailedyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.SecurityErrorCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "SecurityErrorCode", + "printedName": "VideosdkWebSocket.SecurityErrorCode", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO8rawValueACSgs6UInt16V_tcfc", + "mangledName": "$s17VideosdkWebSocket17SecurityErrorCodeO8rawValueACSgs6UInt16V_tcfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO8rawValues6UInt16Vvp", + "mangledName": "$s17VideosdkWebSocket17SecurityErrorCodeO8rawValues6UInt16Vvp", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO8rawValues6UInt16Vvg", + "mangledName": "$s17VideosdkWebSocket17SecurityErrorCodeO8rawValues6UInt16Vvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO", + "mangledName": "$s17VideosdkWebSocket17SecurityErrorCodeO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "UInt16", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PinningState", + "printedName": "PinningState", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.PinningState.Type) -> VideosdkWebSocket.PinningState", + "children": [ + { + "kind": "TypeNominal", + "name": "PinningState", + "printedName": "VideosdkWebSocket.PinningState", + "usr": "s:17VideosdkWebSocket12PinningStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.PinningState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PinningState", + "printedName": "VideosdkWebSocket.PinningState", + "usr": "s:17VideosdkWebSocket12PinningStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket12PinningStateO7successyA2CmF", + "mangledName": "$s17VideosdkWebSocket12PinningStateO7successyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.PinningState.Type) -> (CoreFoundation.CFError?) -> VideosdkWebSocket.PinningState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CoreFoundation.CFError?) -> VideosdkWebSocket.PinningState", + "children": [ + { + "kind": "TypeNominal", + "name": "PinningState", + "printedName": "VideosdkWebSocket.PinningState", + "usr": "s:17VideosdkWebSocket12PinningStateO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreFoundation.CFError?", + "children": [ + { + "kind": "TypeNominal", + "name": "CFError", + "printedName": "CoreFoundation.CFError", + "usr": "c:@T@CFErrorRef" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.PinningState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PinningState", + "printedName": "VideosdkWebSocket.PinningState", + "usr": "s:17VideosdkWebSocket12PinningStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket12PinningStateO6failedyACSo10CFErrorRefaSgcACmF", + "mangledName": "$s17VideosdkWebSocket12PinningStateO6failedyACSo10CFErrorRefaSgcACmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket12PinningStateO", + "mangledName": "$s17VideosdkWebSocket12PinningStateO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "CertificatePinning", + "printedName": "CertificatePinning", + "children": [ + { + "kind": "Function", + "name": "evaluateTrust", + "printedName": "evaluateTrust(trust:domain:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SecTrust", + "printedName": "Security.SecTrust", + "usr": "c:@T@SecTrustRef" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.PinningState) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PinningState", + "printedName": "VideosdkWebSocket.PinningState", + "usr": "s:17VideosdkWebSocket12PinningStateO" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18CertificatePinningP13evaluateTrust5trust6domain10completionySo03SecG3Refa_SSSgyAA0E5StateOXEtF", + "mangledName": "$s17VideosdkWebSocket18CertificatePinningP13evaluateTrust5trust6domain10completionySo03SecG3Refa_SSSgyAA0E5StateOXEtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.CertificatePinning>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket18CertificatePinningP", + "mangledName": "$s17VideosdkWebSocket18CertificatePinningP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HeaderValidator", + "printedName": "HeaderValidator", + "children": [ + { + "kind": "Function", + "name": "validate", + "printedName": "validate(headers:key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket15HeaderValidatorP8validate7headers3keys5Error_pSgSDyS2SG_SStF", + "mangledName": "$s17VideosdkWebSocket15HeaderValidatorP8validate7headers3keys5Error_pSgSDyS2SG_SStF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HeaderValidator>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket15HeaderValidatorP", + "mangledName": "$s17VideosdkWebSocket15HeaderValidatorP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ConnectionEvent", + "printedName": "ConnectionEvent", + "children": [ + { + "kind": "Var", + "name": "connected", + "printedName": "connected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent.Type) -> ([Swift.String : Swift.String]) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Swift.String]) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionEventO9connectedyACSDyS2SGcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO9connectedyACSDyS2SGcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "disconnected", + "printedName": "disconnected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent.Type) -> (Swift.String, Swift.UInt16) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.UInt16) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.UInt16)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionEventO12disconnectedyACSS_s6UInt16VtcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO12disconnectedyACSS_s6UInt16VtcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent.Type) -> (Swift.String) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionEventO4textyACSScACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO4textyACSScACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "binary", + "printedName": "binary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent.Type) -> (Foundation.Data) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionEventO6binaryyAC10Foundation4DataVcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO6binaryyAC10Foundation4DataVcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "pong", + "printedName": "pong", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent.Type) -> (Foundation.Data?) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data?) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionEventO4pongyAC10Foundation4DataVSgcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO4pongyAC10Foundation4DataVSgcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "ping", + "printedName": "ping", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent.Type) -> (Foundation.Data?) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data?) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionEventO4pingyAC10Foundation4DataVSgcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO4pingyAC10Foundation4DataVSgcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent.Type) -> (Swift.Error) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionEventO5erroryACs5Error_pcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO5erroryACs5Error_pcACmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket15ConnectionEventO", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Connection", + "printedName": "Connection", + "children": [ + { + "kind": "Function", + "name": "write", + "printedName": "write(data:opcode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket10ConnectionP5write4data6opcodey10Foundation4DataV_AA11FrameOpCodeOtF", + "mangledName": "$s17VideosdkWebSocket10ConnectionP5write4data6opcodey10Foundation4DataV_AA11FrameOpCodeOtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Connection>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket10ConnectionP", + "mangledName": "$s17VideosdkWebSocket10ConnectionP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "ConnectionDelegate", + "printedName": "ConnectionDelegate", + "children": [ + { + "kind": "Function", + "name": "didReceive", + "printedName": "didReceive(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18ConnectionDelegateP10didReceive5eventyAA11ServerEventO_tF", + "mangledName": "$s17VideosdkWebSocket18ConnectionDelegateP10didReceive5eventyAA11ServerEventO_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.ConnectionDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket18ConnectionDelegateP", + "mangledName": "$s17VideosdkWebSocket18ConnectionDelegateP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "ServerEvent", + "printedName": "ServerEvent", + "children": [ + { + "kind": "Var", + "name": "connected", + "printedName": "connected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent.Type) -> (VideosdkWebSocket.Connection, [Swift.String : Swift.String]) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Connection, [Swift.String : Swift.String]) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(VideosdkWebSocket.Connection, [Swift.String : Swift.String])", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "VideosdkWebSocket.Connection", + "usr": "s:17VideosdkWebSocket10ConnectionP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ServerEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11ServerEventO9connectedyAcA10Connection_p_SDyS2SGtcACmF", + "mangledName": "$s17VideosdkWebSocket11ServerEventO9connectedyAcA10Connection_p_SDyS2SGtcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "disconnected", + "printedName": "disconnected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent.Type) -> (VideosdkWebSocket.Connection, Swift.String, Swift.UInt16) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Connection, Swift.String, Swift.UInt16) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(VideosdkWebSocket.Connection, Swift.String, Swift.UInt16)", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "VideosdkWebSocket.Connection", + "usr": "s:17VideosdkWebSocket10ConnectionP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ServerEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11ServerEventO12disconnectedyAcA10Connection_p_SSs6UInt16VtcACmF", + "mangledName": "$s17VideosdkWebSocket11ServerEventO12disconnectedyAcA10Connection_p_SSs6UInt16VtcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent.Type) -> (VideosdkWebSocket.Connection, Swift.String) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Connection, Swift.String) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(VideosdkWebSocket.Connection, Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "VideosdkWebSocket.Connection", + "usr": "s:17VideosdkWebSocket10ConnectionP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ServerEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11ServerEventO4textyAcA10Connection_p_SStcACmF", + "mangledName": "$s17VideosdkWebSocket11ServerEventO4textyAcA10Connection_p_SStcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "binary", + "printedName": "binary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent.Type) -> (VideosdkWebSocket.Connection, Foundation.Data) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Connection, Foundation.Data) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(VideosdkWebSocket.Connection, Foundation.Data)", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "VideosdkWebSocket.Connection", + "usr": "s:17VideosdkWebSocket10ConnectionP" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ServerEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11ServerEventO6binaryyAcA10Connection_p_10Foundation4DataVtcACmF", + "mangledName": "$s17VideosdkWebSocket11ServerEventO6binaryyAcA10Connection_p_10Foundation4DataVtcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "pong", + "printedName": "pong", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent.Type) -> (VideosdkWebSocket.Connection, Foundation.Data?) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Connection, Foundation.Data?) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(VideosdkWebSocket.Connection, Foundation.Data?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "VideosdkWebSocket.Connection", + "usr": "s:17VideosdkWebSocket10ConnectionP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ServerEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11ServerEventO4pongyAcA10Connection_p_10Foundation4DataVSgtcACmF", + "mangledName": "$s17VideosdkWebSocket11ServerEventO4pongyAcA10Connection_p_10Foundation4DataVSgtcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "ping", + "printedName": "ping", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent.Type) -> (VideosdkWebSocket.Connection, Foundation.Data?) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Connection, Foundation.Data?) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(VideosdkWebSocket.Connection, Foundation.Data?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "VideosdkWebSocket.Connection", + "usr": "s:17VideosdkWebSocket10ConnectionP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ServerEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11ServerEventO4pingyAcA10Connection_p_10Foundation4DataVSgtcACmF", + "mangledName": "$s17VideosdkWebSocket11ServerEventO4pingyAcA10Connection_p_10Foundation4DataVSgtcACmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket11ServerEventO", + "mangledName": "$s17VideosdkWebSocket11ServerEventO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Server", + "printedName": "Server", + "children": [ + { + "kind": "Function", + "name": "start", + "printedName": "start(address:port:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6ServerP5start7address4ports5Error_pSgSS_s6UInt16VtF", + "mangledName": "$s17VideosdkWebSocket6ServerP5start7address4ports5Error_pSgSS_s6UInt16VtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Server>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket6ServerP", + "mangledName": "$s17VideosdkWebSocket6ServerP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "TypeDecl", + "name": "WebSocketServer", + "printedName": "WebSocketServer", + "children": [ + { + "kind": "Var", + "name": "onEvent", + "printedName": "onEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.ServerEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvp", + "mangledName": "$s17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.ServerEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvg", + "mangledName": "$s17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.ServerEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvs", + "mangledName": "$s17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvM", + "mangledName": "$s17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketServer", + "printedName": "VideosdkWebSocket.WebSocketServer", + "usr": "s:17VideosdkWebSocket0bC6ServerC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket0bC6ServerCACycfc", + "mangledName": "$s17VideosdkWebSocket0bC6ServerCACycfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start(address:port:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ServerC5start7address4ports5Error_pSgSS_s6UInt16VtF", + "mangledName": "$s17VideosdkWebSocket0bC6ServerC5start7address4ports5Error_pSgSS_s6UInt16VtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "didReceive", + "printedName": "didReceive(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ServerC10didReceive5eventyAA0D5EventO_tF", + "mangledName": "$s17VideosdkWebSocket0bC6ServerC10didReceive5eventyAA0D5EventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket0bC6ServerC", + "mangledName": "$s17VideosdkWebSocket0bC6ServerC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "intro_Macosx": "10.14", + "intro_iOS": "12.0", + "intro_tvOS": "12.0", + "intro_watchOS": "5.0", + "declAttributes": [ + "AccessControl", + "Available", + "Available", + "Available", + "Available", + "Available", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Server", + "printedName": "Server", + "usr": "s:17VideosdkWebSocket6ServerP", + "mangledName": "$s17VideosdkWebSocket6ServerP" + }, + { + "kind": "Conformance", + "name": "ConnectionDelegate", + "printedName": "ConnectionDelegate", + "usr": "s:17VideosdkWebSocket18ConnectionDelegateP", + "mangledName": "$s17VideosdkWebSocket18ConnectionDelegateP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ServerConnection", + "printedName": "ServerConnection", + "children": [ + { + "kind": "Var", + "name": "transport", + "printedName": "transport", + "children": [ + { + "kind": "TypeNominal", + "name": "TCPTransport", + "printedName": "VideosdkWebSocket.TCPTransport", + "usr": "s:17VideosdkWebSocket12TCPTransportC" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket16ServerConnectionC9transportAA12TCPTransportCvp", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC9transportAA12TCPTransportCvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TCPTransport", + "printedName": "VideosdkWebSocket.TCPTransport", + "usr": "s:17VideosdkWebSocket12TCPTransportC" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC9transportAA12TCPTransportCvg", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC9transportAA12TCPTransportCvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "onEvent", + "printedName": "onEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.ConnectionEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvp", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.ConnectionEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvg", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.ConnectionEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvs", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvM", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.ConnectionDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.ConnectionDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionDelegate", + "printedName": "VideosdkWebSocket.ConnectionDelegate", + "usr": "s:17VideosdkWebSocket18ConnectionDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.ConnectionDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionDelegate", + "printedName": "VideosdkWebSocket.ConnectionDelegate", + "usr": "s:17VideosdkWebSocket18ConnectionDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket16ServerConnectionC4uuidSSvp", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC4uuidSSvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC4uuidSSvg", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC4uuidSSvg", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(transport:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerConnection", + "printedName": "VideosdkWebSocket.ServerConnection", + "usr": "s:17VideosdkWebSocket16ServerConnectionC" + }, + { + "kind": "TypeNominal", + "name": "TCPTransport", + "printedName": "VideosdkWebSocket.TCPTransport", + "usr": "s:17VideosdkWebSocket12TCPTransportC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC9transportAcA12TCPTransportC_tcfc", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC9transportAcA12TCPTransportC_tcfc", + "moduleName": "VideosdkWebSocket", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:opcode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket16ServerConnectionC5write4data6opcodey10Foundation4DataV_AA11FrameOpCodeOtF", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC5write4data6opcodey10Foundation4DataV_AA11FrameOpCodeOtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "connectionChanged", + "printedName": "connectionChanged(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket16ServerConnectionC17connectionChanged5stateyAA0E5StateO_tF", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC17connectionChanged5stateyAA0E5StateO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "didReceive", + "printedName": "didReceive(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket16ServerConnectionC10didReceive5eventyAA9HTTPEventO_tF", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC10didReceive5eventyAA9HTTPEventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "frameProcessed", + "printedName": "frameProcessed(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FrameEvent", + "printedName": "VideosdkWebSocket.FrameEvent", + "usr": "s:17VideosdkWebSocket10FrameEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket16ServerConnectionC14frameProcessed5eventyAA10FrameEventO_tF", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC14frameProcessed5eventyAA10FrameEventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "didForm", + "printedName": "didForm(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket16ServerConnectionC7didForm5eventyAA14FrameCollectorC5EventO_tF", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC7didForm5eventyAA14FrameCollectorC5EventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decompress", + "printedName": "decompress(data:isFinal:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket16ServerConnectionC10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket16ServerConnectionC", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "intro_Macosx": "10.14", + "intro_iOS": "12.0", + "intro_tvOS": "12.0", + "intro_watchOS": "5.0", + "declAttributes": [ + "AccessControl", + "Available", + "Available", + "Available", + "Available" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Connection", + "printedName": "Connection", + "usr": "s:17VideosdkWebSocket10ConnectionP", + "mangledName": "$s17VideosdkWebSocket10ConnectionP" + }, + { + "kind": "Conformance", + "name": "HTTPServerDelegate", + "printedName": "HTTPServerDelegate", + "usr": "s:17VideosdkWebSocket18HTTPServerDelegateP", + "mangledName": "$s17VideosdkWebSocket18HTTPServerDelegateP" + }, + { + "kind": "Conformance", + "name": "FramerEventClient", + "printedName": "FramerEventClient", + "usr": "s:17VideosdkWebSocket17FramerEventClientP", + "mangledName": "$s17VideosdkWebSocket17FramerEventClientP" + }, + { + "kind": "Conformance", + "name": "FrameCollectorDelegate", + "printedName": "FrameCollectorDelegate", + "usr": "s:17VideosdkWebSocket22FrameCollectorDelegateP", + "mangledName": "$s17VideosdkWebSocket22FrameCollectorDelegateP" + }, + { + "kind": "Conformance", + "name": "TransportEventClient", + "printedName": "TransportEventClient", + "usr": "s:17VideosdkWebSocket20TransportEventClientP", + "mangledName": "$s17VideosdkWebSocket20TransportEventClientP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ErrorType", + "printedName": "ErrorType", + "children": [ + { + "kind": "Var", + "name": "compressionError", + "printedName": "compressionError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ErrorType.Type) -> VideosdkWebSocket.ErrorType", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ErrorType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9ErrorTypeO011compressionD0yA2CmF", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO011compressionD0yA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "securityError", + "printedName": "securityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ErrorType.Type) -> VideosdkWebSocket.ErrorType", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ErrorType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9ErrorTypeO08securityD0yA2CmF", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO08securityD0yA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "protocolError", + "printedName": "protocolError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ErrorType.Type) -> VideosdkWebSocket.ErrorType", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ErrorType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9ErrorTypeO08protocolD0yA2CmF", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO08protocolD0yA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "serverError", + "printedName": "serverError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ErrorType.Type) -> VideosdkWebSocket.ErrorType", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ErrorType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9ErrorTypeO06serverD0yA2CmF", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO06serverD0yA2CmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket9ErrorTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO2eeoiySbAC_ACtFZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket9ErrorTypeO9hashValueSivp", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO9hashValueSivp", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket9ErrorTypeO9hashValueSivg", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO9hashValueSivg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket9ErrorTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO4hash4intoys6HasherVz_tF", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket9ErrorTypeO", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WSError", + "printedName": "WSError", + "children": [ + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket7WSErrorV4typeAA9ErrorTypeOvp", + "mangledName": "$s17VideosdkWebSocket7WSErrorV4typeAA9ErrorTypeOvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket7WSErrorV4typeAA9ErrorTypeOvg", + "mangledName": "$s17VideosdkWebSocket7WSErrorV4typeAA9ErrorTypeOvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket7WSErrorV7messageSSvp", + "mangledName": "$s17VideosdkWebSocket7WSErrorV7messageSSvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket7WSErrorV7messageSSvg", + "mangledName": "$s17VideosdkWebSocket7WSErrorV7messageSSvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket7WSErrorV4codes6UInt16Vvp", + "mangledName": "$s17VideosdkWebSocket7WSErrorV4codes6UInt16Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket7WSErrorV4codes6UInt16Vvg", + "mangledName": "$s17VideosdkWebSocket7WSErrorV4codes6UInt16Vvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(type:message:code:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WSError", + "printedName": "VideosdkWebSocket.WSError", + "usr": "s:17VideosdkWebSocket7WSErrorV" + }, + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket7WSErrorV4type7message4codeAcA9ErrorTypeO_SSs6UInt16Vtcfc", + "mangledName": "$s17VideosdkWebSocket7WSErrorV4type7message4codeAcA9ErrorTypeO_SSs6UInt16Vtcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:17VideosdkWebSocket7WSErrorV", + "mangledName": "$s17VideosdkWebSocket7WSErrorV", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WebSocketClient", + "printedName": "WebSocketClient", + "children": [ + { + "kind": "Function", + "name": "connect", + "printedName": "connect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientP7connectyyF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP7connectyyF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect(closeCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientP10disconnect9closeCodeys6UInt16V_tF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP10disconnect9closeCodeys6UInt16V_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(string:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientP5write6string10completionySS_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP5write6string10completionySS_yycSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(stringData:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientP5write10stringData10completiony10Foundation0G0V_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP5write10stringData10completiony10Foundation0G0V_yycSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientP5write4data10completiony10Foundation4DataV_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP5write4data10completiony10Foundation4DataV_yycSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(ping:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientP5write4ping10completiony10Foundation4DataV_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP5write4ping10completiony10Foundation4DataV_yycSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(pong:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientP5write4pong10completiony10Foundation4DataV_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP5write4pong10completiony10Foundation4DataV_yycSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientPAAE5write6stringySS_tF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientPAAE5write6stringySS_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientPAAE5write4datay10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientPAAE5write4datay10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(ping:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientPAAE5write4pingy10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientPAAE5write4pingy10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(pong:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientPAAE5write4pongy10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientPAAE5write4pongy10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientPAAE10disconnectyyF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientPAAE10disconnectyyF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket0bC6ClientP", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "WebSocketEvent", + "printedName": "WebSocketEvent", + "children": [ + { + "kind": "Var", + "name": "connected", + "printedName": "connected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> ([Swift.String : Swift.String]) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Swift.String]) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO9connectedyACSDyS2SGcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO9connectedyACSDyS2SGcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "disconnected", + "printedName": "disconnected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Swift.String, Swift.UInt16) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.UInt16) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.UInt16)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO12disconnectedyACSS_s6UInt16VtcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO12disconnectedyACSS_s6UInt16VtcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Swift.String) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO4textyACSScACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO4textyACSScACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "binary", + "printedName": "binary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Foundation.Data) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO6binaryyAC10Foundation4DataVcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO6binaryyAC10Foundation4DataVcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "pong", + "printedName": "pong", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Foundation.Data?) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data?) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO4pongyAC10Foundation4DataVSgcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO4pongyAC10Foundation4DataVSgcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "ping", + "printedName": "ping", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Foundation.Data?) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data?) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO4pingyAC10Foundation4DataVSgcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO4pingyAC10Foundation4DataVSgcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Swift.Error?) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error?) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO5erroryACs5Error_pSgcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO5erroryACs5Error_pSgcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "viabilityChanged", + "printedName": "viabilityChanged", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Swift.Bool) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO16viabilityChangedyACSbcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO16viabilityChangedyACSbcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "reconnectSuggested", + "printedName": "reconnectSuggested", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Swift.Bool) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO18reconnectSuggestedyACSbcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO18reconnectSuggestedyACSbcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO9cancelledyA2CmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO9cancelledyA2CmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket0bC5EventO", + "mangledName": "$s17VideosdkWebSocket0bC5EventO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "WebSocketDelegate", + "printedName": "WebSocketDelegate", + "children": [ + { + "kind": "Function", + "name": "didReceive", + "printedName": "didReceive(event:client:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "WebSocketClient", + "printedName": "VideosdkWebSocket.WebSocketClient", + "usr": "s:17VideosdkWebSocket0bC6ClientP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC8DelegateP10didReceive5event6clientyAA0bC5EventO_AA0bC6Client_ptF", + "mangledName": "$s17VideosdkWebSocket0bC8DelegateP10didReceive5event6clientyAA0bC5EventO_AA0bC6Client_ptF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket0bC8DelegateP", + "mangledName": "$s17VideosdkWebSocket0bC8DelegateP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "WebSocket", + "printedName": "WebSocket", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.WebSocketDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.WebSocketDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketDelegate", + "printedName": "VideosdkWebSocket.WebSocketDelegate", + "usr": "s:17VideosdkWebSocket0bC8DelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.WebSocketDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketDelegate", + "printedName": "VideosdkWebSocket.WebSocketDelegate", + "usr": "s:17VideosdkWebSocket0bC8DelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "onEvent", + "printedName": "onEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.WebSocketEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvp", + "mangledName": "$s17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.WebSocketEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvg", + "mangledName": "$s17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.WebSocketEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvs", + "mangledName": "$s17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvM", + "mangledName": "$s17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "request", + "printedName": "request", + "children": [ + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvp", + "mangledName": "$s17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvg", + "mangledName": "$s17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvs", + "mangledName": "$s17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvM", + "mangledName": "$s17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "callbackQueue", + "printedName": "callbackQueue", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvp", + "mangledName": "$s17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvg", + "mangledName": "$s17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvs", + "mangledName": "$s17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvM", + "mangledName": "$s17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "respondToPingWithPong", + "printedName": "respondToPingWithPong", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket0bC0C21respondToPingWithPongSbvp", + "mangledName": "$s17VideosdkWebSocket0bC0C21respondToPingWithPongSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C21respondToPingWithPongSbvg", + "mangledName": "$s17VideosdkWebSocket0bC0C21respondToPingWithPongSbvg", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C21respondToPingWithPongSbvs", + "mangledName": "$s17VideosdkWebSocket0bC0C21respondToPingWithPongSbvs", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C21respondToPingWithPongSbvM", + "mangledName": "$s17VideosdkWebSocket0bC0C21respondToPingWithPongSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(request:engine:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocket", + "printedName": "VideosdkWebSocket.WebSocket", + "usr": "s:17VideosdkWebSocket0bC0C" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Engine", + "printedName": "VideosdkWebSocket.Engine", + "usr": "s:17VideosdkWebSocket6EngineP" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket0bC0C7request6engineAC10Foundation10URLRequestV_AA6Engine_ptcfc", + "mangledName": "$s17VideosdkWebSocket0bC0C7request6engineAC10Foundation10URLRequestV_AA6Engine_ptcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(request:certPinner:compressionHandler:useCustomEngine:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocket", + "printedName": "VideosdkWebSocket.WebSocket", + "usr": "s:17VideosdkWebSocket0bC0C" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CertificatePinning?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificatePinning", + "printedName": "VideosdkWebSocket.CertificatePinning", + "usr": "s:17VideosdkWebSocket18CertificatePinningP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CompressionHandler?", + "children": [ + { + "kind": "TypeNominal", + "name": "CompressionHandler", + "printedName": "VideosdkWebSocket.CompressionHandler", + "usr": "s:17VideosdkWebSocket18CompressionHandlerP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket0bC0C7request10certPinner18compressionHandler15useCustomEngineAC10Foundation10URLRequestV_AA18CertificatePinning_pSgAA011CompressionH0_pSgSbtcfc", + "mangledName": "$s17VideosdkWebSocket0bC0C7request10certPinner18compressionHandler15useCustomEngineAC10Foundation10URLRequestV_AA18CertificatePinning_pSgAA011CompressionH0_pSgSbtcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "connect", + "printedName": "connect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C7connectyyF", + "mangledName": "$s17VideosdkWebSocket0bC0C7connectyyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect(closeCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "hasDefaultArg": true, + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C10disconnect9closeCodeys6UInt16V_tF", + "mangledName": "$s17VideosdkWebSocket0bC0C10disconnect9closeCodeys6UInt16V_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceDisconnect", + "printedName": "forceDisconnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C15forceDisconnectyyF", + "mangledName": "$s17VideosdkWebSocket0bC0C15forceDisconnectyyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C5write4data10completiony10Foundation4DataV_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC0C5write4data10completiony10Foundation4DataV_yycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(string:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C5write6string10completionySS_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC0C5write6string10completionySS_yycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(stringData:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C5write10stringData10completiony10Foundation0F0V_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC0C5write10stringData10completiony10Foundation0F0V_yycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(ping:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C5write4ping10completiony10Foundation4DataV_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC0C5write4ping10completiony10Foundation4DataV_yycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(pong:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C5write4pong10completiony10Foundation4DataV_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC0C5write4pong10completiony10Foundation4DataV_yycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "didReceive", + "printedName": "didReceive(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C10didReceive5eventyAA0bC5EventO_tF", + "mangledName": "$s17VideosdkWebSocket0bC0C10didReceive5eventyAA0bC5EventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket0bC0C", + "mangledName": "$s17VideosdkWebSocket0bC0C", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "WebSocketClient", + "printedName": "WebSocketClient", + "usr": "s:17VideosdkWebSocket0bC6ClientP", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP" + }, + { + "kind": "Conformance", + "name": "EngineDelegate", + "printedName": "EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP", + "mangledName": "$s17VideosdkWebSocket14EngineDelegateP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FoundationTransportError", + "printedName": "FoundationTransportError", + "children": [ + { + "kind": "Var", + "name": "invalidRequest", + "printedName": "invalidRequest", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FoundationTransportError.Type) -> VideosdkWebSocket.FoundationTransportError", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FoundationTransportError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO14invalidRequestyA2CmF", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO14invalidRequestyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "invalidOutputStream", + "printedName": "invalidOutputStream", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FoundationTransportError.Type) -> VideosdkWebSocket.FoundationTransportError", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FoundationTransportError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO19invalidOutputStreamyA2CmF", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO19invalidOutputStreamyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "timeout", + "printedName": "timeout", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FoundationTransportError.Type) -> VideosdkWebSocket.FoundationTransportError", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FoundationTransportError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO7timeoutyA2CmF", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO7timeoutyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + }, + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO9hashValueSivp", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO9hashValueSivp", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO9hashValueSivg", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO9hashValueSivg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FoundationTransport", + "printedName": "FoundationTransport", + "children": [ + { + "kind": "Var", + "name": "usingTLS", + "printedName": "usingTLS", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket19FoundationTransportC8usingTLSSbvp", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC8usingTLSSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket19FoundationTransportC8usingTLSSbvg", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC8usingTLSSbvg", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(streamConfiguration:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransport", + "printedName": "VideosdkWebSocket.FoundationTransport", + "usr": "c:@M@VideosdkWebSocket@objc(cs)FoundationTransport" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.InputStream, Foundation.OutputStream) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.InputStream, Foundation.OutputStream) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.InputStream, Foundation.OutputStream)", + "children": [ + { + "kind": "TypeNominal", + "name": "InputStream", + "printedName": "Foundation.InputStream", + "usr": "c:objc(cs)NSInputStream" + }, + { + "kind": "TypeNominal", + "name": "OutputStream", + "printedName": "Foundation.OutputStream", + "usr": "c:objc(cs)NSOutputStream" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket19FoundationTransportC19streamConfigurationACySo13NSInputStreamC_So08NSOutputI0CtcSg_tcfc", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC19streamConfigurationACySo13NSInputStreamC_So08NSOutputI0CtcSg_tcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "connect", + "printedName": "connect(url:timeout:certificatePinning:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CertificatePinning?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificatePinning", + "printedName": "VideosdkWebSocket.CertificatePinning", + "usr": "s:17VideosdkWebSocket18CertificatePinningP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket19FoundationTransportC7connect3url7timeout18certificatePinningy0D03URLV_SdAA011CertificateJ0_pSgtF", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC7connect3url7timeout18certificatePinningy0D03URLV_SdAA011CertificateJ0_pSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket19FoundationTransportC10disconnectyyF", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC10disconnectyyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TransportEventClient", + "printedName": "VideosdkWebSocket.TransportEventClient", + "usr": "s:17VideosdkWebSocket20TransportEventClientP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket19FoundationTransportC8register8delegateyAA0E11EventClient_p_tF", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC8register8delegateyAA0E11EventClient_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket19FoundationTransportC5write4data10completiony0D04DataV_ys5Error_pSgctF", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC5write4data10completiony0D04DataV_ys5Error_pSgctF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stream", + "printedName": "stream(_:handle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Stream", + "printedName": "Foundation.Stream", + "usr": "c:objc(cs)NSStream" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "Foundation.Stream.Event", + "usr": "c:@E@NSStreamEvent" + } + ], + "declKind": "Func", + "usr": "c:@M@VideosdkWebSocket@objc(cs)FoundationTransport(im)stream:handleEvent:", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC6stream_6handleySo8NSStreamC_So0H5EventVtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "objc_name": "stream:handleEvent:", + "declAttributes": [ + "ObjC", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransport", + "printedName": "VideosdkWebSocket.FoundationTransport", + "usr": "c:@M@VideosdkWebSocket@objc(cs)FoundationTransport" + } + ], + "declKind": "Constructor", + "usr": "c:@M@VideosdkWebSocket@objc(cs)FoundationTransport(im)init", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportCACycfc", + "moduleName": "VideosdkWebSocket", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@VideosdkWebSocket@objc(cs)FoundationTransport", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Transport", + "printedName": "Transport", + "usr": "s:17VideosdkWebSocket9TransportP", + "mangledName": "$s17VideosdkWebSocket9TransportP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "TypeDecl", + "name": "TCPTransportError", + "printedName": "TCPTransportError", + "children": [ + { + "kind": "Var", + "name": "invalidRequest", + "printedName": "invalidRequest", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.TCPTransportError.Type) -> VideosdkWebSocket.TCPTransportError", + "children": [ + { + "kind": "TypeNominal", + "name": "TCPTransportError", + "printedName": "VideosdkWebSocket.TCPTransportError", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.TCPTransportError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TCPTransportError", + "printedName": "VideosdkWebSocket.TCPTransportError", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO14invalidRequestyA2CmF", + "mangledName": "$s17VideosdkWebSocket17TCPTransportErrorO14invalidRequestyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TCPTransportError", + "printedName": "VideosdkWebSocket.TCPTransportError", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO" + }, + { + "kind": "TypeNominal", + "name": "TCPTransportError", + "printedName": "VideosdkWebSocket.TCPTransportError", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s17VideosdkWebSocket17TCPTransportErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO9hashValueSivp", + "mangledName": "$s17VideosdkWebSocket17TCPTransportErrorO9hashValueSivp", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO9hashValueSivg", + "mangledName": "$s17VideosdkWebSocket17TCPTransportErrorO9hashValueSivg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s17VideosdkWebSocket17TCPTransportErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO", + "mangledName": "$s17VideosdkWebSocket17TCPTransportErrorO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TCPTransport", + "printedName": "TCPTransport", + "children": [ + { + "kind": "Var", + "name": "usingTLS", + "printedName": "usingTLS", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12TCPTransportC8usingTLSSbvp", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC8usingTLSSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12TCPTransportC8usingTLSSbvg", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC8usingTLSSbvg", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(connection:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TCPTransport", + "printedName": "VideosdkWebSocket.TCPTransport", + "usr": "s:17VideosdkWebSocket12TCPTransportC" + }, + { + "kind": "TypeNominal", + "name": "NWConnection", + "printedName": "Network.NWConnection", + "usr": "s:7Network12NWConnectionC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket12TCPTransportC10connectionAC7Network12NWConnectionC_tcfc", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC10connectionAC7Network12NWConnectionC_tcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TCPTransport", + "printedName": "VideosdkWebSocket.TCPTransport", + "usr": "s:17VideosdkWebSocket12TCPTransportC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket12TCPTransportCACycfc", + "mangledName": "$s17VideosdkWebSocket12TCPTransportCACycfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "connect", + "printedName": "connect(url:timeout:certificatePinning:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CertificatePinning?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificatePinning", + "printedName": "VideosdkWebSocket.CertificatePinning", + "usr": "s:17VideosdkWebSocket18CertificatePinningP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12TCPTransportC7connect3url7timeout18certificatePinningy10Foundation3URLV_SdAA011CertificateI0_pSgtF", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC7connect3url7timeout18certificatePinningy10Foundation3URLV_SdAA011CertificateI0_pSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12TCPTransportC10disconnectyyF", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC10disconnectyyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TransportEventClient", + "printedName": "VideosdkWebSocket.TransportEventClient", + "usr": "s:17VideosdkWebSocket20TransportEventClientP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12TCPTransportC8register8delegateyAA20TransportEventClient_p_tF", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC8register8delegateyAA20TransportEventClient_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12TCPTransportC5write4data10completiony10Foundation4DataV_ys5Error_pSgctF", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC5write4data10completiony10Foundation4DataV_ys5Error_pSgctF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket12TCPTransportC", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "intro_Macosx": "10.14", + "intro_iOS": "12.0", + "intro_tvOS": "12.0", + "intro_watchOS": "5.0", + "declAttributes": [ + "AccessControl", + "Available", + "Available", + "Available", + "Available" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Transport", + "printedName": "Transport", + "usr": "s:17VideosdkWebSocket9TransportP", + "mangledName": "$s17VideosdkWebSocket9TransportP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ConnectionState", + "printedName": "ConnectionState", + "children": [ + { + "kind": "Var", + "name": "connected", + "printedName": "connected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionState.Type) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionStateO9connectedyA2CmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO9connectedyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "waiting", + "printedName": "waiting", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionState.Type) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionStateO7waitingyA2CmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO7waitingyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionState.Type) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionStateO9cancelledyA2CmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO9cancelledyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionState.Type) -> (Swift.Error?) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error?) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionStateO6failedyACs5Error_pSgcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO6failedyACs5Error_pSgcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "viability", + "printedName": "viability", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionState.Type) -> (Swift.Bool) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionStateO9viabilityyACSbcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO9viabilityyACSbcACmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "shouldReconnect", + "printedName": "shouldReconnect", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionState.Type) -> (Swift.Bool) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionStateO15shouldReconnectyACSbcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO15shouldReconnectyACSbcACmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "receive", + "printedName": "receive", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionState.Type) -> (Foundation.Data) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionStateO7receiveyAC10Foundation4DataVcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO7receiveyAC10Foundation4DataVcACmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket15ConnectionStateO", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "TransportEventClient", + "printedName": "TransportEventClient", + "children": [ + { + "kind": "Function", + "name": "connectionChanged", + "printedName": "connectionChanged(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket20TransportEventClientP17connectionChanged5stateyAA15ConnectionStateO_tF", + "mangledName": "$s17VideosdkWebSocket20TransportEventClientP17connectionChanged5stateyAA15ConnectionStateO_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.TransportEventClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket20TransportEventClientP", + "mangledName": "$s17VideosdkWebSocket20TransportEventClientP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Transport", + "printedName": "Transport", + "children": [ + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TransportEventClient", + "printedName": "VideosdkWebSocket.TransportEventClient", + "usr": "s:17VideosdkWebSocket20TransportEventClientP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket9TransportP8register8delegateyAA0D11EventClient_p_tF", + "mangledName": "$s17VideosdkWebSocket9TransportP8register8delegateyAA0D11EventClient_p_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "connect", + "printedName": "connect(url:timeout:certificatePinning:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CertificatePinning?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificatePinning", + "printedName": "VideosdkWebSocket.CertificatePinning", + "usr": "s:17VideosdkWebSocket18CertificatePinningP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket9TransportP7connect3url7timeout18certificatePinningy10Foundation3URLV_SdAA011CertificateI0_pSgtF", + "mangledName": "$s17VideosdkWebSocket9TransportP7connect3url7timeout18certificatePinningy10Foundation3URLV_SdAA011CertificateI0_pSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket9TransportP10disconnectyyF", + "mangledName": "$s17VideosdkWebSocket9TransportP10disconnectyyF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket9TransportP5write4data10completiony10Foundation4DataV_ys5Error_pSgctF", + "mangledName": "$s17VideosdkWebSocket9TransportP5write4data10completiony10Foundation4DataV_ys5Error_pSgctF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "usingTLS", + "printedName": "usingTLS", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket9TransportP8usingTLSSbvp", + "mangledName": "$s17VideosdkWebSocket9TransportP8usingTLSSbvp", + "moduleName": "VideosdkWebSocket", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket9TransportP8usingTLSSbvg", + "mangledName": "$s17VideosdkWebSocket9TransportP8usingTLSSbvg", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket9TransportP", + "mangledName": "$s17VideosdkWebSocket9TransportP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Data", + "printedName": "Data", + "children": [ + { + "kind": "TypeDecl", + "name": "ByteError", + "printedName": "ByteError", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ByteError", + "printedName": "Foundation.Data.ByteError", + "usr": "s:10Foundation4DataV17VideosdkWebSocketE9ByteErrorV" + } + ], + "declKind": "Constructor", + "usr": "s:10Foundation4DataV17VideosdkWebSocketE9ByteErrorVAFycfc", + "mangledName": "$s10Foundation4DataV17VideosdkWebSocketE9ByteErrorVAFycfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:10Foundation4DataV17VideosdkWebSocketE9ByteErrorV", + "mangledName": "$s10Foundation4DataV17VideosdkWebSocketE9ByteErrorV", + "moduleName": "VideosdkWebSocket", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "withUnsafeBytes", + "printedName": "withUnsafeBytes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.UnsafePointer<τ_0_1>) throws -> τ_0_0", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "UnsafePointer", + "printedName": "Swift.UnsafePointer<τ_0_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SP" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV17VideosdkWebSocketE15withUnsafeBytesyxxSPyq_GKXEKr0_lF", + "mangledName": "$s10Foundation4DataV17VideosdkWebSocketE15withUnsafeBytesyxxSPyq_GKXEKr0_lF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0, τ_0_1>", + "sugared_genericSig": "", + "declAttributes": [ + "Rethrows" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "withUnsafeMutableBytes", + "printedName": "withUnsafeMutableBytes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.UnsafeMutablePointer<τ_0_1>) throws -> τ_0_0", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutablePointer", + "printedName": "Swift.UnsafeMutablePointer<τ_0_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:Sp" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV17VideosdkWebSocketE22withUnsafeMutableBytesyxxSpyq_GKXEKr0_lF", + "mangledName": "$s10Foundation4DataV17VideosdkWebSocketE22withUnsafeMutableBytesyxxSpyq_GKXEKr0_lF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0, τ_0_1>", + "sugared_genericSig": "", + "declAttributes": [ + "Rethrows", + "Mutating" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Struct", + "usr": "s:10Foundation4DataV", + "mangledName": "$s10Foundation4DataV", + "moduleName": "Foundation", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ReferenceConvertible", + "printedName": "ReferenceConvertible", + "children": [ + { + "kind": "TypeWitness", + "name": "ReferenceType", + "printedName": "ReferenceType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ] + } + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RandomAccessCollection", + "printedName": "RandomAccessCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sk", + "mangledName": "$sSk" + }, + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MutableDataProtocol", + "printedName": "MutableDataProtocol", + "usr": "s:10Foundation19MutableDataProtocolP", + "mangledName": "$s10Foundation19MutableDataProtocolP" + }, + { + "kind": "Conformance", + "name": "ContiguousBytes", + "printedName": "ContiguousBytes", + "usr": "s:10Foundation15ContiguousBytesP", + "mangledName": "$s10Foundation15ContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "DataProtocol", + "printedName": "DataProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "Regions", + "printedName": "Regions", + "children": [ + { + "kind": "TypeNominal", + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:s15CollectionOfOneV" + } + ] + } + ], + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UInt8", + "printedName": "UInt8", + "declKind": "Struct", + "usr": "s:s5UInt8V", + "mangledName": "$ss5UInt8V", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "FixedWidthInteger", + "printedName": "FixedWidthInteger", + "usr": "s:s17FixedWidthIntegerP", + "mangledName": "$ss17FixedWidthIntegerP" + }, + { + "kind": "Conformance", + "name": "UnsignedInteger", + "printedName": "UnsignedInteger", + "usr": "s:SU", + "mangledName": "$sSU" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "BinaryInteger", + "printedName": "BinaryInteger", + "children": [ + { + "kind": "TypeWitness", + "name": "Words", + "printedName": "Words", + "children": [ + { + "kind": "TypeNominal", + "name": "Words", + "printedName": "Swift.UInt8.Words", + "usr": "s:s5UInt8V5WordsV" + } + ] + } + ], + "usr": "s:Sz", + "mangledName": "$sSz" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "MyWSArrayType", + "printedName": "MyWSArrayType", + "usr": "s:17VideosdkWebSocket13MyWSArrayTypeP", + "mangledName": "$s17VideosdkWebSocket13MyWSArrayTypeP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_StringElement", + "printedName": "_StringElement", + "usr": "s:s14_StringElementP", + "mangledName": "$ss14_StringElementP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ + { + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.UInt8.SIMD2Storage", + "usr": "s:s5UInt8V12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.UInt8.SIMD4Storage", + "usr": "s:s5UInt8V12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.UInt8.SIMD8Storage", + "usr": "s:s5UInt8V12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.UInt8.SIMD16Storage", + "usr": "s:s5UInt8V13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.UInt8.SIMD32Storage", + "usr": "s:s5UInt8V13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.UInt8.SIMD64Storage", + "usr": "s:s5UInt8V13SIMD64StorageV" + } + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Array", + "printedName": "Array", + "children": [ + { + "kind": "Function", + "name": "readUint16", + "printedName": "readUint16(offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:Sa17VideosdkWebSocketSURzAA13MyWSArrayTypeRzlE10readUint166offsets6UInt16VSi_tF", + "mangledName": "$sSa17VideosdkWebSocketSURzAA13MyWSArrayTypeRzlE10readUint166offsets6UInt16VSi_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.UnsignedInteger, τ_0_0 : VideosdkWebSocket.MyWSArrayType>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readUint64", + "printedName": "readUint64(offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:Sa17VideosdkWebSocketSURzAA13MyWSArrayTypeRzlE10readUint646offsets6UInt64VSi_tF", + "mangledName": "$sSa17VideosdkWebSocketSURzAA13MyWSArrayTypeRzlE10readUint646offsets6UInt64VSi_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.UnsignedInteger, τ_0_0 : VideosdkWebSocket.MyWSArrayType>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unmaskData", + "printedName": "unmaskData(maskStart:offset:length:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:Sa17VideosdkWebSocketSURzAA13MyWSArrayTypeRzlE10unmaskData9maskStart6offset6length10Foundation0H0VSi_S2itF", + "mangledName": "$sSa17VideosdkWebSocketSURzAA13MyWSArrayTypeRzlE10unmaskData9maskStart6offset6length10Foundation0H0VSi_S2itF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.UnsignedInteger, τ_0_0 : VideosdkWebSocket.MyWSArrayType>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:Sa", + "mangledName": "$sSa", + "moduleName": "Swift", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_DestructorSafeContainer", + "printedName": "_DestructorSafeContainer", + "usr": "s:s24_DestructorSafeContainerP", + "mangledName": "$ss24_DestructorSafeContainerP" + }, + { + "kind": "Conformance", + "name": "_ArrayProtocol", + "printedName": "_ArrayProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "_Buffer", + "printedName": "_Buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "_ArrayBuffer", + "printedName": "Swift._ArrayBuffer<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s12_ArrayBufferV" + } + ] + } + ], + "usr": "s:s14_ArrayProtocolP", + "mangledName": "$ss14_ArrayProtocolP" + }, + { + "kind": "Conformance", + "name": "RandomAccessCollection", + "printedName": "RandomAccessCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sk", + "mangledName": "$sSk" + }, + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "ExpressibleByArrayLiteral", + "printedName": "ExpressibleByArrayLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:s25ExpressibleByArrayLiteralP", + "mangledName": "$ss25ExpressibleByArrayLiteralP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "DataProtocol", + "printedName": "DataProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "Regions", + "printedName": "Regions", + "children": [ + { + "kind": "TypeNominal", + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s15CollectionOfOneV" + } + ] + } + ], + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" + }, + { + "kind": "Conformance", + "name": "MutableDataProtocol", + "printedName": "MutableDataProtocol", + "usr": "s:10Foundation19MutableDataProtocolP", + "mangledName": "$s10Foundation19MutableDataProtocolP" + }, + { + "kind": "Conformance", + "name": "EncodableWithConfiguration", + "printedName": "EncodableWithConfiguration", + "children": [ + { + "kind": "TypeWitness", + "name": "EncodingConfiguration", + "printedName": "EncodingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.EncodingConfiguration" + } + ] + } + ], + "usr": "s:10Foundation26EncodableWithConfigurationP", + "mangledName": "$s10Foundation26EncodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "DecodableWithConfiguration", + "printedName": "DecodableWithConfiguration", + "children": [ + { + "kind": "TypeWitness", + "name": "DecodingConfiguration", + "printedName": "DecodingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.DecodingConfiguration" + } + ] + } + ], + "usr": "s:10Foundation26DecodableWithConfigurationP", + "mangledName": "$s10Foundation26DecodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSArray", + "printedName": "Foundation.NSArray", + "usr": "c:objc(cs)NSArray" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "ContiguousBytes", + "printedName": "ContiguousBytes", + "usr": "s:10Foundation15ContiguousBytesP", + "mangledName": "$s10Foundation15ContiguousBytesP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "URL", + "printedName": "URL", + "children": [ + { + "kind": "Var", + "name": "isTLSScheme", + "printedName": "isTLSScheme", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10Foundation3URLV17VideosdkWebSocketE11isTLSSchemeSbvp", + "mangledName": "$s10Foundation3URLV17VideosdkWebSocketE11isTLSSchemeSbvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10Foundation3URLV17VideosdkWebSocketE11isTLSSchemeSbvg", + "mangledName": "$s10Foundation3URLV17VideosdkWebSocketE11isTLSSchemeSbvg", + "moduleName": "VideosdkWebSocket", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getParts", + "printedName": "getParts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.URLParts?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLParts", + "printedName": "VideosdkWebSocket.URLParts", + "usr": "s:17VideosdkWebSocket8URLPartsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:10Foundation3URLV17VideosdkWebSocketE8getPartsAD8URLPartsVSgyF", + "mangledName": "$s10Foundation3URLV17VideosdkWebSocketE8getPartsAD8URLPartsVSgyF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:10Foundation3URLV", + "mangledName": "$s10Foundation3URLV", + "moduleName": "Foundation", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ReferenceConvertible", + "printedName": "ReferenceConvertible", + "children": [ + { + "kind": "TypeWitness", + "name": "ReferenceType", + "printedName": "ReferenceType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSURL", + "printedName": "Foundation.NSURL", + "usr": "c:objc(cs)NSURL" + } + ] + } + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSURL", + "printedName": "Foundation.NSURL", + "usr": "c:objc(cs)NSURL" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByFileReferenceLiteral", + "printedName": "_ExpressibleByFileReferenceLiteral", + "usr": "s:s34_ExpressibleByFileReferenceLiteralP", + "mangledName": "$ss34_ExpressibleByFileReferenceLiteralP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "StringLiteral", + "offset": 1368, + "length": 26, + "value": "\"Sec-WebSocket-Extensions\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "BooleanLiteral", + "offset": 1494, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "BooleanLiteral", + "offset": 1529, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "IntegerLiteral", + "offset": 3763, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "IntegerLiteral", + "offset": 3773, + "length": 6, + "value": "0x2000" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "BooleanLiteral", + "offset": 3818, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "IntegerLiteral", + "offset": 6336, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "IntegerLiteral", + "offset": 6346, + "length": 6, + "value": "0x2000" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "BooleanLiteral", + "offset": 6391, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Engine\/WSEngine.swift", + "kind": "BooleanLiteral", + "offset": 651, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Engine\/WSEngine.swift", + "kind": "StringLiteral", + "offset": 687, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Engine\/WSEngine.swift", + "kind": "StringLiteral", + "offset": 740, + "length": 33, + "value": "\"com.vluxe.starscream.writequeue\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Engine\/WSEngine.swift", + "kind": "IntegerLiteral", + "offset": 824, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Engine\/WSEngine.swift", + "kind": "BooleanLiteral", + "offset": 853, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Engine\/WSEngine.swift", + "kind": "BooleanLiteral", + "offset": 948, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/FoundationHTTPServerHandler.swift", + "kind": "StringLiteral", + "offset": 1084, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/FrameCollector.swift", + "kind": "IntegerLiteral", + "offset": 1394, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/FrameCollector.swift", + "kind": "BooleanLiteral", + "offset": 1413, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/FrameCollector.swift", + "kind": "BooleanLiteral", + "offset": 1502, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 943, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 978, + "length": 4, + "value": "0x0F" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1013, + "length": 4, + "value": "0x70" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1048, + "length": 4, + "value": "0x40" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1083, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1118, + "length": 4, + "value": "0x7F" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1153, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1257, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1296, + "length": 4, + "value": "1001" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1335, + "length": 4, + "value": "1002" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1374, + "length": 4, + "value": "1003" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1435, + "length": 4, + "value": "1005" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1495, + "length": 4, + "value": "1007" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1534, + "length": 4, + "value": "1008" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1573, + "length": 4, + "value": "1009" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1257, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1296, + "length": 4, + "value": "1001" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1335, + "length": 4, + "value": "1002" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1374, + "length": 4, + "value": "1003" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1435, + "length": 4, + "value": "1005" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1495, + "length": 4, + "value": "1007" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1534, + "length": 4, + "value": "1008" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1573, + "length": 4, + "value": "1009" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1257, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1296, + "length": 4, + "value": "1001" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1335, + "length": 4, + "value": "1002" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1374, + "length": 4, + "value": "1003" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1435, + "length": 4, + "value": "1005" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1495, + "length": 4, + "value": "1007" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1534, + "length": 4, + "value": "1008" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1573, + "length": 4, + "value": "1009" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1639, + "length": 3, + "value": "0x0" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1664, + "length": 3, + "value": "0x1" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1691, + "length": 3, + "value": "0x2" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1747, + "length": 3, + "value": "0x8" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1767, + "length": 3, + "value": "0x9" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1787, + "length": 3, + "value": "0xA" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1831, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1639, + "length": 3, + "value": "0x0" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1664, + "length": 3, + "value": "0x1" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1691, + "length": 3, + "value": "0x2" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1747, + "length": 3, + "value": "0x8" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1767, + "length": 3, + "value": "0x9" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1787, + "length": 3, + "value": "0xA" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1831, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1639, + "length": 3, + "value": "0x0" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1664, + "length": 3, + "value": "0x1" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1691, + "length": 3, + "value": "0x2" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1747, + "length": 3, + "value": "0x8" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1767, + "length": 3, + "value": "0x9" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1787, + "length": 3, + "value": "0xA" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1831, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "StringLiteral", + "offset": 2597, + "length": 31, + "value": "\"com.vluxe.starscream.wsframer\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "Array", + "offset": 2642, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "BooleanLiteral", + "offset": 2764, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "BooleanLiteral", + "offset": 2839, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1090, + "length": 9, + "value": "\"Upgrade\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 11, + "value": "\"websocket\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1184, + "length": 6, + "value": "\"Host\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1227, + "length": 12, + "value": "\"Connection\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1276, + "length": 9, + "value": "\"Upgrade\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1322, + "length": 24, + "value": "\"Sec-WebSocket-Protocol\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1383, + "length": 23, + "value": "\"Sec-WebSocket-Version\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1443, + "length": 4, + "value": "\"13\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1484, + "length": 26, + "value": "\"Sec-WebSocket-Extensions\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1547, + "length": 19, + "value": "\"Sec-WebSocket-Key\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1603, + "length": 8, + "value": "\"Origin\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1648, + "length": 22, + "value": "\"Sec-WebSocket-Accept\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "IntegerLiteral", + "offset": 1707, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "Array", + "offset": 1747, + "length": 16, + "value": "[\"wss\", \"https\"]" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/FoundationSecurity.swift", + "kind": "BooleanLiteral", + "offset": 1078, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/FoundationSecurity.swift", + "kind": "BooleanLiteral", + "offset": 1129, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/Security.swift", + "kind": "IntegerLiteral", + "offset": 979, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/Security.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/Security.swift", + "kind": "IntegerLiteral", + "offset": 979, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/Security.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/Security.swift", + "kind": "IntegerLiteral", + "offset": 979, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/Security.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Server\/WebSocketServer.swift", + "kind": "StringLiteral", + "offset": 1383, + "length": 43, + "value": "\"com.vluxe.starscream.server.networkstream\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Server\/WebSocketServer.swift", + "kind": "Array", + "offset": 1440, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Server\/WebSocketServer.swift", + "kind": "BooleanLiteral", + "offset": 3676, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Server\/WebSocketServer.swift", + "kind": "BooleanLiteral", + "offset": 3759, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Starscream\/WebSocket.swift", + "kind": "BooleanLiteral", + "offset": 3679, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/FoundationTransport.swift", + "kind": "StringLiteral", + "offset": 1219, + "length": 32, + "value": "\"com.vluxe.starscream.websocket\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/FoundationTransport.swift", + "kind": "Array", + "offset": 1265, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/FoundationTransport.swift", + "kind": "BooleanLiteral", + "offset": 1380, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/FoundationTransport.swift", + "kind": "BooleanLiteral", + "offset": 1476, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/FoundationTransport.swift", + "kind": "IntegerLiteral", + "offset": 1910, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/FoundationTransport.swift", + "kind": "StringLiteral", + "offset": 1058, + "length": 19, + "value": "\"VideosdkWebSocket.FoundationTransport\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/TCPTransport.swift", + "kind": "StringLiteral", + "offset": 1211, + "length": 36, + "value": "\"com.vluxe.starscream.networkstream\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/TCPTransport.swift", + "kind": "Array", + "offset": 1261, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/TCPTransport.swift", + "kind": "BooleanLiteral", + "offset": 1346, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/TCPTransport.swift", + "kind": "BooleanLiteral", + "offset": 1376, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/TCPTransport.swift", + "kind": "IntegerLiteral", + "offset": 1712, + "length": 2, + "value": "10" + } + ] +} \ No newline at end of file diff --git a/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios.private.swiftinterface b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios.private.swiftinterface new file mode 100644 index 0000000..fbd4be0 --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -0,0 +1,435 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) +// swift-module-flags: -target arm64-apple-ios11.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name VideosdkWebSocket +// swift-module-flags-ignorable: -enable-bare-slash-regex +import CommonCrypto +import Foundation +import Network +import Swift +import _Concurrency +import _StringProcessing +import zlib +public protocol CompressionHandler { + func load(headers: [Swift.String : Swift.String]) + func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + func compress(data: Foundation.Data) -> Foundation.Data? +} +public class WSCompression : VideosdkWebSocket.CompressionHandler { + public init() + public func load(headers: [Swift.String : Swift.String]) + public func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + public func compress(data: Foundation.Data) -> Foundation.Data? + @objc deinit +} +public protocol EngineDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.WebSocketEvent) +} +public protocol Engine { + func register(delegate: VideosdkWebSocket.EngineDelegate) + func start(request: Foundation.URLRequest) + func stop(closeCode: Swift.UInt16) + func forceStop() + func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode, completion: (() -> ())?) + func write(string: Swift.String, completion: (() -> ())?) +} +@objc @_inheritsConvenienceInitializers @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +public class NativeEngine : ObjectiveC.NSObject, VideosdkWebSocket.Engine, Foundation.URLSessionDataDelegate, Foundation.URLSessionWebSocketDelegate { + public func register(delegate: VideosdkWebSocket.EngineDelegate) + public func start(request: Foundation.URLRequest) + public func stop(closeCode: Swift.UInt16) + public func forceStop() + public func write(string: Swift.String, completion: (() -> ())?) + public func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode, completion: (() -> ())?) + @objc public func urlSession(_ session: Foundation.URLSession, webSocketTask: Foundation.URLSessionWebSocketTask, didOpenWithProtocol protocol: Swift.String?) + @objc public func urlSession(_ session: Foundation.URLSession, webSocketTask: Foundation.URLSessionWebSocketTask, didCloseWith closeCode: Foundation.URLSessionWebSocketTask.CloseCode, reason: Foundation.Data?) + @objc override dynamic public init() + @objc deinit +} +public class WSEngine : VideosdkWebSocket.Engine, VideosdkWebSocket.TransportEventClient, VideosdkWebSocket.FramerEventClient, VideosdkWebSocket.FrameCollectorDelegate, VideosdkWebSocket.HTTPHandlerDelegate { + public var respondToPingWithPong: Swift.Bool + public init(transport: VideosdkWebSocket.Transport, certPinner: VideosdkWebSocket.CertificatePinning? = nil, headerValidator: VideosdkWebSocket.HeaderValidator = FoundationSecurity(), httpHandler: VideosdkWebSocket.HTTPHandler = FoundationHTTPHandler(), framer: VideosdkWebSocket.Framer = WSFramer(), compressionHandler: VideosdkWebSocket.CompressionHandler? = nil) + public func register(delegate: VideosdkWebSocket.EngineDelegate) + public func start(request: Foundation.URLRequest) + public func stop(closeCode: Swift.UInt16 = CloseCode.normal.rawValue) + public func forceStop() + public func write(string: Swift.String, completion: (() -> ())?) + public func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode, completion: (() -> ())?) + public func connectionChanged(state: VideosdkWebSocket.ConnectionState) + public func didReceiveHTTP(event: VideosdkWebSocket.HTTPEvent) + public func frameProcessed(event: VideosdkWebSocket.FrameEvent) + public func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + public func didForm(event: VideosdkWebSocket.FrameCollector.Event) + @objc deinit +} +public class FoundationHTTPHandler : VideosdkWebSocket.HTTPHandler { + public init() + public func convert(request: Foundation.URLRequest) -> Foundation.Data + public func parse(data: Foundation.Data) -> Swift.Int + public func register(delegate: VideosdkWebSocket.HTTPHandlerDelegate) + @objc deinit +} +@_hasMissingDesignatedInitializers public class FoundationHTTPServerHandler : VideosdkWebSocket.HTTPServerHandler { + public func register(delegate: VideosdkWebSocket.HTTPServerDelegate) + public func createResponse(headers: [Swift.String : Swift.String]) -> Foundation.Data + public func parse(data: Foundation.Data) + @objc deinit +} +public protocol FrameCollectorDelegate : AnyObject { + func didForm(event: VideosdkWebSocket.FrameCollector.Event) + func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? +} +@_hasMissingDesignatedInitializers public class FrameCollector { + public enum Event { + case text(Swift.String) + case binary(Foundation.Data) + case pong(Foundation.Data?) + case ping(Foundation.Data?) + case error(Swift.Error) + case closed(Swift.String, Swift.UInt16) + } + public func add(frame: VideosdkWebSocket.Frame) + @objc deinit +} +public enum CloseCode : Swift.UInt16 { + case normal + case goingAway + case protocolError + case protocolUnhandledType + case noStatusReceived + case encoding + case policyViolated + case messageTooBig + public init?(rawValue: Swift.UInt16) + public typealias RawValue = Swift.UInt16 + public var rawValue: Swift.UInt16 { + get + } +} +public enum FrameOpCode : Swift.UInt8 { + case continueFrame + case textFrame + case binaryFrame + case connectionClose + case ping + case pong + case unknown + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } +} +public struct Frame { +} +public enum FrameEvent { + case frame(VideosdkWebSocket.Frame) + case error(Swift.Error) +} +public protocol FramerEventClient : AnyObject { + func frameProcessed(event: VideosdkWebSocket.FrameEvent) +} +public protocol Framer { + func add(data: Foundation.Data) + func register(delegate: VideosdkWebSocket.FramerEventClient) + func createWriteFrame(opcode: VideosdkWebSocket.FrameOpCode, payload: Foundation.Data, isCompressed: Swift.Bool) -> Foundation.Data + func updateCompression(supports: Swift.Bool) + func supportsCompression() -> Swift.Bool +} +public class WSFramer : VideosdkWebSocket.Framer { + public var compressionEnabled: Swift.Bool + public init(isServer: Swift.Bool = false) + public func updateCompression(supports: Swift.Bool) + public func supportsCompression() -> Swift.Bool + public func add(data: Foundation.Data) + public func register(delegate: VideosdkWebSocket.FramerEventClient) + public func createWriteFrame(opcode: VideosdkWebSocket.FrameOpCode, payload: Foundation.Data, isCompressed: Swift.Bool) -> Foundation.Data + @objc deinit +} +public protocol MyWSArrayType { +} +extension Swift.UInt8 : VideosdkWebSocket.MyWSArrayType { +} +extension Swift.Array where Element : Swift.UnsignedInteger, Element : VideosdkWebSocket.MyWSArrayType { + public func readUint16(offset: Swift.Int) -> Swift.UInt16 + public func readUint64(offset: Swift.Int) -> Swift.UInt64 + public func unmaskData(maskStart: Swift.Int, offset: Swift.Int, length: Swift.Int) -> Foundation.Data +} +public func writeUint16(_ buffer: inout [Swift.UInt8], offset: Swift.Int, value: Swift.UInt16) +public func writeUint32(_ buffer: inout [Swift.UInt8], offset: Swift.Int, value: Swift.UInt32) +public func writeUint64(_ buffer: inout [Swift.UInt8], offset: Swift.Int, value: Swift.UInt64) +public enum HTTPUpgradeError : Swift.Error { + case notAnUpgrade(Swift.Int, [Swift.String : Swift.String]) + case invalidData +} +public struct HTTPWSHeader { + public static func createUpgrade(request: Foundation.URLRequest, supportsCompression: Swift.Bool, secKeyValue: Swift.String) -> Foundation.URLRequest + public static func generateWebSocketKey() -> Swift.String +} +public enum HTTPEvent { + case success([Swift.String : Swift.String]) + case failure(Swift.Error) +} +public protocol HTTPHandlerDelegate : AnyObject { + func didReceiveHTTP(event: VideosdkWebSocket.HTTPEvent) +} +public protocol HTTPHandler { + func register(delegate: VideosdkWebSocket.HTTPHandlerDelegate) + func convert(request: Foundation.URLRequest) -> Foundation.Data + func parse(data: Foundation.Data) -> Swift.Int +} +public protocol HTTPServerDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.HTTPEvent) +} +public protocol HTTPServerHandler { + func register(delegate: VideosdkWebSocket.HTTPServerDelegate) + func parse(data: Foundation.Data) + func createResponse(headers: [Swift.String : Swift.String]) -> Foundation.Data +} +public struct URLParts { +} +extension Foundation.URL { + public var isTLSScheme: Swift.Bool { + get + } + public func getParts() -> VideosdkWebSocket.URLParts? +} +public class StringHTTPHandler : VideosdkWebSocket.HTTPHandler { + public init() + public func convert(request: Foundation.URLRequest) -> Foundation.Data + public func parse(data: Foundation.Data) -> Swift.Int + public func register(delegate: VideosdkWebSocket.HTTPHandlerDelegate) + @objc deinit +} +public enum FoundationSecurityError : Swift.Error { + case invalidRequest + public static func == (a: VideosdkWebSocket.FoundationSecurityError, b: VideosdkWebSocket.FoundationSecurityError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public class FoundationSecurity { + public init(allowSelfSigned: Swift.Bool = false) + @objc deinit +} +extension VideosdkWebSocket.FoundationSecurity : VideosdkWebSocket.CertificatePinning { + public func evaluateTrust(trust: Security.SecTrust, domain: Swift.String?, completion: ((VideosdkWebSocket.PinningState) -> ())) +} +extension VideosdkWebSocket.FoundationSecurity : VideosdkWebSocket.HeaderValidator { + public func validate(headers: [Swift.String : Swift.String], key: Swift.String) -> Swift.Error? +} +public enum SecurityErrorCode : Swift.UInt16 { + case acceptFailed + case pinningFailed + public init?(rawValue: Swift.UInt16) + public typealias RawValue = Swift.UInt16 + public var rawValue: Swift.UInt16 { + get + } +} +public enum PinningState { + case success + case failed(CoreFoundation.CFError?) +} +public protocol CertificatePinning : AnyObject { + func evaluateTrust(trust: Security.SecTrust, domain: Swift.String?, completion: ((VideosdkWebSocket.PinningState) -> ())) +} +public protocol HeaderValidator : AnyObject { + func validate(headers: [Swift.String : Swift.String], key: Swift.String) -> Swift.Error? +} +public enum ConnectionEvent { + case connected([Swift.String : Swift.String]) + case disconnected(Swift.String, Swift.UInt16) + case text(Swift.String) + case binary(Foundation.Data) + case pong(Foundation.Data?) + case ping(Foundation.Data?) + case error(Swift.Error) +} +public protocol Connection { + func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode) +} +public protocol ConnectionDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.ServerEvent) +} +public enum ServerEvent { + case connected(VideosdkWebSocket.Connection, [Swift.String : Swift.String]) + case disconnected(VideosdkWebSocket.Connection, Swift.String, Swift.UInt16) + case text(VideosdkWebSocket.Connection, Swift.String) + case binary(VideosdkWebSocket.Connection, Foundation.Data) + case pong(VideosdkWebSocket.Connection, Foundation.Data?) + case ping(VideosdkWebSocket.Connection, Foundation.Data?) +} +public protocol Server { + func start(address: Swift.String, port: Swift.UInt16) -> Swift.Error? +} +@available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) +@available(watchOS, unavailable) +public class WebSocketServer : VideosdkWebSocket.Server, VideosdkWebSocket.ConnectionDelegate { + public var onEvent: ((VideosdkWebSocket.ServerEvent) -> Swift.Void)? + public init() + public func start(address: Swift.String, port: Swift.UInt16) -> Swift.Error? + public func didReceive(event: VideosdkWebSocket.ServerEvent) + @objc deinit +} +@_hasMissingDesignatedInitializers @available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) +public class ServerConnection : VideosdkWebSocket.Connection, VideosdkWebSocket.HTTPServerDelegate, VideosdkWebSocket.FramerEventClient, VideosdkWebSocket.FrameCollectorDelegate, VideosdkWebSocket.TransportEventClient { + public var onEvent: ((VideosdkWebSocket.ConnectionEvent) -> Swift.Void)? + weak public var delegate: VideosdkWebSocket.ConnectionDelegate? + public func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode) + public func connectionChanged(state: VideosdkWebSocket.ConnectionState) + public func didReceive(event: VideosdkWebSocket.HTTPEvent) + public func frameProcessed(event: VideosdkWebSocket.FrameEvent) + public func didForm(event: VideosdkWebSocket.FrameCollector.Event) + public func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + @objc deinit +} +public enum ErrorType : Swift.Error { + case compressionError + case securityError + case protocolError + case serverError + public static func == (a: VideosdkWebSocket.ErrorType, b: VideosdkWebSocket.ErrorType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct WSError : Swift.Error { + public let type: VideosdkWebSocket.ErrorType + public let message: Swift.String + public let code: Swift.UInt16 + public init(type: VideosdkWebSocket.ErrorType, message: Swift.String, code: Swift.UInt16) +} +public protocol WebSocketClient : AnyObject { + func connect() + func disconnect(closeCode: Swift.UInt16) + func write(string: Swift.String, completion: (() -> ())?) + func write(stringData: Foundation.Data, completion: (() -> ())?) + func write(data: Foundation.Data, completion: (() -> ())?) + func write(ping: Foundation.Data, completion: (() -> ())?) + func write(pong: Foundation.Data, completion: (() -> ())?) +} +extension VideosdkWebSocket.WebSocketClient { + public func write(string: Swift.String) + public func write(data: Foundation.Data) + public func write(ping: Foundation.Data) + public func write(pong: Foundation.Data) + public func disconnect() +} +public enum WebSocketEvent { + case connected([Swift.String : Swift.String]) + case disconnected(Swift.String, Swift.UInt16) + case text(Swift.String) + case binary(Foundation.Data) + case pong(Foundation.Data?) + case ping(Foundation.Data?) + case error(Swift.Error?) + case viabilityChanged(Swift.Bool) + case reconnectSuggested(Swift.Bool) + case cancelled +} +public protocol WebSocketDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.WebSocketEvent, client: VideosdkWebSocket.WebSocketClient) +} +open class WebSocket : VideosdkWebSocket.WebSocketClient, VideosdkWebSocket.EngineDelegate { + weak public var delegate: VideosdkWebSocket.WebSocketDelegate? + public var onEvent: ((VideosdkWebSocket.WebSocketEvent) -> Swift.Void)? + public var request: Foundation.URLRequest + public var callbackQueue: Dispatch.DispatchQueue + public var respondToPingWithPong: Swift.Bool { + get + set + } + public init(request: Foundation.URLRequest, engine: VideosdkWebSocket.Engine) + convenience public init(request: Foundation.URLRequest, certPinner: VideosdkWebSocket.CertificatePinning? = FoundationSecurity(), compressionHandler: VideosdkWebSocket.CompressionHandler? = nil, useCustomEngine: Swift.Bool = true) + public func connect() + public func disconnect(closeCode: Swift.UInt16 = CloseCode.normal.rawValue) + public func forceDisconnect() + public func write(data: Foundation.Data, completion: (() -> ())?) + public func write(string: Swift.String, completion: (() -> ())?) + public func write(stringData: Foundation.Data, completion: (() -> ())?) + public func write(ping: Foundation.Data, completion: (() -> ())?) + public func write(pong: Foundation.Data, completion: (() -> ())?) + public func didReceive(event: VideosdkWebSocket.WebSocketEvent) + @objc deinit +} +public enum FoundationTransportError : Swift.Error { + case invalidRequest + case invalidOutputStream + case timeout + public static func == (a: VideosdkWebSocket.FoundationTransportError, b: VideosdkWebSocket.FoundationTransportError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@objc public class FoundationTransport : ObjectiveC.NSObject, VideosdkWebSocket.Transport, Foundation.StreamDelegate { + public var usingTLS: Swift.Bool { + get + } + public init(streamConfiguration: ((Foundation.InputStream, Foundation.OutputStream) -> Swift.Void)? = nil) + @objc deinit + public func connect(url: Foundation.URL, timeout: Swift.Double = 10, certificatePinning: VideosdkWebSocket.CertificatePinning? = nil) + public func disconnect() + public func register(delegate: VideosdkWebSocket.TransportEventClient) + public func write(data: Foundation.Data, completion: @escaping ((Swift.Error?) -> ())) + @objc open func stream(_ aStream: Foundation.Stream, handle eventCode: Foundation.Stream.Event) +} +public enum TCPTransportError : Swift.Error { + case invalidRequest + public static func == (a: VideosdkWebSocket.TCPTransportError, b: VideosdkWebSocket.TCPTransportError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) +public class TCPTransport : VideosdkWebSocket.Transport { + public var usingTLS: Swift.Bool { + get + } + public init(connection: Network.NWConnection) + public init() + public func connect(url: Foundation.URL, timeout: Swift.Double = 10, certificatePinning: VideosdkWebSocket.CertificatePinning? = nil) + public func disconnect() + public func register(delegate: VideosdkWebSocket.TransportEventClient) + public func write(data: Foundation.Data, completion: @escaping ((Swift.Error?) -> ())) + @objc deinit +} +public enum ConnectionState { + case connected + case waiting + case cancelled + case failed(Swift.Error?) + case viability(Swift.Bool) + case shouldReconnect(Swift.Bool) + case receive(Foundation.Data) +} +public protocol TransportEventClient : AnyObject { + func connectionChanged(state: VideosdkWebSocket.ConnectionState) +} +public protocol Transport : AnyObject { + func register(delegate: VideosdkWebSocket.TransportEventClient) + func connect(url: Foundation.URL, timeout: Swift.Double, certificatePinning: VideosdkWebSocket.CertificatePinning?) + func disconnect() + func write(data: Foundation.Data, completion: @escaping ((Swift.Error?) -> ())) + var usingTLS: Swift.Bool { get } +} +extension VideosdkWebSocket.CloseCode : Swift.Equatable {} +extension VideosdkWebSocket.CloseCode : Swift.Hashable {} +extension VideosdkWebSocket.CloseCode : Swift.RawRepresentable {} +extension VideosdkWebSocket.FrameOpCode : Swift.Equatable {} +extension VideosdkWebSocket.FrameOpCode : Swift.Hashable {} +extension VideosdkWebSocket.FrameOpCode : Swift.RawRepresentable {} +extension VideosdkWebSocket.FoundationSecurityError : Swift.Equatable {} +extension VideosdkWebSocket.FoundationSecurityError : Swift.Hashable {} +extension VideosdkWebSocket.SecurityErrorCode : Swift.Equatable {} +extension VideosdkWebSocket.SecurityErrorCode : Swift.Hashable {} +extension VideosdkWebSocket.SecurityErrorCode : Swift.RawRepresentable {} +extension VideosdkWebSocket.ErrorType : Swift.Equatable {} +extension VideosdkWebSocket.ErrorType : Swift.Hashable {} +extension VideosdkWebSocket.FoundationTransportError : Swift.Equatable {} +extension VideosdkWebSocket.FoundationTransportError : Swift.Hashable {} +extension VideosdkWebSocket.TCPTransportError : Swift.Equatable {} +extension VideosdkWebSocket.TCPTransportError : Swift.Hashable {} diff --git a/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios.swiftdoc b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios.swiftdoc new file mode 100644 index 0000000..5af324c Binary files /dev/null and b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios.swiftinterface b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios.swiftinterface new file mode 100644 index 0000000..fbd4be0 --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios.swiftinterface @@ -0,0 +1,435 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) +// swift-module-flags: -target arm64-apple-ios11.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name VideosdkWebSocket +// swift-module-flags-ignorable: -enable-bare-slash-regex +import CommonCrypto +import Foundation +import Network +import Swift +import _Concurrency +import _StringProcessing +import zlib +public protocol CompressionHandler { + func load(headers: [Swift.String : Swift.String]) + func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + func compress(data: Foundation.Data) -> Foundation.Data? +} +public class WSCompression : VideosdkWebSocket.CompressionHandler { + public init() + public func load(headers: [Swift.String : Swift.String]) + public func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + public func compress(data: Foundation.Data) -> Foundation.Data? + @objc deinit +} +public protocol EngineDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.WebSocketEvent) +} +public protocol Engine { + func register(delegate: VideosdkWebSocket.EngineDelegate) + func start(request: Foundation.URLRequest) + func stop(closeCode: Swift.UInt16) + func forceStop() + func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode, completion: (() -> ())?) + func write(string: Swift.String, completion: (() -> ())?) +} +@objc @_inheritsConvenienceInitializers @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +public class NativeEngine : ObjectiveC.NSObject, VideosdkWebSocket.Engine, Foundation.URLSessionDataDelegate, Foundation.URLSessionWebSocketDelegate { + public func register(delegate: VideosdkWebSocket.EngineDelegate) + public func start(request: Foundation.URLRequest) + public func stop(closeCode: Swift.UInt16) + public func forceStop() + public func write(string: Swift.String, completion: (() -> ())?) + public func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode, completion: (() -> ())?) + @objc public func urlSession(_ session: Foundation.URLSession, webSocketTask: Foundation.URLSessionWebSocketTask, didOpenWithProtocol protocol: Swift.String?) + @objc public func urlSession(_ session: Foundation.URLSession, webSocketTask: Foundation.URLSessionWebSocketTask, didCloseWith closeCode: Foundation.URLSessionWebSocketTask.CloseCode, reason: Foundation.Data?) + @objc override dynamic public init() + @objc deinit +} +public class WSEngine : VideosdkWebSocket.Engine, VideosdkWebSocket.TransportEventClient, VideosdkWebSocket.FramerEventClient, VideosdkWebSocket.FrameCollectorDelegate, VideosdkWebSocket.HTTPHandlerDelegate { + public var respondToPingWithPong: Swift.Bool + public init(transport: VideosdkWebSocket.Transport, certPinner: VideosdkWebSocket.CertificatePinning? = nil, headerValidator: VideosdkWebSocket.HeaderValidator = FoundationSecurity(), httpHandler: VideosdkWebSocket.HTTPHandler = FoundationHTTPHandler(), framer: VideosdkWebSocket.Framer = WSFramer(), compressionHandler: VideosdkWebSocket.CompressionHandler? = nil) + public func register(delegate: VideosdkWebSocket.EngineDelegate) + public func start(request: Foundation.URLRequest) + public func stop(closeCode: Swift.UInt16 = CloseCode.normal.rawValue) + public func forceStop() + public func write(string: Swift.String, completion: (() -> ())?) + public func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode, completion: (() -> ())?) + public func connectionChanged(state: VideosdkWebSocket.ConnectionState) + public func didReceiveHTTP(event: VideosdkWebSocket.HTTPEvent) + public func frameProcessed(event: VideosdkWebSocket.FrameEvent) + public func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + public func didForm(event: VideosdkWebSocket.FrameCollector.Event) + @objc deinit +} +public class FoundationHTTPHandler : VideosdkWebSocket.HTTPHandler { + public init() + public func convert(request: Foundation.URLRequest) -> Foundation.Data + public func parse(data: Foundation.Data) -> Swift.Int + public func register(delegate: VideosdkWebSocket.HTTPHandlerDelegate) + @objc deinit +} +@_hasMissingDesignatedInitializers public class FoundationHTTPServerHandler : VideosdkWebSocket.HTTPServerHandler { + public func register(delegate: VideosdkWebSocket.HTTPServerDelegate) + public func createResponse(headers: [Swift.String : Swift.String]) -> Foundation.Data + public func parse(data: Foundation.Data) + @objc deinit +} +public protocol FrameCollectorDelegate : AnyObject { + func didForm(event: VideosdkWebSocket.FrameCollector.Event) + func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? +} +@_hasMissingDesignatedInitializers public class FrameCollector { + public enum Event { + case text(Swift.String) + case binary(Foundation.Data) + case pong(Foundation.Data?) + case ping(Foundation.Data?) + case error(Swift.Error) + case closed(Swift.String, Swift.UInt16) + } + public func add(frame: VideosdkWebSocket.Frame) + @objc deinit +} +public enum CloseCode : Swift.UInt16 { + case normal + case goingAway + case protocolError + case protocolUnhandledType + case noStatusReceived + case encoding + case policyViolated + case messageTooBig + public init?(rawValue: Swift.UInt16) + public typealias RawValue = Swift.UInt16 + public var rawValue: Swift.UInt16 { + get + } +} +public enum FrameOpCode : Swift.UInt8 { + case continueFrame + case textFrame + case binaryFrame + case connectionClose + case ping + case pong + case unknown + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } +} +public struct Frame { +} +public enum FrameEvent { + case frame(VideosdkWebSocket.Frame) + case error(Swift.Error) +} +public protocol FramerEventClient : AnyObject { + func frameProcessed(event: VideosdkWebSocket.FrameEvent) +} +public protocol Framer { + func add(data: Foundation.Data) + func register(delegate: VideosdkWebSocket.FramerEventClient) + func createWriteFrame(opcode: VideosdkWebSocket.FrameOpCode, payload: Foundation.Data, isCompressed: Swift.Bool) -> Foundation.Data + func updateCompression(supports: Swift.Bool) + func supportsCompression() -> Swift.Bool +} +public class WSFramer : VideosdkWebSocket.Framer { + public var compressionEnabled: Swift.Bool + public init(isServer: Swift.Bool = false) + public func updateCompression(supports: Swift.Bool) + public func supportsCompression() -> Swift.Bool + public func add(data: Foundation.Data) + public func register(delegate: VideosdkWebSocket.FramerEventClient) + public func createWriteFrame(opcode: VideosdkWebSocket.FrameOpCode, payload: Foundation.Data, isCompressed: Swift.Bool) -> Foundation.Data + @objc deinit +} +public protocol MyWSArrayType { +} +extension Swift.UInt8 : VideosdkWebSocket.MyWSArrayType { +} +extension Swift.Array where Element : Swift.UnsignedInteger, Element : VideosdkWebSocket.MyWSArrayType { + public func readUint16(offset: Swift.Int) -> Swift.UInt16 + public func readUint64(offset: Swift.Int) -> Swift.UInt64 + public func unmaskData(maskStart: Swift.Int, offset: Swift.Int, length: Swift.Int) -> Foundation.Data +} +public func writeUint16(_ buffer: inout [Swift.UInt8], offset: Swift.Int, value: Swift.UInt16) +public func writeUint32(_ buffer: inout [Swift.UInt8], offset: Swift.Int, value: Swift.UInt32) +public func writeUint64(_ buffer: inout [Swift.UInt8], offset: Swift.Int, value: Swift.UInt64) +public enum HTTPUpgradeError : Swift.Error { + case notAnUpgrade(Swift.Int, [Swift.String : Swift.String]) + case invalidData +} +public struct HTTPWSHeader { + public static func createUpgrade(request: Foundation.URLRequest, supportsCompression: Swift.Bool, secKeyValue: Swift.String) -> Foundation.URLRequest + public static func generateWebSocketKey() -> Swift.String +} +public enum HTTPEvent { + case success([Swift.String : Swift.String]) + case failure(Swift.Error) +} +public protocol HTTPHandlerDelegate : AnyObject { + func didReceiveHTTP(event: VideosdkWebSocket.HTTPEvent) +} +public protocol HTTPHandler { + func register(delegate: VideosdkWebSocket.HTTPHandlerDelegate) + func convert(request: Foundation.URLRequest) -> Foundation.Data + func parse(data: Foundation.Data) -> Swift.Int +} +public protocol HTTPServerDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.HTTPEvent) +} +public protocol HTTPServerHandler { + func register(delegate: VideosdkWebSocket.HTTPServerDelegate) + func parse(data: Foundation.Data) + func createResponse(headers: [Swift.String : Swift.String]) -> Foundation.Data +} +public struct URLParts { +} +extension Foundation.URL { + public var isTLSScheme: Swift.Bool { + get + } + public func getParts() -> VideosdkWebSocket.URLParts? +} +public class StringHTTPHandler : VideosdkWebSocket.HTTPHandler { + public init() + public func convert(request: Foundation.URLRequest) -> Foundation.Data + public func parse(data: Foundation.Data) -> Swift.Int + public func register(delegate: VideosdkWebSocket.HTTPHandlerDelegate) + @objc deinit +} +public enum FoundationSecurityError : Swift.Error { + case invalidRequest + public static func == (a: VideosdkWebSocket.FoundationSecurityError, b: VideosdkWebSocket.FoundationSecurityError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public class FoundationSecurity { + public init(allowSelfSigned: Swift.Bool = false) + @objc deinit +} +extension VideosdkWebSocket.FoundationSecurity : VideosdkWebSocket.CertificatePinning { + public func evaluateTrust(trust: Security.SecTrust, domain: Swift.String?, completion: ((VideosdkWebSocket.PinningState) -> ())) +} +extension VideosdkWebSocket.FoundationSecurity : VideosdkWebSocket.HeaderValidator { + public func validate(headers: [Swift.String : Swift.String], key: Swift.String) -> Swift.Error? +} +public enum SecurityErrorCode : Swift.UInt16 { + case acceptFailed + case pinningFailed + public init?(rawValue: Swift.UInt16) + public typealias RawValue = Swift.UInt16 + public var rawValue: Swift.UInt16 { + get + } +} +public enum PinningState { + case success + case failed(CoreFoundation.CFError?) +} +public protocol CertificatePinning : AnyObject { + func evaluateTrust(trust: Security.SecTrust, domain: Swift.String?, completion: ((VideosdkWebSocket.PinningState) -> ())) +} +public protocol HeaderValidator : AnyObject { + func validate(headers: [Swift.String : Swift.String], key: Swift.String) -> Swift.Error? +} +public enum ConnectionEvent { + case connected([Swift.String : Swift.String]) + case disconnected(Swift.String, Swift.UInt16) + case text(Swift.String) + case binary(Foundation.Data) + case pong(Foundation.Data?) + case ping(Foundation.Data?) + case error(Swift.Error) +} +public protocol Connection { + func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode) +} +public protocol ConnectionDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.ServerEvent) +} +public enum ServerEvent { + case connected(VideosdkWebSocket.Connection, [Swift.String : Swift.String]) + case disconnected(VideosdkWebSocket.Connection, Swift.String, Swift.UInt16) + case text(VideosdkWebSocket.Connection, Swift.String) + case binary(VideosdkWebSocket.Connection, Foundation.Data) + case pong(VideosdkWebSocket.Connection, Foundation.Data?) + case ping(VideosdkWebSocket.Connection, Foundation.Data?) +} +public protocol Server { + func start(address: Swift.String, port: Swift.UInt16) -> Swift.Error? +} +@available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) +@available(watchOS, unavailable) +public class WebSocketServer : VideosdkWebSocket.Server, VideosdkWebSocket.ConnectionDelegate { + public var onEvent: ((VideosdkWebSocket.ServerEvent) -> Swift.Void)? + public init() + public func start(address: Swift.String, port: Swift.UInt16) -> Swift.Error? + public func didReceive(event: VideosdkWebSocket.ServerEvent) + @objc deinit +} +@_hasMissingDesignatedInitializers @available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) +public class ServerConnection : VideosdkWebSocket.Connection, VideosdkWebSocket.HTTPServerDelegate, VideosdkWebSocket.FramerEventClient, VideosdkWebSocket.FrameCollectorDelegate, VideosdkWebSocket.TransportEventClient { + public var onEvent: ((VideosdkWebSocket.ConnectionEvent) -> Swift.Void)? + weak public var delegate: VideosdkWebSocket.ConnectionDelegate? + public func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode) + public func connectionChanged(state: VideosdkWebSocket.ConnectionState) + public func didReceive(event: VideosdkWebSocket.HTTPEvent) + public func frameProcessed(event: VideosdkWebSocket.FrameEvent) + public func didForm(event: VideosdkWebSocket.FrameCollector.Event) + public func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + @objc deinit +} +public enum ErrorType : Swift.Error { + case compressionError + case securityError + case protocolError + case serverError + public static func == (a: VideosdkWebSocket.ErrorType, b: VideosdkWebSocket.ErrorType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct WSError : Swift.Error { + public let type: VideosdkWebSocket.ErrorType + public let message: Swift.String + public let code: Swift.UInt16 + public init(type: VideosdkWebSocket.ErrorType, message: Swift.String, code: Swift.UInt16) +} +public protocol WebSocketClient : AnyObject { + func connect() + func disconnect(closeCode: Swift.UInt16) + func write(string: Swift.String, completion: (() -> ())?) + func write(stringData: Foundation.Data, completion: (() -> ())?) + func write(data: Foundation.Data, completion: (() -> ())?) + func write(ping: Foundation.Data, completion: (() -> ())?) + func write(pong: Foundation.Data, completion: (() -> ())?) +} +extension VideosdkWebSocket.WebSocketClient { + public func write(string: Swift.String) + public func write(data: Foundation.Data) + public func write(ping: Foundation.Data) + public func write(pong: Foundation.Data) + public func disconnect() +} +public enum WebSocketEvent { + case connected([Swift.String : Swift.String]) + case disconnected(Swift.String, Swift.UInt16) + case text(Swift.String) + case binary(Foundation.Data) + case pong(Foundation.Data?) + case ping(Foundation.Data?) + case error(Swift.Error?) + case viabilityChanged(Swift.Bool) + case reconnectSuggested(Swift.Bool) + case cancelled +} +public protocol WebSocketDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.WebSocketEvent, client: VideosdkWebSocket.WebSocketClient) +} +open class WebSocket : VideosdkWebSocket.WebSocketClient, VideosdkWebSocket.EngineDelegate { + weak public var delegate: VideosdkWebSocket.WebSocketDelegate? + public var onEvent: ((VideosdkWebSocket.WebSocketEvent) -> Swift.Void)? + public var request: Foundation.URLRequest + public var callbackQueue: Dispatch.DispatchQueue + public var respondToPingWithPong: Swift.Bool { + get + set + } + public init(request: Foundation.URLRequest, engine: VideosdkWebSocket.Engine) + convenience public init(request: Foundation.URLRequest, certPinner: VideosdkWebSocket.CertificatePinning? = FoundationSecurity(), compressionHandler: VideosdkWebSocket.CompressionHandler? = nil, useCustomEngine: Swift.Bool = true) + public func connect() + public func disconnect(closeCode: Swift.UInt16 = CloseCode.normal.rawValue) + public func forceDisconnect() + public func write(data: Foundation.Data, completion: (() -> ())?) + public func write(string: Swift.String, completion: (() -> ())?) + public func write(stringData: Foundation.Data, completion: (() -> ())?) + public func write(ping: Foundation.Data, completion: (() -> ())?) + public func write(pong: Foundation.Data, completion: (() -> ())?) + public func didReceive(event: VideosdkWebSocket.WebSocketEvent) + @objc deinit +} +public enum FoundationTransportError : Swift.Error { + case invalidRequest + case invalidOutputStream + case timeout + public static func == (a: VideosdkWebSocket.FoundationTransportError, b: VideosdkWebSocket.FoundationTransportError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@objc public class FoundationTransport : ObjectiveC.NSObject, VideosdkWebSocket.Transport, Foundation.StreamDelegate { + public var usingTLS: Swift.Bool { + get + } + public init(streamConfiguration: ((Foundation.InputStream, Foundation.OutputStream) -> Swift.Void)? = nil) + @objc deinit + public func connect(url: Foundation.URL, timeout: Swift.Double = 10, certificatePinning: VideosdkWebSocket.CertificatePinning? = nil) + public func disconnect() + public func register(delegate: VideosdkWebSocket.TransportEventClient) + public func write(data: Foundation.Data, completion: @escaping ((Swift.Error?) -> ())) + @objc open func stream(_ aStream: Foundation.Stream, handle eventCode: Foundation.Stream.Event) +} +public enum TCPTransportError : Swift.Error { + case invalidRequest + public static func == (a: VideosdkWebSocket.TCPTransportError, b: VideosdkWebSocket.TCPTransportError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) +public class TCPTransport : VideosdkWebSocket.Transport { + public var usingTLS: Swift.Bool { + get + } + public init(connection: Network.NWConnection) + public init() + public func connect(url: Foundation.URL, timeout: Swift.Double = 10, certificatePinning: VideosdkWebSocket.CertificatePinning? = nil) + public func disconnect() + public func register(delegate: VideosdkWebSocket.TransportEventClient) + public func write(data: Foundation.Data, completion: @escaping ((Swift.Error?) -> ())) + @objc deinit +} +public enum ConnectionState { + case connected + case waiting + case cancelled + case failed(Swift.Error?) + case viability(Swift.Bool) + case shouldReconnect(Swift.Bool) + case receive(Foundation.Data) +} +public protocol TransportEventClient : AnyObject { + func connectionChanged(state: VideosdkWebSocket.ConnectionState) +} +public protocol Transport : AnyObject { + func register(delegate: VideosdkWebSocket.TransportEventClient) + func connect(url: Foundation.URL, timeout: Swift.Double, certificatePinning: VideosdkWebSocket.CertificatePinning?) + func disconnect() + func write(data: Foundation.Data, completion: @escaping ((Swift.Error?) -> ())) + var usingTLS: Swift.Bool { get } +} +extension VideosdkWebSocket.CloseCode : Swift.Equatable {} +extension VideosdkWebSocket.CloseCode : Swift.Hashable {} +extension VideosdkWebSocket.CloseCode : Swift.RawRepresentable {} +extension VideosdkWebSocket.FrameOpCode : Swift.Equatable {} +extension VideosdkWebSocket.FrameOpCode : Swift.Hashable {} +extension VideosdkWebSocket.FrameOpCode : Swift.RawRepresentable {} +extension VideosdkWebSocket.FoundationSecurityError : Swift.Equatable {} +extension VideosdkWebSocket.FoundationSecurityError : Swift.Hashable {} +extension VideosdkWebSocket.SecurityErrorCode : Swift.Equatable {} +extension VideosdkWebSocket.SecurityErrorCode : Swift.Hashable {} +extension VideosdkWebSocket.SecurityErrorCode : Swift.RawRepresentable {} +extension VideosdkWebSocket.ErrorType : Swift.Equatable {} +extension VideosdkWebSocket.ErrorType : Swift.Hashable {} +extension VideosdkWebSocket.FoundationTransportError : Swift.Equatable {} +extension VideosdkWebSocket.FoundationTransportError : Swift.Hashable {} +extension VideosdkWebSocket.TCPTransportError : Swift.Equatable {} +extension VideosdkWebSocket.TCPTransportError : Swift.Hashable {} diff --git a/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64/VideosdkWebSocket.framework/VideosdkWebSocket b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64/VideosdkWebSocket.framework/VideosdkWebSocket new file mode 100755 index 0000000..81c9eca Binary files /dev/null and b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64/VideosdkWebSocket.framework/VideosdkWebSocket differ diff --git a/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Headers/VideosdkWebSocket-Swift.h b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Headers/VideosdkWebSocket-Swift.h new file mode 100644 index 0000000..fcb0cb9 --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Headers/VideosdkWebSocket-Swift.h @@ -0,0 +1,570 @@ +#if 0 +#elif defined(__arm64__) && __arm64__ +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) +#ifndef VIDEOSDKWEBSOCKET_SWIFT_H +#define VIDEOSDKWEBSOCKET_SWIFT_H +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgcc-compat" + +#if !defined(__has_include) +# define __has_include(x) 0 +#endif +#if !defined(__has_attribute) +# define __has_attribute(x) 0 +#endif +#if !defined(__has_feature) +# define __has_feature(x) 0 +#endif +#if !defined(__has_warning) +# define __has_warning(x) 0 +#endif + +#if __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wduplicate-method-match" +#pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) +#include +#endif +#if defined(__cplusplus) +#include +#include +#include +#else +#include +#include +#include +#endif + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if __has_include() +# include +# elif !defined(__cplusplus) +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif +#if !defined(SWIFT_CLASS_PROPERTY) +# if __has_feature(objc_class_property) +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ +# else +# define SWIFT_CLASS_PROPERTY(...) +# endif +#endif + +#if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +#else +# define SWIFT_METHOD_FAMILY(X) +#endif +#if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +#else +# define SWIFT_NOESCAPE +#endif +#if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +#else +# define SWIFT_RELEASES_ARGUMENT +#endif +#if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +#else +# define SWIFT_WARN_UNUSED_RESULT +#endif +#if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +#else +# define SWIFT_NORETURN +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM_ATTR) +# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) +# else +# define SWIFT_ENUM_ATTR(_extensibility) +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# if __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) +# endif +#endif +#if !defined(SWIFT_UNAVAILABLE) +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) +#endif +#if !defined(SWIFT_UNAVAILABLE_MSG) +# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) +#endif +#if !defined(SWIFT_AVAILABILITY) +# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) +#endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif +#if !defined(SWIFT_DEPRECATED) +# define SWIFT_DEPRECATED __attribute__((deprecated)) +#endif +#if !defined(SWIFT_DEPRECATED_MSG) +# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) +#endif +#if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +#else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#endif +#if defined(__OBJC__) +#if !defined(IBSegueAction) +# define IBSegueAction +#endif +#endif +#if !defined(SWIFT_EXTERN) +# if defined(__cplusplus) +# define SWIFT_EXTERN extern "C" +# else +# define SWIFT_EXTERN extern +# endif +#endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) +#if __has_feature(modules) +#if __has_warning("-Watimport-in-framework-header") +#pragma clang diagnostic ignored "-Watimport-in-framework-header" +#endif +@import Foundation; +@import ObjectiveC; +#endif + +#endif +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#if __has_warning("-Wpragma-clang-attribute") +# pragma clang diagnostic ignored "-Wpragma-clang-attribute" +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" +#pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" + +#if __has_attribute(external_source_symbol) +# pragma push_macro("any") +# undef any +# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VideosdkWebSocket",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + +#if defined(__OBJC__) +@class NSStream; + +SWIFT_CLASS("_TtC17VideosdkWebSocket19FoundationTransport") +@interface FoundationTransport : NSObject +- (void)stream:(NSStream * _Nonnull)aStream handleEvent:(NSStreamEvent)eventCode; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +@end + +@class NSURLSession; +@class NSURLSessionWebSocketTask; +@class NSString; +@class NSData; + +SWIFT_CLASS("_TtC17VideosdkWebSocket12NativeEngine") SWIFT_AVAILABILITY(tvos,introduced=13.0) SWIFT_AVAILABILITY(watchos,introduced=6.0) SWIFT_AVAILABILITY(ios,introduced=13.0) SWIFT_AVAILABILITY(macos,introduced=10.15) +@interface NativeEngine : NSObject +- (void)URLSession:(NSURLSession * _Nonnull)session webSocketTask:(NSURLSessionWebSocketTask * _Nonnull)webSocketTask didOpenWithProtocol:(NSString * _Nullable)protocol; +- (void)URLSession:(NSURLSession * _Nonnull)session webSocketTask:(NSURLSessionWebSocketTask * _Nonnull)webSocketTask didCloseWithCode:(NSURLSessionWebSocketCloseCode)closeCode reason:(NSData * _Nullable)reason; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + +#endif +#if defined(__cplusplus) +#endif +#if __has_attribute(external_source_symbol) +# pragma clang attribute pop +#endif +#pragma clang diagnostic pop +#endif + +#elif defined(__x86_64__) && __x86_64__ +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) +#ifndef VIDEOSDKWEBSOCKET_SWIFT_H +#define VIDEOSDKWEBSOCKET_SWIFT_H +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgcc-compat" + +#if !defined(__has_include) +# define __has_include(x) 0 +#endif +#if !defined(__has_attribute) +# define __has_attribute(x) 0 +#endif +#if !defined(__has_feature) +# define __has_feature(x) 0 +#endif +#if !defined(__has_warning) +# define __has_warning(x) 0 +#endif + +#if __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wduplicate-method-match" +#pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) +#include +#endif +#if defined(__cplusplus) +#include +#include +#include +#else +#include +#include +#include +#endif + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if __has_include() +# include +# elif !defined(__cplusplus) +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif +#if !defined(SWIFT_CLASS_PROPERTY) +# if __has_feature(objc_class_property) +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ +# else +# define SWIFT_CLASS_PROPERTY(...) +# endif +#endif + +#if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +#else +# define SWIFT_METHOD_FAMILY(X) +#endif +#if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +#else +# define SWIFT_NOESCAPE +#endif +#if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +#else +# define SWIFT_RELEASES_ARGUMENT +#endif +#if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +#else +# define SWIFT_WARN_UNUSED_RESULT +#endif +#if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +#else +# define SWIFT_NORETURN +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM_ATTR) +# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) +# else +# define SWIFT_ENUM_ATTR(_extensibility) +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# if __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) +# endif +#endif +#if !defined(SWIFT_UNAVAILABLE) +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) +#endif +#if !defined(SWIFT_UNAVAILABLE_MSG) +# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) +#endif +#if !defined(SWIFT_AVAILABILITY) +# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) +#endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif +#if !defined(SWIFT_DEPRECATED) +# define SWIFT_DEPRECATED __attribute__((deprecated)) +#endif +#if !defined(SWIFT_DEPRECATED_MSG) +# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) +#endif +#if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +#else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#endif +#if defined(__OBJC__) +#if !defined(IBSegueAction) +# define IBSegueAction +#endif +#endif +#if !defined(SWIFT_EXTERN) +# if defined(__cplusplus) +# define SWIFT_EXTERN extern "C" +# else +# define SWIFT_EXTERN extern +# endif +#endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) +#if __has_feature(modules) +#if __has_warning("-Watimport-in-framework-header") +#pragma clang diagnostic ignored "-Watimport-in-framework-header" +#endif +@import Foundation; +@import ObjectiveC; +#endif + +#endif +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#if __has_warning("-Wpragma-clang-attribute") +# pragma clang diagnostic ignored "-Wpragma-clang-attribute" +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" +#pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" + +#if __has_attribute(external_source_symbol) +# pragma push_macro("any") +# undef any +# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VideosdkWebSocket",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + +#if defined(__OBJC__) +@class NSStream; + +SWIFT_CLASS("_TtC17VideosdkWebSocket19FoundationTransport") +@interface FoundationTransport : NSObject +- (void)stream:(NSStream * _Nonnull)aStream handleEvent:(NSStreamEvent)eventCode; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +@end + +@class NSURLSession; +@class NSURLSessionWebSocketTask; +@class NSString; +@class NSData; + +SWIFT_CLASS("_TtC17VideosdkWebSocket12NativeEngine") SWIFT_AVAILABILITY(tvos,introduced=13.0) SWIFT_AVAILABILITY(watchos,introduced=6.0) SWIFT_AVAILABILITY(ios,introduced=13.0) SWIFT_AVAILABILITY(macos,introduced=10.15) +@interface NativeEngine : NSObject +- (void)URLSession:(NSURLSession * _Nonnull)session webSocketTask:(NSURLSessionWebSocketTask * _Nonnull)webSocketTask didOpenWithProtocol:(NSString * _Nullable)protocol; +- (void)URLSession:(NSURLSession * _Nonnull)session webSocketTask:(NSURLSessionWebSocketTask * _Nonnull)webSocketTask didCloseWithCode:(NSURLSessionWebSocketCloseCode)closeCode reason:(NSData * _Nullable)reason; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + +#endif +#if defined(__cplusplus) +#endif +#if __has_attribute(external_source_symbol) +# pragma clang attribute pop +#endif +#pragma clang diagnostic pop +#endif + +#else +#error unsupported Swift architecture +#endif diff --git a/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Info.plist b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Info.plist new file mode 100644 index 0000000..c191d91 Binary files /dev/null and b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Info.plist differ diff --git a/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.abi.json b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.abi.json new file mode 100644 index 0000000..7a0c5de --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -0,0 +1,18610 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CompressionHandler", + "printedName": "CompressionHandler", + "children": [ + { + "kind": "Function", + "name": "load", + "printedName": "load(headers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18CompressionHandlerP4load7headersySDyS2SG_tF", + "mangledName": "$s17VideosdkWebSocket18CompressionHandlerP4load7headersySDyS2SG_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.CompressionHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decompress", + "printedName": "decompress(data:isFinal:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18CompressionHandlerP10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "mangledName": "$s17VideosdkWebSocket18CompressionHandlerP10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.CompressionHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compress", + "printedName": "compress(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18CompressionHandlerP8compress4data10Foundation4DataVSgAH_tF", + "mangledName": "$s17VideosdkWebSocket18CompressionHandlerP8compress4data10Foundation4DataVSgAH_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.CompressionHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket18CompressionHandlerP", + "mangledName": "$s17VideosdkWebSocket18CompressionHandlerP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "zlib", + "printedName": "zlib", + "declKind": "Import", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "TypeDecl", + "name": "WSCompression", + "printedName": "WSCompression", + "children": [ + { + "kind": "Var", + "name": "headerWSExtensionName", + "printedName": "headerWSExtensionName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket13WSCompressionC21headerWSExtensionNameSSvp", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC21headerWSExtensionNameSSvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC21headerWSExtensionNameSSvg", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC21headerWSExtensionNameSSvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "decompressor", + "printedName": "decompressor", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Decompressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Decompressor", + "printedName": "VideosdkWebSocket.Decompressor", + "usr": "s:17VideosdkWebSocket12DecompressorC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvp", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Decompressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Decompressor", + "printedName": "VideosdkWebSocket.Decompressor", + "usr": "s:17VideosdkWebSocket12DecompressorC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvg", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Decompressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Decompressor", + "printedName": "VideosdkWebSocket.Decompressor", + "usr": "s:17VideosdkWebSocket12DecompressorC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvs", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvM", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "compressor", + "printedName": "compressor", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Compressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Compressor", + "printedName": "VideosdkWebSocket.Compressor", + "usr": "s:17VideosdkWebSocket10CompressorC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvp", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Compressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Compressor", + "printedName": "VideosdkWebSocket.Compressor", + "usr": "s:17VideosdkWebSocket10CompressorC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvg", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Compressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Compressor", + "printedName": "VideosdkWebSocket.Compressor", + "usr": "s:17VideosdkWebSocket10CompressorC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvs", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvM", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "decompressorTakeOver", + "printedName": "decompressorTakeOver", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvp", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvg", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvs", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvM", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "compressorTakeOver", + "printedName": "compressorTakeOver", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvp", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvg", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvs", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvM", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "WSCompression", + "printedName": "VideosdkWebSocket.WSCompression", + "usr": "s:17VideosdkWebSocket13WSCompressionC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket13WSCompressionCACycfc", + "mangledName": "$s17VideosdkWebSocket13WSCompressionCACycfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load(headers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket13WSCompressionC4load7headersySDyS2SG_tF", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC4load7headersySDyS2SG_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decompress", + "printedName": "decompress(data:isFinal:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket13WSCompressionC10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compress", + "printedName": "compress(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket13WSCompressionC8compress4data10Foundation4DataVSgAH_tF", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC8compress4data10Foundation4DataVSgAH_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket13WSCompressionC", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CompressionHandler", + "printedName": "CompressionHandler", + "usr": "s:17VideosdkWebSocket18CompressionHandlerP", + "mangledName": "$s17VideosdkWebSocket18CompressionHandlerP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Decompressor", + "printedName": "Decompressor", + "children": [ + { + "kind": "Var", + "name": "strm", + "printedName": "strm", + "children": [ + { + "kind": "TypeNominal", + "name": "z_stream_s", + "printedName": "zlib.z_stream_s", + "usr": "c:@S@z_stream_s" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12DecompressorC4strm026_1E8A15CDB922173425E5369F4J5E3B16LLSo10z_stream_sVvp", + "mangledName": "$s17VideosdkWebSocket12DecompressorC4strm026_1E8A15CDB922173425E5369F4J5E3B16LLSo10z_stream_sVvp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "buffer", + "printedName": "buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12DecompressorC6buffer026_1E8A15CDB922173425E5369F4J5E3B16LLSays5UInt8VGvp", + "mangledName": "$s17VideosdkWebSocket12DecompressorC6buffer026_1E8A15CDB922173425E5369F4J5E3B16LLSays5UInt8VGvp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Var", + "name": "inflateInitialized", + "printedName": "inflateInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12DecompressorC18inflateInitialized026_1E8A15CDB922173425E5369F4K5E3B16LLSbvp", + "mangledName": "$s17VideosdkWebSocket12DecompressorC18inflateInitialized026_1E8A15CDB922173425E5369F4K5E3B16LLSbvp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 2, + "hasStorage": true + }, + { + "kind": "Var", + "name": "windowBits", + "printedName": "windowBits", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12DecompressorC10windowBits026_1E8A15CDB922173425E5369F4K5E3B16LLSivp", + "mangledName": "$s17VideosdkWebSocket12DecompressorC10windowBits026_1E8A15CDB922173425E5369F4K5E3B16LLSivp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(windowBits:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Decompressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Decompressor", + "printedName": "VideosdkWebSocket.Decompressor", + "usr": "s:17VideosdkWebSocket12DecompressorC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket12DecompressorC10windowBitsACSgSi_tcfc", + "mangledName": "$s17VideosdkWebSocket12DecompressorC10windowBitsACSgSi_tcfc", + "moduleName": "VideosdkWebSocket", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12DecompressorC5resetyyKF", + "mangledName": "$s17VideosdkWebSocket12DecompressorC5resetyyKF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decompress", + "printedName": "decompress(_:finish:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12DecompressorC10decompress_6finish10Foundation4DataVAH_SbtKF", + "mangledName": "$s17VideosdkWebSocket12DecompressorC10decompress_6finish10Foundation4DataVAH_SbtKF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decompress", + "printedName": "decompress(bytes:count:finish:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "UnsafePointer", + "printedName": "Swift.UnsafePointer", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:SP" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12DecompressorC10decompress5bytes5count6finish10Foundation4DataVSPys5UInt8VG_SiSbtKF", + "mangledName": "$s17VideosdkWebSocket12DecompressorC10decompress5bytes5count6finish10Foundation4DataVSPys5UInt8VG_SiSbtKF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket12DecompressorC", + "mangledName": "$s17VideosdkWebSocket12DecompressorC", + "moduleName": "VideosdkWebSocket", + "isOpen": true + }, + { + "kind": "TypeDecl", + "name": "Compressor", + "printedName": "Compressor", + "children": [ + { + "kind": "Var", + "name": "strm", + "printedName": "strm", + "children": [ + { + "kind": "TypeNominal", + "name": "z_stream_s", + "printedName": "zlib.z_stream_s", + "usr": "c:@S@z_stream_s" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket10CompressorC4strm026_1E8A15CDB922173425E5369F4J5E3B16LLSo10z_stream_sVvp", + "mangledName": "$s17VideosdkWebSocket10CompressorC4strm026_1E8A15CDB922173425E5369F4J5E3B16LLSo10z_stream_sVvp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "buffer", + "printedName": "buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket10CompressorC6buffer026_1E8A15CDB922173425E5369F4J5E3B16LLSays5UInt8VGvp", + "mangledName": "$s17VideosdkWebSocket10CompressorC6buffer026_1E8A15CDB922173425E5369F4J5E3B16LLSays5UInt8VGvp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Var", + "name": "deflateInitialized", + "printedName": "deflateInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket10CompressorC18deflateInitialized026_1E8A15CDB922173425E5369F4K5E3B16LLSbvp", + "mangledName": "$s17VideosdkWebSocket10CompressorC18deflateInitialized026_1E8A15CDB922173425E5369F4K5E3B16LLSbvp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 2, + "hasStorage": true + }, + { + "kind": "Var", + "name": "windowBits", + "printedName": "windowBits", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket10CompressorC10windowBits026_1E8A15CDB922173425E5369F4K5E3B16LLSivp", + "mangledName": "$s17VideosdkWebSocket10CompressorC10windowBits026_1E8A15CDB922173425E5369F4K5E3B16LLSivp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(windowBits:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Compressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Compressor", + "printedName": "VideosdkWebSocket.Compressor", + "usr": "s:17VideosdkWebSocket10CompressorC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket10CompressorC10windowBitsACSgSi_tcfc", + "mangledName": "$s17VideosdkWebSocket10CompressorC10windowBitsACSgSi_tcfc", + "moduleName": "VideosdkWebSocket", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket10CompressorC5resetyyKF", + "mangledName": "$s17VideosdkWebSocket10CompressorC5resetyyKF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compress", + "printedName": "compress(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket10CompressorC8compressy10Foundation4DataVAGKF", + "mangledName": "$s17VideosdkWebSocket10CompressorC8compressy10Foundation4DataVAGKF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket10CompressorC", + "mangledName": "$s17VideosdkWebSocket10CompressorC", + "moduleName": "VideosdkWebSocket", + "isOpen": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EngineDelegate", + "printedName": "EngineDelegate", + "children": [ + { + "kind": "Function", + "name": "didReceive", + "printedName": "didReceive(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket14EngineDelegateP10didReceive5eventyAA0bC5EventO_tF", + "mangledName": "$s17VideosdkWebSocket14EngineDelegateP10didReceive5eventyAA0bC5EventO_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.EngineDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket14EngineDelegateP", + "mangledName": "$s17VideosdkWebSocket14EngineDelegateP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Engine", + "printedName": "Engine", + "children": [ + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EngineDelegate", + "printedName": "VideosdkWebSocket.EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6EngineP8register8delegateyAA0D8Delegate_p_tF", + "mangledName": "$s17VideosdkWebSocket6EngineP8register8delegateyAA0D8Delegate_p_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Engine>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6EngineP5start7requesty10Foundation10URLRequestV_tF", + "mangledName": "$s17VideosdkWebSocket6EngineP5start7requesty10Foundation10URLRequestV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Engine>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop(closeCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6EngineP4stop9closeCodeys6UInt16V_tF", + "mangledName": "$s17VideosdkWebSocket6EngineP4stop9closeCodeys6UInt16V_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Engine>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceStop", + "printedName": "forceStop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6EngineP9forceStopyyF", + "mangledName": "$s17VideosdkWebSocket6EngineP9forceStopyyF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Engine>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:opcode:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6EngineP5write4data6opcode10completiony10Foundation4DataV_AA11FrameOpCodeOyycSgtF", + "mangledName": "$s17VideosdkWebSocket6EngineP5write4data6opcode10completiony10Foundation4DataV_AA11FrameOpCodeOyycSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Engine>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(string:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6EngineP5write6string10completionySS_yycSgtF", + "mangledName": "$s17VideosdkWebSocket6EngineP5write6string10completionySS_yycSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Engine>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket6EngineP", + "mangledName": "$s17VideosdkWebSocket6EngineP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "NativeEngine", + "printedName": "NativeEngine", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.EngineDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.EngineDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "EngineDelegate", + "printedName": "VideosdkWebSocket.EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.EngineDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "EngineDelegate", + "printedName": "VideosdkWebSocket.EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EngineDelegate", + "printedName": "VideosdkWebSocket.EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12NativeEngineC8register8delegateyAA0E8Delegate_p_tF", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC8register8delegateyAA0E8Delegate_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12NativeEngineC5start7requesty10Foundation10URLRequestV_tF", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC5start7requesty10Foundation10URLRequestV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop(closeCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12NativeEngineC4stop9closeCodeys6UInt16V_tF", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC4stop9closeCodeys6UInt16V_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceStop", + "printedName": "forceStop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12NativeEngineC9forceStopyyF", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC9forceStopyyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(string:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12NativeEngineC5write6string10completionySS_yycSgtF", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC5write6string10completionySS_yycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:opcode:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12NativeEngineC5write4data6opcode10completiony10Foundation4DataV_AA11FrameOpCodeOyycSgtF", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC5write4data6opcode10completiony10Foundation4DataV_AA11FrameOpCodeOyycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "urlSession", + "printedName": "urlSession(_:webSocketTask:didOpenWithProtocol:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLSession", + "printedName": "Foundation.URLSession", + "usr": "c:objc(cs)NSURLSession" + }, + { + "kind": "TypeNominal", + "name": "URLSessionWebSocketTask", + "printedName": "Foundation.URLSessionWebSocketTask", + "usr": "c:objc(cs)NSURLSessionWebSocketTask" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@VideosdkWebSocket@objc(cs)NativeEngine(im)URLSession:webSocketTask:didOpenWithProtocol:", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC10urlSession_03webC4Task19didOpenWithProtocolySo12NSURLSessionC_So0nbcI0CSSSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "objc_name": "URLSession:webSocketTask:didOpenWithProtocol:", + "declAttributes": [ + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "urlSession", + "printedName": "urlSession(_:webSocketTask:didCloseWith:reason:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLSession", + "printedName": "Foundation.URLSession", + "usr": "c:objc(cs)NSURLSession" + }, + { + "kind": "TypeNominal", + "name": "URLSessionWebSocketTask", + "printedName": "Foundation.URLSessionWebSocketTask", + "usr": "c:objc(cs)NSURLSessionWebSocketTask" + }, + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "Foundation.URLSessionWebSocketTask.CloseCode", + "usr": "c:@E@NSURLSessionWebSocketCloseCode" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@VideosdkWebSocket@objc(cs)NativeEngine(im)URLSession:webSocketTask:didCloseWithCode:reason:", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC10urlSession_03webC4Task12didCloseWith6reasonySo12NSURLSessionC_So0nbcI0CSo0nbcK4CodeV10Foundation4DataVSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "objc_name": "URLSession:webSocketTask:didCloseWithCode:reason:", + "declAttributes": [ + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NativeEngine", + "printedName": "VideosdkWebSocket.NativeEngine", + "usr": "c:@M@VideosdkWebSocket@objc(cs)NativeEngine" + } + ], + "declKind": "Constructor", + "usr": "c:@M@VideosdkWebSocket@objc(cs)NativeEngine(im)init", + "mangledName": "$s17VideosdkWebSocket12NativeEngineCACycfc", + "moduleName": "VideosdkWebSocket", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@VideosdkWebSocket@objc(cs)NativeEngine", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "intro_Macosx": "10.15", + "intro_iOS": "13.0", + "intro_tvOS": "13.0", + "intro_watchOS": "6.0", + "declAttributes": [ + "AccessControl", + "Available", + "Available", + "Available", + "Available", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Engine", + "printedName": "Engine", + "usr": "s:17VideosdkWebSocket6EngineP", + "mangledName": "$s17VideosdkWebSocket6EngineP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "WSEngine", + "printedName": "WSEngine", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.EngineDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.EngineDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "EngineDelegate", + "printedName": "VideosdkWebSocket.EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.EngineDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "EngineDelegate", + "printedName": "VideosdkWebSocket.EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "respondToPingWithPong", + "printedName": "respondToPingWithPong", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvp", + "mangledName": "$s17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvg", + "mangledName": "$s17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvs", + "mangledName": "$s17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvM", + "mangledName": "$s17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(transport:certPinner:headerValidator:httpHandler:framer:compressionHandler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WSEngine", + "printedName": "VideosdkWebSocket.WSEngine", + "usr": "s:17VideosdkWebSocket8WSEngineC" + }, + { + "kind": "TypeNominal", + "name": "Transport", + "printedName": "VideosdkWebSocket.Transport", + "usr": "s:17VideosdkWebSocket9TransportP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CertificatePinning?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificatePinning", + "printedName": "VideosdkWebSocket.CertificatePinning", + "usr": "s:17VideosdkWebSocket18CertificatePinningP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "HeaderValidator", + "printedName": "VideosdkWebSocket.HeaderValidator", + "hasDefaultArg": true, + "usr": "s:17VideosdkWebSocket15HeaderValidatorP" + }, + { + "kind": "TypeNominal", + "name": "HTTPHandler", + "printedName": "VideosdkWebSocket.HTTPHandler", + "hasDefaultArg": true, + "usr": "s:17VideosdkWebSocket11HTTPHandlerP" + }, + { + "kind": "TypeNominal", + "name": "Framer", + "printedName": "VideosdkWebSocket.Framer", + "hasDefaultArg": true, + "usr": "s:17VideosdkWebSocket6FramerP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CompressionHandler?", + "children": [ + { + "kind": "TypeNominal", + "name": "CompressionHandler", + "printedName": "VideosdkWebSocket.CompressionHandler", + "usr": "s:17VideosdkWebSocket18CompressionHandlerP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket8WSEngineC9transport10certPinner15headerValidator11httpHandler6framer011compressionK0AcA9Transport_p_AA18CertificatePinning_pSgAA06HeaderI0_pAA11HTTPHandler_pAA6Framer_pAA011CompressionK0_pSgtcfc", + "mangledName": "$s17VideosdkWebSocket8WSEngineC9transport10certPinner15headerValidator11httpHandler6framer011compressionK0AcA9Transport_p_AA18CertificatePinning_pSgAA06HeaderI0_pAA11HTTPHandler_pAA6Framer_pAA011CompressionK0_pSgtcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EngineDelegate", + "printedName": "VideosdkWebSocket.EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC8register8delegateyAA14EngineDelegate_p_tF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC8register8delegateyAA14EngineDelegate_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC5start7requesty10Foundation10URLRequestV_tF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC5start7requesty10Foundation10URLRequestV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop(closeCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "hasDefaultArg": true, + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC4stop9closeCodeys6UInt16V_tF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC4stop9closeCodeys6UInt16V_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceStop", + "printedName": "forceStop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC9forceStopyyF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC9forceStopyyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(string:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC5write6string10completionySS_yycSgtF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC5write6string10completionySS_yycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:opcode:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC5write4data6opcode10completiony10Foundation4DataV_AA11FrameOpCodeOyycSgtF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC5write4data6opcode10completiony10Foundation4DataV_AA11FrameOpCodeOyycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "connectionChanged", + "printedName": "connectionChanged(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC17connectionChanged5stateyAA15ConnectionStateO_tF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC17connectionChanged5stateyAA15ConnectionStateO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "didReceiveHTTP", + "printedName": "didReceiveHTTP(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC14didReceiveHTTP5eventyAA9HTTPEventO_tF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC14didReceiveHTTP5eventyAA9HTTPEventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "frameProcessed", + "printedName": "frameProcessed(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FrameEvent", + "printedName": "VideosdkWebSocket.FrameEvent", + "usr": "s:17VideosdkWebSocket10FrameEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC14frameProcessed5eventyAA10FrameEventO_tF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC14frameProcessed5eventyAA10FrameEventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decompress", + "printedName": "decompress(data:isFinal:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "didForm", + "printedName": "didForm(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC7didForm5eventyAA14FrameCollectorC5EventO_tF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC7didForm5eventyAA14FrameCollectorC5EventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket8WSEngineC", + "mangledName": "$s17VideosdkWebSocket8WSEngineC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Engine", + "printedName": "Engine", + "usr": "s:17VideosdkWebSocket6EngineP", + "mangledName": "$s17VideosdkWebSocket6EngineP" + }, + { + "kind": "Conformance", + "name": "TransportEventClient", + "printedName": "TransportEventClient", + "usr": "s:17VideosdkWebSocket20TransportEventClientP", + "mangledName": "$s17VideosdkWebSocket20TransportEventClientP" + }, + { + "kind": "Conformance", + "name": "FramerEventClient", + "printedName": "FramerEventClient", + "usr": "s:17VideosdkWebSocket17FramerEventClientP", + "mangledName": "$s17VideosdkWebSocket17FramerEventClientP" + }, + { + "kind": "Conformance", + "name": "FrameCollectorDelegate", + "printedName": "FrameCollectorDelegate", + "usr": "s:17VideosdkWebSocket22FrameCollectorDelegateP", + "mangledName": "$s17VideosdkWebSocket22FrameCollectorDelegateP" + }, + { + "kind": "Conformance", + "name": "HTTPHandlerDelegate", + "printedName": "HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP", + "mangledName": "$s17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FoundationHTTPHandler", + "printedName": "FoundationHTTPHandler", + "children": [ + { + "kind": "Var", + "name": "buffer", + "printedName": "buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvp", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvg", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvs", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvM", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPHandlerDelegate", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPHandlerDelegate", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationHTTPHandler", + "printedName": "VideosdkWebSocket.FoundationHTTPHandler", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerCACycfc", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerCACycfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "convert", + "printedName": "convert(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC7convert7request0D04DataVAF10URLRequestV_tF", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC7convert7request0D04DataVAF10URLRequestV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parse", + "printedName": "parse(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC5parse4dataSi0D04DataV_tF", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC5parse4dataSi0D04DataV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseContent", + "printedName": "parseContent(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC12parseContent4dataSb0D04DataV_tF", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC12parseContent4dataSb0D04DataV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPHandlerDelegate", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC8register8delegateyAA0E8Delegate_p_tF", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC8register8delegateyAA0E8Delegate_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "HTTPHandler", + "printedName": "HTTPHandler", + "usr": "s:17VideosdkWebSocket11HTTPHandlerP", + "mangledName": "$s17VideosdkWebSocket11HTTPHandlerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FoundationHTTPServerHandler", + "printedName": "FoundationHTTPServerHandler", + "children": [ + { + "kind": "Var", + "name": "buffer", + "printedName": "buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvp", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvg", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvs", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvM", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.HTTPServerDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.HTTPServerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPServerDelegate", + "printedName": "VideosdkWebSocket.HTTPServerDelegate", + "usr": "s:17VideosdkWebSocket18HTTPServerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.HTTPServerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPServerDelegate", + "printedName": "VideosdkWebSocket.HTTPServerDelegate", + "usr": "s:17VideosdkWebSocket18HTTPServerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "getVerb", + "printedName": "getVerb", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC7getVerbSo8NSStringCvp", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC7getVerbSo8NSStringCvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC7getVerbSo8NSStringCvg", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC7getVerbSo8NSStringCvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPServerDelegate", + "printedName": "VideosdkWebSocket.HTTPServerDelegate", + "usr": "s:17VideosdkWebSocket18HTTPServerDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC8register8delegateyAA0E8Delegate_p_tF", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC8register8delegateyAA0E8Delegate_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(headers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC14createResponse7headers0D04DataVSDyS2SG_tF", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC14createResponse7headers0D04DataVSDyS2SG_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parse", + "printedName": "parse(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC5parse4datay0D04DataV_tF", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC5parse4datay0D04DataV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseContent", + "printedName": "parseContent(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC12parseContent4dataSb0D04DataV_tF", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC12parseContent4dataSb0D04DataV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationHTTPServerHandler", + "printedName": "VideosdkWebSocket.FoundationHTTPServerHandler", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerCACycfc", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerCACycfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "HTTPServerHandler", + "printedName": "HTTPServerHandler", + "usr": "s:17VideosdkWebSocket17HTTPServerHandlerP", + "mangledName": "$s17VideosdkWebSocket17HTTPServerHandlerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FrameCollectorDelegate", + "printedName": "FrameCollectorDelegate", + "children": [ + { + "kind": "Function", + "name": "didForm", + "printedName": "didForm(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket22FrameCollectorDelegateP7didForm5eventyAA0dE0C5EventO_tF", + "mangledName": "$s17VideosdkWebSocket22FrameCollectorDelegateP7didForm5eventyAA0dE0C5EventO_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.FrameCollectorDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decompress", + "printedName": "decompress(data:isFinal:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket22FrameCollectorDelegateP10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "mangledName": "$s17VideosdkWebSocket22FrameCollectorDelegateP10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.FrameCollectorDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket22FrameCollectorDelegateP", + "mangledName": "$s17VideosdkWebSocket22FrameCollectorDelegateP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "FrameCollector", + "printedName": "FrameCollector", + "children": [ + { + "kind": "TypeDecl", + "name": "Event", + "printedName": "Event", + "children": [ + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameCollector.Event.Type) -> (Swift.String) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameCollector.Event.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO4textyAESScAEmF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5EventO4textyAESScAEmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "binary", + "printedName": "binary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameCollector.Event.Type) -> (Foundation.Data) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameCollector.Event.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO6binaryyAE10Foundation4DataVcAEmF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5EventO6binaryyAE10Foundation4DataVcAEmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "pong", + "printedName": "pong", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameCollector.Event.Type) -> (Foundation.Data?) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data?) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameCollector.Event.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO4pongyAE10Foundation4DataVSgcAEmF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5EventO4pongyAE10Foundation4DataVSgcAEmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "ping", + "printedName": "ping", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameCollector.Event.Type) -> (Foundation.Data?) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data?) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameCollector.Event.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO4pingyAE10Foundation4DataVSgcAEmF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5EventO4pingyAE10Foundation4DataVSgcAEmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameCollector.Event.Type) -> (Swift.Error) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameCollector.Event.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO5erroryAEs5Error_pcAEmF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5EventO5erroryAEs5Error_pcAEmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameCollector.Event.Type) -> (Swift.String, Swift.UInt16) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.UInt16) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.UInt16)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameCollector.Event.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO6closedyAESS_s6UInt16VtcAEmF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5EventO6closedyAESS_s6UInt16VtcAEmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5EventO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.FrameCollectorDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.FrameCollectorDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameCollectorDelegate", + "printedName": "VideosdkWebSocket.FrameCollectorDelegate", + "usr": "s:17VideosdkWebSocket22FrameCollectorDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.FrameCollectorDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameCollectorDelegate", + "printedName": "VideosdkWebSocket.FrameCollectorDelegate", + "usr": "s:17VideosdkWebSocket22FrameCollectorDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "buffer", + "printedName": "buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvp", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvg", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvs", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvM", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "frameCount", + "printedName": "frameCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket14FrameCollectorC10frameCountSivp", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC10frameCountSivp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC10frameCountSivg", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC10frameCountSivg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC10frameCountSivs", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC10frameCountSivs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC10frameCountSivM", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC10frameCountSivM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isText", + "printedName": "isText", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6isTextSbvp", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6isTextSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6isTextSbvg", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6isTextSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6isTextSbvs", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6isTextSbvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6isTextSbvM", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6isTextSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "needsDecompression", + "printedName": "needsDecompression", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvp", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvg", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvs", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvM", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Frame", + "printedName": "VideosdkWebSocket.Frame", + "usr": "s:17VideosdkWebSocket5FrameV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket14FrameCollectorC3add5frameyAA0D0V_tF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC3add5frameyAA0D0V_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5resetyyF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5resetyyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameCollector", + "printedName": "VideosdkWebSocket.FrameCollector", + "usr": "s:17VideosdkWebSocket14FrameCollectorC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket14FrameCollectorCACycfc", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorCACycfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket14FrameCollectorC", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "FinMask", + "printedName": "FinMask", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket7FinMasks5UInt8Vvp", + "mangledName": "$s17VideosdkWebSocket7FinMasks5UInt8Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "OpCodeMask", + "printedName": "OpCodeMask", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket10OpCodeMasks5UInt8Vvp", + "mangledName": "$s17VideosdkWebSocket10OpCodeMasks5UInt8Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "RSVMask", + "printedName": "RSVMask", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket7RSVMasks5UInt8Vvp", + "mangledName": "$s17VideosdkWebSocket7RSVMasks5UInt8Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "RSV1Mask", + "printedName": "RSV1Mask", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket8RSV1Masks5UInt8Vvp", + "mangledName": "$s17VideosdkWebSocket8RSV1Masks5UInt8Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "MaskMask", + "printedName": "MaskMask", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket04MaskD0s5UInt8Vvp", + "mangledName": "$s17VideosdkWebSocket04MaskD0s5UInt8Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "PayloadLenMask", + "printedName": "PayloadLenMask", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket14PayloadLenMasks5UInt8Vvp", + "mangledName": "$s17VideosdkWebSocket14PayloadLenMasks5UInt8Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "MaxFrameSize", + "printedName": "MaxFrameSize", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12MaxFrameSizeSivp", + "mangledName": "$s17VideosdkWebSocket12MaxFrameSizeSivp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true + }, + { + "kind": "TypeDecl", + "name": "CloseCode", + "printedName": "CloseCode", + "children": [ + { + "kind": "Var", + "name": "normal", + "printedName": "normal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO6normalyA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO6normalyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "goingAway", + "printedName": "goingAway", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO9goingAwayyA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO9goingAwayyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "protocolError", + "printedName": "protocolError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO13protocolErroryA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO13protocolErroryA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "protocolUnhandledType", + "printedName": "protocolUnhandledType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO21protocolUnhandledTypeyA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO21protocolUnhandledTypeyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "noStatusReceived", + "printedName": "noStatusReceived", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO16noStatusReceivedyA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO16noStatusReceivedyA2CmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "encoding", + "printedName": "encoding", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO8encodingyA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO8encodingyA2CmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "policyViolated", + "printedName": "policyViolated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO14policyViolatedyA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO14policyViolatedyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "messageTooBig", + "printedName": "messageTooBig", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO13messageTooBigyA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO13messageTooBigyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket9CloseCodeO8rawValues6UInt16Vvp", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO8rawValues6UInt16Vvp", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket9CloseCodeO8rawValues6UInt16Vvg", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO8rawValues6UInt16Vvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CloseCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket9CloseCodeO8rawValueACSgs6UInt16V_tcfc", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO8rawValueACSgs6UInt16V_tcfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket9CloseCodeO", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt16", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FrameOpCode", + "printedName": "FrameOpCode", + "children": [ + { + "kind": "Var", + "name": "continueFrame", + "printedName": "continueFrame", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameOpCode.Type) -> VideosdkWebSocket.FrameOpCode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameOpCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO08continueD0yA2CmF", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO08continueD0yA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "textFrame", + "printedName": "textFrame", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameOpCode.Type) -> VideosdkWebSocket.FrameOpCode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameOpCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO04textD0yA2CmF", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO04textD0yA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "binaryFrame", + "printedName": "binaryFrame", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameOpCode.Type) -> VideosdkWebSocket.FrameOpCode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameOpCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO06binaryD0yA2CmF", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO06binaryD0yA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "connectionClose", + "printedName": "connectionClose", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameOpCode.Type) -> VideosdkWebSocket.FrameOpCode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameOpCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO15connectionCloseyA2CmF", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO15connectionCloseyA2CmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "ping", + "printedName": "ping", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameOpCode.Type) -> VideosdkWebSocket.FrameOpCode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameOpCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO4pingyA2CmF", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO4pingyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "pong", + "printedName": "pong", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameOpCode.Type) -> VideosdkWebSocket.FrameOpCode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameOpCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO4pongyA2CmF", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO4pongyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameOpCode.Type) -> VideosdkWebSocket.FrameOpCode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameOpCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO7unknownyA2CmF", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO7unknownyA2CmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.FrameOpCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO8rawValues5UInt8Vvp", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO8rawValues5UInt8Vvp", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO8rawValues5UInt8Vvg", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO8rawValues5UInt8Vvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Frame", + "printedName": "Frame", + "children": [ + { + "kind": "Var", + "name": "isFin", + "printedName": "isFin", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket5FrameV5isFinSbvp", + "mangledName": "$s17VideosdkWebSocket5FrameV5isFinSbvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket5FrameV5isFinSbvg", + "mangledName": "$s17VideosdkWebSocket5FrameV5isFinSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "needsDecompression", + "printedName": "needsDecompression", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket5FrameV18needsDecompressionSbvp", + "mangledName": "$s17VideosdkWebSocket5FrameV18needsDecompressionSbvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket5FrameV18needsDecompressionSbvg", + "mangledName": "$s17VideosdkWebSocket5FrameV18needsDecompressionSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isMasked", + "printedName": "isMasked", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket5FrameV8isMaskedSbvp", + "mangledName": "$s17VideosdkWebSocket5FrameV8isMaskedSbvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket5FrameV8isMaskedSbvg", + "mangledName": "$s17VideosdkWebSocket5FrameV8isMaskedSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "opcode", + "printedName": "opcode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket5FrameV6opcodeAA0D6OpCodeOvp", + "mangledName": "$s17VideosdkWebSocket5FrameV6opcodeAA0D6OpCodeOvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket5FrameV6opcodeAA0D6OpCodeOvg", + "mangledName": "$s17VideosdkWebSocket5FrameV6opcodeAA0D6OpCodeOvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "payloadLength", + "printedName": "payloadLength", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket5FrameV13payloadLengths6UInt64Vvp", + "mangledName": "$s17VideosdkWebSocket5FrameV13payloadLengths6UInt64Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket5FrameV13payloadLengths6UInt64Vvg", + "mangledName": "$s17VideosdkWebSocket5FrameV13payloadLengths6UInt64Vvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "payload", + "printedName": "payload", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket5FrameV7payload10Foundation4DataVvp", + "mangledName": "$s17VideosdkWebSocket5FrameV7payload10Foundation4DataVvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket5FrameV7payload10Foundation4DataVvg", + "mangledName": "$s17VideosdkWebSocket5FrameV7payload10Foundation4DataVvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "closeCode", + "printedName": "closeCode", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket5FrameV9closeCodes6UInt16Vvp", + "mangledName": "$s17VideosdkWebSocket5FrameV9closeCodes6UInt16Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket5FrameV9closeCodes6UInt16Vvg", + "mangledName": "$s17VideosdkWebSocket5FrameV9closeCodes6UInt16Vvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(isFin:needsDecompression:isMasked:opcode:payloadLength:payload:closeCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Frame", + "printedName": "VideosdkWebSocket.Frame", + "usr": "s:17VideosdkWebSocket5FrameV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket5FrameV5isFin18needsDecompression0E6Masked6opcode13payloadLength0K09closeCodeACSb_S2bAA0d2OpN0Os6UInt64V10Foundation4DataVs6UInt16Vtcfc", + "mangledName": "$s17VideosdkWebSocket5FrameV5isFin18needsDecompression0E6Masked6opcode13payloadLength0K09closeCodeACSb_S2bAA0d2OpN0Os6UInt64V10Foundation4DataVs6UInt16Vtcfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:17VideosdkWebSocket5FrameV", + "mangledName": "$s17VideosdkWebSocket5FrameV", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "FrameEvent", + "printedName": "FrameEvent", + "children": [ + { + "kind": "Var", + "name": "frame", + "printedName": "frame", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameEvent.Type) -> (VideosdkWebSocket.Frame) -> VideosdkWebSocket.FrameEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Frame) -> VideosdkWebSocket.FrameEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameEvent", + "printedName": "VideosdkWebSocket.FrameEvent", + "usr": "s:17VideosdkWebSocket10FrameEventO" + }, + { + "kind": "TypeNominal", + "name": "Frame", + "printedName": "VideosdkWebSocket.Frame", + "usr": "s:17VideosdkWebSocket5FrameV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameEvent", + "printedName": "VideosdkWebSocket.FrameEvent", + "usr": "s:17VideosdkWebSocket10FrameEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket10FrameEventO5frameyAcA0D0VcACmF", + "mangledName": "$s17VideosdkWebSocket10FrameEventO5frameyAcA0D0VcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameEvent.Type) -> (Swift.Error) -> VideosdkWebSocket.FrameEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> VideosdkWebSocket.FrameEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameEvent", + "printedName": "VideosdkWebSocket.FrameEvent", + "usr": "s:17VideosdkWebSocket10FrameEventO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameEvent", + "printedName": "VideosdkWebSocket.FrameEvent", + "usr": "s:17VideosdkWebSocket10FrameEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket10FrameEventO5erroryACs5Error_pcACmF", + "mangledName": "$s17VideosdkWebSocket10FrameEventO5erroryACs5Error_pcACmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket10FrameEventO", + "mangledName": "$s17VideosdkWebSocket10FrameEventO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "FramerEventClient", + "printedName": "FramerEventClient", + "children": [ + { + "kind": "Function", + "name": "frameProcessed", + "printedName": "frameProcessed(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FrameEvent", + "printedName": "VideosdkWebSocket.FrameEvent", + "usr": "s:17VideosdkWebSocket10FrameEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17FramerEventClientP14frameProcessed5eventyAA05FrameE0O_tF", + "mangledName": "$s17VideosdkWebSocket17FramerEventClientP14frameProcessed5eventyAA05FrameE0O_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.FramerEventClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket17FramerEventClientP", + "mangledName": "$s17VideosdkWebSocket17FramerEventClientP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Framer", + "printedName": "Framer", + "children": [ + { + "kind": "Function", + "name": "add", + "printedName": "add(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6FramerP3add4datay10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket6FramerP3add4datay10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Framer>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FramerEventClient", + "printedName": "VideosdkWebSocket.FramerEventClient", + "usr": "s:17VideosdkWebSocket17FramerEventClientP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6FramerP8register8delegateyAA0D11EventClient_p_tF", + "mangledName": "$s17VideosdkWebSocket6FramerP8register8delegateyAA0D11EventClient_p_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Framer>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createWriteFrame", + "printedName": "createWriteFrame(opcode:payload:isCompressed:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6FramerP16createWriteFrame6opcode7payload12isCompressed10Foundation4DataVAA0G6OpCodeO_AJSbtF", + "mangledName": "$s17VideosdkWebSocket6FramerP16createWriteFrame6opcode7payload12isCompressed10Foundation4DataVAA0G6OpCodeO_AJSbtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Framer>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateCompression", + "printedName": "updateCompression(supports:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6FramerP17updateCompression8supportsySb_tF", + "mangledName": "$s17VideosdkWebSocket6FramerP17updateCompression8supportsySb_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Framer>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "supportsCompression", + "printedName": "supportsCompression()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6FramerP19supportsCompressionSbyF", + "mangledName": "$s17VideosdkWebSocket6FramerP19supportsCompressionSbyF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Framer>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket6FramerP", + "mangledName": "$s17VideosdkWebSocket6FramerP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "WSFramer", + "printedName": "WSFramer", + "children": [ + { + "kind": "Var", + "name": "compressionEnabled", + "printedName": "compressionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket8WSFramerC18compressionEnabledSbvp", + "mangledName": "$s17VideosdkWebSocket8WSFramerC18compressionEnabledSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSFramerC18compressionEnabledSbvg", + "mangledName": "$s17VideosdkWebSocket8WSFramerC18compressionEnabledSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSFramerC18compressionEnabledSbvs", + "mangledName": "$s17VideosdkWebSocket8WSFramerC18compressionEnabledSbvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSFramerC18compressionEnabledSbvM", + "mangledName": "$s17VideosdkWebSocket8WSFramerC18compressionEnabledSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(isServer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WSFramer", + "printedName": "VideosdkWebSocket.WSFramer", + "usr": "s:17VideosdkWebSocket8WSFramerC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket8WSFramerC8isServerACSb_tcfc", + "mangledName": "$s17VideosdkWebSocket8WSFramerC8isServerACSb_tcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "updateCompression", + "printedName": "updateCompression(supports:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSFramerC17updateCompression8supportsySb_tF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC17updateCompression8supportsySb_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "supportsCompression", + "printedName": "supportsCompression()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSFramerC19supportsCompressionSbyF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC19supportsCompressionSbyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "ProcessEvent", + "printedName": "ProcessEvent", + "children": [ + { + "kind": "Var", + "name": "needsMoreData", + "printedName": "needsMoreData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WSFramer.ProcessEvent.Type) -> VideosdkWebSocket.WSFramer.ProcessEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ProcessEvent", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProcessEvent", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO13needsMoreDatayA2EmF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC12ProcessEventO13needsMoreDatayA2EmF", + "moduleName": "VideosdkWebSocket", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "processedFrame", + "printedName": "processedFrame", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WSFramer.ProcessEvent.Type) -> (VideosdkWebSocket.Frame, Swift.Int) -> VideosdkWebSocket.WSFramer.ProcessEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Frame, Swift.Int) -> VideosdkWebSocket.WSFramer.ProcessEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ProcessEvent", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(VideosdkWebSocket.Frame, Swift.Int)", + "children": [ + { + "kind": "TypeNominal", + "name": "Frame", + "printedName": "VideosdkWebSocket.Frame", + "usr": "s:17VideosdkWebSocket5FrameV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProcessEvent", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO14processedFrameyAeA0H0V_SitcAEmF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC12ProcessEventO14processedFrameyAeA0H0V_SitcAEmF", + "moduleName": "VideosdkWebSocket", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WSFramer.ProcessEvent.Type) -> (Swift.Error) -> VideosdkWebSocket.WSFramer.ProcessEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> VideosdkWebSocket.WSFramer.ProcessEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ProcessEvent", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProcessEvent", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO6failedyAEs5Error_pcAEmF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC12ProcessEventO6failedyAEs5Error_pcAEmF", + "moduleName": "VideosdkWebSocket", + "fixedbinaryorder": 2 + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO", + "mangledName": "$s17VideosdkWebSocket8WSFramerC12ProcessEventO", + "moduleName": "VideosdkWebSocket", + "isEnumExhaustive": true + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSFramerC3add4datay10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC3add4datay10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FramerEventClient", + "printedName": "VideosdkWebSocket.FramerEventClient", + "usr": "s:17VideosdkWebSocket17FramerEventClientP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSFramerC8register8delegateyAA17FramerEventClient_p_tF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC8register8delegateyAA17FramerEventClient_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createWriteFrame", + "printedName": "createWriteFrame(opcode:payload:isCompressed:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSFramerC16createWriteFrame6opcode7payload12isCompressed10Foundation4DataVAA0G6OpCodeO_AJSbtF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC16createWriteFrame6opcode7payload12isCompressed10Foundation4DataVAA0G6OpCodeO_AJSbtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket8WSFramerC", + "mangledName": "$s17VideosdkWebSocket8WSFramerC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Framer", + "printedName": "Framer", + "usr": "s:17VideosdkWebSocket6FramerP", + "mangledName": "$s17VideosdkWebSocket6FramerP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MyWSArrayType", + "printedName": "MyWSArrayType", + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket13MyWSArrayTypeP", + "mangledName": "$s17VideosdkWebSocket13MyWSArrayTypeP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "writeUint16", + "printedName": "writeUint16(_:offset:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket11writeUint16_6offset5valueySays5UInt8VGz_Sis6UInt16VtF", + "mangledName": "$s17VideosdkWebSocket11writeUint16_6offset5valueySays5UInt8VGz_Sis6UInt16VtF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "writeUint32", + "printedName": "writeUint32(_:offset:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket11writeUint32_6offset5valueySays5UInt8VGz_Sis6UInt32VtF", + "mangledName": "$s17VideosdkWebSocket11writeUint32_6offset5valueySays5UInt8VGz_Sis6UInt32VtF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "writeUint64", + "printedName": "writeUint64(_:offset:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket11writeUint64_6offset5valueySays5UInt8VGz_Sis6UInt64VtF", + "mangledName": "$s17VideosdkWebSocket11writeUint64_6offset5valueySays5UInt8VGz_Sis6UInt64VtF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HTTPUpgradeError", + "printedName": "HTTPUpgradeError", + "children": [ + { + "kind": "Var", + "name": "notAnUpgrade", + "printedName": "notAnUpgrade", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.HTTPUpgradeError.Type) -> (Swift.Int, [Swift.String : Swift.String]) -> VideosdkWebSocket.HTTPUpgradeError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int, [Swift.String : Swift.String]) -> VideosdkWebSocket.HTTPUpgradeError", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPUpgradeError", + "printedName": "VideosdkWebSocket.HTTPUpgradeError", + "usr": "s:17VideosdkWebSocket16HTTPUpgradeErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Int, [Swift.String : Swift.String])", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.HTTPUpgradeError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPUpgradeError", + "printedName": "VideosdkWebSocket.HTTPUpgradeError", + "usr": "s:17VideosdkWebSocket16HTTPUpgradeErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket16HTTPUpgradeErrorO12notAnUpgradeyACSi_SDyS2SGtcACmF", + "mangledName": "$s17VideosdkWebSocket16HTTPUpgradeErrorO12notAnUpgradeyACSi_SDyS2SGtcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "invalidData", + "printedName": "invalidData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.HTTPUpgradeError.Type) -> VideosdkWebSocket.HTTPUpgradeError", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPUpgradeError", + "printedName": "VideosdkWebSocket.HTTPUpgradeError", + "usr": "s:17VideosdkWebSocket16HTTPUpgradeErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.HTTPUpgradeError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPUpgradeError", + "printedName": "VideosdkWebSocket.HTTPUpgradeError", + "usr": "s:17VideosdkWebSocket16HTTPUpgradeErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket16HTTPUpgradeErrorO11invalidDatayA2CmF", + "mangledName": "$s17VideosdkWebSocket16HTTPUpgradeErrorO11invalidDatayA2CmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket16HTTPUpgradeErrorO", + "mangledName": "$s17VideosdkWebSocket16HTTPUpgradeErrorO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "HTTPWSHeader", + "printedName": "HTTPWSHeader", + "children": [ + { + "kind": "Var", + "name": "upgradeName", + "printedName": "upgradeName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV11upgradeNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV11upgradeNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV11upgradeNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV11upgradeNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "upgradeValue", + "printedName": "upgradeValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV12upgradeValueSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV12upgradeValueSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV12upgradeValueSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV12upgradeValueSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hostName", + "printedName": "hostName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV8hostNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV8hostNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV8hostNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV8hostNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectionName", + "printedName": "connectionName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV14connectionNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV14connectionNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV14connectionNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV14connectionNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectionValue", + "printedName": "connectionValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV15connectionValueSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV15connectionValueSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV15connectionValueSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV15connectionValueSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "protocolName", + "printedName": "protocolName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV12protocolNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV12protocolNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV12protocolNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV12protocolNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "versionName", + "printedName": "versionName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV11versionNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV11versionNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV11versionNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV11versionNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "versionValue", + "printedName": "versionValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV12versionValueSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV12versionValueSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV12versionValueSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV12versionValueSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extensionName", + "printedName": "extensionName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV13extensionNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV13extensionNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV13extensionNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV13extensionNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "keyName", + "printedName": "keyName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV7keyNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV7keyNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV7keyNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV7keyNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "originName", + "printedName": "originName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV10originNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV10originNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV10originNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV10originNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "acceptName", + "printedName": "acceptName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV10acceptNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV10acceptNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV10acceptNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV10acceptNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "switchProtocolCode", + "printedName": "switchProtocolCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV18switchProtocolCodeSivpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV18switchProtocolCodeSivpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV18switchProtocolCodeSivgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV18switchProtocolCodeSivgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultSSLSchemes", + "printedName": "defaultSSLSchemes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV17defaultSSLSchemesSaySSGvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV17defaultSSLSchemesSaySSGvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV17defaultSSLSchemesSaySSGvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV17defaultSSLSchemesSaySSGvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createUpgrade", + "printedName": "createUpgrade(request:supportsCompression:secKeyValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV13createUpgrade7request19supportsCompression11secKeyValue10Foundation10URLRequestVAJ_SbSStFZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV13createUpgrade7request19supportsCompression11secKeyValue10Foundation10URLRequestVAJ_SbSStFZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateWebSocketKey", + "printedName": "generateWebSocketKey()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV08generatebC3KeySSyFZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV08generatebC3KeySSyFZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPWSHeader", + "printedName": "VideosdkWebSocket.HTTPWSHeader", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderVACycfc", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderVACycfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "HTTPEvent", + "printedName": "HTTPEvent", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.HTTPEvent.Type) -> ([Swift.String : Swift.String]) -> VideosdkWebSocket.HTTPEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Swift.String]) -> VideosdkWebSocket.HTTPEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.HTTPEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9HTTPEventO7successyACSDyS2SGcACmF", + "mangledName": "$s17VideosdkWebSocket9HTTPEventO7successyACSDyS2SGcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "failure", + "printedName": "failure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.HTTPEvent.Type) -> (Swift.Error) -> VideosdkWebSocket.HTTPEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> VideosdkWebSocket.HTTPEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.HTTPEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9HTTPEventO7failureyACs5Error_pcACmF", + "mangledName": "$s17VideosdkWebSocket9HTTPEventO7failureyACs5Error_pcACmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket9HTTPEventO", + "mangledName": "$s17VideosdkWebSocket9HTTPEventO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "HTTPHandlerDelegate", + "printedName": "HTTPHandlerDelegate", + "children": [ + { + "kind": "Function", + "name": "didReceiveHTTP", + "printedName": "didReceiveHTTP(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP14didReceiveHTTP5eventyAA9HTTPEventO_tF", + "mangledName": "$s17VideosdkWebSocket19HTTPHandlerDelegateP14didReceiveHTTP5eventyAA9HTTPEventO_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPHandlerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP", + "mangledName": "$s17VideosdkWebSocket19HTTPHandlerDelegateP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "HTTPHandler", + "printedName": "HTTPHandler", + "children": [ + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPHandlerDelegate", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket11HTTPHandlerP8register8delegateyAA0D8Delegate_p_tF", + "mangledName": "$s17VideosdkWebSocket11HTTPHandlerP8register8delegateyAA0D8Delegate_p_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "convert", + "printedName": "convert(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket11HTTPHandlerP7convert7request10Foundation4DataVAF10URLRequestV_tF", + "mangledName": "$s17VideosdkWebSocket11HTTPHandlerP7convert7request10Foundation4DataVAF10URLRequestV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parse", + "printedName": "parse(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket11HTTPHandlerP5parse4dataSi10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket11HTTPHandlerP5parse4dataSi10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket11HTTPHandlerP", + "mangledName": "$s17VideosdkWebSocket11HTTPHandlerP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "HTTPServerDelegate", + "printedName": "HTTPServerDelegate", + "children": [ + { + "kind": "Function", + "name": "didReceive", + "printedName": "didReceive(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18HTTPServerDelegateP10didReceive5eventyAA9HTTPEventO_tF", + "mangledName": "$s17VideosdkWebSocket18HTTPServerDelegateP10didReceive5eventyAA9HTTPEventO_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPServerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket18HTTPServerDelegateP", + "mangledName": "$s17VideosdkWebSocket18HTTPServerDelegateP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "HTTPServerHandler", + "printedName": "HTTPServerHandler", + "children": [ + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPServerDelegate", + "printedName": "VideosdkWebSocket.HTTPServerDelegate", + "usr": "s:17VideosdkWebSocket18HTTPServerDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17HTTPServerHandlerP8register8delegateyAA0D8Delegate_p_tF", + "mangledName": "$s17VideosdkWebSocket17HTTPServerHandlerP8register8delegateyAA0D8Delegate_p_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPServerHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parse", + "printedName": "parse(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17HTTPServerHandlerP5parse4datay10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket17HTTPServerHandlerP5parse4datay10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPServerHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(headers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17HTTPServerHandlerP14createResponse7headers10Foundation4DataVSDyS2SG_tF", + "mangledName": "$s17VideosdkWebSocket17HTTPServerHandlerP14createResponse7headers10Foundation4DataVSDyS2SG_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPServerHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket17HTTPServerHandlerP", + "mangledName": "$s17VideosdkWebSocket17HTTPServerHandlerP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "URLParts", + "printedName": "URLParts", + "children": [ + { + "kind": "Var", + "name": "port", + "printedName": "port", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket8URLPartsV4portSivp", + "mangledName": "$s17VideosdkWebSocket8URLPartsV4portSivp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8URLPartsV4portSivg", + "mangledName": "$s17VideosdkWebSocket8URLPartsV4portSivg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "host", + "printedName": "host", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket8URLPartsV4hostSSvp", + "mangledName": "$s17VideosdkWebSocket8URLPartsV4hostSSvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8URLPartsV4hostSSvg", + "mangledName": "$s17VideosdkWebSocket8URLPartsV4hostSSvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isTLS", + "printedName": "isTLS", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket8URLPartsV5isTLSSbvp", + "mangledName": "$s17VideosdkWebSocket8URLPartsV5isTLSSbvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8URLPartsV5isTLSSbvg", + "mangledName": "$s17VideosdkWebSocket8URLPartsV5isTLSSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(port:host:isTLS:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URLParts", + "printedName": "VideosdkWebSocket.URLParts", + "usr": "s:17VideosdkWebSocket8URLPartsV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket8URLPartsV4port4host5isTLSACSi_SSSbtcfc", + "mangledName": "$s17VideosdkWebSocket8URLPartsV4port4host5isTLSACSi_SSSbtcfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:17VideosdkWebSocket8URLPartsV", + "mangledName": "$s17VideosdkWebSocket8URLPartsV", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StringHTTPHandler", + "printedName": "StringHTTPHandler", + "children": [ + { + "kind": "Var", + "name": "buffer", + "printedName": "buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvp", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvg", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvs", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvM", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPHandlerDelegate", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPHandlerDelegate", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "StringHTTPHandler", + "printedName": "VideosdkWebSocket.StringHTTPHandler", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerCACycfc", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerCACycfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "convert", + "printedName": "convert(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC7convert7request10Foundation4DataVAF10URLRequestV_tF", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC7convert7request10Foundation4DataVAF10URLRequestV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parse", + "printedName": "parse(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC5parse4dataSi10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC5parse4dataSi10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseContent", + "printedName": "parseContent(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC12parseContent4dataSb10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC12parseContent4dataSb10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPHandlerDelegate", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC8register8delegateyAA0E8Delegate_p_tF", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC8register8delegateyAA0E8Delegate_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "HTTPHandler", + "printedName": "HTTPHandler", + "usr": "s:17VideosdkWebSocket11HTTPHandlerP", + "mangledName": "$s17VideosdkWebSocket11HTTPHandlerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "TypeDecl", + "name": "FoundationSecurityError", + "printedName": "FoundationSecurityError", + "children": [ + { + "kind": "Var", + "name": "invalidRequest", + "printedName": "invalidRequest", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FoundationSecurityError.Type) -> VideosdkWebSocket.FoundationSecurityError", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationSecurityError", + "printedName": "VideosdkWebSocket.FoundationSecurityError", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FoundationSecurityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationSecurityError", + "printedName": "VideosdkWebSocket.FoundationSecurityError", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO14invalidRequestyA2CmF", + "mangledName": "$s17VideosdkWebSocket23FoundationSecurityErrorO14invalidRequestyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FoundationSecurityError", + "printedName": "VideosdkWebSocket.FoundationSecurityError", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO" + }, + { + "kind": "TypeNominal", + "name": "FoundationSecurityError", + "printedName": "VideosdkWebSocket.FoundationSecurityError", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s17VideosdkWebSocket23FoundationSecurityErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO9hashValueSivp", + "mangledName": "$s17VideosdkWebSocket23FoundationSecurityErrorO9hashValueSivp", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO9hashValueSivg", + "mangledName": "$s17VideosdkWebSocket23FoundationSecurityErrorO9hashValueSivg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s17VideosdkWebSocket23FoundationSecurityErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO", + "mangledName": "$s17VideosdkWebSocket23FoundationSecurityErrorO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FoundationSecurity", + "printedName": "FoundationSecurity", + "children": [ + { + "kind": "Var", + "name": "allowSelfSigned", + "printedName": "allowSelfSigned", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvp", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvg", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvs", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvM", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(allowSelfSigned:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationSecurity", + "printedName": "VideosdkWebSocket.FoundationSecurity", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedACSb_tcfc", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedACSb_tcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "evaluateTrust", + "printedName": "evaluateTrust(trust:domain:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SecTrust", + "printedName": "Security.SecTrust", + "usr": "c:@T@SecTrustRef" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.PinningState) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PinningState", + "printedName": "VideosdkWebSocket.PinningState", + "usr": "s:17VideosdkWebSocket12PinningStateO" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC13evaluateTrust5trust6domain10completionySo03SecG3Refa_SSSgyAA12PinningStateOXEtF", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC13evaluateTrust5trust6domain10completionySo03SecG3Refa_SSSgyAA12PinningStateOXEtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(headers:key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC8validate7headers3keys5Error_pSgSDyS2SG_SStF", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC8validate7headers3keys5Error_pSgSDyS2SG_SStF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CertificatePinning", + "printedName": "CertificatePinning", + "usr": "s:17VideosdkWebSocket18CertificatePinningP", + "mangledName": "$s17VideosdkWebSocket18CertificatePinningP" + }, + { + "kind": "Conformance", + "name": "HeaderValidator", + "printedName": "HeaderValidator", + "usr": "s:17VideosdkWebSocket15HeaderValidatorP", + "mangledName": "$s17VideosdkWebSocket15HeaderValidatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SecurityErrorCode", + "printedName": "SecurityErrorCode", + "children": [ + { + "kind": "Var", + "name": "acceptFailed", + "printedName": "acceptFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.SecurityErrorCode.Type) -> VideosdkWebSocket.SecurityErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "SecurityErrorCode", + "printedName": "VideosdkWebSocket.SecurityErrorCode", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.SecurityErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SecurityErrorCode", + "printedName": "VideosdkWebSocket.SecurityErrorCode", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO12acceptFailedyA2CmF", + "mangledName": "$s17VideosdkWebSocket17SecurityErrorCodeO12acceptFailedyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "pinningFailed", + "printedName": "pinningFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.SecurityErrorCode.Type) -> VideosdkWebSocket.SecurityErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "SecurityErrorCode", + "printedName": "VideosdkWebSocket.SecurityErrorCode", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.SecurityErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SecurityErrorCode", + "printedName": "VideosdkWebSocket.SecurityErrorCode", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO13pinningFailedyA2CmF", + "mangledName": "$s17VideosdkWebSocket17SecurityErrorCodeO13pinningFailedyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.SecurityErrorCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "SecurityErrorCode", + "printedName": "VideosdkWebSocket.SecurityErrorCode", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO8rawValueACSgs6UInt16V_tcfc", + "mangledName": "$s17VideosdkWebSocket17SecurityErrorCodeO8rawValueACSgs6UInt16V_tcfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO8rawValues6UInt16Vvp", + "mangledName": "$s17VideosdkWebSocket17SecurityErrorCodeO8rawValues6UInt16Vvp", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO8rawValues6UInt16Vvg", + "mangledName": "$s17VideosdkWebSocket17SecurityErrorCodeO8rawValues6UInt16Vvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO", + "mangledName": "$s17VideosdkWebSocket17SecurityErrorCodeO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "UInt16", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PinningState", + "printedName": "PinningState", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.PinningState.Type) -> VideosdkWebSocket.PinningState", + "children": [ + { + "kind": "TypeNominal", + "name": "PinningState", + "printedName": "VideosdkWebSocket.PinningState", + "usr": "s:17VideosdkWebSocket12PinningStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.PinningState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PinningState", + "printedName": "VideosdkWebSocket.PinningState", + "usr": "s:17VideosdkWebSocket12PinningStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket12PinningStateO7successyA2CmF", + "mangledName": "$s17VideosdkWebSocket12PinningStateO7successyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.PinningState.Type) -> (CoreFoundation.CFError?) -> VideosdkWebSocket.PinningState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CoreFoundation.CFError?) -> VideosdkWebSocket.PinningState", + "children": [ + { + "kind": "TypeNominal", + "name": "PinningState", + "printedName": "VideosdkWebSocket.PinningState", + "usr": "s:17VideosdkWebSocket12PinningStateO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreFoundation.CFError?", + "children": [ + { + "kind": "TypeNominal", + "name": "CFError", + "printedName": "CoreFoundation.CFError", + "usr": "c:@T@CFErrorRef" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.PinningState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PinningState", + "printedName": "VideosdkWebSocket.PinningState", + "usr": "s:17VideosdkWebSocket12PinningStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket12PinningStateO6failedyACSo10CFErrorRefaSgcACmF", + "mangledName": "$s17VideosdkWebSocket12PinningStateO6failedyACSo10CFErrorRefaSgcACmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket12PinningStateO", + "mangledName": "$s17VideosdkWebSocket12PinningStateO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "CertificatePinning", + "printedName": "CertificatePinning", + "children": [ + { + "kind": "Function", + "name": "evaluateTrust", + "printedName": "evaluateTrust(trust:domain:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SecTrust", + "printedName": "Security.SecTrust", + "usr": "c:@T@SecTrustRef" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.PinningState) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PinningState", + "printedName": "VideosdkWebSocket.PinningState", + "usr": "s:17VideosdkWebSocket12PinningStateO" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18CertificatePinningP13evaluateTrust5trust6domain10completionySo03SecG3Refa_SSSgyAA0E5StateOXEtF", + "mangledName": "$s17VideosdkWebSocket18CertificatePinningP13evaluateTrust5trust6domain10completionySo03SecG3Refa_SSSgyAA0E5StateOXEtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.CertificatePinning>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket18CertificatePinningP", + "mangledName": "$s17VideosdkWebSocket18CertificatePinningP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HeaderValidator", + "printedName": "HeaderValidator", + "children": [ + { + "kind": "Function", + "name": "validate", + "printedName": "validate(headers:key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket15HeaderValidatorP8validate7headers3keys5Error_pSgSDyS2SG_SStF", + "mangledName": "$s17VideosdkWebSocket15HeaderValidatorP8validate7headers3keys5Error_pSgSDyS2SG_SStF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HeaderValidator>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket15HeaderValidatorP", + "mangledName": "$s17VideosdkWebSocket15HeaderValidatorP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ConnectionEvent", + "printedName": "ConnectionEvent", + "children": [ + { + "kind": "Var", + "name": "connected", + "printedName": "connected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent.Type) -> ([Swift.String : Swift.String]) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Swift.String]) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionEventO9connectedyACSDyS2SGcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO9connectedyACSDyS2SGcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "disconnected", + "printedName": "disconnected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent.Type) -> (Swift.String, Swift.UInt16) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.UInt16) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.UInt16)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionEventO12disconnectedyACSS_s6UInt16VtcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO12disconnectedyACSS_s6UInt16VtcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent.Type) -> (Swift.String) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionEventO4textyACSScACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO4textyACSScACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "binary", + "printedName": "binary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent.Type) -> (Foundation.Data) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionEventO6binaryyAC10Foundation4DataVcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO6binaryyAC10Foundation4DataVcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "pong", + "printedName": "pong", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent.Type) -> (Foundation.Data?) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data?) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionEventO4pongyAC10Foundation4DataVSgcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO4pongyAC10Foundation4DataVSgcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "ping", + "printedName": "ping", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent.Type) -> (Foundation.Data?) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data?) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionEventO4pingyAC10Foundation4DataVSgcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO4pingyAC10Foundation4DataVSgcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent.Type) -> (Swift.Error) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionEventO5erroryACs5Error_pcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO5erroryACs5Error_pcACmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket15ConnectionEventO", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Connection", + "printedName": "Connection", + "children": [ + { + "kind": "Function", + "name": "write", + "printedName": "write(data:opcode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket10ConnectionP5write4data6opcodey10Foundation4DataV_AA11FrameOpCodeOtF", + "mangledName": "$s17VideosdkWebSocket10ConnectionP5write4data6opcodey10Foundation4DataV_AA11FrameOpCodeOtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Connection>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket10ConnectionP", + "mangledName": "$s17VideosdkWebSocket10ConnectionP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "ConnectionDelegate", + "printedName": "ConnectionDelegate", + "children": [ + { + "kind": "Function", + "name": "didReceive", + "printedName": "didReceive(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18ConnectionDelegateP10didReceive5eventyAA11ServerEventO_tF", + "mangledName": "$s17VideosdkWebSocket18ConnectionDelegateP10didReceive5eventyAA11ServerEventO_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.ConnectionDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket18ConnectionDelegateP", + "mangledName": "$s17VideosdkWebSocket18ConnectionDelegateP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "ServerEvent", + "printedName": "ServerEvent", + "children": [ + { + "kind": "Var", + "name": "connected", + "printedName": "connected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent.Type) -> (VideosdkWebSocket.Connection, [Swift.String : Swift.String]) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Connection, [Swift.String : Swift.String]) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(VideosdkWebSocket.Connection, [Swift.String : Swift.String])", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "VideosdkWebSocket.Connection", + "usr": "s:17VideosdkWebSocket10ConnectionP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ServerEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11ServerEventO9connectedyAcA10Connection_p_SDyS2SGtcACmF", + "mangledName": "$s17VideosdkWebSocket11ServerEventO9connectedyAcA10Connection_p_SDyS2SGtcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "disconnected", + "printedName": "disconnected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent.Type) -> (VideosdkWebSocket.Connection, Swift.String, Swift.UInt16) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Connection, Swift.String, Swift.UInt16) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(VideosdkWebSocket.Connection, Swift.String, Swift.UInt16)", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "VideosdkWebSocket.Connection", + "usr": "s:17VideosdkWebSocket10ConnectionP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ServerEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11ServerEventO12disconnectedyAcA10Connection_p_SSs6UInt16VtcACmF", + "mangledName": "$s17VideosdkWebSocket11ServerEventO12disconnectedyAcA10Connection_p_SSs6UInt16VtcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent.Type) -> (VideosdkWebSocket.Connection, Swift.String) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Connection, Swift.String) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(VideosdkWebSocket.Connection, Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "VideosdkWebSocket.Connection", + "usr": "s:17VideosdkWebSocket10ConnectionP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ServerEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11ServerEventO4textyAcA10Connection_p_SStcACmF", + "mangledName": "$s17VideosdkWebSocket11ServerEventO4textyAcA10Connection_p_SStcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "binary", + "printedName": "binary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent.Type) -> (VideosdkWebSocket.Connection, Foundation.Data) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Connection, Foundation.Data) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(VideosdkWebSocket.Connection, Foundation.Data)", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "VideosdkWebSocket.Connection", + "usr": "s:17VideosdkWebSocket10ConnectionP" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ServerEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11ServerEventO6binaryyAcA10Connection_p_10Foundation4DataVtcACmF", + "mangledName": "$s17VideosdkWebSocket11ServerEventO6binaryyAcA10Connection_p_10Foundation4DataVtcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "pong", + "printedName": "pong", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent.Type) -> (VideosdkWebSocket.Connection, Foundation.Data?) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Connection, Foundation.Data?) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(VideosdkWebSocket.Connection, Foundation.Data?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "VideosdkWebSocket.Connection", + "usr": "s:17VideosdkWebSocket10ConnectionP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ServerEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11ServerEventO4pongyAcA10Connection_p_10Foundation4DataVSgtcACmF", + "mangledName": "$s17VideosdkWebSocket11ServerEventO4pongyAcA10Connection_p_10Foundation4DataVSgtcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "ping", + "printedName": "ping", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent.Type) -> (VideosdkWebSocket.Connection, Foundation.Data?) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Connection, Foundation.Data?) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(VideosdkWebSocket.Connection, Foundation.Data?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "VideosdkWebSocket.Connection", + "usr": "s:17VideosdkWebSocket10ConnectionP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ServerEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11ServerEventO4pingyAcA10Connection_p_10Foundation4DataVSgtcACmF", + "mangledName": "$s17VideosdkWebSocket11ServerEventO4pingyAcA10Connection_p_10Foundation4DataVSgtcACmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket11ServerEventO", + "mangledName": "$s17VideosdkWebSocket11ServerEventO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Server", + "printedName": "Server", + "children": [ + { + "kind": "Function", + "name": "start", + "printedName": "start(address:port:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6ServerP5start7address4ports5Error_pSgSS_s6UInt16VtF", + "mangledName": "$s17VideosdkWebSocket6ServerP5start7address4ports5Error_pSgSS_s6UInt16VtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Server>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket6ServerP", + "mangledName": "$s17VideosdkWebSocket6ServerP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "TypeDecl", + "name": "WebSocketServer", + "printedName": "WebSocketServer", + "children": [ + { + "kind": "Var", + "name": "onEvent", + "printedName": "onEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.ServerEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvp", + "mangledName": "$s17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.ServerEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvg", + "mangledName": "$s17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.ServerEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvs", + "mangledName": "$s17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvM", + "mangledName": "$s17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketServer", + "printedName": "VideosdkWebSocket.WebSocketServer", + "usr": "s:17VideosdkWebSocket0bC6ServerC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket0bC6ServerCACycfc", + "mangledName": "$s17VideosdkWebSocket0bC6ServerCACycfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start(address:port:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ServerC5start7address4ports5Error_pSgSS_s6UInt16VtF", + "mangledName": "$s17VideosdkWebSocket0bC6ServerC5start7address4ports5Error_pSgSS_s6UInt16VtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "didReceive", + "printedName": "didReceive(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ServerC10didReceive5eventyAA0D5EventO_tF", + "mangledName": "$s17VideosdkWebSocket0bC6ServerC10didReceive5eventyAA0D5EventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket0bC6ServerC", + "mangledName": "$s17VideosdkWebSocket0bC6ServerC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "intro_Macosx": "10.14", + "intro_iOS": "12.0", + "intro_tvOS": "12.0", + "intro_watchOS": "5.0", + "declAttributes": [ + "AccessControl", + "Available", + "Available", + "Available", + "Available", + "Available", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Server", + "printedName": "Server", + "usr": "s:17VideosdkWebSocket6ServerP", + "mangledName": "$s17VideosdkWebSocket6ServerP" + }, + { + "kind": "Conformance", + "name": "ConnectionDelegate", + "printedName": "ConnectionDelegate", + "usr": "s:17VideosdkWebSocket18ConnectionDelegateP", + "mangledName": "$s17VideosdkWebSocket18ConnectionDelegateP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ServerConnection", + "printedName": "ServerConnection", + "children": [ + { + "kind": "Var", + "name": "transport", + "printedName": "transport", + "children": [ + { + "kind": "TypeNominal", + "name": "TCPTransport", + "printedName": "VideosdkWebSocket.TCPTransport", + "usr": "s:17VideosdkWebSocket12TCPTransportC" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket16ServerConnectionC9transportAA12TCPTransportCvp", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC9transportAA12TCPTransportCvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TCPTransport", + "printedName": "VideosdkWebSocket.TCPTransport", + "usr": "s:17VideosdkWebSocket12TCPTransportC" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC9transportAA12TCPTransportCvg", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC9transportAA12TCPTransportCvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "onEvent", + "printedName": "onEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.ConnectionEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvp", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.ConnectionEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvg", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.ConnectionEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvs", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvM", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.ConnectionDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.ConnectionDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionDelegate", + "printedName": "VideosdkWebSocket.ConnectionDelegate", + "usr": "s:17VideosdkWebSocket18ConnectionDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.ConnectionDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionDelegate", + "printedName": "VideosdkWebSocket.ConnectionDelegate", + "usr": "s:17VideosdkWebSocket18ConnectionDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket16ServerConnectionC4uuidSSvp", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC4uuidSSvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC4uuidSSvg", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC4uuidSSvg", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(transport:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerConnection", + "printedName": "VideosdkWebSocket.ServerConnection", + "usr": "s:17VideosdkWebSocket16ServerConnectionC" + }, + { + "kind": "TypeNominal", + "name": "TCPTransport", + "printedName": "VideosdkWebSocket.TCPTransport", + "usr": "s:17VideosdkWebSocket12TCPTransportC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC9transportAcA12TCPTransportC_tcfc", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC9transportAcA12TCPTransportC_tcfc", + "moduleName": "VideosdkWebSocket", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:opcode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket16ServerConnectionC5write4data6opcodey10Foundation4DataV_AA11FrameOpCodeOtF", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC5write4data6opcodey10Foundation4DataV_AA11FrameOpCodeOtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "connectionChanged", + "printedName": "connectionChanged(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket16ServerConnectionC17connectionChanged5stateyAA0E5StateO_tF", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC17connectionChanged5stateyAA0E5StateO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "didReceive", + "printedName": "didReceive(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket16ServerConnectionC10didReceive5eventyAA9HTTPEventO_tF", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC10didReceive5eventyAA9HTTPEventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "frameProcessed", + "printedName": "frameProcessed(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FrameEvent", + "printedName": "VideosdkWebSocket.FrameEvent", + "usr": "s:17VideosdkWebSocket10FrameEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket16ServerConnectionC14frameProcessed5eventyAA10FrameEventO_tF", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC14frameProcessed5eventyAA10FrameEventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "didForm", + "printedName": "didForm(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket16ServerConnectionC7didForm5eventyAA14FrameCollectorC5EventO_tF", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC7didForm5eventyAA14FrameCollectorC5EventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decompress", + "printedName": "decompress(data:isFinal:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket16ServerConnectionC10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket16ServerConnectionC", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "intro_Macosx": "10.14", + "intro_iOS": "12.0", + "intro_tvOS": "12.0", + "intro_watchOS": "5.0", + "declAttributes": [ + "AccessControl", + "Available", + "Available", + "Available", + "Available" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Connection", + "printedName": "Connection", + "usr": "s:17VideosdkWebSocket10ConnectionP", + "mangledName": "$s17VideosdkWebSocket10ConnectionP" + }, + { + "kind": "Conformance", + "name": "HTTPServerDelegate", + "printedName": "HTTPServerDelegate", + "usr": "s:17VideosdkWebSocket18HTTPServerDelegateP", + "mangledName": "$s17VideosdkWebSocket18HTTPServerDelegateP" + }, + { + "kind": "Conformance", + "name": "FramerEventClient", + "printedName": "FramerEventClient", + "usr": "s:17VideosdkWebSocket17FramerEventClientP", + "mangledName": "$s17VideosdkWebSocket17FramerEventClientP" + }, + { + "kind": "Conformance", + "name": "FrameCollectorDelegate", + "printedName": "FrameCollectorDelegate", + "usr": "s:17VideosdkWebSocket22FrameCollectorDelegateP", + "mangledName": "$s17VideosdkWebSocket22FrameCollectorDelegateP" + }, + { + "kind": "Conformance", + "name": "TransportEventClient", + "printedName": "TransportEventClient", + "usr": "s:17VideosdkWebSocket20TransportEventClientP", + "mangledName": "$s17VideosdkWebSocket20TransportEventClientP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ErrorType", + "printedName": "ErrorType", + "children": [ + { + "kind": "Var", + "name": "compressionError", + "printedName": "compressionError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ErrorType.Type) -> VideosdkWebSocket.ErrorType", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ErrorType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9ErrorTypeO011compressionD0yA2CmF", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO011compressionD0yA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "securityError", + "printedName": "securityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ErrorType.Type) -> VideosdkWebSocket.ErrorType", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ErrorType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9ErrorTypeO08securityD0yA2CmF", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO08securityD0yA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "protocolError", + "printedName": "protocolError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ErrorType.Type) -> VideosdkWebSocket.ErrorType", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ErrorType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9ErrorTypeO08protocolD0yA2CmF", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO08protocolD0yA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "serverError", + "printedName": "serverError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ErrorType.Type) -> VideosdkWebSocket.ErrorType", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ErrorType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9ErrorTypeO06serverD0yA2CmF", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO06serverD0yA2CmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket9ErrorTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO2eeoiySbAC_ACtFZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket9ErrorTypeO9hashValueSivp", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO9hashValueSivp", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket9ErrorTypeO9hashValueSivg", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO9hashValueSivg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket9ErrorTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO4hash4intoys6HasherVz_tF", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket9ErrorTypeO", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WSError", + "printedName": "WSError", + "children": [ + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket7WSErrorV4typeAA9ErrorTypeOvp", + "mangledName": "$s17VideosdkWebSocket7WSErrorV4typeAA9ErrorTypeOvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket7WSErrorV4typeAA9ErrorTypeOvg", + "mangledName": "$s17VideosdkWebSocket7WSErrorV4typeAA9ErrorTypeOvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket7WSErrorV7messageSSvp", + "mangledName": "$s17VideosdkWebSocket7WSErrorV7messageSSvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket7WSErrorV7messageSSvg", + "mangledName": "$s17VideosdkWebSocket7WSErrorV7messageSSvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket7WSErrorV4codes6UInt16Vvp", + "mangledName": "$s17VideosdkWebSocket7WSErrorV4codes6UInt16Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket7WSErrorV4codes6UInt16Vvg", + "mangledName": "$s17VideosdkWebSocket7WSErrorV4codes6UInt16Vvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(type:message:code:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WSError", + "printedName": "VideosdkWebSocket.WSError", + "usr": "s:17VideosdkWebSocket7WSErrorV" + }, + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket7WSErrorV4type7message4codeAcA9ErrorTypeO_SSs6UInt16Vtcfc", + "mangledName": "$s17VideosdkWebSocket7WSErrorV4type7message4codeAcA9ErrorTypeO_SSs6UInt16Vtcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:17VideosdkWebSocket7WSErrorV", + "mangledName": "$s17VideosdkWebSocket7WSErrorV", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WebSocketClient", + "printedName": "WebSocketClient", + "children": [ + { + "kind": "Function", + "name": "connect", + "printedName": "connect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientP7connectyyF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP7connectyyF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect(closeCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientP10disconnect9closeCodeys6UInt16V_tF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP10disconnect9closeCodeys6UInt16V_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(string:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientP5write6string10completionySS_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP5write6string10completionySS_yycSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(stringData:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientP5write10stringData10completiony10Foundation0G0V_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP5write10stringData10completiony10Foundation0G0V_yycSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientP5write4data10completiony10Foundation4DataV_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP5write4data10completiony10Foundation4DataV_yycSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(ping:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientP5write4ping10completiony10Foundation4DataV_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP5write4ping10completiony10Foundation4DataV_yycSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(pong:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientP5write4pong10completiony10Foundation4DataV_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP5write4pong10completiony10Foundation4DataV_yycSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientPAAE5write6stringySS_tF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientPAAE5write6stringySS_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientPAAE5write4datay10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientPAAE5write4datay10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(ping:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientPAAE5write4pingy10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientPAAE5write4pingy10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(pong:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientPAAE5write4pongy10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientPAAE5write4pongy10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientPAAE10disconnectyyF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientPAAE10disconnectyyF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket0bC6ClientP", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "WebSocketEvent", + "printedName": "WebSocketEvent", + "children": [ + { + "kind": "Var", + "name": "connected", + "printedName": "connected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> ([Swift.String : Swift.String]) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Swift.String]) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO9connectedyACSDyS2SGcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO9connectedyACSDyS2SGcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "disconnected", + "printedName": "disconnected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Swift.String, Swift.UInt16) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.UInt16) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.UInt16)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO12disconnectedyACSS_s6UInt16VtcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO12disconnectedyACSS_s6UInt16VtcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Swift.String) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO4textyACSScACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO4textyACSScACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "binary", + "printedName": "binary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Foundation.Data) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO6binaryyAC10Foundation4DataVcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO6binaryyAC10Foundation4DataVcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "pong", + "printedName": "pong", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Foundation.Data?) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data?) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO4pongyAC10Foundation4DataVSgcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO4pongyAC10Foundation4DataVSgcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "ping", + "printedName": "ping", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Foundation.Data?) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data?) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO4pingyAC10Foundation4DataVSgcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO4pingyAC10Foundation4DataVSgcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Swift.Error?) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error?) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO5erroryACs5Error_pSgcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO5erroryACs5Error_pSgcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "viabilityChanged", + "printedName": "viabilityChanged", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Swift.Bool) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO16viabilityChangedyACSbcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO16viabilityChangedyACSbcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "reconnectSuggested", + "printedName": "reconnectSuggested", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Swift.Bool) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO18reconnectSuggestedyACSbcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO18reconnectSuggestedyACSbcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO9cancelledyA2CmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO9cancelledyA2CmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket0bC5EventO", + "mangledName": "$s17VideosdkWebSocket0bC5EventO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "WebSocketDelegate", + "printedName": "WebSocketDelegate", + "children": [ + { + "kind": "Function", + "name": "didReceive", + "printedName": "didReceive(event:client:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "WebSocketClient", + "printedName": "VideosdkWebSocket.WebSocketClient", + "usr": "s:17VideosdkWebSocket0bC6ClientP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC8DelegateP10didReceive5event6clientyAA0bC5EventO_AA0bC6Client_ptF", + "mangledName": "$s17VideosdkWebSocket0bC8DelegateP10didReceive5event6clientyAA0bC5EventO_AA0bC6Client_ptF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket0bC8DelegateP", + "mangledName": "$s17VideosdkWebSocket0bC8DelegateP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "WebSocket", + "printedName": "WebSocket", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.WebSocketDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.WebSocketDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketDelegate", + "printedName": "VideosdkWebSocket.WebSocketDelegate", + "usr": "s:17VideosdkWebSocket0bC8DelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.WebSocketDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketDelegate", + "printedName": "VideosdkWebSocket.WebSocketDelegate", + "usr": "s:17VideosdkWebSocket0bC8DelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "onEvent", + "printedName": "onEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.WebSocketEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvp", + "mangledName": "$s17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.WebSocketEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvg", + "mangledName": "$s17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.WebSocketEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvs", + "mangledName": "$s17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvM", + "mangledName": "$s17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "request", + "printedName": "request", + "children": [ + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvp", + "mangledName": "$s17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvg", + "mangledName": "$s17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvs", + "mangledName": "$s17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvM", + "mangledName": "$s17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "callbackQueue", + "printedName": "callbackQueue", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvp", + "mangledName": "$s17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvg", + "mangledName": "$s17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvs", + "mangledName": "$s17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvM", + "mangledName": "$s17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "respondToPingWithPong", + "printedName": "respondToPingWithPong", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket0bC0C21respondToPingWithPongSbvp", + "mangledName": "$s17VideosdkWebSocket0bC0C21respondToPingWithPongSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C21respondToPingWithPongSbvg", + "mangledName": "$s17VideosdkWebSocket0bC0C21respondToPingWithPongSbvg", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C21respondToPingWithPongSbvs", + "mangledName": "$s17VideosdkWebSocket0bC0C21respondToPingWithPongSbvs", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C21respondToPingWithPongSbvM", + "mangledName": "$s17VideosdkWebSocket0bC0C21respondToPingWithPongSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(request:engine:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocket", + "printedName": "VideosdkWebSocket.WebSocket", + "usr": "s:17VideosdkWebSocket0bC0C" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Engine", + "printedName": "VideosdkWebSocket.Engine", + "usr": "s:17VideosdkWebSocket6EngineP" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket0bC0C7request6engineAC10Foundation10URLRequestV_AA6Engine_ptcfc", + "mangledName": "$s17VideosdkWebSocket0bC0C7request6engineAC10Foundation10URLRequestV_AA6Engine_ptcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(request:certPinner:compressionHandler:useCustomEngine:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocket", + "printedName": "VideosdkWebSocket.WebSocket", + "usr": "s:17VideosdkWebSocket0bC0C" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CertificatePinning?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificatePinning", + "printedName": "VideosdkWebSocket.CertificatePinning", + "usr": "s:17VideosdkWebSocket18CertificatePinningP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CompressionHandler?", + "children": [ + { + "kind": "TypeNominal", + "name": "CompressionHandler", + "printedName": "VideosdkWebSocket.CompressionHandler", + "usr": "s:17VideosdkWebSocket18CompressionHandlerP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket0bC0C7request10certPinner18compressionHandler15useCustomEngineAC10Foundation10URLRequestV_AA18CertificatePinning_pSgAA011CompressionH0_pSgSbtcfc", + "mangledName": "$s17VideosdkWebSocket0bC0C7request10certPinner18compressionHandler15useCustomEngineAC10Foundation10URLRequestV_AA18CertificatePinning_pSgAA011CompressionH0_pSgSbtcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "connect", + "printedName": "connect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C7connectyyF", + "mangledName": "$s17VideosdkWebSocket0bC0C7connectyyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect(closeCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "hasDefaultArg": true, + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C10disconnect9closeCodeys6UInt16V_tF", + "mangledName": "$s17VideosdkWebSocket0bC0C10disconnect9closeCodeys6UInt16V_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceDisconnect", + "printedName": "forceDisconnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C15forceDisconnectyyF", + "mangledName": "$s17VideosdkWebSocket0bC0C15forceDisconnectyyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C5write4data10completiony10Foundation4DataV_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC0C5write4data10completiony10Foundation4DataV_yycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(string:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C5write6string10completionySS_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC0C5write6string10completionySS_yycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(stringData:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C5write10stringData10completiony10Foundation0F0V_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC0C5write10stringData10completiony10Foundation0F0V_yycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(ping:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C5write4ping10completiony10Foundation4DataV_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC0C5write4ping10completiony10Foundation4DataV_yycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(pong:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C5write4pong10completiony10Foundation4DataV_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC0C5write4pong10completiony10Foundation4DataV_yycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "didReceive", + "printedName": "didReceive(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C10didReceive5eventyAA0bC5EventO_tF", + "mangledName": "$s17VideosdkWebSocket0bC0C10didReceive5eventyAA0bC5EventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket0bC0C", + "mangledName": "$s17VideosdkWebSocket0bC0C", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "WebSocketClient", + "printedName": "WebSocketClient", + "usr": "s:17VideosdkWebSocket0bC6ClientP", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP" + }, + { + "kind": "Conformance", + "name": "EngineDelegate", + "printedName": "EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP", + "mangledName": "$s17VideosdkWebSocket14EngineDelegateP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FoundationTransportError", + "printedName": "FoundationTransportError", + "children": [ + { + "kind": "Var", + "name": "invalidRequest", + "printedName": "invalidRequest", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FoundationTransportError.Type) -> VideosdkWebSocket.FoundationTransportError", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FoundationTransportError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO14invalidRequestyA2CmF", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO14invalidRequestyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "invalidOutputStream", + "printedName": "invalidOutputStream", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FoundationTransportError.Type) -> VideosdkWebSocket.FoundationTransportError", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FoundationTransportError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO19invalidOutputStreamyA2CmF", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO19invalidOutputStreamyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "timeout", + "printedName": "timeout", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FoundationTransportError.Type) -> VideosdkWebSocket.FoundationTransportError", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FoundationTransportError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO7timeoutyA2CmF", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO7timeoutyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + }, + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO9hashValueSivp", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO9hashValueSivp", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO9hashValueSivg", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO9hashValueSivg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FoundationTransport", + "printedName": "FoundationTransport", + "children": [ + { + "kind": "Var", + "name": "usingTLS", + "printedName": "usingTLS", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket19FoundationTransportC8usingTLSSbvp", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC8usingTLSSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket19FoundationTransportC8usingTLSSbvg", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC8usingTLSSbvg", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(streamConfiguration:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransport", + "printedName": "VideosdkWebSocket.FoundationTransport", + "usr": "c:@M@VideosdkWebSocket@objc(cs)FoundationTransport" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.InputStream, Foundation.OutputStream) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.InputStream, Foundation.OutputStream) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.InputStream, Foundation.OutputStream)", + "children": [ + { + "kind": "TypeNominal", + "name": "InputStream", + "printedName": "Foundation.InputStream", + "usr": "c:objc(cs)NSInputStream" + }, + { + "kind": "TypeNominal", + "name": "OutputStream", + "printedName": "Foundation.OutputStream", + "usr": "c:objc(cs)NSOutputStream" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket19FoundationTransportC19streamConfigurationACySo13NSInputStreamC_So08NSOutputI0CtcSg_tcfc", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC19streamConfigurationACySo13NSInputStreamC_So08NSOutputI0CtcSg_tcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "connect", + "printedName": "connect(url:timeout:certificatePinning:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CertificatePinning?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificatePinning", + "printedName": "VideosdkWebSocket.CertificatePinning", + "usr": "s:17VideosdkWebSocket18CertificatePinningP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket19FoundationTransportC7connect3url7timeout18certificatePinningy0D03URLV_SdAA011CertificateJ0_pSgtF", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC7connect3url7timeout18certificatePinningy0D03URLV_SdAA011CertificateJ0_pSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket19FoundationTransportC10disconnectyyF", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC10disconnectyyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TransportEventClient", + "printedName": "VideosdkWebSocket.TransportEventClient", + "usr": "s:17VideosdkWebSocket20TransportEventClientP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket19FoundationTransportC8register8delegateyAA0E11EventClient_p_tF", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC8register8delegateyAA0E11EventClient_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket19FoundationTransportC5write4data10completiony0D04DataV_ys5Error_pSgctF", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC5write4data10completiony0D04DataV_ys5Error_pSgctF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stream", + "printedName": "stream(_:handle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Stream", + "printedName": "Foundation.Stream", + "usr": "c:objc(cs)NSStream" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "Foundation.Stream.Event", + "usr": "c:@E@NSStreamEvent" + } + ], + "declKind": "Func", + "usr": "c:@M@VideosdkWebSocket@objc(cs)FoundationTransport(im)stream:handleEvent:", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC6stream_6handleySo8NSStreamC_So0H5EventVtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "objc_name": "stream:handleEvent:", + "declAttributes": [ + "ObjC", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransport", + "printedName": "VideosdkWebSocket.FoundationTransport", + "usr": "c:@M@VideosdkWebSocket@objc(cs)FoundationTransport" + } + ], + "declKind": "Constructor", + "usr": "c:@M@VideosdkWebSocket@objc(cs)FoundationTransport(im)init", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportCACycfc", + "moduleName": "VideosdkWebSocket", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@VideosdkWebSocket@objc(cs)FoundationTransport", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Transport", + "printedName": "Transport", + "usr": "s:17VideosdkWebSocket9TransportP", + "mangledName": "$s17VideosdkWebSocket9TransportP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "TypeDecl", + "name": "TCPTransportError", + "printedName": "TCPTransportError", + "children": [ + { + "kind": "Var", + "name": "invalidRequest", + "printedName": "invalidRequest", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.TCPTransportError.Type) -> VideosdkWebSocket.TCPTransportError", + "children": [ + { + "kind": "TypeNominal", + "name": "TCPTransportError", + "printedName": "VideosdkWebSocket.TCPTransportError", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.TCPTransportError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TCPTransportError", + "printedName": "VideosdkWebSocket.TCPTransportError", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO14invalidRequestyA2CmF", + "mangledName": "$s17VideosdkWebSocket17TCPTransportErrorO14invalidRequestyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TCPTransportError", + "printedName": "VideosdkWebSocket.TCPTransportError", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO" + }, + { + "kind": "TypeNominal", + "name": "TCPTransportError", + "printedName": "VideosdkWebSocket.TCPTransportError", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s17VideosdkWebSocket17TCPTransportErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO9hashValueSivp", + "mangledName": "$s17VideosdkWebSocket17TCPTransportErrorO9hashValueSivp", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO9hashValueSivg", + "mangledName": "$s17VideosdkWebSocket17TCPTransportErrorO9hashValueSivg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s17VideosdkWebSocket17TCPTransportErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO", + "mangledName": "$s17VideosdkWebSocket17TCPTransportErrorO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TCPTransport", + "printedName": "TCPTransport", + "children": [ + { + "kind": "Var", + "name": "usingTLS", + "printedName": "usingTLS", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12TCPTransportC8usingTLSSbvp", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC8usingTLSSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12TCPTransportC8usingTLSSbvg", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC8usingTLSSbvg", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(connection:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TCPTransport", + "printedName": "VideosdkWebSocket.TCPTransport", + "usr": "s:17VideosdkWebSocket12TCPTransportC" + }, + { + "kind": "TypeNominal", + "name": "NWConnection", + "printedName": "Network.NWConnection", + "usr": "s:7Network12NWConnectionC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket12TCPTransportC10connectionAC7Network12NWConnectionC_tcfc", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC10connectionAC7Network12NWConnectionC_tcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TCPTransport", + "printedName": "VideosdkWebSocket.TCPTransport", + "usr": "s:17VideosdkWebSocket12TCPTransportC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket12TCPTransportCACycfc", + "mangledName": "$s17VideosdkWebSocket12TCPTransportCACycfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "connect", + "printedName": "connect(url:timeout:certificatePinning:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CertificatePinning?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificatePinning", + "printedName": "VideosdkWebSocket.CertificatePinning", + "usr": "s:17VideosdkWebSocket18CertificatePinningP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12TCPTransportC7connect3url7timeout18certificatePinningy10Foundation3URLV_SdAA011CertificateI0_pSgtF", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC7connect3url7timeout18certificatePinningy10Foundation3URLV_SdAA011CertificateI0_pSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12TCPTransportC10disconnectyyF", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC10disconnectyyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TransportEventClient", + "printedName": "VideosdkWebSocket.TransportEventClient", + "usr": "s:17VideosdkWebSocket20TransportEventClientP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12TCPTransportC8register8delegateyAA20TransportEventClient_p_tF", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC8register8delegateyAA20TransportEventClient_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12TCPTransportC5write4data10completiony10Foundation4DataV_ys5Error_pSgctF", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC5write4data10completiony10Foundation4DataV_ys5Error_pSgctF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket12TCPTransportC", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "intro_Macosx": "10.14", + "intro_iOS": "12.0", + "intro_tvOS": "12.0", + "intro_watchOS": "5.0", + "declAttributes": [ + "AccessControl", + "Available", + "Available", + "Available", + "Available" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Transport", + "printedName": "Transport", + "usr": "s:17VideosdkWebSocket9TransportP", + "mangledName": "$s17VideosdkWebSocket9TransportP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ConnectionState", + "printedName": "ConnectionState", + "children": [ + { + "kind": "Var", + "name": "connected", + "printedName": "connected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionState.Type) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionStateO9connectedyA2CmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO9connectedyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "waiting", + "printedName": "waiting", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionState.Type) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionStateO7waitingyA2CmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO7waitingyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionState.Type) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionStateO9cancelledyA2CmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO9cancelledyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionState.Type) -> (Swift.Error?) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error?) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionStateO6failedyACs5Error_pSgcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO6failedyACs5Error_pSgcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "viability", + "printedName": "viability", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionState.Type) -> (Swift.Bool) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionStateO9viabilityyACSbcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO9viabilityyACSbcACmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "shouldReconnect", + "printedName": "shouldReconnect", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionState.Type) -> (Swift.Bool) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionStateO15shouldReconnectyACSbcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO15shouldReconnectyACSbcACmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "receive", + "printedName": "receive", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionState.Type) -> (Foundation.Data) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionStateO7receiveyAC10Foundation4DataVcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO7receiveyAC10Foundation4DataVcACmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket15ConnectionStateO", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "TransportEventClient", + "printedName": "TransportEventClient", + "children": [ + { + "kind": "Function", + "name": "connectionChanged", + "printedName": "connectionChanged(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket20TransportEventClientP17connectionChanged5stateyAA15ConnectionStateO_tF", + "mangledName": "$s17VideosdkWebSocket20TransportEventClientP17connectionChanged5stateyAA15ConnectionStateO_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.TransportEventClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket20TransportEventClientP", + "mangledName": "$s17VideosdkWebSocket20TransportEventClientP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Transport", + "printedName": "Transport", + "children": [ + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TransportEventClient", + "printedName": "VideosdkWebSocket.TransportEventClient", + "usr": "s:17VideosdkWebSocket20TransportEventClientP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket9TransportP8register8delegateyAA0D11EventClient_p_tF", + "mangledName": "$s17VideosdkWebSocket9TransportP8register8delegateyAA0D11EventClient_p_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "connect", + "printedName": "connect(url:timeout:certificatePinning:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CertificatePinning?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificatePinning", + "printedName": "VideosdkWebSocket.CertificatePinning", + "usr": "s:17VideosdkWebSocket18CertificatePinningP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket9TransportP7connect3url7timeout18certificatePinningy10Foundation3URLV_SdAA011CertificateI0_pSgtF", + "mangledName": "$s17VideosdkWebSocket9TransportP7connect3url7timeout18certificatePinningy10Foundation3URLV_SdAA011CertificateI0_pSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket9TransportP10disconnectyyF", + "mangledName": "$s17VideosdkWebSocket9TransportP10disconnectyyF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket9TransportP5write4data10completiony10Foundation4DataV_ys5Error_pSgctF", + "mangledName": "$s17VideosdkWebSocket9TransportP5write4data10completiony10Foundation4DataV_ys5Error_pSgctF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "usingTLS", + "printedName": "usingTLS", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket9TransportP8usingTLSSbvp", + "mangledName": "$s17VideosdkWebSocket9TransportP8usingTLSSbvp", + "moduleName": "VideosdkWebSocket", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket9TransportP8usingTLSSbvg", + "mangledName": "$s17VideosdkWebSocket9TransportP8usingTLSSbvg", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket9TransportP", + "mangledName": "$s17VideosdkWebSocket9TransportP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Data", + "printedName": "Data", + "children": [ + { + "kind": "TypeDecl", + "name": "ByteError", + "printedName": "ByteError", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ByteError", + "printedName": "Foundation.Data.ByteError", + "usr": "s:10Foundation4DataV17VideosdkWebSocketE9ByteErrorV" + } + ], + "declKind": "Constructor", + "usr": "s:10Foundation4DataV17VideosdkWebSocketE9ByteErrorVAFycfc", + "mangledName": "$s10Foundation4DataV17VideosdkWebSocketE9ByteErrorVAFycfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:10Foundation4DataV17VideosdkWebSocketE9ByteErrorV", + "mangledName": "$s10Foundation4DataV17VideosdkWebSocketE9ByteErrorV", + "moduleName": "VideosdkWebSocket", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "withUnsafeBytes", + "printedName": "withUnsafeBytes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.UnsafePointer<τ_0_1>) throws -> τ_0_0", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "UnsafePointer", + "printedName": "Swift.UnsafePointer<τ_0_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SP" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV17VideosdkWebSocketE15withUnsafeBytesyxxSPyq_GKXEKr0_lF", + "mangledName": "$s10Foundation4DataV17VideosdkWebSocketE15withUnsafeBytesyxxSPyq_GKXEKr0_lF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0, τ_0_1>", + "sugared_genericSig": "", + "declAttributes": [ + "Rethrows" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "withUnsafeMutableBytes", + "printedName": "withUnsafeMutableBytes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.UnsafeMutablePointer<τ_0_1>) throws -> τ_0_0", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutablePointer", + "printedName": "Swift.UnsafeMutablePointer<τ_0_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:Sp" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV17VideosdkWebSocketE22withUnsafeMutableBytesyxxSpyq_GKXEKr0_lF", + "mangledName": "$s10Foundation4DataV17VideosdkWebSocketE22withUnsafeMutableBytesyxxSpyq_GKXEKr0_lF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0, τ_0_1>", + "sugared_genericSig": "", + "declAttributes": [ + "Rethrows", + "Mutating" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Struct", + "usr": "s:10Foundation4DataV", + "mangledName": "$s10Foundation4DataV", + "moduleName": "Foundation", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ReferenceConvertible", + "printedName": "ReferenceConvertible", + "children": [ + { + "kind": "TypeWitness", + "name": "ReferenceType", + "printedName": "ReferenceType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ] + } + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RandomAccessCollection", + "printedName": "RandomAccessCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sk", + "mangledName": "$sSk" + }, + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MutableDataProtocol", + "printedName": "MutableDataProtocol", + "usr": "s:10Foundation19MutableDataProtocolP", + "mangledName": "$s10Foundation19MutableDataProtocolP" + }, + { + "kind": "Conformance", + "name": "ContiguousBytes", + "printedName": "ContiguousBytes", + "usr": "s:10Foundation15ContiguousBytesP", + "mangledName": "$s10Foundation15ContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "DataProtocol", + "printedName": "DataProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "Regions", + "printedName": "Regions", + "children": [ + { + "kind": "TypeNominal", + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:s15CollectionOfOneV" + } + ] + } + ], + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UInt8", + "printedName": "UInt8", + "declKind": "Struct", + "usr": "s:s5UInt8V", + "mangledName": "$ss5UInt8V", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "FixedWidthInteger", + "printedName": "FixedWidthInteger", + "usr": "s:s17FixedWidthIntegerP", + "mangledName": "$ss17FixedWidthIntegerP" + }, + { + "kind": "Conformance", + "name": "UnsignedInteger", + "printedName": "UnsignedInteger", + "usr": "s:SU", + "mangledName": "$sSU" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "BinaryInteger", + "printedName": "BinaryInteger", + "children": [ + { + "kind": "TypeWitness", + "name": "Words", + "printedName": "Words", + "children": [ + { + "kind": "TypeNominal", + "name": "Words", + "printedName": "Swift.UInt8.Words", + "usr": "s:s5UInt8V5WordsV" + } + ] + } + ], + "usr": "s:Sz", + "mangledName": "$sSz" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "MyWSArrayType", + "printedName": "MyWSArrayType", + "usr": "s:17VideosdkWebSocket13MyWSArrayTypeP", + "mangledName": "$s17VideosdkWebSocket13MyWSArrayTypeP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_StringElement", + "printedName": "_StringElement", + "usr": "s:s14_StringElementP", + "mangledName": "$ss14_StringElementP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ + { + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.UInt8.SIMD2Storage", + "usr": "s:s5UInt8V12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.UInt8.SIMD4Storage", + "usr": "s:s5UInt8V12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.UInt8.SIMD8Storage", + "usr": "s:s5UInt8V12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.UInt8.SIMD16Storage", + "usr": "s:s5UInt8V13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.UInt8.SIMD32Storage", + "usr": "s:s5UInt8V13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.UInt8.SIMD64Storage", + "usr": "s:s5UInt8V13SIMD64StorageV" + } + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Array", + "printedName": "Array", + "children": [ + { + "kind": "Function", + "name": "readUint16", + "printedName": "readUint16(offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:Sa17VideosdkWebSocketSURzAA13MyWSArrayTypeRzlE10readUint166offsets6UInt16VSi_tF", + "mangledName": "$sSa17VideosdkWebSocketSURzAA13MyWSArrayTypeRzlE10readUint166offsets6UInt16VSi_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.UnsignedInteger, τ_0_0 : VideosdkWebSocket.MyWSArrayType>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readUint64", + "printedName": "readUint64(offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:Sa17VideosdkWebSocketSURzAA13MyWSArrayTypeRzlE10readUint646offsets6UInt64VSi_tF", + "mangledName": "$sSa17VideosdkWebSocketSURzAA13MyWSArrayTypeRzlE10readUint646offsets6UInt64VSi_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.UnsignedInteger, τ_0_0 : VideosdkWebSocket.MyWSArrayType>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unmaskData", + "printedName": "unmaskData(maskStart:offset:length:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:Sa17VideosdkWebSocketSURzAA13MyWSArrayTypeRzlE10unmaskData9maskStart6offset6length10Foundation0H0VSi_S2itF", + "mangledName": "$sSa17VideosdkWebSocketSURzAA13MyWSArrayTypeRzlE10unmaskData9maskStart6offset6length10Foundation0H0VSi_S2itF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.UnsignedInteger, τ_0_0 : VideosdkWebSocket.MyWSArrayType>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:Sa", + "mangledName": "$sSa", + "moduleName": "Swift", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_DestructorSafeContainer", + "printedName": "_DestructorSafeContainer", + "usr": "s:s24_DestructorSafeContainerP", + "mangledName": "$ss24_DestructorSafeContainerP" + }, + { + "kind": "Conformance", + "name": "_ArrayProtocol", + "printedName": "_ArrayProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "_Buffer", + "printedName": "_Buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "_ArrayBuffer", + "printedName": "Swift._ArrayBuffer<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s12_ArrayBufferV" + } + ] + } + ], + "usr": "s:s14_ArrayProtocolP", + "mangledName": "$ss14_ArrayProtocolP" + }, + { + "kind": "Conformance", + "name": "RandomAccessCollection", + "printedName": "RandomAccessCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sk", + "mangledName": "$sSk" + }, + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "ExpressibleByArrayLiteral", + "printedName": "ExpressibleByArrayLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:s25ExpressibleByArrayLiteralP", + "mangledName": "$ss25ExpressibleByArrayLiteralP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "DataProtocol", + "printedName": "DataProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "Regions", + "printedName": "Regions", + "children": [ + { + "kind": "TypeNominal", + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s15CollectionOfOneV" + } + ] + } + ], + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" + }, + { + "kind": "Conformance", + "name": "MutableDataProtocol", + "printedName": "MutableDataProtocol", + "usr": "s:10Foundation19MutableDataProtocolP", + "mangledName": "$s10Foundation19MutableDataProtocolP" + }, + { + "kind": "Conformance", + "name": "EncodableWithConfiguration", + "printedName": "EncodableWithConfiguration", + "children": [ + { + "kind": "TypeWitness", + "name": "EncodingConfiguration", + "printedName": "EncodingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.EncodingConfiguration" + } + ] + } + ], + "usr": "s:10Foundation26EncodableWithConfigurationP", + "mangledName": "$s10Foundation26EncodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "DecodableWithConfiguration", + "printedName": "DecodableWithConfiguration", + "children": [ + { + "kind": "TypeWitness", + "name": "DecodingConfiguration", + "printedName": "DecodingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.DecodingConfiguration" + } + ] + } + ], + "usr": "s:10Foundation26DecodableWithConfigurationP", + "mangledName": "$s10Foundation26DecodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSArray", + "printedName": "Foundation.NSArray", + "usr": "c:objc(cs)NSArray" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "ContiguousBytes", + "printedName": "ContiguousBytes", + "usr": "s:10Foundation15ContiguousBytesP", + "mangledName": "$s10Foundation15ContiguousBytesP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "URL", + "printedName": "URL", + "children": [ + { + "kind": "Var", + "name": "isTLSScheme", + "printedName": "isTLSScheme", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10Foundation3URLV17VideosdkWebSocketE11isTLSSchemeSbvp", + "mangledName": "$s10Foundation3URLV17VideosdkWebSocketE11isTLSSchemeSbvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10Foundation3URLV17VideosdkWebSocketE11isTLSSchemeSbvg", + "mangledName": "$s10Foundation3URLV17VideosdkWebSocketE11isTLSSchemeSbvg", + "moduleName": "VideosdkWebSocket", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getParts", + "printedName": "getParts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.URLParts?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLParts", + "printedName": "VideosdkWebSocket.URLParts", + "usr": "s:17VideosdkWebSocket8URLPartsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:10Foundation3URLV17VideosdkWebSocketE8getPartsAD8URLPartsVSgyF", + "mangledName": "$s10Foundation3URLV17VideosdkWebSocketE8getPartsAD8URLPartsVSgyF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:10Foundation3URLV", + "mangledName": "$s10Foundation3URLV", + "moduleName": "Foundation", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ReferenceConvertible", + "printedName": "ReferenceConvertible", + "children": [ + { + "kind": "TypeWitness", + "name": "ReferenceType", + "printedName": "ReferenceType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSURL", + "printedName": "Foundation.NSURL", + "usr": "c:objc(cs)NSURL" + } + ] + } + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSURL", + "printedName": "Foundation.NSURL", + "usr": "c:objc(cs)NSURL" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByFileReferenceLiteral", + "printedName": "_ExpressibleByFileReferenceLiteral", + "usr": "s:s34_ExpressibleByFileReferenceLiteralP", + "mangledName": "$ss34_ExpressibleByFileReferenceLiteralP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "StringLiteral", + "offset": 1368, + "length": 26, + "value": "\"Sec-WebSocket-Extensions\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "BooleanLiteral", + "offset": 1494, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "BooleanLiteral", + "offset": 1529, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "IntegerLiteral", + "offset": 3763, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "IntegerLiteral", + "offset": 3773, + "length": 6, + "value": "0x2000" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "BooleanLiteral", + "offset": 3818, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "IntegerLiteral", + "offset": 6336, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "IntegerLiteral", + "offset": 6346, + "length": 6, + "value": "0x2000" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "BooleanLiteral", + "offset": 6391, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Engine\/WSEngine.swift", + "kind": "BooleanLiteral", + "offset": 651, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Engine\/WSEngine.swift", + "kind": "StringLiteral", + "offset": 687, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Engine\/WSEngine.swift", + "kind": "StringLiteral", + "offset": 740, + "length": 33, + "value": "\"com.vluxe.starscream.writequeue\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Engine\/WSEngine.swift", + "kind": "IntegerLiteral", + "offset": 824, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Engine\/WSEngine.swift", + "kind": "BooleanLiteral", + "offset": 853, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Engine\/WSEngine.swift", + "kind": "BooleanLiteral", + "offset": 948, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/FoundationHTTPServerHandler.swift", + "kind": "StringLiteral", + "offset": 1084, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/FrameCollector.swift", + "kind": "IntegerLiteral", + "offset": 1394, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/FrameCollector.swift", + "kind": "BooleanLiteral", + "offset": 1413, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/FrameCollector.swift", + "kind": "BooleanLiteral", + "offset": 1502, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 943, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 978, + "length": 4, + "value": "0x0F" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1013, + "length": 4, + "value": "0x70" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1048, + "length": 4, + "value": "0x40" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1083, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1118, + "length": 4, + "value": "0x7F" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1153, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1257, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1296, + "length": 4, + "value": "1001" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1335, + "length": 4, + "value": "1002" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1374, + "length": 4, + "value": "1003" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1435, + "length": 4, + "value": "1005" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1495, + "length": 4, + "value": "1007" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1534, + "length": 4, + "value": "1008" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1573, + "length": 4, + "value": "1009" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1257, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1296, + "length": 4, + "value": "1001" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1335, + "length": 4, + "value": "1002" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1374, + "length": 4, + "value": "1003" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1435, + "length": 4, + "value": "1005" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1495, + "length": 4, + "value": "1007" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1534, + "length": 4, + "value": "1008" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1573, + "length": 4, + "value": "1009" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1257, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1296, + "length": 4, + "value": "1001" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1335, + "length": 4, + "value": "1002" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1374, + "length": 4, + "value": "1003" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1435, + "length": 4, + "value": "1005" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1495, + "length": 4, + "value": "1007" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1534, + "length": 4, + "value": "1008" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1573, + "length": 4, + "value": "1009" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1639, + "length": 3, + "value": "0x0" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1664, + "length": 3, + "value": "0x1" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1691, + "length": 3, + "value": "0x2" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1747, + "length": 3, + "value": "0x8" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1767, + "length": 3, + "value": "0x9" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1787, + "length": 3, + "value": "0xA" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1831, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1639, + "length": 3, + "value": "0x0" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1664, + "length": 3, + "value": "0x1" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1691, + "length": 3, + "value": "0x2" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1747, + "length": 3, + "value": "0x8" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1767, + "length": 3, + "value": "0x9" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1787, + "length": 3, + "value": "0xA" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1831, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1639, + "length": 3, + "value": "0x0" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1664, + "length": 3, + "value": "0x1" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1691, + "length": 3, + "value": "0x2" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1747, + "length": 3, + "value": "0x8" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1767, + "length": 3, + "value": "0x9" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1787, + "length": 3, + "value": "0xA" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1831, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "StringLiteral", + "offset": 2597, + "length": 31, + "value": "\"com.vluxe.starscream.wsframer\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "Array", + "offset": 2642, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "BooleanLiteral", + "offset": 2764, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "BooleanLiteral", + "offset": 2839, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1090, + "length": 9, + "value": "\"Upgrade\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 11, + "value": "\"websocket\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1184, + "length": 6, + "value": "\"Host\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1227, + "length": 12, + "value": "\"Connection\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1276, + "length": 9, + "value": "\"Upgrade\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1322, + "length": 24, + "value": "\"Sec-WebSocket-Protocol\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1383, + "length": 23, + "value": "\"Sec-WebSocket-Version\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1443, + "length": 4, + "value": "\"13\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1484, + "length": 26, + "value": "\"Sec-WebSocket-Extensions\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1547, + "length": 19, + "value": "\"Sec-WebSocket-Key\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1603, + "length": 8, + "value": "\"Origin\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1648, + "length": 22, + "value": "\"Sec-WebSocket-Accept\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "IntegerLiteral", + "offset": 1707, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "Array", + "offset": 1747, + "length": 16, + "value": "[\"wss\", \"https\"]" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/FoundationSecurity.swift", + "kind": "BooleanLiteral", + "offset": 1078, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/FoundationSecurity.swift", + "kind": "BooleanLiteral", + "offset": 1129, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/Security.swift", + "kind": "IntegerLiteral", + "offset": 979, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/Security.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/Security.swift", + "kind": "IntegerLiteral", + "offset": 979, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/Security.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/Security.swift", + "kind": "IntegerLiteral", + "offset": 979, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/Security.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Server\/WebSocketServer.swift", + "kind": "StringLiteral", + "offset": 1383, + "length": 43, + "value": "\"com.vluxe.starscream.server.networkstream\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Server\/WebSocketServer.swift", + "kind": "Array", + "offset": 1440, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Server\/WebSocketServer.swift", + "kind": "BooleanLiteral", + "offset": 3676, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Server\/WebSocketServer.swift", + "kind": "BooleanLiteral", + "offset": 3759, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Starscream\/WebSocket.swift", + "kind": "BooleanLiteral", + "offset": 3679, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/FoundationTransport.swift", + "kind": "StringLiteral", + "offset": 1219, + "length": 32, + "value": "\"com.vluxe.starscream.websocket\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/FoundationTransport.swift", + "kind": "Array", + "offset": 1265, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/FoundationTransport.swift", + "kind": "BooleanLiteral", + "offset": 1380, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/FoundationTransport.swift", + "kind": "BooleanLiteral", + "offset": 1476, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/FoundationTransport.swift", + "kind": "IntegerLiteral", + "offset": 1910, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/FoundationTransport.swift", + "kind": "StringLiteral", + "offset": 1058, + "length": 19, + "value": "\"VideosdkWebSocket.FoundationTransport\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/TCPTransport.swift", + "kind": "StringLiteral", + "offset": 1211, + "length": 36, + "value": "\"com.vluxe.starscream.networkstream\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/TCPTransport.swift", + "kind": "Array", + "offset": 1261, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/TCPTransport.swift", + "kind": "BooleanLiteral", + "offset": 1346, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/TCPTransport.swift", + "kind": "BooleanLiteral", + "offset": 1376, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/TCPTransport.swift", + "kind": "IntegerLiteral", + "offset": 1712, + "length": 2, + "value": "10" + } + ] +} \ No newline at end of file diff --git a/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface new file mode 100644 index 0000000..ec56bf5 --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -0,0 +1,435 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) +// swift-module-flags: -target arm64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name VideosdkWebSocket +// swift-module-flags-ignorable: -enable-bare-slash-regex +import CommonCrypto +import Foundation +import Network +import Swift +import _Concurrency +import _StringProcessing +import zlib +public protocol CompressionHandler { + func load(headers: [Swift.String : Swift.String]) + func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + func compress(data: Foundation.Data) -> Foundation.Data? +} +public class WSCompression : VideosdkWebSocket.CompressionHandler { + public init() + public func load(headers: [Swift.String : Swift.String]) + public func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + public func compress(data: Foundation.Data) -> Foundation.Data? + @objc deinit +} +public protocol EngineDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.WebSocketEvent) +} +public protocol Engine { + func register(delegate: VideosdkWebSocket.EngineDelegate) + func start(request: Foundation.URLRequest) + func stop(closeCode: Swift.UInt16) + func forceStop() + func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode, completion: (() -> ())?) + func write(string: Swift.String, completion: (() -> ())?) +} +@objc @_inheritsConvenienceInitializers @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +public class NativeEngine : ObjectiveC.NSObject, VideosdkWebSocket.Engine, Foundation.URLSessionDataDelegate, Foundation.URLSessionWebSocketDelegate { + public func register(delegate: VideosdkWebSocket.EngineDelegate) + public func start(request: Foundation.URLRequest) + public func stop(closeCode: Swift.UInt16) + public func forceStop() + public func write(string: Swift.String, completion: (() -> ())?) + public func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode, completion: (() -> ())?) + @objc public func urlSession(_ session: Foundation.URLSession, webSocketTask: Foundation.URLSessionWebSocketTask, didOpenWithProtocol protocol: Swift.String?) + @objc public func urlSession(_ session: Foundation.URLSession, webSocketTask: Foundation.URLSessionWebSocketTask, didCloseWith closeCode: Foundation.URLSessionWebSocketTask.CloseCode, reason: Foundation.Data?) + @objc override dynamic public init() + @objc deinit +} +public class WSEngine : VideosdkWebSocket.Engine, VideosdkWebSocket.TransportEventClient, VideosdkWebSocket.FramerEventClient, VideosdkWebSocket.FrameCollectorDelegate, VideosdkWebSocket.HTTPHandlerDelegate { + public var respondToPingWithPong: Swift.Bool + public init(transport: VideosdkWebSocket.Transport, certPinner: VideosdkWebSocket.CertificatePinning? = nil, headerValidator: VideosdkWebSocket.HeaderValidator = FoundationSecurity(), httpHandler: VideosdkWebSocket.HTTPHandler = FoundationHTTPHandler(), framer: VideosdkWebSocket.Framer = WSFramer(), compressionHandler: VideosdkWebSocket.CompressionHandler? = nil) + public func register(delegate: VideosdkWebSocket.EngineDelegate) + public func start(request: Foundation.URLRequest) + public func stop(closeCode: Swift.UInt16 = CloseCode.normal.rawValue) + public func forceStop() + public func write(string: Swift.String, completion: (() -> ())?) + public func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode, completion: (() -> ())?) + public func connectionChanged(state: VideosdkWebSocket.ConnectionState) + public func didReceiveHTTP(event: VideosdkWebSocket.HTTPEvent) + public func frameProcessed(event: VideosdkWebSocket.FrameEvent) + public func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + public func didForm(event: VideosdkWebSocket.FrameCollector.Event) + @objc deinit +} +public class FoundationHTTPHandler : VideosdkWebSocket.HTTPHandler { + public init() + public func convert(request: Foundation.URLRequest) -> Foundation.Data + public func parse(data: Foundation.Data) -> Swift.Int + public func register(delegate: VideosdkWebSocket.HTTPHandlerDelegate) + @objc deinit +} +@_hasMissingDesignatedInitializers public class FoundationHTTPServerHandler : VideosdkWebSocket.HTTPServerHandler { + public func register(delegate: VideosdkWebSocket.HTTPServerDelegate) + public func createResponse(headers: [Swift.String : Swift.String]) -> Foundation.Data + public func parse(data: Foundation.Data) + @objc deinit +} +public protocol FrameCollectorDelegate : AnyObject { + func didForm(event: VideosdkWebSocket.FrameCollector.Event) + func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? +} +@_hasMissingDesignatedInitializers public class FrameCollector { + public enum Event { + case text(Swift.String) + case binary(Foundation.Data) + case pong(Foundation.Data?) + case ping(Foundation.Data?) + case error(Swift.Error) + case closed(Swift.String, Swift.UInt16) + } + public func add(frame: VideosdkWebSocket.Frame) + @objc deinit +} +public enum CloseCode : Swift.UInt16 { + case normal + case goingAway + case protocolError + case protocolUnhandledType + case noStatusReceived + case encoding + case policyViolated + case messageTooBig + public init?(rawValue: Swift.UInt16) + public typealias RawValue = Swift.UInt16 + public var rawValue: Swift.UInt16 { + get + } +} +public enum FrameOpCode : Swift.UInt8 { + case continueFrame + case textFrame + case binaryFrame + case connectionClose + case ping + case pong + case unknown + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } +} +public struct Frame { +} +public enum FrameEvent { + case frame(VideosdkWebSocket.Frame) + case error(Swift.Error) +} +public protocol FramerEventClient : AnyObject { + func frameProcessed(event: VideosdkWebSocket.FrameEvent) +} +public protocol Framer { + func add(data: Foundation.Data) + func register(delegate: VideosdkWebSocket.FramerEventClient) + func createWriteFrame(opcode: VideosdkWebSocket.FrameOpCode, payload: Foundation.Data, isCompressed: Swift.Bool) -> Foundation.Data + func updateCompression(supports: Swift.Bool) + func supportsCompression() -> Swift.Bool +} +public class WSFramer : VideosdkWebSocket.Framer { + public var compressionEnabled: Swift.Bool + public init(isServer: Swift.Bool = false) + public func updateCompression(supports: Swift.Bool) + public func supportsCompression() -> Swift.Bool + public func add(data: Foundation.Data) + public func register(delegate: VideosdkWebSocket.FramerEventClient) + public func createWriteFrame(opcode: VideosdkWebSocket.FrameOpCode, payload: Foundation.Data, isCompressed: Swift.Bool) -> Foundation.Data + @objc deinit +} +public protocol MyWSArrayType { +} +extension Swift.UInt8 : VideosdkWebSocket.MyWSArrayType { +} +extension Swift.Array where Element : Swift.UnsignedInteger, Element : VideosdkWebSocket.MyWSArrayType { + public func readUint16(offset: Swift.Int) -> Swift.UInt16 + public func readUint64(offset: Swift.Int) -> Swift.UInt64 + public func unmaskData(maskStart: Swift.Int, offset: Swift.Int, length: Swift.Int) -> Foundation.Data +} +public func writeUint16(_ buffer: inout [Swift.UInt8], offset: Swift.Int, value: Swift.UInt16) +public func writeUint32(_ buffer: inout [Swift.UInt8], offset: Swift.Int, value: Swift.UInt32) +public func writeUint64(_ buffer: inout [Swift.UInt8], offset: Swift.Int, value: Swift.UInt64) +public enum HTTPUpgradeError : Swift.Error { + case notAnUpgrade(Swift.Int, [Swift.String : Swift.String]) + case invalidData +} +public struct HTTPWSHeader { + public static func createUpgrade(request: Foundation.URLRequest, supportsCompression: Swift.Bool, secKeyValue: Swift.String) -> Foundation.URLRequest + public static func generateWebSocketKey() -> Swift.String +} +public enum HTTPEvent { + case success([Swift.String : Swift.String]) + case failure(Swift.Error) +} +public protocol HTTPHandlerDelegate : AnyObject { + func didReceiveHTTP(event: VideosdkWebSocket.HTTPEvent) +} +public protocol HTTPHandler { + func register(delegate: VideosdkWebSocket.HTTPHandlerDelegate) + func convert(request: Foundation.URLRequest) -> Foundation.Data + func parse(data: Foundation.Data) -> Swift.Int +} +public protocol HTTPServerDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.HTTPEvent) +} +public protocol HTTPServerHandler { + func register(delegate: VideosdkWebSocket.HTTPServerDelegate) + func parse(data: Foundation.Data) + func createResponse(headers: [Swift.String : Swift.String]) -> Foundation.Data +} +public struct URLParts { +} +extension Foundation.URL { + public var isTLSScheme: Swift.Bool { + get + } + public func getParts() -> VideosdkWebSocket.URLParts? +} +public class StringHTTPHandler : VideosdkWebSocket.HTTPHandler { + public init() + public func convert(request: Foundation.URLRequest) -> Foundation.Data + public func parse(data: Foundation.Data) -> Swift.Int + public func register(delegate: VideosdkWebSocket.HTTPHandlerDelegate) + @objc deinit +} +public enum FoundationSecurityError : Swift.Error { + case invalidRequest + public static func == (a: VideosdkWebSocket.FoundationSecurityError, b: VideosdkWebSocket.FoundationSecurityError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public class FoundationSecurity { + public init(allowSelfSigned: Swift.Bool = false) + @objc deinit +} +extension VideosdkWebSocket.FoundationSecurity : VideosdkWebSocket.CertificatePinning { + public func evaluateTrust(trust: Security.SecTrust, domain: Swift.String?, completion: ((VideosdkWebSocket.PinningState) -> ())) +} +extension VideosdkWebSocket.FoundationSecurity : VideosdkWebSocket.HeaderValidator { + public func validate(headers: [Swift.String : Swift.String], key: Swift.String) -> Swift.Error? +} +public enum SecurityErrorCode : Swift.UInt16 { + case acceptFailed + case pinningFailed + public init?(rawValue: Swift.UInt16) + public typealias RawValue = Swift.UInt16 + public var rawValue: Swift.UInt16 { + get + } +} +public enum PinningState { + case success + case failed(CoreFoundation.CFError?) +} +public protocol CertificatePinning : AnyObject { + func evaluateTrust(trust: Security.SecTrust, domain: Swift.String?, completion: ((VideosdkWebSocket.PinningState) -> ())) +} +public protocol HeaderValidator : AnyObject { + func validate(headers: [Swift.String : Swift.String], key: Swift.String) -> Swift.Error? +} +public enum ConnectionEvent { + case connected([Swift.String : Swift.String]) + case disconnected(Swift.String, Swift.UInt16) + case text(Swift.String) + case binary(Foundation.Data) + case pong(Foundation.Data?) + case ping(Foundation.Data?) + case error(Swift.Error) +} +public protocol Connection { + func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode) +} +public protocol ConnectionDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.ServerEvent) +} +public enum ServerEvent { + case connected(VideosdkWebSocket.Connection, [Swift.String : Swift.String]) + case disconnected(VideosdkWebSocket.Connection, Swift.String, Swift.UInt16) + case text(VideosdkWebSocket.Connection, Swift.String) + case binary(VideosdkWebSocket.Connection, Foundation.Data) + case pong(VideosdkWebSocket.Connection, Foundation.Data?) + case ping(VideosdkWebSocket.Connection, Foundation.Data?) +} +public protocol Server { + func start(address: Swift.String, port: Swift.UInt16) -> Swift.Error? +} +@available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) +@available(watchOS, unavailable) +public class WebSocketServer : VideosdkWebSocket.Server, VideosdkWebSocket.ConnectionDelegate { + public var onEvent: ((VideosdkWebSocket.ServerEvent) -> Swift.Void)? + public init() + public func start(address: Swift.String, port: Swift.UInt16) -> Swift.Error? + public func didReceive(event: VideosdkWebSocket.ServerEvent) + @objc deinit +} +@_hasMissingDesignatedInitializers @available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) +public class ServerConnection : VideosdkWebSocket.Connection, VideosdkWebSocket.HTTPServerDelegate, VideosdkWebSocket.FramerEventClient, VideosdkWebSocket.FrameCollectorDelegate, VideosdkWebSocket.TransportEventClient { + public var onEvent: ((VideosdkWebSocket.ConnectionEvent) -> Swift.Void)? + weak public var delegate: VideosdkWebSocket.ConnectionDelegate? + public func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode) + public func connectionChanged(state: VideosdkWebSocket.ConnectionState) + public func didReceive(event: VideosdkWebSocket.HTTPEvent) + public func frameProcessed(event: VideosdkWebSocket.FrameEvent) + public func didForm(event: VideosdkWebSocket.FrameCollector.Event) + public func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + @objc deinit +} +public enum ErrorType : Swift.Error { + case compressionError + case securityError + case protocolError + case serverError + public static func == (a: VideosdkWebSocket.ErrorType, b: VideosdkWebSocket.ErrorType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct WSError : Swift.Error { + public let type: VideosdkWebSocket.ErrorType + public let message: Swift.String + public let code: Swift.UInt16 + public init(type: VideosdkWebSocket.ErrorType, message: Swift.String, code: Swift.UInt16) +} +public protocol WebSocketClient : AnyObject { + func connect() + func disconnect(closeCode: Swift.UInt16) + func write(string: Swift.String, completion: (() -> ())?) + func write(stringData: Foundation.Data, completion: (() -> ())?) + func write(data: Foundation.Data, completion: (() -> ())?) + func write(ping: Foundation.Data, completion: (() -> ())?) + func write(pong: Foundation.Data, completion: (() -> ())?) +} +extension VideosdkWebSocket.WebSocketClient { + public func write(string: Swift.String) + public func write(data: Foundation.Data) + public func write(ping: Foundation.Data) + public func write(pong: Foundation.Data) + public func disconnect() +} +public enum WebSocketEvent { + case connected([Swift.String : Swift.String]) + case disconnected(Swift.String, Swift.UInt16) + case text(Swift.String) + case binary(Foundation.Data) + case pong(Foundation.Data?) + case ping(Foundation.Data?) + case error(Swift.Error?) + case viabilityChanged(Swift.Bool) + case reconnectSuggested(Swift.Bool) + case cancelled +} +public protocol WebSocketDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.WebSocketEvent, client: VideosdkWebSocket.WebSocketClient) +} +open class WebSocket : VideosdkWebSocket.WebSocketClient, VideosdkWebSocket.EngineDelegate { + weak public var delegate: VideosdkWebSocket.WebSocketDelegate? + public var onEvent: ((VideosdkWebSocket.WebSocketEvent) -> Swift.Void)? + public var request: Foundation.URLRequest + public var callbackQueue: Dispatch.DispatchQueue + public var respondToPingWithPong: Swift.Bool { + get + set + } + public init(request: Foundation.URLRequest, engine: VideosdkWebSocket.Engine) + convenience public init(request: Foundation.URLRequest, certPinner: VideosdkWebSocket.CertificatePinning? = FoundationSecurity(), compressionHandler: VideosdkWebSocket.CompressionHandler? = nil, useCustomEngine: Swift.Bool = true) + public func connect() + public func disconnect(closeCode: Swift.UInt16 = CloseCode.normal.rawValue) + public func forceDisconnect() + public func write(data: Foundation.Data, completion: (() -> ())?) + public func write(string: Swift.String, completion: (() -> ())?) + public func write(stringData: Foundation.Data, completion: (() -> ())?) + public func write(ping: Foundation.Data, completion: (() -> ())?) + public func write(pong: Foundation.Data, completion: (() -> ())?) + public func didReceive(event: VideosdkWebSocket.WebSocketEvent) + @objc deinit +} +public enum FoundationTransportError : Swift.Error { + case invalidRequest + case invalidOutputStream + case timeout + public static func == (a: VideosdkWebSocket.FoundationTransportError, b: VideosdkWebSocket.FoundationTransportError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@objc public class FoundationTransport : ObjectiveC.NSObject, VideosdkWebSocket.Transport, Foundation.StreamDelegate { + public var usingTLS: Swift.Bool { + get + } + public init(streamConfiguration: ((Foundation.InputStream, Foundation.OutputStream) -> Swift.Void)? = nil) + @objc deinit + public func connect(url: Foundation.URL, timeout: Swift.Double = 10, certificatePinning: VideosdkWebSocket.CertificatePinning? = nil) + public func disconnect() + public func register(delegate: VideosdkWebSocket.TransportEventClient) + public func write(data: Foundation.Data, completion: @escaping ((Swift.Error?) -> ())) + @objc open func stream(_ aStream: Foundation.Stream, handle eventCode: Foundation.Stream.Event) +} +public enum TCPTransportError : Swift.Error { + case invalidRequest + public static func == (a: VideosdkWebSocket.TCPTransportError, b: VideosdkWebSocket.TCPTransportError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) +public class TCPTransport : VideosdkWebSocket.Transport { + public var usingTLS: Swift.Bool { + get + } + public init(connection: Network.NWConnection) + public init() + public func connect(url: Foundation.URL, timeout: Swift.Double = 10, certificatePinning: VideosdkWebSocket.CertificatePinning? = nil) + public func disconnect() + public func register(delegate: VideosdkWebSocket.TransportEventClient) + public func write(data: Foundation.Data, completion: @escaping ((Swift.Error?) -> ())) + @objc deinit +} +public enum ConnectionState { + case connected + case waiting + case cancelled + case failed(Swift.Error?) + case viability(Swift.Bool) + case shouldReconnect(Swift.Bool) + case receive(Foundation.Data) +} +public protocol TransportEventClient : AnyObject { + func connectionChanged(state: VideosdkWebSocket.ConnectionState) +} +public protocol Transport : AnyObject { + func register(delegate: VideosdkWebSocket.TransportEventClient) + func connect(url: Foundation.URL, timeout: Swift.Double, certificatePinning: VideosdkWebSocket.CertificatePinning?) + func disconnect() + func write(data: Foundation.Data, completion: @escaping ((Swift.Error?) -> ())) + var usingTLS: Swift.Bool { get } +} +extension VideosdkWebSocket.CloseCode : Swift.Equatable {} +extension VideosdkWebSocket.CloseCode : Swift.Hashable {} +extension VideosdkWebSocket.CloseCode : Swift.RawRepresentable {} +extension VideosdkWebSocket.FrameOpCode : Swift.Equatable {} +extension VideosdkWebSocket.FrameOpCode : Swift.Hashable {} +extension VideosdkWebSocket.FrameOpCode : Swift.RawRepresentable {} +extension VideosdkWebSocket.FoundationSecurityError : Swift.Equatable {} +extension VideosdkWebSocket.FoundationSecurityError : Swift.Hashable {} +extension VideosdkWebSocket.SecurityErrorCode : Swift.Equatable {} +extension VideosdkWebSocket.SecurityErrorCode : Swift.Hashable {} +extension VideosdkWebSocket.SecurityErrorCode : Swift.RawRepresentable {} +extension VideosdkWebSocket.ErrorType : Swift.Equatable {} +extension VideosdkWebSocket.ErrorType : Swift.Hashable {} +extension VideosdkWebSocket.FoundationTransportError : Swift.Equatable {} +extension VideosdkWebSocket.FoundationTransportError : Swift.Hashable {} +extension VideosdkWebSocket.TCPTransportError : Swift.Equatable {} +extension VideosdkWebSocket.TCPTransportError : Swift.Hashable {} diff --git a/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.swiftdoc new file mode 100644 index 0000000..05881dc Binary files /dev/null and b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.swiftinterface new file mode 100644 index 0000000..ec56bf5 --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -0,0 +1,435 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) +// swift-module-flags: -target arm64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name VideosdkWebSocket +// swift-module-flags-ignorable: -enable-bare-slash-regex +import CommonCrypto +import Foundation +import Network +import Swift +import _Concurrency +import _StringProcessing +import zlib +public protocol CompressionHandler { + func load(headers: [Swift.String : Swift.String]) + func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + func compress(data: Foundation.Data) -> Foundation.Data? +} +public class WSCompression : VideosdkWebSocket.CompressionHandler { + public init() + public func load(headers: [Swift.String : Swift.String]) + public func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + public func compress(data: Foundation.Data) -> Foundation.Data? + @objc deinit +} +public protocol EngineDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.WebSocketEvent) +} +public protocol Engine { + func register(delegate: VideosdkWebSocket.EngineDelegate) + func start(request: Foundation.URLRequest) + func stop(closeCode: Swift.UInt16) + func forceStop() + func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode, completion: (() -> ())?) + func write(string: Swift.String, completion: (() -> ())?) +} +@objc @_inheritsConvenienceInitializers @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +public class NativeEngine : ObjectiveC.NSObject, VideosdkWebSocket.Engine, Foundation.URLSessionDataDelegate, Foundation.URLSessionWebSocketDelegate { + public func register(delegate: VideosdkWebSocket.EngineDelegate) + public func start(request: Foundation.URLRequest) + public func stop(closeCode: Swift.UInt16) + public func forceStop() + public func write(string: Swift.String, completion: (() -> ())?) + public func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode, completion: (() -> ())?) + @objc public func urlSession(_ session: Foundation.URLSession, webSocketTask: Foundation.URLSessionWebSocketTask, didOpenWithProtocol protocol: Swift.String?) + @objc public func urlSession(_ session: Foundation.URLSession, webSocketTask: Foundation.URLSessionWebSocketTask, didCloseWith closeCode: Foundation.URLSessionWebSocketTask.CloseCode, reason: Foundation.Data?) + @objc override dynamic public init() + @objc deinit +} +public class WSEngine : VideosdkWebSocket.Engine, VideosdkWebSocket.TransportEventClient, VideosdkWebSocket.FramerEventClient, VideosdkWebSocket.FrameCollectorDelegate, VideosdkWebSocket.HTTPHandlerDelegate { + public var respondToPingWithPong: Swift.Bool + public init(transport: VideosdkWebSocket.Transport, certPinner: VideosdkWebSocket.CertificatePinning? = nil, headerValidator: VideosdkWebSocket.HeaderValidator = FoundationSecurity(), httpHandler: VideosdkWebSocket.HTTPHandler = FoundationHTTPHandler(), framer: VideosdkWebSocket.Framer = WSFramer(), compressionHandler: VideosdkWebSocket.CompressionHandler? = nil) + public func register(delegate: VideosdkWebSocket.EngineDelegate) + public func start(request: Foundation.URLRequest) + public func stop(closeCode: Swift.UInt16 = CloseCode.normal.rawValue) + public func forceStop() + public func write(string: Swift.String, completion: (() -> ())?) + public func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode, completion: (() -> ())?) + public func connectionChanged(state: VideosdkWebSocket.ConnectionState) + public func didReceiveHTTP(event: VideosdkWebSocket.HTTPEvent) + public func frameProcessed(event: VideosdkWebSocket.FrameEvent) + public func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + public func didForm(event: VideosdkWebSocket.FrameCollector.Event) + @objc deinit +} +public class FoundationHTTPHandler : VideosdkWebSocket.HTTPHandler { + public init() + public func convert(request: Foundation.URLRequest) -> Foundation.Data + public func parse(data: Foundation.Data) -> Swift.Int + public func register(delegate: VideosdkWebSocket.HTTPHandlerDelegate) + @objc deinit +} +@_hasMissingDesignatedInitializers public class FoundationHTTPServerHandler : VideosdkWebSocket.HTTPServerHandler { + public func register(delegate: VideosdkWebSocket.HTTPServerDelegate) + public func createResponse(headers: [Swift.String : Swift.String]) -> Foundation.Data + public func parse(data: Foundation.Data) + @objc deinit +} +public protocol FrameCollectorDelegate : AnyObject { + func didForm(event: VideosdkWebSocket.FrameCollector.Event) + func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? +} +@_hasMissingDesignatedInitializers public class FrameCollector { + public enum Event { + case text(Swift.String) + case binary(Foundation.Data) + case pong(Foundation.Data?) + case ping(Foundation.Data?) + case error(Swift.Error) + case closed(Swift.String, Swift.UInt16) + } + public func add(frame: VideosdkWebSocket.Frame) + @objc deinit +} +public enum CloseCode : Swift.UInt16 { + case normal + case goingAway + case protocolError + case protocolUnhandledType + case noStatusReceived + case encoding + case policyViolated + case messageTooBig + public init?(rawValue: Swift.UInt16) + public typealias RawValue = Swift.UInt16 + public var rawValue: Swift.UInt16 { + get + } +} +public enum FrameOpCode : Swift.UInt8 { + case continueFrame + case textFrame + case binaryFrame + case connectionClose + case ping + case pong + case unknown + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } +} +public struct Frame { +} +public enum FrameEvent { + case frame(VideosdkWebSocket.Frame) + case error(Swift.Error) +} +public protocol FramerEventClient : AnyObject { + func frameProcessed(event: VideosdkWebSocket.FrameEvent) +} +public protocol Framer { + func add(data: Foundation.Data) + func register(delegate: VideosdkWebSocket.FramerEventClient) + func createWriteFrame(opcode: VideosdkWebSocket.FrameOpCode, payload: Foundation.Data, isCompressed: Swift.Bool) -> Foundation.Data + func updateCompression(supports: Swift.Bool) + func supportsCompression() -> Swift.Bool +} +public class WSFramer : VideosdkWebSocket.Framer { + public var compressionEnabled: Swift.Bool + public init(isServer: Swift.Bool = false) + public func updateCompression(supports: Swift.Bool) + public func supportsCompression() -> Swift.Bool + public func add(data: Foundation.Data) + public func register(delegate: VideosdkWebSocket.FramerEventClient) + public func createWriteFrame(opcode: VideosdkWebSocket.FrameOpCode, payload: Foundation.Data, isCompressed: Swift.Bool) -> Foundation.Data + @objc deinit +} +public protocol MyWSArrayType { +} +extension Swift.UInt8 : VideosdkWebSocket.MyWSArrayType { +} +extension Swift.Array where Element : Swift.UnsignedInteger, Element : VideosdkWebSocket.MyWSArrayType { + public func readUint16(offset: Swift.Int) -> Swift.UInt16 + public func readUint64(offset: Swift.Int) -> Swift.UInt64 + public func unmaskData(maskStart: Swift.Int, offset: Swift.Int, length: Swift.Int) -> Foundation.Data +} +public func writeUint16(_ buffer: inout [Swift.UInt8], offset: Swift.Int, value: Swift.UInt16) +public func writeUint32(_ buffer: inout [Swift.UInt8], offset: Swift.Int, value: Swift.UInt32) +public func writeUint64(_ buffer: inout [Swift.UInt8], offset: Swift.Int, value: Swift.UInt64) +public enum HTTPUpgradeError : Swift.Error { + case notAnUpgrade(Swift.Int, [Swift.String : Swift.String]) + case invalidData +} +public struct HTTPWSHeader { + public static func createUpgrade(request: Foundation.URLRequest, supportsCompression: Swift.Bool, secKeyValue: Swift.String) -> Foundation.URLRequest + public static func generateWebSocketKey() -> Swift.String +} +public enum HTTPEvent { + case success([Swift.String : Swift.String]) + case failure(Swift.Error) +} +public protocol HTTPHandlerDelegate : AnyObject { + func didReceiveHTTP(event: VideosdkWebSocket.HTTPEvent) +} +public protocol HTTPHandler { + func register(delegate: VideosdkWebSocket.HTTPHandlerDelegate) + func convert(request: Foundation.URLRequest) -> Foundation.Data + func parse(data: Foundation.Data) -> Swift.Int +} +public protocol HTTPServerDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.HTTPEvent) +} +public protocol HTTPServerHandler { + func register(delegate: VideosdkWebSocket.HTTPServerDelegate) + func parse(data: Foundation.Data) + func createResponse(headers: [Swift.String : Swift.String]) -> Foundation.Data +} +public struct URLParts { +} +extension Foundation.URL { + public var isTLSScheme: Swift.Bool { + get + } + public func getParts() -> VideosdkWebSocket.URLParts? +} +public class StringHTTPHandler : VideosdkWebSocket.HTTPHandler { + public init() + public func convert(request: Foundation.URLRequest) -> Foundation.Data + public func parse(data: Foundation.Data) -> Swift.Int + public func register(delegate: VideosdkWebSocket.HTTPHandlerDelegate) + @objc deinit +} +public enum FoundationSecurityError : Swift.Error { + case invalidRequest + public static func == (a: VideosdkWebSocket.FoundationSecurityError, b: VideosdkWebSocket.FoundationSecurityError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public class FoundationSecurity { + public init(allowSelfSigned: Swift.Bool = false) + @objc deinit +} +extension VideosdkWebSocket.FoundationSecurity : VideosdkWebSocket.CertificatePinning { + public func evaluateTrust(trust: Security.SecTrust, domain: Swift.String?, completion: ((VideosdkWebSocket.PinningState) -> ())) +} +extension VideosdkWebSocket.FoundationSecurity : VideosdkWebSocket.HeaderValidator { + public func validate(headers: [Swift.String : Swift.String], key: Swift.String) -> Swift.Error? +} +public enum SecurityErrorCode : Swift.UInt16 { + case acceptFailed + case pinningFailed + public init?(rawValue: Swift.UInt16) + public typealias RawValue = Swift.UInt16 + public var rawValue: Swift.UInt16 { + get + } +} +public enum PinningState { + case success + case failed(CoreFoundation.CFError?) +} +public protocol CertificatePinning : AnyObject { + func evaluateTrust(trust: Security.SecTrust, domain: Swift.String?, completion: ((VideosdkWebSocket.PinningState) -> ())) +} +public protocol HeaderValidator : AnyObject { + func validate(headers: [Swift.String : Swift.String], key: Swift.String) -> Swift.Error? +} +public enum ConnectionEvent { + case connected([Swift.String : Swift.String]) + case disconnected(Swift.String, Swift.UInt16) + case text(Swift.String) + case binary(Foundation.Data) + case pong(Foundation.Data?) + case ping(Foundation.Data?) + case error(Swift.Error) +} +public protocol Connection { + func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode) +} +public protocol ConnectionDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.ServerEvent) +} +public enum ServerEvent { + case connected(VideosdkWebSocket.Connection, [Swift.String : Swift.String]) + case disconnected(VideosdkWebSocket.Connection, Swift.String, Swift.UInt16) + case text(VideosdkWebSocket.Connection, Swift.String) + case binary(VideosdkWebSocket.Connection, Foundation.Data) + case pong(VideosdkWebSocket.Connection, Foundation.Data?) + case ping(VideosdkWebSocket.Connection, Foundation.Data?) +} +public protocol Server { + func start(address: Swift.String, port: Swift.UInt16) -> Swift.Error? +} +@available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) +@available(watchOS, unavailable) +public class WebSocketServer : VideosdkWebSocket.Server, VideosdkWebSocket.ConnectionDelegate { + public var onEvent: ((VideosdkWebSocket.ServerEvent) -> Swift.Void)? + public init() + public func start(address: Swift.String, port: Swift.UInt16) -> Swift.Error? + public func didReceive(event: VideosdkWebSocket.ServerEvent) + @objc deinit +} +@_hasMissingDesignatedInitializers @available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) +public class ServerConnection : VideosdkWebSocket.Connection, VideosdkWebSocket.HTTPServerDelegate, VideosdkWebSocket.FramerEventClient, VideosdkWebSocket.FrameCollectorDelegate, VideosdkWebSocket.TransportEventClient { + public var onEvent: ((VideosdkWebSocket.ConnectionEvent) -> Swift.Void)? + weak public var delegate: VideosdkWebSocket.ConnectionDelegate? + public func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode) + public func connectionChanged(state: VideosdkWebSocket.ConnectionState) + public func didReceive(event: VideosdkWebSocket.HTTPEvent) + public func frameProcessed(event: VideosdkWebSocket.FrameEvent) + public func didForm(event: VideosdkWebSocket.FrameCollector.Event) + public func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + @objc deinit +} +public enum ErrorType : Swift.Error { + case compressionError + case securityError + case protocolError + case serverError + public static func == (a: VideosdkWebSocket.ErrorType, b: VideosdkWebSocket.ErrorType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct WSError : Swift.Error { + public let type: VideosdkWebSocket.ErrorType + public let message: Swift.String + public let code: Swift.UInt16 + public init(type: VideosdkWebSocket.ErrorType, message: Swift.String, code: Swift.UInt16) +} +public protocol WebSocketClient : AnyObject { + func connect() + func disconnect(closeCode: Swift.UInt16) + func write(string: Swift.String, completion: (() -> ())?) + func write(stringData: Foundation.Data, completion: (() -> ())?) + func write(data: Foundation.Data, completion: (() -> ())?) + func write(ping: Foundation.Data, completion: (() -> ())?) + func write(pong: Foundation.Data, completion: (() -> ())?) +} +extension VideosdkWebSocket.WebSocketClient { + public func write(string: Swift.String) + public func write(data: Foundation.Data) + public func write(ping: Foundation.Data) + public func write(pong: Foundation.Data) + public func disconnect() +} +public enum WebSocketEvent { + case connected([Swift.String : Swift.String]) + case disconnected(Swift.String, Swift.UInt16) + case text(Swift.String) + case binary(Foundation.Data) + case pong(Foundation.Data?) + case ping(Foundation.Data?) + case error(Swift.Error?) + case viabilityChanged(Swift.Bool) + case reconnectSuggested(Swift.Bool) + case cancelled +} +public protocol WebSocketDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.WebSocketEvent, client: VideosdkWebSocket.WebSocketClient) +} +open class WebSocket : VideosdkWebSocket.WebSocketClient, VideosdkWebSocket.EngineDelegate { + weak public var delegate: VideosdkWebSocket.WebSocketDelegate? + public var onEvent: ((VideosdkWebSocket.WebSocketEvent) -> Swift.Void)? + public var request: Foundation.URLRequest + public var callbackQueue: Dispatch.DispatchQueue + public var respondToPingWithPong: Swift.Bool { + get + set + } + public init(request: Foundation.URLRequest, engine: VideosdkWebSocket.Engine) + convenience public init(request: Foundation.URLRequest, certPinner: VideosdkWebSocket.CertificatePinning? = FoundationSecurity(), compressionHandler: VideosdkWebSocket.CompressionHandler? = nil, useCustomEngine: Swift.Bool = true) + public func connect() + public func disconnect(closeCode: Swift.UInt16 = CloseCode.normal.rawValue) + public func forceDisconnect() + public func write(data: Foundation.Data, completion: (() -> ())?) + public func write(string: Swift.String, completion: (() -> ())?) + public func write(stringData: Foundation.Data, completion: (() -> ())?) + public func write(ping: Foundation.Data, completion: (() -> ())?) + public func write(pong: Foundation.Data, completion: (() -> ())?) + public func didReceive(event: VideosdkWebSocket.WebSocketEvent) + @objc deinit +} +public enum FoundationTransportError : Swift.Error { + case invalidRequest + case invalidOutputStream + case timeout + public static func == (a: VideosdkWebSocket.FoundationTransportError, b: VideosdkWebSocket.FoundationTransportError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@objc public class FoundationTransport : ObjectiveC.NSObject, VideosdkWebSocket.Transport, Foundation.StreamDelegate { + public var usingTLS: Swift.Bool { + get + } + public init(streamConfiguration: ((Foundation.InputStream, Foundation.OutputStream) -> Swift.Void)? = nil) + @objc deinit + public func connect(url: Foundation.URL, timeout: Swift.Double = 10, certificatePinning: VideosdkWebSocket.CertificatePinning? = nil) + public func disconnect() + public func register(delegate: VideosdkWebSocket.TransportEventClient) + public func write(data: Foundation.Data, completion: @escaping ((Swift.Error?) -> ())) + @objc open func stream(_ aStream: Foundation.Stream, handle eventCode: Foundation.Stream.Event) +} +public enum TCPTransportError : Swift.Error { + case invalidRequest + public static func == (a: VideosdkWebSocket.TCPTransportError, b: VideosdkWebSocket.TCPTransportError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) +public class TCPTransport : VideosdkWebSocket.Transport { + public var usingTLS: Swift.Bool { + get + } + public init(connection: Network.NWConnection) + public init() + public func connect(url: Foundation.URL, timeout: Swift.Double = 10, certificatePinning: VideosdkWebSocket.CertificatePinning? = nil) + public func disconnect() + public func register(delegate: VideosdkWebSocket.TransportEventClient) + public func write(data: Foundation.Data, completion: @escaping ((Swift.Error?) -> ())) + @objc deinit +} +public enum ConnectionState { + case connected + case waiting + case cancelled + case failed(Swift.Error?) + case viability(Swift.Bool) + case shouldReconnect(Swift.Bool) + case receive(Foundation.Data) +} +public protocol TransportEventClient : AnyObject { + func connectionChanged(state: VideosdkWebSocket.ConnectionState) +} +public protocol Transport : AnyObject { + func register(delegate: VideosdkWebSocket.TransportEventClient) + func connect(url: Foundation.URL, timeout: Swift.Double, certificatePinning: VideosdkWebSocket.CertificatePinning?) + func disconnect() + func write(data: Foundation.Data, completion: @escaping ((Swift.Error?) -> ())) + var usingTLS: Swift.Bool { get } +} +extension VideosdkWebSocket.CloseCode : Swift.Equatable {} +extension VideosdkWebSocket.CloseCode : Swift.Hashable {} +extension VideosdkWebSocket.CloseCode : Swift.RawRepresentable {} +extension VideosdkWebSocket.FrameOpCode : Swift.Equatable {} +extension VideosdkWebSocket.FrameOpCode : Swift.Hashable {} +extension VideosdkWebSocket.FrameOpCode : Swift.RawRepresentable {} +extension VideosdkWebSocket.FoundationSecurityError : Swift.Equatable {} +extension VideosdkWebSocket.FoundationSecurityError : Swift.Hashable {} +extension VideosdkWebSocket.SecurityErrorCode : Swift.Equatable {} +extension VideosdkWebSocket.SecurityErrorCode : Swift.Hashable {} +extension VideosdkWebSocket.SecurityErrorCode : Swift.RawRepresentable {} +extension VideosdkWebSocket.ErrorType : Swift.Equatable {} +extension VideosdkWebSocket.ErrorType : Swift.Hashable {} +extension VideosdkWebSocket.FoundationTransportError : Swift.Equatable {} +extension VideosdkWebSocket.FoundationTransportError : Swift.Hashable {} +extension VideosdkWebSocket.TCPTransportError : Swift.Equatable {} +extension VideosdkWebSocket.TCPTransportError : Swift.Hashable {} diff --git a/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.abi.json b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.abi.json new file mode 100644 index 0000000..7a0c5de --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -0,0 +1,18610 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CompressionHandler", + "printedName": "CompressionHandler", + "children": [ + { + "kind": "Function", + "name": "load", + "printedName": "load(headers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18CompressionHandlerP4load7headersySDyS2SG_tF", + "mangledName": "$s17VideosdkWebSocket18CompressionHandlerP4load7headersySDyS2SG_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.CompressionHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decompress", + "printedName": "decompress(data:isFinal:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18CompressionHandlerP10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "mangledName": "$s17VideosdkWebSocket18CompressionHandlerP10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.CompressionHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compress", + "printedName": "compress(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18CompressionHandlerP8compress4data10Foundation4DataVSgAH_tF", + "mangledName": "$s17VideosdkWebSocket18CompressionHandlerP8compress4data10Foundation4DataVSgAH_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.CompressionHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket18CompressionHandlerP", + "mangledName": "$s17VideosdkWebSocket18CompressionHandlerP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "zlib", + "printedName": "zlib", + "declKind": "Import", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "TypeDecl", + "name": "WSCompression", + "printedName": "WSCompression", + "children": [ + { + "kind": "Var", + "name": "headerWSExtensionName", + "printedName": "headerWSExtensionName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket13WSCompressionC21headerWSExtensionNameSSvp", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC21headerWSExtensionNameSSvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC21headerWSExtensionNameSSvg", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC21headerWSExtensionNameSSvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "decompressor", + "printedName": "decompressor", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Decompressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Decompressor", + "printedName": "VideosdkWebSocket.Decompressor", + "usr": "s:17VideosdkWebSocket12DecompressorC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvp", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Decompressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Decompressor", + "printedName": "VideosdkWebSocket.Decompressor", + "usr": "s:17VideosdkWebSocket12DecompressorC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvg", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Decompressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Decompressor", + "printedName": "VideosdkWebSocket.Decompressor", + "usr": "s:17VideosdkWebSocket12DecompressorC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvs", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvM", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC12decompressorAA12DecompressorCSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "compressor", + "printedName": "compressor", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Compressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Compressor", + "printedName": "VideosdkWebSocket.Compressor", + "usr": "s:17VideosdkWebSocket10CompressorC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvp", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Compressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Compressor", + "printedName": "VideosdkWebSocket.Compressor", + "usr": "s:17VideosdkWebSocket10CompressorC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvg", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Compressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Compressor", + "printedName": "VideosdkWebSocket.Compressor", + "usr": "s:17VideosdkWebSocket10CompressorC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvs", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvM", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC10compressorAA10CompressorCSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "decompressorTakeOver", + "printedName": "decompressorTakeOver", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvp", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvg", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvs", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvM", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC20decompressorTakeOverSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "compressorTakeOver", + "printedName": "compressorTakeOver", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvp", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvg", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvs", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvM", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC18compressorTakeOverSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "WSCompression", + "printedName": "VideosdkWebSocket.WSCompression", + "usr": "s:17VideosdkWebSocket13WSCompressionC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket13WSCompressionCACycfc", + "mangledName": "$s17VideosdkWebSocket13WSCompressionCACycfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load(headers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket13WSCompressionC4load7headersySDyS2SG_tF", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC4load7headersySDyS2SG_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decompress", + "printedName": "decompress(data:isFinal:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket13WSCompressionC10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compress", + "printedName": "compress(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket13WSCompressionC8compress4data10Foundation4DataVSgAH_tF", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC8compress4data10Foundation4DataVSgAH_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket13WSCompressionC", + "mangledName": "$s17VideosdkWebSocket13WSCompressionC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CompressionHandler", + "printedName": "CompressionHandler", + "usr": "s:17VideosdkWebSocket18CompressionHandlerP", + "mangledName": "$s17VideosdkWebSocket18CompressionHandlerP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Decompressor", + "printedName": "Decompressor", + "children": [ + { + "kind": "Var", + "name": "strm", + "printedName": "strm", + "children": [ + { + "kind": "TypeNominal", + "name": "z_stream_s", + "printedName": "zlib.z_stream_s", + "usr": "c:@S@z_stream_s" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12DecompressorC4strm026_1E8A15CDB922173425E5369F4J5E3B16LLSo10z_stream_sVvp", + "mangledName": "$s17VideosdkWebSocket12DecompressorC4strm026_1E8A15CDB922173425E5369F4J5E3B16LLSo10z_stream_sVvp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "buffer", + "printedName": "buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12DecompressorC6buffer026_1E8A15CDB922173425E5369F4J5E3B16LLSays5UInt8VGvp", + "mangledName": "$s17VideosdkWebSocket12DecompressorC6buffer026_1E8A15CDB922173425E5369F4J5E3B16LLSays5UInt8VGvp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Var", + "name": "inflateInitialized", + "printedName": "inflateInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12DecompressorC18inflateInitialized026_1E8A15CDB922173425E5369F4K5E3B16LLSbvp", + "mangledName": "$s17VideosdkWebSocket12DecompressorC18inflateInitialized026_1E8A15CDB922173425E5369F4K5E3B16LLSbvp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 2, + "hasStorage": true + }, + { + "kind": "Var", + "name": "windowBits", + "printedName": "windowBits", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12DecompressorC10windowBits026_1E8A15CDB922173425E5369F4K5E3B16LLSivp", + "mangledName": "$s17VideosdkWebSocket12DecompressorC10windowBits026_1E8A15CDB922173425E5369F4K5E3B16LLSivp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(windowBits:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Decompressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Decompressor", + "printedName": "VideosdkWebSocket.Decompressor", + "usr": "s:17VideosdkWebSocket12DecompressorC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket12DecompressorC10windowBitsACSgSi_tcfc", + "mangledName": "$s17VideosdkWebSocket12DecompressorC10windowBitsACSgSi_tcfc", + "moduleName": "VideosdkWebSocket", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12DecompressorC5resetyyKF", + "mangledName": "$s17VideosdkWebSocket12DecompressorC5resetyyKF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decompress", + "printedName": "decompress(_:finish:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12DecompressorC10decompress_6finish10Foundation4DataVAH_SbtKF", + "mangledName": "$s17VideosdkWebSocket12DecompressorC10decompress_6finish10Foundation4DataVAH_SbtKF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decompress", + "printedName": "decompress(bytes:count:finish:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "UnsafePointer", + "printedName": "Swift.UnsafePointer", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:SP" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12DecompressorC10decompress5bytes5count6finish10Foundation4DataVSPys5UInt8VG_SiSbtKF", + "mangledName": "$s17VideosdkWebSocket12DecompressorC10decompress5bytes5count6finish10Foundation4DataVSPys5UInt8VG_SiSbtKF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket12DecompressorC", + "mangledName": "$s17VideosdkWebSocket12DecompressorC", + "moduleName": "VideosdkWebSocket", + "isOpen": true + }, + { + "kind": "TypeDecl", + "name": "Compressor", + "printedName": "Compressor", + "children": [ + { + "kind": "Var", + "name": "strm", + "printedName": "strm", + "children": [ + { + "kind": "TypeNominal", + "name": "z_stream_s", + "printedName": "zlib.z_stream_s", + "usr": "c:@S@z_stream_s" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket10CompressorC4strm026_1E8A15CDB922173425E5369F4J5E3B16LLSo10z_stream_sVvp", + "mangledName": "$s17VideosdkWebSocket10CompressorC4strm026_1E8A15CDB922173425E5369F4J5E3B16LLSo10z_stream_sVvp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "buffer", + "printedName": "buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket10CompressorC6buffer026_1E8A15CDB922173425E5369F4J5E3B16LLSays5UInt8VGvp", + "mangledName": "$s17VideosdkWebSocket10CompressorC6buffer026_1E8A15CDB922173425E5369F4J5E3B16LLSays5UInt8VGvp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Var", + "name": "deflateInitialized", + "printedName": "deflateInitialized", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket10CompressorC18deflateInitialized026_1E8A15CDB922173425E5369F4K5E3B16LLSbvp", + "mangledName": "$s17VideosdkWebSocket10CompressorC18deflateInitialized026_1E8A15CDB922173425E5369F4K5E3B16LLSbvp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 2, + "hasStorage": true + }, + { + "kind": "Var", + "name": "windowBits", + "printedName": "windowBits", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket10CompressorC10windowBits026_1E8A15CDB922173425E5369F4K5E3B16LLSivp", + "mangledName": "$s17VideosdkWebSocket10CompressorC10windowBits026_1E8A15CDB922173425E5369F4K5E3B16LLSivp", + "moduleName": "VideosdkWebSocket", + "isInternal": true, + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(windowBits:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.Compressor?", + "children": [ + { + "kind": "TypeNominal", + "name": "Compressor", + "printedName": "VideosdkWebSocket.Compressor", + "usr": "s:17VideosdkWebSocket10CompressorC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket10CompressorC10windowBitsACSgSi_tcfc", + "mangledName": "$s17VideosdkWebSocket10CompressorC10windowBitsACSgSi_tcfc", + "moduleName": "VideosdkWebSocket", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket10CompressorC5resetyyKF", + "mangledName": "$s17VideosdkWebSocket10CompressorC5resetyyKF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compress", + "printedName": "compress(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket10CompressorC8compressy10Foundation4DataVAGKF", + "mangledName": "$s17VideosdkWebSocket10CompressorC8compressy10Foundation4DataVAGKF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket10CompressorC", + "mangledName": "$s17VideosdkWebSocket10CompressorC", + "moduleName": "VideosdkWebSocket", + "isOpen": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EngineDelegate", + "printedName": "EngineDelegate", + "children": [ + { + "kind": "Function", + "name": "didReceive", + "printedName": "didReceive(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket14EngineDelegateP10didReceive5eventyAA0bC5EventO_tF", + "mangledName": "$s17VideosdkWebSocket14EngineDelegateP10didReceive5eventyAA0bC5EventO_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.EngineDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket14EngineDelegateP", + "mangledName": "$s17VideosdkWebSocket14EngineDelegateP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Engine", + "printedName": "Engine", + "children": [ + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EngineDelegate", + "printedName": "VideosdkWebSocket.EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6EngineP8register8delegateyAA0D8Delegate_p_tF", + "mangledName": "$s17VideosdkWebSocket6EngineP8register8delegateyAA0D8Delegate_p_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Engine>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6EngineP5start7requesty10Foundation10URLRequestV_tF", + "mangledName": "$s17VideosdkWebSocket6EngineP5start7requesty10Foundation10URLRequestV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Engine>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop(closeCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6EngineP4stop9closeCodeys6UInt16V_tF", + "mangledName": "$s17VideosdkWebSocket6EngineP4stop9closeCodeys6UInt16V_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Engine>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceStop", + "printedName": "forceStop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6EngineP9forceStopyyF", + "mangledName": "$s17VideosdkWebSocket6EngineP9forceStopyyF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Engine>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:opcode:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6EngineP5write4data6opcode10completiony10Foundation4DataV_AA11FrameOpCodeOyycSgtF", + "mangledName": "$s17VideosdkWebSocket6EngineP5write4data6opcode10completiony10Foundation4DataV_AA11FrameOpCodeOyycSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Engine>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(string:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6EngineP5write6string10completionySS_yycSgtF", + "mangledName": "$s17VideosdkWebSocket6EngineP5write6string10completionySS_yycSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Engine>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket6EngineP", + "mangledName": "$s17VideosdkWebSocket6EngineP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "NativeEngine", + "printedName": "NativeEngine", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.EngineDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.EngineDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "EngineDelegate", + "printedName": "VideosdkWebSocket.EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.EngineDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "EngineDelegate", + "printedName": "VideosdkWebSocket.EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC8delegateAA0E8Delegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EngineDelegate", + "printedName": "VideosdkWebSocket.EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12NativeEngineC8register8delegateyAA0E8Delegate_p_tF", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC8register8delegateyAA0E8Delegate_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12NativeEngineC5start7requesty10Foundation10URLRequestV_tF", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC5start7requesty10Foundation10URLRequestV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop(closeCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12NativeEngineC4stop9closeCodeys6UInt16V_tF", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC4stop9closeCodeys6UInt16V_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceStop", + "printedName": "forceStop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12NativeEngineC9forceStopyyF", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC9forceStopyyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(string:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12NativeEngineC5write6string10completionySS_yycSgtF", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC5write6string10completionySS_yycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:opcode:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12NativeEngineC5write4data6opcode10completiony10Foundation4DataV_AA11FrameOpCodeOyycSgtF", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC5write4data6opcode10completiony10Foundation4DataV_AA11FrameOpCodeOyycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "urlSession", + "printedName": "urlSession(_:webSocketTask:didOpenWithProtocol:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLSession", + "printedName": "Foundation.URLSession", + "usr": "c:objc(cs)NSURLSession" + }, + { + "kind": "TypeNominal", + "name": "URLSessionWebSocketTask", + "printedName": "Foundation.URLSessionWebSocketTask", + "usr": "c:objc(cs)NSURLSessionWebSocketTask" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@VideosdkWebSocket@objc(cs)NativeEngine(im)URLSession:webSocketTask:didOpenWithProtocol:", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC10urlSession_03webC4Task19didOpenWithProtocolySo12NSURLSessionC_So0nbcI0CSSSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "objc_name": "URLSession:webSocketTask:didOpenWithProtocol:", + "declAttributes": [ + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "urlSession", + "printedName": "urlSession(_:webSocketTask:didCloseWith:reason:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLSession", + "printedName": "Foundation.URLSession", + "usr": "c:objc(cs)NSURLSession" + }, + { + "kind": "TypeNominal", + "name": "URLSessionWebSocketTask", + "printedName": "Foundation.URLSessionWebSocketTask", + "usr": "c:objc(cs)NSURLSessionWebSocketTask" + }, + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "Foundation.URLSessionWebSocketTask.CloseCode", + "usr": "c:@E@NSURLSessionWebSocketCloseCode" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@VideosdkWebSocket@objc(cs)NativeEngine(im)URLSession:webSocketTask:didCloseWithCode:reason:", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC10urlSession_03webC4Task12didCloseWith6reasonySo12NSURLSessionC_So0nbcI0CSo0nbcK4CodeV10Foundation4DataVSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "objc_name": "URLSession:webSocketTask:didCloseWithCode:reason:", + "declAttributes": [ + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "NativeEngine", + "printedName": "VideosdkWebSocket.NativeEngine", + "usr": "c:@M@VideosdkWebSocket@objc(cs)NativeEngine" + } + ], + "declKind": "Constructor", + "usr": "c:@M@VideosdkWebSocket@objc(cs)NativeEngine(im)init", + "mangledName": "$s17VideosdkWebSocket12NativeEngineCACycfc", + "moduleName": "VideosdkWebSocket", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@VideosdkWebSocket@objc(cs)NativeEngine", + "mangledName": "$s17VideosdkWebSocket12NativeEngineC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "intro_Macosx": "10.15", + "intro_iOS": "13.0", + "intro_tvOS": "13.0", + "intro_watchOS": "6.0", + "declAttributes": [ + "AccessControl", + "Available", + "Available", + "Available", + "Available", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Engine", + "printedName": "Engine", + "usr": "s:17VideosdkWebSocket6EngineP", + "mangledName": "$s17VideosdkWebSocket6EngineP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "WSEngine", + "printedName": "WSEngine", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.EngineDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.EngineDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "EngineDelegate", + "printedName": "VideosdkWebSocket.EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.EngineDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "EngineDelegate", + "printedName": "VideosdkWebSocket.EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket8WSEngineC8delegateAA14EngineDelegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "respondToPingWithPong", + "printedName": "respondToPingWithPong", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvp", + "mangledName": "$s17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvg", + "mangledName": "$s17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvs", + "mangledName": "$s17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvM", + "mangledName": "$s17VideosdkWebSocket8WSEngineC21respondToPingWithPongSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(transport:certPinner:headerValidator:httpHandler:framer:compressionHandler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WSEngine", + "printedName": "VideosdkWebSocket.WSEngine", + "usr": "s:17VideosdkWebSocket8WSEngineC" + }, + { + "kind": "TypeNominal", + "name": "Transport", + "printedName": "VideosdkWebSocket.Transport", + "usr": "s:17VideosdkWebSocket9TransportP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CertificatePinning?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificatePinning", + "printedName": "VideosdkWebSocket.CertificatePinning", + "usr": "s:17VideosdkWebSocket18CertificatePinningP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "HeaderValidator", + "printedName": "VideosdkWebSocket.HeaderValidator", + "hasDefaultArg": true, + "usr": "s:17VideosdkWebSocket15HeaderValidatorP" + }, + { + "kind": "TypeNominal", + "name": "HTTPHandler", + "printedName": "VideosdkWebSocket.HTTPHandler", + "hasDefaultArg": true, + "usr": "s:17VideosdkWebSocket11HTTPHandlerP" + }, + { + "kind": "TypeNominal", + "name": "Framer", + "printedName": "VideosdkWebSocket.Framer", + "hasDefaultArg": true, + "usr": "s:17VideosdkWebSocket6FramerP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CompressionHandler?", + "children": [ + { + "kind": "TypeNominal", + "name": "CompressionHandler", + "printedName": "VideosdkWebSocket.CompressionHandler", + "usr": "s:17VideosdkWebSocket18CompressionHandlerP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket8WSEngineC9transport10certPinner15headerValidator11httpHandler6framer011compressionK0AcA9Transport_p_AA18CertificatePinning_pSgAA06HeaderI0_pAA11HTTPHandler_pAA6Framer_pAA011CompressionK0_pSgtcfc", + "mangledName": "$s17VideosdkWebSocket8WSEngineC9transport10certPinner15headerValidator11httpHandler6framer011compressionK0AcA9Transport_p_AA18CertificatePinning_pSgAA06HeaderI0_pAA11HTTPHandler_pAA6Framer_pAA011CompressionK0_pSgtcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EngineDelegate", + "printedName": "VideosdkWebSocket.EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC8register8delegateyAA14EngineDelegate_p_tF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC8register8delegateyAA14EngineDelegate_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC5start7requesty10Foundation10URLRequestV_tF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC5start7requesty10Foundation10URLRequestV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop(closeCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "hasDefaultArg": true, + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC4stop9closeCodeys6UInt16V_tF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC4stop9closeCodeys6UInt16V_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceStop", + "printedName": "forceStop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC9forceStopyyF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC9forceStopyyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(string:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC5write6string10completionySS_yycSgtF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC5write6string10completionySS_yycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:opcode:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC5write4data6opcode10completiony10Foundation4DataV_AA11FrameOpCodeOyycSgtF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC5write4data6opcode10completiony10Foundation4DataV_AA11FrameOpCodeOyycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "connectionChanged", + "printedName": "connectionChanged(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC17connectionChanged5stateyAA15ConnectionStateO_tF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC17connectionChanged5stateyAA15ConnectionStateO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "didReceiveHTTP", + "printedName": "didReceiveHTTP(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC14didReceiveHTTP5eventyAA9HTTPEventO_tF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC14didReceiveHTTP5eventyAA9HTTPEventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "frameProcessed", + "printedName": "frameProcessed(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FrameEvent", + "printedName": "VideosdkWebSocket.FrameEvent", + "usr": "s:17VideosdkWebSocket10FrameEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC14frameProcessed5eventyAA10FrameEventO_tF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC14frameProcessed5eventyAA10FrameEventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decompress", + "printedName": "decompress(data:isFinal:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "didForm", + "printedName": "didForm(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSEngineC7didForm5eventyAA14FrameCollectorC5EventO_tF", + "mangledName": "$s17VideosdkWebSocket8WSEngineC7didForm5eventyAA14FrameCollectorC5EventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket8WSEngineC", + "mangledName": "$s17VideosdkWebSocket8WSEngineC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Engine", + "printedName": "Engine", + "usr": "s:17VideosdkWebSocket6EngineP", + "mangledName": "$s17VideosdkWebSocket6EngineP" + }, + { + "kind": "Conformance", + "name": "TransportEventClient", + "printedName": "TransportEventClient", + "usr": "s:17VideosdkWebSocket20TransportEventClientP", + "mangledName": "$s17VideosdkWebSocket20TransportEventClientP" + }, + { + "kind": "Conformance", + "name": "FramerEventClient", + "printedName": "FramerEventClient", + "usr": "s:17VideosdkWebSocket17FramerEventClientP", + "mangledName": "$s17VideosdkWebSocket17FramerEventClientP" + }, + { + "kind": "Conformance", + "name": "FrameCollectorDelegate", + "printedName": "FrameCollectorDelegate", + "usr": "s:17VideosdkWebSocket22FrameCollectorDelegateP", + "mangledName": "$s17VideosdkWebSocket22FrameCollectorDelegateP" + }, + { + "kind": "Conformance", + "name": "HTTPHandlerDelegate", + "printedName": "HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP", + "mangledName": "$s17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FoundationHTTPHandler", + "printedName": "FoundationHTTPHandler", + "children": [ + { + "kind": "Var", + "name": "buffer", + "printedName": "buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvp", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvg", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvs", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvM", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC6buffer0D04DataVvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPHandlerDelegate", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPHandlerDelegate", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC8delegateAA0E8Delegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationHTTPHandler", + "printedName": "VideosdkWebSocket.FoundationHTTPHandler", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerCACycfc", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerCACycfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "convert", + "printedName": "convert(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC7convert7request0D04DataVAF10URLRequestV_tF", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC7convert7request0D04DataVAF10URLRequestV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parse", + "printedName": "parse(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC5parse4dataSi0D04DataV_tF", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC5parse4dataSi0D04DataV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseContent", + "printedName": "parseContent(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC12parseContent4dataSb0D04DataV_tF", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC12parseContent4dataSb0D04DataV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPHandlerDelegate", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC8register8delegateyAA0E8Delegate_p_tF", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC8register8delegateyAA0E8Delegate_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket21FoundationHTTPHandlerC", + "mangledName": "$s17VideosdkWebSocket21FoundationHTTPHandlerC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "HTTPHandler", + "printedName": "HTTPHandler", + "usr": "s:17VideosdkWebSocket11HTTPHandlerP", + "mangledName": "$s17VideosdkWebSocket11HTTPHandlerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FoundationHTTPServerHandler", + "printedName": "FoundationHTTPServerHandler", + "children": [ + { + "kind": "Var", + "name": "buffer", + "printedName": "buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvp", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvg", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvs", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvM", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC6buffer0D04DataVvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.HTTPServerDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.HTTPServerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPServerDelegate", + "printedName": "VideosdkWebSocket.HTTPServerDelegate", + "usr": "s:17VideosdkWebSocket18HTTPServerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.HTTPServerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPServerDelegate", + "printedName": "VideosdkWebSocket.HTTPServerDelegate", + "usr": "s:17VideosdkWebSocket18HTTPServerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC8delegateAA0E8Delegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "getVerb", + "printedName": "getVerb", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC7getVerbSo8NSStringCvp", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC7getVerbSo8NSStringCvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC7getVerbSo8NSStringCvg", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC7getVerbSo8NSStringCvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPServerDelegate", + "printedName": "VideosdkWebSocket.HTTPServerDelegate", + "usr": "s:17VideosdkWebSocket18HTTPServerDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC8register8delegateyAA0E8Delegate_p_tF", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC8register8delegateyAA0E8Delegate_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(headers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC14createResponse7headers0D04DataVSDyS2SG_tF", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC14createResponse7headers0D04DataVSDyS2SG_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parse", + "printedName": "parse(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC5parse4datay0D04DataV_tF", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC5parse4datay0D04DataV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseContent", + "printedName": "parseContent(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC12parseContent4dataSb0D04DataV_tF", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC12parseContent4dataSb0D04DataV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationHTTPServerHandler", + "printedName": "VideosdkWebSocket.FoundationHTTPServerHandler", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerCACycfc", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerCACycfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket27FoundationHTTPServerHandlerC", + "mangledName": "$s17VideosdkWebSocket27FoundationHTTPServerHandlerC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "HTTPServerHandler", + "printedName": "HTTPServerHandler", + "usr": "s:17VideosdkWebSocket17HTTPServerHandlerP", + "mangledName": "$s17VideosdkWebSocket17HTTPServerHandlerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FrameCollectorDelegate", + "printedName": "FrameCollectorDelegate", + "children": [ + { + "kind": "Function", + "name": "didForm", + "printedName": "didForm(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket22FrameCollectorDelegateP7didForm5eventyAA0dE0C5EventO_tF", + "mangledName": "$s17VideosdkWebSocket22FrameCollectorDelegateP7didForm5eventyAA0dE0C5EventO_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.FrameCollectorDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decompress", + "printedName": "decompress(data:isFinal:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket22FrameCollectorDelegateP10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "mangledName": "$s17VideosdkWebSocket22FrameCollectorDelegateP10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.FrameCollectorDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket22FrameCollectorDelegateP", + "mangledName": "$s17VideosdkWebSocket22FrameCollectorDelegateP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "FrameCollector", + "printedName": "FrameCollector", + "children": [ + { + "kind": "TypeDecl", + "name": "Event", + "printedName": "Event", + "children": [ + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameCollector.Event.Type) -> (Swift.String) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameCollector.Event.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO4textyAESScAEmF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5EventO4textyAESScAEmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "binary", + "printedName": "binary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameCollector.Event.Type) -> (Foundation.Data) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameCollector.Event.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO6binaryyAE10Foundation4DataVcAEmF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5EventO6binaryyAE10Foundation4DataVcAEmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "pong", + "printedName": "pong", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameCollector.Event.Type) -> (Foundation.Data?) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data?) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameCollector.Event.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO4pongyAE10Foundation4DataVSgcAEmF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5EventO4pongyAE10Foundation4DataVSgcAEmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "ping", + "printedName": "ping", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameCollector.Event.Type) -> (Foundation.Data?) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data?) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameCollector.Event.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO4pingyAE10Foundation4DataVSgcAEmF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5EventO4pingyAE10Foundation4DataVSgcAEmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameCollector.Event.Type) -> (Swift.Error) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameCollector.Event.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO5erroryAEs5Error_pcAEmF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5EventO5erroryAEs5Error_pcAEmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "closed", + "printedName": "closed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameCollector.Event.Type) -> (Swift.String, Swift.UInt16) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.UInt16) -> VideosdkWebSocket.FrameCollector.Event", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.UInt16)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameCollector.Event.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO6closedyAESS_s6UInt16VtcAEmF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5EventO6closedyAESS_s6UInt16VtcAEmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5EventO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.FrameCollectorDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.FrameCollectorDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameCollectorDelegate", + "printedName": "VideosdkWebSocket.FrameCollectorDelegate", + "usr": "s:17VideosdkWebSocket22FrameCollectorDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.FrameCollectorDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameCollectorDelegate", + "printedName": "VideosdkWebSocket.FrameCollectorDelegate", + "usr": "s:17VideosdkWebSocket22FrameCollectorDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC8delegateAA0dE8Delegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "buffer", + "printedName": "buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvp", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvg", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvs", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvM", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6buffer10Foundation4DataVvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "frameCount", + "printedName": "frameCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket14FrameCollectorC10frameCountSivp", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC10frameCountSivp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC10frameCountSivg", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC10frameCountSivg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC10frameCountSivs", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC10frameCountSivs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC10frameCountSivM", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC10frameCountSivM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isText", + "printedName": "isText", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6isTextSbvp", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6isTextSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6isTextSbvg", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6isTextSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6isTextSbvs", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6isTextSbvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC6isTextSbvM", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC6isTextSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "needsDecompression", + "printedName": "needsDecompression", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvp", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvg", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvs", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvM", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC18needsDecompressionSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Frame", + "printedName": "VideosdkWebSocket.Frame", + "usr": "s:17VideosdkWebSocket5FrameV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket14FrameCollectorC3add5frameyAA0D0V_tF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC3add5frameyAA0D0V_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5resetyyF", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC5resetyyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameCollector", + "printedName": "VideosdkWebSocket.FrameCollector", + "usr": "s:17VideosdkWebSocket14FrameCollectorC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket14FrameCollectorCACycfc", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorCACycfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket14FrameCollectorC", + "mangledName": "$s17VideosdkWebSocket14FrameCollectorC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "FinMask", + "printedName": "FinMask", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket7FinMasks5UInt8Vvp", + "mangledName": "$s17VideosdkWebSocket7FinMasks5UInt8Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "OpCodeMask", + "printedName": "OpCodeMask", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket10OpCodeMasks5UInt8Vvp", + "mangledName": "$s17VideosdkWebSocket10OpCodeMasks5UInt8Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "RSVMask", + "printedName": "RSVMask", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket7RSVMasks5UInt8Vvp", + "mangledName": "$s17VideosdkWebSocket7RSVMasks5UInt8Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "RSV1Mask", + "printedName": "RSV1Mask", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket8RSV1Masks5UInt8Vvp", + "mangledName": "$s17VideosdkWebSocket8RSV1Masks5UInt8Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "MaskMask", + "printedName": "MaskMask", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket04MaskD0s5UInt8Vvp", + "mangledName": "$s17VideosdkWebSocket04MaskD0s5UInt8Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "PayloadLenMask", + "printedName": "PayloadLenMask", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket14PayloadLenMasks5UInt8Vvp", + "mangledName": "$s17VideosdkWebSocket14PayloadLenMasks5UInt8Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "MaxFrameSize", + "printedName": "MaxFrameSize", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12MaxFrameSizeSivp", + "mangledName": "$s17VideosdkWebSocket12MaxFrameSizeSivp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true + }, + { + "kind": "TypeDecl", + "name": "CloseCode", + "printedName": "CloseCode", + "children": [ + { + "kind": "Var", + "name": "normal", + "printedName": "normal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO6normalyA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO6normalyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "goingAway", + "printedName": "goingAway", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO9goingAwayyA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO9goingAwayyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "protocolError", + "printedName": "protocolError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO13protocolErroryA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO13protocolErroryA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "protocolUnhandledType", + "printedName": "protocolUnhandledType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO21protocolUnhandledTypeyA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO21protocolUnhandledTypeyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "noStatusReceived", + "printedName": "noStatusReceived", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO16noStatusReceivedyA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO16noStatusReceivedyA2CmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "encoding", + "printedName": "encoding", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO8encodingyA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO8encodingyA2CmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "policyViolated", + "printedName": "policyViolated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO14policyViolatedyA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO14policyViolatedyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "messageTooBig", + "printedName": "messageTooBig", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.CloseCode.Type) -> VideosdkWebSocket.CloseCode", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.CloseCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9CloseCodeO13messageTooBigyA2CmF", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO13messageTooBigyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket9CloseCodeO8rawValues6UInt16Vvp", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO8rawValues6UInt16Vvp", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket9CloseCodeO8rawValues6UInt16Vvg", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO8rawValues6UInt16Vvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CloseCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "VideosdkWebSocket.CloseCode", + "usr": "s:17VideosdkWebSocket9CloseCodeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket9CloseCodeO8rawValueACSgs6UInt16V_tcfc", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO8rawValueACSgs6UInt16V_tcfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket9CloseCodeO", + "mangledName": "$s17VideosdkWebSocket9CloseCodeO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt16", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FrameOpCode", + "printedName": "FrameOpCode", + "children": [ + { + "kind": "Var", + "name": "continueFrame", + "printedName": "continueFrame", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameOpCode.Type) -> VideosdkWebSocket.FrameOpCode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameOpCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO08continueD0yA2CmF", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO08continueD0yA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "textFrame", + "printedName": "textFrame", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameOpCode.Type) -> VideosdkWebSocket.FrameOpCode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameOpCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO04textD0yA2CmF", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO04textD0yA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "binaryFrame", + "printedName": "binaryFrame", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameOpCode.Type) -> VideosdkWebSocket.FrameOpCode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameOpCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO06binaryD0yA2CmF", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO06binaryD0yA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "connectionClose", + "printedName": "connectionClose", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameOpCode.Type) -> VideosdkWebSocket.FrameOpCode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameOpCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO15connectionCloseyA2CmF", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO15connectionCloseyA2CmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "ping", + "printedName": "ping", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameOpCode.Type) -> VideosdkWebSocket.FrameOpCode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameOpCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO4pingyA2CmF", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO4pingyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "pong", + "printedName": "pong", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameOpCode.Type) -> VideosdkWebSocket.FrameOpCode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameOpCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO4pongyA2CmF", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO4pongyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameOpCode.Type) -> VideosdkWebSocket.FrameOpCode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameOpCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO7unknownyA2CmF", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO7unknownyA2CmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.FrameOpCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO8rawValues5UInt8Vvp", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO8rawValues5UInt8Vvp", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO8rawValues5UInt8Vvg", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO8rawValues5UInt8Vvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO", + "mangledName": "$s17VideosdkWebSocket11FrameOpCodeO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Frame", + "printedName": "Frame", + "children": [ + { + "kind": "Var", + "name": "isFin", + "printedName": "isFin", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket5FrameV5isFinSbvp", + "mangledName": "$s17VideosdkWebSocket5FrameV5isFinSbvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket5FrameV5isFinSbvg", + "mangledName": "$s17VideosdkWebSocket5FrameV5isFinSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "needsDecompression", + "printedName": "needsDecompression", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket5FrameV18needsDecompressionSbvp", + "mangledName": "$s17VideosdkWebSocket5FrameV18needsDecompressionSbvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket5FrameV18needsDecompressionSbvg", + "mangledName": "$s17VideosdkWebSocket5FrameV18needsDecompressionSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isMasked", + "printedName": "isMasked", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket5FrameV8isMaskedSbvp", + "mangledName": "$s17VideosdkWebSocket5FrameV8isMaskedSbvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket5FrameV8isMaskedSbvg", + "mangledName": "$s17VideosdkWebSocket5FrameV8isMaskedSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "opcode", + "printedName": "opcode", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket5FrameV6opcodeAA0D6OpCodeOvp", + "mangledName": "$s17VideosdkWebSocket5FrameV6opcodeAA0D6OpCodeOvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket5FrameV6opcodeAA0D6OpCodeOvg", + "mangledName": "$s17VideosdkWebSocket5FrameV6opcodeAA0D6OpCodeOvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "payloadLength", + "printedName": "payloadLength", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket5FrameV13payloadLengths6UInt64Vvp", + "mangledName": "$s17VideosdkWebSocket5FrameV13payloadLengths6UInt64Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket5FrameV13payloadLengths6UInt64Vvg", + "mangledName": "$s17VideosdkWebSocket5FrameV13payloadLengths6UInt64Vvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "payload", + "printedName": "payload", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket5FrameV7payload10Foundation4DataVvp", + "mangledName": "$s17VideosdkWebSocket5FrameV7payload10Foundation4DataVvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket5FrameV7payload10Foundation4DataVvg", + "mangledName": "$s17VideosdkWebSocket5FrameV7payload10Foundation4DataVvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "closeCode", + "printedName": "closeCode", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket5FrameV9closeCodes6UInt16Vvp", + "mangledName": "$s17VideosdkWebSocket5FrameV9closeCodes6UInt16Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket5FrameV9closeCodes6UInt16Vvg", + "mangledName": "$s17VideosdkWebSocket5FrameV9closeCodes6UInt16Vvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(isFin:needsDecompression:isMasked:opcode:payloadLength:payload:closeCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Frame", + "printedName": "VideosdkWebSocket.Frame", + "usr": "s:17VideosdkWebSocket5FrameV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket5FrameV5isFin18needsDecompression0E6Masked6opcode13payloadLength0K09closeCodeACSb_S2bAA0d2OpN0Os6UInt64V10Foundation4DataVs6UInt16Vtcfc", + "mangledName": "$s17VideosdkWebSocket5FrameV5isFin18needsDecompression0E6Masked6opcode13payloadLength0K09closeCodeACSb_S2bAA0d2OpN0Os6UInt64V10Foundation4DataVs6UInt16Vtcfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:17VideosdkWebSocket5FrameV", + "mangledName": "$s17VideosdkWebSocket5FrameV", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "FrameEvent", + "printedName": "FrameEvent", + "children": [ + { + "kind": "Var", + "name": "frame", + "printedName": "frame", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameEvent.Type) -> (VideosdkWebSocket.Frame) -> VideosdkWebSocket.FrameEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Frame) -> VideosdkWebSocket.FrameEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameEvent", + "printedName": "VideosdkWebSocket.FrameEvent", + "usr": "s:17VideosdkWebSocket10FrameEventO" + }, + { + "kind": "TypeNominal", + "name": "Frame", + "printedName": "VideosdkWebSocket.Frame", + "usr": "s:17VideosdkWebSocket5FrameV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameEvent", + "printedName": "VideosdkWebSocket.FrameEvent", + "usr": "s:17VideosdkWebSocket10FrameEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket10FrameEventO5frameyAcA0D0VcACmF", + "mangledName": "$s17VideosdkWebSocket10FrameEventO5frameyAcA0D0VcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FrameEvent.Type) -> (Swift.Error) -> VideosdkWebSocket.FrameEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> VideosdkWebSocket.FrameEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameEvent", + "printedName": "VideosdkWebSocket.FrameEvent", + "usr": "s:17VideosdkWebSocket10FrameEventO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FrameEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FrameEvent", + "printedName": "VideosdkWebSocket.FrameEvent", + "usr": "s:17VideosdkWebSocket10FrameEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket10FrameEventO5erroryACs5Error_pcACmF", + "mangledName": "$s17VideosdkWebSocket10FrameEventO5erroryACs5Error_pcACmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket10FrameEventO", + "mangledName": "$s17VideosdkWebSocket10FrameEventO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "FramerEventClient", + "printedName": "FramerEventClient", + "children": [ + { + "kind": "Function", + "name": "frameProcessed", + "printedName": "frameProcessed(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FrameEvent", + "printedName": "VideosdkWebSocket.FrameEvent", + "usr": "s:17VideosdkWebSocket10FrameEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17FramerEventClientP14frameProcessed5eventyAA05FrameE0O_tF", + "mangledName": "$s17VideosdkWebSocket17FramerEventClientP14frameProcessed5eventyAA05FrameE0O_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.FramerEventClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket17FramerEventClientP", + "mangledName": "$s17VideosdkWebSocket17FramerEventClientP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Framer", + "printedName": "Framer", + "children": [ + { + "kind": "Function", + "name": "add", + "printedName": "add(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6FramerP3add4datay10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket6FramerP3add4datay10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Framer>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FramerEventClient", + "printedName": "VideosdkWebSocket.FramerEventClient", + "usr": "s:17VideosdkWebSocket17FramerEventClientP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6FramerP8register8delegateyAA0D11EventClient_p_tF", + "mangledName": "$s17VideosdkWebSocket6FramerP8register8delegateyAA0D11EventClient_p_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Framer>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createWriteFrame", + "printedName": "createWriteFrame(opcode:payload:isCompressed:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6FramerP16createWriteFrame6opcode7payload12isCompressed10Foundation4DataVAA0G6OpCodeO_AJSbtF", + "mangledName": "$s17VideosdkWebSocket6FramerP16createWriteFrame6opcode7payload12isCompressed10Foundation4DataVAA0G6OpCodeO_AJSbtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Framer>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateCompression", + "printedName": "updateCompression(supports:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6FramerP17updateCompression8supportsySb_tF", + "mangledName": "$s17VideosdkWebSocket6FramerP17updateCompression8supportsySb_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Framer>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "supportsCompression", + "printedName": "supportsCompression()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6FramerP19supportsCompressionSbyF", + "mangledName": "$s17VideosdkWebSocket6FramerP19supportsCompressionSbyF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Framer>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket6FramerP", + "mangledName": "$s17VideosdkWebSocket6FramerP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "WSFramer", + "printedName": "WSFramer", + "children": [ + { + "kind": "Var", + "name": "compressionEnabled", + "printedName": "compressionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket8WSFramerC18compressionEnabledSbvp", + "mangledName": "$s17VideosdkWebSocket8WSFramerC18compressionEnabledSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSFramerC18compressionEnabledSbvg", + "mangledName": "$s17VideosdkWebSocket8WSFramerC18compressionEnabledSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSFramerC18compressionEnabledSbvs", + "mangledName": "$s17VideosdkWebSocket8WSFramerC18compressionEnabledSbvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8WSFramerC18compressionEnabledSbvM", + "mangledName": "$s17VideosdkWebSocket8WSFramerC18compressionEnabledSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(isServer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WSFramer", + "printedName": "VideosdkWebSocket.WSFramer", + "usr": "s:17VideosdkWebSocket8WSFramerC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket8WSFramerC8isServerACSb_tcfc", + "mangledName": "$s17VideosdkWebSocket8WSFramerC8isServerACSb_tcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "updateCompression", + "printedName": "updateCompression(supports:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSFramerC17updateCompression8supportsySb_tF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC17updateCompression8supportsySb_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "supportsCompression", + "printedName": "supportsCompression()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSFramerC19supportsCompressionSbyF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC19supportsCompressionSbyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "ProcessEvent", + "printedName": "ProcessEvent", + "children": [ + { + "kind": "Var", + "name": "needsMoreData", + "printedName": "needsMoreData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WSFramer.ProcessEvent.Type) -> VideosdkWebSocket.WSFramer.ProcessEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ProcessEvent", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProcessEvent", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO13needsMoreDatayA2EmF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC12ProcessEventO13needsMoreDatayA2EmF", + "moduleName": "VideosdkWebSocket", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "processedFrame", + "printedName": "processedFrame", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WSFramer.ProcessEvent.Type) -> (VideosdkWebSocket.Frame, Swift.Int) -> VideosdkWebSocket.WSFramer.ProcessEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Frame, Swift.Int) -> VideosdkWebSocket.WSFramer.ProcessEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ProcessEvent", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(VideosdkWebSocket.Frame, Swift.Int)", + "children": [ + { + "kind": "TypeNominal", + "name": "Frame", + "printedName": "VideosdkWebSocket.Frame", + "usr": "s:17VideosdkWebSocket5FrameV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProcessEvent", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO14processedFrameyAeA0H0V_SitcAEmF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC12ProcessEventO14processedFrameyAeA0H0V_SitcAEmF", + "moduleName": "VideosdkWebSocket", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WSFramer.ProcessEvent.Type) -> (Swift.Error) -> VideosdkWebSocket.WSFramer.ProcessEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> VideosdkWebSocket.WSFramer.ProcessEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ProcessEvent", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProcessEvent", + "printedName": "VideosdkWebSocket.WSFramer.ProcessEvent", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO6failedyAEs5Error_pcAEmF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC12ProcessEventO6failedyAEs5Error_pcAEmF", + "moduleName": "VideosdkWebSocket", + "fixedbinaryorder": 2 + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket8WSFramerC12ProcessEventO", + "mangledName": "$s17VideosdkWebSocket8WSFramerC12ProcessEventO", + "moduleName": "VideosdkWebSocket", + "isEnumExhaustive": true + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSFramerC3add4datay10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC3add4datay10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FramerEventClient", + "printedName": "VideosdkWebSocket.FramerEventClient", + "usr": "s:17VideosdkWebSocket17FramerEventClientP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSFramerC8register8delegateyAA17FramerEventClient_p_tF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC8register8delegateyAA17FramerEventClient_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createWriteFrame", + "printedName": "createWriteFrame(opcode:payload:isCompressed:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket8WSFramerC16createWriteFrame6opcode7payload12isCompressed10Foundation4DataVAA0G6OpCodeO_AJSbtF", + "mangledName": "$s17VideosdkWebSocket8WSFramerC16createWriteFrame6opcode7payload12isCompressed10Foundation4DataVAA0G6OpCodeO_AJSbtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket8WSFramerC", + "mangledName": "$s17VideosdkWebSocket8WSFramerC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Framer", + "printedName": "Framer", + "usr": "s:17VideosdkWebSocket6FramerP", + "mangledName": "$s17VideosdkWebSocket6FramerP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MyWSArrayType", + "printedName": "MyWSArrayType", + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket13MyWSArrayTypeP", + "mangledName": "$s17VideosdkWebSocket13MyWSArrayTypeP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "writeUint16", + "printedName": "writeUint16(_:offset:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket11writeUint16_6offset5valueySays5UInt8VGz_Sis6UInt16VtF", + "mangledName": "$s17VideosdkWebSocket11writeUint16_6offset5valueySays5UInt8VGz_Sis6UInt16VtF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "writeUint32", + "printedName": "writeUint32(_:offset:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket11writeUint32_6offset5valueySays5UInt8VGz_Sis6UInt32VtF", + "mangledName": "$s17VideosdkWebSocket11writeUint32_6offset5valueySays5UInt8VGz_Sis6UInt32VtF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "writeUint64", + "printedName": "writeUint64(_:offset:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket11writeUint64_6offset5valueySays5UInt8VGz_Sis6UInt64VtF", + "mangledName": "$s17VideosdkWebSocket11writeUint64_6offset5valueySays5UInt8VGz_Sis6UInt64VtF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HTTPUpgradeError", + "printedName": "HTTPUpgradeError", + "children": [ + { + "kind": "Var", + "name": "notAnUpgrade", + "printedName": "notAnUpgrade", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.HTTPUpgradeError.Type) -> (Swift.Int, [Swift.String : Swift.String]) -> VideosdkWebSocket.HTTPUpgradeError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int, [Swift.String : Swift.String]) -> VideosdkWebSocket.HTTPUpgradeError", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPUpgradeError", + "printedName": "VideosdkWebSocket.HTTPUpgradeError", + "usr": "s:17VideosdkWebSocket16HTTPUpgradeErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Int, [Swift.String : Swift.String])", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.HTTPUpgradeError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPUpgradeError", + "printedName": "VideosdkWebSocket.HTTPUpgradeError", + "usr": "s:17VideosdkWebSocket16HTTPUpgradeErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket16HTTPUpgradeErrorO12notAnUpgradeyACSi_SDyS2SGtcACmF", + "mangledName": "$s17VideosdkWebSocket16HTTPUpgradeErrorO12notAnUpgradeyACSi_SDyS2SGtcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "invalidData", + "printedName": "invalidData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.HTTPUpgradeError.Type) -> VideosdkWebSocket.HTTPUpgradeError", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPUpgradeError", + "printedName": "VideosdkWebSocket.HTTPUpgradeError", + "usr": "s:17VideosdkWebSocket16HTTPUpgradeErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.HTTPUpgradeError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPUpgradeError", + "printedName": "VideosdkWebSocket.HTTPUpgradeError", + "usr": "s:17VideosdkWebSocket16HTTPUpgradeErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket16HTTPUpgradeErrorO11invalidDatayA2CmF", + "mangledName": "$s17VideosdkWebSocket16HTTPUpgradeErrorO11invalidDatayA2CmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket16HTTPUpgradeErrorO", + "mangledName": "$s17VideosdkWebSocket16HTTPUpgradeErrorO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "HTTPWSHeader", + "printedName": "HTTPWSHeader", + "children": [ + { + "kind": "Var", + "name": "upgradeName", + "printedName": "upgradeName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV11upgradeNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV11upgradeNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV11upgradeNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV11upgradeNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "upgradeValue", + "printedName": "upgradeValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV12upgradeValueSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV12upgradeValueSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV12upgradeValueSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV12upgradeValueSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hostName", + "printedName": "hostName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV8hostNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV8hostNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV8hostNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV8hostNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectionName", + "printedName": "connectionName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV14connectionNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV14connectionNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV14connectionNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV14connectionNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectionValue", + "printedName": "connectionValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV15connectionValueSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV15connectionValueSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV15connectionValueSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV15connectionValueSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "protocolName", + "printedName": "protocolName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV12protocolNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV12protocolNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV12protocolNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV12protocolNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "versionName", + "printedName": "versionName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV11versionNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV11versionNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV11versionNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV11versionNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "versionValue", + "printedName": "versionValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV12versionValueSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV12versionValueSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV12versionValueSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV12versionValueSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extensionName", + "printedName": "extensionName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV13extensionNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV13extensionNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV13extensionNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV13extensionNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "keyName", + "printedName": "keyName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV7keyNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV7keyNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV7keyNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV7keyNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "originName", + "printedName": "originName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV10originNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV10originNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV10originNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV10originNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "acceptName", + "printedName": "acceptName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV10acceptNameSSvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV10acceptNameSSvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV10acceptNameSSvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV10acceptNameSSvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "switchProtocolCode", + "printedName": "switchProtocolCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV18switchProtocolCodeSivpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV18switchProtocolCodeSivpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV18switchProtocolCodeSivgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV18switchProtocolCodeSivgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultSSLSchemes", + "printedName": "defaultSSLSchemes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV17defaultSSLSchemesSaySSGvpZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV17defaultSSLSchemesSaySSGvpZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV17defaultSSLSchemesSaySSGvgZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV17defaultSSLSchemesSaySSGvgZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createUpgrade", + "printedName": "createUpgrade(request:supportsCompression:secKeyValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV13createUpgrade7request19supportsCompression11secKeyValue10Foundation10URLRequestVAJ_SbSStFZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV13createUpgrade7request19supportsCompression11secKeyValue10Foundation10URLRequestVAJ_SbSStFZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateWebSocketKey", + "printedName": "generateWebSocketKey()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV08generatebC3KeySSyFZ", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV08generatebC3KeySSyFZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPWSHeader", + "printedName": "VideosdkWebSocket.HTTPWSHeader", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderVACycfc", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderVACycfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:17VideosdkWebSocket12HTTPWSHeaderV", + "mangledName": "$s17VideosdkWebSocket12HTTPWSHeaderV", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "HTTPEvent", + "printedName": "HTTPEvent", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.HTTPEvent.Type) -> ([Swift.String : Swift.String]) -> VideosdkWebSocket.HTTPEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Swift.String]) -> VideosdkWebSocket.HTTPEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.HTTPEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9HTTPEventO7successyACSDyS2SGcACmF", + "mangledName": "$s17VideosdkWebSocket9HTTPEventO7successyACSDyS2SGcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "failure", + "printedName": "failure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.HTTPEvent.Type) -> (Swift.Error) -> VideosdkWebSocket.HTTPEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> VideosdkWebSocket.HTTPEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.HTTPEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9HTTPEventO7failureyACs5Error_pcACmF", + "mangledName": "$s17VideosdkWebSocket9HTTPEventO7failureyACs5Error_pcACmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket9HTTPEventO", + "mangledName": "$s17VideosdkWebSocket9HTTPEventO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "HTTPHandlerDelegate", + "printedName": "HTTPHandlerDelegate", + "children": [ + { + "kind": "Function", + "name": "didReceiveHTTP", + "printedName": "didReceiveHTTP(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP14didReceiveHTTP5eventyAA9HTTPEventO_tF", + "mangledName": "$s17VideosdkWebSocket19HTTPHandlerDelegateP14didReceiveHTTP5eventyAA9HTTPEventO_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPHandlerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP", + "mangledName": "$s17VideosdkWebSocket19HTTPHandlerDelegateP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "HTTPHandler", + "printedName": "HTTPHandler", + "children": [ + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPHandlerDelegate", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket11HTTPHandlerP8register8delegateyAA0D8Delegate_p_tF", + "mangledName": "$s17VideosdkWebSocket11HTTPHandlerP8register8delegateyAA0D8Delegate_p_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "convert", + "printedName": "convert(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket11HTTPHandlerP7convert7request10Foundation4DataVAF10URLRequestV_tF", + "mangledName": "$s17VideosdkWebSocket11HTTPHandlerP7convert7request10Foundation4DataVAF10URLRequestV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parse", + "printedName": "parse(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket11HTTPHandlerP5parse4dataSi10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket11HTTPHandlerP5parse4dataSi10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket11HTTPHandlerP", + "mangledName": "$s17VideosdkWebSocket11HTTPHandlerP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "HTTPServerDelegate", + "printedName": "HTTPServerDelegate", + "children": [ + { + "kind": "Function", + "name": "didReceive", + "printedName": "didReceive(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18HTTPServerDelegateP10didReceive5eventyAA9HTTPEventO_tF", + "mangledName": "$s17VideosdkWebSocket18HTTPServerDelegateP10didReceive5eventyAA9HTTPEventO_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPServerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket18HTTPServerDelegateP", + "mangledName": "$s17VideosdkWebSocket18HTTPServerDelegateP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "HTTPServerHandler", + "printedName": "HTTPServerHandler", + "children": [ + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPServerDelegate", + "printedName": "VideosdkWebSocket.HTTPServerDelegate", + "usr": "s:17VideosdkWebSocket18HTTPServerDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17HTTPServerHandlerP8register8delegateyAA0D8Delegate_p_tF", + "mangledName": "$s17VideosdkWebSocket17HTTPServerHandlerP8register8delegateyAA0D8Delegate_p_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPServerHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parse", + "printedName": "parse(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17HTTPServerHandlerP5parse4datay10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket17HTTPServerHandlerP5parse4datay10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPServerHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(headers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17HTTPServerHandlerP14createResponse7headers10Foundation4DataVSDyS2SG_tF", + "mangledName": "$s17VideosdkWebSocket17HTTPServerHandlerP14createResponse7headers10Foundation4DataVSDyS2SG_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HTTPServerHandler>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket17HTTPServerHandlerP", + "mangledName": "$s17VideosdkWebSocket17HTTPServerHandlerP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "URLParts", + "printedName": "URLParts", + "children": [ + { + "kind": "Var", + "name": "port", + "printedName": "port", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket8URLPartsV4portSivp", + "mangledName": "$s17VideosdkWebSocket8URLPartsV4portSivp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8URLPartsV4portSivg", + "mangledName": "$s17VideosdkWebSocket8URLPartsV4portSivg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "host", + "printedName": "host", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket8URLPartsV4hostSSvp", + "mangledName": "$s17VideosdkWebSocket8URLPartsV4hostSSvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8URLPartsV4hostSSvg", + "mangledName": "$s17VideosdkWebSocket8URLPartsV4hostSSvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isTLS", + "printedName": "isTLS", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket8URLPartsV5isTLSSbvp", + "mangledName": "$s17VideosdkWebSocket8URLPartsV5isTLSSbvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket8URLPartsV5isTLSSbvg", + "mangledName": "$s17VideosdkWebSocket8URLPartsV5isTLSSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(port:host:isTLS:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URLParts", + "printedName": "VideosdkWebSocket.URLParts", + "usr": "s:17VideosdkWebSocket8URLPartsV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket8URLPartsV4port4host5isTLSACSi_SSSbtcfc", + "mangledName": "$s17VideosdkWebSocket8URLPartsV4port4host5isTLSACSi_SSSbtcfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:17VideosdkWebSocket8URLPartsV", + "mangledName": "$s17VideosdkWebSocket8URLPartsV", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StringHTTPHandler", + "printedName": "StringHTTPHandler", + "children": [ + { + "kind": "Var", + "name": "buffer", + "printedName": "buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvp", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvg", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvs", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvM", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC6buffer10Foundation4DataVvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPHandlerDelegate", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPHandlerDelegate", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC8delegateAA0E8Delegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "StringHTTPHandler", + "printedName": "VideosdkWebSocket.StringHTTPHandler", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerCACycfc", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerCACycfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "convert", + "printedName": "convert(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC7convert7request10Foundation4DataVAF10URLRequestV_tF", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC7convert7request10Foundation4DataVAF10URLRequestV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parse", + "printedName": "parse(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC5parse4dataSi10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC5parse4dataSi10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseContent", + "printedName": "parseContent(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC12parseContent4dataSb10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC12parseContent4dataSb10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPHandlerDelegate", + "printedName": "VideosdkWebSocket.HTTPHandlerDelegate", + "usr": "s:17VideosdkWebSocket19HTTPHandlerDelegateP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC8register8delegateyAA0E8Delegate_p_tF", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC8register8delegateyAA0E8Delegate_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket17StringHTTPHandlerC", + "mangledName": "$s17VideosdkWebSocket17StringHTTPHandlerC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "HTTPHandler", + "printedName": "HTTPHandler", + "usr": "s:17VideosdkWebSocket11HTTPHandlerP", + "mangledName": "$s17VideosdkWebSocket11HTTPHandlerP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "TypeDecl", + "name": "FoundationSecurityError", + "printedName": "FoundationSecurityError", + "children": [ + { + "kind": "Var", + "name": "invalidRequest", + "printedName": "invalidRequest", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FoundationSecurityError.Type) -> VideosdkWebSocket.FoundationSecurityError", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationSecurityError", + "printedName": "VideosdkWebSocket.FoundationSecurityError", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FoundationSecurityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationSecurityError", + "printedName": "VideosdkWebSocket.FoundationSecurityError", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO14invalidRequestyA2CmF", + "mangledName": "$s17VideosdkWebSocket23FoundationSecurityErrorO14invalidRequestyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FoundationSecurityError", + "printedName": "VideosdkWebSocket.FoundationSecurityError", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO" + }, + { + "kind": "TypeNominal", + "name": "FoundationSecurityError", + "printedName": "VideosdkWebSocket.FoundationSecurityError", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s17VideosdkWebSocket23FoundationSecurityErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO9hashValueSivp", + "mangledName": "$s17VideosdkWebSocket23FoundationSecurityErrorO9hashValueSivp", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO9hashValueSivg", + "mangledName": "$s17VideosdkWebSocket23FoundationSecurityErrorO9hashValueSivg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s17VideosdkWebSocket23FoundationSecurityErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket23FoundationSecurityErrorO", + "mangledName": "$s17VideosdkWebSocket23FoundationSecurityErrorO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FoundationSecurity", + "printedName": "FoundationSecurity", + "children": [ + { + "kind": "Var", + "name": "allowSelfSigned", + "printedName": "allowSelfSigned", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvp", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvg", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvs", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvM", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(allowSelfSigned:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationSecurity", + "printedName": "VideosdkWebSocket.FoundationSecurity", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedACSb_tcfc", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC15allowSelfSignedACSb_tcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "evaluateTrust", + "printedName": "evaluateTrust(trust:domain:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SecTrust", + "printedName": "Security.SecTrust", + "usr": "c:@T@SecTrustRef" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.PinningState) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PinningState", + "printedName": "VideosdkWebSocket.PinningState", + "usr": "s:17VideosdkWebSocket12PinningStateO" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC13evaluateTrust5trust6domain10completionySo03SecG3Refa_SSSgyAA12PinningStateOXEtF", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC13evaluateTrust5trust6domain10completionySo03SecG3Refa_SSSgyAA12PinningStateOXEtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(headers:key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC8validate7headers3keys5Error_pSgSDyS2SG_SStF", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC8validate7headers3keys5Error_pSgSDyS2SG_SStF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket18FoundationSecurityC", + "mangledName": "$s17VideosdkWebSocket18FoundationSecurityC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CertificatePinning", + "printedName": "CertificatePinning", + "usr": "s:17VideosdkWebSocket18CertificatePinningP", + "mangledName": "$s17VideosdkWebSocket18CertificatePinningP" + }, + { + "kind": "Conformance", + "name": "HeaderValidator", + "printedName": "HeaderValidator", + "usr": "s:17VideosdkWebSocket15HeaderValidatorP", + "mangledName": "$s17VideosdkWebSocket15HeaderValidatorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SecurityErrorCode", + "printedName": "SecurityErrorCode", + "children": [ + { + "kind": "Var", + "name": "acceptFailed", + "printedName": "acceptFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.SecurityErrorCode.Type) -> VideosdkWebSocket.SecurityErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "SecurityErrorCode", + "printedName": "VideosdkWebSocket.SecurityErrorCode", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.SecurityErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SecurityErrorCode", + "printedName": "VideosdkWebSocket.SecurityErrorCode", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO12acceptFailedyA2CmF", + "mangledName": "$s17VideosdkWebSocket17SecurityErrorCodeO12acceptFailedyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "pinningFailed", + "printedName": "pinningFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.SecurityErrorCode.Type) -> VideosdkWebSocket.SecurityErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "SecurityErrorCode", + "printedName": "VideosdkWebSocket.SecurityErrorCode", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.SecurityErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SecurityErrorCode", + "printedName": "VideosdkWebSocket.SecurityErrorCode", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO13pinningFailedyA2CmF", + "mangledName": "$s17VideosdkWebSocket17SecurityErrorCodeO13pinningFailedyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.SecurityErrorCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "SecurityErrorCode", + "printedName": "VideosdkWebSocket.SecurityErrorCode", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO8rawValueACSgs6UInt16V_tcfc", + "mangledName": "$s17VideosdkWebSocket17SecurityErrorCodeO8rawValueACSgs6UInt16V_tcfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO8rawValues6UInt16Vvp", + "mangledName": "$s17VideosdkWebSocket17SecurityErrorCodeO8rawValues6UInt16Vvp", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO8rawValues6UInt16Vvg", + "mangledName": "$s17VideosdkWebSocket17SecurityErrorCodeO8rawValues6UInt16Vvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket17SecurityErrorCodeO", + "mangledName": "$s17VideosdkWebSocket17SecurityErrorCodeO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "UInt16", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PinningState", + "printedName": "PinningState", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.PinningState.Type) -> VideosdkWebSocket.PinningState", + "children": [ + { + "kind": "TypeNominal", + "name": "PinningState", + "printedName": "VideosdkWebSocket.PinningState", + "usr": "s:17VideosdkWebSocket12PinningStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.PinningState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PinningState", + "printedName": "VideosdkWebSocket.PinningState", + "usr": "s:17VideosdkWebSocket12PinningStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket12PinningStateO7successyA2CmF", + "mangledName": "$s17VideosdkWebSocket12PinningStateO7successyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.PinningState.Type) -> (CoreFoundation.CFError?) -> VideosdkWebSocket.PinningState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CoreFoundation.CFError?) -> VideosdkWebSocket.PinningState", + "children": [ + { + "kind": "TypeNominal", + "name": "PinningState", + "printedName": "VideosdkWebSocket.PinningState", + "usr": "s:17VideosdkWebSocket12PinningStateO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreFoundation.CFError?", + "children": [ + { + "kind": "TypeNominal", + "name": "CFError", + "printedName": "CoreFoundation.CFError", + "usr": "c:@T@CFErrorRef" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.PinningState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PinningState", + "printedName": "VideosdkWebSocket.PinningState", + "usr": "s:17VideosdkWebSocket12PinningStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket12PinningStateO6failedyACSo10CFErrorRefaSgcACmF", + "mangledName": "$s17VideosdkWebSocket12PinningStateO6failedyACSo10CFErrorRefaSgcACmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket12PinningStateO", + "mangledName": "$s17VideosdkWebSocket12PinningStateO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "CertificatePinning", + "printedName": "CertificatePinning", + "children": [ + { + "kind": "Function", + "name": "evaluateTrust", + "printedName": "evaluateTrust(trust:domain:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SecTrust", + "printedName": "Security.SecTrust", + "usr": "c:@T@SecTrustRef" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.PinningState) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PinningState", + "printedName": "VideosdkWebSocket.PinningState", + "usr": "s:17VideosdkWebSocket12PinningStateO" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18CertificatePinningP13evaluateTrust5trust6domain10completionySo03SecG3Refa_SSSgyAA0E5StateOXEtF", + "mangledName": "$s17VideosdkWebSocket18CertificatePinningP13evaluateTrust5trust6domain10completionySo03SecG3Refa_SSSgyAA0E5StateOXEtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.CertificatePinning>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket18CertificatePinningP", + "mangledName": "$s17VideosdkWebSocket18CertificatePinningP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "HeaderValidator", + "printedName": "HeaderValidator", + "children": [ + { + "kind": "Function", + "name": "validate", + "printedName": "validate(headers:key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket15HeaderValidatorP8validate7headers3keys5Error_pSgSDyS2SG_SStF", + "mangledName": "$s17VideosdkWebSocket15HeaderValidatorP8validate7headers3keys5Error_pSgSDyS2SG_SStF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.HeaderValidator>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket15HeaderValidatorP", + "mangledName": "$s17VideosdkWebSocket15HeaderValidatorP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ConnectionEvent", + "printedName": "ConnectionEvent", + "children": [ + { + "kind": "Var", + "name": "connected", + "printedName": "connected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent.Type) -> ([Swift.String : Swift.String]) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Swift.String]) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionEventO9connectedyACSDyS2SGcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO9connectedyACSDyS2SGcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "disconnected", + "printedName": "disconnected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent.Type) -> (Swift.String, Swift.UInt16) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.UInt16) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.UInt16)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionEventO12disconnectedyACSS_s6UInt16VtcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO12disconnectedyACSS_s6UInt16VtcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent.Type) -> (Swift.String) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionEventO4textyACSScACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO4textyACSScACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "binary", + "printedName": "binary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent.Type) -> (Foundation.Data) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionEventO6binaryyAC10Foundation4DataVcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO6binaryyAC10Foundation4DataVcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "pong", + "printedName": "pong", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent.Type) -> (Foundation.Data?) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data?) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionEventO4pongyAC10Foundation4DataVSgcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO4pongyAC10Foundation4DataVSgcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "ping", + "printedName": "ping", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent.Type) -> (Foundation.Data?) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data?) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionEventO4pingyAC10Foundation4DataVSgcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO4pingyAC10Foundation4DataVSgcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent.Type) -> (Swift.Error) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> VideosdkWebSocket.ConnectionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionEventO5erroryACs5Error_pcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO5erroryACs5Error_pcACmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket15ConnectionEventO", + "mangledName": "$s17VideosdkWebSocket15ConnectionEventO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Connection", + "printedName": "Connection", + "children": [ + { + "kind": "Function", + "name": "write", + "printedName": "write(data:opcode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket10ConnectionP5write4data6opcodey10Foundation4DataV_AA11FrameOpCodeOtF", + "mangledName": "$s17VideosdkWebSocket10ConnectionP5write4data6opcodey10Foundation4DataV_AA11FrameOpCodeOtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Connection>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket10ConnectionP", + "mangledName": "$s17VideosdkWebSocket10ConnectionP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "ConnectionDelegate", + "printedName": "ConnectionDelegate", + "children": [ + { + "kind": "Function", + "name": "didReceive", + "printedName": "didReceive(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket18ConnectionDelegateP10didReceive5eventyAA11ServerEventO_tF", + "mangledName": "$s17VideosdkWebSocket18ConnectionDelegateP10didReceive5eventyAA11ServerEventO_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.ConnectionDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket18ConnectionDelegateP", + "mangledName": "$s17VideosdkWebSocket18ConnectionDelegateP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "ServerEvent", + "printedName": "ServerEvent", + "children": [ + { + "kind": "Var", + "name": "connected", + "printedName": "connected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent.Type) -> (VideosdkWebSocket.Connection, [Swift.String : Swift.String]) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Connection, [Swift.String : Swift.String]) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(VideosdkWebSocket.Connection, [Swift.String : Swift.String])", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "VideosdkWebSocket.Connection", + "usr": "s:17VideosdkWebSocket10ConnectionP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ServerEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11ServerEventO9connectedyAcA10Connection_p_SDyS2SGtcACmF", + "mangledName": "$s17VideosdkWebSocket11ServerEventO9connectedyAcA10Connection_p_SDyS2SGtcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "disconnected", + "printedName": "disconnected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent.Type) -> (VideosdkWebSocket.Connection, Swift.String, Swift.UInt16) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Connection, Swift.String, Swift.UInt16) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(VideosdkWebSocket.Connection, Swift.String, Swift.UInt16)", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "VideosdkWebSocket.Connection", + "usr": "s:17VideosdkWebSocket10ConnectionP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ServerEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11ServerEventO12disconnectedyAcA10Connection_p_SSs6UInt16VtcACmF", + "mangledName": "$s17VideosdkWebSocket11ServerEventO12disconnectedyAcA10Connection_p_SSs6UInt16VtcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent.Type) -> (VideosdkWebSocket.Connection, Swift.String) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Connection, Swift.String) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(VideosdkWebSocket.Connection, Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "VideosdkWebSocket.Connection", + "usr": "s:17VideosdkWebSocket10ConnectionP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ServerEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11ServerEventO4textyAcA10Connection_p_SStcACmF", + "mangledName": "$s17VideosdkWebSocket11ServerEventO4textyAcA10Connection_p_SStcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "binary", + "printedName": "binary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent.Type) -> (VideosdkWebSocket.Connection, Foundation.Data) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Connection, Foundation.Data) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(VideosdkWebSocket.Connection, Foundation.Data)", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "VideosdkWebSocket.Connection", + "usr": "s:17VideosdkWebSocket10ConnectionP" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ServerEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11ServerEventO6binaryyAcA10Connection_p_10Foundation4DataVtcACmF", + "mangledName": "$s17VideosdkWebSocket11ServerEventO6binaryyAcA10Connection_p_10Foundation4DataVtcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "pong", + "printedName": "pong", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent.Type) -> (VideosdkWebSocket.Connection, Foundation.Data?) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Connection, Foundation.Data?) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(VideosdkWebSocket.Connection, Foundation.Data?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "VideosdkWebSocket.Connection", + "usr": "s:17VideosdkWebSocket10ConnectionP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ServerEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11ServerEventO4pongyAcA10Connection_p_10Foundation4DataVSgtcACmF", + "mangledName": "$s17VideosdkWebSocket11ServerEventO4pongyAcA10Connection_p_10Foundation4DataVSgtcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "ping", + "printedName": "ping", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent.Type) -> (VideosdkWebSocket.Connection, Foundation.Data?) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.Connection, Foundation.Data?) -> VideosdkWebSocket.ServerEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(VideosdkWebSocket.Connection, Foundation.Data?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "VideosdkWebSocket.Connection", + "usr": "s:17VideosdkWebSocket10ConnectionP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ServerEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket11ServerEventO4pingyAcA10Connection_p_10Foundation4DataVSgtcACmF", + "mangledName": "$s17VideosdkWebSocket11ServerEventO4pingyAcA10Connection_p_10Foundation4DataVSgtcACmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket11ServerEventO", + "mangledName": "$s17VideosdkWebSocket11ServerEventO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Server", + "printedName": "Server", + "children": [ + { + "kind": "Function", + "name": "start", + "printedName": "start(address:port:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket6ServerP5start7address4ports5Error_pSgSS_s6UInt16VtF", + "mangledName": "$s17VideosdkWebSocket6ServerP5start7address4ports5Error_pSgSS_s6UInt16VtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Server>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket6ServerP", + "mangledName": "$s17VideosdkWebSocket6ServerP", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "TypeDecl", + "name": "WebSocketServer", + "printedName": "WebSocketServer", + "children": [ + { + "kind": "Var", + "name": "onEvent", + "printedName": "onEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.ServerEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvp", + "mangledName": "$s17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.ServerEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvg", + "mangledName": "$s17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.ServerEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ServerEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvs", + "mangledName": "$s17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvM", + "mangledName": "$s17VideosdkWebSocket0bC6ServerC7onEventyAA0dF0OcSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketServer", + "printedName": "VideosdkWebSocket.WebSocketServer", + "usr": "s:17VideosdkWebSocket0bC6ServerC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket0bC6ServerCACycfc", + "mangledName": "$s17VideosdkWebSocket0bC6ServerCACycfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start(address:port:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ServerC5start7address4ports5Error_pSgSS_s6UInt16VtF", + "mangledName": "$s17VideosdkWebSocket0bC6ServerC5start7address4ports5Error_pSgSS_s6UInt16VtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "didReceive", + "printedName": "didReceive(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ServerEvent", + "printedName": "VideosdkWebSocket.ServerEvent", + "usr": "s:17VideosdkWebSocket11ServerEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ServerC10didReceive5eventyAA0D5EventO_tF", + "mangledName": "$s17VideosdkWebSocket0bC6ServerC10didReceive5eventyAA0D5EventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket0bC6ServerC", + "mangledName": "$s17VideosdkWebSocket0bC6ServerC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "intro_Macosx": "10.14", + "intro_iOS": "12.0", + "intro_tvOS": "12.0", + "intro_watchOS": "5.0", + "declAttributes": [ + "AccessControl", + "Available", + "Available", + "Available", + "Available", + "Available", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Server", + "printedName": "Server", + "usr": "s:17VideosdkWebSocket6ServerP", + "mangledName": "$s17VideosdkWebSocket6ServerP" + }, + { + "kind": "Conformance", + "name": "ConnectionDelegate", + "printedName": "ConnectionDelegate", + "usr": "s:17VideosdkWebSocket18ConnectionDelegateP", + "mangledName": "$s17VideosdkWebSocket18ConnectionDelegateP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ServerConnection", + "printedName": "ServerConnection", + "children": [ + { + "kind": "Var", + "name": "transport", + "printedName": "transport", + "children": [ + { + "kind": "TypeNominal", + "name": "TCPTransport", + "printedName": "VideosdkWebSocket.TCPTransport", + "usr": "s:17VideosdkWebSocket12TCPTransportC" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket16ServerConnectionC9transportAA12TCPTransportCvp", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC9transportAA12TCPTransportCvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TCPTransport", + "printedName": "VideosdkWebSocket.TCPTransport", + "usr": "s:17VideosdkWebSocket12TCPTransportC" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC9transportAA12TCPTransportCvg", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC9transportAA12TCPTransportCvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "onEvent", + "printedName": "onEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.ConnectionEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvp", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.ConnectionEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvg", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.ConnectionEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConnectionEvent", + "printedName": "VideosdkWebSocket.ConnectionEvent", + "usr": "s:17VideosdkWebSocket15ConnectionEventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvs", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvM", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC7onEventyAA0eG0OcSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.ConnectionDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.ConnectionDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionDelegate", + "printedName": "VideosdkWebSocket.ConnectionDelegate", + "usr": "s:17VideosdkWebSocket18ConnectionDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.ConnectionDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionDelegate", + "printedName": "VideosdkWebSocket.ConnectionDelegate", + "usr": "s:17VideosdkWebSocket18ConnectionDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC8delegateAA0E8Delegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket16ServerConnectionC4uuidSSvp", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC4uuidSSvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC4uuidSSvg", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC4uuidSSvg", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(transport:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerConnection", + "printedName": "VideosdkWebSocket.ServerConnection", + "usr": "s:17VideosdkWebSocket16ServerConnectionC" + }, + { + "kind": "TypeNominal", + "name": "TCPTransport", + "printedName": "VideosdkWebSocket.TCPTransport", + "usr": "s:17VideosdkWebSocket12TCPTransportC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket16ServerConnectionC9transportAcA12TCPTransportC_tcfc", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC9transportAcA12TCPTransportC_tcfc", + "moduleName": "VideosdkWebSocket", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:opcode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "FrameOpCode", + "printedName": "VideosdkWebSocket.FrameOpCode", + "usr": "s:17VideosdkWebSocket11FrameOpCodeO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket16ServerConnectionC5write4data6opcodey10Foundation4DataV_AA11FrameOpCodeOtF", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC5write4data6opcodey10Foundation4DataV_AA11FrameOpCodeOtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "connectionChanged", + "printedName": "connectionChanged(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket16ServerConnectionC17connectionChanged5stateyAA0E5StateO_tF", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC17connectionChanged5stateyAA0E5StateO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "didReceive", + "printedName": "didReceive(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HTTPEvent", + "printedName": "VideosdkWebSocket.HTTPEvent", + "usr": "s:17VideosdkWebSocket9HTTPEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket16ServerConnectionC10didReceive5eventyAA9HTTPEventO_tF", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC10didReceive5eventyAA9HTTPEventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "frameProcessed", + "printedName": "frameProcessed(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FrameEvent", + "printedName": "VideosdkWebSocket.FrameEvent", + "usr": "s:17VideosdkWebSocket10FrameEventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket16ServerConnectionC14frameProcessed5eventyAA10FrameEventO_tF", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC14frameProcessed5eventyAA10FrameEventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "didForm", + "printedName": "didForm(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "VideosdkWebSocket.FrameCollector.Event", + "usr": "s:17VideosdkWebSocket14FrameCollectorC5EventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket16ServerConnectionC7didForm5eventyAA14FrameCollectorC5EventO_tF", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC7didForm5eventyAA14FrameCollectorC5EventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decompress", + "printedName": "decompress(data:isFinal:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket16ServerConnectionC10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC10decompress4data7isFinal10Foundation4DataVSgAI_SbtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket16ServerConnectionC", + "mangledName": "$s17VideosdkWebSocket16ServerConnectionC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "intro_Macosx": "10.14", + "intro_iOS": "12.0", + "intro_tvOS": "12.0", + "intro_watchOS": "5.0", + "declAttributes": [ + "AccessControl", + "Available", + "Available", + "Available", + "Available" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Connection", + "printedName": "Connection", + "usr": "s:17VideosdkWebSocket10ConnectionP", + "mangledName": "$s17VideosdkWebSocket10ConnectionP" + }, + { + "kind": "Conformance", + "name": "HTTPServerDelegate", + "printedName": "HTTPServerDelegate", + "usr": "s:17VideosdkWebSocket18HTTPServerDelegateP", + "mangledName": "$s17VideosdkWebSocket18HTTPServerDelegateP" + }, + { + "kind": "Conformance", + "name": "FramerEventClient", + "printedName": "FramerEventClient", + "usr": "s:17VideosdkWebSocket17FramerEventClientP", + "mangledName": "$s17VideosdkWebSocket17FramerEventClientP" + }, + { + "kind": "Conformance", + "name": "FrameCollectorDelegate", + "printedName": "FrameCollectorDelegate", + "usr": "s:17VideosdkWebSocket22FrameCollectorDelegateP", + "mangledName": "$s17VideosdkWebSocket22FrameCollectorDelegateP" + }, + { + "kind": "Conformance", + "name": "TransportEventClient", + "printedName": "TransportEventClient", + "usr": "s:17VideosdkWebSocket20TransportEventClientP", + "mangledName": "$s17VideosdkWebSocket20TransportEventClientP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ErrorType", + "printedName": "ErrorType", + "children": [ + { + "kind": "Var", + "name": "compressionError", + "printedName": "compressionError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ErrorType.Type) -> VideosdkWebSocket.ErrorType", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ErrorType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9ErrorTypeO011compressionD0yA2CmF", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO011compressionD0yA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "securityError", + "printedName": "securityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ErrorType.Type) -> VideosdkWebSocket.ErrorType", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ErrorType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9ErrorTypeO08securityD0yA2CmF", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO08securityD0yA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "protocolError", + "printedName": "protocolError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ErrorType.Type) -> VideosdkWebSocket.ErrorType", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ErrorType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9ErrorTypeO08protocolD0yA2CmF", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO08protocolD0yA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "serverError", + "printedName": "serverError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ErrorType.Type) -> VideosdkWebSocket.ErrorType", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ErrorType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket9ErrorTypeO06serverD0yA2CmF", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO06serverD0yA2CmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket9ErrorTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO2eeoiySbAC_ACtFZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket9ErrorTypeO9hashValueSivp", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO9hashValueSivp", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket9ErrorTypeO9hashValueSivg", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO9hashValueSivg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket9ErrorTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO4hash4intoys6HasherVz_tF", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket9ErrorTypeO", + "mangledName": "$s17VideosdkWebSocket9ErrorTypeO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WSError", + "printedName": "WSError", + "children": [ + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket7WSErrorV4typeAA9ErrorTypeOvp", + "mangledName": "$s17VideosdkWebSocket7WSErrorV4typeAA9ErrorTypeOvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket7WSErrorV4typeAA9ErrorTypeOvg", + "mangledName": "$s17VideosdkWebSocket7WSErrorV4typeAA9ErrorTypeOvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket7WSErrorV7messageSSvp", + "mangledName": "$s17VideosdkWebSocket7WSErrorV7messageSSvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket7WSErrorV7messageSSvg", + "mangledName": "$s17VideosdkWebSocket7WSErrorV7messageSSvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket7WSErrorV4codes6UInt16Vvp", + "mangledName": "$s17VideosdkWebSocket7WSErrorV4codes6UInt16Vvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket7WSErrorV4codes6UInt16Vvg", + "mangledName": "$s17VideosdkWebSocket7WSErrorV4codes6UInt16Vvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(type:message:code:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WSError", + "printedName": "VideosdkWebSocket.WSError", + "usr": "s:17VideosdkWebSocket7WSErrorV" + }, + { + "kind": "TypeNominal", + "name": "ErrorType", + "printedName": "VideosdkWebSocket.ErrorType", + "usr": "s:17VideosdkWebSocket9ErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket7WSErrorV4type7message4codeAcA9ErrorTypeO_SSs6UInt16Vtcfc", + "mangledName": "$s17VideosdkWebSocket7WSErrorV4type7message4codeAcA9ErrorTypeO_SSs6UInt16Vtcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:17VideosdkWebSocket7WSErrorV", + "mangledName": "$s17VideosdkWebSocket7WSErrorV", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WebSocketClient", + "printedName": "WebSocketClient", + "children": [ + { + "kind": "Function", + "name": "connect", + "printedName": "connect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientP7connectyyF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP7connectyyF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect(closeCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientP10disconnect9closeCodeys6UInt16V_tF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP10disconnect9closeCodeys6UInt16V_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(string:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientP5write6string10completionySS_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP5write6string10completionySS_yycSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(stringData:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientP5write10stringData10completiony10Foundation0G0V_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP5write10stringData10completiony10Foundation0G0V_yycSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientP5write4data10completiony10Foundation4DataV_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP5write4data10completiony10Foundation4DataV_yycSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(ping:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientP5write4ping10completiony10Foundation4DataV_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP5write4ping10completiony10Foundation4DataV_yycSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(pong:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientP5write4pong10completiony10Foundation4DataV_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP5write4pong10completiony10Foundation4DataV_yycSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientPAAE5write6stringySS_tF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientPAAE5write6stringySS_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientPAAE5write4datay10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientPAAE5write4datay10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(ping:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientPAAE5write4pingy10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientPAAE5write4pingy10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(pong:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientPAAE5write4pongy10Foundation4DataV_tF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientPAAE5write4pongy10Foundation4DataV_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC6ClientPAAE10disconnectyyF", + "mangledName": "$s17VideosdkWebSocket0bC6ClientPAAE10disconnectyyF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketClient>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket0bC6ClientP", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "WebSocketEvent", + "printedName": "WebSocketEvent", + "children": [ + { + "kind": "Var", + "name": "connected", + "printedName": "connected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> ([Swift.String : Swift.String]) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Swift.String]) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO9connectedyACSDyS2SGcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO9connectedyACSDyS2SGcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "disconnected", + "printedName": "disconnected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Swift.String, Swift.UInt16) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.UInt16) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.UInt16)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO12disconnectedyACSS_s6UInt16VtcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO12disconnectedyACSS_s6UInt16VtcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Swift.String) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO4textyACSScACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO4textyACSScACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "binary", + "printedName": "binary", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Foundation.Data) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO6binaryyAC10Foundation4DataVcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO6binaryyAC10Foundation4DataVcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "pong", + "printedName": "pong", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Foundation.Data?) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data?) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO4pongyAC10Foundation4DataVSgcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO4pongyAC10Foundation4DataVSgcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "ping", + "printedName": "ping", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Foundation.Data?) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data?) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO4pingyAC10Foundation4DataVSgcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO4pingyAC10Foundation4DataVSgcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Swift.Error?) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error?) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO5erroryACs5Error_pSgcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO5erroryACs5Error_pSgcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "viabilityChanged", + "printedName": "viabilityChanged", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Swift.Bool) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO16viabilityChangedyACSbcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO16viabilityChangedyACSbcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "reconnectSuggested", + "printedName": "reconnectSuggested", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> (Swift.Bool) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO18reconnectSuggestedyACSbcACmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO18reconnectSuggestedyACSbcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent.Type) -> VideosdkWebSocket.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket0bC5EventO9cancelledyA2CmF", + "mangledName": "$s17VideosdkWebSocket0bC5EventO9cancelledyA2CmF", + "moduleName": "VideosdkWebSocket" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket0bC5EventO", + "mangledName": "$s17VideosdkWebSocket0bC5EventO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "WebSocketDelegate", + "printedName": "WebSocketDelegate", + "children": [ + { + "kind": "Function", + "name": "didReceive", + "printedName": "didReceive(event:client:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + }, + { + "kind": "TypeNominal", + "name": "WebSocketClient", + "printedName": "VideosdkWebSocket.WebSocketClient", + "usr": "s:17VideosdkWebSocket0bC6ClientP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC8DelegateP10didReceive5event6clientyAA0bC5EventO_AA0bC6Client_ptF", + "mangledName": "$s17VideosdkWebSocket0bC8DelegateP10didReceive5event6clientyAA0bC5EventO_AA0bC6Client_ptF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.WebSocketDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket0bC8DelegateP", + "mangledName": "$s17VideosdkWebSocket0bC8DelegateP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "WebSocket", + "printedName": "WebSocket", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "VideosdkWebSocket.WebSocketDelegate?" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvp", + "mangledName": "$s17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.WebSocketDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketDelegate", + "printedName": "VideosdkWebSocket.WebSocketDelegate", + "usr": "s:17VideosdkWebSocket0bC8DelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvg", + "mangledName": "$s17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.WebSocketDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketDelegate", + "printedName": "VideosdkWebSocket.WebSocketDelegate", + "usr": "s:17VideosdkWebSocket0bC8DelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvs", + "mangledName": "$s17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvM", + "mangledName": "$s17VideosdkWebSocket0bC0C8delegateAA0bC8Delegate_pSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "onEvent", + "printedName": "onEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.WebSocketEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvp", + "mangledName": "$s17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.WebSocketEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvg", + "mangledName": "$s17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((VideosdkWebSocket.WebSocketEvent) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.WebSocketEvent) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvs", + "mangledName": "$s17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvM", + "mangledName": "$s17VideosdkWebSocket0bC0C7onEventyAA0bcE0OcSgvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "request", + "printedName": "request", + "children": [ + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvp", + "mangledName": "$s17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvg", + "mangledName": "$s17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvs", + "mangledName": "$s17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvM", + "mangledName": "$s17VideosdkWebSocket0bC0C7request10Foundation10URLRequestVvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "callbackQueue", + "printedName": "callbackQueue", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvp", + "mangledName": "$s17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvg", + "mangledName": "$s17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvs", + "mangledName": "$s17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvs", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvM", + "mangledName": "$s17VideosdkWebSocket0bC0C13callbackQueueSo17OS_dispatch_queueCvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "respondToPingWithPong", + "printedName": "respondToPingWithPong", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket0bC0C21respondToPingWithPongSbvp", + "mangledName": "$s17VideosdkWebSocket0bC0C21respondToPingWithPongSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C21respondToPingWithPongSbvg", + "mangledName": "$s17VideosdkWebSocket0bC0C21respondToPingWithPongSbvg", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C21respondToPingWithPongSbvs", + "mangledName": "$s17VideosdkWebSocket0bC0C21respondToPingWithPongSbvs", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket0bC0C21respondToPingWithPongSbvM", + "mangledName": "$s17VideosdkWebSocket0bC0C21respondToPingWithPongSbvM", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(request:engine:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocket", + "printedName": "VideosdkWebSocket.WebSocket", + "usr": "s:17VideosdkWebSocket0bC0C" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Engine", + "printedName": "VideosdkWebSocket.Engine", + "usr": "s:17VideosdkWebSocket6EngineP" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket0bC0C7request6engineAC10Foundation10URLRequestV_AA6Engine_ptcfc", + "mangledName": "$s17VideosdkWebSocket0bC0C7request6engineAC10Foundation10URLRequestV_AA6Engine_ptcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(request:certPinner:compressionHandler:useCustomEngine:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocket", + "printedName": "VideosdkWebSocket.WebSocket", + "usr": "s:17VideosdkWebSocket0bC0C" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CertificatePinning?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificatePinning", + "printedName": "VideosdkWebSocket.CertificatePinning", + "usr": "s:17VideosdkWebSocket18CertificatePinningP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CompressionHandler?", + "children": [ + { + "kind": "TypeNominal", + "name": "CompressionHandler", + "printedName": "VideosdkWebSocket.CompressionHandler", + "usr": "s:17VideosdkWebSocket18CompressionHandlerP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket0bC0C7request10certPinner18compressionHandler15useCustomEngineAC10Foundation10URLRequestV_AA18CertificatePinning_pSgAA011CompressionH0_pSgSbtcfc", + "mangledName": "$s17VideosdkWebSocket0bC0C7request10certPinner18compressionHandler15useCustomEngineAC10Foundation10URLRequestV_AA18CertificatePinning_pSgAA011CompressionH0_pSgSbtcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "connect", + "printedName": "connect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C7connectyyF", + "mangledName": "$s17VideosdkWebSocket0bC0C7connectyyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect(closeCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "hasDefaultArg": true, + "usr": "s:s6UInt16V" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C10disconnect9closeCodeys6UInt16V_tF", + "mangledName": "$s17VideosdkWebSocket0bC0C10disconnect9closeCodeys6UInt16V_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forceDisconnect", + "printedName": "forceDisconnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C15forceDisconnectyyF", + "mangledName": "$s17VideosdkWebSocket0bC0C15forceDisconnectyyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C5write4data10completiony10Foundation4DataV_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC0C5write4data10completiony10Foundation4DataV_yycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(string:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C5write6string10completionySS_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC0C5write6string10completionySS_yycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(stringData:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C5write10stringData10completiony10Foundation0F0V_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC0C5write10stringData10completiony10Foundation0F0V_yycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(ping:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C5write4ping10completiony10Foundation4DataV_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC0C5write4ping10completiony10Foundation4DataV_yycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(pong:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C5write4pong10completiony10Foundation4DataV_yycSgtF", + "mangledName": "$s17VideosdkWebSocket0bC0C5write4pong10completiony10Foundation4DataV_yycSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "didReceive", + "printedName": "didReceive(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "VideosdkWebSocket.WebSocketEvent", + "usr": "s:17VideosdkWebSocket0bC5EventO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket0bC0C10didReceive5eventyAA0bC5EventO_tF", + "mangledName": "$s17VideosdkWebSocket0bC0C10didReceive5eventyAA0bC5EventO_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket0bC0C", + "mangledName": "$s17VideosdkWebSocket0bC0C", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "WebSocketClient", + "printedName": "WebSocketClient", + "usr": "s:17VideosdkWebSocket0bC6ClientP", + "mangledName": "$s17VideosdkWebSocket0bC6ClientP" + }, + { + "kind": "Conformance", + "name": "EngineDelegate", + "printedName": "EngineDelegate", + "usr": "s:17VideosdkWebSocket14EngineDelegateP", + "mangledName": "$s17VideosdkWebSocket14EngineDelegateP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FoundationTransportError", + "printedName": "FoundationTransportError", + "children": [ + { + "kind": "Var", + "name": "invalidRequest", + "printedName": "invalidRequest", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FoundationTransportError.Type) -> VideosdkWebSocket.FoundationTransportError", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FoundationTransportError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO14invalidRequestyA2CmF", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO14invalidRequestyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "invalidOutputStream", + "printedName": "invalidOutputStream", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FoundationTransportError.Type) -> VideosdkWebSocket.FoundationTransportError", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FoundationTransportError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO19invalidOutputStreamyA2CmF", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO19invalidOutputStreamyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "timeout", + "printedName": "timeout", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.FoundationTransportError.Type) -> VideosdkWebSocket.FoundationTransportError", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.FoundationTransportError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO7timeoutyA2CmF", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO7timeoutyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + }, + { + "kind": "TypeNominal", + "name": "FoundationTransportError", + "printedName": "VideosdkWebSocket.FoundationTransportError", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO9hashValueSivp", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO9hashValueSivp", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO9hashValueSivg", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO9hashValueSivg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket24FoundationTransportErrorO", + "mangledName": "$s17VideosdkWebSocket24FoundationTransportErrorO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FoundationTransport", + "printedName": "FoundationTransport", + "children": [ + { + "kind": "Var", + "name": "usingTLS", + "printedName": "usingTLS", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket19FoundationTransportC8usingTLSSbvp", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC8usingTLSSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket19FoundationTransportC8usingTLSSbvg", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC8usingTLSSbvg", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(streamConfiguration:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransport", + "printedName": "VideosdkWebSocket.FoundationTransport", + "usr": "c:@M@VideosdkWebSocket@objc(cs)FoundationTransport" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.InputStream, Foundation.OutputStream) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.InputStream, Foundation.OutputStream) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.InputStream, Foundation.OutputStream)", + "children": [ + { + "kind": "TypeNominal", + "name": "InputStream", + "printedName": "Foundation.InputStream", + "usr": "c:objc(cs)NSInputStream" + }, + { + "kind": "TypeNominal", + "name": "OutputStream", + "printedName": "Foundation.OutputStream", + "usr": "c:objc(cs)NSOutputStream" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket19FoundationTransportC19streamConfigurationACySo13NSInputStreamC_So08NSOutputI0CtcSg_tcfc", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC19streamConfigurationACySo13NSInputStreamC_So08NSOutputI0CtcSg_tcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "connect", + "printedName": "connect(url:timeout:certificatePinning:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CertificatePinning?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificatePinning", + "printedName": "VideosdkWebSocket.CertificatePinning", + "usr": "s:17VideosdkWebSocket18CertificatePinningP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket19FoundationTransportC7connect3url7timeout18certificatePinningy0D03URLV_SdAA011CertificateJ0_pSgtF", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC7connect3url7timeout18certificatePinningy0D03URLV_SdAA011CertificateJ0_pSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket19FoundationTransportC10disconnectyyF", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC10disconnectyyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TransportEventClient", + "printedName": "VideosdkWebSocket.TransportEventClient", + "usr": "s:17VideosdkWebSocket20TransportEventClientP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket19FoundationTransportC8register8delegateyAA0E11EventClient_p_tF", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC8register8delegateyAA0E11EventClient_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket19FoundationTransportC5write4data10completiony0D04DataV_ys5Error_pSgctF", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC5write4data10completiony0D04DataV_ys5Error_pSgctF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stream", + "printedName": "stream(_:handle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Stream", + "printedName": "Foundation.Stream", + "usr": "c:objc(cs)NSStream" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "Foundation.Stream.Event", + "usr": "c:@E@NSStreamEvent" + } + ], + "declKind": "Func", + "usr": "c:@M@VideosdkWebSocket@objc(cs)FoundationTransport(im)stream:handleEvent:", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC6stream_6handleySo8NSStreamC_So0H5EventVtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "objc_name": "stream:handleEvent:", + "declAttributes": [ + "ObjC", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FoundationTransport", + "printedName": "VideosdkWebSocket.FoundationTransport", + "usr": "c:@M@VideosdkWebSocket@objc(cs)FoundationTransport" + } + ], + "declKind": "Constructor", + "usr": "c:@M@VideosdkWebSocket@objc(cs)FoundationTransport(im)init", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportCACycfc", + "moduleName": "VideosdkWebSocket", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@VideosdkWebSocket@objc(cs)FoundationTransport", + "mangledName": "$s17VideosdkWebSocket19FoundationTransportC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Transport", + "printedName": "Transport", + "usr": "s:17VideosdkWebSocket9TransportP", + "mangledName": "$s17VideosdkWebSocket9TransportP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "TypeDecl", + "name": "TCPTransportError", + "printedName": "TCPTransportError", + "children": [ + { + "kind": "Var", + "name": "invalidRequest", + "printedName": "invalidRequest", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.TCPTransportError.Type) -> VideosdkWebSocket.TCPTransportError", + "children": [ + { + "kind": "TypeNominal", + "name": "TCPTransportError", + "printedName": "VideosdkWebSocket.TCPTransportError", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.TCPTransportError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TCPTransportError", + "printedName": "VideosdkWebSocket.TCPTransportError", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO14invalidRequestyA2CmF", + "mangledName": "$s17VideosdkWebSocket17TCPTransportErrorO14invalidRequestyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TCPTransportError", + "printedName": "VideosdkWebSocket.TCPTransportError", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO" + }, + { + "kind": "TypeNominal", + "name": "TCPTransportError", + "printedName": "VideosdkWebSocket.TCPTransportError", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s17VideosdkWebSocket17TCPTransportErrorO2eeoiySbAC_ACtFZ", + "moduleName": "VideosdkWebSocket", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO9hashValueSivp", + "mangledName": "$s17VideosdkWebSocket17TCPTransportErrorO9hashValueSivp", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO9hashValueSivg", + "mangledName": "$s17VideosdkWebSocket17TCPTransportErrorO9hashValueSivg", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s17VideosdkWebSocket17TCPTransportErrorO4hash4intoys6HasherVz_tF", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket17TCPTransportErrorO", + "mangledName": "$s17VideosdkWebSocket17TCPTransportErrorO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TCPTransport", + "printedName": "TCPTransport", + "children": [ + { + "kind": "Var", + "name": "usingTLS", + "printedName": "usingTLS", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket12TCPTransportC8usingTLSSbvp", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC8usingTLSSbvp", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket12TCPTransportC8usingTLSSbvg", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC8usingTLSSbvg", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(connection:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TCPTransport", + "printedName": "VideosdkWebSocket.TCPTransport", + "usr": "s:17VideosdkWebSocket12TCPTransportC" + }, + { + "kind": "TypeNominal", + "name": "NWConnection", + "printedName": "Network.NWConnection", + "usr": "s:7Network12NWConnectionC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket12TCPTransportC10connectionAC7Network12NWConnectionC_tcfc", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC10connectionAC7Network12NWConnectionC_tcfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TCPTransport", + "printedName": "VideosdkWebSocket.TCPTransport", + "usr": "s:17VideosdkWebSocket12TCPTransportC" + } + ], + "declKind": "Constructor", + "usr": "s:17VideosdkWebSocket12TCPTransportCACycfc", + "mangledName": "$s17VideosdkWebSocket12TCPTransportCACycfc", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "connect", + "printedName": "connect(url:timeout:certificatePinning:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CertificatePinning?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificatePinning", + "printedName": "VideosdkWebSocket.CertificatePinning", + "usr": "s:17VideosdkWebSocket18CertificatePinningP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12TCPTransportC7connect3url7timeout18certificatePinningy10Foundation3URLV_SdAA011CertificateI0_pSgtF", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC7connect3url7timeout18certificatePinningy10Foundation3URLV_SdAA011CertificateI0_pSgtF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12TCPTransportC10disconnectyyF", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC10disconnectyyF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TransportEventClient", + "printedName": "VideosdkWebSocket.TransportEventClient", + "usr": "s:17VideosdkWebSocket20TransportEventClientP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12TCPTransportC8register8delegateyAA20TransportEventClient_p_tF", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC8register8delegateyAA20TransportEventClient_p_tF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket12TCPTransportC5write4data10completiony10Foundation4DataV_ys5Error_pSgctF", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC5write4data10completiony10Foundation4DataV_ys5Error_pSgctF", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:17VideosdkWebSocket12TCPTransportC", + "mangledName": "$s17VideosdkWebSocket12TCPTransportC", + "moduleName": "VideosdkWebSocket", + "isOpen": true, + "intro_Macosx": "10.14", + "intro_iOS": "12.0", + "intro_tvOS": "12.0", + "intro_watchOS": "5.0", + "declAttributes": [ + "AccessControl", + "Available", + "Available", + "Available", + "Available" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Transport", + "printedName": "Transport", + "usr": "s:17VideosdkWebSocket9TransportP", + "mangledName": "$s17VideosdkWebSocket9TransportP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ConnectionState", + "printedName": "ConnectionState", + "children": [ + { + "kind": "Var", + "name": "connected", + "printedName": "connected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionState.Type) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionStateO9connectedyA2CmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO9connectedyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "waiting", + "printedName": "waiting", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionState.Type) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionStateO7waitingyA2CmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO7waitingyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionState.Type) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionStateO9cancelledyA2CmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO9cancelledyA2CmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionState.Type) -> (Swift.Error?) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error?) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionStateO6failedyACs5Error_pSgcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO6failedyACs5Error_pSgcACmF", + "moduleName": "VideosdkWebSocket" + }, + { + "kind": "Var", + "name": "viability", + "printedName": "viability", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionState.Type) -> (Swift.Bool) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionStateO9viabilityyACSbcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO9viabilityyACSbcACmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "shouldReconnect", + "printedName": "shouldReconnect", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionState.Type) -> (Swift.Bool) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionStateO15shouldReconnectyACSbcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO15shouldReconnectyACSbcACmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "receive", + "printedName": "receive", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(VideosdkWebSocket.ConnectionState.Type) -> (Foundation.Data) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data) -> VideosdkWebSocket.ConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "VideosdkWebSocket.ConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:17VideosdkWebSocket15ConnectionStateO7receiveyAC10Foundation4DataVcACmF", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO7receiveyAC10Foundation4DataVcACmF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ] + } + ], + "declKind": "Enum", + "usr": "s:17VideosdkWebSocket15ConnectionStateO", + "mangledName": "$s17VideosdkWebSocket15ConnectionStateO", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "TransportEventClient", + "printedName": "TransportEventClient", + "children": [ + { + "kind": "Function", + "name": "connectionChanged", + "printedName": "connectionChanged(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ConnectionState", + "printedName": "VideosdkWebSocket.ConnectionState", + "usr": "s:17VideosdkWebSocket15ConnectionStateO" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket20TransportEventClientP17connectionChanged5stateyAA15ConnectionStateO_tF", + "mangledName": "$s17VideosdkWebSocket20TransportEventClientP17connectionChanged5stateyAA15ConnectionStateO_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.TransportEventClient>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket20TransportEventClientP", + "mangledName": "$s17VideosdkWebSocket20TransportEventClientP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Transport", + "printedName": "Transport", + "children": [ + { + "kind": "Function", + "name": "register", + "printedName": "register(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TransportEventClient", + "printedName": "VideosdkWebSocket.TransportEventClient", + "usr": "s:17VideosdkWebSocket20TransportEventClientP" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket9TransportP8register8delegateyAA0D11EventClient_p_tF", + "mangledName": "$s17VideosdkWebSocket9TransportP8register8delegateyAA0D11EventClient_p_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "connect", + "printedName": "connect(url:timeout:certificatePinning:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.CertificatePinning?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificatePinning", + "printedName": "VideosdkWebSocket.CertificatePinning", + "usr": "s:17VideosdkWebSocket18CertificatePinningP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket9TransportP7connect3url7timeout18certificatePinningy10Foundation3URLV_SdAA011CertificateI0_pSgtF", + "mangledName": "$s17VideosdkWebSocket9TransportP7connect3url7timeout18certificatePinningy10Foundation3URLV_SdAA011CertificateI0_pSgtF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket9TransportP10disconnectyyF", + "mangledName": "$s17VideosdkWebSocket9TransportP10disconnectyyF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(data:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:17VideosdkWebSocket9TransportP5write4data10completiony10Foundation4DataV_ys5Error_pSgctF", + "mangledName": "$s17VideosdkWebSocket9TransportP5write4data10completiony10Foundation4DataV_ys5Error_pSgctF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "usingTLS", + "printedName": "usingTLS", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:17VideosdkWebSocket9TransportP8usingTLSSbvp", + "mangledName": "$s17VideosdkWebSocket9TransportP8usingTLSSbvp", + "moduleName": "VideosdkWebSocket", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:17VideosdkWebSocket9TransportP8usingTLSSbvg", + "mangledName": "$s17VideosdkWebSocket9TransportP8usingTLSSbvg", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : VideosdkWebSocket.Transport>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:17VideosdkWebSocket9TransportP", + "mangledName": "$s17VideosdkWebSocket9TransportP", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "Data", + "printedName": "Data", + "children": [ + { + "kind": "TypeDecl", + "name": "ByteError", + "printedName": "ByteError", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ByteError", + "printedName": "Foundation.Data.ByteError", + "usr": "s:10Foundation4DataV17VideosdkWebSocketE9ByteErrorV" + } + ], + "declKind": "Constructor", + "usr": "s:10Foundation4DataV17VideosdkWebSocketE9ByteErrorVAFycfc", + "mangledName": "$s10Foundation4DataV17VideosdkWebSocketE9ByteErrorVAFycfc", + "moduleName": "VideosdkWebSocket", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:10Foundation4DataV17VideosdkWebSocketE9ByteErrorV", + "mangledName": "$s10Foundation4DataV17VideosdkWebSocketE9ByteErrorV", + "moduleName": "VideosdkWebSocket", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "withUnsafeBytes", + "printedName": "withUnsafeBytes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.UnsafePointer<τ_0_1>) throws -> τ_0_0", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "UnsafePointer", + "printedName": "Swift.UnsafePointer<τ_0_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SP" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV17VideosdkWebSocketE15withUnsafeBytesyxxSPyq_GKXEKr0_lF", + "mangledName": "$s10Foundation4DataV17VideosdkWebSocketE15withUnsafeBytesyxxSPyq_GKXEKr0_lF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0, τ_0_1>", + "sugared_genericSig": "", + "declAttributes": [ + "Rethrows" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "withUnsafeMutableBytes", + "printedName": "withUnsafeMutableBytes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.UnsafeMutablePointer<τ_0_1>) throws -> τ_0_0", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "UnsafeMutablePointer", + "printedName": "Swift.UnsafeMutablePointer<τ_0_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:Sp" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV17VideosdkWebSocketE22withUnsafeMutableBytesyxxSpyq_GKXEKr0_lF", + "mangledName": "$s10Foundation4DataV17VideosdkWebSocketE22withUnsafeMutableBytesyxxSpyq_GKXEKr0_lF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0, τ_0_1>", + "sugared_genericSig": "", + "declAttributes": [ + "Rethrows", + "Mutating" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Struct", + "usr": "s:10Foundation4DataV", + "mangledName": "$s10Foundation4DataV", + "moduleName": "Foundation", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ReferenceConvertible", + "printedName": "ReferenceConvertible", + "children": [ + { + "kind": "TypeWitness", + "name": "ReferenceType", + "printedName": "ReferenceType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ] + } + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RandomAccessCollection", + "printedName": "RandomAccessCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sk", + "mangledName": "$sSk" + }, + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MutableDataProtocol", + "printedName": "MutableDataProtocol", + "usr": "s:10Foundation19MutableDataProtocolP", + "mangledName": "$s10Foundation19MutableDataProtocolP" + }, + { + "kind": "Conformance", + "name": "ContiguousBytes", + "printedName": "ContiguousBytes", + "usr": "s:10Foundation15ContiguousBytesP", + "mangledName": "$s10Foundation15ContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "DataProtocol", + "printedName": "DataProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "Regions", + "printedName": "Regions", + "children": [ + { + "kind": "TypeNominal", + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:s15CollectionOfOneV" + } + ] + } + ], + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UInt8", + "printedName": "UInt8", + "declKind": "Struct", + "usr": "s:s5UInt8V", + "mangledName": "$ss5UInt8V", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "FixedWidthInteger", + "printedName": "FixedWidthInteger", + "usr": "s:s17FixedWidthIntegerP", + "mangledName": "$ss17FixedWidthIntegerP" + }, + { + "kind": "Conformance", + "name": "UnsignedInteger", + "printedName": "UnsignedInteger", + "usr": "s:SU", + "mangledName": "$sSU" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "BinaryInteger", + "printedName": "BinaryInteger", + "children": [ + { + "kind": "TypeWitness", + "name": "Words", + "printedName": "Words", + "children": [ + { + "kind": "TypeNominal", + "name": "Words", + "printedName": "Swift.UInt8.Words", + "usr": "s:s5UInt8V5WordsV" + } + ] + } + ], + "usr": "s:Sz", + "mangledName": "$sSz" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "MyWSArrayType", + "printedName": "MyWSArrayType", + "usr": "s:17VideosdkWebSocket13MyWSArrayTypeP", + "mangledName": "$s17VideosdkWebSocket13MyWSArrayTypeP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_StringElement", + "printedName": "_StringElement", + "usr": "s:s14_StringElementP", + "mangledName": "$ss14_StringElementP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ + { + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", + "children": [ + { + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.UInt8.SIMD2Storage", + "usr": "s:s5UInt8V12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.UInt8.SIMD4Storage", + "usr": "s:s5UInt8V12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.UInt8.SIMD8Storage", + "usr": "s:s5UInt8V12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.UInt8.SIMD16Storage", + "usr": "s:s5UInt8V13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.UInt8.SIMD32Storage", + "usr": "s:s5UInt8V13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.UInt8.SIMD64Storage", + "usr": "s:s5UInt8V13SIMD64StorageV" + } + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Array", + "printedName": "Array", + "children": [ + { + "kind": "Function", + "name": "readUint16", + "printedName": "readUint16(offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:Sa17VideosdkWebSocketSURzAA13MyWSArrayTypeRzlE10readUint166offsets6UInt16VSi_tF", + "mangledName": "$sSa17VideosdkWebSocketSURzAA13MyWSArrayTypeRzlE10readUint166offsets6UInt16VSi_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.UnsignedInteger, τ_0_0 : VideosdkWebSocket.MyWSArrayType>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readUint64", + "printedName": "readUint64(offset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:Sa17VideosdkWebSocketSURzAA13MyWSArrayTypeRzlE10readUint646offsets6UInt64VSi_tF", + "mangledName": "$sSa17VideosdkWebSocketSURzAA13MyWSArrayTypeRzlE10readUint646offsets6UInt64VSi_tF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.UnsignedInteger, τ_0_0 : VideosdkWebSocket.MyWSArrayType>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unmaskData", + "printedName": "unmaskData(maskStart:offset:length:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:Sa17VideosdkWebSocketSURzAA13MyWSArrayTypeRzlE10unmaskData9maskStart6offset6length10Foundation0H0VSi_S2itF", + "mangledName": "$sSa17VideosdkWebSocketSURzAA13MyWSArrayTypeRzlE10unmaskData9maskStart6offset6length10Foundation0H0VSi_S2itF", + "moduleName": "VideosdkWebSocket", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.UnsignedInteger, τ_0_0 : VideosdkWebSocket.MyWSArrayType>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:Sa", + "mangledName": "$sSa", + "moduleName": "Swift", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_DestructorSafeContainer", + "printedName": "_DestructorSafeContainer", + "usr": "s:s24_DestructorSafeContainerP", + "mangledName": "$ss24_DestructorSafeContainerP" + }, + { + "kind": "Conformance", + "name": "_ArrayProtocol", + "printedName": "_ArrayProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "_Buffer", + "printedName": "_Buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "_ArrayBuffer", + "printedName": "Swift._ArrayBuffer<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s12_ArrayBufferV" + } + ] + } + ], + "usr": "s:s14_ArrayProtocolP", + "mangledName": "$ss14_ArrayProtocolP" + }, + { + "kind": "Conformance", + "name": "RandomAccessCollection", + "printedName": "RandomAccessCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sk", + "mangledName": "$sSk" + }, + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "ExpressibleByArrayLiteral", + "printedName": "ExpressibleByArrayLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:s25ExpressibleByArrayLiteralP", + "mangledName": "$ss25ExpressibleByArrayLiteralP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "DataProtocol", + "printedName": "DataProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "Regions", + "printedName": "Regions", + "children": [ + { + "kind": "TypeNominal", + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s15CollectionOfOneV" + } + ] + } + ], + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" + }, + { + "kind": "Conformance", + "name": "MutableDataProtocol", + "printedName": "MutableDataProtocol", + "usr": "s:10Foundation19MutableDataProtocolP", + "mangledName": "$s10Foundation19MutableDataProtocolP" + }, + { + "kind": "Conformance", + "name": "EncodableWithConfiguration", + "printedName": "EncodableWithConfiguration", + "children": [ + { + "kind": "TypeWitness", + "name": "EncodingConfiguration", + "printedName": "EncodingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.EncodingConfiguration" + } + ] + } + ], + "usr": "s:10Foundation26EncodableWithConfigurationP", + "mangledName": "$s10Foundation26EncodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "DecodableWithConfiguration", + "printedName": "DecodableWithConfiguration", + "children": [ + { + "kind": "TypeWitness", + "name": "DecodingConfiguration", + "printedName": "DecodingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.DecodingConfiguration" + } + ] + } + ], + "usr": "s:10Foundation26DecodableWithConfigurationP", + "mangledName": "$s10Foundation26DecodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSArray", + "printedName": "Foundation.NSArray", + "usr": "c:objc(cs)NSArray" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "ContiguousBytes", + "printedName": "ContiguousBytes", + "usr": "s:10Foundation15ContiguousBytesP", + "mangledName": "$s10Foundation15ContiguousBytesP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "URL", + "printedName": "URL", + "children": [ + { + "kind": "Var", + "name": "isTLSScheme", + "printedName": "isTLSScheme", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10Foundation3URLV17VideosdkWebSocketE11isTLSSchemeSbvp", + "mangledName": "$s10Foundation3URLV17VideosdkWebSocketE11isTLSSchemeSbvp", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10Foundation3URLV17VideosdkWebSocketE11isTLSSchemeSbvg", + "mangledName": "$s10Foundation3URLV17VideosdkWebSocketE11isTLSSchemeSbvg", + "moduleName": "VideosdkWebSocket", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getParts", + "printedName": "getParts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "VideosdkWebSocket.URLParts?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLParts", + "printedName": "VideosdkWebSocket.URLParts", + "usr": "s:17VideosdkWebSocket8URLPartsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:10Foundation3URLV17VideosdkWebSocketE8getPartsAD8URLPartsVSgyF", + "mangledName": "$s10Foundation3URLV17VideosdkWebSocketE8getPartsAD8URLPartsVSgyF", + "moduleName": "VideosdkWebSocket", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:10Foundation3URLV", + "mangledName": "$s10Foundation3URLV", + "moduleName": "Foundation", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ReferenceConvertible", + "printedName": "ReferenceConvertible", + "children": [ + { + "kind": "TypeWitness", + "name": "ReferenceType", + "printedName": "ReferenceType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSURL", + "printedName": "Foundation.NSURL", + "usr": "c:objc(cs)NSURL" + } + ] + } + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSURL", + "printedName": "Foundation.NSURL", + "usr": "c:objc(cs)NSURL" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByFileReferenceLiteral", + "printedName": "_ExpressibleByFileReferenceLiteral", + "usr": "s:s34_ExpressibleByFileReferenceLiteralP", + "mangledName": "$ss34_ExpressibleByFileReferenceLiteralP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "StringLiteral", + "offset": 1368, + "length": 26, + "value": "\"Sec-WebSocket-Extensions\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "BooleanLiteral", + "offset": 1494, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "BooleanLiteral", + "offset": 1529, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "IntegerLiteral", + "offset": 3763, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "IntegerLiteral", + "offset": 3773, + "length": 6, + "value": "0x2000" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "BooleanLiteral", + "offset": 3818, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "IntegerLiteral", + "offset": 6336, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "IntegerLiteral", + "offset": 6346, + "length": 6, + "value": "0x2000" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Compression\/WSCompression.swift", + "kind": "BooleanLiteral", + "offset": 6391, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Engine\/WSEngine.swift", + "kind": "BooleanLiteral", + "offset": 651, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Engine\/WSEngine.swift", + "kind": "StringLiteral", + "offset": 687, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Engine\/WSEngine.swift", + "kind": "StringLiteral", + "offset": 740, + "length": 33, + "value": "\"com.vluxe.starscream.writequeue\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Engine\/WSEngine.swift", + "kind": "IntegerLiteral", + "offset": 824, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Engine\/WSEngine.swift", + "kind": "BooleanLiteral", + "offset": 853, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Engine\/WSEngine.swift", + "kind": "BooleanLiteral", + "offset": 948, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/FoundationHTTPServerHandler.swift", + "kind": "StringLiteral", + "offset": 1084, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/FrameCollector.swift", + "kind": "IntegerLiteral", + "offset": 1394, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/FrameCollector.swift", + "kind": "BooleanLiteral", + "offset": 1413, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/FrameCollector.swift", + "kind": "BooleanLiteral", + "offset": 1502, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 943, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 978, + "length": 4, + "value": "0x0F" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1013, + "length": 4, + "value": "0x70" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1048, + "length": 4, + "value": "0x40" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1083, + "length": 4, + "value": "0x80" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1118, + "length": 4, + "value": "0x7F" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1153, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1257, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1296, + "length": 4, + "value": "1001" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1335, + "length": 4, + "value": "1002" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1374, + "length": 4, + "value": "1003" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1435, + "length": 4, + "value": "1005" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1495, + "length": 4, + "value": "1007" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1534, + "length": 4, + "value": "1008" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1573, + "length": 4, + "value": "1009" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1257, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1296, + "length": 4, + "value": "1001" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1335, + "length": 4, + "value": "1002" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1374, + "length": 4, + "value": "1003" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1435, + "length": 4, + "value": "1005" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1495, + "length": 4, + "value": "1007" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1534, + "length": 4, + "value": "1008" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1573, + "length": 4, + "value": "1009" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1257, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1296, + "length": 4, + "value": "1001" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1335, + "length": 4, + "value": "1002" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1374, + "length": 4, + "value": "1003" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1435, + "length": 4, + "value": "1005" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1495, + "length": 4, + "value": "1007" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1534, + "length": 4, + "value": "1008" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1573, + "length": 4, + "value": "1009" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1639, + "length": 3, + "value": "0x0" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1664, + "length": 3, + "value": "0x1" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1691, + "length": 3, + "value": "0x2" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1747, + "length": 3, + "value": "0x8" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1767, + "length": 3, + "value": "0x9" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1787, + "length": 3, + "value": "0xA" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1831, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1639, + "length": 3, + "value": "0x0" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1664, + "length": 3, + "value": "0x1" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1691, + "length": 3, + "value": "0x2" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1747, + "length": 3, + "value": "0x8" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1767, + "length": 3, + "value": "0x9" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1787, + "length": 3, + "value": "0xA" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1831, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1639, + "length": 3, + "value": "0x0" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1664, + "length": 3, + "value": "0x1" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1691, + "length": 3, + "value": "0x2" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1747, + "length": 3, + "value": "0x8" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1767, + "length": 3, + "value": "0x9" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1787, + "length": 3, + "value": "0xA" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "IntegerLiteral", + "offset": 1831, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "StringLiteral", + "offset": 2597, + "length": 31, + "value": "\"com.vluxe.starscream.wsframer\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "Array", + "offset": 2642, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "BooleanLiteral", + "offset": 2764, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/Framer.swift", + "kind": "BooleanLiteral", + "offset": 2839, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1090, + "length": 9, + "value": "\"Upgrade\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 11, + "value": "\"websocket\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1184, + "length": 6, + "value": "\"Host\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1227, + "length": 12, + "value": "\"Connection\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1276, + "length": 9, + "value": "\"Upgrade\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1322, + "length": 24, + "value": "\"Sec-WebSocket-Protocol\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1383, + "length": 23, + "value": "\"Sec-WebSocket-Version\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1443, + "length": 4, + "value": "\"13\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1484, + "length": 26, + "value": "\"Sec-WebSocket-Extensions\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1547, + "length": 19, + "value": "\"Sec-WebSocket-Key\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1603, + "length": 8, + "value": "\"Origin\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "StringLiteral", + "offset": 1648, + "length": 22, + "value": "\"Sec-WebSocket-Accept\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "IntegerLiteral", + "offset": 1707, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Framer\/HTTPHandler.swift", + "kind": "Array", + "offset": 1747, + "length": 16, + "value": "[\"wss\", \"https\"]" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/FoundationSecurity.swift", + "kind": "BooleanLiteral", + "offset": 1078, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/FoundationSecurity.swift", + "kind": "BooleanLiteral", + "offset": 1129, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/Security.swift", + "kind": "IntegerLiteral", + "offset": 979, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/Security.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/Security.swift", + "kind": "IntegerLiteral", + "offset": 979, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/Security.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/Security.swift", + "kind": "IntegerLiteral", + "offset": 979, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Security\/Security.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Server\/WebSocketServer.swift", + "kind": "StringLiteral", + "offset": 1383, + "length": 43, + "value": "\"com.vluxe.starscream.server.networkstream\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Server\/WebSocketServer.swift", + "kind": "Array", + "offset": 1440, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Server\/WebSocketServer.swift", + "kind": "BooleanLiteral", + "offset": 3676, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Server\/WebSocketServer.swift", + "kind": "BooleanLiteral", + "offset": 3759, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Starscream\/WebSocket.swift", + "kind": "BooleanLiteral", + "offset": 3679, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/FoundationTransport.swift", + "kind": "StringLiteral", + "offset": 1219, + "length": 32, + "value": "\"com.vluxe.starscream.websocket\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/FoundationTransport.swift", + "kind": "Array", + "offset": 1265, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/FoundationTransport.swift", + "kind": "BooleanLiteral", + "offset": 1380, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/FoundationTransport.swift", + "kind": "BooleanLiteral", + "offset": 1476, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/FoundationTransport.swift", + "kind": "IntegerLiteral", + "offset": 1910, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/FoundationTransport.swift", + "kind": "StringLiteral", + "offset": 1058, + "length": 19, + "value": "\"VideosdkWebSocket.FoundationTransport\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/TCPTransport.swift", + "kind": "StringLiteral", + "offset": 1211, + "length": 36, + "value": "\"com.vluxe.starscream.networkstream\"" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/TCPTransport.swift", + "kind": "Array", + "offset": 1261, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/TCPTransport.swift", + "kind": "BooleanLiteral", + "offset": 1346, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/TCPTransport.swift", + "kind": "BooleanLiteral", + "offset": 1376, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/dhiwise\/Desktop\/rajan\/Starscream\/Sources\/Transport\/TCPTransport.swift", + "kind": "IntegerLiteral", + "offset": 1712, + "length": 2, + "value": "10" + } + ] +} \ No newline at end of file diff --git a/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface new file mode 100644 index 0000000..0d956fe --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -0,0 +1,435 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) +// swift-module-flags: -target x86_64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name VideosdkWebSocket +// swift-module-flags-ignorable: -enable-bare-slash-regex +import CommonCrypto +import Foundation +import Network +import Swift +import _Concurrency +import _StringProcessing +import zlib +public protocol CompressionHandler { + func load(headers: [Swift.String : Swift.String]) + func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + func compress(data: Foundation.Data) -> Foundation.Data? +} +public class WSCompression : VideosdkWebSocket.CompressionHandler { + public init() + public func load(headers: [Swift.String : Swift.String]) + public func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + public func compress(data: Foundation.Data) -> Foundation.Data? + @objc deinit +} +public protocol EngineDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.WebSocketEvent) +} +public protocol Engine { + func register(delegate: VideosdkWebSocket.EngineDelegate) + func start(request: Foundation.URLRequest) + func stop(closeCode: Swift.UInt16) + func forceStop() + func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode, completion: (() -> ())?) + func write(string: Swift.String, completion: (() -> ())?) +} +@objc @_inheritsConvenienceInitializers @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +public class NativeEngine : ObjectiveC.NSObject, VideosdkWebSocket.Engine, Foundation.URLSessionDataDelegate, Foundation.URLSessionWebSocketDelegate { + public func register(delegate: VideosdkWebSocket.EngineDelegate) + public func start(request: Foundation.URLRequest) + public func stop(closeCode: Swift.UInt16) + public func forceStop() + public func write(string: Swift.String, completion: (() -> ())?) + public func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode, completion: (() -> ())?) + @objc public func urlSession(_ session: Foundation.URLSession, webSocketTask: Foundation.URLSessionWebSocketTask, didOpenWithProtocol protocol: Swift.String?) + @objc public func urlSession(_ session: Foundation.URLSession, webSocketTask: Foundation.URLSessionWebSocketTask, didCloseWith closeCode: Foundation.URLSessionWebSocketTask.CloseCode, reason: Foundation.Data?) + @objc override dynamic public init() + @objc deinit +} +public class WSEngine : VideosdkWebSocket.Engine, VideosdkWebSocket.TransportEventClient, VideosdkWebSocket.FramerEventClient, VideosdkWebSocket.FrameCollectorDelegate, VideosdkWebSocket.HTTPHandlerDelegate { + public var respondToPingWithPong: Swift.Bool + public init(transport: VideosdkWebSocket.Transport, certPinner: VideosdkWebSocket.CertificatePinning? = nil, headerValidator: VideosdkWebSocket.HeaderValidator = FoundationSecurity(), httpHandler: VideosdkWebSocket.HTTPHandler = FoundationHTTPHandler(), framer: VideosdkWebSocket.Framer = WSFramer(), compressionHandler: VideosdkWebSocket.CompressionHandler? = nil) + public func register(delegate: VideosdkWebSocket.EngineDelegate) + public func start(request: Foundation.URLRequest) + public func stop(closeCode: Swift.UInt16 = CloseCode.normal.rawValue) + public func forceStop() + public func write(string: Swift.String, completion: (() -> ())?) + public func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode, completion: (() -> ())?) + public func connectionChanged(state: VideosdkWebSocket.ConnectionState) + public func didReceiveHTTP(event: VideosdkWebSocket.HTTPEvent) + public func frameProcessed(event: VideosdkWebSocket.FrameEvent) + public func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + public func didForm(event: VideosdkWebSocket.FrameCollector.Event) + @objc deinit +} +public class FoundationHTTPHandler : VideosdkWebSocket.HTTPHandler { + public init() + public func convert(request: Foundation.URLRequest) -> Foundation.Data + public func parse(data: Foundation.Data) -> Swift.Int + public func register(delegate: VideosdkWebSocket.HTTPHandlerDelegate) + @objc deinit +} +@_hasMissingDesignatedInitializers public class FoundationHTTPServerHandler : VideosdkWebSocket.HTTPServerHandler { + public func register(delegate: VideosdkWebSocket.HTTPServerDelegate) + public func createResponse(headers: [Swift.String : Swift.String]) -> Foundation.Data + public func parse(data: Foundation.Data) + @objc deinit +} +public protocol FrameCollectorDelegate : AnyObject { + func didForm(event: VideosdkWebSocket.FrameCollector.Event) + func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? +} +@_hasMissingDesignatedInitializers public class FrameCollector { + public enum Event { + case text(Swift.String) + case binary(Foundation.Data) + case pong(Foundation.Data?) + case ping(Foundation.Data?) + case error(Swift.Error) + case closed(Swift.String, Swift.UInt16) + } + public func add(frame: VideosdkWebSocket.Frame) + @objc deinit +} +public enum CloseCode : Swift.UInt16 { + case normal + case goingAway + case protocolError + case protocolUnhandledType + case noStatusReceived + case encoding + case policyViolated + case messageTooBig + public init?(rawValue: Swift.UInt16) + public typealias RawValue = Swift.UInt16 + public var rawValue: Swift.UInt16 { + get + } +} +public enum FrameOpCode : Swift.UInt8 { + case continueFrame + case textFrame + case binaryFrame + case connectionClose + case ping + case pong + case unknown + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } +} +public struct Frame { +} +public enum FrameEvent { + case frame(VideosdkWebSocket.Frame) + case error(Swift.Error) +} +public protocol FramerEventClient : AnyObject { + func frameProcessed(event: VideosdkWebSocket.FrameEvent) +} +public protocol Framer { + func add(data: Foundation.Data) + func register(delegate: VideosdkWebSocket.FramerEventClient) + func createWriteFrame(opcode: VideosdkWebSocket.FrameOpCode, payload: Foundation.Data, isCompressed: Swift.Bool) -> Foundation.Data + func updateCompression(supports: Swift.Bool) + func supportsCompression() -> Swift.Bool +} +public class WSFramer : VideosdkWebSocket.Framer { + public var compressionEnabled: Swift.Bool + public init(isServer: Swift.Bool = false) + public func updateCompression(supports: Swift.Bool) + public func supportsCompression() -> Swift.Bool + public func add(data: Foundation.Data) + public func register(delegate: VideosdkWebSocket.FramerEventClient) + public func createWriteFrame(opcode: VideosdkWebSocket.FrameOpCode, payload: Foundation.Data, isCompressed: Swift.Bool) -> Foundation.Data + @objc deinit +} +public protocol MyWSArrayType { +} +extension Swift.UInt8 : VideosdkWebSocket.MyWSArrayType { +} +extension Swift.Array where Element : Swift.UnsignedInteger, Element : VideosdkWebSocket.MyWSArrayType { + public func readUint16(offset: Swift.Int) -> Swift.UInt16 + public func readUint64(offset: Swift.Int) -> Swift.UInt64 + public func unmaskData(maskStart: Swift.Int, offset: Swift.Int, length: Swift.Int) -> Foundation.Data +} +public func writeUint16(_ buffer: inout [Swift.UInt8], offset: Swift.Int, value: Swift.UInt16) +public func writeUint32(_ buffer: inout [Swift.UInt8], offset: Swift.Int, value: Swift.UInt32) +public func writeUint64(_ buffer: inout [Swift.UInt8], offset: Swift.Int, value: Swift.UInt64) +public enum HTTPUpgradeError : Swift.Error { + case notAnUpgrade(Swift.Int, [Swift.String : Swift.String]) + case invalidData +} +public struct HTTPWSHeader { + public static func createUpgrade(request: Foundation.URLRequest, supportsCompression: Swift.Bool, secKeyValue: Swift.String) -> Foundation.URLRequest + public static func generateWebSocketKey() -> Swift.String +} +public enum HTTPEvent { + case success([Swift.String : Swift.String]) + case failure(Swift.Error) +} +public protocol HTTPHandlerDelegate : AnyObject { + func didReceiveHTTP(event: VideosdkWebSocket.HTTPEvent) +} +public protocol HTTPHandler { + func register(delegate: VideosdkWebSocket.HTTPHandlerDelegate) + func convert(request: Foundation.URLRequest) -> Foundation.Data + func parse(data: Foundation.Data) -> Swift.Int +} +public protocol HTTPServerDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.HTTPEvent) +} +public protocol HTTPServerHandler { + func register(delegate: VideosdkWebSocket.HTTPServerDelegate) + func parse(data: Foundation.Data) + func createResponse(headers: [Swift.String : Swift.String]) -> Foundation.Data +} +public struct URLParts { +} +extension Foundation.URL { + public var isTLSScheme: Swift.Bool { + get + } + public func getParts() -> VideosdkWebSocket.URLParts? +} +public class StringHTTPHandler : VideosdkWebSocket.HTTPHandler { + public init() + public func convert(request: Foundation.URLRequest) -> Foundation.Data + public func parse(data: Foundation.Data) -> Swift.Int + public func register(delegate: VideosdkWebSocket.HTTPHandlerDelegate) + @objc deinit +} +public enum FoundationSecurityError : Swift.Error { + case invalidRequest + public static func == (a: VideosdkWebSocket.FoundationSecurityError, b: VideosdkWebSocket.FoundationSecurityError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public class FoundationSecurity { + public init(allowSelfSigned: Swift.Bool = false) + @objc deinit +} +extension VideosdkWebSocket.FoundationSecurity : VideosdkWebSocket.CertificatePinning { + public func evaluateTrust(trust: Security.SecTrust, domain: Swift.String?, completion: ((VideosdkWebSocket.PinningState) -> ())) +} +extension VideosdkWebSocket.FoundationSecurity : VideosdkWebSocket.HeaderValidator { + public func validate(headers: [Swift.String : Swift.String], key: Swift.String) -> Swift.Error? +} +public enum SecurityErrorCode : Swift.UInt16 { + case acceptFailed + case pinningFailed + public init?(rawValue: Swift.UInt16) + public typealias RawValue = Swift.UInt16 + public var rawValue: Swift.UInt16 { + get + } +} +public enum PinningState { + case success + case failed(CoreFoundation.CFError?) +} +public protocol CertificatePinning : AnyObject { + func evaluateTrust(trust: Security.SecTrust, domain: Swift.String?, completion: ((VideosdkWebSocket.PinningState) -> ())) +} +public protocol HeaderValidator : AnyObject { + func validate(headers: [Swift.String : Swift.String], key: Swift.String) -> Swift.Error? +} +public enum ConnectionEvent { + case connected([Swift.String : Swift.String]) + case disconnected(Swift.String, Swift.UInt16) + case text(Swift.String) + case binary(Foundation.Data) + case pong(Foundation.Data?) + case ping(Foundation.Data?) + case error(Swift.Error) +} +public protocol Connection { + func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode) +} +public protocol ConnectionDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.ServerEvent) +} +public enum ServerEvent { + case connected(VideosdkWebSocket.Connection, [Swift.String : Swift.String]) + case disconnected(VideosdkWebSocket.Connection, Swift.String, Swift.UInt16) + case text(VideosdkWebSocket.Connection, Swift.String) + case binary(VideosdkWebSocket.Connection, Foundation.Data) + case pong(VideosdkWebSocket.Connection, Foundation.Data?) + case ping(VideosdkWebSocket.Connection, Foundation.Data?) +} +public protocol Server { + func start(address: Swift.String, port: Swift.UInt16) -> Swift.Error? +} +@available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) +@available(watchOS, unavailable) +public class WebSocketServer : VideosdkWebSocket.Server, VideosdkWebSocket.ConnectionDelegate { + public var onEvent: ((VideosdkWebSocket.ServerEvent) -> Swift.Void)? + public init() + public func start(address: Swift.String, port: Swift.UInt16) -> Swift.Error? + public func didReceive(event: VideosdkWebSocket.ServerEvent) + @objc deinit +} +@_hasMissingDesignatedInitializers @available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) +public class ServerConnection : VideosdkWebSocket.Connection, VideosdkWebSocket.HTTPServerDelegate, VideosdkWebSocket.FramerEventClient, VideosdkWebSocket.FrameCollectorDelegate, VideosdkWebSocket.TransportEventClient { + public var onEvent: ((VideosdkWebSocket.ConnectionEvent) -> Swift.Void)? + weak public var delegate: VideosdkWebSocket.ConnectionDelegate? + public func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode) + public func connectionChanged(state: VideosdkWebSocket.ConnectionState) + public func didReceive(event: VideosdkWebSocket.HTTPEvent) + public func frameProcessed(event: VideosdkWebSocket.FrameEvent) + public func didForm(event: VideosdkWebSocket.FrameCollector.Event) + public func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + @objc deinit +} +public enum ErrorType : Swift.Error { + case compressionError + case securityError + case protocolError + case serverError + public static func == (a: VideosdkWebSocket.ErrorType, b: VideosdkWebSocket.ErrorType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct WSError : Swift.Error { + public let type: VideosdkWebSocket.ErrorType + public let message: Swift.String + public let code: Swift.UInt16 + public init(type: VideosdkWebSocket.ErrorType, message: Swift.String, code: Swift.UInt16) +} +public protocol WebSocketClient : AnyObject { + func connect() + func disconnect(closeCode: Swift.UInt16) + func write(string: Swift.String, completion: (() -> ())?) + func write(stringData: Foundation.Data, completion: (() -> ())?) + func write(data: Foundation.Data, completion: (() -> ())?) + func write(ping: Foundation.Data, completion: (() -> ())?) + func write(pong: Foundation.Data, completion: (() -> ())?) +} +extension VideosdkWebSocket.WebSocketClient { + public func write(string: Swift.String) + public func write(data: Foundation.Data) + public func write(ping: Foundation.Data) + public func write(pong: Foundation.Data) + public func disconnect() +} +public enum WebSocketEvent { + case connected([Swift.String : Swift.String]) + case disconnected(Swift.String, Swift.UInt16) + case text(Swift.String) + case binary(Foundation.Data) + case pong(Foundation.Data?) + case ping(Foundation.Data?) + case error(Swift.Error?) + case viabilityChanged(Swift.Bool) + case reconnectSuggested(Swift.Bool) + case cancelled +} +public protocol WebSocketDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.WebSocketEvent, client: VideosdkWebSocket.WebSocketClient) +} +open class WebSocket : VideosdkWebSocket.WebSocketClient, VideosdkWebSocket.EngineDelegate { + weak public var delegate: VideosdkWebSocket.WebSocketDelegate? + public var onEvent: ((VideosdkWebSocket.WebSocketEvent) -> Swift.Void)? + public var request: Foundation.URLRequest + public var callbackQueue: Dispatch.DispatchQueue + public var respondToPingWithPong: Swift.Bool { + get + set + } + public init(request: Foundation.URLRequest, engine: VideosdkWebSocket.Engine) + convenience public init(request: Foundation.URLRequest, certPinner: VideosdkWebSocket.CertificatePinning? = FoundationSecurity(), compressionHandler: VideosdkWebSocket.CompressionHandler? = nil, useCustomEngine: Swift.Bool = true) + public func connect() + public func disconnect(closeCode: Swift.UInt16 = CloseCode.normal.rawValue) + public func forceDisconnect() + public func write(data: Foundation.Data, completion: (() -> ())?) + public func write(string: Swift.String, completion: (() -> ())?) + public func write(stringData: Foundation.Data, completion: (() -> ())?) + public func write(ping: Foundation.Data, completion: (() -> ())?) + public func write(pong: Foundation.Data, completion: (() -> ())?) + public func didReceive(event: VideosdkWebSocket.WebSocketEvent) + @objc deinit +} +public enum FoundationTransportError : Swift.Error { + case invalidRequest + case invalidOutputStream + case timeout + public static func == (a: VideosdkWebSocket.FoundationTransportError, b: VideosdkWebSocket.FoundationTransportError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@objc public class FoundationTransport : ObjectiveC.NSObject, VideosdkWebSocket.Transport, Foundation.StreamDelegate { + public var usingTLS: Swift.Bool { + get + } + public init(streamConfiguration: ((Foundation.InputStream, Foundation.OutputStream) -> Swift.Void)? = nil) + @objc deinit + public func connect(url: Foundation.URL, timeout: Swift.Double = 10, certificatePinning: VideosdkWebSocket.CertificatePinning? = nil) + public func disconnect() + public func register(delegate: VideosdkWebSocket.TransportEventClient) + public func write(data: Foundation.Data, completion: @escaping ((Swift.Error?) -> ())) + @objc open func stream(_ aStream: Foundation.Stream, handle eventCode: Foundation.Stream.Event) +} +public enum TCPTransportError : Swift.Error { + case invalidRequest + public static func == (a: VideosdkWebSocket.TCPTransportError, b: VideosdkWebSocket.TCPTransportError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) +public class TCPTransport : VideosdkWebSocket.Transport { + public var usingTLS: Swift.Bool { + get + } + public init(connection: Network.NWConnection) + public init() + public func connect(url: Foundation.URL, timeout: Swift.Double = 10, certificatePinning: VideosdkWebSocket.CertificatePinning? = nil) + public func disconnect() + public func register(delegate: VideosdkWebSocket.TransportEventClient) + public func write(data: Foundation.Data, completion: @escaping ((Swift.Error?) -> ())) + @objc deinit +} +public enum ConnectionState { + case connected + case waiting + case cancelled + case failed(Swift.Error?) + case viability(Swift.Bool) + case shouldReconnect(Swift.Bool) + case receive(Foundation.Data) +} +public protocol TransportEventClient : AnyObject { + func connectionChanged(state: VideosdkWebSocket.ConnectionState) +} +public protocol Transport : AnyObject { + func register(delegate: VideosdkWebSocket.TransportEventClient) + func connect(url: Foundation.URL, timeout: Swift.Double, certificatePinning: VideosdkWebSocket.CertificatePinning?) + func disconnect() + func write(data: Foundation.Data, completion: @escaping ((Swift.Error?) -> ())) + var usingTLS: Swift.Bool { get } +} +extension VideosdkWebSocket.CloseCode : Swift.Equatable {} +extension VideosdkWebSocket.CloseCode : Swift.Hashable {} +extension VideosdkWebSocket.CloseCode : Swift.RawRepresentable {} +extension VideosdkWebSocket.FrameOpCode : Swift.Equatable {} +extension VideosdkWebSocket.FrameOpCode : Swift.Hashable {} +extension VideosdkWebSocket.FrameOpCode : Swift.RawRepresentable {} +extension VideosdkWebSocket.FoundationSecurityError : Swift.Equatable {} +extension VideosdkWebSocket.FoundationSecurityError : Swift.Hashable {} +extension VideosdkWebSocket.SecurityErrorCode : Swift.Equatable {} +extension VideosdkWebSocket.SecurityErrorCode : Swift.Hashable {} +extension VideosdkWebSocket.SecurityErrorCode : Swift.RawRepresentable {} +extension VideosdkWebSocket.ErrorType : Swift.Equatable {} +extension VideosdkWebSocket.ErrorType : Swift.Hashable {} +extension VideosdkWebSocket.FoundationTransportError : Swift.Equatable {} +extension VideosdkWebSocket.FoundationTransportError : Swift.Hashable {} +extension VideosdkWebSocket.TCPTransportError : Swift.Equatable {} +extension VideosdkWebSocket.TCPTransportError : Swift.Hashable {} diff --git a/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.swiftdoc new file mode 100644 index 0000000..b376137 Binary files /dev/null and b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.swiftinterface new file mode 100644 index 0000000..0d956fe --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -0,0 +1,435 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) +// swift-module-flags: -target x86_64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name VideosdkWebSocket +// swift-module-flags-ignorable: -enable-bare-slash-regex +import CommonCrypto +import Foundation +import Network +import Swift +import _Concurrency +import _StringProcessing +import zlib +public protocol CompressionHandler { + func load(headers: [Swift.String : Swift.String]) + func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + func compress(data: Foundation.Data) -> Foundation.Data? +} +public class WSCompression : VideosdkWebSocket.CompressionHandler { + public init() + public func load(headers: [Swift.String : Swift.String]) + public func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + public func compress(data: Foundation.Data) -> Foundation.Data? + @objc deinit +} +public protocol EngineDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.WebSocketEvent) +} +public protocol Engine { + func register(delegate: VideosdkWebSocket.EngineDelegate) + func start(request: Foundation.URLRequest) + func stop(closeCode: Swift.UInt16) + func forceStop() + func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode, completion: (() -> ())?) + func write(string: Swift.String, completion: (() -> ())?) +} +@objc @_inheritsConvenienceInitializers @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +public class NativeEngine : ObjectiveC.NSObject, VideosdkWebSocket.Engine, Foundation.URLSessionDataDelegate, Foundation.URLSessionWebSocketDelegate { + public func register(delegate: VideosdkWebSocket.EngineDelegate) + public func start(request: Foundation.URLRequest) + public func stop(closeCode: Swift.UInt16) + public func forceStop() + public func write(string: Swift.String, completion: (() -> ())?) + public func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode, completion: (() -> ())?) + @objc public func urlSession(_ session: Foundation.URLSession, webSocketTask: Foundation.URLSessionWebSocketTask, didOpenWithProtocol protocol: Swift.String?) + @objc public func urlSession(_ session: Foundation.URLSession, webSocketTask: Foundation.URLSessionWebSocketTask, didCloseWith closeCode: Foundation.URLSessionWebSocketTask.CloseCode, reason: Foundation.Data?) + @objc override dynamic public init() + @objc deinit +} +public class WSEngine : VideosdkWebSocket.Engine, VideosdkWebSocket.TransportEventClient, VideosdkWebSocket.FramerEventClient, VideosdkWebSocket.FrameCollectorDelegate, VideosdkWebSocket.HTTPHandlerDelegate { + public var respondToPingWithPong: Swift.Bool + public init(transport: VideosdkWebSocket.Transport, certPinner: VideosdkWebSocket.CertificatePinning? = nil, headerValidator: VideosdkWebSocket.HeaderValidator = FoundationSecurity(), httpHandler: VideosdkWebSocket.HTTPHandler = FoundationHTTPHandler(), framer: VideosdkWebSocket.Framer = WSFramer(), compressionHandler: VideosdkWebSocket.CompressionHandler? = nil) + public func register(delegate: VideosdkWebSocket.EngineDelegate) + public func start(request: Foundation.URLRequest) + public func stop(closeCode: Swift.UInt16 = CloseCode.normal.rawValue) + public func forceStop() + public func write(string: Swift.String, completion: (() -> ())?) + public func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode, completion: (() -> ())?) + public func connectionChanged(state: VideosdkWebSocket.ConnectionState) + public func didReceiveHTTP(event: VideosdkWebSocket.HTTPEvent) + public func frameProcessed(event: VideosdkWebSocket.FrameEvent) + public func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + public func didForm(event: VideosdkWebSocket.FrameCollector.Event) + @objc deinit +} +public class FoundationHTTPHandler : VideosdkWebSocket.HTTPHandler { + public init() + public func convert(request: Foundation.URLRequest) -> Foundation.Data + public func parse(data: Foundation.Data) -> Swift.Int + public func register(delegate: VideosdkWebSocket.HTTPHandlerDelegate) + @objc deinit +} +@_hasMissingDesignatedInitializers public class FoundationHTTPServerHandler : VideosdkWebSocket.HTTPServerHandler { + public func register(delegate: VideosdkWebSocket.HTTPServerDelegate) + public func createResponse(headers: [Swift.String : Swift.String]) -> Foundation.Data + public func parse(data: Foundation.Data) + @objc deinit +} +public protocol FrameCollectorDelegate : AnyObject { + func didForm(event: VideosdkWebSocket.FrameCollector.Event) + func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? +} +@_hasMissingDesignatedInitializers public class FrameCollector { + public enum Event { + case text(Swift.String) + case binary(Foundation.Data) + case pong(Foundation.Data?) + case ping(Foundation.Data?) + case error(Swift.Error) + case closed(Swift.String, Swift.UInt16) + } + public func add(frame: VideosdkWebSocket.Frame) + @objc deinit +} +public enum CloseCode : Swift.UInt16 { + case normal + case goingAway + case protocolError + case protocolUnhandledType + case noStatusReceived + case encoding + case policyViolated + case messageTooBig + public init?(rawValue: Swift.UInt16) + public typealias RawValue = Swift.UInt16 + public var rawValue: Swift.UInt16 { + get + } +} +public enum FrameOpCode : Swift.UInt8 { + case continueFrame + case textFrame + case binaryFrame + case connectionClose + case ping + case pong + case unknown + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } +} +public struct Frame { +} +public enum FrameEvent { + case frame(VideosdkWebSocket.Frame) + case error(Swift.Error) +} +public protocol FramerEventClient : AnyObject { + func frameProcessed(event: VideosdkWebSocket.FrameEvent) +} +public protocol Framer { + func add(data: Foundation.Data) + func register(delegate: VideosdkWebSocket.FramerEventClient) + func createWriteFrame(opcode: VideosdkWebSocket.FrameOpCode, payload: Foundation.Data, isCompressed: Swift.Bool) -> Foundation.Data + func updateCompression(supports: Swift.Bool) + func supportsCompression() -> Swift.Bool +} +public class WSFramer : VideosdkWebSocket.Framer { + public var compressionEnabled: Swift.Bool + public init(isServer: Swift.Bool = false) + public func updateCompression(supports: Swift.Bool) + public func supportsCompression() -> Swift.Bool + public func add(data: Foundation.Data) + public func register(delegate: VideosdkWebSocket.FramerEventClient) + public func createWriteFrame(opcode: VideosdkWebSocket.FrameOpCode, payload: Foundation.Data, isCompressed: Swift.Bool) -> Foundation.Data + @objc deinit +} +public protocol MyWSArrayType { +} +extension Swift.UInt8 : VideosdkWebSocket.MyWSArrayType { +} +extension Swift.Array where Element : Swift.UnsignedInteger, Element : VideosdkWebSocket.MyWSArrayType { + public func readUint16(offset: Swift.Int) -> Swift.UInt16 + public func readUint64(offset: Swift.Int) -> Swift.UInt64 + public func unmaskData(maskStart: Swift.Int, offset: Swift.Int, length: Swift.Int) -> Foundation.Data +} +public func writeUint16(_ buffer: inout [Swift.UInt8], offset: Swift.Int, value: Swift.UInt16) +public func writeUint32(_ buffer: inout [Swift.UInt8], offset: Swift.Int, value: Swift.UInt32) +public func writeUint64(_ buffer: inout [Swift.UInt8], offset: Swift.Int, value: Swift.UInt64) +public enum HTTPUpgradeError : Swift.Error { + case notAnUpgrade(Swift.Int, [Swift.String : Swift.String]) + case invalidData +} +public struct HTTPWSHeader { + public static func createUpgrade(request: Foundation.URLRequest, supportsCompression: Swift.Bool, secKeyValue: Swift.String) -> Foundation.URLRequest + public static func generateWebSocketKey() -> Swift.String +} +public enum HTTPEvent { + case success([Swift.String : Swift.String]) + case failure(Swift.Error) +} +public protocol HTTPHandlerDelegate : AnyObject { + func didReceiveHTTP(event: VideosdkWebSocket.HTTPEvent) +} +public protocol HTTPHandler { + func register(delegate: VideosdkWebSocket.HTTPHandlerDelegate) + func convert(request: Foundation.URLRequest) -> Foundation.Data + func parse(data: Foundation.Data) -> Swift.Int +} +public protocol HTTPServerDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.HTTPEvent) +} +public protocol HTTPServerHandler { + func register(delegate: VideosdkWebSocket.HTTPServerDelegate) + func parse(data: Foundation.Data) + func createResponse(headers: [Swift.String : Swift.String]) -> Foundation.Data +} +public struct URLParts { +} +extension Foundation.URL { + public var isTLSScheme: Swift.Bool { + get + } + public func getParts() -> VideosdkWebSocket.URLParts? +} +public class StringHTTPHandler : VideosdkWebSocket.HTTPHandler { + public init() + public func convert(request: Foundation.URLRequest) -> Foundation.Data + public func parse(data: Foundation.Data) -> Swift.Int + public func register(delegate: VideosdkWebSocket.HTTPHandlerDelegate) + @objc deinit +} +public enum FoundationSecurityError : Swift.Error { + case invalidRequest + public static func == (a: VideosdkWebSocket.FoundationSecurityError, b: VideosdkWebSocket.FoundationSecurityError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public class FoundationSecurity { + public init(allowSelfSigned: Swift.Bool = false) + @objc deinit +} +extension VideosdkWebSocket.FoundationSecurity : VideosdkWebSocket.CertificatePinning { + public func evaluateTrust(trust: Security.SecTrust, domain: Swift.String?, completion: ((VideosdkWebSocket.PinningState) -> ())) +} +extension VideosdkWebSocket.FoundationSecurity : VideosdkWebSocket.HeaderValidator { + public func validate(headers: [Swift.String : Swift.String], key: Swift.String) -> Swift.Error? +} +public enum SecurityErrorCode : Swift.UInt16 { + case acceptFailed + case pinningFailed + public init?(rawValue: Swift.UInt16) + public typealias RawValue = Swift.UInt16 + public var rawValue: Swift.UInt16 { + get + } +} +public enum PinningState { + case success + case failed(CoreFoundation.CFError?) +} +public protocol CertificatePinning : AnyObject { + func evaluateTrust(trust: Security.SecTrust, domain: Swift.String?, completion: ((VideosdkWebSocket.PinningState) -> ())) +} +public protocol HeaderValidator : AnyObject { + func validate(headers: [Swift.String : Swift.String], key: Swift.String) -> Swift.Error? +} +public enum ConnectionEvent { + case connected([Swift.String : Swift.String]) + case disconnected(Swift.String, Swift.UInt16) + case text(Swift.String) + case binary(Foundation.Data) + case pong(Foundation.Data?) + case ping(Foundation.Data?) + case error(Swift.Error) +} +public protocol Connection { + func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode) +} +public protocol ConnectionDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.ServerEvent) +} +public enum ServerEvent { + case connected(VideosdkWebSocket.Connection, [Swift.String : Swift.String]) + case disconnected(VideosdkWebSocket.Connection, Swift.String, Swift.UInt16) + case text(VideosdkWebSocket.Connection, Swift.String) + case binary(VideosdkWebSocket.Connection, Foundation.Data) + case pong(VideosdkWebSocket.Connection, Foundation.Data?) + case ping(VideosdkWebSocket.Connection, Foundation.Data?) +} +public protocol Server { + func start(address: Swift.String, port: Swift.UInt16) -> Swift.Error? +} +@available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) +@available(watchOS, unavailable) +public class WebSocketServer : VideosdkWebSocket.Server, VideosdkWebSocket.ConnectionDelegate { + public var onEvent: ((VideosdkWebSocket.ServerEvent) -> Swift.Void)? + public init() + public func start(address: Swift.String, port: Swift.UInt16) -> Swift.Error? + public func didReceive(event: VideosdkWebSocket.ServerEvent) + @objc deinit +} +@_hasMissingDesignatedInitializers @available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) +public class ServerConnection : VideosdkWebSocket.Connection, VideosdkWebSocket.HTTPServerDelegate, VideosdkWebSocket.FramerEventClient, VideosdkWebSocket.FrameCollectorDelegate, VideosdkWebSocket.TransportEventClient { + public var onEvent: ((VideosdkWebSocket.ConnectionEvent) -> Swift.Void)? + weak public var delegate: VideosdkWebSocket.ConnectionDelegate? + public func write(data: Foundation.Data, opcode: VideosdkWebSocket.FrameOpCode) + public func connectionChanged(state: VideosdkWebSocket.ConnectionState) + public func didReceive(event: VideosdkWebSocket.HTTPEvent) + public func frameProcessed(event: VideosdkWebSocket.FrameEvent) + public func didForm(event: VideosdkWebSocket.FrameCollector.Event) + public func decompress(data: Foundation.Data, isFinal: Swift.Bool) -> Foundation.Data? + @objc deinit +} +public enum ErrorType : Swift.Error { + case compressionError + case securityError + case protocolError + case serverError + public static func == (a: VideosdkWebSocket.ErrorType, b: VideosdkWebSocket.ErrorType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +public struct WSError : Swift.Error { + public let type: VideosdkWebSocket.ErrorType + public let message: Swift.String + public let code: Swift.UInt16 + public init(type: VideosdkWebSocket.ErrorType, message: Swift.String, code: Swift.UInt16) +} +public protocol WebSocketClient : AnyObject { + func connect() + func disconnect(closeCode: Swift.UInt16) + func write(string: Swift.String, completion: (() -> ())?) + func write(stringData: Foundation.Data, completion: (() -> ())?) + func write(data: Foundation.Data, completion: (() -> ())?) + func write(ping: Foundation.Data, completion: (() -> ())?) + func write(pong: Foundation.Data, completion: (() -> ())?) +} +extension VideosdkWebSocket.WebSocketClient { + public func write(string: Swift.String) + public func write(data: Foundation.Data) + public func write(ping: Foundation.Data) + public func write(pong: Foundation.Data) + public func disconnect() +} +public enum WebSocketEvent { + case connected([Swift.String : Swift.String]) + case disconnected(Swift.String, Swift.UInt16) + case text(Swift.String) + case binary(Foundation.Data) + case pong(Foundation.Data?) + case ping(Foundation.Data?) + case error(Swift.Error?) + case viabilityChanged(Swift.Bool) + case reconnectSuggested(Swift.Bool) + case cancelled +} +public protocol WebSocketDelegate : AnyObject { + func didReceive(event: VideosdkWebSocket.WebSocketEvent, client: VideosdkWebSocket.WebSocketClient) +} +open class WebSocket : VideosdkWebSocket.WebSocketClient, VideosdkWebSocket.EngineDelegate { + weak public var delegate: VideosdkWebSocket.WebSocketDelegate? + public var onEvent: ((VideosdkWebSocket.WebSocketEvent) -> Swift.Void)? + public var request: Foundation.URLRequest + public var callbackQueue: Dispatch.DispatchQueue + public var respondToPingWithPong: Swift.Bool { + get + set + } + public init(request: Foundation.URLRequest, engine: VideosdkWebSocket.Engine) + convenience public init(request: Foundation.URLRequest, certPinner: VideosdkWebSocket.CertificatePinning? = FoundationSecurity(), compressionHandler: VideosdkWebSocket.CompressionHandler? = nil, useCustomEngine: Swift.Bool = true) + public func connect() + public func disconnect(closeCode: Swift.UInt16 = CloseCode.normal.rawValue) + public func forceDisconnect() + public func write(data: Foundation.Data, completion: (() -> ())?) + public func write(string: Swift.String, completion: (() -> ())?) + public func write(stringData: Foundation.Data, completion: (() -> ())?) + public func write(ping: Foundation.Data, completion: (() -> ())?) + public func write(pong: Foundation.Data, completion: (() -> ())?) + public func didReceive(event: VideosdkWebSocket.WebSocketEvent) + @objc deinit +} +public enum FoundationTransportError : Swift.Error { + case invalidRequest + case invalidOutputStream + case timeout + public static func == (a: VideosdkWebSocket.FoundationTransportError, b: VideosdkWebSocket.FoundationTransportError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@objc public class FoundationTransport : ObjectiveC.NSObject, VideosdkWebSocket.Transport, Foundation.StreamDelegate { + public var usingTLS: Swift.Bool { + get + } + public init(streamConfiguration: ((Foundation.InputStream, Foundation.OutputStream) -> Swift.Void)? = nil) + @objc deinit + public func connect(url: Foundation.URL, timeout: Swift.Double = 10, certificatePinning: VideosdkWebSocket.CertificatePinning? = nil) + public func disconnect() + public func register(delegate: VideosdkWebSocket.TransportEventClient) + public func write(data: Foundation.Data, completion: @escaping ((Swift.Error?) -> ())) + @objc open func stream(_ aStream: Foundation.Stream, handle eventCode: Foundation.Stream.Event) +} +public enum TCPTransportError : Swift.Error { + case invalidRequest + public static func == (a: VideosdkWebSocket.TCPTransportError, b: VideosdkWebSocket.TCPTransportError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@available(macOS 10.14, iOS 12.0, watchOS 5.0, tvOS 12.0, *) +public class TCPTransport : VideosdkWebSocket.Transport { + public var usingTLS: Swift.Bool { + get + } + public init(connection: Network.NWConnection) + public init() + public func connect(url: Foundation.URL, timeout: Swift.Double = 10, certificatePinning: VideosdkWebSocket.CertificatePinning? = nil) + public func disconnect() + public func register(delegate: VideosdkWebSocket.TransportEventClient) + public func write(data: Foundation.Data, completion: @escaping ((Swift.Error?) -> ())) + @objc deinit +} +public enum ConnectionState { + case connected + case waiting + case cancelled + case failed(Swift.Error?) + case viability(Swift.Bool) + case shouldReconnect(Swift.Bool) + case receive(Foundation.Data) +} +public protocol TransportEventClient : AnyObject { + func connectionChanged(state: VideosdkWebSocket.ConnectionState) +} +public protocol Transport : AnyObject { + func register(delegate: VideosdkWebSocket.TransportEventClient) + func connect(url: Foundation.URL, timeout: Swift.Double, certificatePinning: VideosdkWebSocket.CertificatePinning?) + func disconnect() + func write(data: Foundation.Data, completion: @escaping ((Swift.Error?) -> ())) + var usingTLS: Swift.Bool { get } +} +extension VideosdkWebSocket.CloseCode : Swift.Equatable {} +extension VideosdkWebSocket.CloseCode : Swift.Hashable {} +extension VideosdkWebSocket.CloseCode : Swift.RawRepresentable {} +extension VideosdkWebSocket.FrameOpCode : Swift.Equatable {} +extension VideosdkWebSocket.FrameOpCode : Swift.Hashable {} +extension VideosdkWebSocket.FrameOpCode : Swift.RawRepresentable {} +extension VideosdkWebSocket.FoundationSecurityError : Swift.Equatable {} +extension VideosdkWebSocket.FoundationSecurityError : Swift.Hashable {} +extension VideosdkWebSocket.SecurityErrorCode : Swift.Equatable {} +extension VideosdkWebSocket.SecurityErrorCode : Swift.Hashable {} +extension VideosdkWebSocket.SecurityErrorCode : Swift.RawRepresentable {} +extension VideosdkWebSocket.ErrorType : Swift.Equatable {} +extension VideosdkWebSocket.ErrorType : Swift.Hashable {} +extension VideosdkWebSocket.FoundationTransportError : Swift.Equatable {} +extension VideosdkWebSocket.FoundationTransportError : Swift.Hashable {} +extension VideosdkWebSocket.TCPTransportError : Swift.Equatable {} +extension VideosdkWebSocket.TCPTransportError : Swift.Hashable {} diff --git a/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/VideosdkWebSocket b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/VideosdkWebSocket new file mode 100755 index 0000000..ee5c1c4 Binary files /dev/null and b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/VideosdkWebSocket differ diff --git a/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/_CodeSignature/CodeResources b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/_CodeSignature/CodeResources new file mode 100644 index 0000000..b2eeaaa --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/VideosdkWebSocket.xcframework/ios-arm64_x86_64-simulator/VideosdkWebSocket.framework/_CodeSignature/CodeResources @@ -0,0 +1,223 @@ + + + + + files + + Headers/VideosdkWebSocket-Swift.h + + dnLEVDJoEkyGqWK0tXrKPrVkcw4= + + Info.plist + + nqTPYv7UAiW1tnCdzOuc5hNuBJo= + + Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.abi.json + + 2Axa+ymxKx3nXRrVGIQWXZ5FeXg= + + Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + sTe4E8xa4s9sg+RTxRm437JH0l8= + + Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.swiftdoc + + P2ua6SxaaTVhDDFyaETdUSyDaco= + + Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.swiftinterface + + sTe4E8xa4s9sg+RTxRm437JH0l8= + + Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.swiftmodule + + 8+GShMk2BEC7gdpY2iKYIv1+5G8= + + Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.abi.json + + 2Axa+ymxKx3nXRrVGIQWXZ5FeXg= + + Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + 0tEn13a0o9tDu9JZ5TXelf/HrAM= + + Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.swiftdoc + + qDPzpCMH3ey8aHX0R88w+8oSnJ8= + + Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.swiftinterface + + 0tEn13a0o9tDu9JZ5TXelf/HrAM= + + Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.swiftmodule + + ToImIeE8Z+Igk63FH+liAlffOhE= + + + files2 + + Headers/VideosdkWebSocket-Swift.h + + hash2 + + wQGRDW0HZ9/7EMZnV1cbyl7KPVXjsDZYQQ3hTL+vjTs= + + + Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.abi.json + + hash2 + + TGTgbhpezl7Bt6mnGgabPWx7sFcdzQMHO6Ti2Z6kOtw= + + + Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + hash2 + + zMWlic/aPKWPgCAf9cVjIxhGW38aUu5hdwNjZMGnw7w= + + + Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.swiftdoc + + hash2 + + hccNC1LcfdTxYItQxbbULalFSdEEimwJVYGCSrEm6uU= + + + Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.swiftinterface + + hash2 + + zMWlic/aPKWPgCAf9cVjIxhGW38aUu5hdwNjZMGnw7w= + + + Modules/VideosdkWebSocket.swiftmodule/arm64-apple-ios-simulator.swiftmodule + + hash2 + + y1sqB7ZgBXwyJZiXNc+FtRJkqeJ6E5k8+YgzO2r7+uY= + + + Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.abi.json + + hash2 + + TGTgbhpezl7Bt6mnGgabPWx7sFcdzQMHO6Ti2Z6kOtw= + + + Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + hash2 + + 4myX/6MuaGuuddAX2+aNtzyOK4bg8UJB8nh6Cfb7jeA= + + + Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.swiftdoc + + hash2 + + NtjlXGaKY3XUEr2gxIb8eeOAtDlkfZNWVGovCKomeSQ= + + + Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.swiftinterface + + hash2 + + 4myX/6MuaGuuddAX2+aNtzyOK4bg8UJB8nh6Cfb7jeA= + + + Modules/VideosdkWebSocket.swiftmodule/x86_64-apple-ios-simulator.swiftmodule + + hash2 + + V2kgmb+YVQ5OgsUHxiLxrYGYLZ4Hob48sFu4V0COEB8= + + + + rules + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/Info.plist b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/Info.plist index 8a822fb..2954529 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/Info.plist +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/Info.plist @@ -5,6 +5,8 @@ AvailableLibraries + BinaryPath + WebRTC.framework/WebRTC LibraryIdentifier ios-arm64_x86_64-simulator LibraryPath @@ -20,6 +22,8 @@ simulator + BinaryPath + WebRTC.framework/WebRTC LibraryIdentifier ios-arm64 LibraryPath diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioDevice.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioDevice.h new file mode 100644 index 0000000..09d79c8 --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioDevice.h @@ -0,0 +1,308 @@ +/* + * Copyright 2022 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. An additional intellectual property rights grant can be found + * in the file PATENTS. All contributing project authors may + * be found in the AUTHORS file in the root of the source tree. + */ + +#import +#import + +#import + +NS_ASSUME_NONNULL_BEGIN + +typedef OSStatus (^RTC_OBJC_TYPE(RTCAudioDeviceGetPlayoutDataBlock))( + AudioUnitRenderActionFlags *_Nonnull actionFlags, + const AudioTimeStamp *_Nonnull timestamp, + NSInteger inputBusNumber, + UInt32 frameCount, + AudioBufferList *_Nonnull outputData); + +typedef OSStatus (^RTC_OBJC_TYPE(RTCAudioDeviceRenderRecordedDataBlock))( + AudioUnitRenderActionFlags *_Nonnull actionFlags, + const AudioTimeStamp *_Nonnull timestamp, + NSInteger inputBusNumber, + UInt32 frameCount, + AudioBufferList *_Nonnull inputData, + void *_Nullable renderContext); + +typedef OSStatus (^RTC_OBJC_TYPE(RTCAudioDeviceDeliverRecordedDataBlock))( + AudioUnitRenderActionFlags *_Nonnull actionFlags, + const AudioTimeStamp *_Nonnull timestamp, + NSInteger inputBusNumber, + UInt32 frameCount, + const AudioBufferList *_Nullable inputData, + void *_Nullable renderContext, + NS_NOESCAPE RTC_OBJC_TYPE(RTCAudioDeviceRenderRecordedDataBlock) _Nullable renderBlock); + +/** + * Delegate object provided by native ADM during RTCAudioDevice initialization. + * Provides blocks to poll playback audio samples from native ADM and to feed + * recorded audio samples into native ADM. + */ +RTC_OBJC_EXPORT @protocol RTC_OBJC_TYPE +(RTCAudioDeviceDelegate) + /** + * Implementation of RTCAudioSource should call this block to feed recorded PCM (16-bit integer) + * into native ADM. Stereo data is expected to be interleaved starting with the left channel. + * Either `inputData` with pre-filled audio data must be provided during block + * call or `renderBlock` must be provided which must fill provided audio buffer with recorded + * samples. + * + * NOTE: Implementation of RTCAudioDevice is expected to call the block on the same thread until + * `notifyAudioInterrupted` is called. When `notifyAudioInterrupted` is called implementation + * can call the block on a different thread. + */ + @property(readonly, nonnull) + RTC_OBJC_TYPE(RTCAudioDeviceDeliverRecordedDataBlock) deliverRecordedData; + +/** + * Provides input sample rate preference as it preferred by native ADM. + */ +@property(readonly) double preferredInputSampleRate; + +/** + * Provides input IO buffer duration preference as it preferred by native ADM. + */ +@property(readonly) NSTimeInterval preferredInputIOBufferDuration; + +/** + * Provides output sample rate preference as it preferred by native ADM. + */ +@property(readonly) double preferredOutputSampleRate; + +/** + * Provides output IO buffer duration preference as it preferred by native ADM. + */ +@property(readonly) NSTimeInterval preferredOutputIOBufferDuration; + +/** + * Implementation of RTCAudioDevice should call this block to request PCM (16-bit integer) + * from native ADM to play. Stereo data is interleaved starting with the left channel. + * + * NOTE: Implementation of RTCAudioDevice is expected to invoke of this block on the + * same thread until `notifyAudioInterrupted` is called. When `notifyAudioInterrupted` is called + * implementation can call the block from a different thread. + */ +@property(readonly, nonnull) RTC_OBJC_TYPE(RTCAudioDeviceGetPlayoutDataBlock) getPlayoutData; + +/** + * Notifies native ADM that some of the audio input parameters of RTCAudioDevice like + * samle rate and/or IO buffer duration and/or IO latency had possibly changed. + * Native ADM will adjust its audio input buffer to match current parameters of audio device. + * + * NOTE: Must be called within block executed via `dispatchAsync` or `dispatchSync`. + */ +- (void)notifyAudioInputParametersChange; + +/** + * Notifies native ADM that some of the audio output parameters of RTCAudioDevice like + * samle rate and/or IO buffer duration and/or IO latency had possibly changed. + * Native ADM will adjust its audio output buffer to match current parameters of audio device. + * + * NOTE: Must be called within block executed via `dispatchAsync` or `dispatchSync`. + */ +- (void)notifyAudioOutputParametersChange; + +/** + * Notifies native ADM that audio input is interrupted and further audio playout + * and recording might happen on a different thread. + * + * NOTE: Must be called within block executed via `dispatchAsync` or `dispatchSync`. + */ +- (void)notifyAudioInputInterrupted; + +/** + * Notifies native ADM that audio output is interrupted and further audio playout + * and recording might happen on a different thread. + * + * NOTE: Must be called within block executed via `dispatchAsync` or `dispatchSync`. + */ +- (void)notifyAudioOutputInterrupted; + +/** + * Asynchronously execute block of code within the context of + * thread which owns native ADM. + * + * NOTE: Intended to be used to invoke `notifyAudioInputParametersChange`, + * `notifyAudioOutputParametersChange`, `notifyAudioInputInterrupted`, + * `notifyAudioOutputInterrupted` on native ADM thread. + * Also could be used by `RTCAudioDevice` implementation to tie + * mutations of underlying audio objects (AVAudioEngine, AudioUnit, etc) + * to the native ADM thread. Could be useful to handle events like audio route change, which + * could lead to audio parameters change. + */ +- (void)dispatchAsync:(dispatch_block_t)block; + +/** + * Synchronously execute block of code within the context of + * thread which owns native ADM. Allows reentrancy. + * + * NOTE: Intended to be used to invoke `notifyAudioInputParametersChange`, + * `notifyAudioOutputParametersChange`, `notifyAudioInputInterrupted`, + * `notifyAudioOutputInterrupted` on native ADM thread and make sure + * aforementioned is completed before `dispatchSync` returns. Could be useful + * when implementation of `RTCAudioDevice` tie mutation to underlying audio objects (AVAudioEngine, + * AudioUnit, etc) to own thread to satisfy requirement that native ADM audio parameters + * must be kept in sync with current audio parameters before audio is actually played or recorded. + */ +- (void)dispatchSync:(dispatch_block_t)block; + +@end + +/** + * Protocol to abstract platform specific ways to implement playback and recording. + * + * NOTE: All the members of protocol are called by native ADM from the same thread + * between calls to `initializeWithDelegate` and `terminate`. + * NOTE: Implementation is fully responsible for configuring application's AVAudioSession. + * An example implementation of RTCAudioDevice: https://github.com/mstyura/RTCAudioDevice + * TODO(yura.yaroshevich): Implement custom RTCAudioDevice for AppRTCMobile demo app. + */ +RTC_OBJC_EXPORT @protocol RTC_OBJC_TYPE +(RTCAudioDevice) + + /** + * Indicates current sample rate of audio recording. Changes to this property + * must be notified back to native ADM via `-[RTCAudioDeviceDelegate + * notifyAudioParametersChange]`. + */ + @property(readonly) double deviceInputSampleRate; + +/** + * Indicates current size of record buffer. Changes to this property + * must be notified back to native ADM via `-[RTCAudioDeviceDelegate notifyAudioParametersChange]`. + */ +@property(readonly) NSTimeInterval inputIOBufferDuration; + +/** + * Indicates current number of recorded audio channels. Changes to this property + * must be notified back to native ADM via `-[RTCAudioDeviceDelegate notifyAudioParametersChange]`. + */ +@property(readonly) NSInteger inputNumberOfChannels; + +/** + * Indicates current input latency + */ +@property(readonly) NSTimeInterval inputLatency; + +/** + * Indicates current sample rate of audio playback. Changes to this property + * must be notified back to native ADM via `-[RTCAudioDeviceDelegate notifyAudioParametersChange]`. + */ +@property(readonly) double deviceOutputSampleRate; + +/** + * Indicates current size of playback buffer. Changes to this property + * must be notified back to native ADM via `-[RTCAudioDeviceDelegate notifyAudioParametersChange]`. + */ +@property(readonly) NSTimeInterval outputIOBufferDuration; + +/** + * Indicates current number of playback audio channels. Changes to this property + * must be notified back to WebRTC via `[RTCAudioDeviceDelegate notifyAudioParametersChange]`. + */ +@property(readonly) NSInteger outputNumberOfChannels; + +/** + * Indicates current output latency + */ +@property(readonly) NSTimeInterval outputLatency; + +/** + * Indicates if invocation of `initializeWithDelegate` required before usage of RTCAudioDevice. + * YES indicates that `initializeWithDelegate` was called earlier without subsequent call to + * `terminate`. NO indicates that either `initializeWithDelegate` not called or `terminate` called. + */ +@property(readonly) BOOL isInitialized; + +/** + * Initializes RTCAudioDevice with RTCAudioDeviceDelegate. + * Implementation must return YES if RTCAudioDevice initialized successfully and NO otherwise. + */ +- (BOOL)initializeWithDelegate:(id)delegate; + +/** + * De-initializes RTCAudioDevice. Implementation should forget about `delegate` provided in + * `initializeWithDelegate`. + */ +- (BOOL)terminateDevice; + +/** + * Property to indicate if `initializePlayout` call required before invocation of `startPlayout`. + * YES indicates that `initializePlayout` was successfully invoked earlier or not necessary, + * NO indicates that `initializePlayout` invocation required. + */ +@property(readonly) BOOL isPlayoutInitialized; + +/** + * Prepares RTCAudioDevice to play audio. + * Called by native ADM before invocation of `startPlayout`. + * Implementation is expected to return YES in case of successful playout initialization and NO + * otherwise. + */ +- (BOOL)initializePlayout; + +/** + * Property to indicate if RTCAudioDevice should be playing according to + * earlier calls of `startPlayout` and `stopPlayout`. + */ +@property(readonly) BOOL isPlaying; + +/** + * Method is called when native ADM wants to play audio. + * Implementation is expected to return YES if playback start request + * successfully handled and NO otherwise. + */ +- (BOOL)startPlayout; + +/** + * Method is called when native ADM no longer needs to play audio. + * Implementation is expected to return YES if playback stop request + * successfully handled and NO otherwise. + */ +- (BOOL)stopPlayout; + +/** + * Property to indicate if `initializeRecording` call required before usage of `startRecording`. + * YES indicates that `initializeRecording` was successfully invoked earlier or not necessary, + * NO indicates that `initializeRecording` invocation required. + */ +@property(readonly) BOOL isRecordingInitialized; + +/** + * Prepares RTCAudioDevice to record audio. + * Called by native ADM before invocation of `startRecording`. + * Implementation may use this method to prepare resources required to record audio. + * Implementation is expected to return YES in case of successful record initialization and NO + * otherwise. + */ +- (BOOL)initializeRecording; + +/** + * Property to indicate if RTCAudioDevice should record audio according to + * earlier calls to `startRecording` and `stopRecording`. + */ +@property(readonly) BOOL isRecording; + +/** + * Method is called when native ADM wants to record audio. + * Implementation is expected to return YES if recording start request + * successfully handled and NO otherwise. + */ +- (BOOL)startRecording; + +/** + * Method is called when native ADM no longer needs to record audio. + * Implementation is expected to return YES if recording stop request + * successfully handled and NO otherwise. + */ +- (BOOL)stopRecording; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSession.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSession.h index 6e2fa13..d7f66c6 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSession.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSession.h @@ -99,6 +99,9 @@ RTC_OBJC_EXPORT failedToSetActive:(BOOL)active error:(NSError *)error; +- (void)audioSession:(RTC_OBJC_TYPE(RTCAudioSession) *)audioSession + audioUnitStartFailedWithError:(NSError *)error; + @end /** This is a protocol used to inform RTCAudioSession when the audio session @@ -122,7 +125,7 @@ RTC_OBJC_EXPORT * WebRTC and the application layer are avoided. * * RTCAudioSession also coordinates activation so that the audio session is - * activated only once. See |setActive:error:|. + * activated only once. See `setActive:error:`. */ RTC_OBJC_EXPORT @interface RTC_OBJC_TYPE (RTCAudioSession) : NSObject @@ -209,9 +212,9 @@ RTC_OBJC_EXPORT /** Relinquishes exclusive access to the audio session. */ - (void)unlockForConfiguration; -/** If |active|, activates the audio session if it isn't already active. +/** If `active`, activates the audio session if it isn't already active. * Successful calls must be balanced with a setActive:NO when activation is no - * longer required. If not |active|, deactivates the audio session if one is + * longer required. If not `active`, deactivates the audio session if one is * active and this is the last balanced call. When deactivating, the * AVAudioSessionSetActiveOptionNotifyOthersOnDeactivation option is passed to * AVAudioSession. @@ -219,13 +222,17 @@ RTC_OBJC_EXPORT - (BOOL)setActive:(BOOL)active error:(NSError **)outError; // The following methods are proxies for the associated methods on -// AVAudioSession. |lockForConfiguration| must be called before using them +// AVAudioSession. `lockForConfiguration` must be called before using them // otherwise they will fail with kRTCAudioSessionErrorLockRequired. -- (BOOL)setCategory:(NSString *)category +- (BOOL)setCategory:(AVAudioSessionCategory)category + mode:(AVAudioSessionMode)mode + options:(AVAudioSessionCategoryOptions)options + error:(NSError **)outError; +- (BOOL)setCategory:(AVAudioSessionCategory)category withOptions:(AVAudioSessionCategoryOptions)options error:(NSError **)outError; -- (BOOL)setMode:(NSString *)mode error:(NSError **)outError; +- (BOOL)setMode:(AVAudioSessionMode)mode error:(NSError **)outError; - (BOOL)setInputGain:(float)gain error:(NSError **)outError; - (BOOL)setPreferredSampleRate:(double)sampleRate error:(NSError **)outError; - (BOOL)setPreferredIOBufferDuration:(NSTimeInterval)duration error:(NSError **)outError; @@ -245,13 +252,13 @@ RTC_OBJC_EXPORT /** Applies the configuration to the current session. Attempts to set all * properties even if previous ones fail. Only the last error will be * returned. - * |lockForConfiguration| must be called first. + * `lockForConfiguration` must be called first. */ - (BOOL)setConfiguration : (RTC_OBJC_TYPE(RTCAudioSessionConfiguration) *)configuration error : (NSError **)outError; /** Convenience method that calls both setConfiguration and setActive. - * |lockForConfiguration| must be called first. + * `lockForConfiguration` must be called first. */ - (BOOL)setConfiguration:(RTC_OBJC_TYPE(RTCAudioSessionConfiguration) *)configuration active:(BOOL)active diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSessionConfiguration.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSessionConfiguration.h index be79920..59fcb75 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSessionConfiguration.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSessionConfiguration.h @@ -17,9 +17,7 @@ NS_ASSUME_NONNULL_BEGIN RTC_EXTERN const int kRTCAudioSessionPreferredNumberOfChannels; RTC_EXTERN const double kRTCAudioSessionHighPerformanceSampleRate; -RTC_EXTERN const double kRTCAudioSessionLowComplexitySampleRate; RTC_EXTERN const double kRTCAudioSessionHighPerformanceIOBufferDuration; -RTC_EXTERN const double kRTCAudioSessionLowComplexityIOBufferDuration; // Struct to hold configuration values. RTC_OBJC_EXPORT diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSource.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSource.h index 98bb55a..f0c469f 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSource.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCAudioSource.h @@ -20,7 +20,7 @@ RTC_OBJC_EXPORT - (instancetype)init NS_UNAVAILABLE; -// Sets the volume for the RTCMediaSource. |volume| is a gain value in the range +// Sets the volume for the RTCMediaSource. `volume` is a gain value in the range // [0, 10]. // Temporary fix to be able to modify volume of remote audio tracks. // TODO(kthelgason): Property stays here temporarily until a proper volume-api diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCVPixelBuffer.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCVPixelBuffer.h index cd69a66..b9cd699 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCVPixelBuffer.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCVPixelBuffer.h @@ -40,9 +40,9 @@ RTC_OBJC_EXPORT - (BOOL)requiresScalingToWidth:(int)width height:(int)height; - (int)bufferSizeForCroppingAndScalingToWidth:(int)width height:(int)height; -/** The minimum size of the |tmpBuffer| must be the number of bytes returned from the +/** The minimum size of the `tmpBuffer` must be the number of bytes returned from the * bufferSizeForCroppingAndScalingToWidth:height: method. - * If that size is 0, the |tmpBuffer| may be nil. + * If that size is 0, the `tmpBuffer` may be nil. */ - (BOOL)cropAndScaleTo:(CVPixelBufferRef)outputPixelBuffer withTempBuffer:(nullable uint8_t *)tmpBuffer; diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCallbackLogger.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCallbackLogger.h index 8def162..815ea25 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCallbackLogger.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCallbackLogger.h @@ -32,7 +32,7 @@ RTC_OBJC_EXPORT // to implement dispatching to some other queue. - (void)start:(nullable RTCCallbackLoggerMessageHandler)handler; - (void)startWithMessageAndSeverityHandler: - (nullable RTCCallbackLoggerMessageAndSeverityHandler)handler; + (nullable RTCCallbackLoggerMessageAndSeverityHandler)handler; - (void)stop; diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCConfiguration.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCConfiguration.h index 19e7a4c..f37cddb 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCConfiguration.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCConfiguration.h @@ -63,6 +63,7 @@ typedef NS_ENUM(NSInteger, RTCEncryptionKeyType) { /** Represents the chosen SDP semantics for the RTCPeerConnection. */ typedef NS_ENUM(NSInteger, RTCSdpSemantics) { + // TODO(https://crbug.com/webrtc/13528): Remove support for Plan B. RTCSdpSemanticsPlanB, RTCSdpSemanticsUnifiedPlan, }; @@ -84,7 +85,7 @@ RTC_OBJC_EXPORT @property(nonatomic, nullable) RTC_OBJC_TYPE(RTCCertificate) * certificate; /** Which candidates the ICE agent is allowed to use. The W3C calls it - * |iceTransportPolicy|, while in C++ it is called |type|. */ + * `iceTransportPolicy`, while in C++ it is called `type`. */ @property(nonatomic, assign) RTCIceTransportPolicy iceTransportPolicy; /** The media-bundling policy to use when gathering ICE candidates. */ @@ -96,11 +97,6 @@ RTC_OBJC_EXPORT @property(nonatomic, assign) RTCCandidateNetworkPolicy candidateNetworkPolicy; @property(nonatomic, assign) RTCContinualGatheringPolicy continualGatheringPolicy; -/** If set to YES, don't gather IPv6 ICE candidates. - * Default is NO. - */ -@property(nonatomic, assign) BOOL disableIPV6; - /** If set to YES, don't gather IPv6 ICE candidates on Wi-Fi. * Only intended to be used on specific devices. Certain phones disable IPv6 * when the screen is turned off and it would be better to just disable the @@ -144,7 +140,7 @@ RTC_OBJC_EXPORT */ @property(nonatomic, assign) BOOL shouldPresumeWritableWhenFullyRelayed; -/* This flag is only effective when |continualGatheringPolicy| is +/* This flag is only effective when `continualGatheringPolicy` is * RTCContinualGatheringPolicyGatherContinually. * * If YES, after the ICE transport type is changed such that new types of @@ -161,27 +157,24 @@ RTC_OBJC_EXPORT */ @property(nonatomic, copy, nullable) NSNumber *iceCheckMinInterval; -/** Configure the SDP semantics used by this PeerConnection. Note that the - * WebRTC 1.0 specification requires UnifiedPlan semantics. The - * RTCRtpTransceiver API is only available with UnifiedPlan semantics. - * - * PlanB will cause RTCPeerConnection to create offers and answers with at - * most one audio and one video m= section with multiple RTCRtpSenders and - * RTCRtpReceivers specified as multiple a=ssrc lines within the section. This - * will also cause RTCPeerConnection to ignore all but the first m= section of - * the same media type. - * - * UnifiedPlan will cause RTCPeerConnection to create offers and answers with - * multiple m= sections where each m= section maps to one RTCRtpSender and one - * RTCRtpReceiver (an RTCRtpTransceiver), either both audio or both - * video. This will also cause RTCPeerConnection) to ignore all but the first a=ssrc - * lines that form a Plan B stream. +/** + * Configure the SDP semantics used by this PeerConnection. By default, this + * is RTCSdpSemanticsUnifiedPlan which is compliant to the WebRTC 1.0 + * specification. It is possible to overrwite this to the deprecated + * RTCSdpSemanticsPlanB SDP format, but note that RTCSdpSemanticsPlanB will be + * deleted at some future date, see https://crbug.com/webrtc/13528. * - * For users who wish to send multiple audio/video streams and need to stay - * interoperable with legacy WebRTC implementations or use legacy APIs, - * specify PlanB. + * RTCSdpSemanticsUnifiedPlan will cause RTCPeerConnection to create offers and + * answers with multiple m= sections where each m= section maps to one + * RTCRtpSender and one RTCRtpReceiver (an RTCRtpTransceiver), either both audio + * or both video. This will also cause RTCPeerConnection to ignore all but the + * first a=ssrc lines that form a Plan B stream. * - * For all other users, specify UnifiedPlan. + * RTCSdpSemanticsPlanB will cause RTCPeerConnection to create offers and + * answers with at most one audio and one video m= section with multiple + * RTCRtpSenders and RTCRtpReceivers specified as multiple a=ssrc lines within + * the section. This will also cause RTCPeerConnection to ignore all but the + * first m= section of the same media type. */ @property(nonatomic, assign) RTCSdpSemantics sdpSemantics; @@ -191,12 +184,6 @@ RTC_OBJC_EXPORT */ @property(nonatomic, assign) BOOL activeResetSrtpParams; -/** If the remote side support mid-stream codec switches then allow encoder - * switching to be performed. - */ - -@property(nonatomic, assign) BOOL allowCodecSwitching; - /** * Defines advanced optional cryptographic settings related to SRTP and * frame encryption for native WebRTC. Setting this will overwrite any diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCryptoOptions.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCryptoOptions.h index ad91a7c..6e2e797 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCryptoOptions.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCCryptoOptions.h @@ -28,7 +28,7 @@ RTC_OBJC_EXPORT @property(nonatomic, assign) BOOL srtpEnableGcmCryptoSuites; /** * If set to true, the (potentially insecure) crypto cipher - * SRTP_AES128_CM_SHA1_32 will be included in the list of supported ciphers + * kSrtpAes128CmSha1_32 will be included in the list of supported ciphers * during negotiation. It will only be used if both peers support it and no * other ciphers get preferred. */ diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDataChannel.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDataChannel.h index 7c8fd25..80b8ad8 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDataChannel.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCDataChannel.h @@ -21,13 +21,13 @@ RTC_OBJC_EXPORT /** NSData representation of the underlying buffer. */ @property(nonatomic, readonly) NSData *data; -/** Indicates whether |data| contains UTF-8 or binary data. */ +/** Indicates whether `data` contains UTF-8 or binary data. */ @property(nonatomic, readonly) BOOL isBinary; - (instancetype)init NS_UNAVAILABLE; /** - * Initialize an RTCDataBuffer from NSData. |isBinary| indicates whether |data| + * Initialize an RTCDataBuffer from NSData. `isBinary` indicates whether `data` * contains UTF-8 or binary data. */ - (instancetype)initWithData:(NSData *)data isBinary:(BOOL)isBinary; @@ -47,7 +47,7 @@ RTC_OBJC_EXPORT didReceiveMessageWithBuffer:(RTC_OBJC_TYPE(RTCDataBuffer) *)buffer; @optional -/** The data channel's |bufferedAmount| changed. */ +/** The data channel's `bufferedAmount` changed. */ - (void)dataChannel:(RTC_OBJC_TYPE(RTCDataChannel) *)dataChannel didChangeBufferedAmount:(uint64_t)amount; @@ -112,7 +112,7 @@ RTC_OBJC_EXPORT /** * The number of bytes of application data that have been queued using - * |sendData:| but that have not yet been transmitted to the network. + * `sendData:` but that have not yet been transmitted to the network. */ @property(nonatomic, readonly) uint64_t bufferedAmount; @@ -124,7 +124,7 @@ RTC_OBJC_EXPORT /** Closes the data channel. */ - (void)close; -/** Attempt to send |data| on this data channel's underlying data transport. */ +/** Attempt to send `data` on this data channel's underlying data transport. */ - (BOOL)sendData:(RTC_OBJC_TYPE(RTCDataBuffer) *)data; @end diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCFieldTrials.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCFieldTrials.h index 83e7679..8a7de72 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCFieldTrials.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCFieldTrials.h @@ -13,18 +13,15 @@ #import /** The only valid value for the following if set is kRTCFieldTrialEnabledValue. */ -RTC_EXTERN NSString * const kRTCFieldTrialAudioSendSideBweKey; -RTC_EXTERN NSString * const kRTCFieldTrialAudioForceNoTWCCKey; -RTC_EXTERN NSString * const kRTCFieldTrialAudioForceABWENoTWCCKey; -RTC_EXTERN NSString * const kRTCFieldTrialSendSideBweWithOverheadKey; -RTC_EXTERN NSString * const kRTCFieldTrialFlexFec03AdvertisedKey; -RTC_EXTERN NSString * const kRTCFieldTrialFlexFec03Key; -RTC_EXTERN NSString * const kRTCFieldTrialH264HighProfileKey; -RTC_EXTERN NSString * const kRTCFieldTrialMinimizeResamplingOnMobileKey; +RTC_EXTERN NSString *const kRTCFieldTrialAudioForceABWENoTWCCKey; +RTC_EXTERN NSString *const kRTCFieldTrialFlexFec03AdvertisedKey; +RTC_EXTERN NSString *const kRTCFieldTrialFlexFec03Key; +RTC_EXTERN NSString *const kRTCFieldTrialH264HighProfileKey; +RTC_EXTERN NSString *const kRTCFieldTrialMinimizeResamplingOnMobileKey; RTC_EXTERN NSString *const kRTCFieldTrialUseNWPathMonitor; /** The valid value for field trials above. */ -RTC_EXTERN NSString * const kRTCFieldTrialEnabledValue; +RTC_EXTERN NSString *const kRTCFieldTrialEnabledValue; /** Initialize field trials using a dictionary mapping field trial keys to their * values. See above for valid keys and values. Must be called before any other diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCFileLogger.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCFileLogger.h index 29d8f0d..84924c5 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCFileLogger.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCFileLogger.h @@ -43,7 +43,7 @@ RTC_OBJC_EXPORT // kRTCFileLoggerTypeCall. @property(nonatomic, readonly) RTCFileLoggerRotationType rotationType; -// Disables buffering disk writes. Should be set before |start|. Buffering +// Disables buffering disk writes. Should be set before `start`. Buffering // is enabled by default for performance. @property(nonatomic, assign) BOOL shouldDisableBuffering; diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCIceCandidateErrorEvent.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCIceCandidateErrorEvent.h new file mode 100644 index 0000000..80fd1db --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCIceCandidateErrorEvent.h @@ -0,0 +1,42 @@ +/* + * Copyright (c) 2021 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. An additional intellectual property rights grant can be found + * in the file PATENTS. All contributing project authors may + * be found in the AUTHORS file in the root of the source tree. + */ + +#import + +#import + +NS_ASSUME_NONNULL_BEGIN + +RTC_OBJC_EXPORT +@interface RTC_OBJC_TYPE (RTCIceCandidateErrorEvent) : NSObject + +/** The local IP address used to communicate with the STUN or TURN server. */ +@property(nonatomic, readonly) NSString *address; + +/** The port used to communicate with the STUN or TURN server. */ +@property(nonatomic, readonly) int port; + +/** The STUN or TURN URL that identifies the STUN or TURN server for which the failure occurred. */ +@property(nonatomic, readonly) NSString *url; + +/** The numeric STUN error code returned by the STUN or TURN server. If no host candidate can reach + * the server, errorCode will be set to the value 701 which is outside the STUN error code range. + * This error is only fired once per server URL while in the RTCIceGatheringState of "gathering". */ +@property(nonatomic, readonly) int errorCode; + +/** The STUN reason text returned by the STUN or TURN server. If the server could not be reached, + * errorText will be set to an implementation-specific value providing details about the error. */ +@property(nonatomic, readonly) NSString *errorText; + +- (instancetype)init NS_DESIGNATED_INITIALIZER; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCIceServer.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCIceServer.h index 3262bf6..e5fbfe8 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCIceServer.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCIceServer.h @@ -37,9 +37,9 @@ RTC_OBJC_EXPORT @property(nonatomic, readonly) RTCTlsCertPolicy tlsCertPolicy; /** - If the URIs in |urls| only contain IP addresses, this field can be used + If the URIs in `urls` only contain IP addresses, this field can be used to indicate the hostname, which may be necessary for TLS (using the SNI - extension). If |urls| itself contains the hostname, this isn't necessary. + extension). If `urls` itself contains the hostname, this isn't necessary. */ @property(nonatomic, readonly, nullable) NSString *hostname; diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCLogging.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCLogging.h index 36f53d8..e8610da 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCLogging.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCLogging.h @@ -34,9 +34,12 @@ RTC_EXTERN NSString* RTCFileName(const char* filePath); // Some convenience macros. -#define RTCLogString(format, ...) \ - [NSString stringWithFormat:@"(%@:%d %s): " format, RTCFileName(__FILE__), \ - __LINE__, __FUNCTION__, ##__VA_ARGS__] +#define RTCLogString(format, ...) \ + [NSString stringWithFormat:@"(%@:%d %s): " format, \ + RTCFileName(__FILE__), \ + __LINE__, \ + __FUNCTION__, \ + ##__VA_ARGS__] #define RTCLogFormat(severity, format, ...) \ do { \ @@ -44,17 +47,13 @@ RTC_EXTERN NSString* RTCFileName(const char* filePath); RTCLogEx(severity, log_string); \ } while (false) -#define RTCLogVerbose(format, ...) \ - RTCLogFormat(RTCLoggingSeverityVerbose, format, ##__VA_ARGS__) +#define RTCLogVerbose(format, ...) RTCLogFormat(RTCLoggingSeverityVerbose, format, ##__VA_ARGS__) -#define RTCLogInfo(format, ...) \ - RTCLogFormat(RTCLoggingSeverityInfo, format, ##__VA_ARGS__) +#define RTCLogInfo(format, ...) RTCLogFormat(RTCLoggingSeverityInfo, format, ##__VA_ARGS__) -#define RTCLogWarning(format, ...) \ - RTCLogFormat(RTCLoggingSeverityWarning, format, ##__VA_ARGS__) +#define RTCLogWarning(format, ...) RTCLogFormat(RTCLoggingSeverityWarning, format, ##__VA_ARGS__) -#define RTCLogError(format, ...) \ - RTCLogFormat(RTCLoggingSeverityError, format, ##__VA_ARGS__) +#define RTCLogError(format, ...) RTCLogFormat(RTCLoggingSeverityError, format, ##__VA_ARGS__) #if !defined(NDEBUG) #define RTCLogDebug(format, ...) RTCLogInfo(format, ##__VA_ARGS__) diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMacros.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMacros.h index b5a7911..114ced0 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMacros.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCMacros.h @@ -11,13 +11,13 @@ #ifndef SDK_OBJC_BASE_RTCMACROS_H_ #define SDK_OBJC_BASE_RTCMACROS_H_ -#ifdef WEBRTC_ENABLE_SYMBOL_EXPORT +#ifdef WEBRTC_ENABLE_OBJC_SYMBOL_EXPORT #if defined(WEBRTC_LIBRARY_IMPL) #define RTC_OBJC_EXPORT __attribute__((visibility("default"))) #endif -#endif // WEBRTC_ENABLE_SYMBOL_EXPORT +#endif // WEBRTC_ENABLE_OBJC_SYMBOL_EXPORT #ifndef RTC_OBJC_EXPORT #define RTC_OBJC_EXPORT @@ -36,9 +36,10 @@ // WebRTC.framework with their own prefix in case symbol clashing is a // problem. // -// This macro must only be defined here and not on via compiler flag to -// ensure it has a unique value. +// This macro must be defined uniformily across all the translation units. +#ifndef RTC_OBJC_TYPE_PREFIX #define RTC_OBJC_TYPE_PREFIX +#endif // RCT_OBJC_TYPE // diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCPeerConnection.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCPeerConnection.h index 2d2e890..400069c 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCPeerConnection.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCPeerConnection.h @@ -16,6 +16,7 @@ @class RTC_OBJC_TYPE(RTCDataChannel); @class RTC_OBJC_TYPE(RTCDataChannelConfiguration); @class RTC_OBJC_TYPE(RTCIceCandidate); +@class RTC_OBJC_TYPE(RTCIceCandidateErrorEvent); @class RTC_OBJC_TYPE(RTCMediaConstraints); @class RTC_OBJC_TYPE(RTCMediaStream); @class RTC_OBJC_TYPE(RTCMediaStreamTrack); @@ -81,9 +82,8 @@ typedef NS_ENUM(NSInteger, RTCStatsOutputLevel) { RTCStatsOutputLevelDebug, }; -typedef void (^RTCCreateSessionDescriptionCompletionHandler)(RTC_OBJC_TYPE(RTCSessionDescription) * - _Nullable sdp, - NSError *_Nullable error); +typedef void (^RTCCreateSessionDescriptionCompletionHandler)( + RTC_OBJC_TYPE(RTCSessionDescription) *_Nullable sdp, NSError *_Nullable error); typedef void (^RTCSetSessionDescriptionCompletionHandler)(NSError *_Nullable error); @@ -164,6 +164,10 @@ RTC_OBJC_EXPORT lastReceivedMs:(int)lastDataReceivedMs changeReason:(NSString *)reason; +/** Called when gathering of an ICE candidate failed. */ +- (void)peerConnection:(RTC_OBJC_TYPE(RTCPeerConnection) *)peerConnection + didFailToGatherIceCandidate:(RTC_OBJC_TYPE(RTCIceCandidateErrorEvent) *)event; + @end RTC_OBJC_EXPORT @@ -174,7 +178,7 @@ RTC_OBJC_EXPORT */ @property(nonatomic, weak, nullable) id delegate; /** This property is not available with RTCSdpSemanticsUnifiedPlan. Please use - * |senders| instead. + * `senders` instead. */ @property(nonatomic, readonly) NSArray *localStreams; @property(nonatomic, readonly, nullable) RTC_OBJC_TYPE(RTCSessionDescription) * localDescription; @@ -207,7 +211,7 @@ RTC_OBJC_EXPORT - (instancetype)init NS_UNAVAILABLE; -/** Sets the PeerConnection's global configuration to |configuration|. +/** Sets the PeerConnection's global configuration to `configuration`. * Any changes to STUN/TURN servers or ICE candidate policy will affect the * next gathering phase, and cause the next call to createOffer to generate * new ICE credentials. Note that the BUNDLE and RTCP-multiplexing policies @@ -243,7 +247,7 @@ RTC_OBJC_EXPORT /** Add a new media stream track to be sent on this peer connection, and return * the newly created RTCRtpSender. The RTCRtpSender will be - * associated with the streams specified in the |streamIds| list. + * associated with the streams specified in the `streamIds` list. * * Errors: If an error occurs, returns nil. An error can occur if: * - A sender already exists for the track. @@ -265,7 +269,7 @@ RTC_OBJC_EXPORT * transceivers. Adding a transceiver will cause future calls to CreateOffer * to add a media description for the corresponding transceiver. * - * The initial value of |mid| in the returned transceiver is nil. Setting a + * The initial value of `mid` in the returned transceiver is nil. Setting a * new session description may change it to a non-nil value. * * https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-addtransceiver @@ -325,7 +329,7 @@ RTC_OBJC_EXPORT /** Limits the bandwidth allocated for all RTP streams sent by this * PeerConnection. Nil parameters will be unchanged. Setting - * |currentBitrateBps| will force the available bitrate estimate to the given + * `currentBitrateBps` will force the available bitrate estimate to the given * value. Returns YES if the parameters were successfully updated. */ - (BOOL)setBweMinBitrateBps:(nullable NSNumber *)minBitrateBps @@ -365,7 +369,7 @@ typedef void (^RTCStatisticsCompletionHandler)(RTC_OBJC_TYPE(RTCStatisticsReport @interface RTC_OBJC_TYPE (RTCPeerConnection) (Stats) - /** Gather stats for the given RTCMediaStreamTrack. If |mediaStreamTrack| is nil + /** Gather stats for the given RTCMediaStreamTrack. If `mediaStreamTrack` is nil * statistics are gathered for all tracks. */ - (void)statsForTrack diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCPeerConnectionFactory.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCPeerConnectionFactory.h index a9a3392..329cf46 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCPeerConnectionFactory.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCPeerConnectionFactory.h @@ -29,18 +29,28 @@ NS_ASSUME_NONNULL_BEGIN (RTCVideoDecoderFactory); @protocol RTC_OBJC_TYPE (RTCVideoEncoderFactory); +@protocol RTC_OBJC_TYPE +(RTCSSLCertificateVerifier); +@protocol RTC_OBJC_TYPE +(RTCAudioDevice); RTC_OBJC_EXPORT @interface RTC_OBJC_TYPE (RTCPeerConnectionFactory) : NSObject -/* Initialize object with default H264 video encoder/decoder factories */ +/* Initialize object with default H264 video encoder/decoder factories and default ADM */ - (instancetype)init; -/* Initialize object with injectable video encoder/decoder factories */ +/* Initialize object with injectable video encoder/decoder factories and default ADM */ - (instancetype) initWithEncoderFactory:(nullable id)encoderFactory decoderFactory:(nullable id)decoderFactory; +/* Initialize object with injectable video encoder/decoder factories and injectable ADM */ +- (instancetype) + initWithEncoderFactory:(nullable id)encoderFactory + decoderFactory:(nullable id)decoderFactory + audioDevice:(nullable id)audioDevice; + /** Initialize an RTCAudioSource with constraints. */ - (RTC_OBJC_TYPE(RTCAudioSource) *)audioSourceWithConstraints: (nullable RTC_OBJC_TYPE(RTCMediaConstraints) *)constraints; @@ -60,6 +70,13 @@ RTC_OBJC_EXPORT */ - (RTC_OBJC_TYPE(RTCVideoSource) *)videoSource; +/** Initialize a generic RTCVideoSource with he posibility of marking + * it as usable for screen sharing. The RTCVideoSource should be + * passed to a RTCVideoCapturer implementation, e.g. + * RTCCameraVideoCapturer, in order to produce frames. + */ +- (RTC_OBJC_TYPE(RTCVideoSource) *)videoSourceForScreenCast:(BOOL)forScreenCast; + /** Initialize an RTCVideoTrack with a source and an id. */ - (RTC_OBJC_TYPE(RTCVideoTrack) *)videoTrackWithSource:(RTC_OBJC_TYPE(RTCVideoSource) *)source trackId:(NSString *)trackId; @@ -75,6 +92,13 @@ RTC_OBJC_EXPORT constraints:(RTC_OBJC_TYPE(RTCMediaConstraints) *)constraints delegate:(nullable id)delegate; +- (nullable RTC_OBJC_TYPE(RTCPeerConnection) *) + peerConnectionWithConfiguration:(RTC_OBJC_TYPE(RTCConfiguration) *)configuration + constraints:(RTC_OBJC_TYPE(RTCMediaConstraints) *)constraints + certificateVerifier: + (id)certificateVerifier + delegate:(nullable id)delegate; + /** Set the options to be used for subsequently created RTCPeerConnections */ - (void)setOptions:(nonnull RTC_OBJC_TYPE(RTCPeerConnectionFactoryOptions) *)options; diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpSender.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpSender.h index edea5d8..b0f0e74 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpSender.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpSender.h @@ -21,8 +21,8 @@ RTC_OBJC_EXPORT @protocol RTC_OBJC_TYPE (RTCRtpSender) -/** A unique identifier for this sender. */ -@property(nonatomic, readonly) NSString *senderId; + /** A unique identifier for this sender. */ + @property(nonatomic, readonly) NSString *senderId; /** The currently active RTCRtpParameters, as defined in * https://www.w3.org/TR/webrtc/#idl-def-RTCRtpParameters. diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCSSLCertificateVerifier.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCSSLCertificateVerifier.h new file mode 100644 index 0000000..d5acafa --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCSSLCertificateVerifier.h @@ -0,0 +1,25 @@ +/* + * Copyright 2022 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. An additional intellectual property rights grant can be found + * in the file PATENTS. All contributing project authors may + * be found in the AUTHORS file in the root of the source tree. + */ + +#import + +#import + +NS_ASSUME_NONNULL_BEGIN + +RTC_OBJC_EXPORT @protocol RTC_OBJC_TYPE +(RTCSSLCertificateVerifier) + + /** The certificate to verify */ + - (BOOL)verify : (NSData *)derCertificate; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoder.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoder.h index 9ffde99..32d79a0 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoder.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoder.h @@ -29,6 +29,7 @@ RTC_OBJC_EXPORT - (void)setCallback : (RTCVideoDecoderCallback)callback; - (NSInteger)startDecodeWithNumberOfCores:(int)numberOfCores; - (NSInteger)releaseDecoder; +// TODO(bugs.webrtc.org/15444): Remove obsolete missingFrames param. - (NSInteger)decode:(RTC_OBJC_TYPE(RTCEncodedImage) *)encodedImage missingFrames:(BOOL)missingFrames codecSpecificInfo:(nullable id)info diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderAV1.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderAV1.h index 429bbd7..a71cce5 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderAV1.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoDecoderAV1.h @@ -22,6 +22,4 @@ RTC_OBJC_EXPORT */ + (id)av1Decoder; -+ (bool)isSupported; - @end diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoder.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoder.h index b2b2185..0a3a875 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoder.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoder.h @@ -28,7 +28,7 @@ RTC_OBJC_EXPORT @protocol RTC_OBJC_TYPE (RTCVideoEncoder) -- (void)setCallback:(nullable RTCVideoEncoderCallback)callback; + - (void)setCallback : (nullable RTCVideoEncoderCallback)callback; - (NSInteger)startEncodeWithSettings:(RTC_OBJC_TYPE(RTCVideoEncoderSettings) *)settings numberOfCores:(int)numberOfCores; - (NSInteger)releaseEncoder; @@ -50,6 +50,10 @@ RTC_OBJC_EXPORT scaled, all resolutions comply with 'resolutionAlignment'. */ @property(nonatomic, readonly) BOOL applyAlignmentToAllSimulcastLayers; +/** If YES, the receiver is expected to resample/scale the source texture to the expected output + size. */ +@property(nonatomic, readonly) BOOL supportsNativeHandle; + @end NS_ASSUME_NONNULL_END diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderFactory.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderFactory.h index ac7bcd3..579a04a 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderFactory.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoEncoderFactory.h @@ -27,6 +27,9 @@ RTC_OBJC_EXPORT - (nullable RTC_OBJC_TYPE(RTCVideoCodecInfo) *)encoderForBitrate:(NSInteger)bitrate; - (nullable RTC_OBJC_TYPE(RTCVideoCodecInfo) *)encoderForBrokenEncoder; +@optional +- (nullable RTC_OBJC_TYPE(RTCVideoCodecInfo) *)encoderForResolutionChangeBySize:(CGSize)size; + @end /** RTCVideoEncoderFactory is an Objective-C version of webrtc::VideoEncoderFactory. diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoFrame.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoFrame.h index 01294f5..a4ef600 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoFrame.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoFrame.h @@ -45,7 +45,7 @@ RTC_OBJC_EXPORT @property(nonatomic, readonly) id buffer; - (instancetype)init NS_UNAVAILABLE; -- (instancetype) new NS_UNAVAILABLE; +- (instancetype)new NS_UNAVAILABLE; /** Initialize an RTCVideoFrame from a pixel buffer, rotation, and timestamp. * Deprecated - initialize with a RTCCVPixelBuffer instead diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoFrameBuffer.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoFrameBuffer.h index bfffa01..7efbd2b 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoFrameBuffer.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCVideoFrameBuffer.h @@ -27,6 +27,14 @@ RTC_OBJC_EXPORT - (id)toI420; +@optional +- (id)cropAndScaleWith:(int)offsetX + offsetY:(int)offsetY + cropWidth:(int)cropWidth + cropHeight:(int)cropHeight + scaleWidth:(int)scaleWidth + scaleHeight:(int)scaleHeight; + @end NS_ASSUME_NONNULL_END diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/UIDevice+RTCDevice.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/UIDevice+RTCDevice.h index eb9a076..4d04f38 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/UIDevice+RTCDevice.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/UIDevice+RTCDevice.h @@ -10,92 +10,8 @@ #import -typedef NS_ENUM(NSInteger, RTCDeviceType) { - RTCDeviceTypeUnknown, - RTCDeviceTypeIPhone1G, - RTCDeviceTypeIPhone3G, - RTCDeviceTypeIPhone3GS, - RTCDeviceTypeIPhone4, - RTCDeviceTypeIPhone4Verizon, - RTCDeviceTypeIPhone4S, - RTCDeviceTypeIPhone5GSM, - RTCDeviceTypeIPhone5GSM_CDMA, - RTCDeviceTypeIPhone5CGSM, - RTCDeviceTypeIPhone5CGSM_CDMA, - RTCDeviceTypeIPhone5SGSM, - RTCDeviceTypeIPhone5SGSM_CDMA, - RTCDeviceTypeIPhone6Plus, - RTCDeviceTypeIPhone6, - RTCDeviceTypeIPhone6S, - RTCDeviceTypeIPhone6SPlus, - RTCDeviceTypeIPhone7, - RTCDeviceTypeIPhone7Plus, - RTCDeviceTypeIPhoneSE, - RTCDeviceTypeIPhone8, - RTCDeviceTypeIPhone8Plus, - RTCDeviceTypeIPhoneX, - RTCDeviceTypeIPhoneXS, - RTCDeviceTypeIPhoneXSMax, - RTCDeviceTypeIPhoneXR, - RTCDeviceTypeIPhone11, - RTCDeviceTypeIPhone11Pro, - RTCDeviceTypeIPhone11ProMax, - RTCDeviceTypeIPhone12Mini, - RTCDeviceTypeIPhone12, - RTCDeviceTypeIPhone12Pro, - RTCDeviceTypeIPhone12ProMax, - RTCDeviceTypeIPodTouch1G, - RTCDeviceTypeIPodTouch2G, - RTCDeviceTypeIPodTouch3G, - RTCDeviceTypeIPodTouch4G, - RTCDeviceTypeIPodTouch5G, - RTCDeviceTypeIPodTouch6G, - RTCDeviceTypeIPodTouch7G, - RTCDeviceTypeIPad, - RTCDeviceTypeIPad2Wifi, - RTCDeviceTypeIPad2GSM, - RTCDeviceTypeIPad2CDMA, - RTCDeviceTypeIPad2Wifi2, - RTCDeviceTypeIPadMiniWifi, - RTCDeviceTypeIPadMiniGSM, - RTCDeviceTypeIPadMiniGSM_CDMA, - RTCDeviceTypeIPad3Wifi, - RTCDeviceTypeIPad3GSM_CDMA, - RTCDeviceTypeIPad3GSM, - RTCDeviceTypeIPad4Wifi, - RTCDeviceTypeIPad4GSM, - RTCDeviceTypeIPad4GSM_CDMA, - RTCDeviceTypeIPad5, - RTCDeviceTypeIPad6, - RTCDeviceTypeIPadAirWifi, - RTCDeviceTypeIPadAirCellular, - RTCDeviceTypeIPadAirWifiCellular, - RTCDeviceTypeIPadAir2, - RTCDeviceTypeIPadMini2GWifi, - RTCDeviceTypeIPadMini2GCellular, - RTCDeviceTypeIPadMini2GWifiCellular, - RTCDeviceTypeIPadMini3, - RTCDeviceTypeIPadMini4, - RTCDeviceTypeIPadPro9Inch, - RTCDeviceTypeIPadPro12Inch, - RTCDeviceTypeIPadPro12Inch2, - RTCDeviceTypeIPadPro10Inch, - RTCDeviceTypeIPad7Gen10Inch, - RTCDeviceTypeIPadPro3Gen11Inch, - RTCDeviceTypeIPadPro3Gen12Inch, - RTCDeviceTypeIPadPro4Gen11Inch, - RTCDeviceTypeIPadPro4Gen12Inch, - RTCDeviceTypeIPadMini5Gen, - RTCDeviceTypeIPadAir3Gen, - RTCDeviceTypeIPad8, - RTCDeviceTypeIPadAir4Gen, - RTCDeviceTypeSimulatori386, - RTCDeviceTypeSimulatorx86_64, -}; - @interface UIDevice (RTCDevice) -+ (RTCDeviceType)deviceType; -+ (BOOL)isIOS11OrLater; ++ (NSString *)machineName; @end diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/WebRTC.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/WebRTC.h index a066249..67c12ca 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/WebRTC.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/WebRTC.h @@ -1,5 +1,5 @@ /* - * Copyright 2022 The WebRTC project authors. All Rights Reserved. + * Copyright 2024 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source @@ -15,6 +15,7 @@ #import #import #import +#import #import #import #import @@ -27,6 +28,7 @@ #import #import #import +#import #import #import #import @@ -54,6 +56,7 @@ #import #import #import +#import #import #import #import diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Info.plist b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Info.plist index ff8a3c8..794c9a2 100644 Binary files a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Info.plist and b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/Info.plist differ diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/WebRTC b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/WebRTC index 7f91375..fa28dc3 100755 Binary files a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/WebRTC and b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64/WebRTC.framework/WebRTC differ diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioDevice.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioDevice.h new file mode 100644 index 0000000..09d79c8 --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioDevice.h @@ -0,0 +1,308 @@ +/* + * Copyright 2022 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. An additional intellectual property rights grant can be found + * in the file PATENTS. All contributing project authors may + * be found in the AUTHORS file in the root of the source tree. + */ + +#import +#import + +#import + +NS_ASSUME_NONNULL_BEGIN + +typedef OSStatus (^RTC_OBJC_TYPE(RTCAudioDeviceGetPlayoutDataBlock))( + AudioUnitRenderActionFlags *_Nonnull actionFlags, + const AudioTimeStamp *_Nonnull timestamp, + NSInteger inputBusNumber, + UInt32 frameCount, + AudioBufferList *_Nonnull outputData); + +typedef OSStatus (^RTC_OBJC_TYPE(RTCAudioDeviceRenderRecordedDataBlock))( + AudioUnitRenderActionFlags *_Nonnull actionFlags, + const AudioTimeStamp *_Nonnull timestamp, + NSInteger inputBusNumber, + UInt32 frameCount, + AudioBufferList *_Nonnull inputData, + void *_Nullable renderContext); + +typedef OSStatus (^RTC_OBJC_TYPE(RTCAudioDeviceDeliverRecordedDataBlock))( + AudioUnitRenderActionFlags *_Nonnull actionFlags, + const AudioTimeStamp *_Nonnull timestamp, + NSInteger inputBusNumber, + UInt32 frameCount, + const AudioBufferList *_Nullable inputData, + void *_Nullable renderContext, + NS_NOESCAPE RTC_OBJC_TYPE(RTCAudioDeviceRenderRecordedDataBlock) _Nullable renderBlock); + +/** + * Delegate object provided by native ADM during RTCAudioDevice initialization. + * Provides blocks to poll playback audio samples from native ADM and to feed + * recorded audio samples into native ADM. + */ +RTC_OBJC_EXPORT @protocol RTC_OBJC_TYPE +(RTCAudioDeviceDelegate) + /** + * Implementation of RTCAudioSource should call this block to feed recorded PCM (16-bit integer) + * into native ADM. Stereo data is expected to be interleaved starting with the left channel. + * Either `inputData` with pre-filled audio data must be provided during block + * call or `renderBlock` must be provided which must fill provided audio buffer with recorded + * samples. + * + * NOTE: Implementation of RTCAudioDevice is expected to call the block on the same thread until + * `notifyAudioInterrupted` is called. When `notifyAudioInterrupted` is called implementation + * can call the block on a different thread. + */ + @property(readonly, nonnull) + RTC_OBJC_TYPE(RTCAudioDeviceDeliverRecordedDataBlock) deliverRecordedData; + +/** + * Provides input sample rate preference as it preferred by native ADM. + */ +@property(readonly) double preferredInputSampleRate; + +/** + * Provides input IO buffer duration preference as it preferred by native ADM. + */ +@property(readonly) NSTimeInterval preferredInputIOBufferDuration; + +/** + * Provides output sample rate preference as it preferred by native ADM. + */ +@property(readonly) double preferredOutputSampleRate; + +/** + * Provides output IO buffer duration preference as it preferred by native ADM. + */ +@property(readonly) NSTimeInterval preferredOutputIOBufferDuration; + +/** + * Implementation of RTCAudioDevice should call this block to request PCM (16-bit integer) + * from native ADM to play. Stereo data is interleaved starting with the left channel. + * + * NOTE: Implementation of RTCAudioDevice is expected to invoke of this block on the + * same thread until `notifyAudioInterrupted` is called. When `notifyAudioInterrupted` is called + * implementation can call the block from a different thread. + */ +@property(readonly, nonnull) RTC_OBJC_TYPE(RTCAudioDeviceGetPlayoutDataBlock) getPlayoutData; + +/** + * Notifies native ADM that some of the audio input parameters of RTCAudioDevice like + * samle rate and/or IO buffer duration and/or IO latency had possibly changed. + * Native ADM will adjust its audio input buffer to match current parameters of audio device. + * + * NOTE: Must be called within block executed via `dispatchAsync` or `dispatchSync`. + */ +- (void)notifyAudioInputParametersChange; + +/** + * Notifies native ADM that some of the audio output parameters of RTCAudioDevice like + * samle rate and/or IO buffer duration and/or IO latency had possibly changed. + * Native ADM will adjust its audio output buffer to match current parameters of audio device. + * + * NOTE: Must be called within block executed via `dispatchAsync` or `dispatchSync`. + */ +- (void)notifyAudioOutputParametersChange; + +/** + * Notifies native ADM that audio input is interrupted and further audio playout + * and recording might happen on a different thread. + * + * NOTE: Must be called within block executed via `dispatchAsync` or `dispatchSync`. + */ +- (void)notifyAudioInputInterrupted; + +/** + * Notifies native ADM that audio output is interrupted and further audio playout + * and recording might happen on a different thread. + * + * NOTE: Must be called within block executed via `dispatchAsync` or `dispatchSync`. + */ +- (void)notifyAudioOutputInterrupted; + +/** + * Asynchronously execute block of code within the context of + * thread which owns native ADM. + * + * NOTE: Intended to be used to invoke `notifyAudioInputParametersChange`, + * `notifyAudioOutputParametersChange`, `notifyAudioInputInterrupted`, + * `notifyAudioOutputInterrupted` on native ADM thread. + * Also could be used by `RTCAudioDevice` implementation to tie + * mutations of underlying audio objects (AVAudioEngine, AudioUnit, etc) + * to the native ADM thread. Could be useful to handle events like audio route change, which + * could lead to audio parameters change. + */ +- (void)dispatchAsync:(dispatch_block_t)block; + +/** + * Synchronously execute block of code within the context of + * thread which owns native ADM. Allows reentrancy. + * + * NOTE: Intended to be used to invoke `notifyAudioInputParametersChange`, + * `notifyAudioOutputParametersChange`, `notifyAudioInputInterrupted`, + * `notifyAudioOutputInterrupted` on native ADM thread and make sure + * aforementioned is completed before `dispatchSync` returns. Could be useful + * when implementation of `RTCAudioDevice` tie mutation to underlying audio objects (AVAudioEngine, + * AudioUnit, etc) to own thread to satisfy requirement that native ADM audio parameters + * must be kept in sync with current audio parameters before audio is actually played or recorded. + */ +- (void)dispatchSync:(dispatch_block_t)block; + +@end + +/** + * Protocol to abstract platform specific ways to implement playback and recording. + * + * NOTE: All the members of protocol are called by native ADM from the same thread + * between calls to `initializeWithDelegate` and `terminate`. + * NOTE: Implementation is fully responsible for configuring application's AVAudioSession. + * An example implementation of RTCAudioDevice: https://github.com/mstyura/RTCAudioDevice + * TODO(yura.yaroshevich): Implement custom RTCAudioDevice for AppRTCMobile demo app. + */ +RTC_OBJC_EXPORT @protocol RTC_OBJC_TYPE +(RTCAudioDevice) + + /** + * Indicates current sample rate of audio recording. Changes to this property + * must be notified back to native ADM via `-[RTCAudioDeviceDelegate + * notifyAudioParametersChange]`. + */ + @property(readonly) double deviceInputSampleRate; + +/** + * Indicates current size of record buffer. Changes to this property + * must be notified back to native ADM via `-[RTCAudioDeviceDelegate notifyAudioParametersChange]`. + */ +@property(readonly) NSTimeInterval inputIOBufferDuration; + +/** + * Indicates current number of recorded audio channels. Changes to this property + * must be notified back to native ADM via `-[RTCAudioDeviceDelegate notifyAudioParametersChange]`. + */ +@property(readonly) NSInteger inputNumberOfChannels; + +/** + * Indicates current input latency + */ +@property(readonly) NSTimeInterval inputLatency; + +/** + * Indicates current sample rate of audio playback. Changes to this property + * must be notified back to native ADM via `-[RTCAudioDeviceDelegate notifyAudioParametersChange]`. + */ +@property(readonly) double deviceOutputSampleRate; + +/** + * Indicates current size of playback buffer. Changes to this property + * must be notified back to native ADM via `-[RTCAudioDeviceDelegate notifyAudioParametersChange]`. + */ +@property(readonly) NSTimeInterval outputIOBufferDuration; + +/** + * Indicates current number of playback audio channels. Changes to this property + * must be notified back to WebRTC via `[RTCAudioDeviceDelegate notifyAudioParametersChange]`. + */ +@property(readonly) NSInteger outputNumberOfChannels; + +/** + * Indicates current output latency + */ +@property(readonly) NSTimeInterval outputLatency; + +/** + * Indicates if invocation of `initializeWithDelegate` required before usage of RTCAudioDevice. + * YES indicates that `initializeWithDelegate` was called earlier without subsequent call to + * `terminate`. NO indicates that either `initializeWithDelegate` not called or `terminate` called. + */ +@property(readonly) BOOL isInitialized; + +/** + * Initializes RTCAudioDevice with RTCAudioDeviceDelegate. + * Implementation must return YES if RTCAudioDevice initialized successfully and NO otherwise. + */ +- (BOOL)initializeWithDelegate:(id)delegate; + +/** + * De-initializes RTCAudioDevice. Implementation should forget about `delegate` provided in + * `initializeWithDelegate`. + */ +- (BOOL)terminateDevice; + +/** + * Property to indicate if `initializePlayout` call required before invocation of `startPlayout`. + * YES indicates that `initializePlayout` was successfully invoked earlier or not necessary, + * NO indicates that `initializePlayout` invocation required. + */ +@property(readonly) BOOL isPlayoutInitialized; + +/** + * Prepares RTCAudioDevice to play audio. + * Called by native ADM before invocation of `startPlayout`. + * Implementation is expected to return YES in case of successful playout initialization and NO + * otherwise. + */ +- (BOOL)initializePlayout; + +/** + * Property to indicate if RTCAudioDevice should be playing according to + * earlier calls of `startPlayout` and `stopPlayout`. + */ +@property(readonly) BOOL isPlaying; + +/** + * Method is called when native ADM wants to play audio. + * Implementation is expected to return YES if playback start request + * successfully handled and NO otherwise. + */ +- (BOOL)startPlayout; + +/** + * Method is called when native ADM no longer needs to play audio. + * Implementation is expected to return YES if playback stop request + * successfully handled and NO otherwise. + */ +- (BOOL)stopPlayout; + +/** + * Property to indicate if `initializeRecording` call required before usage of `startRecording`. + * YES indicates that `initializeRecording` was successfully invoked earlier or not necessary, + * NO indicates that `initializeRecording` invocation required. + */ +@property(readonly) BOOL isRecordingInitialized; + +/** + * Prepares RTCAudioDevice to record audio. + * Called by native ADM before invocation of `startRecording`. + * Implementation may use this method to prepare resources required to record audio. + * Implementation is expected to return YES in case of successful record initialization and NO + * otherwise. + */ +- (BOOL)initializeRecording; + +/** + * Property to indicate if RTCAudioDevice should record audio according to + * earlier calls to `startRecording` and `stopRecording`. + */ +@property(readonly) BOOL isRecording; + +/** + * Method is called when native ADM wants to record audio. + * Implementation is expected to return YES if recording start request + * successfully handled and NO otherwise. + */ +- (BOOL)startRecording; + +/** + * Method is called when native ADM no longer needs to record audio. + * Implementation is expected to return YES if recording stop request + * successfully handled and NO otherwise. + */ +- (BOOL)stopRecording; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioSession.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioSession.h index 6e2fa13..d7f66c6 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioSession.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioSession.h @@ -99,6 +99,9 @@ RTC_OBJC_EXPORT failedToSetActive:(BOOL)active error:(NSError *)error; +- (void)audioSession:(RTC_OBJC_TYPE(RTCAudioSession) *)audioSession + audioUnitStartFailedWithError:(NSError *)error; + @end /** This is a protocol used to inform RTCAudioSession when the audio session @@ -122,7 +125,7 @@ RTC_OBJC_EXPORT * WebRTC and the application layer are avoided. * * RTCAudioSession also coordinates activation so that the audio session is - * activated only once. See |setActive:error:|. + * activated only once. See `setActive:error:`. */ RTC_OBJC_EXPORT @interface RTC_OBJC_TYPE (RTCAudioSession) : NSObject @@ -209,9 +212,9 @@ RTC_OBJC_EXPORT /** Relinquishes exclusive access to the audio session. */ - (void)unlockForConfiguration; -/** If |active|, activates the audio session if it isn't already active. +/** If `active`, activates the audio session if it isn't already active. * Successful calls must be balanced with a setActive:NO when activation is no - * longer required. If not |active|, deactivates the audio session if one is + * longer required. If not `active`, deactivates the audio session if one is * active and this is the last balanced call. When deactivating, the * AVAudioSessionSetActiveOptionNotifyOthersOnDeactivation option is passed to * AVAudioSession. @@ -219,13 +222,17 @@ RTC_OBJC_EXPORT - (BOOL)setActive:(BOOL)active error:(NSError **)outError; // The following methods are proxies for the associated methods on -// AVAudioSession. |lockForConfiguration| must be called before using them +// AVAudioSession. `lockForConfiguration` must be called before using them // otherwise they will fail with kRTCAudioSessionErrorLockRequired. -- (BOOL)setCategory:(NSString *)category +- (BOOL)setCategory:(AVAudioSessionCategory)category + mode:(AVAudioSessionMode)mode + options:(AVAudioSessionCategoryOptions)options + error:(NSError **)outError; +- (BOOL)setCategory:(AVAudioSessionCategory)category withOptions:(AVAudioSessionCategoryOptions)options error:(NSError **)outError; -- (BOOL)setMode:(NSString *)mode error:(NSError **)outError; +- (BOOL)setMode:(AVAudioSessionMode)mode error:(NSError **)outError; - (BOOL)setInputGain:(float)gain error:(NSError **)outError; - (BOOL)setPreferredSampleRate:(double)sampleRate error:(NSError **)outError; - (BOOL)setPreferredIOBufferDuration:(NSTimeInterval)duration error:(NSError **)outError; @@ -245,13 +252,13 @@ RTC_OBJC_EXPORT /** Applies the configuration to the current session. Attempts to set all * properties even if previous ones fail. Only the last error will be * returned. - * |lockForConfiguration| must be called first. + * `lockForConfiguration` must be called first. */ - (BOOL)setConfiguration : (RTC_OBJC_TYPE(RTCAudioSessionConfiguration) *)configuration error : (NSError **)outError; /** Convenience method that calls both setConfiguration and setActive. - * |lockForConfiguration| must be called first. + * `lockForConfiguration` must be called first. */ - (BOOL)setConfiguration:(RTC_OBJC_TYPE(RTCAudioSessionConfiguration) *)configuration active:(BOOL)active diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioSessionConfiguration.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioSessionConfiguration.h index be79920..59fcb75 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioSessionConfiguration.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioSessionConfiguration.h @@ -17,9 +17,7 @@ NS_ASSUME_NONNULL_BEGIN RTC_EXTERN const int kRTCAudioSessionPreferredNumberOfChannels; RTC_EXTERN const double kRTCAudioSessionHighPerformanceSampleRate; -RTC_EXTERN const double kRTCAudioSessionLowComplexitySampleRate; RTC_EXTERN const double kRTCAudioSessionHighPerformanceIOBufferDuration; -RTC_EXTERN const double kRTCAudioSessionLowComplexityIOBufferDuration; // Struct to hold configuration values. RTC_OBJC_EXPORT diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioSource.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioSource.h index 98bb55a..f0c469f 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioSource.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCAudioSource.h @@ -20,7 +20,7 @@ RTC_OBJC_EXPORT - (instancetype)init NS_UNAVAILABLE; -// Sets the volume for the RTCMediaSource. |volume| is a gain value in the range +// Sets the volume for the RTCMediaSource. `volume` is a gain value in the range // [0, 10]. // Temporary fix to be able to modify volume of remote audio tracks. // TODO(kthelgason): Property stays here temporarily until a proper volume-api diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCVPixelBuffer.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCVPixelBuffer.h index cd69a66..b9cd699 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCVPixelBuffer.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCVPixelBuffer.h @@ -40,9 +40,9 @@ RTC_OBJC_EXPORT - (BOOL)requiresScalingToWidth:(int)width height:(int)height; - (int)bufferSizeForCroppingAndScalingToWidth:(int)width height:(int)height; -/** The minimum size of the |tmpBuffer| must be the number of bytes returned from the +/** The minimum size of the `tmpBuffer` must be the number of bytes returned from the * bufferSizeForCroppingAndScalingToWidth:height: method. - * If that size is 0, the |tmpBuffer| may be nil. + * If that size is 0, the `tmpBuffer` may be nil. */ - (BOOL)cropAndScaleTo:(CVPixelBufferRef)outputPixelBuffer withTempBuffer:(nullable uint8_t *)tmpBuffer; diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCallbackLogger.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCallbackLogger.h index 8def162..815ea25 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCallbackLogger.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCallbackLogger.h @@ -32,7 +32,7 @@ RTC_OBJC_EXPORT // to implement dispatching to some other queue. - (void)start:(nullable RTCCallbackLoggerMessageHandler)handler; - (void)startWithMessageAndSeverityHandler: - (nullable RTCCallbackLoggerMessageAndSeverityHandler)handler; + (nullable RTCCallbackLoggerMessageAndSeverityHandler)handler; - (void)stop; diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCConfiguration.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCConfiguration.h index 19e7a4c..f37cddb 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCConfiguration.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCConfiguration.h @@ -63,6 +63,7 @@ typedef NS_ENUM(NSInteger, RTCEncryptionKeyType) { /** Represents the chosen SDP semantics for the RTCPeerConnection. */ typedef NS_ENUM(NSInteger, RTCSdpSemantics) { + // TODO(https://crbug.com/webrtc/13528): Remove support for Plan B. RTCSdpSemanticsPlanB, RTCSdpSemanticsUnifiedPlan, }; @@ -84,7 +85,7 @@ RTC_OBJC_EXPORT @property(nonatomic, nullable) RTC_OBJC_TYPE(RTCCertificate) * certificate; /** Which candidates the ICE agent is allowed to use. The W3C calls it - * |iceTransportPolicy|, while in C++ it is called |type|. */ + * `iceTransportPolicy`, while in C++ it is called `type`. */ @property(nonatomic, assign) RTCIceTransportPolicy iceTransportPolicy; /** The media-bundling policy to use when gathering ICE candidates. */ @@ -96,11 +97,6 @@ RTC_OBJC_EXPORT @property(nonatomic, assign) RTCCandidateNetworkPolicy candidateNetworkPolicy; @property(nonatomic, assign) RTCContinualGatheringPolicy continualGatheringPolicy; -/** If set to YES, don't gather IPv6 ICE candidates. - * Default is NO. - */ -@property(nonatomic, assign) BOOL disableIPV6; - /** If set to YES, don't gather IPv6 ICE candidates on Wi-Fi. * Only intended to be used on specific devices. Certain phones disable IPv6 * when the screen is turned off and it would be better to just disable the @@ -144,7 +140,7 @@ RTC_OBJC_EXPORT */ @property(nonatomic, assign) BOOL shouldPresumeWritableWhenFullyRelayed; -/* This flag is only effective when |continualGatheringPolicy| is +/* This flag is only effective when `continualGatheringPolicy` is * RTCContinualGatheringPolicyGatherContinually. * * If YES, after the ICE transport type is changed such that new types of @@ -161,27 +157,24 @@ RTC_OBJC_EXPORT */ @property(nonatomic, copy, nullable) NSNumber *iceCheckMinInterval; -/** Configure the SDP semantics used by this PeerConnection. Note that the - * WebRTC 1.0 specification requires UnifiedPlan semantics. The - * RTCRtpTransceiver API is only available with UnifiedPlan semantics. - * - * PlanB will cause RTCPeerConnection to create offers and answers with at - * most one audio and one video m= section with multiple RTCRtpSenders and - * RTCRtpReceivers specified as multiple a=ssrc lines within the section. This - * will also cause RTCPeerConnection to ignore all but the first m= section of - * the same media type. - * - * UnifiedPlan will cause RTCPeerConnection to create offers and answers with - * multiple m= sections where each m= section maps to one RTCRtpSender and one - * RTCRtpReceiver (an RTCRtpTransceiver), either both audio or both - * video. This will also cause RTCPeerConnection) to ignore all but the first a=ssrc - * lines that form a Plan B stream. +/** + * Configure the SDP semantics used by this PeerConnection. By default, this + * is RTCSdpSemanticsUnifiedPlan which is compliant to the WebRTC 1.0 + * specification. It is possible to overrwite this to the deprecated + * RTCSdpSemanticsPlanB SDP format, but note that RTCSdpSemanticsPlanB will be + * deleted at some future date, see https://crbug.com/webrtc/13528. * - * For users who wish to send multiple audio/video streams and need to stay - * interoperable with legacy WebRTC implementations or use legacy APIs, - * specify PlanB. + * RTCSdpSemanticsUnifiedPlan will cause RTCPeerConnection to create offers and + * answers with multiple m= sections where each m= section maps to one + * RTCRtpSender and one RTCRtpReceiver (an RTCRtpTransceiver), either both audio + * or both video. This will also cause RTCPeerConnection to ignore all but the + * first a=ssrc lines that form a Plan B stream. * - * For all other users, specify UnifiedPlan. + * RTCSdpSemanticsPlanB will cause RTCPeerConnection to create offers and + * answers with at most one audio and one video m= section with multiple + * RTCRtpSenders and RTCRtpReceivers specified as multiple a=ssrc lines within + * the section. This will also cause RTCPeerConnection to ignore all but the + * first m= section of the same media type. */ @property(nonatomic, assign) RTCSdpSemantics sdpSemantics; @@ -191,12 +184,6 @@ RTC_OBJC_EXPORT */ @property(nonatomic, assign) BOOL activeResetSrtpParams; -/** If the remote side support mid-stream codec switches then allow encoder - * switching to be performed. - */ - -@property(nonatomic, assign) BOOL allowCodecSwitching; - /** * Defines advanced optional cryptographic settings related to SRTP and * frame encryption for native WebRTC. Setting this will overwrite any diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCryptoOptions.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCryptoOptions.h index ad91a7c..6e2e797 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCryptoOptions.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCCryptoOptions.h @@ -28,7 +28,7 @@ RTC_OBJC_EXPORT @property(nonatomic, assign) BOOL srtpEnableGcmCryptoSuites; /** * If set to true, the (potentially insecure) crypto cipher - * SRTP_AES128_CM_SHA1_32 will be included in the list of supported ciphers + * kSrtpAes128CmSha1_32 will be included in the list of supported ciphers * during negotiation. It will only be used if both peers support it and no * other ciphers get preferred. */ diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCDataChannel.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCDataChannel.h index 7c8fd25..80b8ad8 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCDataChannel.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCDataChannel.h @@ -21,13 +21,13 @@ RTC_OBJC_EXPORT /** NSData representation of the underlying buffer. */ @property(nonatomic, readonly) NSData *data; -/** Indicates whether |data| contains UTF-8 or binary data. */ +/** Indicates whether `data` contains UTF-8 or binary data. */ @property(nonatomic, readonly) BOOL isBinary; - (instancetype)init NS_UNAVAILABLE; /** - * Initialize an RTCDataBuffer from NSData. |isBinary| indicates whether |data| + * Initialize an RTCDataBuffer from NSData. `isBinary` indicates whether `data` * contains UTF-8 or binary data. */ - (instancetype)initWithData:(NSData *)data isBinary:(BOOL)isBinary; @@ -47,7 +47,7 @@ RTC_OBJC_EXPORT didReceiveMessageWithBuffer:(RTC_OBJC_TYPE(RTCDataBuffer) *)buffer; @optional -/** The data channel's |bufferedAmount| changed. */ +/** The data channel's `bufferedAmount` changed. */ - (void)dataChannel:(RTC_OBJC_TYPE(RTCDataChannel) *)dataChannel didChangeBufferedAmount:(uint64_t)amount; @@ -112,7 +112,7 @@ RTC_OBJC_EXPORT /** * The number of bytes of application data that have been queued using - * |sendData:| but that have not yet been transmitted to the network. + * `sendData:` but that have not yet been transmitted to the network. */ @property(nonatomic, readonly) uint64_t bufferedAmount; @@ -124,7 +124,7 @@ RTC_OBJC_EXPORT /** Closes the data channel. */ - (void)close; -/** Attempt to send |data| on this data channel's underlying data transport. */ +/** Attempt to send `data` on this data channel's underlying data transport. */ - (BOOL)sendData:(RTC_OBJC_TYPE(RTCDataBuffer) *)data; @end diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCFieldTrials.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCFieldTrials.h index 83e7679..8a7de72 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCFieldTrials.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCFieldTrials.h @@ -13,18 +13,15 @@ #import /** The only valid value for the following if set is kRTCFieldTrialEnabledValue. */ -RTC_EXTERN NSString * const kRTCFieldTrialAudioSendSideBweKey; -RTC_EXTERN NSString * const kRTCFieldTrialAudioForceNoTWCCKey; -RTC_EXTERN NSString * const kRTCFieldTrialAudioForceABWENoTWCCKey; -RTC_EXTERN NSString * const kRTCFieldTrialSendSideBweWithOverheadKey; -RTC_EXTERN NSString * const kRTCFieldTrialFlexFec03AdvertisedKey; -RTC_EXTERN NSString * const kRTCFieldTrialFlexFec03Key; -RTC_EXTERN NSString * const kRTCFieldTrialH264HighProfileKey; -RTC_EXTERN NSString * const kRTCFieldTrialMinimizeResamplingOnMobileKey; +RTC_EXTERN NSString *const kRTCFieldTrialAudioForceABWENoTWCCKey; +RTC_EXTERN NSString *const kRTCFieldTrialFlexFec03AdvertisedKey; +RTC_EXTERN NSString *const kRTCFieldTrialFlexFec03Key; +RTC_EXTERN NSString *const kRTCFieldTrialH264HighProfileKey; +RTC_EXTERN NSString *const kRTCFieldTrialMinimizeResamplingOnMobileKey; RTC_EXTERN NSString *const kRTCFieldTrialUseNWPathMonitor; /** The valid value for field trials above. */ -RTC_EXTERN NSString * const kRTCFieldTrialEnabledValue; +RTC_EXTERN NSString *const kRTCFieldTrialEnabledValue; /** Initialize field trials using a dictionary mapping field trial keys to their * values. See above for valid keys and values. Must be called before any other diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCFileLogger.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCFileLogger.h index 29d8f0d..84924c5 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCFileLogger.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCFileLogger.h @@ -43,7 +43,7 @@ RTC_OBJC_EXPORT // kRTCFileLoggerTypeCall. @property(nonatomic, readonly) RTCFileLoggerRotationType rotationType; -// Disables buffering disk writes. Should be set before |start|. Buffering +// Disables buffering disk writes. Should be set before `start`. Buffering // is enabled by default for performance. @property(nonatomic, assign) BOOL shouldDisableBuffering; diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCIceCandidateErrorEvent.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCIceCandidateErrorEvent.h new file mode 100644 index 0000000..80fd1db --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCIceCandidateErrorEvent.h @@ -0,0 +1,42 @@ +/* + * Copyright (c) 2021 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. An additional intellectual property rights grant can be found + * in the file PATENTS. All contributing project authors may + * be found in the AUTHORS file in the root of the source tree. + */ + +#import + +#import + +NS_ASSUME_NONNULL_BEGIN + +RTC_OBJC_EXPORT +@interface RTC_OBJC_TYPE (RTCIceCandidateErrorEvent) : NSObject + +/** The local IP address used to communicate with the STUN or TURN server. */ +@property(nonatomic, readonly) NSString *address; + +/** The port used to communicate with the STUN or TURN server. */ +@property(nonatomic, readonly) int port; + +/** The STUN or TURN URL that identifies the STUN or TURN server for which the failure occurred. */ +@property(nonatomic, readonly) NSString *url; + +/** The numeric STUN error code returned by the STUN or TURN server. If no host candidate can reach + * the server, errorCode will be set to the value 701 which is outside the STUN error code range. + * This error is only fired once per server URL while in the RTCIceGatheringState of "gathering". */ +@property(nonatomic, readonly) int errorCode; + +/** The STUN reason text returned by the STUN or TURN server. If the server could not be reached, + * errorText will be set to an implementation-specific value providing details about the error. */ +@property(nonatomic, readonly) NSString *errorText; + +- (instancetype)init NS_DESIGNATED_INITIALIZER; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCIceServer.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCIceServer.h index 3262bf6..e5fbfe8 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCIceServer.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCIceServer.h @@ -37,9 +37,9 @@ RTC_OBJC_EXPORT @property(nonatomic, readonly) RTCTlsCertPolicy tlsCertPolicy; /** - If the URIs in |urls| only contain IP addresses, this field can be used + If the URIs in `urls` only contain IP addresses, this field can be used to indicate the hostname, which may be necessary for TLS (using the SNI - extension). If |urls| itself contains the hostname, this isn't necessary. + extension). If `urls` itself contains the hostname, this isn't necessary. */ @property(nonatomic, readonly, nullable) NSString *hostname; diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCLogging.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCLogging.h index 36f53d8..e8610da 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCLogging.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCLogging.h @@ -34,9 +34,12 @@ RTC_EXTERN NSString* RTCFileName(const char* filePath); // Some convenience macros. -#define RTCLogString(format, ...) \ - [NSString stringWithFormat:@"(%@:%d %s): " format, RTCFileName(__FILE__), \ - __LINE__, __FUNCTION__, ##__VA_ARGS__] +#define RTCLogString(format, ...) \ + [NSString stringWithFormat:@"(%@:%d %s): " format, \ + RTCFileName(__FILE__), \ + __LINE__, \ + __FUNCTION__, \ + ##__VA_ARGS__] #define RTCLogFormat(severity, format, ...) \ do { \ @@ -44,17 +47,13 @@ RTC_EXTERN NSString* RTCFileName(const char* filePath); RTCLogEx(severity, log_string); \ } while (false) -#define RTCLogVerbose(format, ...) \ - RTCLogFormat(RTCLoggingSeverityVerbose, format, ##__VA_ARGS__) +#define RTCLogVerbose(format, ...) RTCLogFormat(RTCLoggingSeverityVerbose, format, ##__VA_ARGS__) -#define RTCLogInfo(format, ...) \ - RTCLogFormat(RTCLoggingSeverityInfo, format, ##__VA_ARGS__) +#define RTCLogInfo(format, ...) RTCLogFormat(RTCLoggingSeverityInfo, format, ##__VA_ARGS__) -#define RTCLogWarning(format, ...) \ - RTCLogFormat(RTCLoggingSeverityWarning, format, ##__VA_ARGS__) +#define RTCLogWarning(format, ...) RTCLogFormat(RTCLoggingSeverityWarning, format, ##__VA_ARGS__) -#define RTCLogError(format, ...) \ - RTCLogFormat(RTCLoggingSeverityError, format, ##__VA_ARGS__) +#define RTCLogError(format, ...) RTCLogFormat(RTCLoggingSeverityError, format, ##__VA_ARGS__) #if !defined(NDEBUG) #define RTCLogDebug(format, ...) RTCLogInfo(format, ##__VA_ARGS__) diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMacros.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMacros.h index b5a7911..114ced0 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMacros.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCMacros.h @@ -11,13 +11,13 @@ #ifndef SDK_OBJC_BASE_RTCMACROS_H_ #define SDK_OBJC_BASE_RTCMACROS_H_ -#ifdef WEBRTC_ENABLE_SYMBOL_EXPORT +#ifdef WEBRTC_ENABLE_OBJC_SYMBOL_EXPORT #if defined(WEBRTC_LIBRARY_IMPL) #define RTC_OBJC_EXPORT __attribute__((visibility("default"))) #endif -#endif // WEBRTC_ENABLE_SYMBOL_EXPORT +#endif // WEBRTC_ENABLE_OBJC_SYMBOL_EXPORT #ifndef RTC_OBJC_EXPORT #define RTC_OBJC_EXPORT @@ -36,9 +36,10 @@ // WebRTC.framework with their own prefix in case symbol clashing is a // problem. // -// This macro must only be defined here and not on via compiler flag to -// ensure it has a unique value. +// This macro must be defined uniformily across all the translation units. +#ifndef RTC_OBJC_TYPE_PREFIX #define RTC_OBJC_TYPE_PREFIX +#endif // RCT_OBJC_TYPE // diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCPeerConnection.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCPeerConnection.h index 2d2e890..400069c 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCPeerConnection.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCPeerConnection.h @@ -16,6 +16,7 @@ @class RTC_OBJC_TYPE(RTCDataChannel); @class RTC_OBJC_TYPE(RTCDataChannelConfiguration); @class RTC_OBJC_TYPE(RTCIceCandidate); +@class RTC_OBJC_TYPE(RTCIceCandidateErrorEvent); @class RTC_OBJC_TYPE(RTCMediaConstraints); @class RTC_OBJC_TYPE(RTCMediaStream); @class RTC_OBJC_TYPE(RTCMediaStreamTrack); @@ -81,9 +82,8 @@ typedef NS_ENUM(NSInteger, RTCStatsOutputLevel) { RTCStatsOutputLevelDebug, }; -typedef void (^RTCCreateSessionDescriptionCompletionHandler)(RTC_OBJC_TYPE(RTCSessionDescription) * - _Nullable sdp, - NSError *_Nullable error); +typedef void (^RTCCreateSessionDescriptionCompletionHandler)( + RTC_OBJC_TYPE(RTCSessionDescription) *_Nullable sdp, NSError *_Nullable error); typedef void (^RTCSetSessionDescriptionCompletionHandler)(NSError *_Nullable error); @@ -164,6 +164,10 @@ RTC_OBJC_EXPORT lastReceivedMs:(int)lastDataReceivedMs changeReason:(NSString *)reason; +/** Called when gathering of an ICE candidate failed. */ +- (void)peerConnection:(RTC_OBJC_TYPE(RTCPeerConnection) *)peerConnection + didFailToGatherIceCandidate:(RTC_OBJC_TYPE(RTCIceCandidateErrorEvent) *)event; + @end RTC_OBJC_EXPORT @@ -174,7 +178,7 @@ RTC_OBJC_EXPORT */ @property(nonatomic, weak, nullable) id delegate; /** This property is not available with RTCSdpSemanticsUnifiedPlan. Please use - * |senders| instead. + * `senders` instead. */ @property(nonatomic, readonly) NSArray *localStreams; @property(nonatomic, readonly, nullable) RTC_OBJC_TYPE(RTCSessionDescription) * localDescription; @@ -207,7 +211,7 @@ RTC_OBJC_EXPORT - (instancetype)init NS_UNAVAILABLE; -/** Sets the PeerConnection's global configuration to |configuration|. +/** Sets the PeerConnection's global configuration to `configuration`. * Any changes to STUN/TURN servers or ICE candidate policy will affect the * next gathering phase, and cause the next call to createOffer to generate * new ICE credentials. Note that the BUNDLE and RTCP-multiplexing policies @@ -243,7 +247,7 @@ RTC_OBJC_EXPORT /** Add a new media stream track to be sent on this peer connection, and return * the newly created RTCRtpSender. The RTCRtpSender will be - * associated with the streams specified in the |streamIds| list. + * associated with the streams specified in the `streamIds` list. * * Errors: If an error occurs, returns nil. An error can occur if: * - A sender already exists for the track. @@ -265,7 +269,7 @@ RTC_OBJC_EXPORT * transceivers. Adding a transceiver will cause future calls to CreateOffer * to add a media description for the corresponding transceiver. * - * The initial value of |mid| in the returned transceiver is nil. Setting a + * The initial value of `mid` in the returned transceiver is nil. Setting a * new session description may change it to a non-nil value. * * https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-addtransceiver @@ -325,7 +329,7 @@ RTC_OBJC_EXPORT /** Limits the bandwidth allocated for all RTP streams sent by this * PeerConnection. Nil parameters will be unchanged. Setting - * |currentBitrateBps| will force the available bitrate estimate to the given + * `currentBitrateBps` will force the available bitrate estimate to the given * value. Returns YES if the parameters were successfully updated. */ - (BOOL)setBweMinBitrateBps:(nullable NSNumber *)minBitrateBps @@ -365,7 +369,7 @@ typedef void (^RTCStatisticsCompletionHandler)(RTC_OBJC_TYPE(RTCStatisticsReport @interface RTC_OBJC_TYPE (RTCPeerConnection) (Stats) - /** Gather stats for the given RTCMediaStreamTrack. If |mediaStreamTrack| is nil + /** Gather stats for the given RTCMediaStreamTrack. If `mediaStreamTrack` is nil * statistics are gathered for all tracks. */ - (void)statsForTrack diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCPeerConnectionFactory.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCPeerConnectionFactory.h index a9a3392..329cf46 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCPeerConnectionFactory.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCPeerConnectionFactory.h @@ -29,18 +29,28 @@ NS_ASSUME_NONNULL_BEGIN (RTCVideoDecoderFactory); @protocol RTC_OBJC_TYPE (RTCVideoEncoderFactory); +@protocol RTC_OBJC_TYPE +(RTCSSLCertificateVerifier); +@protocol RTC_OBJC_TYPE +(RTCAudioDevice); RTC_OBJC_EXPORT @interface RTC_OBJC_TYPE (RTCPeerConnectionFactory) : NSObject -/* Initialize object with default H264 video encoder/decoder factories */ +/* Initialize object with default H264 video encoder/decoder factories and default ADM */ - (instancetype)init; -/* Initialize object with injectable video encoder/decoder factories */ +/* Initialize object with injectable video encoder/decoder factories and default ADM */ - (instancetype) initWithEncoderFactory:(nullable id)encoderFactory decoderFactory:(nullable id)decoderFactory; +/* Initialize object with injectable video encoder/decoder factories and injectable ADM */ +- (instancetype) + initWithEncoderFactory:(nullable id)encoderFactory + decoderFactory:(nullable id)decoderFactory + audioDevice:(nullable id)audioDevice; + /** Initialize an RTCAudioSource with constraints. */ - (RTC_OBJC_TYPE(RTCAudioSource) *)audioSourceWithConstraints: (nullable RTC_OBJC_TYPE(RTCMediaConstraints) *)constraints; @@ -60,6 +70,13 @@ RTC_OBJC_EXPORT */ - (RTC_OBJC_TYPE(RTCVideoSource) *)videoSource; +/** Initialize a generic RTCVideoSource with he posibility of marking + * it as usable for screen sharing. The RTCVideoSource should be + * passed to a RTCVideoCapturer implementation, e.g. + * RTCCameraVideoCapturer, in order to produce frames. + */ +- (RTC_OBJC_TYPE(RTCVideoSource) *)videoSourceForScreenCast:(BOOL)forScreenCast; + /** Initialize an RTCVideoTrack with a source and an id. */ - (RTC_OBJC_TYPE(RTCVideoTrack) *)videoTrackWithSource:(RTC_OBJC_TYPE(RTCVideoSource) *)source trackId:(NSString *)trackId; @@ -75,6 +92,13 @@ RTC_OBJC_EXPORT constraints:(RTC_OBJC_TYPE(RTCMediaConstraints) *)constraints delegate:(nullable id)delegate; +- (nullable RTC_OBJC_TYPE(RTCPeerConnection) *) + peerConnectionWithConfiguration:(RTC_OBJC_TYPE(RTCConfiguration) *)configuration + constraints:(RTC_OBJC_TYPE(RTCMediaConstraints) *)constraints + certificateVerifier: + (id)certificateVerifier + delegate:(nullable id)delegate; + /** Set the options to be used for subsequently created RTCPeerConnections */ - (void)setOptions:(nonnull RTC_OBJC_TYPE(RTCPeerConnectionFactoryOptions) *)options; diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCRtpSender.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCRtpSender.h index edea5d8..b0f0e74 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCRtpSender.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCRtpSender.h @@ -21,8 +21,8 @@ RTC_OBJC_EXPORT @protocol RTC_OBJC_TYPE (RTCRtpSender) -/** A unique identifier for this sender. */ -@property(nonatomic, readonly) NSString *senderId; + /** A unique identifier for this sender. */ + @property(nonatomic, readonly) NSString *senderId; /** The currently active RTCRtpParameters, as defined in * https://www.w3.org/TR/webrtc/#idl-def-RTCRtpParameters. diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCSSLCertificateVerifier.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCSSLCertificateVerifier.h new file mode 100644 index 0000000..d5acafa --- /dev/null +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCSSLCertificateVerifier.h @@ -0,0 +1,25 @@ +/* + * Copyright 2022 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. An additional intellectual property rights grant can be found + * in the file PATENTS. All contributing project authors may + * be found in the AUTHORS file in the root of the source tree. + */ + +#import + +#import + +NS_ASSUME_NONNULL_BEGIN + +RTC_OBJC_EXPORT @protocol RTC_OBJC_TYPE +(RTCSSLCertificateVerifier) + + /** The certificate to verify */ + - (BOOL)verify : (NSData *)derCertificate; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoder.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoder.h index 9ffde99..32d79a0 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoder.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoder.h @@ -29,6 +29,7 @@ RTC_OBJC_EXPORT - (void)setCallback : (RTCVideoDecoderCallback)callback; - (NSInteger)startDecodeWithNumberOfCores:(int)numberOfCores; - (NSInteger)releaseDecoder; +// TODO(bugs.webrtc.org/15444): Remove obsolete missingFrames param. - (NSInteger)decode:(RTC_OBJC_TYPE(RTCEncodedImage) *)encodedImage missingFrames:(BOOL)missingFrames codecSpecificInfo:(nullable id)info diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderAV1.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderAV1.h index 429bbd7..a71cce5 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderAV1.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoDecoderAV1.h @@ -22,6 +22,4 @@ RTC_OBJC_EXPORT */ + (id)av1Decoder; -+ (bool)isSupported; - @end diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoder.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoder.h index b2b2185..0a3a875 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoder.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoder.h @@ -28,7 +28,7 @@ RTC_OBJC_EXPORT @protocol RTC_OBJC_TYPE (RTCVideoEncoder) -- (void)setCallback:(nullable RTCVideoEncoderCallback)callback; + - (void)setCallback : (nullable RTCVideoEncoderCallback)callback; - (NSInteger)startEncodeWithSettings:(RTC_OBJC_TYPE(RTCVideoEncoderSettings) *)settings numberOfCores:(int)numberOfCores; - (NSInteger)releaseEncoder; @@ -50,6 +50,10 @@ RTC_OBJC_EXPORT scaled, all resolutions comply with 'resolutionAlignment'. */ @property(nonatomic, readonly) BOOL applyAlignmentToAllSimulcastLayers; +/** If YES, the receiver is expected to resample/scale the source texture to the expected output + size. */ +@property(nonatomic, readonly) BOOL supportsNativeHandle; + @end NS_ASSUME_NONNULL_END diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderFactory.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderFactory.h index ac7bcd3..579a04a 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderFactory.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoEncoderFactory.h @@ -27,6 +27,9 @@ RTC_OBJC_EXPORT - (nullable RTC_OBJC_TYPE(RTCVideoCodecInfo) *)encoderForBitrate:(NSInteger)bitrate; - (nullable RTC_OBJC_TYPE(RTCVideoCodecInfo) *)encoderForBrokenEncoder; +@optional +- (nullable RTC_OBJC_TYPE(RTCVideoCodecInfo) *)encoderForResolutionChangeBySize:(CGSize)size; + @end /** RTCVideoEncoderFactory is an Objective-C version of webrtc::VideoEncoderFactory. diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoFrame.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoFrame.h index 01294f5..a4ef600 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoFrame.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoFrame.h @@ -45,7 +45,7 @@ RTC_OBJC_EXPORT @property(nonatomic, readonly) id buffer; - (instancetype)init NS_UNAVAILABLE; -- (instancetype) new NS_UNAVAILABLE; +- (instancetype)new NS_UNAVAILABLE; /** Initialize an RTCVideoFrame from a pixel buffer, rotation, and timestamp. * Deprecated - initialize with a RTCCVPixelBuffer instead diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoFrameBuffer.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoFrameBuffer.h index bfffa01..7efbd2b 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoFrameBuffer.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/RTCVideoFrameBuffer.h @@ -27,6 +27,14 @@ RTC_OBJC_EXPORT - (id)toI420; +@optional +- (id)cropAndScaleWith:(int)offsetX + offsetY:(int)offsetY + cropWidth:(int)cropWidth + cropHeight:(int)cropHeight + scaleWidth:(int)scaleWidth + scaleHeight:(int)scaleHeight; + @end NS_ASSUME_NONNULL_END diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/UIDevice+RTCDevice.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/UIDevice+RTCDevice.h index eb9a076..4d04f38 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/UIDevice+RTCDevice.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/UIDevice+RTCDevice.h @@ -10,92 +10,8 @@ #import -typedef NS_ENUM(NSInteger, RTCDeviceType) { - RTCDeviceTypeUnknown, - RTCDeviceTypeIPhone1G, - RTCDeviceTypeIPhone3G, - RTCDeviceTypeIPhone3GS, - RTCDeviceTypeIPhone4, - RTCDeviceTypeIPhone4Verizon, - RTCDeviceTypeIPhone4S, - RTCDeviceTypeIPhone5GSM, - RTCDeviceTypeIPhone5GSM_CDMA, - RTCDeviceTypeIPhone5CGSM, - RTCDeviceTypeIPhone5CGSM_CDMA, - RTCDeviceTypeIPhone5SGSM, - RTCDeviceTypeIPhone5SGSM_CDMA, - RTCDeviceTypeIPhone6Plus, - RTCDeviceTypeIPhone6, - RTCDeviceTypeIPhone6S, - RTCDeviceTypeIPhone6SPlus, - RTCDeviceTypeIPhone7, - RTCDeviceTypeIPhone7Plus, - RTCDeviceTypeIPhoneSE, - RTCDeviceTypeIPhone8, - RTCDeviceTypeIPhone8Plus, - RTCDeviceTypeIPhoneX, - RTCDeviceTypeIPhoneXS, - RTCDeviceTypeIPhoneXSMax, - RTCDeviceTypeIPhoneXR, - RTCDeviceTypeIPhone11, - RTCDeviceTypeIPhone11Pro, - RTCDeviceTypeIPhone11ProMax, - RTCDeviceTypeIPhone12Mini, - RTCDeviceTypeIPhone12, - RTCDeviceTypeIPhone12Pro, - RTCDeviceTypeIPhone12ProMax, - RTCDeviceTypeIPodTouch1G, - RTCDeviceTypeIPodTouch2G, - RTCDeviceTypeIPodTouch3G, - RTCDeviceTypeIPodTouch4G, - RTCDeviceTypeIPodTouch5G, - RTCDeviceTypeIPodTouch6G, - RTCDeviceTypeIPodTouch7G, - RTCDeviceTypeIPad, - RTCDeviceTypeIPad2Wifi, - RTCDeviceTypeIPad2GSM, - RTCDeviceTypeIPad2CDMA, - RTCDeviceTypeIPad2Wifi2, - RTCDeviceTypeIPadMiniWifi, - RTCDeviceTypeIPadMiniGSM, - RTCDeviceTypeIPadMiniGSM_CDMA, - RTCDeviceTypeIPad3Wifi, - RTCDeviceTypeIPad3GSM_CDMA, - RTCDeviceTypeIPad3GSM, - RTCDeviceTypeIPad4Wifi, - RTCDeviceTypeIPad4GSM, - RTCDeviceTypeIPad4GSM_CDMA, - RTCDeviceTypeIPad5, - RTCDeviceTypeIPad6, - RTCDeviceTypeIPadAirWifi, - RTCDeviceTypeIPadAirCellular, - RTCDeviceTypeIPadAirWifiCellular, - RTCDeviceTypeIPadAir2, - RTCDeviceTypeIPadMini2GWifi, - RTCDeviceTypeIPadMini2GCellular, - RTCDeviceTypeIPadMini2GWifiCellular, - RTCDeviceTypeIPadMini3, - RTCDeviceTypeIPadMini4, - RTCDeviceTypeIPadPro9Inch, - RTCDeviceTypeIPadPro12Inch, - RTCDeviceTypeIPadPro12Inch2, - RTCDeviceTypeIPadPro10Inch, - RTCDeviceTypeIPad7Gen10Inch, - RTCDeviceTypeIPadPro3Gen11Inch, - RTCDeviceTypeIPadPro3Gen12Inch, - RTCDeviceTypeIPadPro4Gen11Inch, - RTCDeviceTypeIPadPro4Gen12Inch, - RTCDeviceTypeIPadMini5Gen, - RTCDeviceTypeIPadAir3Gen, - RTCDeviceTypeIPad8, - RTCDeviceTypeIPadAir4Gen, - RTCDeviceTypeSimulatori386, - RTCDeviceTypeSimulatorx86_64, -}; - @interface UIDevice (RTCDevice) -+ (RTCDeviceType)deviceType; -+ (BOOL)isIOS11OrLater; ++ (NSString *)machineName; @end diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/WebRTC.h b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/WebRTC.h index a066249..67c12ca 100644 --- a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/WebRTC.h +++ b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Headers/WebRTC.h @@ -1,5 +1,5 @@ /* - * Copyright 2022 The WebRTC project authors. All Rights Reserved. + * Copyright 2024 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source @@ -15,6 +15,7 @@ #import #import #import +#import #import #import #import @@ -27,6 +28,7 @@ #import #import #import +#import #import #import #import @@ -54,6 +56,7 @@ #import #import #import +#import #import #import #import diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Info.plist b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Info.plist index 3982d41..22e8c76 100644 Binary files a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Info.plist and b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/Info.plist differ diff --git a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/WebRTC b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/WebRTC index cdf9ebf..78a6397 100755 Binary files a/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/WebRTC and b/Pods/VideoSDKRTC/Frameworks/WebRTC.xcframework/ios-arm64_x86_64-simulator/WebRTC.framework/WebRTC differ diff --git a/VideoSDKRTC_Example.xcodeproj/project.pbxproj b/VideoSDKRTC_Example.xcodeproj/project.pbxproj index 7d54475..ac5b45d 100644 --- a/VideoSDKRTC_Example.xcodeproj/project.pbxproj +++ b/VideoSDKRTC_Example.xcodeproj/project.pbxproj @@ -8,6 +8,13 @@ /* Begin PBXBuildFile section */ 40CEA634E8DF618A5BD0D6F7 /* Pods_VideoSDKRTC_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB1FDFBC9A306BDF5A4BFFD7 /* Pods_VideoSDKRTC_Example.framework */; }; + 6BA151E32BC902BB00D9FC4B /* ReplayKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6BA151E22BC902BB00D9FC4B /* ReplayKit.framework */; }; + 6BA151EA2BC902BB00D9FC4B /* VideoSDKScreenShare.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 6BA151E12BC902BB00D9FC4B /* VideoSDKScreenShare.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; }; + 6BA151F52BC9034000D9FC4B /* SampleHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BA151F02BC9034000D9FC4B /* SampleHandler.swift */; }; + 6BA151F62BC9034000D9FC4B /* DarwinNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BA151F12BC9034000D9FC4B /* DarwinNotification.swift */; }; + 6BA151F72BC9034000D9FC4B /* Atomic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BA151F22BC9034000D9FC4B /* Atomic.swift */; }; + 6BA151F82BC9034000D9FC4B /* SampleUploader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BA151F32BC9034000D9FC4B /* SampleUploader.swift */; }; + 6BA151F92BC9034000D9FC4B /* SocketConnection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BA151F42BC9034000D9FC4B /* SocketConnection.swift */; }; B21ECEBD296EEF6000A48C5B /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B21ECEBC296EEF6000A48C5B /* AppDelegate.swift */; }; B21ECEBF296EEF6000A48C5B /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B21ECEBE296EEF6000A48C5B /* SceneDelegate.swift */; }; B21ECEC1296EEF6000A48C5B /* MeetingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = B21ECEC0296EEF6000A48C5B /* MeetingViewController.swift */; }; @@ -39,9 +46,43 @@ B2F7E50029845C7300F21FDA /* ButtonControlsView.xib in Resources */ = {isa = PBXBuildFile; fileRef = B2F7E4FF29845C7200F21FDA /* ButtonControlsView.xib */; }; /* End PBXBuildFile section */ +/* Begin PBXContainerItemProxy section */ + 6BA151E82BC902BB00D9FC4B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = B21ECEB1296EEF6000A48C5B /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6BA151E02BC902BB00D9FC4B; + remoteInfo = VideoSDKScreenShare; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 6BA151EB2BC902BB00D9FC4B /* Embed Foundation Extensions */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 13; + files = ( + 6BA151EA2BC902BB00D9FC4B /* VideoSDKScreenShare.appex in Embed Foundation Extensions */, + ); + name = "Embed Foundation Extensions"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + /* Begin PBXFileReference section */ 1024F6C02786C91AD0868289 /* Pods-VideoSDKRTC_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-VideoSDKRTC_Example.debug.xcconfig"; path = "Target Support Files/Pods-VideoSDKRTC_Example/Pods-VideoSDKRTC_Example.debug.xcconfig"; sourceTree = ""; }; 42289B3ED1DE1946FDD7A0BD /* Pods-VideoSDKRTC_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-VideoSDKRTC_Example.release.xcconfig"; path = "Target Support Files/Pods-VideoSDKRTC_Example/Pods-VideoSDKRTC_Example.release.xcconfig"; sourceTree = ""; }; + 6BA151E12BC902BB00D9FC4B /* VideoSDKScreenShare.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = VideoSDKScreenShare.appex; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BA151E22BC902BB00D9FC4B /* ReplayKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ReplayKit.framework; path = System/Library/Frameworks/ReplayKit.framework; sourceTree = SDKROOT; }; + 6BA151E72BC902BB00D9FC4B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 6BA151F02BC9034000D9FC4B /* SampleHandler.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SampleHandler.swift; sourceTree = ""; }; + 6BA151F12BC9034000D9FC4B /* DarwinNotification.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DarwinNotification.swift; sourceTree = ""; }; + 6BA151F22BC9034000D9FC4B /* Atomic.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Atomic.swift; sourceTree = ""; }; + 6BA151F32BC9034000D9FC4B /* SampleUploader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SampleUploader.swift; sourceTree = ""; }; + 6BA151F42BC9034000D9FC4B /* SocketConnection.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SocketConnection.swift; sourceTree = ""; }; + 6BA151FA2BC903A100D9FC4B /* VideoSDKRTC_Example.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = VideoSDKRTC_Example.entitlements; sourceTree = ""; }; + 6BA151FB2BC903B600D9FC4B /* VideoSDKScreenShare.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = VideoSDKScreenShare.entitlements; sourceTree = ""; }; B21ECEB9296EEF6000A48C5B /* VideoSDKRTC_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = VideoSDKRTC_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; B21ECEBC296EEF6000A48C5B /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; B21ECEBE296EEF6000A48C5B /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; @@ -77,6 +118,14 @@ /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ + 6BA151DE2BC902BB00D9FC4B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 6BA151E32BC902BB00D9FC4B /* ReplayKit.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; B21ECEB6296EEF6000A48C5B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -92,14 +141,30 @@ isa = PBXGroup; children = ( EB1FDFBC9A306BDF5A4BFFD7 /* Pods_VideoSDKRTC_Example.framework */, + 6BA151E22BC902BB00D9FC4B /* ReplayKit.framework */, ); name = Frameworks; sourceTree = ""; }; + 6BA151E42BC902BB00D9FC4B /* VideoSDKScreenShare */ = { + isa = PBXGroup; + children = ( + 6BA151FB2BC903B600D9FC4B /* VideoSDKScreenShare.entitlements */, + 6BA151F22BC9034000D9FC4B /* Atomic.swift */, + 6BA151F12BC9034000D9FC4B /* DarwinNotification.swift */, + 6BA151F02BC9034000D9FC4B /* SampleHandler.swift */, + 6BA151F32BC9034000D9FC4B /* SampleUploader.swift */, + 6BA151F42BC9034000D9FC4B /* SocketConnection.swift */, + 6BA151E72BC902BB00D9FC4B /* Info.plist */, + ); + path = VideoSDKScreenShare; + sourceTree = ""; + }; B21ECEB0296EEF6000A48C5B = { isa = PBXGroup; children = ( B21ECEBB296EEF6000A48C5B /* VideoSDKRTC_Example */, + 6BA151E42BC902BB00D9FC4B /* VideoSDKScreenShare */, B21ECEBA296EEF6000A48C5B /* Products */, C5753D31BB2782FAC5FD3B3B /* Pods */, 620C3FBF9C762544E88400A6 /* Frameworks */, @@ -110,6 +175,7 @@ isa = PBXGroup; children = ( B21ECEB9296EEF6000A48C5B /* VideoSDKRTC_Example.app */, + 6BA151E12BC902BB00D9FC4B /* VideoSDKScreenShare.appex */, ); name = Products; sourceTree = ""; @@ -117,6 +183,7 @@ B21ECEBB296EEF6000A48C5B /* VideoSDKRTC_Example */ = { isa = PBXGroup; children = ( + 6BA151FA2BC903A100D9FC4B /* VideoSDKRTC_Example.entitlements */, B2EC504429829345009B612F /* views */, B2AC8FED297B1A3D0036A038 /* models */, B2E43CE62979C4C600EB7F75 /* API */, @@ -211,6 +278,23 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ + 6BA151E02BC902BB00D9FC4B /* VideoSDKScreenShare */ = { + isa = PBXNativeTarget; + buildConfigurationList = 6BA151EE2BC902BB00D9FC4B /* Build configuration list for PBXNativeTarget "VideoSDKScreenShare" */; + buildPhases = ( + 6BA151DD2BC902BB00D9FC4B /* Sources */, + 6BA151DE2BC902BB00D9FC4B /* Frameworks */, + 6BA151DF2BC902BB00D9FC4B /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = VideoSDKScreenShare; + productName = VideoSDKScreenShare; + productReference = 6BA151E12BC902BB00D9FC4B /* VideoSDKScreenShare.appex */; + productType = "com.apple.product-type.app-extension"; + }; B21ECEB8296EEF6000A48C5B /* VideoSDKRTC_Example */ = { isa = PBXNativeTarget; buildConfigurationList = B21ECECD296EEF6100A48C5B /* Build configuration list for PBXNativeTarget "VideoSDKRTC_Example" */; @@ -220,10 +304,12 @@ B21ECEB6296EEF6000A48C5B /* Frameworks */, B21ECEB7296EEF6000A48C5B /* Resources */, D8CF325BF28B2FCA2B3F1A51 /* [CP] Embed Pods Frameworks */, + 6BA151EB2BC902BB00D9FC4B /* Embed Foundation Extensions */, ); buildRules = ( ); dependencies = ( + 6BA151E92BC902BB00D9FC4B /* PBXTargetDependency */, ); name = VideoSDKRTC_Example; productName = VideoSDKRTC_Example; @@ -237,9 +323,13 @@ isa = PBXProject; attributes = { BuildIndependentTargetsInParallel = 1; - LastSwiftUpdateCheck = 1410; + LastSwiftUpdateCheck = 1510; LastUpgradeCheck = 1410; TargetAttributes = { + 6BA151E02BC902BB00D9FC4B = { + CreatedOnToolsVersion = 15.1; + LastSwiftMigration = 1510; + }; B21ECEB8296EEF6000A48C5B = { CreatedOnToolsVersion = 14.1; }; @@ -259,11 +349,19 @@ projectRoot = ""; targets = ( B21ECEB8296EEF6000A48C5B /* VideoSDKRTC_Example */, + 6BA151E02BC902BB00D9FC4B /* VideoSDKScreenShare */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ + 6BA151DF2BC902BB00D9FC4B /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; B21ECEB7296EEF6000A48C5B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -321,6 +419,18 @@ /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ + 6BA151DD2BC902BB00D9FC4B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6BA151F52BC9034000D9FC4B /* SampleHandler.swift in Sources */, + 6BA151F82BC9034000D9FC4B /* SampleUploader.swift in Sources */, + 6BA151F72BC9034000D9FC4B /* Atomic.swift in Sources */, + 6BA151F62BC9034000D9FC4B /* DarwinNotification.swift in Sources */, + 6BA151F92BC9034000D9FC4B /* SocketConnection.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; B21ECEB5296EEF6000A48C5B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -354,6 +464,14 @@ }; /* End PBXSourcesBuildPhase section */ +/* Begin PBXTargetDependency section */ + 6BA151E92BC902BB00D9FC4B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 6BA151E02BC902BB00D9FC4B /* VideoSDKScreenShare */; + targetProxy = 6BA151E82BC902BB00D9FC4B /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + /* Begin PBXVariantGroup section */ B21ECEC2296EEF6000A48C5B /* Main.storyboard */ = { isa = PBXVariantGroup; @@ -374,6 +492,76 @@ /* End PBXVariantGroup section */ /* Begin XCBuildConfiguration section */ + 6BA151EC2BC902BB00D9FC4B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = VideoSDKScreenShare/VideoSDKScreenShare.entitlements; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = 8GZ776NSU2; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu17; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = VideoSDKScreenShare/Info.plist; + INFOPLIST_KEY_CFBundleDisplayName = VideoSDKScreenShare; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@executable_path/../../Frameworks", + ); + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zujo.videosdk.example.VideoSDKScreenShare; + PRODUCT_NAME = "$(TARGET_NAME)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_OBJC_BRIDGING_HEADER = "VideoSDKScreenShare/VideoSDKScreenShare-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 6BA151ED2BC902BB00D9FC4B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = VideoSDKScreenShare/VideoSDKScreenShare.entitlements; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = 8GZ776NSU2; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu17; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = VideoSDKScreenShare/Info.plist; + INFOPLIST_KEY_CFBundleDisplayName = VideoSDKScreenShare; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@executable_path/../../Frameworks", + ); + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zujo.videosdk.example.VideoSDKScreenShare; + PRODUCT_NAME = "$(TARGET_NAME)"; + SKIP_INSTALL = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_OBJC_BRIDGING_HEADER = "VideoSDKScreenShare/VideoSDKScreenShare-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; B21ECECB296EEF6100A48C5B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -492,8 +680,10 @@ isa = XCBuildConfiguration; baseConfigurationReference = 1024F6C02786C91AD0868289 /* Pods-VideoSDKRTC_Example.debug.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_ENTITLEMENTS = VideoSDKRTC_Example/VideoSDKRTC_Example.entitlements; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 8; @@ -528,8 +718,10 @@ isa = XCBuildConfiguration; baseConfigurationReference = 42289B3ED1DE1946FDD7A0BD /* Pods-VideoSDKRTC_Example.release.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_ENTITLEMENTS = VideoSDKRTC_Example/VideoSDKRTC_Example.entitlements; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 8; @@ -563,6 +755,15 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ + 6BA151EE2BC902BB00D9FC4B /* Build configuration list for PBXNativeTarget "VideoSDKScreenShare" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 6BA151EC2BC902BB00D9FC4B /* Debug */, + 6BA151ED2BC902BB00D9FC4B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; B21ECEB4296EEF6000A48C5B /* Build configuration list for PBXProject "VideoSDKRTC_Example" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/VideoSDKRTC_Example.xcodeproj/xcshareddata/xcschemes/VideoSDKRTC_Example.xcscheme b/VideoSDKRTC_Example.xcodeproj/xcshareddata/xcschemes/VideoSDKRTC_Example.xcscheme new file mode 100644 index 0000000..7db5330 --- /dev/null +++ b/VideoSDKRTC_Example.xcodeproj/xcshareddata/xcschemes/VideoSDKRTC_Example.xcscheme @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VideoSDKRTC_Example.xcodeproj/xcshareddata/xcschemes/VideoSDKScreenShare.xcscheme b/VideoSDKRTC_Example.xcodeproj/xcshareddata/xcschemes/VideoSDKScreenShare.xcscheme new file mode 100644 index 0000000..65d6c00 --- /dev/null +++ b/VideoSDKRTC_Example.xcodeproj/xcshareddata/xcschemes/VideoSDKScreenShare.xcscheme @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VideoSDKRTC_Example.xcodeproj/xcuserdata/udaygajera.xcuserdatad/xcschemes/xcschememanagement.plist b/VideoSDKRTC_Example.xcodeproj/xcuserdata/udaygajera.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 0000000..79e03e7 --- /dev/null +++ b/VideoSDKRTC_Example.xcodeproj/xcuserdata/udaygajera.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,32 @@ + + + + + SchemeUserState + + VideoSDKRTC_Example.xcscheme_^#shared#^_ + + orderHint + 6 + + VideoSDKScreenShare.xcscheme_^#shared#^_ + + orderHint + 5 + + + SuppressBuildableAutocreation + + 6BA151E02BC902BB00D9FC4B + + primary + + + B21ECEB8296EEF6000A48C5B + + primary + + + + + diff --git a/VideoSDKRTC_Example.xcworkspace/xcuserdata/udaygajera.xcuserdatad/UserInterfaceState.xcuserstate b/VideoSDKRTC_Example.xcworkspace/xcuserdata/udaygajera.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000..b511c20 Binary files /dev/null and b/VideoSDKRTC_Example.xcworkspace/xcuserdata/udaygajera.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/VideoSDKRTC_Example.xcworkspace/xcuserdata/udaygajera.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist b/VideoSDKRTC_Example.xcworkspace/xcuserdata/udaygajera.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist new file mode 100644 index 0000000..df804f7 --- /dev/null +++ b/VideoSDKRTC_Example.xcworkspace/xcuserdata/udaygajera.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist @@ -0,0 +1,6 @@ + + + diff --git a/VideoSDKRTC_Example/Base.lproj/Main.storyboard b/VideoSDKRTC_Example/Base.lproj/Main.storyboard index d9bb103..32daf9a 100644 --- a/VideoSDKRTC_Example/Base.lproj/Main.storyboard +++ b/VideoSDKRTC_Example/Base.lproj/Main.storyboard @@ -1,9 +1,9 @@ - + - + @@ -347,7 +347,7 @@ - + @@ -377,7 +377,7 @@ - + @@ -483,7 +483,7 @@ - + @@ -505,11 +505,29 @@ + + + + + + + + + + + - + - + - + @@ -617,6 +643,7 @@ + @@ -627,6 +654,7 @@ + @@ -942,11 +970,11 @@ - + - + @@ -1007,7 +1035,7 @@